From d2fd4cceead79722b294c2c2b926f2f338544819 Mon Sep 17 00:00:00 2001 From: Ravan Scafi Date: Mon, 1 Oct 2018 19:59:54 -0300 Subject: [PATCH] Give credits to Taylor Otwell and laravel/framework --- LICENSE | 2 +- README.md | 3 ++- src/MigrationServiceProvider.php | 6 +++++- src/Migrations/Commands/BaseCommand.php | 6 +++++- src/Migrations/Commands/FreshCommand.php | 6 +++++- src/Migrations/Commands/InstallCommand.php | 6 +++++- src/Migrations/Commands/MigrateCommand.php | 6 +++++- src/Migrations/Commands/MigrateMakeCommand.php | 6 +++++- src/Migrations/Commands/RefreshCommand.php | 6 +++++- src/Migrations/Commands/ResetCommand.php | 6 +++++- src/Migrations/Commands/RollbackCommand.php | 6 +++++- src/Migrations/Commands/StatusCommand.php | 6 +++++- src/Migrations/Migration.php | 6 +++++- src/Migrations/MigrationCreator.php | 6 +++++- src/Migrations/MigrationRepositoryInterface.php | 6 +++++- src/Migrations/Migrator.php | 6 +++++- src/Migrations/MongolidMigrationRepository.php | 6 +++++- tests/MigrationServiceProviderTest.php | 6 +++++- tests/Migrations/Commands/FreshCommandTest.php | 6 +++++- tests/Migrations/Commands/InstallCommandTest.php | 6 +++++- tests/Migrations/Commands/MigrateCommandTest.php | 6 +++++- tests/Migrations/Commands/MigrateMakeCommandTest.php | 6 +++++- tests/Migrations/Commands/RefreshCommandTest.php | 6 +++++- tests/Migrations/Commands/ResetCommandTest.php | 6 +++++- tests/Migrations/Commands/RollbackCommandTest.php | 6 +++++- tests/Migrations/Commands/StatusCommandTest.php | 6 +++++- tests/Migrations/MigrationCreatorTest.php | 6 +++++- tests/Migrations/MigrationTest.php | 6 +++++- tests/Migrations/MigratorTest.php | 6 +++++- tests/Migrations/MongolidMigrationRepositoryTest.php | 6 +++++- tests/Migrations/stubs/DropAdmin.php | 6 +++++- tests/Migrations/stubs/MigrationCreatorFakeMigration.php | 6 +++++- 32 files changed, 153 insertions(+), 32 deletions(-) diff --git a/LICENSE b/LICENSE index 613682d..4641acc 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2013-2017 Leroy Merlin Brasil +Copyright (c) 2013-2018 Leroy Merlin Brasil, Taylor Otwell 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 5979a25..d432820 100644 --- a/README.md +++ b/README.md @@ -310,7 +310,8 @@ The new (and improved) version 2.0 of Mongolid Laravel requires php7. If you are ## License -MongoLid & MongoLid Laravel are free software distributed under the terms of the [MIT license](http://opensource.org/licenses/MIT) +MongoLid & MongoLid Laravel are free software distributed under the terms of the [MIT license](http://opensource.org/licenses/MIT). +Some of the code is based on the work of Taylor Otwell and contributors on [laravel/framework](https://github.com/laravel/framework), another free software distributed under the terms of the [MIT license](http://opensource.org/licenses/MIT). ## Additional information diff --git a/src/MigrationServiceProvider.php b/src/MigrationServiceProvider.php index deac6db..af8e98f 100755 --- a/src/MigrationServiceProvider.php +++ b/src/MigrationServiceProvider.php @@ -1,5 +1,9 @@