forked from itsgoingd/clockwork
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
34 lines (34 loc) · 903 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
{
"name": "itsgoingd/clockwork",
"description": "php dev tools in your browser",
"keywords": ["debugging", "profiling", "logging", "laravel", "lumen", "slim", "devtools"],
"homepage": "https://underground.works/clockwork",
"license": "MIT",
"authors": [
{
"name": "itsgoingd",
"email": "[email protected]",
"homepage": "https://twitter.com/itsgoingd"
}
],
"require": {
"php": ">=5.6",
"ext-json": "*",
"psr/log": "1.*"
},
"autoload": {
"psr-4": {
"Clockwork\\": "Clockwork/"
}
},
"extra": {
"laravel": {
"providers": [
"Clockwork\\Support\\Laravel\\ClockworkServiceProvider"
],
"aliases": {
"Clockwork": "Clockwork\\Support\\Laravel\\Facade"
}
}
}
}