-
-
Notifications
You must be signed in to change notification settings - Fork 174
/
composer.json
69 lines (69 loc) · 2.01 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
60
61
62
63
64
65
66
67
68
69
{
"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": "^8.1",
"ext-intl": "*",
"ext-json": "*",
"graham-campbell/guzzle-factory": "^5.0|^7.0",
"guzzlehttp/guzzle": "^7.4|^7.2",
"illuminate/cache": "^10.0|^11.0",
"illuminate/config": "^10.0|^11.0",
"illuminate/console": "^10.0|^11.0",
"illuminate/container": "^10.0|^11.0",
"illuminate/contracts": "^10.0|^11.0",
"illuminate/events": "^10.0|^11.0",
"illuminate/filesystem": "^10.0|^11.0",
"illuminate/notifications": "^10.0|^11.0",
"illuminate/support": "^10.0|^11.0",
"laravel/slack-notification-channel": "^2.4|^3.2",
"spatie/ssl-certificate": "^1.22|^2.1.2",
"spatie/url": "^2.0.0"
},
"require-dev": {
"mockery/mockery": "^1.4",
"illuminate/testing": "^10.0|^11.0",
"orchestra/testbench": "^8.0|^9.0",
"phpunit/phpunit": "^9.5|^10.5"
},
"autoload": {
"psr-4": {
"Spatie\\UptimeMonitor\\": "src",
"Spatie\\UptimeMonitor\\Database\\Factories\\": "database/factories"
}
},
"autoload-dev": {
"psr-4": {
"Spatie\\UptimeMonitor\\Test\\": "tests"
}
},
"scripts": {
"test": "vendor/bin/phpunit"
},
"config": {
"sort-packages": true
},
"extra": {
"laravel": {
"providers": [
"Spatie\\UptimeMonitor\\UptimeMonitorServiceProvider"
]
}
},
"minimum-stability": "dev",
"prefer-stable": true
}