-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
46 lines (46 loc) · 1.82 KB
/
composer.json
File metadata and controls
46 lines (46 loc) · 1.82 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
{
"name": "convertkit/convertkit-wordpress-libraries",
"description": "WordPress API, Resource and Review Request classes for use in Kit WordPress Plugins",
"authors": [
{
"name": "Kit",
"email": "support@kit.com"
}
],
"type": "library",
"license": "GPLv3",
"require": {},
"require-dev": {
"php-webdriver/webdriver": "^1.0",
"wp-coding-standards/wpcs": "^3.0.0",
"phpstan/phpstan": "^1.0 || ^2.0",
"szepeviktor/phpstan-wordpress": "^1.0 || ^2.0",
"lucatume/wp-browser": "^3.0 || ^4.0"
},
"minimum-stability": "stable",
"scripts": {
"phpcs": "vendor/bin/phpcs ./ -s -v",
"phpcbf": "vendor/bin/phpcbf ./ -s -v",
"phpcs-tests": "vendor/bin/phpcs ./tests --standard=phpcs.tests.xml -s -v",
"phpcbf-tests": "vendor/bin/phpcbf ./tests --standard=phpcs.tests.xml -s -v",
"phpstan": "vendor/bin/phpstan analyse --memory-limit=1250M",
"coding-standards": "vendor/bin/phpcs ./ -s -v",
"fix-coding-standards": "vendor/bin/phpcbf ./ -s -v",
"coding-standards-on-tests": "vendor/bin/phpcs ./tests --standard=phpcs.tests.xml -s -v",
"fix-coding-standards-on-tests": "vendor/bin/phpcbf ./tests --standard=phpcs.tests.xml -s -v",
"static-analysis": "vendor/bin/phpstan analyse --memory-limit=1250M",
"test": [
"vendor/bin/codecept build @no_additional_args",
"vendor/bin/codecept run EndToEnd @additional_args --fail-fast"
],
"test-integration": [
"vendor/bin/codecept build @no_additional_args",
"vendor/bin/codecept run Integration @additional_args --fail-fast"
]
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}