-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
45 lines (44 loc) · 1.06 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
{
"name": "siemendev/forskel",
"description": "Forskel implements a fully decoupled frontend provider for multi site symfony projects.",
"type": "symfony-bundle",
"license": "MIT",
"version": "1.0.0",
"authors": [
{
"name": "Patrick Siemen",
"email": "[email protected]"
}
],
"require": {
"php": "^7.1.3",
"symfony/framework-bundle": "^4.0",
"symfony/twig-bundle": "^4.0",
"symfony/yaml": "^4.2"
},
"require-dev": {
"phpunit/phpunit": "^7",
"friendsofphp/php-cs-fixer": "^2.14",
"php-coveralls/php-coveralls": "^2.1"
},
"config": {
"platform": {
"php": "7.1.3"
}
},
"autoload": {
"psr-4": {
"siemendev\\ForskelBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"siemendev\\ForskelBundle\\Tests\\": "tests/"
}
},
"conflict": {
"symfony/symfony": "<4.0"
},
"minimum-stability": "dev",
"prefer-stable": true
}