-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
50 lines (50 loc) · 1.13 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
50
{
"name": "symfonette/neon-integration",
"type": "library",
"description": "Integrates Nette Neon to Symfony",
"keywords": ["symfony","nette","yaml","neon","di"],
"homepage": "https://github.com/symfonette/neon-integration",
"license": "MIT",
"authors": [
{
"name": "Martin Hasoň",
"email": "martin.hason@gmail.com"
},
{
"name": "Webuni s.r.o.",
"homepage": "https://www.webuni.cz"
}
],
"require": {
"php": "^5.5|^7.0",
"nette/neon": "^2.2",
"symfony/config": "^2.3|^3.0|^4.0",
"symfony/dependency-injection": "^2.3|^3.0|^4.0"
},
"require-dev": {
"symfony/http-kernel": "^3.0",
"symfony/var-dumper": "^3.0",
"symfony/expression-language": "^3.0",
"nette/di": "@dev",
"phpunit/phpunit": "^4.8|^5.0",
"fabpot/php-cs-fixer": "^1.11"
},
"suggest": {
"symfony/http-kernel": ""
},
"autoload": {
"psr-4": {
"Symfonette\\NeonIntegration\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Symfonette\\NeonIntegration\\Tests\\": "tests"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
}
}