Merge pull request #13924 from eileenmcnaughton/payment_test
[civicrm-core.git] / composer.json
CommitLineData
cca05393 1{
52a05d3f
DS
2 "name": "civicrm/civicrm-core",
3 "description": "Open source constituent relationship management for non-profits, NGOs and advocacy organizations.",
4 "type": "library",
be652e9b 5 "license": "AGPL-3.0",
52a05d3f
DS
6 "authors": [
7 {
8fc57118
DS
8 "name": "Coleman Watts",
9 "role": "Product Manager"
52a05d3f
DS
10 },
11 {
8fc57118
DS
12 "name": "Joshua Gowans",
13 "role": "Project Manager"
52a05d3f
DS
14 },
15 {
8fc57118
DS
16 "name": "Mathieu Lutfy",
17 "role": "Infrastructure"
52a05d3f
DS
18 },
19 {
8fc57118
DS
20 "name": "Tim Otten",
21 "role": "Software Architect"
52a05d3f
DS
22 },
23 {
8fc57118
DS
24 "name": "CiviCRM Community",
25 "homepage": "https://civicrm.org"
52a05d3f
DS
26 }
27 ],
cca05393
TO
28 "autoload": {
29 "psr-0": {
ac0b2c9c 30 "PHPUnit_": ["packages/"],
711aa5d7 31 "Civi": "",
ac0b2c9c 32 "Civi\\": [".", "tests/phpunit/"]
cca05393
TO
33 }
34 },
87f0580c 35 "include-path": ["vendor/tecnickcom"],
cca05393 36 "require": {
bd48ca3f 37 "dompdf/dompdf" : "0.8.*",
209ef5bf 38 "electrolinux/phpquery": "^0.9.6",
c837b233 39 "symfony/config": "^2.8.44 || ~3.0",
5ff57db4 40 "symfony/polyfill-iconv": "~1.0",
c837b233
SL
41 "symfony/dependency-injection": "^2.8.44 || ~3.0",
42 "symfony/event-dispatcher": "^2.8.44 || ~3.0",
43 "symfony/filesystem": "^2.8.44 || ~3.0",
44 "symfony/process": "^2.8.44 || ~3.0",
2ac97b20 45 "psr/log": "~1.1",
c837b233 46 "symfony/finder": "^2.8.44 || ~3.0",
b42a4864 47 "tecnickcom/tcpdf" : "6.2.*",
5f3c4f5b 48 "totten/ca-config": "~17.05",
16924c84 49 "zetacomponents/base": "1.9.*",
50 "zetacomponents/mail": "dev-1.8-civi",
77c89e7a 51 "marcj/topsort": "~1.1",
66a7c254 52 "phpoffice/phpword": "^0.15.0",
3018c1d5 53 "pear/validate_finance_creditcard": "dev-master",
2ac97b20 54 "civicrm/civicrm-cxn-rpc": "~0.19.01.08",
3018c1d5
SL
55 "pear/auth_sasl": "1.1.0",
56 "pear/net_smtp": "1.6.*",
57 "pear/net_socket": "1.0.*",
2215f6dc 58 "pear/mail": "^1.4",
f9bdf062 59 "civicrm/civicrm-setup": "~0.2.0",
6c1c4ffc 60 "guzzlehttp/guzzle": "^6.3",
66a7c254 61 "psr/simple-cache": "~1.0.1",
2f0db034 62 "cweagans/composer-patches": "~1.0",
942e5537
SL
63 "pear/log": "1.13.1",
64 "ezyang/htmlpurifier": "4.10"
f28ac29c 65 },
16b60c30
TO
66 "repositories": [
67 {
68 "type": "git",
69 "url": "https://github.com/civicrm/zetacomponents-mail.git"
70 }
71 ],
f28ac29c
TO
72 "scripts": {
73 "post-install-cmd": [
9500c14a 74 "bash tools/scripts/composer/dompdf-cleanup.sh",
8aa9061e 75 "bash tools/scripts/composer/tcpdf-cleanup.sh",
0ccbacae 76 "bash tools/scripts/composer/pear-exception-fix.sh",
ed9f705c 77 "bash tools/scripts/composer/net-smtp-fix.sh",
2215f6dc 78 "bash tools/scripts/composer/pear-mail-fix.sh",
ed9f705c 79 "bash tools/scripts/composer/phpword-jquery.sh"
f28ac29c
TO
80 ],
81 "post-update-cmd": [
9500c14a 82 "bash tools/scripts/composer/dompdf-cleanup.sh",
8aa9061e 83 "bash tools/scripts/composer/tcpdf-cleanup.sh",
0ccbacae 84 "bash tools/scripts/composer/pear-exception-fix.sh",
ed9f705c 85 "bash tools/scripts/composer/net-smtp-fix.sh",
2215f6dc 86 "bash tools/scripts/composer/pear-mail-fix.sh",
ed9f705c 87 "bash tools/scripts/composer/phpword-jquery.sh"
f28ac29c 88 ]
66a7c254
SL
89 },
90 "extra": {
91 "patches": {
92 "phpoffice/common": {
93 "Fix handling of libxml_disable_entity_loader": "tools/scripts/composer/patches/phpoffice-common-xml-entity-fix.patch"
94 },
95 "phpoffice/phpword": {
96 "Fix handling of libxml_disable_entity_loader": "tools/scripts/composer/patches/phpword-libxml-fix-global-handling.patch"
97 }
98 }
cca05393
TO
99 }
100}