-
Notifications
You must be signed in to change notification settings - Fork 49
Expand file tree
/
Copy pathcomposer.json
More file actions
38 lines (38 loc) · 1.37 KB
/
composer.json
File metadata and controls
38 lines (38 loc) · 1.37 KB
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": "matthiasnoback@gmail.com",
"homepage": "http://php-and-symfony.matthiasnoback.nl"
}
],
"require": {
"php": "^8.1",
"matthiasnoback/symfony-config-test": "^5.0 || ^6.0",
"phpunit/phpunit": "^10.5.11 || ^11.5 || ^12.0 || ^13.0",
"symfony/dependency-injection": "^5.4 || ^6.4 || ^7.0 || ^8.0",
"symfony/deprecation-contracts": "^2.5 || ^3.0",
"symfony/config": "^5.4 || ^6.4 || ^7.0 || ^8.0",
"symfony/yaml": "^5.4 || ^6.4 || ^7.0 || ^8.0"
},
"autoload": {
"psr-4" : { "Matthias\\SymfonyDependencyInjectionTest\\" : "" },
"exclude-from-classmap": ["/Tests/"]
},
"autoload-dev": {
"psr-4" : { "Matthias\\SymfonyDependencyInjectionTest\\Tests\\" : "Tests/" }
},
"extra": {
"branch-alias": {
"dev-master": "6.x-dev"
}
},
"minimum-stability": "dev",
"prefer-stable": true
}