Skip to content

Commit 28940f8

Browse files
committed
bump php to 8.3
1 parent 35efff1 commit 28940f8

File tree

4 files changed

+265
-390
lines changed

4 files changed

+265
-390
lines changed

.github/workflows/php.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616

1717
strategy:
1818
matrix:
19-
php-versions: [ '8.2', '8.3', '8.4' ]
19+
php-versions: [ '8.3', '8.4' ]
2020
dependencies: [ 'locked', 'latest' ]
2121

2222
steps:

composer-dependency-analyser.php

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

55
use ShipMonk\ComposerDependencyAnalyser\Config\Configuration;
6-
use ShipMonk\ComposerDependencyAnalyser\Config\ErrorType;
76

8-
$config = new Configuration();
9-
10-
return $config
7+
return (new Configuration())
118
// Adjusting scanned paths
129
->addPathToScan(__DIR__ . '/tests', true);

composer.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
}
3535
],
3636
"require": {
37-
"php": "^8.2",
37+
"php": "^8.3",
3838

3939
"symfony/framework-bundle": "^6.4 || ^7.0",
4040
"symfony/dependency-injection": "^6.4 || ^7.0",
@@ -49,7 +49,7 @@
4949

5050
"doctrine/doctrine-bundle": "^2.13",
5151
"doctrine/collections": "^2.2",
52-
"doctrine/persistence": "^3.4",
52+
"doctrine/persistence": "^3.4 || ^4.0",
5353
"doctrine/orm": "^2.20 || ^3.3",
5454
"doctrine/dbal": "^3.9 || ^4.2",
5555

@@ -69,7 +69,7 @@
6969
"phpstan/phpstan-strict-rules": "^2.0",
7070
"phpstan/phpstan-symfony": "^2.0",
7171
"phpstan/phpstan-doctrine": "^2.0",
72-
"phpunit/phpunit": "^11.5",
72+
"phpunit/phpunit": "^12.0",
7373
"symfony/var-dumper": "^7.2",
7474
"symfony/clock": "^7.2"
7575
},

0 commit comments

Comments
 (0)