-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
34 lines (34 loc) · 940 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
{
"name": "instaclick/base-mail-bundle",
"description": "This Bundle provides mail support for Symfony2 applications",
"keywords": ["mail", "mail bouncer"],
"type": "symfony-bundle",
"license": "MIT",
"authors": [
{
"name": "InstaClick Inc.",
"homepage": "http://www.instaclick.com"
}
],
"require": {
"php": ">=5.3.2",
"symfony/twig-bundle": "~2.1",
"symfony/framework-bundle": "~2.1",
"symfony/swiftmailer-bundle": "~2.1",
"symfony/finder": "~2.1"
},
"require-dev": {
"instaclick/base-test-bundle": "dev-master",
"phpunit/phpunit": "~3.7"
},
"autoload": {
"psr-0": { "IC\\Bundle\\Base\\MailBundle": "" }
},
"target-dir": "IC/Bundle/Base/MailBundle",
"minimum-stability": "dev",
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev"
}
}
}