-
Notifications
You must be signed in to change notification settings - Fork 15
/
composer.json
155 lines (148 loc) · 3.83 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
{
"name": "wmde/fundraising-frontend",
"description": "WMDE fundraising application (end user facing part)",
"homepage": "https://github.com/wmde/FundraisingFrontend",
"license": "GPL-2.0+",
"require": {
"php": ">=8.3",
"ext-intl": "*",
"ext-curl": "*",
"ext-json": "*",
"ext-sodium": "*",
"twig/twig": "^3.0",
"twig/intl-extra": "^3.3",
"wmde/email-address": "~1.0",
"wmde/euro": "~1.0",
"wmde/clock": "~1.0",
"wmde/fundraising-donations": "~21.0",
"wmde/fundraising-memberships": "~16.2",
"wmde/fundraising-payments": "~8.0",
"wmde/fundraising-subscriptions": "~5.0",
"wmde/fundraising-content-provider": "~6.1",
"wmde/fundraising-address-change": "~4.0",
"wmde/fun-validators": "~4.1",
"symfony/asset": "~7.0",
"symfony/config": "~7.0",
"symfony/console": "~7.0",
"symfony/dotenv": "~7.0",
"symfony/filesystem": "~7.0",
"symfony/framework-bundle": "~7.0",
"symfony/http-foundation": "~7.0",
"symfony/mailer": "~7.0",
"symfony/monolog-bundle": "^3.8",
"symfony/property-access": "~7.0",
"symfony/serializer-pack": "~v1.3.0",
"symfony/twig-bridge": "~7.0",
"symfony/validator": "~7.0",
"symfony/yaml": "~7.0",
"symfony/cache": "^7.0",
"airbrake/phpbrake": "dev-update-monolog",
"doctrine/migrations": "~3.0",
"doctrine/orm": "~3.0",
"doctrine/dbal": "~4.0",
"guzzlehttp/guzzle": "^7.5",
"jeroen/file-fetcher": "~6.0",
"justinrainbow/json-schema": "^5.2",
"monolog/monolog": "^3.0",
"nikic/php-parser": "~4.0",
"psr/log": "~3.0",
"psr/simple-cache": "~1.0",
"remotelyliving/doorkeeper": "dev-php-8"
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/wmde/fundraising-donations",
"no-api": true
},
{
"type": "vcs",
"url": "https://github.com/wmde/fundraising-memberships",
"no-api": true
},
{
"type": "vcs",
"url": "https://github.com/wmde/fundraising-payments",
"no-api": true
},
{
"type": "vcs",
"url": "https://github.com/wmde/fundraising-subscriptions",
"no-api": true
},
{
"type": "vcs",
"url": "https://github.com/wmde/fundraising-frontend-content",
"no-api": true
},
{
"type": "vcs",
"url": "https://github.com/wmde/fundraising-content-provider",
"no-api": true
},
{
"type": "vcs",
"url": "https://github.com/wmde/fundraising-address-change",
"no-api": true
},
{
"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/doorkeeper",
"no-api": true
},
{
"type": "vcs",
"url": "https://github.com/wmde/phpbrake",
"no-api": true
}
],
"require-dev": {
"ext-pdo_sqlite": "*",
"matthiasnoback/symfony-config-test": "~5.0",
"mikey179/vfsstream": "~1.6",
"phpmd/phpmd": "~2.10",
"phpstan/phpstan": "^1.11",
"phpunit/phpunit": "~10.4.1",
"phpstan/phpstan-phpunit": "^1.4",
"phpstan/phpstan-doctrine": "~1.4",
"wmde/psr-log-test-doubles": "~3.0",
"wmde/fundraising-phpcs": "~10.1",
"wmde/fundraising-frontend-content": "dev-test",
"symfony/css-selector": "^7.0",
"symfony/browser-kit": "^7.0"
},
"autoload": {
"psr-4": {
"WMDE\\Fundraising\\Frontend\\": "src/",
"WMDE\\Fundraising\\Frontend\\App\\": "app/",
"WMDE\\Fundraising\\Frontend\\Cli\\": "cli/"
}
},
"autoload-dev": {
"psr-4": {
"WMDE\\Fundraising\\Frontend\\Tests\\": "tests/",
"WMDE\\Fundraising\\SubscriptionContext\\Tests\\": "vendor/wmde/fundraising-subscriptions/tests/",
"WMDE\\Fundraising\\MembershipContext\\Tests\\": "vendor/wmde/fundraising-memberships/tests/"
}
},
"config": {
"discard-changes": true,
"allow-plugins": {
"composer/package-versions-deprecated": true,
"dealerdirect/phpcodesniffer-composer-installer": true
},
"platform": {
"php": "8.3"
}
}
}