-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
37 lines (37 loc) · 941 Bytes
/
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
{
"name": "seiger/sgallery",
"license": "GPL-3.0",
"type": "EvolutionCMS-Plugin",
"description": "Evocms package for work with Gallery for Resource in Evolution CMS and manipulate images with an expressive API",
"keywords": ["evocms", "evolution-cms", "gallery"],
"authors": [
{
"name": "Serhii Korneliuk",
"email": "[email protected]"
}
],
"require": {
"php": "^8.2",
"spatie/image": "3.*"
},
"autoload": {
"psr-4": {
"Seiger\\sGallery\\": "src/"
}
},
"extra": {
"laravel": {
"providers": [
"Seiger\\sGallery\\sGalleryServiceProvider"
],
"aliases": {
"sGallery": "Seiger\\sGallery\\Facades\\sGallery"
}
}
},
"scripts": {
"post-autoload-dump": [
"php artisan migrate"
]
}
}