-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
93 lines (93 loc) · 2.56 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "phauthentic/event-sourcing",
"type": "library",
"description": "An event sourcing library for PHP. Framework agnostic, simple, SOLID and easy to use.",
"keywords": ["event-sourcing", "CQRS", "event-store", "snapshot-store", "SOLID"],
"license": "MIT",
"authors": [
{
"role": "Maintainer",
"name": "Florian Krämer"
}
],
"require": {
"php": "^8.2",
"phauthentic/event-store": "^1.0@beta",
"phauthentic/snapshot-store": "dev-master"
},
"require-dev": {
"ext-pdo": "*",
"infection/infection": "^0.29.6",
"phpbench/phpbench": "^1.3",
"phpmd/phpmd": "^2.15",
"phpro/grumphp-shim": "^2.5",
"phpstan/phpstan": "^1.11",
"phpunit/phpunit": "^9.6",
"psr/container": "^1.0||^2.0",
"psr/log": "^2.0||^3.0",
"ramsey/uuid": "^4.7",
"squizlabs/php_codesniffer": "^4.0",
"symfony/messenger": "^6.0||^7.0",
"symfony/var-dumper": "^6.0||^7.1"
},
"suggest": {
"psr/container": "If you want to use the repository factory.",
"psr/log": "If you want to use any of the components that use a PSR logger."
},
"autoload": {
"psr-4": {
"Phauthentic\\EventSourcing\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Phauthentic\\EventSourcing\\Test\\": "tests/",
"Example\\": "examples/"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"sort-packages": true,
"bin-dir": "./bin",
"allow-plugins": {
"phpro/grumphp-shim": true,
"infection/extension-installer": true
}
},
"scripts": {
"test": [
"phpunit"
],
"infection": [
"infection"
],
"test-coverage": [
"phpunit --coverage-text"
],
"test-coverage-html": [
"phpunit --coverage-html tmp/coverage/"
],
"cscheck": [
"phpcs src/ tests/ --standard=PSR12 -s"
],
"csfix": [
"phpcbf src/ tests/ --standard=PSR12"
],
"analyze": [
"phpstan analyse src/"
],
"phpmd": [
"bin/phpmd ./src text cleancode,codesize,controversial,design"
],
"benchmark": [
"bin/phpbench run tests/Benchmark/ --report=aggregate"
],
"all": [
"@csfix",
"@cscheck",
"@analyze",
"@test"
]
}
}