Skip to content

Commit

Permalink
test with symfony 7
Browse files Browse the repository at this point in the history
  • Loading branch information
dbu committed Dec 2, 2023
1 parent da105b4 commit 747c400
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 7 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/test-application.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,8 @@ jobs:

matrix:
include:
- php-version: '7.4'
- php-version: '8.0'
dependencies: 'lowest'
- php-version: '7.4'
- php-version: '8.0'
- php-version: '8.1'
- php-version: '8.2'
Expand Down
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ Version 2
* Added static typing whereever possible. This should not change anything, but the added strictness
might trigger errors where it was more tolerant for incorrect types before.
* Renamed cli-config.php.dist to cli-config.dist.php and cleaned up to be better documented.
* Dropped support for PHP 7.
* Allow installation with Symfony 7.

Version 1
=========
Expand Down
10 changes: 5 additions & 5 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,22 +15,22 @@
}
],
"require": {
"php": "^7.4 || ^8.0",
"php": "^8.0",
"ext-xml":"*",
"ext-dom": "*",
"ext-curl":"*",
"ext-json":"*",
"phpcr/phpcr": "~2.1.5",
"phpcr/phpcr-utils": "^1.8.0",
"jackalope/jackalope": "^2.0.0-beta2"
"phpcr/phpcr-utils": "^1.8.0 || ^2.0",
"jackalope/jackalope": "^2.0.0-RC1"
},
"provide": {
"jackalope/jackalope-transport": "2.0.0"
},
"require-dev": {
"psr/log": "~1.0",
"phpcr/phpcr-api-tests": "2.1.24",
"symfony/console": "^2.3 || ^3.4 || ^4.3 || ^5.0 || ^6.0",
"phpcr/phpcr-api-tests": "2.1.25",
"symfony/console": "^2.3 || ^3.4 || ^4.3 || ^5.0 || ^6.0 || ^7.0",
"phpunit/phpunit": "^9.5",
"phpstan/phpstan": "^1.9"
},
Expand Down

0 comments on commit 747c400

Please sign in to comment.