-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
45 lines (45 loc) · 991 Bytes
/
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
{
"name": "weirdan/run-without-xdebug",
"description": "Runs a php script with XDebug disabled",
"keywords": [
"Xdebug",
"xdebug",
"performance"
],
"require": {
"composer/xdebug-handler": "^1.3 || ^2.0 || ^3.0",
"php": "~7.1 || ~8.0"
},
"require-dev": {
"phpunit/phpunit": "^7.0 || ^8.0 || ^9.0 || ^11.0",
"ext-xdebug": "*",
"php": "~7.1 || ~8.0",
"squizlabs/php_codesniffer": "^3.3",
"php-parallel-lint/php-parallel-lint": "^1.3"
},
"autoload-dev": {
"psr-4": {
"Weirdan\\RunWithoutXdebug\\Tests\\Integration\\": "tests/integration"
}
},
"autoload": {
"psr-4": {
"Weirdan\\RunWithoutXdebug\\": "src/"
}
},
"license": "MIT",
"authors": [
{
"name": "Bruce Weirdan",
"email": "[email protected]"
}
],
"bin": [
"bin/php-noxdebug"
],
"scripts": {
"test": "bin/php-noxdebug vendor/bin/phpunit --color=always",
"cs-check": "phpcs",
"cs-fix": "phpcbf"
}
}