-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
46 lines (46 loc) · 1.1 KB
/
composer.json
File metadata and controls
46 lines (46 loc) · 1.1 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
{
"name": "tangible/ddd",
"description": "Domain-Driven Design framework for WordPress plugins",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Tangible",
"email": "dev@tangible.one"
}
],
"require": {
"php": ">=8.1",
"symfony/dependency-injection": "^7.4",
"league/tactician": "^2.0-rc1",
"woocommerce/action-scheduler": "^3.9",
"makinacorpus/query-builder": "^1.6",
"symfony/config": "^7.4"
},
"require-dev": {
"phpunit/phpunit": "^10.0|^11.0"
},
"autoload": {
"psr-4": {
"TangibleDDD\\": "ddd-src/",
"TangibleDDD\\WordPress\\": "ddd-wordpress/"
},
"files": [
"ddd-src/Domain/Shared/assert.php",
"ddd-wordpress/integration-events.php",
"ddd-wordpress/tables.php",
"ddd-wordpress/hooks.php",
"ddd-wordpress/audit.php",
"ddd-wordpress/locking.php",
"ddd-wordpress/db.php",
"ddd-wordpress/secret.php",
"ddd-wordpress/cli/register.php"
]
},
"autoload-dev": {
"psr-4": {
"TangibleDDD\\Tests\\": "tests/"
}
},
"minimum-stability": "stable"
}