Skip to content

Commit d0ff54b

Browse files
authored
Merge pull request #241 from norkunas/devdeps
Bump dev deps
2 parents c02b9c4 + be5c1ef commit d0ff54b

File tree

3 files changed

+15
-14
lines changed

3 files changed

+15
-14
lines changed

.github/workflows/ci.yml

+9-9
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,10 @@ jobs:
2525
uses: shivammathur/setup-php@v2
2626
with:
2727
coverage: none
28-
php-version: 8.2
28+
php-version: 8.3
2929

3030
- name: "Install Dependencies with Composer"
31-
uses: ramsey/composer-install@v2
31+
uses: ramsey/composer-install@v3
3232

3333
- name: "Run PHPStan"
3434
run: |
@@ -46,11 +46,11 @@ jobs:
4646
uses: shivammathur/setup-php@v2
4747
with:
4848
coverage: none
49-
php-version: 8.1
49+
php-version: 8.3
5050
tools: cs2pr
5151

5252
- name: "Install Dependencies with Composer"
53-
uses: ramsey/composer-install@v2
53+
uses: ramsey/composer-install@v3
5454

5555
- name: "Run PHP-CS-Fixer"
5656
run: vendor/bin/php-cs-fixer fix --dry-run --format=checkstyle | cs2pr
@@ -81,15 +81,15 @@ jobs:
8181
tools: flex
8282

8383
- name: "Install Dependencies with Composer"
84-
uses: "ramsey/composer-install@v2"
84+
uses: ramsey/composer-install@v3
8585
env:
8686
SYMFONY_REQUIRE: ${{ matrix.symfony-version }}
8787
with:
8888
composer-options: "--optimize-autoloader"
8989

9090
- name: "Run tests with PHPUnit"
91-
env:
92-
SYMFONY_DEPRECATIONS_HELPER: 'max[self]=2'
91+
# env:
92+
# SYMFONY_DEPRECATIONS_HELPER: 'max[self]=2'
9393
run: vendor/bin/simple-phpunit
9494

9595
codecov:
@@ -103,10 +103,10 @@ jobs:
103103
uses: shivammathur/setup-php@v2
104104
with:
105105
coverage: pcov
106-
php-version: 8.2
106+
php-version: 8.3
107107

108108
- name: "Install Dependencies with Composer"
109-
uses: ramsey/composer-install@v2
109+
uses: ramsey/composer-install@v3
110110

111111
- name: "Run tests with PHPUnit and collect coverage"
112112
run: php -dpcov.enabled=1 -dpcov.directory=. -dpcov.exclude="~vendor~" vendor/bin/simple-phpunit --colors=always --coverage-text -vvv

.php-cs-fixer.dist.php

+1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
]);
99

1010
return (new PhpCsFixer\Config())
11+
->setParallelConfig(PhpCsFixer\Runner\Parallel\ParallelConfigFactory::detect())
1112
->setRiskyAllowed(true)
1213
->setRules([
1314
'@Symfony' => true,

composer.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,11 @@
1919
},
2020
"require-dev": {
2121
"mikey179/vfsstream": "^1.6.11",
22-
"php-cs-fixer/shim": "^3.49",
23-
"phpstan/phpstan": "^1.10.57",
24-
"phpstan/phpstan-phpunit": "^1.3.15",
25-
"phpstan/phpstan-strict-rules": "^1.5.2",
26-
"symfony/phpunit-bridge": "^6.4.3"
22+
"php-cs-fixer/shim": "^3.60",
23+
"phpstan/phpstan": "^1.11.8",
24+
"phpstan/phpstan-phpunit": "^1.4.0",
25+
"phpstan/phpstan-strict-rules": "^1.6.0",
26+
"symfony/phpunit-bridge": "^6.4.10"
2727
},
2828
"autoload": {
2929
"psr-4": { "YoutubeDl\\": "src/" }

0 commit comments

Comments
 (0)