Skip to content

Commit ef64a2a

Browse files
author
janvt
authored
Merge pull request #46 from Bl00D4NGEL/main
deps: Add support for symfony 7
2 parents 6312287 + eab817a commit ef64a2a

22 files changed

+1084
-877
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,4 @@
33

44
/.php-cs-fixer.cache
55
/composer.phar
6+
/.idea

composer.json

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,12 @@
1414
"doctrine/orm": "^2.12",
1515
"geekcell/container-facade": "^1.0",
1616
"geekcell/ddd": "^1.1.0",
17-
"symfony/config": "^6.0",
18-
"symfony/dependency-injection": "^6.0",
19-
"symfony/event-dispatcher": "^6.0",
20-
"symfony/http-kernel": "^6.0",
21-
"symfony/messenger": "^6.0",
22-
"symfony/string": "^6.0"
17+
"symfony/config": "^6.0 | ^7.0",
18+
"symfony/dependency-injection": "^6.0 | ^7.0",
19+
"symfony/event-dispatcher": "^6.0 | ^7.0",
20+
"symfony/http-kernel": "^6.0 | ^7.0",
21+
"symfony/messenger": "^6.0 | ^7.0",
22+
"symfony/string": "^6.0 | ^7.0"
2323
},
2424
"require-dev": {
2525
"friendsofphp/php-cs-fixer": "^3.13",
@@ -28,9 +28,10 @@
2828
"phpstan/phpstan-mockery": "^1.1",
2929
"phpunit/phpunit": "^9.5",
3030
"symfony/framework-bundle": "^6.0",
31-
"symfony/yaml": "^6.0",
32-
"symfony/filesystem": "^6.0",
33-
"symfony/maker-bundle": "^1.48"
31+
"symfony/yaml": "^6.0 | ^7.0",
32+
"symfony/filesystem": "^6.0 | ^7.0",
33+
"symfony/maker-bundle": "^1.48",
34+
"phpstan/phpstan-beberlei-assert": "^1.1"
3435
},
3536
"autoload": {
3637
"psr-4": {

0 commit comments

Comments
 (0)