-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
64 lines (64 loc) · 2.14 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
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "fusonic/ddd-extensions",
"license": "MIT",
"version": "2.0.0",
"description": "Symfony domain-driven design building blocks for usage with Doctrine ORM.",
"type": "library",
"authors": [
{
"name": "Fusonic GmbH",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Fusonic\\DDDExtensions\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Fusonic\\DDDExtensions\\Tests\\": "tests/"
}
},
"require": {
"php": ">=8.2",
"beberlei/assert": "^3.2"
},
"require-dev": {
"doctrine/orm": "^3.2",
"friendsofphp/php-cs-fixer": "^3.64",
"infection/infection": "^0.29",
"nelmio/api-doc-bundle": "^v4.29",
"nikic/php-parser": "^5.1",
"phpstan/phpstan": "^1.12",
"phpstan/phpstan-deprecation-rules": "^1.2",
"phpstan/phpstan-phpunit": "^1.4",
"phpstan/phpstan-strict-rules": "^1.6",
"phpstan/phpstan-symfony": "^1.4",
"phpunit/phpunit": "^11.3",
"symfony/cache": "^6.4 || ^7.0",
"symfony/messenger": "^6.4 || ^7.0",
"symfony/serializer": "^6.4 || ^7.0",
"tomasvotruba/type-coverage": "^0.3"
},
"suggest": {
"doctrine/orm": "^3.2",
"symfony/messenger": "^^6.4 || ^7.0",
"symfony/serializer": "^6.4 || ^7.0",
"nelmio/api-doc-bundle": "^4.29"
},
"scripts": {
"phpstan": "XDEBUG_MODE=off php -d memory_limit=2048M vendor/bin/phpstan analyse",
"phpcs-check": "XDEBUG_MODE=off vendor/bin/php-cs-fixer check -v --diff",
"phpcs-fix": "XDEBUG_MODE=off vendor/bin/php-cs-fixer fix -v",
"infection": "XDEBUG_MODE=coverage vendor/bin/infection",
"test": "XDEBUG_MODE=off vendor/bin/phpunit --testdox",
"test-coverage": "XDEBUG_MODE=coverage vendor/bin/phpunit --coverage-text --coverage-cobertura=coverage/phpunit/cobertura.xml --coverage-html=coverage/phpunit/html"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"infection/extension-installer": true
}
}
}