Skip to content

Commit

Permalink
Merge pull request #34 from nextapps-be/nextapps-be/add_php_8.3_support
Browse files Browse the repository at this point in the history
add support for php 8.3
  • Loading branch information
yinx authored Dec 15, 2023
2 parents 00e504b + ef2e3c1 commit 375f241
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.2
php-version: 8.3

- name: Get Composer cache cirectory
id: composer-cache
Expand All @@ -39,5 +39,5 @@ jobs:
- name: Execute linting
run: |
PHP_CS_FIXER_IGNORE_ENV=1 vendor/bin/php-cs-fixer fix --dry-run
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: [8.1, 8.2]
php: [8.1, 8.2, 8.3]
laravel: [10.*]
dependency-version: [prefer-lowest, prefer-stable]

Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
}
],
"require": {
"php": "^8.1|^8.2",
"php": "^8.1|^8.2|^8.3",
"illuminate/database": "^7.0|^8.0|^9.0|^10.0",
"illuminate/notifications": "^7.0|^8.0|^9.0|^10.0",
"illuminate/support": "^7.0|^8.0|^9.0|^10.0"
Expand Down

0 comments on commit 375f241

Please sign in to comment.