From 3ac68e3173e530be8b78869096a3f8b89a288363 Mon Sep 17 00:00:00 2001 From: Erick Mwamodo Date: Sun, 21 Jul 2024 17:20:53 +0300 Subject: [PATCH] from apxcode to apxcde --- CONTRIBUTING.md | 4 ++-- UPGRADE.md | 2 +- composer.json | 2 +- readme.md | 13 +------------ src/Console/MigrateCommand.php | 2 +- 5 files changed, 6 insertions(+), 17 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index f50d31e..4416eab 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/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: @@ -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. diff --git a/UPGRADE.md b/UPGRADE.md index 9f555a9..41dc6d5 100644 --- a/UPGRADE.md +++ b/UPGRADE.md @@ -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 diff --git a/composer.json b/composer.json index e4b3a12..75655e0 100644 --- a/composer.json +++ b/composer.json @@ -1,5 +1,5 @@ { - "name": "apxcode/wink", + "name": "apxcde/wink", "description": "Wink Publishing Framework.", "keywords": ["framework", "laravel", "blog"], "license": "MIT", diff --git a/readme.md b/readme.md index 5e3586a..4b65b7a 100644 --- a/readme.md +++ b/readme.md @@ -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 ``` @@ -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). diff --git a/src/Console/MigrateCommand.php b/src/Console/MigrateCommand.php index 9c01944..85590df 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/apxcode/wink/src/Migrations', + '--path' => 'vendor/apxcde/wink/src/Migrations', '--force' => $this->option('force') ?? true, ]);