forked from MaharaProject/mahara
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
39 lines (39 loc) · 1.39 KB
/
composer.json
File metadata and controls
39 lines (39 loc) · 1.39 KB
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
{
"require": {
"adodb/adodb-php": "^5.22",
"cerdic/css-tidy": "^2.0.1",
"cweagans/composer-patches": "^1.7",
"elasticsearch/elasticsearch": "~7.17.1",
"ezyang/htmlpurifier": "^4.14.0",
"google/recaptcha": "~1.2.0",
"phpmailer/phpmailer": "~6.7.1",
"psr/log": "^1.0"
},
"config": {
"vendor-dir": "htdocs/vendor",
"allow-plugins": {
"cweagans/composer-patches": true,
"dg/composer-cleaner": true,
"phpro/grumphp-shim": true
}
},
"extra": {
"patches": {
"adodb/adodb-php": {
"Suppress a PHP Notice that is thrown from Behat": "https://github.com/ADOdb/ADOdb/commit/1c1406b4e3d32b61c3dee6b0edadea0e66607948.patch"
},
"ezyang/htmlpurifier": {
"Schema": "composer_patches/htmlpurifier.schema.patch",
"Allow CSS comments to not be stripped out": "composer_patches/htmlpurifier.patch",
"Whitelists": "composer_patches/htmlpurifier.whitelists.patch",
"Preserve CSS comments filter": "composer_patches/htmlpurifier.preservecssfilter.patch"
}
}
},
"require-dev": {
"phpro/grumphp-shim": "~1.13.0",
"phpstan/phpstan": "^1.10.0",
"squizlabs/php_codesniffer": "^3.7",
"friendsofphp/php-cs-fixer": "^3.15"
}
}