This repository has been archived by the owner on Feb 24, 2022. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
composer.json
68 lines (68 loc) · 1.81 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
60
61
62
63
64
65
66
67
68
{
"name": "cybercog/laravel-whoops-editor",
"description": "Laravel Whoops Editor helps to open your code editor from exception stack trace.",
"type": "library",
"license": "MIT",
"keywords": [
"cybercog",
"cog",
"laravel",
"whoops",
"exception",
"error",
"ide",
"editor",
"stacktrace"
],
"authors": [
{
"name": "Anton Komarev",
"email": "[email protected]",
"homepage": "https://komarev.com",
"role": "Developer"
}
],
"homepage": "https://komarev.com/sources/laravel-whoops-editor",
"support": {
"email": "[email protected]",
"issues": "https://github.com/cybercog/laravel-whoops-editor/issues",
"wiki": "https://github.com/cybercog/laravel-whoops-editor/wiki",
"source": "https://github.com/cybercog/laravel-whoops-editor",
"docs": "https://github.com/cybercog/laravel-whoops-editor/wiki"
},
"require": {
"php": "^7.0",
"filp/whoops": "~2.0",
"illuminate/support": ">=5.5.25"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^1.11",
"orchestra/testbench": "~3.5.0",
"phpunit/phpunit": "^6.0"
},
"autoload": {
"psr-4": {
"Cog\\Laravel\\WhoopsEditor\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Cog\\Tests\\Laravel\\WhoopsEditor\\": "tests/"
}
},
"scripts": {
"test": "vendor/bin/phpunit"
},
"config": {
"sort-packages": true
},
"extra": {
"laravel": {
"providers": [
"Cog\\Laravel\\WhoopsEditor\\Providers\\WhoopsEditorServiceProvider"
]
}
},
"minimum-stability": "dev",
"prefer-stable" : true
}