-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
54 lines (52 loc) · 1.09 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
{
"name": "wmde/fundraising-subscriptions",
"license": "GPL-2.0-or-later",
"description": "Bounded Context for fundraising subcriptions",
"require": {
"php": ">=8.3",
"doctrine/orm": "~2.18 | ~3.0",
"psr/log": "^1.0|^2.0|^3.0",
"wmde/email-address": "~1.0",
"wmde/fun-validators": "~4.0"
},
"require-dev": {
"phpunit/phpunit": "~11.0",
"wmde/fundraising-phpcs": "~12.0",
"phpstan/phpstan": "~2.1",
"symfony/cache": "^7.2",
"qossmic/deptrac-shim": "^1.0"
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/wmde/fundraising-phpcs",
"no-api": true
},
{
"type": "vcs",
"url": "https://github.com/wmde/fun-validators",
"no-api": true
}
],
"autoload": {
"psr-4": {
"WMDE\\Fundraising\\SubscriptionContext\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"WMDE\\Fundraising\\SubscriptionContext\\Tests\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-master": "0.1.x-dev"
}
},
"config": {
"allow-plugins": {
"composer/package-versions-deprecated": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}