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

Commit

Permalink
Changed packages to GrizzIT variations
Browse files Browse the repository at this point in the history
  • Loading branch information
mfrankruijter committed Apr 9, 2020
1 parent a13f146 commit f0cf3f7
Show file tree
Hide file tree
Showing 8 changed files with 17 additions and 12 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.2 - 2020-04-09
### Changed
- Changed packages to GrizzIT variations.

## 1.0.1 - 2020-03-05
### Changed
- Changed company name references.
Expand All @@ -13,5 +17,6 @@ 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.1 > Unreleased](https://github.com/ulrack/command/compare/1.0.1...HEAD)
- [1.0.2 > Unreleased](https://github.com/ulrack/command/compare/1.0.1...HEAD)
- [1.0.1 > 1.0.2](https://github.com/ulrack/command/compare/1.0.1...1.0.2)
- [1.0.0 > 1.0.1](https://github.com/ulrack/command/compare/1.0.0...1.0.1)
8 changes: 4 additions & 4 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/task": "^1.0",
"grizz-it/validator": "^1.0",
"ulrack/cli": "^1.0",
"ulrack/configuration": "^1.0",
"ulrack/services": "^1.0",
"ulrack/task": "^1.0",
"ulrack/validator": "^1.0"
"ulrack/services": "^1.0"
},
"authors": [{
"name": "Ulrack",
Expand Down
2 changes: 1 addition & 1 deletion examples/command-showcase.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
<?php

use GrizzIt\ObjectFactory\Factory\ObjectFactory;
use Ulrack\Cli\Factory\IoFactory;
use Ulrack\Cli\Factory\FormFactory;
use Ulrack\Cli\Factory\ThemeFactory;
Expand All @@ -10,7 +11,6 @@
use Ulrack\Cli\Component\Theme\DefaultTheme;
use Ulrack\Command\Component\Command\Output;
use Ulrack\Command\Dao\CommandConfiguration;
use Ulrack\ObjectFactory\Factory\ObjectFactory;
use Ulrack\Command\Common\Command\InputInterface;
use Ulrack\Command\Common\Command\OutputInterface;
use Ulrack\Command\Component\Router\CommandRouter;
Expand Down
2 changes: 1 addition & 1 deletion locator.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@
* See LICENSE for license details.
*/

use Ulrack\Configuration\Component\Configuration\PackageLocator;
use GrizzIt\Configuration\Component\Configuration\PackageLocator;

PackageLocator::registerLocation(__DIR__);
2 changes: 1 addition & 1 deletion src/Common/Command/OutputInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

namespace Ulrack\Command\Common\Command;

use Ulrack\Task\Common\TaskListInterface;
use GrizzIt\Task\Common\TaskListInterface;
use Ulrack\Cli\Common\Generator\FormGeneratorInterface;

interface OutputInterface
Expand Down
2 changes: 1 addition & 1 deletion src/Component/Command/Output.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@

namespace Ulrack\Command\Component\Command;

use GrizzIt\Task\Common\TaskListInterface;
use Ulrack\Cli\Common\Io\WriterInterface;
use Ulrack\Task\Common\TaskListInterface;
use Ulrack\Cli\Common\Theme\ThemeInterface;
use Ulrack\Command\Common\Command\OutputInterface;
use Ulrack\Cli\Common\Factory\IoFactoryInterface;
Expand Down
4 changes: 2 additions & 2 deletions src/Component/Router/CommandRouter.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@
namespace Ulrack\Command\Component\Router;

use Throwable;
use GrizzIt\Validator\Component\Type\StringValidator;
use GrizzIt\Validator\Component\Textual\PatternValidator;
use Ulrack\Command\Command\HelpCommand;
use Ulrack\Command\Command\ListCommandsCommand;
use Ulrack\Cli\Common\Factory\IoFactoryInterface;
Expand All @@ -15,11 +17,9 @@
use Ulrack\Command\Common\Command\OutputInterface;
use Ulrack\Command\Common\Command\CommandInterface;
use Ulrack\Services\Common\ServiceFactoryInterface;
use Ulrack\Validator\Component\Type\StringValidator;
use Ulrack\Cli\Common\Factory\ElementFactoryInterface;
use Ulrack\Command\Exception\CommandNotFoundException;
use Ulrack\Cli\Common\Generator\FormGeneratorInterface;
use Ulrack\Validator\Component\Textual\PatternValidator;
use Ulrack\Command\Exception\CommandCanNotExecuteException;
use Ulrack\Command\Exception\MisconfiguredCommandException;
use Ulrack\Command\Common\Dao\CommandConfigurationInterface;
Expand Down
2 changes: 1 addition & 1 deletion tests/Component/Command/OutputTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@
namespace Ulrack\Command\Tests\Component\Command;

use PHPUnit\Framework\TestCase;
use GrizzIt\Task\Common\TaskListInterface;
use Ulrack\Command\Component\Command\Output;
use Ulrack\Cli\Common\Io\WriterInterface;
use Ulrack\Task\Common\TaskListInterface;
use Ulrack\Cli\Common\Theme\ThemeInterface;
use Ulrack\Cli\Common\Element\ElementInterface;
use Ulrack\Cli\Common\Factory\IoFactoryInterface;
Expand Down

0 comments on commit f0cf3f7

Please sign in to comment.