-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
42 lines (42 loc) · 978 Bytes
/
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
{
"name": "bfitech/zapmin-smtp",
"description": "SMTP extension for zapmin.",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Rendra Suroso",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.0 <7.5",
"bfitech/zapmin": "2.3.*",
"phpmailer/phpmailer": "6.1.*"
},
"require-dev": {
"phpunit/phpunit": "6.*"
},
"suggest": {
"bfitech/zapstore-mysql": "Use MySQL as database backend.",
"bfitech/zapstore-pgsql": "Use PostgreSQL as database backend.",
"bfitech/zapstore-redis": "Use Redis as additional backend.",
"bfitech/zapstore-predis": "Use Predis as additional backend."
},
"autoload": {
"psr-4": {
"BFITech\\ZapAdmin\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"BFITech\\ZapAdminDev\\": "dev",
"BFITech\\ZapCoreDev\\": "vendor/bfitech/zapcore/dev"
}
},
"extra": {
"branch-alias": {
"dev-master": "2.3.x-dev"
}
}
}