Skip to content

Commit 6e55962

Browse files
committed
- add laravel 5.8.* support
- remove docs from readme pertaining to manually loading service provider in laravel v5.5 and lower. we've all upgraded by now right? ;)
1 parent 9ffb41f commit 6e55962

File tree

2 files changed

+1
-14
lines changed

2 files changed

+1
-14
lines changed

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
}
1616
},
1717
"require": {
18-
"illuminate/support": "5.3.*||5.4.*||5.5.*||5.6.*||5.7.*"
18+
"illuminate/support": "5.3.*||5.4.*||5.5.*||5.6.*||5.7.*||5.8.*"
1919
},
2020
"extra": {
2121
"laravel": {

readme.md

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -27,19 +27,6 @@ All contents of this readme are present here in more organized format:
2727
composer require zschuessler/laravel-route-to-class
2828
```
2929

30-
> If you do run the package on Laravel 5.5+, you can start using the package at this point. [package auto-discovery](https://medium.com/@taylorotwell/package-auto-discovery-in-laravel-5-5-ea9e3ab20518) takes care of the magic of adding the service provider.
31-
32-
**Add the service provider to your app configuration**
33-
34-
If you do not run Laravel 5.5 (or higher), then add the following line under the `providers` array key in *app/config.php*:
35-
36-
```php
37-
/**
38-
* Custom Service Providers
39-
*/
40-
Zschuessler\RouteToClass\ServiceProvider::class,
41-
```
42-
4330
**Publish the configuration file**
4431

4532
Run the following command in the root directory of your project:

0 commit comments

Comments
 (0)