diff options
author | Remi Collet <remi@remirepo.net> | 2019-03-04 09:59:17 +0100 |
---|---|---|
committer | Remi Collet <remi@remirepo.net> | 2019-03-04 09:59:17 +0100 |
commit | 5679ca3e5d8b28317cdba6e87b2e11f6dbaad6c8 (patch) | |
tree | ce395b6246e97ebd2435f96545066e2f26a045a1 /src/Symfony/Contracts | |
parent | a7999bed8b592e2e5c20c5058b52674c38fc40e0 (diff) |
add all composer.json
Diffstat (limited to 'src/Symfony/Contracts')
-rw-r--r-- | src/Symfony/Contracts/composer.json | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/src/Symfony/Contracts/composer.json b/src/Symfony/Contracts/composer.json new file mode 100644 index 0000000..2f198a0 --- /dev/null +++ b/src/Symfony/Contracts/composer.json @@ -0,0 +1,44 @@ +{ + "name": "symfony/contracts", + "type": "library", + "description": "A set of abstractions extracted out of the Symfony components", + "keywords": ["abstractions", "contracts", "decoupling", "interfaces", "interoperability", "standards"], + "homepage": "https://symfony.com", + "license": "MIT", + "authors": [ + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "require": { + "php": "^7.1.3" + }, + "require-dev": { + "psr/cache": "^1.0", + "psr/container": "^1.0" + }, + "suggest": { + "psr/cache": "When using the Cache contracts", + "psr/container": "When using the Service contracts", + "symfony/cache-contracts-implementation": "", + "symfony/service-contracts-implementation": "", + "symfony/translation-contracts-implementation": "" + }, + "autoload": { + "psr-4": { "Symfony\\Contracts\\": "" }, + "exclude-from-classmap": [ + "**/Tests/" + ] + }, + "minimum-stability": "dev", + "extra": { + "branch-alias": { + "dev-master": "1.0-dev" + } + } +} |