Skip to content

Commit

Permalink
Merge pull request #11 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 9cb8e54 + adf7795 commit 3b4731b
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.2, 8.1, 8.0, 7.4, 7.3]
php: [7.3, 7.4, 8.0, 8.1, 8.2, 8.3]
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 @@ -25,7 +25,7 @@
}
],
"require": {
"php": "^7.3|^7.4|^8.0|^8.1|^8.2"
"php": "^7.3|^7.4|^8.0|^8.1|^8.2|^8.3"
},
"require-dev": {
"adamwojs/php-cs-fixer-phpdoc-force-fqcn": "^2.0",
Expand Down

0 comments on commit 3b4731b

Please sign in to comment.