-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathcomposer.json
52 lines (52 loc) · 1.28 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
{
"name": "event-engine/php-document-store",
"description": "Event Engine PHP Document Store Contract",
"homepage": "https://event-engine.io/",
"license": "MIT",
"authors": [
{
"name": "Alexander Miertsch",
"email": "[email protected]",
"homepage": "http://www.prooph.de"
},
{
"name": "Sandro Keil",
"email": "[email protected]",
"homepage": "http://prooph-software.com/"
}
],
"require": {
"php": "^7.2 || ^8.0",
"codeliner/array-reader": "^2.0"
},
"require-dev": {
"phpunit/phpunit": "^8.0 || ^9.0",
"prooph/php-cs-fixer-config": "^0.4",
"php-coveralls/php-coveralls": "^2.0",
"malukenho/docheader": "^0.1.4",
"roave/security-advisories": "dev-latest"
},
"autoload": {
"psr-4": {
"EventEngine\\DocumentStore\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"EventEngineTest\\DocumentStore\\": "tests/",
"EventEngine\\Persistence\\": "tests/Persistence"
}
},
"prefer-stable": true,
"scripts": {
"check": [
"@cs",
"@docheader",
"@test"
],
"docheader": "vendor/bin/docheader check examples/ src/ tests/",
"cs": "php-cs-fixer fix -v --diff --dry-run",
"cs-fix": "php-cs-fixer fix -v --diff",
"test": "vendor/bin/phpunit"
}
}