forked from secit-pl/imap-bundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
33 lines (33 loc) · 849 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
{
"name": "secit-pl/imap-bundle",
"type": "symfony-bundle",
"description": "PHP-IMAP Symfony integration.",
"keywords": ["imap", "php-imap", "symfony", "bundle"],
"homepage": "https://secit.pl",
"license": "MIT",
"authors": [
{
"name": "Tomasz Gemza",
"email": "[email protected]"
}
],
"require": {
"php": ">=8.1",
"ext-fileinfo": "*",
"ext-iconv": "*",
"ext-imap": "*",
"ext-mbstring": "*",
"ext-json": "*",
"symfony/framework-bundle": "^6.4|^7.0",
"symfony/dependency-injection": "^6.4|^7.0",
"php-imap/php-imap": "^4.4|^5.0"
},
"autoload": {
"psr-4": { "SecIT\\ImapBundle\\": "" }
},
"extra": {
"branch-alias": {
"dev-master": "2.0-dev"
}
}
}