Skip to content

Commit

Permalink
Document optional steps for Laravel ≥5.5
Browse files Browse the repository at this point in the history
  • Loading branch information
z38 committed Apr 26, 2018
1 parent fcf05d1 commit 1671c0c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ composer require php-tmdb/laravel

## Configuration

Add to your `app/config/app.php` (Laravel 4) or `config/app.php` (Laravel 5) the service provider:
Add to your `app/config/app.php` (Laravel 4) or `config/app.php` (Laravel <5.5) the service provider:

```php
'providers' => array(
Expand Down Expand Up @@ -79,7 +79,7 @@ The example below shows how you can use the `Tmdb` facade.
If you don't want to keep adding the `use Tmdb\Laravel\Facades\Tmdb;` statement in your files, then you can also add the facade as an alias in `config/app.php` file.

```php
use Tmdb\Laravel\Facades\Tmdb;
use Tmdb\Laravel\Facades\Tmdb; // optional for Laravel ≥5.5

class MoviesController {

Expand Down

0 comments on commit 1671c0c

Please sign in to comment.