-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
42 lines (42 loc) · 1.04 KB
/
composer.json
File metadata and controls
42 lines (42 loc) · 1.04 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
39
40
41
42
{
"name": "mailboxvalidator/mailboxvalidator-bundle",
"type": "symfony-bundle",
"description": "Symfony bundle that used MailboxValidator API to validate email in form.",
"keywords": [
"Symfony",
"validator",
"email",
"mailboxvalidator",
"email validation",
"bundle"
],
"homepage": "https://www.mailboxvalidator.com",
"license": "MIT",
"authors": [
{
"name": "MailboxValidator",
"email": "support@mailboxvalidator.com"
}
],
"require": {
"php": ">=5.3",
"symfony/framework-bundle": "^7.2",
"mailboxvalidator/mailboxvalidator-php": "2.*.*"
},
"require-dev": {
"phpunit/phpunit": "7.5.*",
"symfony/framework-bundle": "^7.2",
"mailboxvalidator/mailboxvalidator-php": "2.*.*"
},
"autoload": {
"psr-4": {
"MailboxValidatorBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"MailboxValidatorBundle\\Tests\\": "Tests/"
}
},
"version": "2.1.1"
}