-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
44 lines (44 loc) · 1.09 KB
/
composer.json
File metadata and controls
44 lines (44 loc) · 1.09 KB
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": "complex-heart/domain-events",
"description": "Domain event toolset for building rich domain events.",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Unay Santisteban",
"email": "usantisteban@othercode.io"
}
],
"minimum-stability": "stable",
"require": {
"php": "^8.2",
"complex-heart/contracts": "^3.0.0",
"ramsey/uuid": "^4.1.0"
},
"require-dev": {
"pestphp/pest": "^3.8.4",
"phpstan/phpstan": "^1.0",
"laravel/pint": "^1.25"
},
"autoload": {
"psr-4": {
"ComplexHeart\\Domain\\Events\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"ComplexHeart\\Domain\\Events\\Test\\": "tests/"
}
},
"scripts": {
"test": "vendor/bin/pest --configuration=phpunit.xml --coverage --coverage-clover=coverage.xml --log-junit=test.xml",
"analyse": "vendor/bin/phpstan analyse --no-progress --memory-limit=4G",
"pint-test": "vendor/bin/pint --preset=psr12 --test",
"pint": "vendor/bin/pint --preset=psr12"
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
}
}
}