-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
33 lines (33 loc) · 1.07 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
{
"name": "generationentandem/ohh-theme",
"type": "wordpress-theme",
"description": "Wordpress Theme für UND Generationentandem",
"minimum-stability" : "dev",
"license": "MIT",
"authors": [
{
"name": "Ole Fredrik Lie",
"email": "mail@olefredrik.com"
}
],
"require": {
"php": "^7.4|^8.0",
"ext-json": "*"
},
"require-dev": {
"squizlabs/php_codesniffer": "^3.7.2",
"dealerdirect/phpcodesniffer-composer-installer": "^1.0.0",
"wp-coding-standards/wpcs": "^2.3.0",
"php-parallel-lint/php-parallel-lint": "^v1.3.2"
},
"scripts": {
"phpcs": "@php ./vendor/squizlabs/php_codesniffer/bin/phpcs theme/",
"phpcs:fix": "@php ./vendor/squizlabs/php_codesniffer/bin/phpcbf theme/",
"lint": "@php ./vendor/php-parallel-lint/php-parallel-lint/parallel-lint . -e php --exclude vendor --exclude .git --exclude .github"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}