Skip to content

Commit

Permalink
Add PHP 8.3 support, drop PHP < 8.2, add Symfony 7 support (#34)
Browse files Browse the repository at this point in the history
  • Loading branch information
Slamdunk committed Nov 29, 2023
1 parent d7f3ca9 commit 46af52c
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yaml
Expand Up @@ -16,7 +16,7 @@ jobs:
strategy:
matrix:
php-version:
- "8.1"
- "8.2"

steps:
- uses: "actions/checkout@v4"
Expand All @@ -38,7 +38,7 @@ jobs:
strategy:
matrix:
php-version:
- "8.1"
- "8.2"

steps:
- uses: "actions/checkout@v4"
Expand All @@ -57,7 +57,7 @@ jobs:
strategy:
matrix:
php-version:
- "8.1"
- "8.2"

steps:
- uses: "actions/checkout@v4"
Expand All @@ -76,8 +76,8 @@ jobs:
strategy:
matrix:
php-version:
- "8.1"
- "8.2"
- "8.3"

steps:
- uses: "actions/checkout@v4"
Expand Down
14 changes: 7 additions & 7 deletions composer.json
Expand Up @@ -26,17 +26,17 @@
],
"homepage": "https://github.com/lstrojny/phpunit-dom-assertions",
"require": {
"php": "~8.1.0 || ~8.2.0",
"php": "~8.2.0 || ~8.3.0",
"ext-dom": "*",
"phpunit/phpunit": "^10.3.3",
"symfony/css-selector": "^6.3.2",
"symfony/dom-crawler": "^6.3.4"
"phpunit/phpunit": "^10.4.2",
"symfony/css-selector": "^6.4.0 || ^7.0.0",
"symfony/dom-crawler": "^6.4.0 || ^7.0.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.26.1",
"phpstan/phpstan": "^1.10.33",
"friendsofphp/php-cs-fixer": "^3.40.0",
"phpstan/phpstan": "^1.10.46",
"phpstan/phpstan-deprecation-rules": "^1.1.4",
"phpstan/phpstan-phpunit": "^1.3.14"
"phpstan/phpstan-phpunit": "^1.3.15"
},
"autoload": {
"classmap": [
Expand Down

0 comments on commit 46af52c

Please sign in to comment.