-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
43 lines (43 loc) · 1.16 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
40
41
42
43
{
"name": "backpack/language-switcher",
"description": "Language Switcher for Backpack",
"license": "MIT",
"authors": [
{
"name": "Antonio Almeida",
"email": "[email protected]",
"homepage": "https://promatik.pt"
},
{
"name": "Cristian Tabacitu",
"email": "[email protected]",
"homepage": "https://backpackforlaravel.com"
}
],
"homepage": "https://github.com/backpack/language-switcher",
"keywords": [
"Laravel", "Backpack", "Backpack for Laravel", "Backpack Addon", "Language", "Locale"
],
"scripts": {
"analyse": "./vendor/bin/phpstan analyse --level 5 src"
},
"require": {
"backpack/crud": "^6.0",
"outhebox/blade-flags": "^1.2"
},
"require-dev": {
"phpstan/phpstan": "^1.10"
},
"autoload": {
"psr-4": {
"Backpack\\LanguageSwitcher\\": "src/"
}
},
"extra": {
"laravel": {
"providers": [
"Backpack\\LanguageSwitcher\\LanguageSwitcherServiceProvider"
]
}
}
}