-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathcomposer.json
88 lines (88 loc) · 2.38 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"require": {
"behat/behat": "dev-fix-verbose-option as 3.0.x-dev",
"continuousphp/phing-tasks": "~0.1",
"drupal/coder": "dev-8.x-2.x",
"drupal/drupal-driver": "dev-master",
"drupal/drupal-extension": "dev-master",
"drupal/phing-drush-task": "1.0",
"drush/drush": "8.0.*@beta",
"ext-json": "*",
"ext-phar": "*",
"ext-xml": "*",
"pear/versioncontrol_git": "dev-master",
"pfrenssen/phpcs-pre-push": "1.0",
"phing/phing": "~2.10",
"php": ">=5.4.0",
"typhonius/behattask": "1.0",
"pear/archive_tar": "^1.4@dev",
"continuousphp/aws-sdk-phing": "~0.1"
},
"_comment": "Remove the 'minimum-stability' and 'prefer-stable' directives once new releases of Coder and PHP CodeSniffer are available.",
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"Drupal\\nexteuropa\\": "tests/src",
"NextEuropa\\": "src"
}
},
"repositories": [
{
"type": "vcs",
"url": "http://git.drupal.org/project/coder.git"
},
{
"_comment": "Temporary fork including fix for issue #765.",
"type": "vcs",
"url": "[email protected]:pfrenssen/Behat.git"
},
{
"type": "package",
"package": {
"name": "drupal/phing-drush-task",
"version": "1.0",
"source": {
"url": "http://git.drupal.org/project/phingdrushtask.git",
"type": "git",
"reference": "7.x-1.0"
},
"autoload": { "classmap": [ "DrushTask.php" ] },
"include-path": [ "." ]
}
},
{
"type": "package",
"package": {
"name": "typhonius/behattask",
"version": "1.0",
"source": {
"url": "https://gist.github.com/5719e15be9687ff7c138.git",
"type": "git",
"reference": "0ea666882cba3099dfa4feeb02e1bb85b2c0bde9"
},
"autoload": { "classmap": [ "BehatTask.php" ] },
"include-path": [ "." ]
}
},
{
"type": "package",
"package": {
"name": "pfrenssen/phpcs-pre-push",
"version": "1.0",
"type": "git-hook",
"source": {
"url": "https://gist.github.com/498fc52fea3f965f6640.git",
"type": "git",
"reference": "master"
}
}
}
],
"scripts": {
"post-install-cmd": "resources/scripts/composer/post-install.sh"
},
"config": {
"bin-dir": "bin/"
}
}