Skip to content

Commit 2c6a1fe

Browse files
authored
Merge pull request #86 from Xerkus/feature/php-85
Drop support for PHP 8.1, Add Support for PHP 8.5
2 parents d291ba8 + 19e5252 commit 2c6a1fe

27 files changed

+554
-594
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
/.phpcs-cache
2+
/.phpunit.cache
23
/.phpunit.result.cache
34
/clover.xml
45
/coveralls-upload.json

.laminas-ci.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"pdo-sqlite"
44
],
55
"ignore_php_platform_requirements": {
6-
"8.4": true
6+
"8.5": true
77
},
88
"backwardCompatibilityCheck": true
99
}

composer.json

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
"dealerdirect/phpcodesniffer-composer-installer": true
2727
},
2828
"platform": {
29-
"php": "8.1.99"
29+
"php": "8.2.99"
3030
}
3131
},
3232
"extra": {
@@ -35,7 +35,8 @@
3535
}
3636
},
3737
"require": {
38-
"php": "~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0",
38+
"php": "~8.2.0 || ~8.3.0 || ~8.4.0 || ~8.5.0",
39+
"ext-pdo": "*",
3940
"league/oauth2-server": "^8.3.5",
4041
"mezzio/mezzio-authentication": "^1.0",
4142
"psr/container": "^1.0 || ^2.0",
@@ -48,7 +49,7 @@
4849
"laminas/laminas-coding-standard": "^3.1",
4950
"laminas/laminas-diactoros": "^3.7.0",
5051
"laminas/laminas-servicemanager": "^4.4",
51-
"phpunit/phpunit": "^9.6.29",
52+
"phpunit/phpunit": "^11.5.42",
5253
"psalm/plugin-phpunit": "^0.19.5",
5354
"vimeo/psalm": "^6.13.1"
5455
},

0 commit comments

Comments
 (0)