-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
37 lines (37 loc) · 799 Bytes
/
composer.json
File metadata and controls
37 lines (37 loc) · 799 Bytes
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": "outerweb/localization",
"description": "This package adds multi-language support to your Laravel application.",
"homepage": "https://github.com/outer-web/localization",
"license": "MIT",
"authors": [
{
"name": "Outerweb",
"email": "info@outerweb.be"
}
],
"require": {
"php": "^8.0",
"laravel/framework": "^10.0|^11.0|^12.0",
"spatie/laravel-package-tools": "^1.16"
},
"autoload": {
"psr-4": {
"Outerweb\\Localization\\": "src/"
},
"files": [
"src\\Helpers\\helpers.php"
]
},
"extra": {
"laravel": {
"providers": [
"Outerweb\\Localization\\LocalizationServiceProvider"
]
}
},
"config": {
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true
}