Skip to content

Commit

Permalink
Add PHP 8.4
Browse files Browse the repository at this point in the history
  • Loading branch information
jnvsor committed Nov 10, 2023
1 parent 8db7fb9 commit 6a451f2
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
node-version: 18
- uses: shivammathur/setup-php@v2
with:
php-version: 8.1
php-version: 8.3
- uses: actions/cache@v2
id: vendor-caches
with:
Expand All @@ -37,7 +37,7 @@ jobs:
node-version: 18
- uses: shivammathur/setup-php@v2
with:
php-version: 8.2
php-version: 8.3
ini-values: 'phar.readonly=Off'
- uses: actions/cache@v2
id: vendor-caches
Expand All @@ -62,7 +62,7 @@ jobs:
node-version: 18
- uses: shivammathur/setup-php@v2
with:
php-version: 8.2
php-version: 8.3
- uses: actions/cache@v2
id: vendor-caches
with:
Expand Down Expand Up @@ -98,7 +98,7 @@ jobs:
node-version: 18
- uses: shivammathur/setup-php@v2
with:
php-version: 8.2
php-version: 8.3
coverage: ${{ matrix.php-coverage }}
- uses: actions/cache@v2
id: vendor-caches
Expand Down Expand Up @@ -129,6 +129,7 @@ jobs:
- 8.1
- 8.2
- 8.3
- 8.4
phar:
- "phar "
- ""
Expand Down
1 change: 1 addition & 0 deletions init.php
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@
\define('KINT_PHP81', \version_compare(PHP_VERSION, '8.1') >= 0);
\define('KINT_PHP82', \version_compare(PHP_VERSION, '8.2') >= 0);
\define('KINT_PHP83', \version_compare(PHP_VERSION, '8.3') >= 0);
\define('KINT_PHP84', \version_compare(PHP_VERSION, '8.4') >= 0);

// Dynamic default settings
if (false !== \ini_get('xdebug.file_link_format')) {
Expand Down

0 comments on commit 6a451f2

Please sign in to comment.