forked from YetiForceCompany/YetiForceCRM
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
111 lines (111 loc) · 3.16 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
{
"name": "yetiforce/yetiforce-crm",
"description": "An open and innovative CRM system. Our team created for you one of the most innovative CRM systems that supports mainly business processes and allows for customization according to your needs. Be ahead of your competition and implement YetiForce!",
"keywords": [
"YetiForceCRM",
"CRM",
"open source crm",
"best crm",
"YetiForce",
"ERP",
"PHP",
"Customer Relation Management",
"System CRM"
],
"homepage": "https://yetiforce.com/",
"support": {
"issues": "https://github.com/YetiForceCompany/YetiForceCRM/issues",
"wiki": "https://yetiforce.com/en/documentation.html",
"source": "https://github.com/YetiForceCompany/YetiForceCRM"
},
"authors": [
{
"name": "YetiForceCompany",
"email": "info@yetiforce.com",
"homepage": "https://yetiforce.com/"
}
],
"require": {
"php": ">=7.2.0",
"ext-imap": "*",
"ext-pdo": "*",
"ext-pdo_mysql": "*",
"ext-openssl": "*",
"ext-curl": "*",
"ext-gd": "*",
"ext-pcre": "*",
"ext-xml": "*",
"ext-json": "*",
"ext-session": "*",
"ext-dom": "*",
"ext-zip": "*",
"ext-mbstring": "*",
"ext-ctype": "*",
"ext-soap": "*",
"ext-fileinfo": "*",
"ext-iconv": "*",
"ext-intl": "*",
"ext-spl": "*",
"ext-simplexml": "*",
"ext-bcmath": "*",
"ext-filter": "*",
"ext-zlib": "*",
"composer/ca-bundle": "^1.1",
"sabre/dav": "3.2.3",
"rmccue/requests": "v1.7.0",
"smarty/smarty": "^v3.1.33",
"phpmailer/phpmailer": "^v6.1",
"ezyang/htmlpurifier": "^v4.11.0",
"simshaun/recurr": "^v4.0",
"giggsey/libphonenumber-for-php": "^8.8.11",
"dg/rss-php": "^1.2",
"phpoffice/phpspreadsheet": "^1.3.1",
"sonata-project/google-authenticator": "^2.1.0",
"milon/barcode": "^7.0.0",
"ckeditor/ckeditor": "^4.9.2",
"parsecsv/php-parsecsv": "^1.1.0",
"guzzlehttp/guzzle": "^6.3",
"nette/php-generator": "^3.2.1",
"yetiforce/csrf-magic": "^v1.1.1",
"maximebf/debugbar": "1.*",
"yetiforce/yii2": "2.0.32",
"yetiforce/yetiforcepdf": "0.1.29",
"abraham/twitteroauth": "^1.0"
},
"suggest": {
"ext-imagick": "Library recommended for securing potentially dangerous graphic files",
"ext-exif": "Improves security of uploaded files",
"ext-apcu": "Cache meta data in apcu to improve system performance",
"ext-ldap": "Protocol used to access databases that store information in a tree structure.",
"ext-opcache": "Improve system performance"
},
"archive": {
"exclude": [
"tests"
]
},
"config": {
"autoloader-suffix": "YT",
"optimize-autoloader": true,
"classmap-authoritative": false
},
"autoload": {
"files": [
"app/Loader.php"
],
"psr-4": {
"vtlib\\": "vtlib/Vtiger/",
"includes\\": "include/",
"App\\": "app/",
"Api\\": "api/webservice/",
"Config\\": "config/",
"Cron\\": "cron/",
"Tests\\": "tests/",
"Exception\\": "include/exceptions/"
}
},
"scripts": {
"post-update-cmd": "App\\Installer\\Composer::install",
"post-install-cmd": "App\\Installer\\Composer::install"
}
}