-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathcomposer.json
More file actions
54 lines (54 loc) · 1.6 KB
/
composer.json
File metadata and controls
54 lines (54 loc) · 1.6 KB
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
{
"autoload": {
"psr-4": {
"App\\": "src/"
}
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/particlebits/laminas-mail"
},
{
"type": "vcs",
"url": "https://github.com/particlebits/laminas-mime"
}
],
"require": {
"php": ">=7.2",
"ext-pdo": "*",
"ext-iconv": "*",
"ext-mbstring": "*",
"cboden/ratchet": "^0.4.2",
"evenement/evenement": "^3.0",
"laminas/laminas-mail": "@dev",
"laminas/laminas-mime": "@dev",
"laminas/laminas-servicemanager": "^3.4",
"league/climate": "^3.5",
"mkraemer/react-pcntl": "^3.0",
"monolog/monolog": "^1.25",
"neitanod/forceutf8": "^2.0",
"particle/validator": "^2.3",
"particlebits/imap": "^2.2",
"particlebits/pdo": "@dev",
"pimple/pimple": "^3.3",
"react/child-process": "^0.5.2",
"react/event-loop": "@dev",
"symfony/event-dispatcher": "^3.4"
},
"suggest": {
"ext-mysqlnd": "MySQL Native Driver",
"ext-intl": "Handle IDN in AddressList hostnames"
},
"bin": [
"sync",
"server",
"libremail"
],
"scripts": {
"fix": "tools/php-cs-fixer/vendor/bin/php-cs-fixer fix",
"lint": "tools/php-cs-fixer/vendor/bin/php-cs-fixer fix --dry-run --diff",
"phpstan": "tools/phpstan/vendor/bin/phpstan --memory-limit=1G analyse",
"phpstan-strict": "tools/phpstan/vendor/bin/phpstan --memory-limit=1G --level=6 analyse"
}
}