diff options
Diffstat (limited to 'src/Symfony/Contracts/Service')
| -rw-r--r-- | src/Symfony/Contracts/Service/composer.json | 41 | 
1 files changed, 41 insertions, 0 deletions
| diff --git a/src/Symfony/Contracts/Service/composer.json b/src/Symfony/Contracts/Service/composer.json new file mode 100644 index 0000000..4f24e1e --- /dev/null +++ b/src/Symfony/Contracts/Service/composer.json @@ -0,0 +1,41 @@ +{ +    "name": "symfony/service-contracts", +    "type": "library", +    "description": "Generic abstractions related to writing services", +    "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", +        "psr/container": "^1.0" +    }, +    "suggest": { +        "symfony/service-implementation": "" +    }, +    "autoload": { +        "psr-4": { "Symfony\\Contracts\\Service\\": "" } +    }, +    "minimum-stability": "dev", +    "extra": { +        "thanks": { +            "name": "symfony/contracts", +            "url": "https://github.com/symfony/contracts" +        } +    }, +    "extra": { +        "branch-version": "1.1", +        "branch-alias": { +            "dev-main": "1.1-dev" +        } +    } +} | 
