Skip to content
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,14 @@ jobs:
VUFIND_LOCAL_DIR: $GITHUB_WORKSPACE/local
strategy:
matrix:
php-version: ['8.1', '8.2', '8.3']
php-version: ['8.2', '8.3', '8.4']
include:
- php-version: 8.1
phing_tasks: "phpunitfast"
- php-version: 8.2
phing_tasks: "phpunitfast"
- php-version: 8.3
phing_tasks: "phpunitfast phpcs-console php-cs-fixer-dryrun phpstan-console rector-console"
- php-version: 8.4
phing_tasks: "phpunitfast"
Comment thread
demiankatz marked this conversation as resolved.

steps:
- name: Setup PHP
Expand Down
6 changes: 3 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,18 +19,18 @@
},
"config": {
"platform": {
"php": "8.1"
"php": "8.2"
}
},
"require": {
"php": ">=8.1"
"php": ">=8.2"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "3.89.2",
"guzzlehttp/guzzle": "^7.8.1",
"phpmd/phpmd": "2.15.0",
"phpstan/phpstan": "2.1.32",
"phpunit/phpunit": "10.5.36",
"phpunit/phpunit": "11.5.43",
Comment thread
demiankatz marked this conversation as resolved.
"phing/phing": "3.1.0",
"rector/rector": "2.2.7",
"squizlabs/php_codesniffer": "4.0.1"
Expand Down