Skip to content

Commit 9740ba4

Browse files
committed
wip
1 parent 7ad7316 commit 9740ba4

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

CONTRIBUTING.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ All contributions are welcomed. If it's your first time contributing to open sou
55
## Here are some points to consider:
66

77
- Your PR must be making only a single change, if you want to suggest multiple features or fix multiple issues please open separate PRs.
8-
- 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.
8+
- 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.
99
- Keep your code clean. Clean means you're proud of how it turned out.
1010

1111
## How to contribute:
@@ -26,7 +26,7 @@ Add this to your composer to JSON
2626
And when you require wink, add it like:
2727

2828
```
29-
"writingink/wink": "*@dev"
29+
"themsaid/wink": "*@dev"
3030
```
3131

3232
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.

src/Console/MigrateCommand.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ public function handle()
3838

3939
$this->call('migrate', [
4040
'--database' => config('wink.database_connection'),
41-
'--path' => 'vendor/writingink/wink/src/Migrations',
41+
'--path' => 'vendor/themsaid/wink/src/Migrations',
4242
'--force' => $this->option('force') ?? true,
4343
]);
4444

0 commit comments

Comments
 (0)