-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
36 lines (36 loc) · 862 Bytes
/
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
{
"minimum-stability" : "dev",
"require": {
"php": "^7.1",
"symfony/flex": "^1.0",
"symfony/framework-bundle": "^3.3",
"symfony/yaml": "^3.3",
"sensio/framework-extra-bundle": "^3.0",
"doctrine/annotations": "^1.4",
"doctrine/doctrine-bundle": "^1.6",
"doctrine/orm": "^2.5",
"symfony/twig-bundle": "^3.2"
},
"require-dev" : {
"behat/behat" : "^3.3",
"phpspec/phpspec": "^3.4",
"behat/symfony2-extension": "^2.1",
"symfony/dotenv": "^3.3@beta",
"behat/mink-extension": "^2.2",
"behat/mink-browserkit-driver": "^1.3"
},
"autoload": {
"psr-0": {
"Cjm\\Training\\" : "src"
},
"psr-4": {
"App\\" : "src"
}
},
"scripts": {
"auto-scripts": {
"make cache-warmup": "script",
"assets:install --symlink --relative %WEB_DIR%": "symfony-cmd"
}
}
}