Skip to content

Commit 98499ee

Browse files
authored
[1.x] PHP 8.5 Compatibility (#40)
Signed-off-by: Mior Muhammad Zaki <[email protected]>
1 parent 9a3ba47 commit 98499ee

File tree

2 files changed

+7
-4
lines changed

2 files changed

+7
-4
lines changed

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
strategy:
1717
fail-fast: true
1818
matrix:
19-
php: [7.2, 7.3, 7.4, '8.0', 8.1, 8.2, 8.3, 8.4]
19+
php: [7.2, 7.3, 7.4, '8.0', 8.1, 8.2, 8.3, 8.4, 8.5]
2020

2121
name: PHP ${{ matrix.php }}
2222

composer.json

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
},
2020
"require-dev": {
2121
"phpstan/phpstan": "^1.10",
22-
"phpunit/phpunit": "^7.0|^8.0|^9.0|^10.0"
22+
"phpunit/phpunit": "^7.0|^8.0|^9.0|^10.0|^11.0|^12.0"
2323
},
2424
"autoload": {
2525
"files": [
@@ -37,9 +37,12 @@
3737
}
3838
},
3939
"config": {
40+
"audit": {
41+
"block-insecure": false
42+
},
43+
"optimize-autoloader": true,
4044
"preferred-install": "dist",
41-
"sort-packages": true,
42-
"optimize-autoloader": true
45+
"sort-packages": true
4346
},
4447
"minimum-stability": "dev",
4548
"prefer-stable": true

0 commit comments

Comments
 (0)