Home Database Mysql Tutorial Laravel 4.2 升级 Laravel 5.0 攻略

Laravel 4.2 升级 Laravel 5.0 攻略

Jun 07, 2016 pm 03:39 PM
laravel upgrade Strategy

Laravel 4.2 升级 Laravel 5.0 攻略 https://phphub.org/topics/474 以下所指L4为laravel 4.2,L5为laravel 5.0 建议如下情况进行升级 对L4比较了解,同时对L5有基本的认识 想对比L4和L5的差异,快速学习L5 程序的代码写的不乱,按照Laravel的基本的默认规则

Laravel 4.2 升级 Laravel 5.0 攻略

https://phphub.org/topics/474


以下所指L4为laravel 4.2,L5为laravel 5.0

建议如下情况进行升级

  1. 对L4比较了解,同时对L5有基本的认识
  2. 想对比L4和L5的差异,快速学习L5
  3. 程序的代码写的不乱,按照Laravel的基本的默认规则来写
  4. 有足够的耐心和精力
  5. 熟练使用phpstorm,因为这是个规模较大的工程,有个具有代码逻辑分析功能的编辑器,会让你减少不必要的错误,特别是命名空间和引用。如果你还不怎么会用phpstorm,那么先看Be Awesome in PHPStorm
  6. 使用larvel-ide-helper这个插件,不然phpstorm就没有那么智能。(注意生成的_ide_helper.php的版本为L5的)

以下内容部分来自官方文档。由于我建议全部添加命名空间,内容和文档有出入,并有些内容文档未提及

新建L5项目,然后再迁移

新建一个L5项目,新建方法参考这里,然后拷贝L4的文件到新建的项目下面。

拷贝的文件包括:controller, routes, models, Artisan commands, assets, 还有一些你自己添加的类或者资源。

Composer 你的依赖和包

拷贝你添加的所有的composer依赖和包到L5的 composer.json 中,也包括你引用的其他的代码和SDK。 不过需要注意一点就是,你依次去那些针对Laravel开发的包需要到项目主页看看作者是否支持L5或者说准备支持L5,据我所知,目前主流的包基本已支持,因为改动不是特别大。选好支持L5的版本之后, composer update 就好了。

命名空间 Namespace

L4的命名空间是全局的。虽然官方说能不加命名空间就能迁移,但是还是手动给加上吧!不然以后更麻烦了。提醒一下,有这个方法可以修改命名空间的前缀: php artisan app:name Yourproj

如果你的程序中使用了变量作为动态类名,一定要注意在变量中添加完整的命名空间:

# <span>L4</span>中可能存在的写法
<span>$myClassName</span> <span>=</span> <span>'Dog'</span><span>;</span>
<span>$obj</span> <span>=</span> <span>new</span> <span>$myClassName</span><span>(</span><span>)</span><span>;</span><span> // 在L5中将要报错
</span>
# <span>L5</span>中要修改为
<span>$myClassName</span> <span>=</span> <span>'app\\Models\\Dog'</span><span>;</span>
<span>$obj</span> <span>=</span> <span>new</span> <span>$myClassName</span><span>(</span><span>)</span><span>;</span>
Copy after login

配置文件 Configuration

项目根目录命令行 cp .env.example .env ,拷贝你自定义的配置到这里,配置文件不再像之前那样有很多文件夹供你根据环境选择了,L5下只有这一个,意思就是每个不同的环境都需要自己来稍微定制一些。不过每个项目下面可能都是不同的。写好配置文件后记得保存个模板到 .env.example 供其他队友使用。

在 config/ 下面开始使用 env('DB_HOST', 'localhost') 的方式来调用你的配置到对应的数组键下面。

路由 routes

拷贝原来的 routes.php 到 app/Http/routes.php

控制器 controllers

拷贝你的 contollers 到 app/Http/Controllers 下。添加正确的命名空间到每个类上App\Http\Controllers 。记得让你的 BaseController 继承那个抽象类 Controller 。然后挨个查看文件,根据PHPstorm提示进行纠错,主要包括引用类和命名空间的错误。

