{
"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",
"ext-json": "*",
"ramsey/uuid": "^4.1",
"nesbot/carbon": "^2.40",
"illuminate/collections": "^10.0",
"lambdish/phunctional": "^2.1",
"doctrine/instantiator": "^2.0",
"complex-heart/contracts": "^2.0"
},
"require-dev": {
"pestphp/pest": "^2.0",
"pestphp/pest-plugin-mock": "^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
}
}
}
|