-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
70 lines (67 loc) · 1.49 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
{
"name": "wmde/fundraising-memberships",
"license": "GPL-2.0-or-later",
"description": "Bounded Context for the Wikimedia Deutschland fundraising membership subdomain",
"require": {
"php": ">=8.3",
"doctrine/orm": "~3.0",
"doctrine/migrations": "^3.5",
"psr/log": "~3.0",
"wmde/fundraising-payments": "~8.0",
"wmde/euro": "~1.0",
"wmde/email-address": "~1.0",
"wmde/fun-validators": "~4.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": {
"phpunit/phpunit": "~11.0",
"symfony/cache": "^6.1|^7.0",
"phpstan/phpstan": "~1.2",
"wmde/clock": "^1.0",
"wmde/fundraising-phpcs": "~12.0",
"wmde/psr-log-test-doubles": "~3.0",
"phpstan/phpstan-phpunit": "^1.3",
"phpstan/phpstan-doctrine": "~1.5.0"
},
"autoload": {
"psr-4": {
"WMDE\\Fundraising\\MembershipContext\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"WMDE\\Fundraising\\MembershipContext\\Tests\\": "tests/"
}
},
"bin": [
"bin/migrate-membership-payment-data",
"bin/check-membership-payment-data"
],
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev"
}
},
"config": {
"allow-plugins": {
"composer/package-versions-deprecated": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}