diff --git a/CHANGELOG.md b/CHANGELOG.md index 1dcf42d..43d7b42 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,13 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](http://semver.org/). +## 4.1.1 - 2022-11-07 + +### Fixed + +- [Issue #51](https://github.com/weareferal/craft-remote-sync/issues/51) +- [Issue #52](https://github.com/weareferal/craft-remote-sync/issues/52) + ## 4.1.0 - 2022-10-5 ### Added diff --git a/composer.json b/composer.json index a621048..2bb4ea6 100644 --- a/composer.json +++ b/composer.json @@ -25,15 +25,6 @@ "php": "^8.0.2", "weareferal/remote-core": "^4.1.0" }, - "repositories": [ - { - "type": "path", - "url": "../craft-remote-core", - "options": { - "symlink": true - } - } - ], "require-dev": { "phpstan/phpstan": "1.8.x-dev", "craftcms/phpstan": "dev-main", diff --git a/composer.json.dev b/composer.json.dev deleted file mode 100644 index 59ae302..0000000 --- a/composer.json.dev +++ /dev/null @@ -1,67 +0,0 @@ -{ - "minimum-stability": "dev", - "name": "weareferal/remote-sync", - "description": "Sync your database and assets across Craft environments", - "type": "craft-plugin", - "keywords": [ - "craft", - "cms", - "craftcms", - "craft-plugin", - "sync" - ], - "support": { - "docs": "https://github.com/weareferal/craft-remote-sync/blob/master/README.md", - "issues": "https://github.com/weareferal/craft-remote-sync/issues" - }, - "license": "proprietary", - "authors": [ - { - "name": "Timmy O'Mahony", - "homepage": "https://timmyomahony.com" - } - ], - "require": { - "craftcms/cms": "^4.0.0", - "php": "^8.0.2", - "weareferal/remote-core": "dev-develop" - }, - "repositories": [ - { - "type": "path", - "url": "../craft-remote-core", - "options": { - "symlink": true - } - } - ], - "require-dev": { - "phpstan/phpstan": "1.8.x-dev", - "craftcms/phpstan": "dev-main", - "craftcms/rector": "dev-main" - }, - "autoload": { - "psr-4": { - "weareferal\\remotesync\\": "src/" - } - }, - "extra": { - "name": "Remote Sync", - "handle": "remote-sync", - "hasCpSettings": true, - "hasCpSection": false, - "changelogUrl": "https://raw.githubusercontent.com/weareferal/craft-remote-sync/master/CHANGELOG.md", - "class": "weareferal\\remotesync\\RemoteSync" - }, - "suggest": { - "aws/aws-sdk-php": "Required for AWS S3, Backblaze or Digital Ocean Spaces usage", - "kunalvarma05/dropbox-php-sdk": "Required for Dropbox usage", - "google/apiclient": "Required for Google Drive usage" - }, - "config": { - "allow-plugins": { - "yiisoft/yii2-composer": true, - "craftcms/plugin-installer": true - } - } -} diff --git a/src/RemoteSync.php b/src/RemoteSync.php index 4c57146..ee37f99 100644 --- a/src/RemoteSync.php +++ b/src/RemoteSync.php @@ -26,7 +26,7 @@ use weareferal\remotesync\services\PruneService; use weareferal\remotecore\RemoteCoreHelper; -use weareferal\remotecore\assets\remotecoresettings\RemoteCoreSettingsAsset; +use weareferal\remotecore\assets\RemoteCoreSettings\RemoteCoreSettingsAsset; class RemoteSync extends Plugin @@ -54,7 +54,7 @@ public function init() /** * Register Permissions - * + * */ public function registerPermissions() { @@ -76,7 +76,7 @@ function (RegisterUserPermissionsEvent $event) { /** * Register URLs - * + * */ public function registerURLs() { @@ -92,7 +92,7 @@ function (RegisterUrlRulesEvent $event) { /** * Register Console Controllers - * + * */ public function registerConsoleControllers() { @@ -103,7 +103,7 @@ public function registerConsoleControllers() /** * Register Services - * + * */ public function registerServices() { @@ -115,7 +115,7 @@ public function registerServices() /** * Register Utilities - * + * */ public function registerUtilties() {