Skip to content

Commit

Permalink
Give credits to Taylor Otwell and laravel/framework
Browse files Browse the repository at this point in the history
  • Loading branch information
Ravan Scafi committed Oct 1, 2018
1 parent d6c8801 commit d2fd4cc
Show file tree
Hide file tree
Showing 32 changed files with 153 additions and 32 deletions.
2 changes: 1 addition & 1 deletion 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
Expand Down
3 changes: 2 additions & 1 deletion README.md
Expand Up @@ -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

Expand Down
6 changes: 5 additions & 1 deletion src/MigrationServiceProvider.php
@@ -1,5 +1,9 @@
<?php

/*
* Copyright (c) Taylor Otwell, Leroy Merlin Brasil
* Copyrights licensed under the MIT License.
* See the accompanying LICENSE file for terms.
*/
namespace MongolidLaravel;

use Illuminate\Support\ServiceProvider;
Expand Down
6 changes: 5 additions & 1 deletion src/Migrations/Commands/BaseCommand.php
@@ -1,5 +1,9 @@
<?php

/*
* Copyright (c) Taylor Otwell, Leroy Merlin Brasil
* Copyrights licensed under the MIT License.
* See the accompanying LICENSE file for terms.
*/
namespace MongolidLaravel\Migrations\Commands;

use Illuminate\Console\Command;
Expand Down
6 changes: 5 additions & 1 deletion src/Migrations/Commands/FreshCommand.php
@@ -1,5 +1,9 @@
<?php

/*
* Copyright (c) Taylor Otwell, Leroy Merlin Brasil
* Copyrights licensed under the MIT License.
* See the accompanying LICENSE file for terms.
*/
namespace MongolidLaravel\Migrations\Commands;

use Illuminate\Console\Command;
Expand Down
6 changes: 5 additions & 1 deletion src/Migrations/Commands/InstallCommand.php
@@ -1,5 +1,9 @@
<?php

/*
* Copyright (c) Taylor Otwell, Leroy Merlin Brasil
* Copyrights licensed under the MIT License.
* See the accompanying LICENSE file for terms.
*/
namespace MongolidLaravel\Migrations\Commands;

use Illuminate\Console\Command;
Expand Down
6 changes: 5 additions & 1 deletion src/Migrations/Commands/MigrateCommand.php
@@ -1,5 +1,9 @@
<?php

/*
* Copyright (c) Taylor Otwell, Leroy Merlin Brasil
* Copyrights licensed under the MIT License.
* See the accompanying LICENSE file for terms.
*/
namespace MongolidLaravel\Migrations\Commands;

use Illuminate\Console\ConfirmableTrait;
Expand Down
6 changes: 5 additions & 1 deletion src/Migrations/Commands/MigrateMakeCommand.php
@@ -1,5 +1,9 @@
<?php

/*
* Copyright (c) Taylor Otwell, Leroy Merlin Brasil
* Copyrights licensed under the MIT License.
* See the accompanying LICENSE file for terms.
*/
namespace MongolidLaravel\Migrations\Commands;

use Illuminate\Support\Composer;
Expand Down
6 changes: 5 additions & 1 deletion src/Migrations/Commands/RefreshCommand.php
@@ -1,5 +1,9 @@
<?php

/*
* Copyright (c) Taylor Otwell, Leroy Merlin Brasil
* Copyrights licensed under the MIT License.
* See the accompanying LICENSE file for terms.
*/
namespace MongolidLaravel\Migrations\Commands;

use Illuminate\Console\Command;
Expand Down
6 changes: 5 additions & 1 deletion src/Migrations/Commands/ResetCommand.php
@@ -1,5 +1,9 @@
<?php

/*
* Copyright (c) Taylor Otwell, Leroy Merlin Brasil
* Copyrights licensed under the MIT License.
* See the accompanying LICENSE file for terms.
*/
namespace MongolidLaravel\Migrations\Commands;

use Illuminate\Console\ConfirmableTrait;
Expand Down
6 changes: 5 additions & 1 deletion src/Migrations/Commands/RollbackCommand.php
@@ -1,5 +1,9 @@
<?php

/*
* Copyright (c) Taylor Otwell, Leroy Merlin Brasil
* Copyrights licensed under the MIT License.
* See the accompanying LICENSE file for terms.
*/
namespace MongolidLaravel\Migrations\Commands;

