diff options
Diffstat (limited to 'vendor/symfony/service-contracts/composer.json')
-rw-r--r-- | vendor/symfony/service-contracts/composer.json | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/vendor/symfony/service-contracts/composer.json b/vendor/symfony/service-contracts/composer.json new file mode 100644 index 0000000..fc8674a --- /dev/null +++ b/vendor/symfony/service-contracts/composer.json | |||
@@ -0,0 +1,42 @@ | |||
1 | { | ||
2 | "name": "symfony/service-contracts", | ||
3 | "type": "library", | ||
4 | "description": "Generic abstractions related to writing services", | ||
5 | "keywords": ["abstractions", "contracts", "decoupling", "interfaces", "interoperability", "standards"], | ||
6 | "homepage": "https://symfony.com", | ||
7 | "license": "MIT", | ||
8 | "authors": [ | ||
9 | { | ||
10 | "name": "Nicolas Grekas", | ||
11 | "email": "p@tchwork.com" | ||
12 | }, | ||
13 | { | ||
14 | "name": "Symfony Community", | ||
15 | "homepage": "https://symfony.com/contributors" | ||
16 | } | ||
17 | ], | ||
18 | "require": { | ||
19 | "php": ">=8.1", | ||
20 | "psr/container": "^1.1|^2.0", | ||
21 | "symfony/deprecation-contracts": "^2.5|^3" | ||
22 | }, | ||
23 | "conflict": { | ||
24 | "ext-psr": "<1.1|>=2" | ||
25 | }, | ||
26 | "autoload": { | ||
27 | "psr-4": { "Symfony\\Contracts\\Service\\": "" }, | ||
28 | "exclude-from-classmap": [ | ||
29 | "/Test/" | ||
30 | ] | ||
31 | }, | ||
32 | "minimum-stability": "dev", | ||
33 | "extra": { | ||
34 | "branch-alias": { | ||
35 | "dev-main": "3.5-dev" | ||
36 | }, | ||
37 | "thanks": { | ||
38 | "name": "symfony/contracts", | ||
39 | "url": "https://github.com/symfony/contracts" | ||
40 | } | ||
41 | } | ||
42 | } | ||