-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
84 lines (84 loc) · 2.39 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
{
"_comment_git_wrapper": "Master branch of git-wrapper has a fix for backwards compatibility with older versions of git. Revert to stable when 1.7.1 is released.",
"require": {
"continuousphp/aws-sdk-phing": "~0.1",
"continuousphp/phing-tasks": "~0.1.3",
"continuousphp/sdk": "~0.3.2",
"cpliakas/git-wrapper": "dev-master as 1.7.1",
"drupal/coder": "dev-8.x-2.x",
"drupal/drupal-extension": "~3.1.5",
"drupal/phing-drush-task": "1.0",
"drush/drush": "~8.0",
"ext-json": "*",
"ext-phar": "*",
"ext-xml": "*",
"pear/archive_tar": "^1.4@dev",
"pear/versioncontrol_git": "dev-master",
"pfrenssen/phpcs-pre-push": "1.0",
"phing/phing": "~2.10",
"php": ">=5.4.0",
"typhonius/behattask": "1.0"
},
"_comment_minimum_stability": "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": "https://git.drupal.org/project/coder.git"
},
{
"type": "package",
"package": {
"name": "drupal/phing-drush-task",
"version": "1.0",
"source": {
"url": "https://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/"
}
}