Skip to content

Commit

Permalink
Merge pull request #14 from wotzebra/php84-support
Browse files Browse the repository at this point in the history
Add PHP 8.4 support
  • Loading branch information
gdebrauwer authored Dec 12, 2024
2 parents 67ed9dd + ae89ccf commit 9f22826
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/run-linting.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: 8.3
php-version: 8.4

- name: Get Composer cache cirectory
id: composer-cache
Expand All @@ -39,5 +39,5 @@ jobs:
- name: Execute linting
run: |
vendor/bin/php-cs-fixer fix --dry-run
PHP_CS_FIXER_IGNORE_ENV=1 vendor/bin/php-cs-fixer fix --dry-run
vendor/bin/phpcs --colors --report-full
2 changes: 1 addition & 1 deletion .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
strategy:
fail-fast: false
matrix:
php: [7.3, 7.4, 8.0, 8.1, 8.2, 8.3]
php: [7.3, 7.4, 8.0, 8.1, 8.2, 8.3, 8.4]
dependency-version: [prefer-lowest, prefer-stable]

name: PHP ${{ matrix.php }} - ${{ matrix.dependency-version }}
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
}
],
"require": {
"php": "^7.3|^7.4|^8.0|^8.1|^8.2|^8.3"
"php": "^7.3|^7.4|^8.0|^8.1|^8.2|^8.3|^8.4"
},
"require-dev": {
"adamwojs/php-cs-fixer-phpdoc-force-fqcn": "^2.0",
Expand Down

0 comments on commit 9f22826

Please sign in to comment.