forked from rtfmcorp/asylamba-game
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
36 lines (32 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
{
"name": "rtfmcorp/asylamba-game",
"type": "project",
"autoload": {
"psr-4": {
"Asylamba\\": "system/",
"Tests\\Asylamba\\": "tests/"
}
},
"require": {
"php": "~7.0",
"phpunit/phpunit": "6.1",
"symfony/config": "~2.6",
"symfony/yaml": "~2.6",
"ocramius/proxy-manager": "^2.0",
"incenteev/composer-parameter-handler": "~2.0"
},
"scripts": {
"post-install-cmd": [
"Incenteev\\ParameterHandler\\ScriptHandler::buildParameters"
],
"post-update-cmd": [
"Incenteev\\ParameterHandler\\ScriptHandler::buildParameters"
]
},
"extra": {
"incenteev-parameters": {
"file": "config/parameters.yml",
"dist-file": "config/parameters.dist.yml"
}
}
}