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