Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Import path bugfix #43

Merged
merged 6 commits into from Nov 7, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
9 changes: 8 additions & 1 deletion CHANGELOG.md
Expand Up @@ -4,7 +4,14 @@ 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.2 - 2022-10-5
## 4.1.3 - 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.2 - 2022-10-8

### Fixed

Expand Down
11 changes: 1 addition & 10 deletions composer.json
Expand Up @@ -23,17 +23,8 @@
"require": {
"craftcms/cms": "^4.0.0",
"php": "^8.0.2",
"weareferal/remote-core": "4.1.0"
"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",
Expand Down
67 changes: 0 additions & 67 deletions composer.json.dev

This file was deleted.

14 changes: 7 additions & 7 deletions src/RemoteBackup.php
Expand Up @@ -26,7 +26,7 @@
use weareferal\remotebackup\services\PruneService;

use weareferal\remotecore\RemoteCoreHelper;
use weareferal\remotecore\assets\remotecoresettings\RemoteCoreSettingsAsset;
use weareferal\remotecore\assets\RemoteCoreSettings\RemoteCoreSettingsAsset;


class RemoteBackup extends Plugin
Expand All @@ -53,7 +53,7 @@ public function init()

/**
* Register Permissions
*
*
*/
public function registerPermissions()
{
Expand All @@ -70,12 +70,12 @@ function (RegisterUserPermissionsEvent $event) {
],
];
}
);
);
}

/**
* Register URLs
*
*
*/
public function registerURLs()
{
Expand All @@ -91,7 +91,7 @@ function (RegisterUrlRulesEvent $event) {

/**
* Register Console Controllers
*
*
*/
public function registerConsoleControllers()
{
Expand All @@ -102,7 +102,7 @@ public function registerConsoleControllers()

/**
* Register Services
*
*
*/
public function registerServices()
{
Expand All @@ -115,7 +115,7 @@ public function registerServices()

/**
* Register Utilities
*
*
*/
public function registerUtilties()
{
Expand Down