-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcomposer.json
43 lines (43 loc) · 1.1 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
{
"name": "weapnl/laravel-junction",
"description": "Easily create a REST API with extended functionality, such as eager loading, searching, filtering, and more.",
"homepage": "https://github.com/weapnl/laravel-junction",
"license": "MIT",
"type": "library",
"authors": [
{
"name": "Robin",
"email": "robin@weap.nl"
}
],
"suggest": {
"spatie/laravel-medialibrary": "For using the temporary media upload functionality."
},
"minimum-stability": "dev",
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true
},
"prefer-stable": true,
"require": {
"php": "^8.2",
"ext-pdo": "*",
"laravel/framework": "^8.0 || ^9.0 || ^10.0 || ^11.0"
},
"extra": {
"laravel": {
"providers": [
"Weap\\Junction\\JunctionServiceProvider"
]
}
},
"autoload": {
"psr-4": {
"Weap\\Junction\\": "src/"
}
},
"require-dev": {
"laravel/pint": "^1.17"
}
}