-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
52 lines (52 loc) · 1.7 KB
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"name": "geekcell/ddd-bundle",
"description": "A bundle for pragmatic domain driven design in Symfony.",
"type": "symfony-bundle",
"version": "1.4.3",
"license": "MIT",
"authors": [
{
"name": "Pascal Cremer",
"email": "[email protected]"
}
],
"require": {
"doctrine/orm": "^2.20 | ^3.0",
"geekcell/container-facade": "^1.0",
"geekcell/ddd": "^1.6.0",
"symfony/config": "^6.0 | ^7.0",
"symfony/dependency-injection": "^6.0 | ^7.0",
"symfony/event-dispatcher": "^6.0 | ^7.0",
"symfony/http-kernel": "^6.0 | ^7.0",
"symfony/messenger": "^6.0 | ^7.0",
"symfony/string": "^6.0 | ^7.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.68",
"mockery/mockery": "^1.6",
"phpstan/phpstan": "^2.0",
"phpstan/phpstan-mockery": "^2.0",
"phpstan/phpstan-beberlei-assert": "^2.0",
"phpunit/phpunit": "^11.0 | ^12.0",
"symfony/framework-bundle": "^6.0 | ^7.0",
"symfony/yaml": "^6.0 | ^7.0",
"symfony/filesystem": "^6.0 | ^7.0",
"symfony/maker-bundle": "^1.62"
},
"autoload": {
"psr-4": {
"GeekCell\\DddBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"GeekCell\\DddBundle\\Tests\\": "tests/"
}
},
"scripts": {
"gc:tests": "phpunit --testdox --colors=always",
"gc:cs-lint": "php-cs-fixer fix --config .php-cs-fixer.php --diff -vvv --dry-run",
"gc:cs-fix": "php-cs-fixer fix --config .php-cs-fixer.php -vvv || true",
"gc:phpstan": "phpstan analyse --memory-limit=2G --no-progress --level=8"
}
}