Skip to content

Commit

Permalink
Merge pull request #69 from gsteel/PHP-8.2
Browse files Browse the repository at this point in the history
Add support for PHP 8.2, remove support for PHP 7.4
  • Loading branch information
Ocramius committed Oct 11, 2022
2 parents c48e8a3 + 55fcd62 commit 41cff2f
Show file tree
Hide file tree
Showing 10 changed files with 291 additions and 514 deletions.
2 changes: 0 additions & 2 deletions .coveralls.yml

This file was deleted.

8 changes: 6 additions & 2 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -1,10 +1,14 @@
/.coveralls.yml export-ignore
/.gitattributes export-ignore
/.github/ export-ignore
/.gitignore export-ignore
/.travis.yml export-ignore
/docs/ export-ignore
/mkdocs.yml export-ignore
/phpcs.xml export-ignore
/phpunit.xml.dist export-ignore
/composer.lock export-ignore
/renovate.json export-ignore
/psalm.xml export-ignore
/psalm-baseline.xml export-ignore
/test/ export-ignore
/.laminas-ci.json export-ignore
/.laminas-ci/
2 changes: 0 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
/.phpunit.result.cache
/.phpcs-cache
/.psalm-cache
/clover.xml
/coveralls-upload.json
/docs/html/
/laminas-mkdoc-theme.tgz
/laminas-mkdoc-theme/
Expand Down
5 changes: 5 additions & 0 deletions .laminas-ci.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"ignore_php_platform_requirements": {
"8.2": true
}
}
11 changes: 5 additions & 6 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
"composer/package-versions-deprecated": true
},
"platform": {
"php": "7.4.99"
"php": "8.0.99"
}
},
"extra": {
Expand All @@ -32,21 +32,20 @@
}
},
"require": {
"php": "^7.4 || ~8.0.0 || ~8.1.0",
"php": "~8.0.0 || ~8.1.0 || ~8.2.0",
"ext-mbstring": "*",
"laminas/laminas-servicemanager": "^3.14.0",
"laminas/laminas-stdlib": "^3.13.0"
},
"require-dev": {
"laminas/laminas-coding-standard": "~2.4.0",
"laminas/laminas-crypt": "^3.5.1",
"laminas/laminas-crypt": "^3.8",
"laminas/laminas-uri": "^2.9.1",
"pear/archive_tar": "^1.4.14",
"phpspec/prophecy-phpunit": "^2.0.1",
"phpunit/phpunit": "^9.5.24",
"phpunit/phpunit": "^9.5.25",
"psalm/plugin-phpunit": "^0.17.0",
"psr/http-factory": "^1.0.1",
"vimeo/psalm": "^4.27.0"
"vimeo/psalm": "^4.28"
},
"conflict": {
"laminas/laminas-validator": "<2.10.1",
Expand Down
Loading

0 comments on commit 41cff2f

Please sign in to comment.