Skip to content

Commit 93da48e

Browse files
authored
V1.7.1 (#11)
* v1.7.1 Fix autowire helper and implements testsing tool * v1.7.1.1 Fix deps
1 parent 6f1aff7 commit 93da48e

File tree

2 files changed

+6
-7
lines changed

2 files changed

+6
-7
lines changed

composer.json

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,10 @@
1010
}
1111
],
1212
"require": {
13-
"php": "^8.2",
14-
"micro/dependency-injection": "^1.6.4"
13+
"micro/dependency-injection": "^1.7"
14+
},
15+
"require-dev": {
16+
"micro/testing-tool": "^1.7"
1517
},
1618
"autoload": {
1719
"psr-4": {
@@ -47,10 +49,7 @@
4749
"@statics",
4850
"composer validate --strict",
4951
"composer normalize",
50-
"@coverage"
52+
"@phpunit"
5153
]
52-
},
53-
"require-dev": {
54-
"micro/testing-tool": "^1.7"
5554
}
5655
}

src/AutowireHelper.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
use Psr\Container\ContainerInterface;
1717
use Psr\Container\NotFoundExceptionInterface;
1818

19-
class AutowireHelper implements AutowireHelperInterface
19+
readonly class AutowireHelper implements AutowireHelperInterface
2020
{
2121
public function __construct(private ContainerInterface $container)
2222
{

0 commit comments

Comments
 (0)