This repository has been archived by the owner on Sep 13, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 749
/
composer.json
124 lines (124 loc) · 3.54 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
{
"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"
],
"type": "project",
"license": "proprietary",
"homepage": "https://yetiforce.com/",
"support": {
"issues": "https://github.com/YetiForceCompany/YetiForceCRM/issues",
"wiki": "https://doc.yetiforce.com/",
"source": "https://github.com/YetiForceCompany/YetiForceCRM"
},
"authors": [
{
"name": "YetiForceCompany",
"email": "hello@yetiforce.com",
"homepage": "https://yetiforce.com/"
}
],
"require": {
"php": ">=7.4",
"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": "*",
"ext-hash": "*",
"composer/ca-bundle": "^1.1",
"sabre/dav": "^4.1",
"smarty/smarty": "^v4",
"phpmailer/phpmailer": "^v6.1",
"ezyang/htmlpurifier": "^v4.11.0",
"simshaun/recurr": "^v5.0",
"giggsey/libphonenumber-for-php": "^8.8.11",
"simplepie/simplepie": "^1",
"phpoffice/phpspreadsheet": "^1.3.1",
"pragmarx/google2fa": "^v8",
"milon/barcode": "^9.0.0",
"ckeditor/ckeditor": "4.22.1",
"parsecsv/php-parsecsv": "^1.1.0",
"guzzlehttp/guzzle": "^7.0",
"nette/php-generator": "^3.2.1",
"yetiforce/csrf-magic": "^v1.1.1",
"maximebf/debugbar": "1.*",
"yetiforce/yii2": "^2.0.43",
"yetiforce/yetiforcepdf": "0.1.40",
"adhocore/jwt": "^1.0",
"zbateson/mail-mime-parser": "^2.0",
"mlocati/spf-lib": "^3",
"phpmailer/dkimvalidator": "^v0.3",
"league/climate": "^3.6",
"twig/twig": "^3.0",
"illuminate/support": "^8.0",
"globalcitizen/php-iban": "^4.0.0",
"chrome-php/chrome": "^v1.4.0",
"setasign/fpdf": "1.8.*",
"setasign/fpdi": "^v2.3.6",
"notihnio/php-multipart-form-data-parser": "*",
"symfony/filesystem": "^v5.4.3"
},
"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/",
"Exception\\": "include/exceptions/"
}
},
"scripts": {
"post-update-cmd": "App\\Installer\\Composer::install",
"post-install-cmd": "App\\Installer\\Composer::install"
}
}