forked from National-Theatre/drupal-phpunit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
34 lines (34 loc) · 928 Bytes
/
composer.json
File metadata and controls
34 lines (34 loc) · 928 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": "NT/drupal-phpunit",
"description": "A library to integrate PHPUnit with Drupal 7",
"keywords": ["testing", "phpunit", "drupal"],
"type": "library",
"authors": [
{
"name": "Royal National Theatre",
"email": "NTCI@users.noreply.github.com"
}
],
"require": {
"php": ">=5.6",
"phpunit/phpunit": "^6.5@stable",
"behat/behat": "2.*@stable",
"behat/mink": "1.*@stable",
"behat/mink-extension": "*"
},
"require-dev": {
"dealerdirect/phpcodesniffer-composer-installer": "^0.4.4",
"drupal/coder": "^8@stable",
"pheromone/phpcs-security-audit": "^1@stable",
"squizlabs/php_codesniffer": "^2@stable"
},
"autoload": {
"psr-0": {
"NT\\Drupal\\Testing": "src"
},
"classmap": [
"src/NT/Drupal/Testing/PHPUnit/",
"src/NT/Drupal/Testing/Fixtures/"
]
}
}