-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathcomposer.json
29 lines (28 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
{
"name": "ptrofimov/clockwork-cli",
"description": "Command-line interface for Clockwork, the tool for debugging and profiling PHP applications",
"keywords": ["clockwork", "cli", "laravel", "debugging", "profiling", "logging"],
"license": "MIT",
"homepage": "http://github.com/ptrofimov/clockwork-cli",
"authors": [
{
"name": "Petr Trofimov",
"email": "[email protected]"
}
],
"support": {
"email": "[email protected]",
"source": "https://github.com/ptrofimov/clockwork-cli",
"issues": "https://github.com/ptrofimov/clockwork-cli/issues"
},
"require": {
"php": ">=5.3",
"itsgoingd/clockwork": "1.*"
},
"autoload": {
"psr-4": {
"Clockwork\\Cli\\": "src/Clockwork/Cli"
}
},
"bin": ["bin/clockwork-cli"]
}