-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
49 lines (49 loc) · 1.26 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
39
40
41
42
43
44
45
46
47
48
49
{
"name": "symfonette/class-named-services",
"type": "library",
"description": "",
"keywords": ["symfony", "dependency injection"],
"homepage": "https://symfony.webuni.cz",
"license": "MIT",
"authors": [
{
"name": "Martin Hasoň",
"email": "[email protected]"
},
{
"name": "Webuni s.r.o.",
"homepage": "https://www.webuni.cz"
}
],
"autoload": {
"psr-4": {
"Symfonette\\ClassNamedServices\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Symfonette\\ClassNamedServices\\Tests\\": "tests"
},
"files": ["tests/classes.php"]
},
"require": {
"php": "^5.5|^7.0",
"symfony/dependency-injection": "^2.8.5|^3.0.5"
},
"require-dev": {
"phpunit/phpunit": "^4.8|^5.2",
"symfony/config": "^2.8|^3.0",
"symfony/var-dumper": "^2.8|^3.0",
"symfony/http-kernel": "^2.8|^3.0",
"friendsofphp/php-cs-fixer": "^1.9",
"sllh/php-cs-fixer-styleci-bridge": "^2.0"
},
"suggest": {
"symfony/http-kernel": "If you want to use bundle"
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
}
}