-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
42 lines (42 loc) · 1.23 KB
/
composer.json
File metadata and controls
42 lines (42 loc) · 1.23 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
{
"name": "close/formscrm",
"description": "",
"homepage": "https://close.technology/",
"license": "GPL-2.0-or-later",
"config": {
"platform": {
"php": "8.1"
},
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"phpstan/extension-installer": true
}
},
"require-dev": {
"squizlabs/php_codesniffer": "^3",
"dealerdirect/phpcodesniffer-composer-installer": "^1.0",
"phpcompatibility/phpcompatibility-wp": "^2",
"sirbrillig/phpcs-variable-analysis": "^2",
"wp-coding-standards/wpcs": "^3",
"phpcsstandards/phpcsutils": "^1.x-dev",
"phpunit/phpunit": "^9.5",
"yoast/phpunit-polyfills": "^4.0",
"wp-phpunit/wp-phpunit": "^6.3",
"phpstan/phpstan": "^1.10",
"phpstan/extension-installer": "^1.3",
"szepeviktor/phpstan-wordpress": "^1.3"
},
"autoload-dev": {
"classmap": [
"./vendor/wp-coding-standards/wpcs/"
]
},
"scripts": {
"test": "phpunit",
"test-debug": "XDEBUG_MODE=debug XDEBUG_TRIGGER=1 phpunit",
"test-install": "AUTO_APPROVE_DB_DELETE=y bash bin/install-wp-tests.sh wordpress_test root 'root' 127.0.0.1 latest",
"lint": "phpcs --standard=.phpcs.xml.dist",
"format": "phpcbf --standard=.phpcs.xml.dist",
"phpstan": "phpstan analyse --memory-limit=2048M"
}
}