-
Notifications
You must be signed in to change notification settings - Fork 35
/
composer.json
34 lines (34 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
32
33
34
{
"name": "matthiasnoback/symfony-config-test",
"type": "library",
"description": "Library for testing user classes related to the Symfony Config Component",
"keywords": ["symfony", "config", "phpunit", "testing"],
"homepage": "https://github.com/matthiasnoback/SymfonyConfigTest",
"license": "MIT",
"authors": [
{
"name": "Matthias Noback",
"email": "[email protected]",
"homepage": "http://php-and-symfony.matthiasnoback.nl"
}
],
"require": {
"php": "^8.1",
"phpunit/phpunit": "^9.6 || ^10.0 || ^11.0",
"symfony/config": "^5.4 || ^6.2 || ^7.0"
},
"autoload": {
"psr-4" : { "Matthias\\SymfonyConfigTest\\" : "" },
"exclude-from-classmap": ["/Tests/"]
},
"autoload-dev": {
"psr-4" : { "Matthias\\SymfonyConfigTest\\Tests\\" : "Tests/" }
},
"extra": {
"branch-alias": {
"dev-master": "5.1.x-dev"
}
},
"minimum-stability": "dev",
"prefer-stable": true
}