Table of Contents
globally in your local machine, you can use the following method to
The easiest way to globally update to the next major version is:
If you encounter problems updating, you can always uninstall and reinstall via the command line. We have already mentioned this method, which uses
file. For me, the path to this file is
Bonus Points
and
Home PHP Framework Laravel Teach you to install and update the Laravel installer

Teach you to install and update the Laravel installer

Sep 15, 2020 am 09:28 AM
laravel

The following tutorial column will introduce to you how to install and update the Teach you to install and update the Laravel installer installer. I hope it will be helpful to friends in need!

Installing a new Teach you to install and update the Laravel installer installer using Composer is easy, but what if you already have one installed? The latest Teach you to install and update the Laravel installer installer is critical to your workflow, so you want to make sure you get the latest version. If you have any questions, we are here for you!

Teach you to install and update the Laravel installerIf you haven't heard yet, the Teach you to install and update the Laravel installer team has released the next major version of the

Teach you to install and update the Laravel installer Installer

package, which includes support for Jetstream. The new version also uses the

composer create-project

command behind the scenes instead of downloading an archive from Teach you to install and update the Laravel installer's build server. With this change, Taylor Otwell plans to shut down the build server within a month or two, so you must upgrade your installer as soon as possible.

Update the installerIf you have introduced

laravel/installer

globally in your local machine, you can use the following method to

laravel/installer

Update to the latest version: Use composer require

Update to
    ^4.0
  1. Uninstall and reinstall this package through Composer Update the global
  2. composer.json
  3. file and run
  4. composer update
  5. Composer Require
  6. Pass
composer require

The easiest way to globally update to the next major version is:

composer global require "laravel/installer:^4.0"
Copy after login

As long as there are no dependency conflicts, you should now have the latest 4.x installer. I recommend updating weekly (at least initially) to get merged updates/bug fixes for Teach you to install and update the Laravel installer 8.

If you are requesting version 4.x, you can verify the installation information in the Teach you to install and update the Laravel installer CLI: <div class="code" style="position:relative; padding:0px; margin:0px;"><div class="code" style="position:relative; padding:0px; margin:0px;"><pre class="brush:php;toolbar:false">laravel --version Teach you to install and update the Laravel installer Installer 4.0.3</pre><div class="contentsignin">Copy after login</div></div><div class="contentsignin">Copy after login</div></div>Uninstall and reinstall

If required via

composer require

If you encounter problems updating, you can always uninstall and reinstall via the command line. We have already mentioned this method, which uses

composer

Globally remove the old version and reinstall laravel/installer: <div class="code" style="position:relative; padding:0px; margin:0px;"><pre class="brush:php;toolbar:false">composer global remove laravel/installer  composer global require laravel/installer</pre><div class="contentsignin">Copy after login</div></div>Update the global composer.json fileAnother method is to update the global

composer.json

file. For me, the path to this file is

~/.composer/composer.json

. At the time of writing, the latest release is 3.2.0; however, 4.x tags already exist. You need version 4.x of the installer. Adjust your composer.json file to use

^ 4.0

Version: <div class="code" style="position:relative; padding:0px; margin:0px;"><pre class="brush:php;toolbar:false">{     &quot;require&quot;: {         &quot;laravel/installer&quot;: &quot;^4.0&quot;,     } }</pre><div class="contentsignin">Copy after login</div></div> Return to the command line and run global update: <div class="code" style="position:relative; padding:0px; margin:0px;"><pre class="brush:php;toolbar:false">composer global update</pre><div class="contentsignin">Copy after login</div></div> Verify Updates

As mentioned above, no matter which method you use to update the installer, make sure you have the correct version:

<div class="code" style="position:relative; padding:0px; margin:0px;"><div class="code" style="position:relative; padding:0px; margin:0px;"><pre class="brush:php;toolbar:false">laravel --version Teach you to install and update the Laravel installer Installer 4.0.3</pre><div class="contentsignin">Copy after login</div></div><div class="contentsignin">Copy after login</div></div>

Bonus Points

i Notice that the Teach you to install and update the Laravel installer installer received some updates on the day Teach you to install and update the Laravel installer 8 was released, which included options like

--stack

and

--teams

. The --stack option allows you to configure the stack type as livewire or inertia: <div class="code" style="position:relative; padding:0px; margin:0px;"><pre class="brush:php;toolbar:false">laravel new myapp --jet --stack=inertia --team</pre><div class="contentsignin">Copy after login</div></div>Original address: https:// laravel-news.com/updating-the-laravel-installer

Translation address: https://learnku.com/laravel/t/49603

The above is the detailed content of Teach you to install and update the Laravel installer. For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

How to implement the custom table function of clicking to add data in dcat admin? How to implement the custom table function of clicking to add data in dcat admin? Apr 01, 2025 am 07:09 AM

How to implement the table function of custom click to add data in dcatadmin (laravel-admin) When using dcat...

How to get the return code when email sending fails in Laravel? How to get the return code when email sending fails in Laravel? Apr 01, 2025 pm 02:45 PM

Method for obtaining the return code when Laravel email sending fails. When using Laravel to develop applications, you often encounter situations where you need to send verification codes. And in reality...

Laravel Redis connection sharing: Why does the select method affect other connections? Laravel Redis connection sharing: Why does the select method affect other connections? Apr 01, 2025 am 07:45 AM

The impact of sharing of Redis connections in Laravel framework and select methods When using Laravel framework and Redis, developers may encounter a problem: through configuration...

Laravel multi-tenant extension stancl/tenancy: How to customize the host address of a tenant database connection? Laravel multi-tenant extension stancl/tenancy: How to customize the host address of a tenant database connection? Apr 01, 2025 am 09:09 AM

Custom tenant database connection in Laravel multi-tenant extension package stancl/tenancy When building multi-tenant applications using Laravel multi-tenant extension package stancl/tenancy,...

Laravel Eloquent ORM in Bangla partial model search) Laravel Eloquent ORM in Bangla partial model search) Apr 08, 2025 pm 02:06 PM

LaravelEloquent Model Retrieval: Easily obtaining database data EloquentORM provides a concise and easy-to-understand way to operate the database. This article will introduce various Eloquent model search techniques in detail to help you obtain data from the database efficiently. 1. Get all records. Use the all() method to get all records in the database table: useApp\Models\Post;$posts=Post::all(); This will return a collection. You can access data using foreach loop or other collection methods: foreach($postsas$post){echo$post->

How to effectively check the validity of Redis connections in Laravel6 project? How to effectively check the validity of Redis connections in Laravel6 project? Apr 01, 2025 pm 02:00 PM

How to check the validity of Redis connections in Laravel6 projects is a common problem, especially when projects rely on Redis for business processing. The following is...

Laravel Introduction Example Laravel Introduction Example Apr 18, 2025 pm 12:45 PM

Laravel is a PHP framework for easy building of web applications. It provides a range of powerful features including: Installation: Install the Laravel CLI globally with Composer and create applications in the project directory. Routing: Define the relationship between the URL and the handler in routes/web.php. View: Create a view in resources/views to render the application's interface. Database Integration: Provides out-of-the-box integration with databases such as MySQL and uses migration to create and modify tables. Model and Controller: The model represents the database entity and the controller processes HTTP requests.

Laravel database migration encounters duplicate class definition: How to resolve duplicate generation of migration files and class name conflicts? Laravel database migration encounters duplicate class definition: How to resolve duplicate generation of migration files and class name conflicts? Apr 01, 2025 pm 12:21 PM

A problem of duplicate class definition during Laravel database migration occurs. When using the Laravel framework for database migration, developers may encounter "classes have been used...

See all articles