Skip to content

Commit fe950cb

Browse files
composer normalize
1 parent 24697e0 commit fe950cb

File tree

1 file changed

+19
-11
lines changed

1 file changed

+19
-11
lines changed

composer.json

Lines changed: 19 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
11
{
22
"name": "librenms/laravel-vue-i18n-generator",
3-
"license": "MIT",
43
"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",
4+
"license": "MIT",
5+
"keywords": [
6+
"laravel",
7+
"vue-i18n"
8+
],
79
"authors": [
810
{
911
"name": "Martin Lindhe",
@@ -14,32 +16,38 @@
1416
"email": "[email protected]"
1517
}
1618
],
19+
"homepage": "http://github.com/librenms/laravel-vue-i18n-generator",
1720
"require": {
1821
"php": ">=5.5.0",
1922
"ext-json": "*",
2023
"ext-mbstring": "*",
21-
"illuminate/console": "^5.0|^6.0|^7.0|^8.0|^9.0",
22-
"illuminate/support": "^5.0|^6.0|^7.0|^8.0|^9.0"
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"
2326
},
2427
"require-dev": {
25-
"phpunit/phpunit": "^9",
26-
"orchestra/testbench": "^7"
28+
"orchestra/testbench": "^7",
29+
"phpunit/phpunit": "^9"
2730
},
2831
"autoload": {
2932
"psr-4": {
3033
"MartinLindhe\\VueInternationalizationGenerator\\": "src/"
3134
}
3235
},
36+
"config": {
37+
"allow-plugins": {
38+
"kylekatarnls/update-helper": true
39+
}
40+
},
3341
"extra": {
3442
"laravel": {
3543
"providers": [
3644
"MartinLindhe\\VueInternationalizationGenerator\\GeneratorProvider"
3745
]
3846
}
3947
},
40-
"config": {
41-
"allow-plugins": {
42-
"kylekatarnls/update-helper": true
43-
}
48+
"scripts": {
49+
"post-autoload-dump": [
50+
"@php ./vendor/bin/testbench package:discover --ansi"
51+
]
4452
}
4553
}

0 commit comments

Comments
 (0)