-
Notifications
You must be signed in to change notification settings - Fork 57
/
Copy pathcomposer.json
76 lines (76 loc) · 2.24 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
{
"name": "prooph/pdo-event-store",
"description": "Prooph PDO EventStore",
"homepage": "http://getprooph.org/",
"license": "BSD-3-Clause",
"authors": [
{
"name": "Alexander Miertsch",
"email": "[email protected]"
},
{
"name": "Sascha-Oliver Prolic",
"email": "[email protected]"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": "^7.3 | ^8.0",
"ext-pdo": "*",
"prooph/event-store": "^v7.6"
},
"require-dev": {
"sandrokeil/interop-config": "^2.0.1",
"phpunit/php-invoker": "^3.1",
"phpunit/phpunit": "^9.3",
"phpspec/prophecy": "^1.9",
"phpspec/prophecy-phpunit": "^2.0",
"prooph/php-cs-fixer-config": "^0.4",
"prooph/bookdown-template": "^0.2.3",
"psr/container": "^1.0",
"satooshi/php-coveralls": "^1.0"
},
"suggest": {
"psr/container": "^1.0 for usage of provided factories",
"sandrokeil/interop-config": "^2.0.1 for usage of provided factories",
"ext-pdo_mysql": "For usage with MySQL",
"ext-pdo_pgsql": "For usage with PostgreSQL"
},
"conflict": {
"sandrokeil/interop-config": "<2.0.1"
},
"autoload": {
"psr-4": {
"Prooph\\EventStore\\Pdo\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"ProophTest\\EventStore\\Pdo\\": "tests/",
"ProophTest\\EventStore\\": "vendor/prooph/event-store/tests/"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.7-dev"
}
},
"config": {
"preferred-install": {
"prooph/*": "source"
}
},
"scripts": {
"cs": "php-cs-fixer fix -v --diff --dry-run",
"cs-fix": "php-cs-fixer fix -v --diff",
"test-postgres": "DB_HOST=postgres vendor/bin/phpunit -c phpunit.postgres.xml",
"test-mariadb": "DB_HOST=mariadb vendor/bin/phpunit -c phpunit.mariadb.xml",
"test-mysql": "DB_HOST=mysql vendor/bin/phpunit -c phpunit.mysql.xml",
"test-all": [
"@test-postgres",
"@test-mariadb",
"@test-mysql"
]
}
}