Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
themsaid committed May 17, 2020
1 parent 7ad7316 commit 9740ba4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion src/Console/MigrateCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -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,
]);

Expand Down

0 comments on commit 9740ba4

Please sign in to comment.