-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
32 lines (32 loc) · 796 Bytes
/
composer.json
File metadata and controls
32 lines (32 loc) · 796 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
32
{
"name": "twentybellows/pattern-builder",
"require-dev": {
"phpunit/phpunit": "^9.3",
"wp-phpunit/wp-phpunit": "^6.6",
"yoast/phpunit-polyfills": "^1.1",
"spatie/phpunit-watcher": "^1.23",
"squizlabs/php_codesniffer": "^3.7",
"wp-coding-standards/wpcs": "^3.0",
"dealerdirect/phpcodesniffer-composer-installer": "^1.0"
},
"scripts": {
"format": "phpcbf --standard=phpcs.xml.dist --report-summary --report-source",
"lint": "phpcs --standard=phpcs.xml.dist",
"test": "phpunit",
"test:watch": [
"Composer\\Config::disableProcessTimeout",
"phpunit-watcher watch < /dev/tty"
]
},
"authors": [
{
"name": "Jason Crist",
"email": "jcrist@pbking.com"
}
],
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}