-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
72 lines (70 loc) · 1.67 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
{
"name": "wmde/fundraising-donations",
"description": "Bounded Context for the Wikimedia Deutschland fundraising donation subdomain",
"homepage": "https://github.com/wmde/fundraising-donations",
"license": "GPL-2.0-or-later",
"require": {
"php": ">=8.2",
"ext-curl": "*",
"doctrine/orm": "~3.0",
"psr/log": "^3.0",
"symfony/http-client": "^7.0",
"wmde/email-address": "~1.0",
"wmde/euro": "~1.0",
"wmde/fun-validators": "~4.0",
"wmde/fundraising-payments": "~8.0"
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/wmde/fundraising-payments",
"no-api": true
},
{
"type": "vcs",
"url": "https://github.com/wmde/fundraising-phpcs",
"no-api": true
},
{
"type": "vcs",
"url": "https://github.com/wmde/fun-validators",
"no-api": true
}
],
"require-dev": {
"ext-pdo_sqlite": "*",
"doctrine/migrations": "^3.7",
"symfony/cache": "^6.0|^7.0",
"phpstan/phpstan": "^1.10",
"phpunit/phpunit": "~11.0",
"phpmd/phpmd": "~2.6",
"mikey179/vfsstream": "~1.6",
"wmde/fundraising-phpcs": "~10.1",
"wmde/psr-log-test-doubles": "~3.0",
"phpstan/phpstan-phpunit": "^1.3",
"phpstan/phpstan-doctrine": "~1.3.62",
"wmde/clock": "^1.0"
},
"autoload": {
"psr-4": {
"WMDE\\Fundraising\\DonationContext\\": "src/",
"WMDE\\Fundraising\\DonationContext\\Tests\\": "tests/"
}
},
"bin": [
"bin/check-donation-payment-data",
"bin/migrate-donation-payment-data"
],
"config": {
"discard-changes": true,
"allow-plugins": {
"composer/package-versions-deprecated": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"extra": {
"branch-alias": {
"dev-master": "0.1.x-dev"
}
}
}