-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
55 lines (55 loc) · 1.23 KB
/
composer.json
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
53
54
55
{
"name": "antidot-fw/event-sourcing",
"license": "BSD-2-Clause",
"description": "An event sourcing patter base classes",
"autoload": {
"psr-4": {
"Antidot\\EventSource\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"AntidotTest\\EventSource\\": "test"
}
},
"require": {
"php": "^7.4.0",
"antidot-fw/tactician": "^0.0.2",
"doctrine/dbal": "^2.10",
"psr/event-dispatcher": "1.0.0",
"ramsey/uuid": "^4.0"
},
"require-dev": {
"phpro/grumphp": "~1.0",
"phpunit/phpunit": "^8.0 || ^9.0",
"infection/infection": "^0.17",
"squizlabs/php_codesniffer": "^3.4",
"symfony/var-dumper": "^5.1",
"vimeo/psalm": "^3.14"
},
"scripts": {
"check-all": [
"@cs-check",
"@psalm",
"@test",
"@infection"
],
"cs-check": "phpcs src --colors",
"cs-fix": "phpcbf src --colors",
"infection": "infection",
"psalm": "psalm",
"test": "phpunit --colors=always"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"infection/extension-installer": true,
"phpro/grumphp": true
}
},
"extra": {
"laminas": {
"config-provider": "Antidot\\EventSource\\Infrastructure\\Framework\\ConfigProvider"
}
}
}