Skip to content

Commit e7272af

Browse files
committed
update to latest dependencies
1 parent 3d8988c commit e7272af

File tree

9 files changed

+1753
-1355
lines changed

9 files changed

+1753
-1355
lines changed

.github/workflows/php.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515

1616
strategy:
1717
matrix:
18-
php-versions: [ '8.1' ]
18+
php-versions: [ '8.2', '8.3' ]
1919

2020
steps:
2121
- name: Checkout Repository
@@ -25,7 +25,6 @@ jobs:
2525
uses: shivammathur/setup-php@v2
2626
with:
2727
php-version: ${{ matrix.php-versions }}
28-
coverage: none
2928

3029
- name: Get composer cache directory
3130
id: composer-cache

composer-unused.php

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,7 @@
33
declare(strict_types=1);
44

55
use ComposerUnused\ComposerUnused\Configuration\Configuration;
6-
use ComposerUnused\ComposerUnused\Configuration\NamedFilter;
76

87
return static function (Configuration $config): Configuration {
9-
return $config
10-
->addNamedFilter(NamedFilter::fromString('ext-session'));
8+
return $config;
119
};

composer.json

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -29,30 +29,30 @@
2929
}
3030
],
3131
"require": {
32-
"php": "^8.1",
32+
"php": "^8.2",
3333
"ext-session": "*",
3434

35-
"symfony/config": "^5.4|^6.0",
36-
"symfony/http-kernel": "^5.4|^6.0",
37-
"symfony/dependency-injection": "^5.4|^6.0",
35+
"symfony/config": "^5.4 || ^6.4 || ^7.0 ",
36+
"symfony/http-kernel": "^5.4 || ^6.4 || ^7.0 ",
37+
"symfony/dependency-injection": "^5.4 || ^6.4 || ^7.0 ",
3838

39-
"doctrine/dbal": "^2.10|^3.0",
40-
"doctrine/common": "^2.13|^3.0",
41-
"doctrine/persistence": "^2.0|^3.0",
39+
"doctrine/dbal": "^3.0",
40+
"doctrine/common": "^3.0",
41+
"doctrine/persistence": "^3.0",
4242
"doctrine/orm": "^2.7",
4343
"nesbot/carbon": "^2.41"
4444
},
4545
"require-dev":{
46-
"doctrine/coding-standard": "^9.0",
46+
"doctrine/coding-standard": "^12.0",
4747
"roave/security-advisories": "dev-master",
48-
"squizlabs/php_codesniffer": "^3.6",
49-
"phpstan/phpstan": "^1.7",
48+
"squizlabs/php_codesniffer": "^3.7",
49+
"phpstan/phpstan": "^1.8",
5050
"phpstan/phpstan-deprecation-rules": "^1.0",
5151
"phpstan/phpstan-phpunit": "^1.1",
52-
"phpstan/phpstan-strict-rules": "^1.2",
53-
"maglnet/composer-require-checker": "^4.0",
54-
"phpunit/phpunit": "^9.5",
55-
"symfony/var-dumper": "^6.1",
52+
"phpstan/phpstan-strict-rules": "^1.3",
53+
"maglnet/composer-require-checker": "^4.7",
54+
"phpunit/phpunit": "^10.5",
55+
"symfony/var-dumper": "^7.0",
5656
"dg/bypass-finals": "^1.3",
5757
"icanhazstring/composer-unused": "^0.8"
5858
},
@@ -87,7 +87,7 @@
8787
},
8888
"extra": {
8989
"branch-alias": {
90-
"dev-master": "5.0-dev"
90+
"dev-master": "6.0-dev"
9191
}
9292
},
9393
"minimum-stability": "dev",

0 commit comments

Comments
 (0)