-
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathcomposer.json
More file actions
47 lines (47 loc) · 1.16 KB
/
composer.json
File metadata and controls
47 lines (47 loc) · 1.16 KB
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
47
{
"name": "seiger/slang",
"license": "GPL-3.0",
"type": "EvolutionCMS-Module",
"description": "Evocms package for work with Multi lang management for Resource and modules in Evolution CMS. Seiger Lang multi language Management Module for Evolution CMS admin panel. The work of the module is based on the use of the standard Laravel functionality for multilingualism.",
"keywords": [
"evocms",
"evolution-cms",
"lang",
"language",
"translation-management"
],
"authors": [
{
"name": "Serhii Korneliuk",
"email": "info@seigerit.com"
}
],
"require": {
"php": "^8.3",
"evolution-cms/evolution": "^3.3"
},
"autoload": {
"psr-4": {
"Seiger\\sLang\\": "src/"
}
},
"extra": {
"laravel": {
"providers": [
"Seiger\\sLang\\sLangServiceProvider"
],
"_comment": "priority ensures sLang loads FIRST for correct multilingual URL routing",
"priority": {
"Seiger\\sLang\\sLangServiceProvider": 20
},
"aliases": {
"sLang": "Seiger\\sLang\\Facades\\sLang"
}
}
},
"scripts": {
"post-autoload-dump": [
"php artisan migrate"
]
}
}