Skip to content

Commit

Permalink
Merge pull request #289 from driehle/drop-php80
Browse files Browse the repository at this point in the history
Drop PHP 8.0
  • Loading branch information
driehle authored Dec 29, 2024
2 parents f127f14 + 7611063 commit 9d1989b
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 14 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/continuous-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,14 +28,13 @@ jobs:
strategy:
matrix:
php-version:
- "8.0"
- "8.1"
- "8.2"
- "8.3"
dependencies:
- "highest"
include:
- php-version: "8.0"
- php-version: "8.1"
dependencies: "lowest"

services:
Expand Down
20 changes: 10 additions & 10 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
],
"homepage": "https://www.doctrine-project.org/",
"require": {
"php": "~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0",
"php": "~8.1.0 || ~8.2.0 || ~8.3.0",
"ext-mongodb": "*",
"doctrine/cache": "^1.11 || ^2.0",
"doctrine/doctrine-laminas-hydrator": "^3.3.0",
Expand All @@ -62,15 +62,15 @@
},
"require-dev": {
"doctrine/coding-standard": "^12.0.0",
"doctrine/persistence": "^2.5.7 || ^3.2.0",
"jangregor/phpstan-prophecy": "^1.0.0",
"laminas/laminas-developer-tools": "^2.8.0",
"laminas/laminas-hydrator": "^4.13.0",
"laminas/laminas-session": "^2.16.0",
"phpspec/prophecy-phpunit": "^2.0.2",
"phpstan/phpstan": "^1.10.26",
"phpunit/phpunit": "^9.6.10",
"vimeo/psalm": "^5.14.1"
"doctrine/persistence": "^2.5.7 || ^3.4.0",
"jangregor/phpstan-prophecy": "^1.0.2",
"laminas/laminas-developer-tools": "^2.9.0",
"laminas/laminas-hydrator": "^4.16.0",
"laminas/laminas-session": "^2.22.1",
"phpspec/prophecy-phpunit": "^2.3.0",
"phpstan/phpstan": "^1.12.13",
"phpunit/phpunit": "^9.6.22",
"vimeo/psalm": "^5.26.1"
},
"suggest": {
"laminas/laminas-developer-tools": "laminas-developer-tools if you want to profile operations executed by the ODM during development",
Expand Down
4 changes: 2 additions & 2 deletions phpcs.xml.dist
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@
<arg name="cache" value=".phpcs.cache"/>
<arg name="colors"/>

<!-- set minimal required PHP version (8.0) -->
<config name="php_version" value="80000"/>
<!-- set minimal required PHP version (8.1) -->
<config name="php_version" value="80100"/>

<!-- Include full Doctrine Coding Standard -->
<rule ref="Doctrine">
Expand Down

0 comments on commit 9d1989b

Please sign in to comment.