forked from srdjanmitrovic/eye
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
48 lines (48 loc) · 1.09 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
{
"name": "eyewitness/eye",
"description": "Eyewitness.io client for Laravel 5 applications",
"keywords": [
"laravel 5",
"queue",
"cron",
"monitor",
"eyewitness"
],
"homepage": "https://github.com/eyewitness/eye",
"license": "MIT",
"authors": [
{
"name": "Laurence",
"email": "[email protected]"
}
],
"require": {
"guzzlehttp/guzzle": "5.*|6.*",
"laravel/framework": "~5.1",
"nesbot/Carbon": "*",
"eyewitness/cron-expression": "~3.0"
},
"require-dev": {
"mockery/mockery": "~1.0",
"phpunit/phpunit": "~6.0",
"orchestra/testbench": "~3.5",
"fzaninotto/faker": "~1.4"
},
"autoload": {
"psr-4": {
"Eyewitness\\Eye\\": "app"
}
},
"autoload-dev": {
"psr-4": {
"Eyewitness\\Eye\\Test\\": "tests"
}
},
"extra": {
"laravel": {
"providers": [
"Eyewitness\\Eye\\EyeServiceProvider"
]
}
}
}