diff --git a/README.md b/README.md index b70a96f..496c27e 100644 --- a/README.md +++ b/README.md @@ -17,14 +17,7 @@ Therefor **PackageChangeLog** was made, to help developers keep their packages a ## Installation - `composer require ctf0/package-changelog` -- (Laravel < 5.5) add the service provider to `config/app.php` - - ```php - 'providers' => [ - ctf0\PackageChangeLog\PackageChangeLogServiceProvider::class, - ] - ``` -- under `composer.json` we will auto add +- after installation, package will auto-register the below to `composer.json` + check [composer docs](https://getcomposer.org/doc/articles/scripts.md#what-is-a-script-) for more info ```json diff --git a/composer.json b/composer.json index 9b374da..8b44141 100644 --- a/composer.json +++ b/composer.json @@ -14,8 +14,7 @@ } ], "require": { - "php": "~7.0", - "illuminate/support": ">=7.0" + "illuminate/support": ">=7.0 <9.0" }, "autoload": { "psr-4": { diff --git a/logs/v2.0.0.txt b/logs/v2.0.0.txt index d52864a..4019cfe 100644 --- a/logs/v2.0.0.txt +++ b/logs/v2.0.0.txt @@ -1,4 +1,5 @@ -- we now use commands instead of events `composer.json` file, so plz remove the old setup from v1 +- we now use commands instead of events, so plz remove the v1 setup if you still have + + composer.json --> 'App\\Providers\\EventServiceProvider::postAutoloadDump' + app\Providers\EventServiceProvider --> ```