-
Notifications
You must be signed in to change notification settings - Fork 41
Expand file tree
/
Copy pathcomposer.json
More file actions
38 lines (38 loc) · 1.03 KB
/
Copy pathcomposer.json
File metadata and controls
38 lines (38 loc) · 1.03 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
{
"name": "hfig/mapi",
"description": "Pure PHP library for reading and manipulating Microsoft Outlook .msg messages (MAPI documents)",
"license": "MIT",
"require": {
"php": "^8.1",
"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": "^10.0",
"pear/pear-core-minimal": "^1.10.10",
"friendsofphp/php-cs-fixer": "^3.64",
"phpstan/phpstan": "^2.0"
},
"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"
}
},
"conflict": {
"pear/console_getopt": "<1.4.3"
}
}