-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
36 lines (36 loc) · 918 Bytes
/
composer.json
File metadata and controls
36 lines (36 loc) · 918 Bytes
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
{
"name": "uvoteam/php-without-xdebug-runner",
"type": "library",
"description": "Runner for PHP without Xdebug. Useful for collecting code coverage with PCOV even if Xdebug installed",
"keywords": [
"php",
"debug",
"xdebug",
"coverage",
"pcov"
],
"homepage": "https://github.com/uvoteam/php-without-xdebug-runner",
"license": "MIT",
"require": {
"php": "^7.1"
},
"require-dev": {
"ergebnis/composer-normalize": "^2.3"
},
"config": {
"htaccess-protect": false,
"notify-on-install": false,
"platform": {
"php": "7.2"
},
"preferred-install": "dist",
"sort-packages": true
},
"bin": [
"bin/php-no-xdebug",
"bin/php7.1-no-xdebug",
"bin/php7.2-no-xdebug",
"bin/php7.3-no-xdebug",
"bin/php7.4-no-xdebug"
]
}