-
Notifications
You must be signed in to change notification settings - Fork 24
/
composer_dev.json
56 lines (56 loc) · 1.54 KB
/
composer_dev.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
{
"name": "yetiforce/yetiforce-portal",
"description": "When you implement YetiForce CRM, then you will find yourself wanting to communicate with your customers through a professional customer portal. That is why we created for you YetiForcePortal that integrates with CRM and has a wide range of functionalities.",
"keywords": [
"YetiForcePortal",
"Customer portal",
"open source customer portal",
"best customer portal"
],
"homepage": "https://yetiforce.com/",
"type": "project",
"support": {
"issues": "https://github.com/YetiForceCompany/YetiForceCRM/issues",
"wiki": "https://yetiforce.com/en/documentation.html",
"source": "https://github.com/YetiForceCompany/YetiForcePortal2"
},
"authors": [
{
"name": "YetiForce team",
"email": "[email protected]",
"homepage": "https://yetiforce.com/"
}
],
"require": {
"php": ">=7.3.0",
"smarty/smarty": "^v4",
"guzzlehttp/guzzle": "^7.0",
"yetiforce/csrf-magic": "^v1.1.1",
"ckeditor/ckeditor": "^4.9.2",
"milon/barcode": "^9.0"
},
"require-dev": {
"phpunit/phpunit": "^9.5"
},
"config": {
"autoloader-suffix": "YT",
"optimize-autoloader": true,
"classmap-authoritative": false
},
"archive": {
"exclude": [
"tests"
]
},
"autoload": {
"psr-4": {
"App\\": "app/",
"Conf\\": "config/",
"YF\\Modules\\": "modules/"
}
},
"scripts": {
"post-update-cmd": "App\\Installer\\Composer::install",
"post-install-cmd": "App\\Installer\\Composer::install"
}
}