-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
32 lines (32 loc) · 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
{
"name": "drufony/drupal-bridge",
"description": "Symfony Drupal bridge",
"suggest": {
"bangpound/drupal-bootstrap": "Replace Drupal 7 bootstrap with a Pimple container",
"bangpound/legacy-php-http-kernel": "Run bad controllers on the Symfony kernel",
"symfony/class-loader": "Replace Drupal's class registry with Symfony's class loader",
"drufony/druplex": "Drupal inside Silex",
"drufony/drufony": "Drupal inside Symfony Standard Edition",
"guzzle/guzzle": "Replace Drupal's HTTP function with Guzzle"
},
"require-dev": {
"composer/composer": "~1.0@dev",
"guzzle/guzzle": "~3.8",
"symfony/filesystem": "~2.5"
},
"license": "MIT",
"authors": [
{
"name": "Benjamin Doherty",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": { "Drufony\\Bridge\\": "" }
},
"extra": {
"branch-alias": {
"dev-develop": "1.3.x-dev"
}
}
}