forked from drupal-composer/drupal-parse-composer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
49 lines (49 loc) · 1.19 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
42
43
44
45
46
47
48
49
{
"name": "drupal/parse-composer",
"authors": [
{
"name": "Will Milton",
"email": "[email protected]"
}
],
"repositories": [
{
"type": "composer",
"url": "http://packages.zendframework.com/"
},
{
"type": "package",
"package": {
"name": "drupal/drupal",
"version": "7.28.0",
"dist":
{
"url": "http://ftp.drupal.org/files/projects/drupal-7.28.zip",
"type": "zip"
}
}
}
],
"autoload": {
"psr-4": {
"Drupal\\ParseComposer\\": "src/"
},
"files": [
"bootstrap.php"
]
},
"require": {
"php": ">=5.4",
"drupal/drupal": "7.*",
"guzzle/guzzle": "*"
},
"minimum-stability": "dev",
"require-dev": {
"phpspec/phpspec": "2.*",
"phpunit/phpunit": "4.4.*",
"symfony/symfony": "2.3.*",
"composer/composer": "dev-master",
"squizlabs/php_codesniffer": "2.*",
"leaphub/phpcs-symfony2-standard": "dev-master"
}
}