Skip to content
This repository has been archived by the owner on Apr 2, 2021. It is now read-only.

Commit

Permalink
Fixed compatibility with ulrack/services version 3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mfrankruijter committed Jun 8, 2020
1 parent 393651e commit fd54f5b
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 4 deletions.
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## 1.0.5 - 2020-06-08
### Fixed
- Compatibility with ulrack/services version 3.0

## 1.0.4 - 2020-06-03
### Fixed
- Compatibility with ulrack/services version 2.0
Expand All @@ -25,7 +29,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Created the initial implementation of the command package.

# Versions
- [1.0.4 > Unreleased](https://github.com/ulrack/command/compare/1.0.4...HEAD)
- [1.0.5 > Unreleased](https://github.com/ulrack/command/compare/1.0.5...HEAD)
- [1.0.4 > 1.0.5](https://github.com/ulrack/command/compare/1.0.4...1.0.5)
- [1.0.3 > 1.0.4](https://github.com/ulrack/command/compare/1.0.3...1.0.4)
- [1.0.2 > 1.0.3](https://github.com/ulrack/command/compare/1.0.2...1.0.3)
- [1.0.1 > 1.0.2](https://github.com/ulrack/command/compare/1.0.1...1.0.2)
Expand Down
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@
"minimum-stability": "stable",
"require": {
"php": "^7.2",
"grizz-it/configuration": "^1.0",
"grizz-it/configuration": "^1.1",
"grizz-it/task": "^1.0",
"grizz-it/validator": "^1.0",
"ulrack/cli": "^1.0",
"ulrack/services": "^2.0"
"ulrack/services": "^3.0"
},
"authors": [{
"name": "Ulrack",
Expand Down
3 changes: 2 additions & 1 deletion locator.php
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
<?php

/**
* Copyright (C) GrizzIT, Inc. All rights reserved.
* See LICENSE for license details.
*/

use GrizzIt\Configuration\Component\Configuration\PackageLocator;

PackageLocator::registerLocation(__DIR__);
PackageLocator::registerLocation(__DIR__, 'Ulrack_Command');

0 comments on commit fd54f5b

Please sign in to comment.