forked from spatie/laravel-uptime-monitor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
59 lines (59 loc) · 1.53 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
49
50
51
52
53
54
55
56
57
58
59
{
"name": "spatie/laravel-uptime-monitor",
"description": "A powerful, easy to configure uptime monitor",
"keywords": [
"spatie",
"laravel-uptime-monitor"
],
"homepage": "https://github.com/spatie/laravel-uptime-monitor",
"license": "MIT",
"authors": [
{
"name": "Freek Van der Herten",
"email": "[email protected]",
"homepage": "https://spatie.be",
"role": "Developer"
}
],
"require": {
"php": "^7.0",
"graham-campbell/guzzle-factory": "^2.1",
"guzzlehttp/guzzle": "^6.3",
"illuminate/console": "~5.5.0",
"illuminate/database": "~5.5.0",
"illuminate/events": "~5.5.0",
"illuminate/notifications": "~5.5.0",
"illuminate/queue": "~5.5.0",
"illuminate/support": "~5.5.0",
"spatie/ssl-certificate": "^1.5.0",
"spatie/url": "^1.0.1"
},
"require-dev": {
"mockery/mockery": "0.9.5",
"orchestra/testbench": "~3.5.0",
"phpunit/phpunit": "^6.3"
},
"autoload": {
"psr-4": {
"Spatie\\UptimeMonitor\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Spatie\\UptimeMonitor\\Test\\": "tests"
}
},
"scripts": {
"test": "vendor/bin/phpunit"
},
"config": {
"sort-packages": true
},
"extra": {
"laravel": {
"providers": [
"Spatie\\UptimeMonitor\\UptimeMonitorServiceProvider"
]
}
}
}