Cannot install martinlindhe/laravel-vue-i18n-generator with Laravel 8 - laravel

I try to install martinlindhe/laravel-vue-i18n-generator with Laravel 8 and it show the error:

It says 'This repository has been archived by the owner. It is now read-only.' So it is archived and that means it won't be developed. Since Laravel 8 is never than this package (last commit was like 2 years ago for this package).
Try to look Laravel's default language solution or found this package

Try to look at vue-i18n-extract

Related

Upgrading a laravel 5.4 project to laravel 7

Is it even worth it upgrading a laravel 5.4 project to laravel 7 which includes many packages ?
Do I have to upgrade it manually version after version or is there any tool that might help with the migration ?
Thank you for all the answers.
By upgrading one version at time, it will be easier to fix and change whats needs to be changed.
Here is how I did:
https://laravel.com/docs/5.5/upgrade
Follow the guide
Change the code
Test your code
https://laravel.com/docs/5.6/upgrade
Follow the guide
Change the code
Test your code
And so on.
Depends on the size of your project. Go to the github pages of your third party packages to check if they have updated as well. You can always change the package.
It will be a pain in the ass, but it's possible.
(Don't forget the php version.)
Good luck!

How can I download and install Laravel Framework 5

I am new in php programming and I like to install the latest version of Laravel framework on my windows os. When I trying to download Laravel through composer, I receive error like this:
Picture of error in downloading and installing Laravel 5
Where is problem? Why I can't download Laravel?
I'm so appreciate if anyone help me
And sorry for my English
Thanks guys
The error states that it can't find git. Simply installing it isn't enough. Make sure it's in your PATH variable.
Here is an answered question on how to add directories to your windows PATH:
OK guys, I downloaded git-hub and install it. I set PATH variable successfully. Now I recieved new error from composer installer:
New screenshot from new error!
What is this? :-(
It solved. My problem was network connection
Thanks to all.
Your screenshot already has the answer for you.
It says git is missing or not installed.
Make sure that git is installed properly, and try it again.
Try checking out the date and time of your computer,
make sure it is updated to your current local time and date.

How can I integrate between Laravel and PhpStorm? [duplicate]

This question already has answers here:
Eloquent ORM Code Hinting in PhpStorm
(8 answers)
Closed 2 years ago.
Every time when I code on Laravel framework I get those IDE warnings.. like it didn't find some method or class like Eloquent Class.
I searched on google and I found this plugin but it didn't help, actually I didn't see any difference.
Is it even possible to integrate between Laravel and PhpStorm?
The video in the accepted answer explains it just fine, here is my text version:
on the command line type and execute:
composer require barryvdh/laravel-ide-helper
next type and execute:
php artisan ide-helper:generate
This will generate a file called _ide_helper.php that will help PHPStorm/IntelliJ recognize the facades (add this file to your .gitignore as it is not part of your code).
Go back to your PHPStorm or IntelliJ and you will see that the facades are recognized and autocomplete is working!
Source code: https://github.com/barryvdh/laravel-ide-helper

Laravel 5 AWS SDK

I am upgrading to L5 this weekend and already have a stopper. I tried both of these in my composer.json file, neither are working upon a composer update.
"aws/aws-sdk-php-laravel": "1.*"
"aws/aws-sdk-php-laravel5": "1.*"
Error message: "Your requirements could not be resolved to an installable set of packages."
Most third-party packages won't be updated for Laravel 5 yet, and this is the case for the AWS SDK. There is a Github issue for Laravel 5 support you can follow for updates.
If you use a lot of packages, it may be a few months before everything is ported over.

How to upgrade from Laravel 4.2 to 5?

How do I upgrade from Laravel 4.2 to 5 dev?
Yes, I have read the documentation but it doesn't help. What I've done so far is updated the composer.json and then I ran composer update --no-scripts.
But the file structure seems to be the same...
Would it be easier to just do a fresh install and move files and code over manually?
Laravel 5 is not even in Beta yet.
Once it is available for use - Taylor will provide a structured upgrade process to move from 4.2 to 5.
In the meantime, you should be careful about using Laravel 5 - as the structure is changing almost daily, so Taylor does not recommend using it in projects yet.
Edit: Laravel 5 has now officially been released. Here is the official upgrade guide.

Resources