-
Notifications
You must be signed in to change notification settings - Fork 7
/
composer.json
39 lines (39 loc) · 1.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
{
"name" : "axn/laravel-glide",
"description" : "league/glide wrapper for Laravel",
"homepage" : "https://github.com/AXN-Informatique/laravel-glide",
"support" : {
"issues" : "https://github.com/AXN-Informatique/laravel-glide/issues"
},
"authors" : [{
"name" : "AXN Informatique",
"email" : "[email protected]"
}
],
"license" : "MIT",
"require" : {
"php": "^8.0",
"laravel/framework" : "^9.0 || ^10.0 || ^11.0",
"league/glide-symfony" : "^2.0"
},
"require-dev": {
"laravel/pint": "^1.15.1",
"driftingly/rector-laravel": "^1.1",
"rector/rector": "^1.0.4"
},
"autoload" : {
"psr-4" : {
"Axn\\LaravelGlide\\" : "src/"
}
},
"extra": {
"laravel": {
"providers": [
"Axn\\LaravelGlide\\ServiceProvider"
],
"aliases": {
"Glide": "Axn\\LaravelGlide\\Facade"
}
}
}
}