-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathcomposer.json
33 lines (32 loc) · 1.27 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
{
"name": "drupal/pantheon_advanced_page_cache",
"type": "drupal-module",
"require-dev": {
"drupal/coder": "^8.2",
"drupal/drupal-extension": "^3.3",
"phpunit/phpunit": "^6.3"
},
"scripts": {
"codesniff": [
"phpcs --report=full --extensions=php,module,inc,theme,info,install --standard=vendor/drupal/coder/coder_sniffer/Drupal src",
"phpcs --report=full --extensions=php,module,inc,theme,info,install --standard=vendor/drupal/coder/coder_sniffer/Drupal tests/modules",
"phpcs tests/behat --standard=PSR2"
],
"phpcbf": [
"phpcbf --report=full --extensions=php,module,inc,theme,info,install --standard=vendor/drupal/coder/coder_sniffer/Drupal src",
"phpcbf --report=full --extensions=php,module,inc,theme,info,install --standard=vendor/drupal/coder/coder_sniffer/Drupal tests/modules",
"phpcbf tests/behat --standard=PSR2"
],
"phpunit": "phpunit tests --colors=always"
},
"repositories": {
"drupal": {
"type": "composer",
"url": "https://packages.drupal.org/8"
}
},
"minimum-stability": "stable",
"autoload": {
"psr-4": { "PantheonSystems\\CDNBehatHelpers\\": "tests/behat/helper_classes/" }
}
}