Skip to content

Commit e4b44ea

Browse files
authored
Merge pull request #25 from patchlevel/upgrade-dependencies
upgrade symfony 6 & php 8.1
2 parents c217c43 + 007385f commit e4b44ea

File tree

6 files changed

+262
-480
lines changed

6 files changed

+262
-480
lines changed

.github/workflows/coding-standard.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
dependencies:
2020
- "locked"
2121
php-version:
22-
- "7.4"
22+
- "8.0"
2323
operating-system:
2424
- "ubuntu-latest"
2525

.github/workflows/phpstan.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
dependencies:
2020
- "locked"
2121
php-version:
22-
- "7.4"
22+
- "8.0"
2323
operating-system:
2424
- "ubuntu-latest"
2525

.github/workflows/phpunit.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,17 +20,17 @@ jobs:
2020
- "lowest"
2121
- "highest"
2222
php-version:
23-
- "7.4"
2423
- "8.0"
24+
- "8.1"
2525
operating-system:
2626
- "ubuntu-latest"
2727
- "windows-latest"
2828
include:
2929
- dependencies: "locked"
30-
php-version: "7.4"
30+
php-version: "8.0"
3131
operating-system: "ubuntu-latest"
3232
- dependencies: "locked"
33-
php-version: "7.4"
33+
php-version: "8.0"
3434
operating-system: "windows-latest"
3535
steps:
3636
- name: "Checkout"

.github/workflows/psalm.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
dependencies:
2020
- "locked"
2121
php-version:
22-
- "7.4"
22+
- "8.0"
2323
operating-system:
2424
- "ubuntu-latest"
2525

composer.json

Lines changed: 9 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -18,25 +18,24 @@
1818
}
1919
],
2020
"require": {
21-
"php": "~7.4.0|~8.0.0",
22-
"ext-json": "~7.4.0|~8.0.0",
23-
"patchlevel/event-sourcing": "^1.0.1",
24-
"symfony/dependency-injection": "^4.4.18|^5.1.10",
25-
"symfony/http-kernel": "^4.4.18|^5.1.10",
26-
"symfony/config": "^4.4.18|^5.1.10",
27-
"symfony/console": "^4.4.18|^5.1.10"
21+
"php": "~8.0.0|~8.1.0",
22+
"patchlevel/event-sourcing": "^1.1.0",
23+
"symfony/dependency-injection": "^4.4.34|5.4.0|^6.0.0",
24+
"symfony/http-kernel": "^4.4.34|5.4.0|^6.0.0",
25+
"symfony/config": "^4.4.34|5.4.0|^6.0.0",
26+
"symfony/console": "^4.4.34|5.4.0|^6.0.0"
2827
},
2928
"require-dev": {
30-
"ext-pdo_sqlite": "~7.4.0|~8.0.0",
29+
"ext-pdo_sqlite": "~8.0.0|~8.1.0",
3130
"doctrine/migrations": "^3.3.2",
3231
"infection/infection": "^0.21.5",
3332
"patchlevel/coding-standard": "^1.1.1",
3433
"phpspec/prophecy-phpunit": "^2.0.1",
3534
"phpstan/phpstan": "^1.2.0",
3635
"phpunit/phpunit": "^9.5.10",
3736
"roave/security-advisories": "dev-master",
38-
"symfony/messenger": "^4.4.18|^5.1.10",
39-
"symfony/var-dumper": "^5.3.11",
37+
"symfony/messenger": "^4.4.34|5.4.0|^6.0.0",
38+
"symfony/var-dumper": "^5.4.0|^6.0.0",
4039
"vimeo/psalm": "^4.13.1"
4140
},
4241
"suggest": {

0 commit comments

Comments
 (0)