-
Notifications
You must be signed in to change notification settings - Fork 9
/
composer.json
101 lines (101 loc) · 2.88 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
{
"name": "joomla-bible-study/proclaim",
"type": "project",
"description": "CWM Proclaim",
"keywords": [
"bible",
"joomla",
"comments",
"Proclaim"
],
"homepage": "https://github.com/Joomla-Bible-Study/Proclaim",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "Tom Fuller",
"email": "[email protected]",
"homepage": "https://www.christianwebministries.org",
"role": "Tech Writer & Developer"
},
{
"name": "Brent Cordis",
"email": "[email protected]",
"homepage": "https://www.christianwebministries.org",
"role": "Lead Developer"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"optimize-autoloader": true,
"platform": {
"php": "8.1.0"
},
"vendor-dir": "libraries/vendor",
"github-protocols": [
"https"
],
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"support": {
"issues": "https://www.christianwebministries.org/issues",
"forum": "https://www.christianwebministries.org/forum",
"docs": "https://www.christianwebministries.org/docs"
},
"require": {
"php": "^8.1.0",
"ircmaxell/password-compat": "1.*",
"leafo/lessphp": "dev-master",
"phpmailer/phpmailer": "6.*",
"symfony/yaml": "6.*",
"simplepie/simplepie": "1.*",
"google/recaptcha": "^1.1",
"typo3/phar-stream-wrapper": "^3.1.7",
"ext-mbstring": "*",
"jfcherng/php-diff": "^6.16.2",
"ext-simplexml": "*",
"ext-zip": "*",
"ext-json": "*",
"ext-zlib": "*",
"ext-curl": "*",
"ext-gd": "*",
"composer/ca-bundle": "^1.3.7",
"ext-http": "*"
},
"require-dev": {
"phpunit/phpunit": "^9.6.11",
"friendsofphp/php-cs-fixer": "3.*",
"squizlabs/php_codesniffer": "3.*",
"dealerdirect/phpcodesniffer-composer-installer": "^0.7.2",
"phan/phan": "^5.4.2",
"roave/security-advisories": "dev-latest",
"phing/phing": "*",
"pdepend/pdepend": "2.*",
"phpmd/phpmd": "^2.4",
"pear/versioncontrol_git": "dev-master",
"pear/pear_exception": "dev-master",
"pear/cache_lite": "1.7.16"
},
"replace": {
"paragonie/random_compat": "9.99.99",
"symfony/polyfill-php70": "*",
"symfony/polyfill-php71": "*",
"symfony/polyfill-php72": "*",
"symfony/polyfill-php73": "*",
"symfony/polyfill-php74": "*",
"symfony/polyfill-php80": "*",
"symfony/polyfill-php81": "*"
},
"extra": {
"branch-alias": {
"dev-master": "2.x-dev"
}
},
"scripts": {
"phpcs": "phpcs . --standard=./build/psr12/ruleset.xml",
"post-install-cmd": "\"libraries/vendor/bin/phpcs\" --config-set installed_paths /libraries/vendor/squizlabs/php_codesniffer/src/Standards",
"post-update-cmd": "\"libraries/vendor/bin/phpcs\" --config-set installed_paths /libraries/vendor/squizlabs/php_codesniffer/src/Standards"
}
}