-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathcomposer.json
More file actions
31 lines (31 loc) · 924 Bytes
/
composer.json
File metadata and controls
31 lines (31 loc) · 924 Bytes
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
{
"name": "softcatala/wp-softcatala",
"type": "wordpress-theme",
"description": "WordPress Theme for Softcatalà website",
"keywords" : ["wordpress"],
"homepage" : "https://github.com/Softcatala/wp-softcatala",
"license" : "GPL-2.0+",
"require-dev": {
"wp-coding-standards/wpcs": "^1.0",
"phpcompatibility/phpcompatibility-wp": "*",
"dealerdirect/phpcodesniffer-composer-installer": "^0.4.3",
"phpmd/phpmd": "^2.6"
},
"scripts": {
"phpmd" : "vendor/bin/phpmd classes/ text ./phpmd.xml --exclude 'vendor/'",
"phpcbf" : "vendor/bin/phpcbf classes/",
"phpcs" : "vendor/bin/phpcs --extensions=php classes/ --runtime-set testVersion 5.6",
"code" : [
"@config-cs",
"@phpcs",
"@phpmd"
]
},
"archive": {
"exclude": ["/tests/", "/bin/", "/phpunit.xml"]
},
"require": {
"php": ">=7.4",
"timber/timber": "^2"
}
}