forked from itsgoingd/clockwork
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
41 lines (41 loc) · 1.34 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
{
"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": "itsgoingd@luzer.sk",
"homepage": "https://twitter.com/itsgoingd"
}
],
"require": {
"php": ">=7.1",
"ext-json": "*"
},
"suggest": {
"ext-pdo": "Needed in order to use a SQL database for metadata storage",
"ext-pdo_sqlite": "Needed in order to use a SQLite for metadata storage",
"ext-pdo_mysql": "Needed in order to use MySQL for metadata storage",
"ext-pdo_postgres": "Needed in order to use Postgres for metadata storage",
"ext-redis": "Needed in order to use Redis for metadata storage",
"php-http/discovery": "Vanilla integration - required for the middleware zero-configuration setup"
},
"autoload": {
"psr-4": {
"Clockwork\\": "Clockwork/"
}
},
"extra": {
"laravel": {
"providers": [
"Clockwork\\Support\\Laravel\\ClockworkServiceProvider"
],
"aliases": {
"Clockwork": "Clockwork\\Support\\Laravel\\Facade"
}
}
}
}