Add 'license' key
[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 {
8 "name": "Atif Shaikh"
9 },
10 {
11 "name": "Coleman Watts"
12 },
13 {
14 "name": "David Greenberg"
15 },
16 {
17 "name": "Eileen McNaughton"
18 },
19 {
20 "name": "Jitendra Purohit"
21 },
22 {
23 "name": "Josh Gowan"
24 },
25 {
26 "name": "Kurund Jalmi"
27 },
28 {
29 "name": "Michael McAndrew"
30 },
31 {
32 "name": "Monish Deb"
33 },
34 {
35 "name": "Rohan Ramesh Katkar"
36 },
37 {
38 "name": "Tim Otten"
39 },
40 {
41 "name": "Yashodha Chaku"
42 }
43 ],
cca05393
TO
44 "autoload": {
45 "psr-0": {
ac0b2c9c 46 "PHPUnit_": ["packages/"],
711aa5d7 47 "Civi": "",
ac0b2c9c 48 "Civi\\": [".", "tests/phpunit/"]
cca05393
TO
49 }
50 },
87f0580c 51 "include-path": ["vendor/tecnickcom"],
cca05393 52 "require": {
bd48ca3f 53 "dompdf/dompdf" : "0.8.*",
209ef5bf 54 "electrolinux/phpquery": "^0.9.6",
6be3826e
DS
55 "symfony/config": "^2.5.0",
56 "symfony/dependency-injection": "^2.5.0",
57 "symfony/event-dispatcher": "^2.5.0",
58 "symfony/filesystem": "^2.5.0",
59 "symfony/process": "^2.5.0",
60 "psr/log": "~1.0.0",
61 "symfony/finder": "^2.5.0",
b42a4864 62 "tecnickcom/tcpdf" : "6.2.*",
5f3c4f5b 63 "totten/ca-config": "~17.05",
16b60c30 64 "zetacomponents/base": "1.7.*",
db7b0381 65 "zetacomponents/mail": "dev-1.7-civi",
61a197f8 66 "phpoffice/phpword": "^0.13.0",
fcfd7b4d 67 "pear/Validate_Finance_CreditCard": "dev-master",
41f34647 68 "civicrm/civicrm-cxn-rpc": "~0.16.12.05",
0ccbacae
SL
69 "pear/Auth_SASL": "1.1.0",
70 "pear/Net_SMTP": "1.6.*",
71 "pear/Net_socket": "1.0.*"
f28ac29c 72 },
16b60c30
TO
73 "repositories": [
74 {
75 "type": "git",
76 "url": "https://github.com/civicrm/zetacomponents-mail.git"
77 }
78 ],
f28ac29c
TO
79 "scripts": {
80 "post-install-cmd": [
9500c14a 81 "bash tools/scripts/composer/dompdf-cleanup.sh",
8aa9061e 82 "bash tools/scripts/composer/tcpdf-cleanup.sh",
0ccbacae 83 "bash tools/scripts/composer/pear-exception-fix.sh",
ed9f705c
SL
84 "bash tools/scripts/composer/net-smtp-fix.sh",
85 "bash tools/scripts/composer/phpword-jquery.sh"
f28ac29c
TO
86 ],
87 "post-update-cmd": [
9500c14a 88 "bash tools/scripts/composer/dompdf-cleanup.sh",
8aa9061e 89 "bash tools/scripts/composer/tcpdf-cleanup.sh",
0ccbacae 90 "bash tools/scripts/composer/pear-exception-fix.sh",
ed9f705c
SL
91 "bash tools/scripts/composer/net-smtp-fix.sh",
92 "bash tools/scripts/composer/phpword-jquery.sh"
f28ac29c 93 ]
cca05393
TO
94 }
95}