diff --git a/README.md b/README.md index 969e897..f38294c 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# Auto Route Names for Laravel +# Automatic Route Names for Laravel ![the dragon code route names](https://preview.dragon-code.pro/the-dragon-code/auto-route-names.svg?brand=laravel) @@ -16,8 +16,6 @@ To get the latest version of `Laravel Route Names`, simply require the project u composer require dragon-code/laravel-route-names ``` -Next, replace `Illuminate\Foundation\Application` with `DragonCode\LaravelRouteNames\Application` in the `bootstrap/app.php` file. - You can now list the routes, for example by calling the `php artisan route:list` command or by using the [`dragon-code/pretty-routes`](https://github.com/TheDragonCode/pretty-routes) package. diff --git a/src/Application.php b/src/Application.php deleted file mode 100644 index b666a3a..0000000 --- a/src/Application.php +++ /dev/null @@ -1,18 +0,0 @@ -register(new EventServiceProvider($this)); - $this->register(new LogServiceProvider($this)); - $this->register(new RoutingServiceProvider($this)); - } -}