Starter Kits
Installation
To install, run the console command:
composer require --dev laravel-lang/starter-kits
Usage
Now you can update existing localizations using the lang:update
console command:
php artisan lang:update
We also recommend adding the call code to the post-update-cmd
section of the scripts
block in the composer.json
file:
{
"scripts": {
"post-update-cmd": [
"@php artisan vendor:publish --tag=laravel-assets --ansi --force",
"@php artisan lang:update"
]
}
}
This allows localization files to be automatically updated after dependency updates, rather than manually running the php artisan lang:update
console command.
Compatibility
Laravel | PHP | Publisher | Package | Status |
---|---|---|---|---|
12 | 8.2, 8.3, 8.4 | 16 |
|
Last modified: 04 March 2025