-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
27 lines (27 loc) · 786 Bytes
/
composer.json
File metadata and controls
27 lines (27 loc) · 786 Bytes
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
{
"name": "fsc/email-filter-bundle",
"description": "A bundle with a validator to exclude mails of mails domain names.",
"keywords": ["symfony", "bundle", "email", "validator"],
"type": "symfony-bundle",
"license": "MIT",
"authors": [
{
"name": "The Football Social Club",
"email": "contact@thefootballsocialclub.com",
"homepage": "http://thefootballsocialclub.com"
}
],
"require": {
"php": ">=5.3",
"symfony/framework-bundle": "2.*",
"symfony/validator": "2.*"
},
"require-dev": {
"symfony/yaml": "2.*"
},
"autoload": {
"psr-0": { "FSC\\EmailFilterBundle": "" }
},
"target-dir": "FSC/EmailFilterBundle",
"minimum-stability": "dev"
}