-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
44 lines (44 loc) · 1.11 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
{
"name": "othercode/complex-heart",
"description": "Domain driven design tools.",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Unay Santisteban",
"email": "usantisteban@othercode.es"
}
],
"minimum-stability": "stable",
"require": {
"php": "^7.4|^8.0",
"ext-json": "*",
"ramsey/uuid": "^4.1",
"nesbot/carbon": "^2.40",
"illuminate/collections": "^8.20",
"spatie/data-transfer-object": "^2.6",
"lambdish/phunctional": "^2.1",
"doctrine/instantiator": "^1.4"
},
"require-dev": {
"mockery/mockery": "^1.4",
"phpunit/phpunit": "^9.3",
"fakerphp/faker": "^1.9.1",
"phpstan/phpstan": "^0.12.64"
},
"autoload": {
"psr-4": {
"OtherCode\\ComplexHeart\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"OtherCode\\ComplexHeart\\Tests\\": "tests/"
}
},
"scripts": {
"test": "phpunit --configuration phpunit.xml --testdox",
"test-cov": "phpunit --configuration phpunit.xml --testdox --coverage-html=coverage",
"analyse": "php -d memory_limit=4G vendor/bin/phpstan analyse src --no-progress"
}
}