-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
67 lines (65 loc) · 1.44 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
{
"name": "wmde/fundraising-payments",
"license": "GPL-2.0-or-later",
"description": "Bounded Context for the Wikimedia Deutschland fundraising payment subdomain",
"require": {
"php": ">=8.2",
"wmde/euro": "~1.0",
"wmde/fun-validators": "~v4.0",
"doctrine/orm": "~2.18 | ~3.0",
"doctrine/dbal": "~3.8 | ~4.0",
"doctrine/migrations": "^3.5",
"guzzlehttp/guzzle": "^7.4",
"sofort/sofortlib-php": "^3.2",
"symfony/cache": "^7.0",
"symfony/console": "^7.0",
"symfony/dotenv": "^7.0",
"symfony/yaml": "^7.0",
"symfony/config": "^7.0"
},
"require-dev": {
"phpunit/phpunit": "~11.1",
"wmde/fundraising-phpcs": "~10.1",
"phpstan/phpstan": "~1.3",
"phpstan/phpstan-phpunit": "^1.0",
"qossmic/deptrac": "^2.0",
"wmde/psr-log-test-doubles": "~v3.2.0"
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/wmde/fun-validators",
"no-api": true
},
{
"type": "vcs",
"url": "https://github.com/wmde/fundraising-phpcs",
"no-api": true
},
{
"type": "vcs",
"url": "https://github.com/wmde/inspector-generator",
"no-api": true
}
],
"autoload": {
"psr-4": {
"WMDE\\Fundraising\\PaymentContext\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"WMDE\\Fundraising\\PaymentContext\\Tests\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-main": "7.0.x-dev"
}
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}