use Illuminate\Console\ConfirmableTrait;
Expand Down
6 changes: 5 additions & 1 deletion src/Migrations/Commands/StatusCommand.php
@@ -1,5 +1,9 @@
<?php

/*
* Copyright (c) Taylor Otwell, Leroy Merlin Brasil
* Copyrights licensed under the MIT License.
* See the accompanying LICENSE file for terms.
*/
namespace MongolidLaravel\Migrations\Commands;

use Illuminate\Support\Collection;
Expand Down
6 changes: 5 additions & 1 deletion src/Migrations/Migration.php
@@ -1,5 +1,9 @@
<?php

/*
* Copyright (c) Taylor Otwell, Leroy Merlin Brasil
* Copyrights licensed under the MIT License.
* See the accompanying LICENSE file for terms.
*/
namespace MongolidLaravel\Migrations;

abstract class Migration
Expand Down
6 changes: 5 additions & 1 deletion src/Migrations/MigrationCreator.php
@@ -1,5 +1,9 @@
<?php

/*
* Copyright (c) Taylor Otwell, Leroy Merlin Brasil
* Copyrights licensed under the MIT License.
* See the accompanying LICENSE file for terms.
*/
namespace MongolidLaravel\Migrations;

use Closure;
Expand Down
6 changes: 5 additions & 1 deletion src/Migrations/MigrationRepositoryInterface.php
@@ -1,5 +1,9 @@
<?php

/*
* Copyright (c) Taylor Otwell, Leroy Merlin Brasil
* Copyrights licensed under the MIT License.
* See the accompanying LICENSE file for terms.
*/
namespace MongolidLaravel\Migrations;

interface MigrationRepositoryInterface
Expand Down
6 changes: 5 additions & 1 deletion src/Migrations/Migrator.php
@@ -1,5 +1,9 @@
<?php

/*
* Copyright (c) Taylor Otwell, Leroy Merlin Brasil
* Copyrights licensed under the MIT License.
* See the accompanying LICENSE file for terms.
*/
namespace MongolidLaravel\Migrations;

use Illuminate\Console\OutputStyle;
Expand Down
6 changes: 5 additions & 1 deletion src/Migrations/MongolidMigrationRepository.php
@@ -1,5 +1,9 @@
<?php

/*
* Copyright (c) Taylor Otwell, Leroy Merlin Brasil
* Copyrights licensed under the MIT License.
* See the accompanying LICENSE file for terms.
*/
namespace MongolidLaravel\Migrations;

use MongoDB\Collection;
Expand Down
6 changes: 5 additions & 1 deletion tests/MigrationServiceProviderTest.php
@@ -1,5 +1,9 @@
<?php

/*
* Copyright (c) Taylor Otwell, Leroy Merlin Brasil
* Copyrights licensed under the MIT License.
* See the accompanying LICENSE file for terms.
*/
namespace MongolidLaravel;

use Mockery as m;
Expand Down
6 changes: 5 additions & 1 deletion tests/Migrations/Commands/FreshCommandTest.php
@@ -1,5 +1,9 @@
<?php

/*
* Copyright (c) Taylor Otwell, Leroy Merlin Brasil
* Copyrights licensed under the MIT License.
* See the accompanying LICENSE file for terms.
*/
namespace MongolidLaravel\Migrations\Commands;

use Illuminate\Foundation\Application;
Expand Down
6 changes: 5 additions & 1 deletion tests/Migrations/Commands/InstallCommandTest.php
@@ -1,5 +1,9 @@
<?php

/*
* Copyright (c) Taylor Otwell, Leroy Merlin Brasil
* Copyrights licensed under the MIT License.
* See the accompanying LICENSE file for terms.
*/
namespace MongolidLaravel\Migrations\Commands;

use Illuminate\Foundation\Application;
Expand Down
6 changes: 5 additions & 1 deletion tests/Migrations/Commands/MigrateCommandTest.php
@@ -1,5 +1,9 @@
<?php

/*
* Copyright (c) Taylor Otwell, Leroy Merlin Brasil
* Copyrights licensed under the MIT License.
* See the accompanying LICENSE file for terms.
*/
namespace MongolidLaravel\Migrations\Commands;

use Illuminate\Console\OutputStyle;
Expand Down
6 changes: 5 additions & 1 deletion tests/Migrations/Commands/MigrateMakeCommandTest.php
@@ -1,5 +1,9 @@
<?php

/*
* Copyright (c) Taylor Otwell, Leroy Merlin Brasil
* Copyrights licensed under the MIT License.
* See the accompanying LICENSE file for terms.
*/
namespace MongolidLaravel\Migrations\Commands;

