-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
58 lines (58 loc) · 1.87 KB
/
Copy pathcomposer.json
File metadata and controls
58 lines (58 loc) · 1.87 KB
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "jazzsequence/games-collector",
"description": "A WordPress plugin to catalog all your tabletop (or other) games in your WordPress site and display a list of games in your collection.",
"type": "wordpress-plugin",
"authors": [
{
"name": "Chris Reynolds",
"email": "chris@jazzsequence.com"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"license": "GPL-3.0",
"require": {
"johnbillion/extended-cpts": "^5.0",
"harvesthq/chosen": "^1.8",
"cmb2/cmb2": "~2.10.1"
},
"require-dev": {
"pantheon-systems/pantheon-wp-coding-standards": "^3.0",
"pantheon-systems/wpunit-helpers": "^2.0.3",
"phpunit/phpunit": "^9",
"yoast/phpunit-polyfills": "^4.0",
"automattic/vipwpcs": "^3.0",
"scrutinizer/ocular": "^1.9"
},
"config": {
"platform": {
"php": "8.3"
},
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"pantheon-systems/wpunit-helpers": true,
"scrutinizer/ocular": true
}
},
"scripts": {
"lint:php": [
"php -l $(find . -name '*.php' | grep -v vendor | grep -v node_modules)"
],
"lint:phpcs": [
"vendor/bin/phpcs -s ."
],
"lint:phpcbf": [
"vendor/bin/phpcbf ."
],
"lint": [
"@lint:php",
"@lint:phpcs"
],
"phpunit": "vendor/bin/phpunit --do-not-cache-result",
"test": "@phpunit",
"test:coverage": "vendor/bin/phpunit --do-not-cache-result --coverage-clover coverage.xml",
"test:setup": "bash bin/install-wp-tests.sh --dbpass=root",
"test:install": "bin/install-local-tests.sh --skip-db=true",
"test:install:withdb": "bin/install-local-tests.sh"
}
}