Skip to content

Commit 497e593

Browse files
committed
laravel 9 support
1 parent 86f8f08 commit 497e593

File tree

1 file changed

+39
-36
lines changed

1 file changed

+39
-36
lines changed

composer.json

+39-36
Original file line numberDiff line numberDiff line change
@@ -1,40 +1,43 @@
11
{
2-
"name": "librenms/laravel-vue-i18n-generator",
3-
"license": "MIT",
4-
"description": "Generates a vue-i18n compatible include file from your Laravel translations.",
5-
"keywords": ["laravel","vue-i18n"],
6-
"homepage": "http://github.com/librenms/laravel-vue-i18n-generator",
7-
"authors": [
8-
{
9-
"name": "Martin Lindhe",
10-
"email": "[email protected]"
11-
},
12-
{
13-
"name": "Tony Murray",
14-
"email": "[email protected]"
15-
}
16-
],
17-
"require": {
18-
"php": ">=5.5.0",
19-
"ext-json": "*",
20-
"ext-mbstring": "*",
21-
"illuminate/console": "^5.0|^6.0|^7.0|^8.0",
22-
"illuminate/support": "^5.0|^6.0|^7.0|^8.0"
2+
"name": "librenms/laravel-vue-i18n-generator",
3+
"license": "MIT",
4+
"description": "Generates a vue-i18n compatible include file from your Laravel translations.",
5+
"keywords": [
6+
"laravel",
7+
"vue-i18n"
8+
],
9+
"homepage": "http://github.com/librenms/laravel-vue-i18n-generator",
10+
"authors": [
11+
{
12+
"name": "Martin Lindhe",
13+
"email": "[email protected]"
2314
},
24-
"require-dev": {
25-
"phpunit/phpunit": "~4.7",
26-
"orchestra/testbench": "3.1.*"
27-
},
28-
"autoload": {
29-
"psr-4": {
30-
"MartinLindhe\\VueInternationalizationGenerator\\": "src/"
31-
}
32-
},
33-
"extra": {
34-
"laravel": {
35-
"providers": [
36-
"MartinLindhe\\VueInternationalizationGenerator\\GeneratorProvider"
37-
]
38-
}
15+
{
16+
"name": "Tony Murray",
17+
"email": "[email protected]"
18+
}
19+
],
20+
"require": {
21+
"php": ">=5.5.0",
22+
"ext-json": "*",
23+
"ext-mbstring": "*",
24+
"illuminate/console": "^5.0|^6.0|^7.0|^8.0|^9.0",
25+
"illuminate/support": "^5.0|^6.0|^7.0|^8.0|^9.0"
26+
},
27+
"require-dev": {
28+
"phpunit/phpunit": "~4.7",
29+
"orchestra/testbench": "3.1.*"
30+
},
31+
"autoload": {
32+
"psr-4": {
33+
"MartinLindhe\\VueInternationalizationGenerator\\": "src/"
34+
}
35+
},
36+
"extra": {
37+
"laravel": {
38+
"providers": [
39+
"MartinLindhe\\VueInternationalizationGenerator\\GeneratorProvider"
40+
]
3941
}
42+
}
4043
}

0 commit comments

Comments
 (0)