Skip to content

Commit

Permalink
Merge pull request #53 from weareferal/release/4.1.1
Browse files Browse the repository at this point in the history
Import path bugfix
  • Loading branch information
timmyomahony authored Nov 7, 2022
2 parents 7920b09 + 8bbbd2b commit 51e2c1c
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 82 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
9 changes: 0 additions & 9 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
67 changes: 0 additions & 67 deletions composer.json.dev

This file was deleted.

12 changes: 6 additions & 6 deletions src/RemoteSync.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -54,7 +54,7 @@ public function init()

/**
* Register Permissions
*
*
*/
public function registerPermissions()
{
Expand All @@ -76,7 +76,7 @@ function (RegisterUserPermissionsEvent $event) {

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

/**
* Register Console Controllers
*
*
*/
public function registerConsoleControllers()
{
Expand All @@ -103,7 +103,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

0 comments on commit 51e2c1c

Please sign in to comment.