-
Notifications
You must be signed in to change notification settings - Fork 283
/
composer.json
47 lines (47 loc) · 883 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
46
47
{
"name": "php-console/php-console",
"description": "PHP library for Google Chrome extension \"PHP Console\".",
"keywords": [
"PHP",
"errors",
"debug",
"chrome",
"error handler",
"google chrome"
],
"homepage": "https://github.com/barbushin/php-console",
"license": "MIT",
"type": "library",
"authors": [
{
"name": "Sergey Barbushin",
"homepage": "http://linkedin.com/in/barbushin",
"email": "[email protected]"
}
],
"support": {
"issues": "https://github.com/barbushin/php-console/issues"
},
"require": {
"php": ">=5.3.0"
},
"require-dev": {
"phpunit/phpunit": "^4.8",
"ext-mbstring": "*",
"psr/log": "^1.0"
},
"autoload": {
"psr-4": {
"PhpConsole\\": "src/PhpConsole"
}
},
"autoload-dev": {
"psr-4": {
"PhpConsole\\": "test"
}
},
"scripts": {
"test": "phpunit",
"test-cover": "phpunit --coverage-text"
}
}