-
Notifications
You must be signed in to change notification settings - Fork 5
/
composer.json
41 lines (41 loc) · 1.09 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
{
"name": "phpmvd/phpday-website",
"description": "Sitio web para la organizacion del phpday.uy",
"type": "website",
"require": {
"silex/silex": "~1.3",
"symfony/twig-bridge": "~2.7",
"symfony/translation": "~2.7",
"symfony/config": "~2.7",
"symfony/yaml": "~2.7",
"symfony/form": "~2.7",
"symfony/validator": "~2.7",
"symfony/security-csrf": "~2.7",
"saxulum/saxulum-doctrine-mongodb-provider": "~1.0",
"guzzlehttp/guzzle": "^5.3",
"twig/extensions": "^1.2",
"swiftmailer/swiftmailer": "^5.4"
},
"license": "MIT",
"authors": [
{
"name": "Ismael Ambrosi",
"email": "[email protected]"
}
],
"autoload": {
"psr-0": { "": "src/" }
},
"autoload-dev": {
"psr-0": { "": "tests/functional" }
},
"minimum-stability": "stable",
"config": {
"bin-dir": "bin"
},
"require-dev": {
"phpunit/phpunit": "~4.6",
"symfony/browser-kit": "~2.6",
"symfony/css-selector": "~2.6"
}
}