forked from salesagility/SuiteCRM
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
152 lines (152 loc) · 3.8 KB
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
{
"name": "salesagility/suitecrm",
"description": "SuiteCRM",
"homepage": "https://suitecrm.com",
"type": "project",
"license": "GPL-3.0",
"authors": [
{
"name": "SalesAgility Ltd"
}
],
"support": {
"issues": "https://github.com/salesagility/SuiteCRM/issues",
"wiki": "https://docs.suitecrm.com",
"forum": "https://community.suitecrm.com",
"chat": "https://gitter.im/suitecrm/Lobby",
"source": "https://github.com/salesagility/SuiteCRM"
},
"config": {
"vendor-dir": "vendor",
"platform": {
"php": "7.3.0"
},
"optimize-autoloader": true,
"sort-packages": true,
"allow-plugins": {
"wikimedia/composer-merge-plugin": true
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"suggest": {
"ext-imap": "Needed for emails module"
},
"require": {
"php": ">=7.3.0",
"ext-curl": "*",
"ext-gd": "*",
"ext-json": "*",
"ext-openssl": "*",
"ext-zip": "*",
"consolidation/robo": "^3.0",
"elasticsearch/elasticsearch": "^7.13",
"ezyang/htmlpurifier": "^4.10",
"google/apiclient": "^2.7",
"google/recaptcha": "^1.1",
"gymadarasz/ace": "^1.2",
"gymadarasz/imagesloaded": "^4.1",
"justinrainbow/json-schema": "^5.2",
"lcobucci/jwt": "3.3.3",
"league/oauth2-server": "^5.1",
"league/uri": "^4.2.3",
"monolog/monolog": "^1.23",
"nesbot/carbon": "^2.0.0",
"onelogin/php-saml": "3.4.1",
"paragonie/random_compat": "^2.0",
"phpmailer/phpmailer": "^6.0",
"psr/container": "^1.0",
"psr/log": "^1.0",
"slim/slim": "^3.8",
"smarty/smarty": "^2.6",
"soundasleep/html2text": "~0.5",
"symfony/options-resolver": "^3.4",
"symfony/validator": "^3.4",
"symfony/yaml": "^5.2",
"tecnickcom/tcpdf": "^6.4",
"tedivm/jshrink": "^1.3",
"tinymce/tinymce": "^5.10",
"tuupola/slim-jwt-auth": "^2.0",
"vlucas/phpdotenv": "^3.5",
"voku/anti-xss": "^4.0",
"wikimedia/composer-merge-plugin": "^2.0",
"zbateson/mail-mime-parser": "^1.1",
"zf1/zend-gdata": "^1.12",
"zf1/zend-loader": "^1.12",
"zf1/zend-oauth": "^1.12",
"zf1/zend-registry": "^1.12",
"zf1/zend-search-lucene": "^1.12"
},
"require-dev": {
"browserstack/browserstack-local": "^1.1",
"codeception/codeception": "^4.1",
"codeception/module-asserts": "^1.3",
"codeception/module-filesystem": "^1.0",
"codeception/module-phpbrowser": "^1.0",
"codeception/module-rest": "^1.3",
"codeception/module-webdriver": "^1.2",
"fakerphp/faker": "^1.14",
"filp/whoops": "^2.3",
"flow/jsonpath": "^0.4",
"friendsofphp/php-cs-fixer": "^2.15",
"jeroendesloovere/vcard": "^1.7",
"mikey179/vfsstream": "1.6.*",
"mockery/mockery": "^1.1.0",
"phpunit/phpunit": "^9.5",
"scssphp/scssphp": "^1.5"
},
"autoload": {
"files": [
"deprecated.php"
],
"psr-4": {
"SuiteCRM\\": [
"lib/",
"include/"
],
"SuiteCRM\\Custom\\": [
"custom/lib"
],
"SuiteCRM\\Modules\\": [
"modules/"
]
},
"classmap": [
"Api/"
]
},
"autoload-dev": {
"psr-4": {
"SuiteCRM\\": [
"tests/SuiteCRM/",
"tests/unit/phpunit/lib/SuiteCRM/"
],
"SuiteCRM\\Tests\\Unit\\": [
"tests/unit/phpunit/"
]
}
},
"scripts": {
"post-install-cmd": [
"Google\\Task\\Composer::cleanup"
]
},
"extra": {
"google/apiclient-services": [
"Calendar"
],
"merge-plugin": {
"include": [
"composer.ext.json",
"custom/Extension/application/Ext/Composer/*/*.json"
],
"recurse": true,
"replace": false,
"ignore-duplicates": false,
"merge-dev": true,
"merge-extra": false,
"merge-extra-deep": false,
"merge-scripts": false
}
}
}