LoginSignup
6
6

More than 5 years have passed since last update.

Laravel 5.0をLaravel 5.1にアップグレド

Last updated at Posted at 2015-06-17

Laravelのdocsを参照しながら行いましたが、5分もかからなかったことにびっくりしました。
http://laravel.com/docs/5.1/upgrade#upgrade-5.1.0

1. bootstrapフォルダにcacheフォルダを追加して、書き込み権限を与えました。
2. bootstrap/autoload.phpを開いて、$compiledPathを次のように書き換えます。

$compiledPath = __DIR__.'/cache/compiled.php';

3. composer.jsonでのLaravelのバージョンを5.0.*から5.1.*にアップします

"laravel/framework": "5.1.*",

4. 最後に、composer updateしてエラーなく完了しました。

6
6
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
6
6