Merge pull request #11723 from mukeshcompucorp/CRM-21805-fix-fields-and-labels-in...
[civicrm-core.git] / composer.json
1 {
2 "name": "civicrm/civicrm-core",
3 "description": "Open source constituent relationship management for non-profits, NGOs and advocacy organizations.",
4 "type": "library",
5 "license": "AGPL-3.0",
6 "authors": [
7 {
8 "name": "Coleman Watts",
9 "role": "Product Manager"
10 },
11 {
12 "name": "Joshua Gowans",
13 "role": "Project Manager"
14 },
15 {
16 "name": "Mathieu Lutfy",
17 "role": "Infrastructure"
18 },
19 {
20 "name": "Tim Otten",
21 "role": "Software Architect"
22 },
23 {
24 "name": "CiviCRM Community",
25 "homepage": "https://civicrm.org"
26 }
27 ],
28 "autoload": {
29 "psr-0": {
30 "PHPUnit_": ["packages/"],
31 "Civi": "",
32 "Civi\\": [".", "tests/phpunit/"]
33 }
34 },
35 "include-path": ["vendor/tecnickcom"],
36 "require": {
37 "dompdf/dompdf" : "0.8.*",
38 "electrolinux/phpquery": "^0.9.6",
39 "symfony/config": "^2.6.13 || ~3.0",
40 "symfony/dependency-injection": "^2.6.13 || ~3.0",
41 "symfony/event-dispatcher": "^2.6.13 || ~3.0",
42 "symfony/filesystem": "^2.6.13 || ~3.0",
43 "symfony/process": "^2.6.13 || ~3.0",
44 "psr/log": "~1.0.0",
45 "symfony/finder": "^2.6.13 || ~3.0",
46 "tecnickcom/tcpdf" : "6.2.*",
47 "totten/ca-config": "~17.05",
48 "zetacomponents/base": "1.7.*",
49 "zetacomponents/mail": "dev-1.7-civi",
50 "marcj/topsort": "~1.1",
51 "phpoffice/phpword": "^0.13.0",
52 "pear/Validate_Finance_CreditCard": "dev-master",
53 "civicrm/civicrm-cxn-rpc": "~0.17.07.01",
54 "pear/Auth_SASL": "1.1.0",
55 "pear/Net_SMTP": "1.6.*",
56 "pear/Net_socket": "1.0.*",
57 "civicrm/civicrm-setup": "~0.2.0"
58 },
59 "repositories": [
60 {
61 "type": "git",
62 "url": "https://github.com/civicrm/zetacomponents-mail.git"
63 }
64 ],
65 "scripts": {
66 "post-install-cmd": [
67 "bash tools/scripts/composer/dompdf-cleanup.sh",
68 "bash tools/scripts/composer/tcpdf-cleanup.sh",
69 "bash tools/scripts/composer/pear-exception-fix.sh",
70 "bash tools/scripts/composer/net-smtp-fix.sh",
71 "bash tools/scripts/composer/phpword-jquery.sh"
72 ],
73 "post-update-cmd": [
74 "bash tools/scripts/composer/dompdf-cleanup.sh",
75 "bash tools/scripts/composer/tcpdf-cleanup.sh",
76 "bash tools/scripts/composer/pear-exception-fix.sh",
77 "bash tools/scripts/composer/net-smtp-fix.sh",
78 "bash tools/scripts/composer/phpword-jquery.sh"
79 ]
80 }
81 }