-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
39 lines (39 loc) · 1.19 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
{
"name": "nuvoleweb/drupal-component-scaffold",
"description": "Scaffolding Composer plugin for Drupal modules and themes.",
"type": "composer-plugin",
"license": "GPL-2.0+",
"keywords": ["drupal", "scaffold", "composer-plugin"],
"homepage": "https://github.com/nuvoleweb/drupal-component-scaffold",
"authors": [
{
"name": "Nuvole Web",
"email": "[email protected]"
}
],
"support": {
"issues": "https://github.com/nuvoleweb/drupal-component-scaffold/issues",
"source": "https://github.com/nuvoleweb/drupal-component-scaffold"
},
"require": {
"php": ">=5.6",
"composer-plugin-api": "^1.0.0",
"composer/installers": "^1.2",
"cweagans/composer-patches": "~1.0",
"drupal-composer/drupal-scaffold": "^2.3"
},
"require-dev": {
"composer/composer": "dev-master",
"phpro/grumphp": "^0.12",
"drupal/coder": "^8.2",
"phpunit/phpunit": "~5"
},
"autoload": {
"psr-4": {
"NuvoleWeb\\DrupalComponentScaffold\\": "src/"
}
},
"extra": {
"class": "NuvoleWeb\\DrupalComponentScaffold\\Plugin"
}
}