-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathcomposer.json
53 lines (53 loc) · 1.62 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
{
"name": "wtactics/sandscape",
"description": "A web and browser based platform that allows users to play CCGs, collectible card games.",
"keywords": ["wtactics, ccg, collectible card game"],
"homepage": "https://github.com/wtactics/sandscape",
"type": "project",
"license": "",
"minimum-stability": "stable",
"require": {
"php": ">=5.4.0",
"yiisoft/yii2": "*",
"yiisoft/yii2-bootstrap": "*",
"yiisoft/yii2-swiftmailer": "*",
"masterexploder/phpthumb": "dev-master"
},
"require-dev": {
"yiisoft/yii2-codeception": "*",
"yiisoft/yii2-debug": "*",
"yiisoft/yii2-gii": "*",
"yiisoft/yii2-faker": "*",
"codeception/codeception": "*",
"squizlabs/php_codesniffer": "2.*",
"phploc/phploc": "*",
"pdepend/pdepend": "2.*",
"phpmd/phpmd": "@stable",
"sebastian/phpcpd": "*",
"theseer/phpdox": "*"
},
"config": {
"process-timeout": 1800
},
"scripts": {
"post-create-project-cmd": [
"yii\\composer\\Installer::postCreateProject"
]
},
"extra": {
"yii\\composer\\Installer::postCreateProject": {
"setPermission": [
{
"sandscape/platform/runtime": "0777",
"sandscape/console/runtime": "0777",
"sandscape/yii": "0755",
"web/assets": "0777"
}
]
},
"asset-installer-paths": {
"npm-asset-library": "vendor/npm",
"bower-asset-library": "vendor/bower"
}
}
}