From 290a1ebd95233c6719de9a8004b6bd63af46e9ae Mon Sep 17 00:00:00 2001 From: Martin Zurowietz Date: Fri, 20 Apr 2018 10:45:33 +0200 Subject: [PATCH] Revert "Implement package auto discoverability by Laravel 5.5" This reverts commit 64f61d40ff6af46c7004f15fe36c61df207b22e3. --- README.md | 3 ++- composer.json | 9 ++------- 2 files changed, 4 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index 053daee..0e2d554 100644 --- a/README.md +++ b/README.md @@ -11,4 +11,5 @@ Add the following to the repositories array of your `composer.json`: ``` 1. Run `php composer.phar require biigle/volumes`. -2. Run `php artisan vendor:publish --tag=public` to refresh the public assets of this package. Do this for every update of the package. +2. Add `'Biigle\Modules\Volumes\VolumesServiceProvider'` to the `providers` array in `config/app.php`. +3. Run `php artisan volumes:publish` to refresh the public assets of this package. Do this for every update of the package. diff --git a/composer.json b/composer.json index e8bd530..4baeaa2 100644 --- a/composer.json +++ b/composer.json @@ -4,6 +4,8 @@ "biigle/projects": "~1.4", "biigle/label-trees": "~1.3" }, + "require-dev": { + }, "autoload": { "psr-4": { "Biigle\\Modules\\Volumes\\": "src" @@ -13,12 +15,5 @@ "fix": [ "php-cs-fixer --config-file='.php_cs' fix" ] - }, - "extra": { - "laravel": { - "providers": [ - "Biigle\\Modules\\Volumes\\VolumesServiceProvider" - ], - } } }