-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
34 lines (34 loc) · 1016 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": "aristath/q",
"type": "wordpress-theme",
"description": "Q WordPress theme",
"homepage": "https://aristath.github.io",
"license": "GPL-2.0-or-later",
"authors": [{
"name": "aristath",
"email": "aristath@gmail.com",
"homepage": "https://aristath.github.io",
"role": "Developer"
}],
"require": {
"php": ">=7.3"
},
"require-dev": {
"composer/installers": "*",
"dealerdirect/phpcodesniffer-composer-installer": "*",
"wp-coding-standards/wpcs": "*",
"wptrt/wpthemereview": "*",
"szepeviktor/phpstan-wordpress": "*"
},
"scripts": {
"build": "git archive --format=zip -o q.zip --prefix=q/ origin/master .",
"ci:syntax": "find . -type f -not -path './node_modules/*' -not -path './vendor/*' -name '*.php' -print0|xargs -0 -P 4 -L 1 -- php -l",
"ci:coding-standars": "phpcs --parallel=4 .",
"ci:static-analysis": "phpstan analyze",
"test": [
"@ci:syntax",
"@ci:coding-standars",
"@ci:static-analysis"
]
}
}