Skip to content

Commit 1671c0c

Browse files
committed
Document optional steps for Laravel ≥5.5
1 parent fcf05d1 commit 1671c0c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ composer require php-tmdb/laravel
4141

4242
## Configuration
4343

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

4646
```php
4747
'providers' => array(
@@ -79,7 +79,7 @@ The example below shows how you can use the `Tmdb` facade.
7979
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.
8080

8181
```php
82-
use Tmdb\Laravel\Facades\Tmdb;
82+
use Tmdb\Laravel\Facades\Tmdb; // optional for Laravel ≥5.5
8383

8484
class MoviesController {
8585

0 commit comments

Comments
 (0)