-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
103 lines (103 loc) · 3.53 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
{
"description": "Wikimedia Foundation donor CRM",
"name": "wikimedia/fundraising-crm",
"authors": [
{ "name": "Elliott Eggleston" },
{ "name": "Peter Gehres" },
{ "name": "Katie Horn" },
{ "name": "Jeremy Postlethwaite" },
{ "name": "Arthur Richards" },
{ "name": "Matt Walker" },
{ "name": "Adam Roses Wight" },
{ "name": "Maggie Epps" },
{ "name": "Eileen McNaughton" },
{ "name": "Christine Stone" },
{ "name": "Jack Gleeson" },
{ "name": "Dylan Kozlowski" }
],
"license": "GPL-2.0-or-later",
"type": "project",
"support": {
"irc": "irc://irc.libera.chat/wikimedia-fundraising"
},
"require": {
"amzn/login-and-pay-with-amazon-sdk-php": "^2.5",
"coderkungfu/php-queue": "^1.0",
"ext-intl": "*",
"wikimedia/smash-pig": "v0.8.22",
"phpmailer/phpmailer": "^6",
"phpseclib/phpseclib": "~2.0",
"predis/predis": "1.*",
"twig/twig": "1.*",
"wikimedia/composer-merge-plugin": "^2",
"jackgleeson/stats-collector": "^1.4",
"ext-json": "*",
"drush/drush": "8.*"
},
"repositories": [
{
"type": "git",
"url": "https://github.com/ejegg/login-and-pay-with-amazon-sdk-php"
},
{
"type": "git",
"url": "https://github.com/eileenmcnaughton/omnimail-silverpop"
},
{
"type": "git",
"url": "https://github.com/eileenmcnaughton/omnimail"
},
{
"type": "git",
"url": "https://github.com/civicrm/coder.git"
}
],
"require-dev": {
"phpunit/phpunit": ">= 9.0",
"seld/jsonlint": "1.7.0",
"wikimedia/testing-access-wrapper": "^3",
"php-parallel-lint/php-console-highlighter": "^0.5.0",
"php-parallel-lint/php-parallel-lint": "^1.2",
"drupal/coder": "dev-8.x-2.x-civi#5fa299b7790535b9f5098417f848a173cb6ce4d4",
"johnkary/phpunit-speedtrap": "^4.0",
"clagiordano/phpunit-result-printer": "^3.0"
},
"replace": {
"symfony/polyfill-php54": "*",
"symfony/polyfill-php55": "*"
},
"scripts": {
"test": [
"parallel-lint -e php,module,install,inc --exclude drupal/sites/all/modules/civicrm/packages/smarty5/vendor/symfony/polyfill-mbstring --exclude vendor --exclude drupal/sites/all/modules/civicrm/vendor --exclude sites/default/civicrm/extensions/org.wikimedia.omnimail/vendor .",
"jsonlint $(find . -type f -iname \"*.json\" ! -path \"*/vendor/*\" ! -path \"*/bower*\" ! -path \"*/tests/data/*\" ! -path \"*/civicrm/*/afform*\" -printf \"%p \")"
],
"civilint": "phpcs --standard=\"vendor/drupal/coder/coder_sniffer/Drupal\" --extensions=php,module,inc,install,test,profile,theme,css,info,txt,md,yml -p",
"fix": "phpcbf --standard=\"vendor/drupal/coder/coder_sniffer/Drupal\""
},
"minimum-stability": "dev",
"prefer-stable": true,
"extra": {
"merge-plugin": {
"include": [
"drupal/sites/default/civicrm/extensions/*/composer.json"
],
"recurse": true,
"replace": false,
"ignore-duplicates": false,
"merge-dev": true,
"merge-extra": false,
"merge-extra-deep": false,
"merge-scripts": false,
"merge-replace": false
}
},
"config": {
"platform": {
"php": "7.4.33"
},
"allow-plugins": {
"wikimedia/composer-merge-plugin": true,
"php-http/discovery": false
}
}
}