Skip to content

Commit 4f35def

Browse files
SonataCIgithub-actions[bot]
authored andcommitted
DevKit updates
1 parent ca98668 commit 4f35def

5 files changed

Lines changed: 15 additions & 14 deletions

File tree

.github/workflows/lint.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
- name: Install PHP with extensions
3030
uses: shivammathur/setup-php@v2
3131
with:
32-
php-version: '8.3'
32+
php-version: '8.4'
3333
coverage: none
3434
tools: composer:v2
3535

@@ -53,7 +53,7 @@ jobs:
5353
- name: Install PHP with extensions
5454
uses: shivammathur/setup-php@v2
5555
with:
56-
php-version: '8.3'
56+
php-version: '8.4'
5757
coverage: none
5858
tools: composer:v2, composer-normalize:2
5959
env:

.github/workflows/qa.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
- name: Install PHP with extensions
3030
uses: shivammathur/setup-php@v2
3131
with:
32-
php-version: '8.3'
32+
php-version: '8.4'
3333
coverage: none
3434
tools: composer:v2
3535

@@ -53,7 +53,7 @@ jobs:
5353
- name: Install PHP with extensions
5454
uses: shivammathur/setup-php@v2
5555
with:
56-
php-version: '8.3'
56+
php-version: '8.4'
5757
coverage: none
5858
tools: composer:v2
5959

@@ -63,7 +63,7 @@ jobs:
6363
dependency-versions: highest
6464

6565
- name: Psalm
66-
run: vendor/bin/psalm --no-progress --show-info=false --stats --output-format=github --threads=$(nproc) --shepherd --php-version=8.3
66+
run: vendor/bin/psalm --no-progress --show-info=false --stats --output-format=github --threads=$(nproc) --shepherd --php-version=8.4
6767

6868
rector:
6969
name: Rector
@@ -77,7 +77,7 @@ jobs:
7777
- name: Install PHP with extensions
7878
uses: shivammathur/setup-php@v2
7979
with:
80-
php-version: '8.3'
80+
php-version: '8.4'
8181
coverage: none
8282
tools: composer:v2
8383

.github/workflows/test-platforms.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
strategy:
3838
matrix:
3939
php-version:
40-
- '8.3'
40+
- '8.4'
4141
mysql-version:
4242
- '5.7'
4343
- '8.0'
@@ -90,7 +90,7 @@ jobs:
9090
strategy:
9191
matrix:
9292
php-version:
93-
- '8.3'
93+
- '8.4'
9494
postgres-version:
9595
- '13'
9696
- '14'

.github/workflows/test.yaml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ jobs:
3333
- '8.1'
3434
- '8.2'
3535
- '8.3'
36+
- '8.4'
3637
dependencies: [highest]
3738
allowed-to-fail: [false]
3839
symfony-require: ['']
@@ -42,17 +43,17 @@ jobs:
4243
dependencies: lowest
4344
allowed-to-fail: false
4445
variant: normal
45-
- php-version: '8.3'
46+
- php-version: '8.4'
4647
dependencies: highest
4748
allowed-to-fail: false
4849
symfony-require: 6.4.*
4950
variant: symfony/symfony:"6.4.*"
50-
- php-version: '8.3'
51+
- php-version: '8.4'
5152
dependencies: highest
5253
allowed-to-fail: false
5354
symfony-require: 7.1.*
5455
variant: symfony/symfony:"7.1.*"
55-
- php-version: '8.3'
56+
- php-version: '8.4'
5657
dependencies: highest
5758
allowed-to-fail: false
5859
symfony-require: 7.2.*

Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,14 +44,14 @@ lint-xliff:
4444
.PHONY: lint-xliff
4545

4646
lint-php:
47-
vendor/bin/php-cs-fixer fix --ansi --verbose --diff --dry-run
47+
PHP_CS_FIXER_IGNORE_ENV=1 vendor/bin/php-cs-fixer fix --ansi --verbose --diff --dry-run
4848
.PHONY: lint-php
4949

5050
cs-fix: cs-fix-php cs-fix-xml cs-fix-xliff cs-fix-composer
5151
.PHONY: cs-fix
5252

5353
cs-fix-php:
54-
vendor/bin/php-cs-fixer fix --verbose
54+
PHP_CS_FIXER_IGNORE_ENV=1 vendor/bin/php-cs-fixer fix --verbose
5555
.PHONY: cs-fix-php
5656

5757
cs-fix-xml:
@@ -94,7 +94,7 @@ phpstan:
9494
.PHONY: phpstan
9595

9696
psalm:
97-
vendor/bin/psalm --php-version=8.3
97+
vendor/bin/psalm --php-version=8.4
9898
.PHONY: psalm
9999

100100
rector:

0 commit comments

Comments
 (0)