Skip to content

Commit

Permalink
Merge pull request #30 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 6b26d2c + 49f2d40 commit c348ba2
Show file tree
Hide file tree
Showing 3 changed files with 9 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 @@ -15,7 +15,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 @@ -35,5 +35,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
7 changes: 6 additions & 1 deletion .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,15 @@ jobs:
strategy:
fail-fast: false
matrix:
php: [8.1, 8.2, 8.3]
php: [8.1, 8.2, 8.3, 8.4]
laravel: [10.*, 11.*]
dependency-version: [prefer-lowest, prefer-stable]
exclude:
- php: 8.4
laravel: 11.*
dependency-version: prefer-lowest
- php: 8.4
laravel: 10.*
- php: 8.1
laravel: 11.*

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": "^8.1|^8.2|^8.3",
"php": "^8.1|^8.2|^8.3|^8.4",
"guzzlehttp/guzzle": "^7.0",
"illuminate/filesystem": "^10.0|^11.0",
"illuminate/http": "^10.0|^11.0",
Expand Down

0 comments on commit c348ba2

Please sign in to comment.