generated from moonshine-software/moonshine-package-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
58 lines (58 loc) · 1.58 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "visual-ideas/moonshine-laravel-translations",
"description": "Manage Laravel translation files with MoonShine admin panel",
"keywords": [
"PHP",
"Laravel",
"Eloquent",
"Localization",
"Multilingual",
"Translation",
"GUI",
"VisualIdeas",
"VI",
"MoonShine"
],
"type": "library",
"homepage": "https://github.com/visual-ideas/moonshine-laravel-translations",
"license": "MIT",
"support": {
"issues": "https://github.com/visual-ideas/moonshine-laravel-translations/issues",
"source": "https://github.com/visual-ideas/moonshine-laravel-translations"
},
"authors": [
{
"name": "Alex",
"email": "alex.visualideas@gmail.com",
"role": "Developer"
}
],
"require": {
"php": "^8.0|^8.1|^8.2",
"laravel/framework": "^9.21|^10.0",
"moonshine/moonshine": "^1.60",
"ext-json": "*",
"spatie/laravel-translatable": "^6.5",
"visual-ideas/moonshine-spatie-translatable": "^1.1"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.21"
},
"autoload": {
"psr-4": {
"VI\\MoonShineLaravelTranslations\\": "src/"
}
},
"conflict": {
},
"scripts": {
"format": "vendor/bin/php-cs-fixer fix --allow-risky=yes"
},
"extra": {
"laravel": {
"providers": [
"VI\\MoonShineLaravelTranslations\\Providers\\MoonShineLaravelTranslationsServiceProvider"
]
}
}
}