Skip to content

Commit

Permalink
Merge branch 'release/v0.5.5'
Browse files Browse the repository at this point in the history
  • Loading branch information
betterthanclay committed May 7, 2024
2 parents e677000 + bff5612 commit 4ca1b42
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 7 deletions.
1 change: 0 additions & 1 deletion .gitattributes
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,3 @@ phpstan.neon export-ignore
phpunit.xml.dist export-ignore
docs/ export-ignore
tests/ export-ignore
stubs/ export-ignore
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## v0.5.5 (2024-05-07)
* Updated Tagged dependency

## v0.5.4 (2024-04-26)
* Updated Archetype dependency

Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"decodelabs/archetype": "^0.2|^0.3",
"decodelabs/coercion": "^0.2",
"decodelabs/exceptional": "^0.4",
"decodelabs/tagged": "^0.14"
"decodelabs/tagged": "^0.15"
},
"require-dev": {
"decodelabs/phpstan-decodelabs": "^0.6",
Expand Down
13 changes: 8 additions & 5 deletions ecs.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,12 @@
declare(strict_types=1);

use Symplify\EasyCodingStandard\Config\ECSConfig;
use Symplify\EasyCodingStandard\ValueObject\Set\SetList;

return static function (ECSConfig $ecsConfig): void {
$ecsConfig->paths([__DIR__ . '/src']);
$ecsConfig->sets([SetList::CLEAN_CODE, SetList::PSR_12]);
};
return ECSConfig::configure()
->withPaths([
__DIR__ . '/src'
])
->withPreparedSets(
cleanCode: true,
psr12: true
);

0 comments on commit 4ca1b42

Please sign in to comment.