-
Notifications
You must be signed in to change notification settings - Fork 20
/
composer.json
39 lines (39 loc) · 1.1 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
{
"name": "ekino/drupal-bundle",
"type": "symfony-bundle",
"description": "Integrate Symfony2 with Drupal",
"keywords": ["components", "drupal"],
"homepage": "https://github.com/ekino/EkinoDrupalBundle",
"license": "MIT",
"authors": [
{
"name": "Thomas Rabaix",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.5.9",
"doctrine/common": "^2.6",
"doctrine/orm": "^2.5",
"friendsofsymfony/user-bundle": "^2.1",
"psr/log": "^1.1",
"symfony/config": "^3.4",
"symfony/dependency-injection": "^3.4",
"symfony/event-dispatcher": "^3.4",
"symfony/http-foundation": "^3.4",
"symfony/http-kernel": "^3.4",
"symfony/security-core": "^3.4",
"twig/twig": "^1.42"
},
"autoload": {
"psr-0": { "Ekino\\Bundle\\DrupalBundle": "" }
},
"target-dir": "Ekino/Bundle/DrupalBundle",
"require-dev": {
"phpunit/phpunit": "^4.8",
"symfony/phpunit-bridge": "^4.3"
},
"config": {
"sort-packages": true
}
}