Skip to content

Commit d258d7e

Browse files
authored
refactor: Remove old facade implemention and integrate geekcell/container-facade
* refactor: Remove old facade and integrate geekcell/container-facade. * chore: Remove `beberlei/assert` dependency. * fix: Move `symfony\messenger` dependency to `require` section. * chore: Keep ^6.0 as minimum version for symfony components. refs: #24
1 parent 4a9ba6b commit d258d7e

File tree

18 files changed

+1086
-777
lines changed

18 files changed

+1086
-777
lines changed

.gitignore

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

44
/.php-cs-fixer.cache
55
/composer.phar
6-
/phpunit.xml

composer.json

Lines changed: 14 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -11,15 +11,25 @@
1111
}
1212
],
1313
"require": {
14-
"beberlei/assert": "^3.3",
14+
"doctrine/orm": "^2.12",
15+
"geekcell/container-facade": "^1.0",
1516
"geekcell/ddd": "^1.1.0",
1617
"symfony/config": "^6.0",
1718
"symfony/dependency-injection": "^6.0",
1819
"symfony/event-dispatcher": "^6.0",
1920
"symfony/http-kernel": "^6.0",
2021
"symfony/messenger": "^6.0",
21-
"doctrine/orm": "^2.12",
22-
"symfony/string": "^6.2"
22+
"symfony/string": "^6.0"
23+
},
24+
"require-dev": {
25+
"friendsofphp/php-cs-fixer": "^3.13",
26+
"mockery/mockery": "^1.5",
27+
"phpstan/phpstan": "^1.9",
28+
"phpstan/phpstan-mockery": "^1.1",
29+
"phpunit/phpunit": "^9.5",
30+
"symfony/framework-bundle": "^6.0",
31+
"symfony/yaml": "^6.0",
32+
"symfony/filesystem": "^6.0"
2333
},
2434
"autoload": {
2535
"psr-4": {
@@ -31,17 +41,10 @@
3141
"GeekCell\\DddBundle\\Tests\\": "tests/"
3242
}
3343
},
34-
"require-dev": {
35-
"friendsofphp/php-cs-fixer": "^3.13",
36-
"mockery/mockery": "^1.5",
37-
"phpstan/phpstan": "^1.9",
38-
"phpstan/phpstan-mockery": "^1.1",
39-
"phpunit/phpunit": "^9.5"
40-
},
4144
"scripts": {
4245
"gc:tests": "phpunit --testdox --colors=always",
4346
"gc:cs-lint": "php-cs-fixer fix --config .php-cs-fixer.php --diff -vvv --dry-run",
4447
"gc:cs-fix": "php-cs-fixer fix --config .php-cs-fixer.php -vvv || true",
4548
"gc:phpstan": "phpstan analyse --memory-limit=2G --no-progress --level=8"
4649
}
47-
}
50+
}

0 commit comments

Comments
 (0)