-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
56 lines (56 loc) · 1.47 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
{
"name": "complex-heart/domain-model",
"description": "Domain model toolset to properly build Value Objects, Entities and Aggregates.",
"type": "library",
"license": "Apache-2.0",
"authors": [
{
"name": "Unay Santisteban",
"email": "usantisteban@othercode.io"
}
],
"minimum-stability": "stable",
"require": {
"php": "^8.1.0",
"ext-json": "*",
"ramsey/uuid": "^4.1.0",
"nesbot/carbon": "^3.2.0",
"illuminate/collections": "^11.0.0",
"lambdish/phunctional": "^2.1.0",
"doctrine/instantiator": "^2.0.0",
"complex-heart/contracts": "^2.0.0"
},
"require-dev": {
"mockery/mockery": "^1.6.0",
"pestphp/pest": "^2.0",
"pestphp/pest-plugin-faker": "^2.0",
"phpstan/phpstan": "^1.0",
"phpstan/extension-installer": "^1.3",
"phpstan/phpstan-mockery": "^1.1"
},
"autoload": {
"psr-4": {
"ComplexHeart\\Domain\\Model\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"ComplexHeart\\Domain\\Model\\Test\\": "tests/"
}
},
"scripts": {
"test": "vendor/bin/pest --configuration=phpunit.xml --coverage-clover=coverage.xml --log-junit=test.xml",
"test-cov": "vendor/bin/pest --configuration=phpunit.xml --coverage-html=coverage",
"analyse": "vendor/bin/phpstan analyse src --no-progress --level=8",
"check": [
"@analyse",
"@test"
]
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true,
"phpstan/extension-installer": true
}
}
}