-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
54 lines (54 loc) · 1.44 KB
/
composer.json
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
{
"name": "drgnff/wp-stage-switcher",
"description": "Switch between server environments from the WordPress admin bar.",
"license": "GPL-3.0",
"keywords": [
"wordpress"
],
"type": "wordpress-plugin",
"authors": [
{
"name": "Ivaylo Draganov",
"email": "[email protected]",
"homepage": "https://dragunoff.github.io/",
"role": "Developer"
}
],
"autoload": {
"psr-4": {
"Drgnff\\WP\\StageSwitcher\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Drgnff\\WP\\StageSwitcher\\Tests\\": "tests/"
}
},
"require": {
"php": ">7.4.0",
"composer/installers" : "~1.0"
},
"require-dev": {
"squizlabs/php_codesniffer": "^3.6",
"phpunit/phpunit": "^9.5",
"dealerdirect/phpcodesniffer-composer-installer": "^0.7.1",
"phpcompatibility/php-compatibility": "^9.3",
"wp-coding-standards/wpcs": "^2.3",
"phpcompatibility/phpcompatibility-wp": "^2.1",
"brain/monkey": "^2.6",
"spatie/phpunit-watcher": "^1.23",
"automattic/phpcs-neutron-ruleset": "^3.4",
"slevomat/coding-standard": "^7.0",
"php-parallel-lint/php-parallel-lint": "^1.3",
"phpstan/phpstan": "^1.4",
"szepeviktor/phpstan-wordpress": "^1.0"
},
"scripts": {
"analyse": "phpstan analyse -c phpstan.neon",
"lint": "parallel-lint --exclude vendor .",
"cs:check": "phpcs",
"cs:fix": "phpcbf",
"test": "phpunit",
"test:watch": "phpunit-watcher watch"
}
}