-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
39 lines (39 loc) · 981 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
35
36
37
38
39
{
"name": "maqe/laravel-qwatcher",
"description": "A full-lifecycle queue jobs watcher for Laravel 5.1+",
"keywords": ["queue", "job", "laravel", "watcher"],
"license": "proprietary",
"authors": [
{
"name": "MAQE team",
"email": "[email protected]",
"homepage": "https://www.maqe.com/"
}
],
"require": {
"php": ">=5.5.9",
"illuminate/bus": "~5.1",
"illuminate/database": "~5.1",
"illuminate/queue": "~5.1",
"illuminate/support": "~5.1"
},
"require-dev": {
"phpunit/phpunit" : "~4.0",
"mockery/mockery": "~0.9"
},
"autoload": {
"classmap": [
"src/",
"tests/TestCase.php"
],
"psr-4": {
"Maqe\\Qwatcher\\": "src/",
"Maqe\\Qwatcher\\Tests\\": "tests/"
}
},
"autoload-dev": {
"classmap": [
"tests/TestCase.php"
]
}
}