-
Notifications
You must be signed in to change notification settings - Fork 15
/
composer.json
31 lines (31 loc) · 1.03 KB
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
{
"name": "matthiasnoback/symfony-service-definition-validator",
"type": "library",
"description": "Library for validating service definitions created with the Symfony Dependency Injection Component",
"keywords": ["symfony2", "dependency injection"],
"homepage": "http://github.com/matthiasnoback/symfony-service-definition-validator",
"license": "MIT",
"authors": [
{
"name": "Matthias Noback",
"email": "[email protected]",
"homepage": "http://php-and-symfony.matthiasnoback.nl"
}
],
"require": {
"php": "^7.4",
"symfony/dependency-injection": "~2.0|~3.0"
},
"require-dev": {
"symfony/yaml": "~2.0|~3.0",
"symfony/config": "~2.0|~3.0",
"symfony/expression-language": "~2.4|~3.0",
"phpunit/phpunit": "^9.5"
},
"autoload": {
"psr-4" : { "Matthias\\SymfonyServiceDefinitionValidator\\" : "" }
},
"autoload-dev": {
"files": ["Tests/Fixtures/FactoryCallback.php"]
}
}