-
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathcomposer.json
More file actions
62 lines (62 loc) · 1.85 KB
/
composer.json
File metadata and controls
62 lines (62 loc) · 1.85 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"$schema": "https://getcomposer.org/schema.json",
"name": "erag/laravel-lang-sync-inertia",
"description": "A powerful Laravel package for syncing and managing language translations across backend and Inertia.js (Vue/React) frontends, offering effortless localization, auto-sync features, and smooth multi-language support for modern Laravel applications.",
"license": "MIT",
"keywords": [
"laravel",
"inertia",
"inertiajs",
"translations",
"localization",
"i18n",
"multi-language",
"language-sync",
"lang-sync",
"translation-sync",
"laravel-inertia",
"inertia-lang",
"lang-manager",
"language-manager",
"laravel-l10n",
"laravel-i18n",
"vue i18n",
"react i18n",
"translation-helper",
"dynamic-translations"
],
"authors": [
{
"name": "Er Amit Gupta",
"email": "info.eramitgupta@gmail.com",
"homepage": "https://github.com/eramitgupta"
}
],
"require": {
"php": ">=8.1.0",
"laravel/pint": "^1.13",
"illuminate/console": "^8.12|^9.0|^10.0|^11.0|^12.0|^13.0",
"illuminate/filesystem": "^8.12|^9.0|^10.0|^11.0|^12.0|^13.0",
"illuminate/support": "^8.12|^9.0|^10.0|^11.0|^12.0|^13.0",
"inertiajs/inertia-laravel": "^1.3|^2.0|^3.0"
},
"autoload": {
"files": [
"src/LangHelpers.php"
],
"psr-4": {
"LaravelLangSyncInertia\\": "src/"
}
},
"prefer-stable": true,
"extra": {
"laravel": {
"providers": [
"LaravelLangSyncInertia\\LangSyncInertiaServiceProvider"
],
"aliases": {
"Lang": "LaravelLangSyncInertia\\Facades\\Lang"
}
}
}
}