Skip to content

Commit

Permalink
laravel 9 support
Browse files Browse the repository at this point in the history
  • Loading branch information
cullymason committed Aug 17, 2022
1 parent 86f8f08 commit 497e593
Showing 1 changed file with 39 additions and 36 deletions.
75 changes: 39 additions & 36 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,40 +1,43 @@
{
"name": "librenms/laravel-vue-i18n-generator",
"license": "MIT",
"description": "Generates a vue-i18n compatible include file from your Laravel translations.",
"keywords": ["laravel","vue-i18n"],
"homepage": "http://github.com/librenms/laravel-vue-i18n-generator",
"authors": [
{
"name": "Martin Lindhe",
"email": "[email protected]"
},
{
"name": "Tony Murray",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.5.0",
"ext-json": "*",
"ext-mbstring": "*",
"illuminate/console": "^5.0|^6.0|^7.0|^8.0",
"illuminate/support": "^5.0|^6.0|^7.0|^8.0"
"name": "librenms/laravel-vue-i18n-generator",
"license": "MIT",
"description": "Generates a vue-i18n compatible include file from your Laravel translations.",
"keywords": [
"laravel",
"vue-i18n"
],
"homepage": "http://github.com/librenms/laravel-vue-i18n-generator",
"authors": [
{
"name": "Martin Lindhe",
"email": "[email protected]"
},
"require-dev": {
"phpunit/phpunit": "~4.7",
"orchestra/testbench": "3.1.*"
},
"autoload": {
"psr-4": {
"MartinLindhe\\VueInternationalizationGenerator\\": "src/"
}
},
"extra": {
"laravel": {
"providers": [
"MartinLindhe\\VueInternationalizationGenerator\\GeneratorProvider"
]
}
{
"name": "Tony Murray",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.5.0",
"ext-json": "*",
"ext-mbstring": "*",
"illuminate/console": "^5.0|^6.0|^7.0|^8.0|^9.0",
"illuminate/support": "^5.0|^6.0|^7.0|^8.0|^9.0"
},
"require-dev": {
"phpunit/phpunit": "~4.7",
"orchestra/testbench": "3.1.*"
},
"autoload": {
"psr-4": {
"MartinLindhe\\VueInternationalizationGenerator\\": "src/"
}
},
"extra": {
"laravel": {
"providers": [
"MartinLindhe\\VueInternationalizationGenerator\\GeneratorProvider"
]
}
}
}

0 comments on commit 497e593

Please sign in to comment.