From ad6bcd1ca14443524963b8b920a2bd97bf4b95d6 Mon Sep 17 00:00:00 2001 From: atehnix Date: Mon, 5 Feb 2018 00:28:25 +0300 Subject: [PATCH] Update readme and license --- LICENSE | 2 +- README.md | 21 +++------------------ 2 files changed, 4 insertions(+), 19 deletions(-) diff --git a/LICENSE b/LICENSE index 8e5439a..c9d7677 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ The MIT License (MIT) -Copyright (c) 2016 Andrey Sosnov aka ATehnix +Copyright (c) 2016-2018 Andrey Sosnov aka ATehnix Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/README.md b/README.md index 6de0777..a6eb53e 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,9 @@ The package gives you the opportunity to customize Artisan commands like `artisa Any location of the generated classes and with any content. -## Installation + +## Installation for Laravel 5.5 +> *For older laravel versions see: [older instllation](https://github.com/atehnix/laravel-stubs/tree/v2.0.0#installation)* You can get library through [composer](https://getcomposer.org/) @@ -14,23 +16,6 @@ You can get library through [composer](https://getcomposer.org/) composer require atehnix/laravel-stubs ``` -Next up, the service provider -`Illuminate\Foundation\Providers\ConsoleSupportServiceProvider::class,` - -should be replaced by -`ATehnix\LaravelStubs\Providers\ConsoleSupportServiceProvider::class,` - -```php -// config/app.php - -'providers' => [ - ... - // Illuminate\Foundation\Providers\ConsoleSupportServiceProvider::class, - ATehnix\LaravelStubs\Providers\ConsoleSupportServiceProvider::class, - ... -]; -``` - To publish the config file to `config/stubs.php` run: ```