-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
40 lines (34 loc) · 1.13 KB
/
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
{
"name" : "ocubom/email-address",
"description" : "Email address value object checked against RFC 3696, RFC 1123, RFC 4291, RFC 5321 and RFC 5322.",
"keywords" : [ "address", "email", "validator", "RFC 1123", "RFC 3696", "RFC 4291", "RFC 5321", "RFC 5322", "RFC1123", "RFC3696", "RFC4291", "RFC5321", "RFC5322" ],
"homepage" : "http://github.com/ocubom/email-address",
"license" : "MIT",
"authors" : [{
"name" : "Oscar Cubo Medina",
"homepage" : "http://ocubom.github.io"
}],
"support" : {
"issues" : "http://github.com/ocubom/email-address/issues",
"source" : "http://github.com/ocubom/email-address"
},
"require": {
"php": ">=5.3.3",
"dominicsayers/isemail": "^3.0"
},
"require-dev": {
"phpunit/phpunit": "~4.0"
},
"autoload": {
"psr-4": { "Ocubom\\Email\\": "src/" }
},
"autoload-dev": {
"psr-4": { "Ocubom\\Email\\Tests\\": "tests/" }
},
"extra": {
"branch-alias": { "dev-master": "2.0.x-dev" }
},
"archive": {
"exclude": [ "tests", "*phpunit.xml*", "composer.phar" ]
}
}