-
Notifications
You must be signed in to change notification settings - Fork 48
/
Copy pathcomposer.json
38 lines (38 loc) · 1.31 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
32
33
34
35
36
37
38
{
"name": "matthiasnoback/symfony-dependency-injection-test",
"type": "library",
"description": "Library for testing user classes related to the Symfony Dependency Injection Component",
"keywords": ["symfony2", "dependency injection", "phpunit", "dev"],
"homepage": "https://github.com/matthiasnoback/SymfonyDependencyInjectionTest",
"license": "MIT",
"authors": [
{
"name": "Matthias Noback",
"email": "[email protected]",
"homepage": "http://php-and-symfony.matthiasnoback.nl"
}
],
"require": {
"php": "^8.1",
"matthiasnoback/symfony-config-test": "^5.0",
"phpunit/phpunit": "^10.5.11 || ^11.0",
"sebastian/exporter": " ^5.0 || ^6.0",
"symfony/dependency-injection": "^5.4 || ^6.2 || ^7.0",
"symfony/config": "^5.4 || ^6.2 || ^7.0",
"symfony/yaml": "^5.4 || ^6.2 || ^7.0"
},
"autoload": {
"psr-4" : { "Matthias\\SymfonyDependencyInjectionTest\\" : "" },
"exclude-from-classmap": ["/Tests/"]
},
"autoload-dev": {
"psr-4" : { "Matthias\\SymfonyDependencyInjectionTest\\Tests\\" : "Tests/" }
},
"extra": {
"branch-alias": {
"dev-master": "5.0.x-dev"
}
},
"minimum-stability": "dev",
"prefer-stable": true
}