Skip to content

Commit 9a5e908

Browse files
authored
Merge pull request #80 from vladsolntsev/chore/add-php-8.4-ci
chore(ci): add php 8.4
2 parents 12e6a38 + 187ade1 commit 9a5e908

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

.github/workflows/github-actions.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
runs-on: ubuntu-latest
1212
strategy:
1313
matrix:
14-
php: [ '8.1', '8.2', '8.3' ]
14+
php: [ '8.1', '8.2', '8.3', '8.4' ]
1515
steps:
1616
- uses: actions/checkout@v2
1717
- name: Setup PHP with tools

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ master
1212
* Updated phpunit/phpunit to 10.5
1313
* Updated symfony/var-dumper to 6.4
1414
* Added empty() to the list of banned functions
15+
* Added PHP 8.4 to the CI run
1516

1617
v3.0.0
1718
------

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ app-composer-validate: ## to validate composer config
1111
composer normalize --dry-run
1212

1313
app-cs-check: ## to show files that need to be fixed
14-
vendor/bin/php-cs-fixer fix --dry-run --diff --verbose
14+
PHP_CS_FIXER_IGNORE_ENV=1 vendor/bin/php-cs-fixer fix --dry-run --diff --verbose
1515

1616
app-cs-fix: ## to fix files that need to be fixed
1717
vendor/bin/php-cs-fixer fix --verbose

0 commit comments

Comments
 (0)