-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
60 lines (60 loc) · 1.39 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
56
57
58
59
60
{
"name": "unixslayer/event-sourcing",
"description": "Event Sourcing implementation using prooph/event-store",
"type": "library",
"license": "BSD-3-Clause",
"authors": [
{
"name": "Piotr Zając",
"email": "[email protected]"
}
],
"keywords": [
"Event Sourcing",
"DDD"
],
"minimum-stability": "dev",
"require": {
"php": "^7.4|^8.0",
"ramsey/uuid": "^4.0"
},
"require-dev": {
"ext-pdo": "*",
"friendsofphp/php-cs-fixer": "^3.0",
"moneyphp/money": "^3.3",
"phpunit/phpunit": "9.5.x-dev",
"roave/security-advisories": "dev-master",
"vimeo/psalm": "4.x-dev"
},
"config": {
"platform": {
"php": "7.4"
},
"preferred-install": {
"*": "dist"
},
"sort-packages": true
},
"autoload": {
"psr-4": {
"Unixslayer\\EventSourcing\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Unixslayer\\": "tests/"
}
},
"scripts": {
"ci" : [
"@test",
"@check-cs",
"@psalm"
],
"check-cs": "php-cs-fixer fix --dry-run",
"fix": "php-cs-fixer fix",
"psalm": "psalm",
"test": "phpunit --testdox",
"coveralls": "php-coveralls -v"
}
}