Skip to content

Commit b4ec7c5

Browse files
authored
Merge pull request #4 from technically-php/support/php-8.4
Support - Add PHP 8.3 & 8.4 to the test matrix
2 parents 53eeeeb + d2c0c12 commit b4ec7c5

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ jobs:
66
runs-on: ubuntu-latest
77
strategy:
88
matrix:
9-
php: [ '7.1', '7.2', '7.3', '7.4', '8.0', '8.1', '8.2' ]
9+
php: [ '7.1', '7.2', '7.3', '7.4', '8.0', '8.1', '8.2', '8.3', '8.4' ]
1010

1111
steps:
1212
- uses: actions/checkout@master

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,6 @@ composer.lock: composer.json composer.phar
1111

1212
composer.phar:
1313
php -r "copy('https://getcomposer.org/installer', 'composer-setup.php');"
14-
php -r "if (hash_file('sha384', 'composer-setup.php') === '55ce33d7678c5a611085589f1f3ddf8b3c52d662cd01d4ba75c0ee0459970c2200a51f492d557530c71c15d8dba01eae') { echo 'Installer verified'; } else { echo 'Installer corrupt'; unlink('composer-setup.php'); } echo PHP_EOL;"
14+
php -r "if (hash_file('sha384', 'composer-setup.php') === 'dac665fdc30fdd8ec78b38b9800061b4150413ff2e3b6f88543c636f7cd84f6db9189d43a81e5503cda447da73c7e5b6') { echo 'Installer verified'.PHP_EOL; } else { echo 'Installer corrupt'.PHP_EOL; unlink('composer-setup.php'); exit(1); }"
1515
php composer-setup.php
1616
php -r "unlink('composer-setup.php');"

0 commit comments

Comments
 (0)