forked from janschumann/drupal-dic
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
executable file
·41 lines (40 loc) · 1.06 KB
/
composer.json
File metadata and controls
executable file
·41 lines (40 loc) · 1.06 KB
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": "janschumann/dic",
"type": "drupal-module",
"description": "Integrates Symfony´s dependency injection container with drupal.",
"keywords": ["drupal", "web"],
"homepage": "https://github.com/janschumann/drupal-dic",
"license": "MIT",
"authors": [
{
"name": "Jan Schumann",
"homepage": "https://github.com/janschumann"
},
{
"name": "Mike Lohmann",
"homepage": "http://deck36.de"
}
],
"repositories": [
{
"type": "git",
"url": "https://github.com/janschumann/drupal-composer-classloader.git"
}
],
"require": {
"php": ">=5.3.3",
"symfony/config": "2.4.*",
"symfony/dependency-injection": "2.4.*",
"symfony/filesystem": "2.4.*",
"symfony/http-kernel": "2.4.*",
"janschumann/classloader_composer": "dev-master"
},
"require-dev": {
"phpunit/phpunit": "3.7.*"
},
"autoload": {
"psr-0": {
"Drupal\\Dic": "src/"
}
}
}