-
Notifications
You must be signed in to change notification settings - Fork 41
/
composer.json
33 lines (33 loc) · 911 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": "hfig/mapi",
"description": "Pure PHP library for reading and manipulating Microsoft Outlook .msg messages (MAPI documents)",
"license": "MIT",
"require": {
"php": "^7.1||^8.0",
"ext-bcmath": "*",
"ext-mbstring": "*",
"pear/ole": "^1.0",
"symfony/yaml": "^4.1||^5.0||^6.0||^7.0",
"ramsey/uuid": "^3.8||^4.0",
"psr/log": "^1.0||^2.0||^3.0"
},
"require-dev": {
"swiftmailer/swiftmailer": "^6.1",
"phpunit/phpunit": "^8.3",
"pear/pear-core-minimal": "^1.10"
},
"suggest": {
"swiftmailer/swiftmailer": "Conversion to MIME (eml file) message format"
},
"prefer-stable": true,
"autoload": {
"psr-4": {
"Hfig\\MAPI\\": "src/MAPI"
}
},
"autoload-dev": {
"psr-4": {
"Hfig\\MAPI\\Tests\\": "tests/MAPI"
}
}
}