Skip to content

Commit

Permalink
Merge pull request #101 from gsteel/drop-php-8.0-upgrade-phpunit
Browse files Browse the repository at this point in the history
Remove support for PHP 8.0, Upgrade PHPUnit to 10.x
  • Loading branch information
Ocramius committed May 16, 2023
2 parents d68ed25 + 073ec6c commit 2b7e6b2
Show file tree
Hide file tree
Showing 69 changed files with 1,725 additions and 1,901 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/.phpunit.result.cache
/.phpunit.cache
/.phpcs-cache
/.psalm-cache
/docs/html/
Expand Down
3 changes: 0 additions & 3 deletions .laminas-ci.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,2 @@
{
"ignore_php_platform_requirements": {
"8.2": true
}
}
6 changes: 3 additions & 3 deletions .laminas-ci/pre-install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@ pecl channel-update pecl.php.net
pecl install lzf || exit 1
echo "extension=lzf.so" >> /etc/php/"${PHP_VERSION}"/cli/php.ini

# Install rar
pecl install rar
echo "extension=rar.so" >> /etc/php/"${PHP_VERSION}"/cli/php.ini
# Install rar - May 2023 - Rar no longer compiles on 8.1 or 8.2
#pecl install rar
#echo "extension=rar.so" >> /etc/php/"${PHP_VERSION}"/cli/php.ini

# Install snappy
git clone --recursive --depth=1 https://github.com/kjdev/php-ext-snappy.git
Expand Down
14 changes: 7 additions & 7 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": "8.0.99"
"php": "8.1.99"
}
},
"extra": {
Expand All @@ -32,20 +32,20 @@
}
},
"require": {
"php": "~8.0.0 || ~8.1.0 || ~8.2.0",
"php": "~8.1.0 || ~8.2.0",
"ext-mbstring": "*",
"laminas/laminas-servicemanager": "^3.14.0",
"laminas/laminas-servicemanager": "^3.21.0",
"laminas/laminas-stdlib": "^3.13.0"
},
"require-dev": {
"laminas/laminas-coding-standard": "~2.5.0",
"laminas/laminas-crypt": "^3.9",
"laminas/laminas-crypt": "^3.10",
"laminas/laminas-uri": "^2.10",
"pear/archive_tar": "^1.4.14",
"phpunit/phpunit": "^9.5.27",
"phpunit/phpunit": "^10.1.3",
"psalm/plugin-phpunit": "^0.18.4",
"psr/http-factory": "^1.0.1",
"vimeo/psalm": "^5.3"
"psr/http-factory": "^1.0.2",
"vimeo/psalm": "^5.11"
},
"conflict": {
"laminas/laminas-validator": "<2.10.1",
Expand Down
Loading

0 comments on commit 2b7e6b2

Please sign in to comment.