diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index b5018599..baa0a2b8 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -5,7 +5,7 @@ All contributions are welcomed. If it's your first time contributing to open sou ## Here are some points to consider: - Your PR must be making only a single change, if you want to suggest multiple features or fix multiple issues please open separate PRs. -- If you have an idea that will require a lot of work, make sure you suggest it in a new [issue](https://github.com/writingink/wink/issues) first to make sure it's admired before investing time into it. +- If you have an idea that will require a lot of work, make sure you suggest it in a new [issue](https://github.com/themsaid/wink/issues) first to make sure it's admired before investing time into it. - Keep your code clean. Clean means you're proud of how it turned out. ## How to contribute: @@ -26,7 +26,7 @@ Add this to your composer to JSON And when you require wink, add it like: ``` -"writingink/wink": "*@dev" +"themsaid/wink": "*@dev" ``` Run `composer update` in your laravel project, then `php artisan wink:install`, and then `php artisan wink:migrate`. Now you have wink running in your laravel project using the files on your machine. diff --git a/src/Console/MigrateCommand.php b/src/Console/MigrateCommand.php index 71b09743..62a23093 100644 --- a/src/Console/MigrateCommand.php +++ b/src/Console/MigrateCommand.php @@ -38,7 +38,7 @@ public function handle() $this->call('migrate', [ '--database' => config('wink.database_connection'), - '--path' => 'vendor/writingink/wink/src/Migrations', + '--path' => 'vendor/themsaid/wink/src/Migrations', '--force' => $this->option('force') ?? true, ]);