-
-
Notifications
You must be signed in to change notification settings - Fork 38
/
composer.json
87 lines (87 loc) · 2.11 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
{
"name" : "wgm/cerb",
"description" : "Cerb boosts team productivity with bot-powered email and workflow automation.",
"type" : "project",
"license" : "proprietary",
"authors" : [
{
"name" : "Webgroup Media LLC",
"email" : "[email protected]",
"homepage" : "https://cerb.ai/",
"role" : "Developer / Publisher"
}, {
"name" : "Jeff Standen",
"email" : "[email protected]",
"homepage" : "https://cerb.ai/",
"role" : "Software Architect"
}
],
"config": {
"platform": {
"php": "8.2"
}
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/jstanden/horde-imap"
},
{
"type": "vcs",
"url": "https://github.com/jstanden/Twig"
}
],
"require" : {
"php": ">=8.2",
"ext-curl": "*",
"ext-dom": "*",
"ext-gd": "*",
"ext-json": "*",
"ext-libxml": "*",
"ext-mailparse": "*",
"ext-mbstring": "*",
"ext-mysqli": "*",
"ext-openssl": "*",
"ext-simplexml": "*",
"ext-yaml": "*",
"ext-zip": "*",
"smarty/smarty" : "^4.5.3",
"symfony/mailer": "^7.1",
"lcobucci/jwt": "^4.0",
"dragonmantank/cron-expression": "^2.3",
"onelogin/php-saml" : "^3.0",
"defuse/php-encryption" : "^2.1",
"league/oauth2-server": "^8.0",
"league/oauth2-client": "^2.3",
"guzzlehttp/guzzle": "^7.0",
"phpseclib/phpseclib": "^3.0.36",
"tijsverkoyen/css-to-inline-styles": "2.2.6",
"ezyang/htmlpurifier": "^4.17",
"erusev/parsedown": "^1.7",
"erusev/parsedown-extra": "^0.7.1",
"donatj/phpuseragentparser": "^1.0",
"twig/twig" : "dev-3.8.0-cerb",
"singpolyma/openpgp-php": "^0.7.0",
"horde/imap-client": "dev-2.30.6-cerb",
"ramsey/uuid": "^4.1",
"enshrined/svg-sanitize": "^0.15",
"sebastian/diff": "^4.0"
},
"require-dev" : {
"phpunit/phpunit": "^9"
},
"support" : {
"email" : "[email protected]",
"issues" : "https://github.com/jstanden/cerb/issues/",
"source" : "https://github.com/cerb/cerb-release/"
},
"scripts": {
"cache-clear": [
"rm -f storage/tmp/templates_c/*.php",
"rm -f storage/tmp/cache--*"
],
"test": [
"vendor/bin/phpunit --do-not-cache-result --bootstrap tests/bootstrap.platform.php -c tests/phpunit.cerb.platform.xml"
]
}
}