use Illuminate\Foundation\Application;
Expand Down
6 changes: 5 additions & 1 deletion tests/Migrations/Commands/RefreshCommandTest.php
@@ -1,5 +1,9 @@
<?php

/*
* Copyright (c) Taylor Otwell, Leroy Merlin Brasil
* Copyrights licensed under the MIT License.
* See the accompanying LICENSE file for terms.
*/
namespace MongolidLaravel\Migrations\Commands;

use Illuminate\Foundation\Application;
Expand Down
6 changes: 5 additions & 1 deletion tests/Migrations/Commands/ResetCommandTest.php
@@ -1,5 +1,9 @@
<?php

/*
* Copyright (c) Taylor Otwell, Leroy Merlin Brasil
* Copyrights licensed under the MIT License.
* See the accompanying LICENSE file for terms.
*/
namespace MongolidLaravel\Migrations\Commands;

use Illuminate\Console\OutputStyle;
Expand Down
6 changes: 5 additions & 1 deletion tests/Migrations/Commands/RollbackCommandTest.php
@@ -1,5 +1,9 @@
<?php

/*
* Copyright (c) Taylor Otwell, Leroy Merlin Brasil
* Copyrights licensed under the MIT License.
* See the accompanying LICENSE file for terms.
*/
namespace MongolidLaravel\Migrations\Commands;

use Illuminate\Console\OutputStyle;
Expand Down
6 changes: 5 additions & 1 deletion tests/Migrations/Commands/StatusCommandTest.php
@@ -1,5 +1,9 @@
<?php

/*
* Copyright (c) Taylor Otwell, Leroy Merlin Brasil
* Copyrights licensed under the MIT License.
* See the accompanying LICENSE file for terms.
*/
namespace MongolidLaravel\Migrations\Commands;

use Illuminate\Foundation\Application;
Expand Down
6 changes: 5 additions & 1 deletion tests/Migrations/MigrationCreatorTest.php
@@ -1,5 +1,9 @@
<?php

/*
* Copyright (c) Taylor Otwell, Leroy Merlin Brasil
* Copyrights licensed under the MIT License.
* See the accompanying LICENSE file for terms.
*/
namespace MongolidLaravel\Migrations;

use Illuminate\Filesystem\Filesystem;
Expand Down
6 changes: 5 additions & 1 deletion tests/Migrations/MigrationTest.php
@@ -1,5 +1,9 @@
<?php

/*
* Copyright (c) Taylor Otwell, Leroy Merlin Brasil
* Copyrights licensed under the MIT License.
* See the accompanying LICENSE file for terms.
*/
namespace MongolidLaravel\Migrations;

use MongolidLaravel\TestCase;
Expand Down
6 changes: 5 additions & 1 deletion tests/Migrations/MigratorTest.php
@@ -1,5 +1,9 @@
<?php

/*
* Copyright (c) Taylor Otwell, Leroy Merlin Brasil
* Copyrights licensed under the MIT License.
* See the accompanying LICENSE file for terms.
*/
namespace MongolidLaravel\Migrations;

use Illuminate\Console\OutputStyle;
Expand Down
6 changes: 5 additions & 1 deletion tests/Migrations/MongolidMigrationRepositoryTest.php
@@ -1,5 +1,9 @@
<?php

/*
* Copyright (c) Taylor Otwell, Leroy Merlin Brasil
* Copyrights licensed under the MIT License.
* See the accompanying LICENSE file for terms.
*/
namespace MongolidLaravel\Migrations;

use Mockery as m;
Expand Down
6 changes: 5 additions & 1 deletion tests/Migrations/stubs/DropAdmin.php
@@ -1,5 +1,9 @@
<?php

/*
* Copyright (c) Taylor Otwell, Leroy Merlin Brasil
* Copyrights licensed under the MIT License.
* See the accompanying LICENSE file for terms.
*/
class DropAdmin
{
public function up()
Expand Down
6 changes: 5 additions & 1 deletion tests/Migrations/stubs/MigrationCreatorFakeMigration.php
@@ -1,5 +1,9 @@
<?php

/*
* Copyright (c) Taylor Otwell, Leroy Merlin Brasil
* Copyrights licensed under the MIT License.
* See the accompanying LICENSE file for terms.
*/
class MigrationCreatorFakeMigration
{
}

0 comments on commit d2fd4cc

Please sign in to comment.