Skip to content

Commit 843dc10

Browse files
committed
DevKit updates
1 parent 1f5e5e8 commit 843dc10

5 files changed

Lines changed: 17 additions & 16 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
extensions: mongodb
@@ -54,7 +54,7 @@ jobs:
5454
- name: Install PHP with extensions
5555
uses: shivammathur/setup-php@v2
5656
with:
57-
php-version: '8.3'
57+
php-version: '8.4'
5858
coverage: none
5959
tools: composer:v2, composer-normalize:2
6060
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
extensions: mongodb
@@ -54,7 +54,7 @@ jobs:
5454
- name: Install PHP with extensions
5555
uses: shivammathur/setup-php@v2
5656
with:
57-
php-version: '8.3'
57+
php-version: '8.4'
5858
coverage: none
5959
tools: composer:v2
6060
extensions: mongodb
@@ -65,7 +65,7 @@ jobs:
6565
dependency-versions: highest
6666

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

7070
rector:
7171
name: Rector
@@ -79,7 +79,7 @@ jobs:
7979
- name: Install PHP with extensions
8080
uses: shivammathur/setup-php@v2
8181
with:
82-
php-version: '8.3'
82+
php-version: '8.4'
8383
coverage: none
8484
tools: composer:v2
8585
extensions: mongodb

.github/workflows/symfony-lint.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

@@ -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

@@ -101,7 +101,7 @@ jobs:
101101
- name: Install PHP with extensions
102102
uses: shivammathur/setup-php@v2
103103
with:
104-
php-version: '8.3'
104+
php-version: '8.4'
105105
coverage: none
106106
tools: composer:v2
107107

.github/workflows/test.yaml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@ jobs:
3939
- '8.1'
4040
- '8.2'
4141
- '8.3'
42+
- '8.4'
4243
dependencies: [highest]
4344
allowed-to-fail: [false]
4445
symfony-require: ['']
@@ -48,17 +49,17 @@ jobs:
4849
dependencies: lowest
4950
allowed-to-fail: false
5051
variant: normal
51-
- php-version: '8.3'
52+
- php-version: '8.4'
5253
dependencies: highest
5354
allowed-to-fail: false
5455
symfony-require: 6.4.*
5556
variant: symfony/symfony:"6.4.*"
56-
- php-version: '8.3'
57+
- php-version: '8.4'
5758
dependencies: highest
5859
allowed-to-fail: false
5960
symfony-require: 7.1.*
6061
variant: symfony/symfony:"7.1.*"
61-
- php-version: '8.3'
62+
- php-version: '8.4'
6263
dependencies: highest
6364
allowed-to-fail: false
6465
symfony-require: 7.2.*

Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ 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
lint-symfony: lint-symfony-container lint-symfony-twig lint-symfony-xliff lint-symfony-yaml
@@ -70,7 +70,7 @@ cs-fix: cs-fix-php cs-fix-xml cs-fix-xliff cs-fix-composer
7070
.PHONY: cs-fix
7171

7272
cs-fix-php:
73-
vendor/bin/php-cs-fixer fix --verbose
73+
PHP_CS_FIXER_IGNORE_ENV=1 vendor/bin/php-cs-fixer fix --verbose
7474
.PHONY: cs-fix-php
7575

7676
cs-fix-xml:
@@ -117,7 +117,7 @@ phpstan:
117117
.PHONY: phpstan
118118

119119
psalm:
120-
vendor/bin/psalm --php-version=8.3
120+
vendor/bin/psalm --php-version=8.4
121121
.PHONY: psalm
122122

123123
rector:

0 commit comments

Comments
 (0)