Skip to content

Commit

Permalink
Version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
jissereitsma committed Apr 16, 2022
1 parent 13491f1 commit 195b666
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 3 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,11 @@ 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).

## [Unreleased]

# [1.2.3] = 16 April 2022
### Added
- New command for generate PHPUnit unit tests
- Upgraded deps to allow for PHP 8 compat

# [1.2.2] = 30 November 2020
### Fixed
Expand Down
1 change: 1 addition & 0 deletions Console/Command/RunPhpStanCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ class RunPhpStanCommand extends Command
* @var ComponentRegistrar
*/
private $componentRegistrar;

/**
* @var DirectoryList
*/
Expand Down
6 changes: 3 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "yireo/magento2-extensionchecker",
"license": "OSL-3.0",
"type": "magento2-module",
"version": "1.2.2",
"version": "1.2.3",
"homepage": "https://github.com/yireo/Yireo_ExtensionChecker",
"description": "Scan the code of a Magento module",
"keywords": [
Expand All @@ -19,9 +19,9 @@
"magento/framework": "^100.1|^101.0|^102.0|^103.0",
"magento/module-store": "^100.1|^101.0",
"symfony/finder": "^3.0|^4.0|^5.0",
"composer/semver": "^1.5",
"composer/semver": "^1.5|^2.0|^3.0",
"nette/php-generator": "^3.5",
"php": ">=7.2.0",
"php": ">=7.2.0|^8.0",
"ext-json": "*",
"ext-pcre": "*"
},
Expand Down
6 changes: 6 additions & 0 deletions etc/di.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,10 @@
<argument name="scan" xsi:type="object">Yireo\ExtensionChecker\Scan\Scan\Proxy</argument>
</arguments>
</type>

<type name="Yireo\ExtensionChecker\Console\Command\RunPhpStanCommand">
<arguments>
<argument name="directoryList" xsi:type="object">\Magento\Framework\Filesystem\DirectoryList\Proxy</argument>
</arguments>
</type>
</config>

0 comments on commit 195b666

Please sign in to comment.