-
Notifications
You must be signed in to change notification settings - Fork 9
/
composer.json
59 lines (59 loc) · 1.75 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
55
56
57
58
59
{
"name": "knowthecode/debug-toolkit",
"type": "wordpress-plugin",
"description": "Code debug made easier and more enjoyable.",
"homepage": "https://github.com/KnowTheCode/debug-toolkit",
"license": "GPL-2.0-or-later",
"require": {
"php": "^5.6 || ^7",
"composer/installers": "^1",
"filp/whoops": "^2.3",
"symfony/var-dumper": "^3.4",
"kint-php/kint": "^3.1"
},
"require-dev": {
"php": "^5.6 || ^7",
"brain/monkey": "^2",
"dealerdirect/phpcodesniffer-composer-installer": "^0.4.3",
"phpcompatibility/phpcompatibility-wp": "^2",
"phpunit/phpunit": "^5",
"roave/security-advisories": "dev-master",
"squizlabs/php_codesniffer": "^3.3",
"wp-coding-standards/wpcs": "^1"
},
"config": {
"sort-order": true
},
"autoload": {
"psr-4": {
"KnowTheCode\\DebugToolkit\\": "src"
},
"exclude-from-classmap": [
"/tests/"
]
},
"autoload-dev": {
"psr-4": {
"KnowTheCode\\DebugToolkit\\Tests\\": "tests/"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"install-codestandards": "Dealerdirect\\Composer\\Plugin\\Installers\\PHPCodeSniffer\\Plugin::run",
"integration-test": "phpunit --testsuite integration",
"phpcs": "phpcs && phpcs ./tests -sp --standard=PHPCompatibilityWP --runtime-set testVersion 5.6-",
"phpcs-fixed": "phpcs *.php assets config images lib/css lib/js lib/languages lib/shortcodes lib/*.php tests && phpcs ./tests -sp --standard=PHPCompatibility --runtime-set testVersion 5.6-",
"system-test": "phpunit --testsuite system",
"test": [
"@unit-test",
"@integration-test",
"@system-test"
],
"unit-test": "phpunit --testsuite unit"
},
"support": {
"issues": "https://github.com/KnowTheCode/debug-toolkit/issues",
"source": "https://github.com/KnowTheCode/debug-toolkit"
}
}