-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
51 lines (51 loc) · 1.66 KB
/
composer.json
File metadata and controls
51 lines (51 loc) · 1.66 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
{
"name": "automattic/vip-agentforce",
"description": "Used for setting up development dependencies across the whole repository.",
"homepage": "https://github.com/automattic/vip-agentforce",
"license": "GPL-2.0-or-later",
"require": {
"php": ">=8.1"
},
"require-dev": {
"automattic/vipwpcs": "^3",
"guzzlehttp/guzzle": "^7.9",
"php-stubs/wordpress-tests-stubs": "^6.8",
"php-stubs/wp-cli-stubs": "^2.12",
"phpcompatibility/phpcompatibility-wp": "^2",
"phpstan/phpstan": "^2.0",
"phpunit/phpunit": "^9",
"szepeviktor/phpstan-wordpress": "^2.0",
"wp-phpunit/wp-phpunit": "^6.5",
"yoast/phpunit-polyfills": "3.0.0",
"wp-cli/i18n-command": "^2.6"
},
"autoload-dev": {
"classmap": [
"./modules/",
"./utils/"
]
},
"config": {
"sort-packages": true,
"platform": {
"php": "8.1"
},
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"phpstan/extension-installer": false
}
},
"scripts": {
"start-dev": "npm run build:dev && vip dev-env start",
"lint": "./vendor/bin/phpcs --standard=.phpcs.xml.dist",
"analyze": "./vendor/bin/phpstan analyse --memory-limit=1024M",
"format": "./vendor/bin/phpcbf --standard=.phpcs.xml.dist",
"phpcs": "./vendor/bin/phpcs",
"test": "./bin/test.sh --php 8.1 --wp 6.9",
"test-noninteractive": "CI=true ./bin/test.sh --php 8.1 --wp 6.9",
"test-ci": "./bin/test.sh ",
"test:multisite": "./bin/test.sh --php 8.1 --wp 6.6 --multisite 1",
"test:integration": "./vendor/bin/phpunit --bootstrap tests/integration/bootstrap.php tests/integration/",
"pot": "wp i18n make-pot . ./languages/vip-agentforce.pot --domain=vip-agentforce --include=\"modules,utils,assets/js\""
}
}