模型 models

新建文件夹到 app/Models,把原来的 models 全部拷贝过来。首先,添加命名空间 App\Models 。接着是关联到其他model的一些方法,比如 belongTo, hasMany等,第一个参数需要填写完整的命名空间,例如

<code><span>class</span> <span>User</span> <span>extends</span> <span>Eloquent</span> <span>{</span>

    <span>public</span> <span>function</span> <span>phone<span>(</span></span><span>)</span>
    <span>{</span>
       <span> // return $this->hasOne('Phone'); 原来这样写的
</span>        <span>return</span> <span>$this</span><span>-</span><span>></span><span>hasOne<span>(</span></span><span>'App\Models\Phone'</span><span>)</span><span>;</span> <span> // L5需要添加完整命名空间
</span>    <span>}</span>

<span>}</span></code>
Copy after login

过滤器 Filters

L5中的中间件 Middleware 是个重头戏,路由 routes.php 中的 ['before' => 'auth']需要替换为['middleware' => 'auth'] 。

同时还要改一下过滤器Filters:

<code><span>// app/filters.php
</span><span>Router<span>::</span></span><span>filter<span>(</span></span><span>'shall-not-pass'</span><span>,</span> <span>function</span><span>(</span><span>)</span> <span>{</span>
    <span>return</span> <span>Redirect<span>::</span></span><span>to<span>(</span></span><span>'shadow'</span><span>)</span><span>;</span>
<span>}</span><span>)</span><span>;</span></code>
Copy after login

改成这样子

<code><span>// app/Providers/RouteServiceProvider@boot()
</span><span>$router</span><span>-</span><span>></span><span>filter<span>(</span></span><span>'shall-not-pass'</span><span>,</span> <span>function</span><span>(</span><span>)</span> <span>{</span>
    <span>return</span> \<span>Redirect<span>::</span></span><span>to<span>(</span></span><span>'shadow'</span><span>)</span><span>;</span>
<span>}</span><span>)</span><span>;</span></code>
Copy after login

缓存 Cache

Builder 不再支持 remember 这个方法了,请使用 Cache::remember 对程序改造 。如果使用了 redis,还需要 composer require 'predis/predis' 。

用户认证 Authentication

按照下面的操作对 User model 进行升级。

删除下面的内容

<code><span>use</span> <span>Illuminate<span>\</span>Auth<span>\</span>UserInterface</span><span>;</span>
<span>use</span> <span>Illuminate<span>\</span>Auth<span>\</span>Reminders<span>\</span>RemindableInterface</span><span>;</span></code>
Copy after login

然后添加以下代码:

<code><span>use</span> <span>Illuminate<span>\</span>Auth<span>\</span>Authenticatable</span><span>;</span>
<span>use</span> <span>Illuminate<span>\</span>Auth<span>\</span>Passwords<span>\</span>CanResetPassword</span><span>;</span>
<span>use</span> <span>Illuminate<span>\</span>Contracts<span>\</span>Auth<span>\</span>Authenticatable</span> <span>as</span> AuthenticatableContract<span>;</span>
<span>use</span> <span>Illuminate<span>\</span>Contracts<span>\</span>Auth<span>\</span>CanResetPassword</span> <span>as</span> CanResetPasswordContract<span>;</span></code>
Copy after login

删除 UserInterface 和 RemindableInterface 这两个接口,然后添加 AuthenticatableContract 和CanResetPasswordContract 这两个接口。

添加以下两个 traits 到类里面

<code><span>use</span> <span>Authenticatable</span><span>,</span> CanResetPassword<span>;</span></code>
Copy after login

如果你用到Illuminate\Auth\Reminders\RemindableTraitIlluminate\Auth\UserTrait,那么就把他们删掉。

Artisan Commands

直接拷贝你的命令行程序的文件到 app/Console/Cammands 目录,并添加对应命名空间。

接着拷贝 start/artisan.php 内容到 app/Console/Kernel.php 文件的 command 数组中。例如

