-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
32 lines (32 loc) · 796 Bytes
/
composer.json
File metadata and controls
32 lines (32 loc) · 796 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
{
"name": "luketarplin/drupalmoduleskeleton",
"version" : "dev",
"minimum-stability": "stable",
"description": "Create a Skeleton Drupal 8 Module",
"keywords": ["Drupal","Drupal 8","CMS","Module","Skeleton","Generator"],
"authors": [
{
"name": "Luke Alexander Tarplin",
"email": "luke.tarplin@gmail.com"
}
],
"type": "composer-plugin",
"require": {
"composer-plugin-api": "^1.0",
"symfony/yaml": "*"
},
"autoload": {
"psr-0": {
"luketarplin": ""
}
},
"scripts": {
"drupal:create:module": "luketarplin\\drupalmoduleskeleton\\CreateModule::runTask"
},
"extra": {
"class": [
"luketarplin\\drupalmoduleskeleton\\DrupalModuleSkeletonInstallerPlugin"
]
},
"license": "MIT"
}