-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
38 lines (38 loc) · 960 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
38
{
"name": "itstructure/laravel-multilingual-tools",
"description": "Laravel package for multilingual content manage",
"type": "library",
"keywords": ["laravel", "multilingual", "language"],
"license": "MIT",
"authors": [
{
"name": "Andrey Girnik",
"email": "girnikandrey@gmail.com",
"homepage": "https://github.com/itstructure",
"role": "Developer"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"laravel/framework": "^8.0|^9.0|^10.0|^11.0",
"php": ">=7.3.0"
},
"classmap": [
"database/migrations",
"database/seeders",
"src/Models"
],
"autoload": {
"psr-4": {
"Itstructure\\Mult\\": "src"
}
},
"extra": {
"laravel": {
"providers": [
"Itstructure\\Mult\\MultServiceProvider"
]
}
}
}