Skip to content
This repository was archived by the owner on Dec 5, 2024. It is now read-only.

Commit d0589ec

Browse files
authored
Merge pull request #7 from weierophinney/feature/php-8.1-support
Provide PHP 8.1 support
2 parents 8318f1a + f3a1223 commit d0589ec

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

65 files changed

+1373
-980
lines changed

.gitignore

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

.laminas-ci.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"ignore_php_platform_requirements": {
3+
"8.1": true
4+
}
5+
}

composer.json

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,10 @@
1919
"sort-packages": true
2020
},
2121
"require": {
22-
"php": "^7.3 || ~8.0.0",
23-
"laminas/laminas-zendframework-bridge": "^1.0"
22+
"php": "^7.3 || ~8.0.0 || ~8.1.0"
2423
},
2524
"require-dev": {
26-
"laminas/laminas-coding-standard": "~1.0.0",
25+
"laminas/laminas-coding-standard": "~2.2.1",
2726
"phpunit/phpunit": "^9.3"
2827
},
2928
"autoload": {
@@ -46,7 +45,7 @@
4645
"test": "phpunit --colors=always",
4746
"test-coverage": "phpunit --colors=always --coverage-clover clover.xml"
4847
},
49-
"replace": {
50-
"zendframework/zend-loader": "^2.6.1"
48+
"conflict": {
49+
"zendframework/zend-loader": "*"
5150
}
5251
}

0 commit comments

Comments
 (0)