forked from SymfonyTest/SymfonyConfigTest
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
25 lines (25 loc) · 755 Bytes
/
composer.json
File metadata and controls
25 lines (25 loc) · 755 Bytes
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
{
"name": "matthiasnoback/symfony-config-test",
"type": "library",
"description": "Library for testing user classes related to the Symfony Config Component",
"keywords": ["symfony", "config", "phpunit"],
"homepage": "https://github.com/matthiasnoback/SymfonyConfigTest",
"license": "MIT",
"authors": [
{
"name": "Matthias Noback",
"email": "matthiasnoback@gmail.com",
"homepage": "http://php-and-symfony.matthiasnoback.nl"
}
],
"require": {
"php": "^7.0",
"symfony/config": "^2.3 || ^3.0 || ^4.0"
},
"require-dev": {
"phpunit/phpunit": "^6.0"
},
"autoload": {
"psr-4" : { "Matthias\\SymfonyConfigTest\\" : "" }
}
}