Skip to content

Commit 92bfae0

Browse files
fix composer version
1 parent 9aaafd8 commit 92bfae0

File tree

3 files changed

+2
-5
lines changed

3 files changed

+2
-5
lines changed

composer.json

+1-1
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.4.0",
6+
"version": "0.5.1",
77
"authors": [
88
{
99
"name": "Pietro Campagnano",

tests/Unit/Analyzer/FileParserTest.php

-3
Original file line numberDiff line numberDiff line change
@@ -43,9 +43,6 @@ class Foo {}
4343
$fileParser->parse($content, 'foo');
4444
}
4545

46-
/**
47-
* @requires PHP < 8.0
48-
*/
4946
public function test_parse_file_with_name_match(): void
5047
{
5148
$traverser = $this->prophesize(NodeTraverser::class);

tests/Unit/CLI/VersionTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,6 @@ class VersionTest extends TestCase
1111
{
1212
public function test_it_should_return_version(): void
1313
{
14-
$this->assertEquals('0.4.0', Version::get());
14+
$this->assertEquals('0.5.1', Version::get());
1515
}
1616
}

0 commit comments

Comments
 (0)