Skip to content

Commit

Permalink
docs: updates changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
nunomaduro committed Aug 25, 2020
1 parent f9109a2 commit 9610a3b
Show file tree
Hide file tree
Showing 4 changed files with 32 additions and 15 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/).

## [Unreleased]

## [v0.3.0 (2020-08-25)](https://github.com/pestphp/pest-plugin-laravel/compare/v0.2.0...v0.3.0)
### Added
- Support to Pest v0.3

## [v0.2.0 (2020-06-11)](https://github.com/pestphp/pest-plugin-laravel/commit/a7d44316eda40be56465d34cb457953e508f4161)
### Added
- First version
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
},
"extra": {
"branch-alias": {
"dev-master": "0.3.x-dev"
"dev-master": "0.4.x-dev"
}
}
}
27 changes: 27 additions & 0 deletions rector.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
<?php

declare(strict_types=1);

use Rector\Core\Configuration\Option;
use Rector\Set\ValueObject\SetList;
use Symfony\Component\DependencyInjection\Loader\Configurator\ContainerConfigurator;

return static function (ContainerConfigurator $containerConfigurator): void {
$parameters = $containerConfigurator->parameters();

$parameters->set(Option::AUTO_IMPORT_NAMES, true);

$parameters->set(Option::SETS, [
SetList::ACTION_INJECTION_TO_CONSTRUCTOR_INJECTION,
SetList::ARRAY_STR_FUNCTIONS_TO_STATIC_CALL,
SetList::CODE_QUALITY,
SetList::PHP_71,
SetList::PHP_72,
SetList::PHP_73,
SetList::PHPSTAN,
SetList::PHPUNIT_CODE_QUALITY,
SetList::SOLID,
]);

$parameters->set(Option::PATHS, [__DIR__ . '/src', __DIR__ . '/tests']);
};
14 changes: 0 additions & 14 deletions rector.yaml

This file was deleted.

0 comments on commit 9610a3b

Please sign in to comment.