forked from liip/LiipDrupalConnectorModule
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
34 lines (30 loc) · 918 Bytes
/
composer.json
File metadata and controls
34 lines (30 loc) · 918 Bytes
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": "liip/drupalconnectormodule",
"description": "The DrupalConnector Module is an abstraction layer to the Drupal 7 API of global functions in order to use them in an OOD setup.",
"type": "drupal-module",
"minimum-stability": "dev",
"license": "MIT",
"keywords": [ "Drupal", "adapter", "oop", "Drupal 7", "ood", "testing", "tdd", "software quality"],
"authors": [
{
"name": "Bastian Feder",
"email": "bastian.feder@liip.ch",
"role": "maintainer"
},
{
"name": "Daniel Barsotti",
"email": "daniel.barsotti@liip.ch",
"role": "maintainer"
}
],
"autoload": {
"psr-0": {
"Liip\\Drupal\\Modules\\DrupalConnector": "src/"
}
},
"repositories": [],
"require": {
"php": ">=5.3,<5.4",
"composer/installers": "v1.0.0"
}
}