-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
36 lines (36 loc) · 1.27 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
{
"name": "basedonline/supprt-hours",
"description": "WordPress parent theme for quick theme development",
"type": "project",
"homepage": "https://studiolemon.nl/",
"support": {
"docs": "https://studio-lemon.github.io/wp-lemon-docs/"
},
"authors": [
{
"name": "Erik van der Bas",
"email": "[email protected]"
}
],
"prefer-stable": true,
"require": {},
"require-dev": {
"php": ">=7.4|>=8.0",
"wp-coding-standards/wpcs": "^2",
"dealerdirect/phpcodesniffer-composer-installer": "^0.7.1",
"phpunit/phpunit": "^9",
"brain/monkey": "^2",
"phpcompatibility/php-compatibility": "^9"
},
"scripts": {
"lint:fix": "@php ./vendor/bin/phpcbf --standard=phpcs.xml.dist --extensions=php --colors -s -p -v ./",
"lint": "@php ./vendor/bin/phpcs --standard=phpcs.xml.dist --extensions=php --colors -s -p -v ./",
"test": "@php ./vendor/bin/phpunit",
"sniffer:php8": "@php ./vendor/bin/phpcs -p ./includes --standard=vendor/phpcompatibility/php-compatibility/PHPCompatibility --runtime-set testVersion 8.1"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}