-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathcomposer.json
46 lines (46 loc) · 929 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
43
44
45
46
{
"name": "mmucklo/email-parse",
"type": "library",
"description": "email-parse a (reasonably) RFC822 / RF2822-compliant library for batch parsing multiple (and single) email addresses",
"license": "MIT",
"keywords": [
"email",
"parse",
"RFC822",
"RFC2822",
"email-parse",
"multiple-email",
"batch-email"
],
"authors": [
{
"name": "Matthew J. Mucklo",
"email": "[email protected]"
}
],
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.65",
"phpunit/phpunit": "^9.6",
"symfony/yaml": "^7.2"
},
"require": {
"php": "^8.2",
"ext-mbstring": "*",
"laminas/laminas-validator": "^3.0",
"psr/log": "^3.0",
"symfony/polyfill-intl-idn": "^1.31"
},
"autoload": {
"psr-4": {
"Email\\": "src/"
}
},
"config": {
"bin-dir": "bin"
},
"autoload-dev": {
"psr-4": {
"Email\\Tests\\": "tests/"
}
}
}