-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcomposer.json
More file actions
51 lines (51 loc) · 1.21 KB
/
composer.json
File metadata and controls
51 lines (51 loc) · 1.21 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
{
"name": "antevenio/ddd-example",
"description": "Antevenio DDD example",
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"slim/slim": "^3.0",
"bnf/slim3-psr15": "^1.1",
"http-interop/http-factory-slim": "^2.0",
"monolog/monolog": "^1.17",
"zendframework/zend-config": "^3.2",
"crell/api-problem": "^3.1",
"beberlei/assert": "^3.2",
"prooph/event-store": "^7.5",
"prooph/pdo-event-store": "^1.10",
"php-amqplib/php-amqplib": "^2.9",
"league/tactician": "^1.0",
"league/tactician-container": "^2.0",
"league/tactician-logger": "^0.10.0",
"symfony/console": "^4.2",
"jimdo/prometheus_client_php": "^0.9.1"
},
"require-dev": {
"squizlabs/php_codesniffer": "^3.4",
"phpunit/phpunit": "8.1.3"
},
"autoload": {
"psr-4": {
"Antevenio\\DddExample\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Antevenio\\DddExample\\": "tests/"
}
},
"config": {
"process-timeout": 0
},
"scripts": {
"serve": "php -S 0.0.0.0:8082 -t public/",
"check": [
"@cs-check",
"@test"
],
"cs-check": "phpcs",
"cs-fix": "phpcbf",
"test": "phpunit",
"coverage": "phpunit --coverage-text"
}
}