CRM-18098. Call tcpdf-cleanup.sh from composer.
[civicrm-core.git] / composer.json
1 {
2 "autoload": {
3 "psr-0": {
4 "PHPUnit_": ["packages/"],
5 "Civi": "",
6 "Civi\\": [".", "tests/phpunit/"]
7 }
8 },
9 "require": {
10 "dompdf/dompdf" : "0.6.*",
11 "symfony/config": "~2.5.0",
12 "symfony/dependency-injection": "~2.5.0",
13 "symfony/event-dispatcher": "~2.5.0",
14 "symfony/filesystem": "~2.5.0",
15 "symfony/process": "~2.5.0",
16 "psr/log": "1.0.0",
17 "symfony/finder": "~2.5.0",
18 "tecnickcom/tcpdf" : "6.2.*",
19 "totten/ca-config": "~13.02",
20 "civicrm/civicrm-cxn-rpc": "~0.15.12.04",
21 "zetacomponents/base": "1.7.*",
22 "zetacomponents/mail": "dev-1.7-civi"
23 },
24 "repositories": [
25 {
26 "type": "git",
27 "url": "https://github.com/civicrm/zetacomponents-mail.git"
28 }
29 ],
30 "scripts": {
31 "post-install-cmd": [
32 "bash tools/scripts/composer/dompdf-cleanup.sh",
33 "bash tools/scripts/composer/tcpdf-cleanup.sh"
34 ],
35 "post-update-cmd": [
36 "bash tools/scripts/composer/dompdf-cleanup.sh",
37 "bash tools/scripts/composer/tcpdf-cleanup.sh"
38 ]
39 }
40 }