-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcomposer.json
64 lines (64 loc) · 1.7 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
{
"name": "event-engine/php-postgres-document-store",
"description": "PostgreSQL Document Store for Event Engine",
"homepage": "http://prooph.de/",
"license": "BSD-3-Clause",
"authors": [
{
"name": "Alexander Miertsch",
"email": "contact@prooph.de",
"homepage": "http://www.prooph.de"
},
{
"name": "Sandro Keil",
"email": "contact@prooph.de",
"homepage": "http://prooph-software.com/"
}
],
"require": {
"php": "^7.2 || ^8.0",
"ext-json": "*",
"ext-pdo": "*",
"event-engine/php-persistence": "^0.9"
},
"require-dev": {
"infection/infection": "^0.26.6",
"malukenho/docheader": "^0.1.8",
"phpspec/prophecy": "^1.12.1",
"phpstan/phpstan": "^0.12.48",
"phpstan/phpstan-strict-rules": "^0.12.5",
"phpunit/phpunit": "^8.5.8",
"prooph/php-cs-fixer-config": "^0.4.0",
"ramsey/uuid" : "^4.1.1",
"roave/security-advisories": "dev-master",
"php-coveralls/php-coveralls": "^2.2.0"
},
"autoload": {
"psr-4": {
"EventEngine\\DocumentStore\\Postgres\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"EventEngine\\DocumentStoreTest\\Postgres\\": "tests/"
}
},
"config": {
"sort-packages": true,
"platform": {
},
"allow-plugins": {
"ocramius/package-versions": true,
"infection/extension-installer": true
}
},
"prefer-stable": true,
"scripts": {
"test": "vendor/bin/phpunit",
"test-coverage": "phpunit --colors=always --coverage-clover clover.xml",
"cs": "php-cs-fixer fix -v --diff --dry-run",
"cs-fix": "php-cs-fixer fix -v --diff",
"analyze": "phpstan analyze -l max -c ./phpstan.installer.neon ./src",
"infection": "infection"
}
}