forked from rmariuzzo/Laravel-JS-Localization
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
83 lines (83 loc) · 2.52 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "mariuzzo/laravel-js-localization",
"description": "Laravel Localization in JavaScript",
"type": "library",
"keywords": [
"laravel",
"laravel 5",
"localization",
"i18n",
"javascript",
"js",
"lang"
],
"homepage": "https://github.com/rmariuzzo/laravel-js-localization",
"license": "MIT",
"authors": [
{
"name": "Rubens Mariuzzo",
"email": "[email protected]",
"homepage": "https://github.com/rmariuzzo",
"role": "Developer"
},
{
"name": "German Popoter",
"email": "[email protected]",
"homepage": "https://github.com/gpopoteur",
"role": "Developer"
},
{
"name": "Galievskiy Dmitriy",
"homepage": "https://github.com/xAockd",
"role": "Developer"
},
{
"name": "Ramon Ackermann",
"homepage": "https://github.com/sboo",
"role": "Developer"
},
{
"name": "Anton Komarev",
"homepage": "https://github.com/antonkomarev",
"role": "Developer"
},
{
"name": "Pascal Baljet",
"homepage": "https://github.com/pascalbaljetmedia",
"role": "Developer"
}
],
"support": {
"issues": "https://github.com/rmariuzzo/laravel-js-localization/issues",
"source": "https://github.com/rmariuzzo/laravel-js-localization"
},
"require": {
"php": "^5.4 || ^7.0 || ^8.0",
"illuminate/config": "^4.2 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.0 || ^10.0",
"illuminate/console": "^4.2 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.0 || ^10.0",
"illuminate/filesystem": "^4.2 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.0 || ^10.0",
"tedivm/jshrink": "~1.0"
},
"require-dev": {
"orchestra/testbench": "^2.2 || ^3.0 || ^4.0 || ^5.0 || ^6.0 || ^7.0",
"phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.0 || ^10.0"
},
"autoload": {
"psr-4": {
"Mariuzzo\\LaravelJsLocalization\\": "src/Mariuzzo/LaravelJsLocalization/"
}
},
"autoload-dev": {
"psr-4": {
"Mariuzzo\\LaravelJsLocalization\\": "tests/specs"
}
},
"minimum-stability": "stable",
"extra": {
"laravel": {
"providers": [
"Mariuzzo\\LaravelJsLocalization\\LaravelJsLocalizationServiceProvider"
]
}
}
}