<code><span>protected</span> <span>$commands</span> <span>=</span> <span>[</span>
    <span>'Laracasts\Console\Commands\ClearHistoryCommand'</span><span>,</span>
    <span>'Laracasts\Console\Commands\SignupsReportCommand'</span><span>,</span>
    <span>'Laracasts\Console\Commands\WelcomeUserCommand'</span><span>,</span>
<span>]</span><span>;</span></code>
Copy after login

数据迁移 Database Migrations & Seeds

删除L5 database/migrations 中自带的两个数据迁移文件,然后把你自己原来的数据库迁移文件从app/database/migrations 拷贝到 database/migrations 中来。 app/database/seeds 的文件拷贝到database/seeds 中。

这个操作不需要添加命名空间,因为在 composer.json 中已经引入了该目录。

全局的依赖注入绑定 Global IoC Bindings

如果在 start/global.php 中有ioc绑定的话,那就吧他们移动到 app/Providers/AppServiceProvider.php的 register 方法中。同时还需要引入 App facade

视图模板 Views

直接从 app/views 复制到 resources/views 中。

L4中的 {{ }} 对应为L5的 {!! !!} ,而L4中的 {{{ }}} 对应L5的 {{ }} 。需要对应修改一下。

多语言文件 Translation Files

复制 app/lang 到 resources/lang

Public目录

把你的公共资源都直接拷贝过去吧!

测试文件

复制 app/tests 到 tests 目录。

Form 和 HTML 帮助函数

如果你用了 Form 或者 HTML 帮助函数,那么就在 composer.json 中添加 "illuminate/html": "~5.0"

然后在 config/app.php 中添加 'providers' :

<code><span>'Illuminate\Html\HtmlServiceProvider'</span><span>,</span></code>
Copy after login

接着在 'aliases' 中添加:

<code><span>'Form'</span>      <span>=</span><span>></span> <span>'Illuminate\Html\FormFacade'</span><span>,</span>
<span>'Html'</span>      <span>=</span><span>></span> <span>'Illuminate\Html\HtmlFacade'</span><span>,</span></code>
Copy after login

分页

替换 $paginator->links() 为 $paginator->render()。如果你这里使用了分页模板的话,L4是在links中传入分页模板的路径字符串,而L5中render的参数为Illuminate\Contracts\Pagination\Presenter对象,需要根据需要建立一个继承该接口的类。

消息队列

L5对应的 Beanstalk 包为: "pda/pheanstalk": "~3.0",不再是 "pda/pheanstalk": "~2.1"

总结

相信你按照上面的步骤执行后,你的程序依然报错。因为自己的项目都可能有一些比较 个性 的地方,所以需要多加细心和耐心来完成纠错。

如果你使用了xdebug的断点调试,可能会让你事半功倍。

遇到问题了欢迎来探讨!

最后祝你 level up !^^


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

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Two Point Museum: All Exhibits And Where To Find Them
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

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)

Xiaoyi upgraded to an intelligent agent! HarmonyOS NEXT Hongmeng native intelligence opens a new AI era Xiaoyi upgraded to an intelligent agent! HarmonyOS NEXT Hongmeng native intelligence opens a new AI era Jun 22, 2024 am 01:56 AM

On June 21, Huawei Developer Conference 2024 (HDC2024) gathered again in Songshan Lake, Dongguan. At this conference, the most eye-catching thing is that HarmonyOSNEXT officially launched Beta for developers and pioneer users, and comprehensively demonstrated the three "king-breaking" innovative features of HarmonyOSNEXT in all scenarios, native intelligence and native security. HarmonyOSNEXT native intelligence: Opening a new AI era After abandoning the Android framework, HarmonyOSNEXT has become a truly independent operating system independent of Android and iOS, which can be called an unprecedented rebirth. Among its many new features, native intelligence is undoubtedly the new feature that can best bring users intuitive feelings and experience upgrades.

How to use object-relational mapping (ORM) in PHP to simplify database operations? How to use object-relational mapping (ORM) in PHP to simplify database operations? May 07, 2024 am 08:39 AM

