-
Notifications
You must be signed in to change notification settings - Fork 7
/
composer.json
46 lines (46 loc) · 1.2 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
{
"name": "lkdev/laravel-uptime-monitor-api",
"description": "A Restful API for spatie's uptime Monitor",
"keywords": [
"spatie",
"laravel-uptime-monitor"
],
"homepage": "https://github.com/LKDevelopment/laravel-uptime-monitor-api",
"license": "MIT",
"authors": [
{
"name": "Lukas Kämmerling",
"email": "kontakt@lukas-kaemmerling.de",
"homepage": "https://lukas-kammerling.de",
"role": "Developer"
}
],
"require": {
"php": "^7.0",
"spatie/laravel-uptime-monitor": "^2.0",
"illuminate/support": "^5.4.11",
"illuminate/database": "^5.4.11"
},
"require-dev": {
"mockery/mockery": "0.9.5",
"orchestra/testbench": "~3.4.0@dev",
"orchestra/database": "~3.4.0@dev",
"phpunit/phpunit": "^5.7"
},
"autoload": {
"psr-4": {
"LKDevelopment\\UptimeMonitorAPI\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"LKDevelopment\\UptimeMonitorAPI\\Tests\\": "tests"
}
},
"scripts": {
"test": "vendor/bin/phpunit"
},
"config": {
"sort-packages": true
}
}