「Php/laravel/laravel5/htmlcache Flatten編」の版間の差分
提供: 初心者エンジニアの簡易メモ
(→インストール) |
|||
行7: | 行7: | ||
$ composer update anahkiasen/flatten | $ composer update anahkiasen/flatten | ||
+ | |||
+ | ==導入== | ||
+ | vi config/app.php | ||
+ | 'providers' => [ | ||
+ | // 略 | ||
+ | Flatten\FlattenServiceProvider::class, | ||
+ | ], | ||
+ | 'aliases' => [ | ||
+ | // 略 | ||
+ | 'Flatten' => Flatten\Facades\Flatten::class, | ||
+ | ], |
2016年8月7日 (日) 23:03時点における版
インストール
vi composer.json
"require": { // 略 "anahkiasen/flatten": "^1.1" }
$ composer update anahkiasen/flatten
導入
vi config/app.php
'providers' => [ // 略 Flatten\FlattenServiceProvider::class, ], 'aliases' => [ // 略 'Flatten' => Flatten\Facades\Flatten::class, ],