-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathcomposer.json
More file actions
55 lines (55 loc) · 1.72 KB
/
composer.json
File metadata and controls
55 lines (55 loc) · 1.72 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "chapabu/codeception-module-drupal",
"description": "A module for Codeception that exposes the Drupal API to test suites.",
"license": "MIT",
"authors": [
{
"name": "Chapabu",
"email": "chapabu101@gmail.com"
}
],
"keywords": ["codeception", "test", "testing", "drupal"],
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"codeception/codeception": "2.*"
},
"autoload": {
"psr-4": {
"Codeception\\": "src"
}
},
"autoload-dev": {
"files": [
"tests/unit/Drupal7/Drupal7AssertionCestBase.php",
"vendor/codeception/codeception/tests/unit/Codeception/Command/BaseCommandRunner.php"
]
},
"suggest": {
"chriscohen/codeception-drupal-pages": "A Codeception module to provide standard Drupal page objects.",
"chriscohen/codeception-drupal-content-types": "A Codeception module to provide Drupal content types support.",
"pfaocle/codeception-module-drupal-user-registry": "A Codeception module for managing test users."
},
"require-dev": {
"squizlabs/php_codesniffer": "2.1.0",
"satooshi/php-coveralls": "dev-master",
"mikey179/vfsStream": "1.4.*",
"phpspec/prophecy": "~1.3@dev"
},
"repositories": [
{
"type": "package",
"package": {
"name": "drupal/drupal",
"version": "7.34",
"dist": {
"type": "zip",
"url": "http://ftp.drupal.org/files/projects/drupal-7.34.zip"
}
}
}
],
"scripts": {
"testinit": "./testinit.sh"
}
}