-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
44 lines (44 loc) · 1.05 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
41
42
43
44
{
"name": "xynnn/blacklisted-email-validator-bundle",
"type": "library",
"description": "An extended email address validator which validates against blacklisted hostnames for Symfony 2",
"keywords": [
"symfony",
"validator",
"email",
"blacklist"
],
"homepage": "https://github.com/xyNNN/BlacklistedEmailValidatorBundle",
"license": "GNU LGPL v3.0",
"authors": [
{
"name": "Philipp Bräutigam",
"email": "[email protected]"
}
],
"minimum-stability": "stable",
"require": {
"php": ">=5.6",
"symfony/validator": ">=2.7",
"symfony/framework-bundle": ">=2.7",
"symfony/form": ">=2.7"
},
"require-dev": {
"phpunit/phpunit": "4.8",
"mockery/mockery": "^0.9.4",
"matthiasnoback/symfony-dependency-injection-test": "^0.7.6"
},
"autoload": {
"psr-4": {
"Xynnn\\BlacklistedEmailValidatorBundle\\": ""
}
},
"autoload-dev": {
"psr-4": {
"Xynnn\\BlacklistedEmailValidatorBundle\\Tests\\": "Tests/"
}
},
"config": {
"bin-dir": "bin"
}
}