Skip to content

Commit d4d04f7

Browse files
wip
1 parent 5f303eb commit d4d04f7

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

composer.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"description": "Enforce architectural constraints in your PHP applications",
44
"type": "library",
55
"license": "MIT",
6-
"version": "0.3.33",
6+
"version": "0.4.0",
77
"authors": [
88
{
99
"name": "Pietro Campagnano",
@@ -38,10 +38,10 @@
3838
"roave/security-advisories": "dev-master",
3939
"symfony/var-dumper": "^3.0|^4.0|^5.0|^6.0|^7.0",
4040
"vimeo/psalm": "^4.6",
41-
"friendsofphp/php-cs-fixer": "^3.0",
4241
"phpunit/phpunit": "^7.5|^9.0|^10.0",
4342
"mikey179/vfsstream": "^1.6",
44-
"phpspec/prophecy": "^1.10"
43+
"phpspec/prophecy": "^1.10",
44+
"friendsofphp/php-cs-fixer": "3.4.0"
4545
},
4646
"autoload": {
4747
"psr-4": {

src/CLI/TargetPhpVersion.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ private function __construct(string $version)
2525
{
2626
$versionNumbers = explode('.', $version);
2727
if (3 <= \count($versionNumbers)) {
28-
$version = $versionNumbers[0] . '.' . $versionNumbers[1];
28+
$version = $versionNumbers[0].'.'.$versionNumbers[1];
2929
}
3030

3131
if (!\in_array($version, self::VALID_PHP_VERSIONS)) {

0 commit comments

Comments
 (0)