From e7c5bf3da521421222f4c965978ceefa2528cd4f Mon Sep 17 00:00:00 2001 From: Eran Machiels Date: Tue, 9 Feb 2021 18:28:44 +0100 Subject: [PATCH] Fixed tutorial namespaces --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index b311833..c46f07e 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@ The preferred way to install this extension is through [composer](http://getcomp With Composer installed, you can then install the extension using the following commands: ```bash -$ php composer.phar require jlorente/laravel-data-migrations +$ php composer.phar require coderan/laravel-data-migrations ``` or add @@ -17,7 +17,7 @@ or add ```json ... "require": { - "jlorente/laravel-data-migrations": "*" + "coderan/laravel-data-migrations": "*" } ``` @@ -33,7 +33,7 @@ return [ //other stuff 'providers' => [ //other stuff - \Jlorente\DataMigrations\DataMigrationsServiceProvider::class, + \Coderan\DataMigrations\DataMigrationsServiceProvider::class, ]; ]; ``` @@ -73,6 +73,6 @@ php artisan migrate-data:rollback [--path=] The behavior of the migrations is the same as the regular migrations. ## License -Copyright © 2018 José Lorente Martín . +Copyright © 2021 José Lorente Martín , Eran Machiels . Licensed under the MIT license. See LICENSE.txt for details.