-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
45 lines (45 loc) · 1.01 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
{
"name": "wmde/fundraising-address-change",
"description": "Address change use case for fundraising application",
"license": "GPL-2.0-or-later",
"require": {
"php": ">=8.3",
"doctrine/orm": "~3.0",
"doctrine/dbal": "~4.0",
"ramsey/uuid": "^4.0",
"doctrine/migrations": "^3.7"
},
"require-dev": {
"phpunit/phpunit": "~11.0",
"symfony/cache": "^7.2",
"symfony/dotenv": "~7.2",
"wmde/fundraising-phpcs": "~12.0",
"phpmd/phpmd": "~2.6",
"phpstan/phpstan": "^1.10",
"phpstan/phpstan-phpunit": "^1.3",
"phpstan/phpstan-doctrine": "~1.3.62"
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/wmde/fundraising-phpcs",
"no-api": true
}
],
"autoload": {
"psr-4": {
"WMDE\\Fundraising\\AddressChangeContext\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"WMDE\\Fundraising\\AddressChangeContext\\Tests\\": "tests/"
}
},
"config": {
"allow-plugins": {
"composer/package-versions-deprecated": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}