Added missing required dependencies on psr/cache and psr/container

in symfony/cache-contracts and symfony/service-contracts respectively.
This commit is contained in:
Michael Bessolov 2019-06-12 23:04:51 -07:00
parent 1c1d6d9edf
commit 9cbeb63613
No known key found for this signature in database
GPG Key ID: 0BF096CCE5764D7B
3 changed files with 7 additions and 9 deletions

View File

@ -16,10 +16,10 @@
}
],
"require": {
"php": "^7.1.3"
"php": "^7.1.3",
"psr/cache": "^1.0"
},
"suggest": {
"psr/cache": "",
"symfony/cache-implementation": ""
},
"autoload": {

View File

@ -16,10 +16,10 @@
}
],
"require": {
"php": "^7.1.3"
"php": "^7.1.3",
"psr/container": "^1.0"
},
"suggest": {
"psr/container": "",
"symfony/service-implementation": ""
},
"autoload": {

View File

@ -16,11 +16,11 @@
}
],
"require": {
"php": "^7.1.3"
"php": "^7.1.3",
"psr/cache": "^1.0",
"psr/container": "^1.0"
},
"require-dev": {
"psr/cache": "^1.0",
"psr/container": "^1.0",
"symfony/polyfill-intl-idn": "^1.10"
},
"replace": {
@ -31,8 +31,6 @@
"symfony/translation-contracts": "self.version"
},
"suggest": {
"psr/cache": "When using the Cache contracts",
"psr/container": "When using the Service contracts",
"psr/event-dispatcher": "When using the EventDispatcher contracts",
"symfony/cache-implementation": "",
"symfony/event-dispatcher-implementation": "",