Database operations in PHP are simplified using ORM, which maps objects into relational databases. EloquentORM in Laravel allows you to interact with the database using object-oriented syntax. You can use ORM by defining model classes, using Eloquent methods, or building a blog system in practice.

Laravel - Artisan Commands Laravel - Artisan Commands Aug 27, 2024 am 10:51 AM

Laravel - Artisan Commands - Laravel 5.7 comes with new way of treating and testing new commands. It includes a new feature of testing artisan commands and the demonstration is mentioned below ?

The best time to buy Huawei Mate 60 series, new AI elimination + image upgrade, and enjoy autumn promotions The best time to buy Huawei Mate 60 series, new AI elimination + image upgrade, and enjoy autumn promotions Aug 29, 2024 pm 03:33 PM

Since the Huawei Mate60 series went on sale last year, I personally have been using the Mate60Pro as my main phone. In nearly a year, Huawei Mate60Pro has undergone multiple OTA upgrades, and the overall experience has been significantly improved, giving people a feeling of being constantly new. For example, recently, the Huawei Mate60 series has once again received a major upgrade in imaging capabilities. The first is the new AI elimination function, which can intelligently eliminate passers-by and debris and automatically fill in the blank areas; secondly, the color accuracy and telephoto clarity of the main camera have been significantly upgraded. Considering that it is the back-to-school season, Huawei Mate60 series has also launched an autumn promotion: you can enjoy a discount of up to 800 yuan when purchasing the phone, and the starting price is as low as 4,999 yuan. Commonly used and often new products with great value

Comparison of the latest versions of Laravel and CodeIgniter Comparison of the latest versions of Laravel and CodeIgniter Jun 05, 2024 pm 05:29 PM

The latest versions of Laravel 9 and CodeIgniter 4 provide updated features and improvements. Laravel9 adopts MVC architecture and provides functions such as database migration, authentication and template engine. CodeIgniter4 uses HMVC architecture to provide routing, ORM and caching. In terms of performance, Laravel9's service provider-based design pattern and CodeIgniter4's lightweight framework give it excellent performance. In practical applications, Laravel9 is suitable for complex projects that require flexibility and powerful functions, while CodeIgniter4 is suitable for rapid development and small applications.

How do the data processing capabilities in Laravel and CodeIgniter compare? How do the data processing capabilities in Laravel and CodeIgniter compare? Jun 01, 2024 pm 01:34 PM

Compare the data processing capabilities of Laravel and CodeIgniter: ORM: Laravel uses EloquentORM, which provides class-object relational mapping, while CodeIgniter uses ActiveRecord to represent the database model as a subclass of PHP classes. Query builder: Laravel has a flexible chained query API, while CodeIgniter’s query builder is simpler and array-based. Data validation: Laravel provides a Validator class that supports custom validation rules, while CodeIgniter has less built-in validation functions and requires manual coding of custom rules. Practical case: User registration example shows Lar

PHP code unit testing and integration testing PHP code unit testing and integration testing May 07, 2024 am 08:00 AM

PHP Unit and Integration Testing Guide Unit Testing: Focus on a single unit of code or function and use PHPUnit to create test case classes for verification. Integration testing: Pay attention to how multiple code units work together, and use PHPUnit's setUp() and tearDown() methods to set up and clean up the test environment. Practical case: Use PHPUnit to perform unit and integration testing in Laravel applications, including creating databases, starting servers, and writing test code.

Which one is more beginner-friendly, Laravel or CodeIgniter? Which one is more beginner-friendly, Laravel or CodeIgniter? Jun 05, 2024 pm 07:50 PM

For beginners, CodeIgniter has a gentler learning curve and fewer features, but covers basic needs. Laravel offers a wider feature set but has a slightly steeper learning curve. In terms of performance, both Laravel and CodeIgniter perform well. Laravel has more extensive documentation and active community support, while CodeIgniter is simpler, lightweight, and has strong security features. In the practical case of building a blogging application, Laravel's EloquentORM simplifies data manipulation, while CodeIgniter requires more manual configuration.

See all articles