-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathcomposer.json
49 lines (49 loc) · 1.17 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
{
"name": "php-console/laravel-service-provider",
"description": "Laravel service provider to handle PHP errors, dump variables, execute PHP code remotely in Google Chrome",
"keywords": [
"Laravel",
"PHP",
"errors",
"debug",
"chrome",
"error handler",
"google chrome",
"php-console"
],
"homepage": "https://github.com/barbushin/php-console-laravel",
"license": "BSD 3-Clause",
"type": "library",
"authors": [
{
"name": "Barbushin Sergey",
"email": "[email protected]",
"homepage": "http://linkedin.com/in/barbushin"
},
{
"name": "Wemerson Januario",
"email": "[email protected]",
"homepage": "http://linkedin.com/in/wemersonjanuario",
"role": "Laravel 5 support"
}
],
"support": {
"issues": "https://github.com/barbushin/php-console-laravel/issues?state=open"
},
"require": {
"php": ">=5.3.0",
"illuminate/support": "5.*",
"php-console/php-console": ">=3.1.4 <4.0"
},
"autoload": {
"psr-0": {
"PhpConsole\\Laravel\\": "src/"
}
},
"minimum-stability": "dev",
"extra": {
"branch-alias": {
"dev-master": "5.x-dev"
}
}
}