-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
62 lines (62 loc) · 1.58 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
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "keurbycandy/diamond-dogs",
"type": "project",
"description": "Application running agile tasks",
"license": "proprietary",
"require": {
"php": "^7.0.8",
"phpunit/phpunit": "^6.4",
"sensio/framework-extra-bundle": "^5.0",
"symfony/console": "^3.3",
"symfony/framework-bundle": "^3.3",
"symfony/property-access": "^3.3",
"symfony/serializer": "^3.3",
"symfony/yaml": "^3.3"
},
"require-dev": {
"symfony/flex": "^1.0",
"symfony/dotenv": "^3.3",
"symfony/debug-bundle": "^3.3",
"symfony/web-server-bundle": "^3.3"
},
"config": {
"preferred-install": {
"*": "dist"
},
"sort-packages": true
},
"autoload": {
"psr-4": {
"App\\": "src/",
"AgileRetrospective\\": "src/AgileRetrospective/"
}
},
"autoload-dev": {
"psr-4": {
"AgileRetrospective\\": "tests/AgileRetrospective/"
}
},
"scripts": {
"auto-scripts": {
"cache:clear": "symfony-cmd",
"assets:install --symlink --relative %PUBLIC_DIR%": "symfony-cmd"
},
"post-install-cmd": [
"@auto-scripts"
],
"post-update-cmd": [
"@auto-scripts"
]
},
"conflict": {
"symfony/symfony": "*",
"symfony/twig-bundle": "<3.3",
"symfony/debug": "<3.3"
},
"extra": {
"symfony": {
"id": "01BYGH0G38NEZANMTNM0RWB983",
"allow-contrib": false
}
}
}