-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathcomposer.json
46 lines (46 loc) · 1.21 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": "nathanheffley/laravel-watermelon",
"type": "library",
"description": "Easily set up a sync endpoint to support Watermelon DB in your Laravel projects.",
"keywords": ["package", "laravel", "offline", "database", "watermelon", "watermelondb"],
"license": "MIT",
"authors": [
{
"name": "Nathan Heffley",
"email": "nathan@nathanheffley.com"
}
],
"require": {
"php": "^8.0",
"illuminate/database": "^11.0",
"illuminate/http": "^11.0",
"illuminate/routing": "^11.0",
"illuminate/support": "^11.0"
},
"require-dev": {
"laravel/sail": "^1.26",
"orchestra/testbench": "^9.0"
},
"autoload": {
"psr-4": {
"NathanHeffley\\LaravelWatermelon\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"NathanHeffley\\LaravelWatermelon\\Tests\\": "tests/"
}
},
"config": {
"sort-packages": true
},
"extra": {
"laravel": {
"providers": [
"NathanHeffley\\LaravelWatermelon\\WatermelonServiceProvider"
]
}
},
"minimum-stability": "dev",
"prefer-stable": true
}