-
Notifications
You must be signed in to change notification settings - Fork 14
/
composer.json
56 lines (56 loc) · 2.15 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
{
"name": "drupal/cloudflare",
"type": "drupal-module",
"description": "Drupal module for interacting with CloudFlare's SDK. CloudFlare is a copyright of CloudFlare, Inc. The authors of this tool has no association with CloudFlare, Inc.",
"keywords": ["Drupal", "CloudFlare", "Cloud Flare", "CDN"],
"homepage": "https://github.com/d8-contrib-modules/cloudflare",
"license": "GPL-2.0+",
"minimum-stability": "dev",
"prefer-stable": true,
"repositories": [
{
"type": "composer",
"url": "https://packages.drupal.org/8"
}
],
"extra": {
"installer-paths": {
"docroot/core": ["type:drupal-core"],
"docroot/modules/contrib/{$name}": ["type:drupal-module"],
"docroot/profiles/contrib/{$name}": ["type:drupal-profile"],
"docroot/themes/contrib/{$name}": ["type:drupal-theme"],
"drush/contrib/{$name}": ["type:drupal-drush"]
}
},
"require": {
"d8-contrib-modules/cloudflarephpsdk": "^1",
"drupal/ctools": "^3.0"
},
"require-dev": {
"drupal-composer/drupal-scaffold": "^2.0.0",
"composer/installers": "^1.0.20",
"drupal/core": "8.*",
"drush/drush": "^9.0",
"drupal/drupal-extension": "^3.1",
"jakoch/phantomjs-installer": "1.9.8",
"behat/behat": "^3.0",
"drupal/coder": "^8.2",
"lakion/mink-debug-extension": "^1.0.3",
"phpunit/phpunit": "~4.8",
"squizlabs/php_codesniffer": "~2",
"drupal/purge": "^3.0@beta"
},
"scripts": {
"post-install-cmd": [
"PhantomInstaller\\Installer::installPhantomJS"
],
"drupal-scaffold": "DrupalComposer\\DrupalScaffold\\Plugin::scaffold",
"phpcs": "./vendor/bin/phpcs . --standard=vendor/drupal/coder/coder_sniffer/Drupal/ruleset.xml --ignore=\"vendor,docroot,*.md\"",
"phpcbf": "./vendor/bin/phpcbf . --standard=vendor/drupal/coder/coder_sniffer/Drupal/ruleset.xml --ignore=\"vendor,docroot,*.md\""
},
"autoload-dev": {
"psr-4": {
"Drupal\\Tests\\PHPUnit\\": "tests/phpunit/src/"
}
}
}