-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
executable file
·34 lines (34 loc) · 1001 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
{
"name": "dakanji/G2Project",
"description": "Community Update of Gallery2 - A web based photo album viewer and editor",
"type": "project",
"license": "GPL-2.0",
"authors": [
{
"name": "Contributors",
"homepage": "https://github.com/dakanji/G2Project/graphs/contributors"
}
],
"support": {
"issues": "https://github.com/dakanji/G2Project/issues"
},
"config": {
"vendor-dir": "dev_vendor"
},
"require": {
"php": ">=5.3.3"
},
"require-dev": {
"squizlabs/php_codesniffer": "^3.4",
"friendsofphp/php-cs-fixer": "^2.15",
"wp-coding-standards/wpcs": "^2.0"
},
"scripts": {
"post-install-cmd": [
"chmod +x ./dev_scripts/hooks/* && chmod +x ./dev_scripts/setup.sh && ./dev_scripts/setup.sh"
],
"post-update-cmd": [
"chmod +x ./dev_scripts/hooks/* && chmod +x ./dev_scripts/setup.sh && ./dev_scripts/setup.sh"
]
}
}