Skip to content

Commit 375f241

Browse files
authored
Merge pull request #34 from nextapps-be/nextapps-be/add_php_8.3_support
add support for php 8.3
2 parents 00e504b + ef2e3c1 commit 375f241

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/run-linting.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
- name: Setup PHP
1919
uses: shivammathur/setup-php@v2
2020
with:
21-
php-version: 8.2
21+
php-version: 8.3
2222

2323
- name: Get Composer cache cirectory
2424
id: composer-cache
@@ -39,5 +39,5 @@ jobs:
3939
4040
- name: Execute linting
4141
run: |
42-
PHP_CS_FIXER_IGNORE_ENV=1 vendor/bin/php-cs-fixer fix --dry-run
42+
vendor/bin/php-cs-fixer fix --dry-run
4343
vendor/bin/phpcs --colors --report-full

.github/workflows/run-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
strategy:
1111
fail-fast: false
1212
matrix:
13-
php: [8.1, 8.2]
13+
php: [8.1, 8.2, 8.3]
1414
laravel: [10.*]
1515
dependency-version: [prefer-lowest, prefer-stable]
1616

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
}
2929
],
3030
"require": {
31-
"php": "^8.1|^8.2",
31+
"php": "^8.1|^8.2|^8.3",
3232
"illuminate/database": "^7.0|^8.0|^9.0|^10.0",
3333
"illuminate/notifications": "^7.0|^8.0|^9.0|^10.0",
3434
"illuminate/support": "^7.0|^8.0|^9.0|^10.0"

0 commit comments

Comments
 (0)