Skip to content

Commit 8b1245c

Browse files
committed
Support goaop/framework v3
1 parent a2f3f93 commit 8b1245c

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88

99
strategy:
1010
matrix:
11-
php: [7.0, 7.1, 7.2, 7.3, 7.4]
11+
php: [7.4]
1212

1313
steps:
1414
- name: Checkout code

composer.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,15 +13,15 @@
1313
}
1414
},
1515
"require": {
16-
"php": "^7.0",
17-
"goaop/framework": "^2.2.0",
18-
"phpunit/phpunit": "> 6.0.0",
19-
"symfony/finder": ">=2.4 <6.0"
16+
"php": "^7.4",
17+
"goaop/framework": "^3.0",
18+
"phpunit/phpunit": "^9.5",
19+
"symfony/finder": ">=4.4 <6.0"
2020
},
2121
"require-dev": {
22-
"codeception/codeception": "^4.0",
22+
"codeception/codeception": "^4.1",
2323
"codeception/verify": "^2.1",
24-
"codeception/specify": "^1.0"
24+
"codeception/specify": "^1.4"
2525
},
2626
"license": "MIT"
2727
}

src/AspectMock/Kernel.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515

1616
class Kernel extends AspectKernel
1717
{
18-
public function init(array $options = [])
18+
public function init(array $options = []): void
1919
{
2020
if (!isset($options['excludePaths'])) {
2121
$options['excludePaths'] = [];

0 commit comments

Comments
 (0)