-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
52 lines (52 loc) · 1.51 KB
/
composer.json
File metadata and controls
52 lines (52 loc) · 1.51 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
45
46
47
48
49
50
51
52
{
"name": "gember/dependency-contracts",
"description": "Dependency contracts for gember/event-sourcing",
"license": "MIT",
"type": "library",
"keywords": [
"cqrs",
"dcb",
"ddd",
"domain-driven-design",
"dynamic-consistency-boundary",
"event-sourcing",
"gember"
],
"authors": [
{
"name": "Jeroen de Graaf",
"email": "gember@jero.work",
"homepage": "https://jero.work"
}
],
"require": {
"php": "^8.3"
},
"require-dev": {
"captainhook/captainhook": "^5.25",
"friendsofphp/php-cs-fixer": "^3.87",
"phpstan/phpstan": "^2.1",
"rector/rector": "^2.1"
},
"autoload": {
"psr-4": {
"Gember\\DependencyContracts\\": "src/"
}
},
"config": {
"sort-packages": true
},
"scripts": {
"cs": "vendor/bin/php-cs-fixer fix --config=.php-cs-fixer.php",
"cs:dry-run": "PHP_CS_FIXER_IGNORE_ENV=1 vendor/bin/php-cs-fixer fix --diff --dry-run --config=.php-cs-fixer.php",
"phpstan": "vendor/bin/phpstan analyse -c phpstan.neon",
"phpstan:baseline": "vendor/bin/phpstan analyse -c phpstan.neon --generate-baseline phpstan-baseline.php src tests",
"rector": "vendor/bin/rector process --ansi",
"rector:dry-run": "vendor/bin/rector process --ansi --dry-run",
"test": [
"@rector:dry-run",
"@cs:dry-run",
"@phpstan"
]
}
}