Skip to content

Commit

Permalink
from apxcode to apxcde
Browse files Browse the repository at this point in the history
  • Loading branch information
mwamodo committed Jul 21, 2024
1 parent cf723d4 commit 3ac68e3
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 17 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/apxcode/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/apxcde/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:

```
"apxcode/wink": "*@dev"
"apxcde/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 UPGRADE.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

## Upgrading To 1.0 From 0.x

Notice: The package name has changed from `writingink/wink` to `apxcode/wink`.
Notice: The package name has changed from `writingink/wink` to `apxcde/wink`.

To upgrade to version 1.0, you need to run the following commands

Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "apxcode/wink",
"name": "apxcde/wink",
"description": "Wink Publishing Framework.",
"keywords": ["framework", "laravel", "blog"],
"license": "MIT",
Expand Down
13 changes: 1 addition & 12 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ Wink uses a separate database connection and authentication system so that you d
To install Wink, run these commands in the root of your Laravel app:

```sh
composer require apxcode/wink
composer require apxcde/wink
php artisan wink:install
php artisan storage:link
```
Expand Down Expand Up @@ -78,17 +78,6 @@ Wink is faceless, it doesn't have any opinions on how you display your content i

To display posts and pages content, use `$post->content` instead of `$post->body`. The content will always be in HTML format while the body might be HTML or raw markdown based on the post type.

## Credits

- [Mohamed Said](https://github.com/themsaid)
- [All contributors](https://github.com/apxcode/wink/contributors)

Special thanks to [Caneco](https://twitter.com/caneco) for the logo ✨

## Contributing

Check the [contribution guide](CONTRIBUTING.md).

## License

Wink is open-sourced software licensed under the [MIT license](https://opensource.org/licenses/MIT).
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/apxcode/wink/src/Migrations',
'--path' => 'vendor/apxcde/wink/src/Migrations',
'--force' => $this->option('force') ?? true,
]);

Expand Down

0 comments on commit 3ac68e3

Please sign in to comment.