(Grav GitSync) Automatic Commit from smokephil
This commit is contained in:
parent
aa7c652b62
commit
a0f654c4c7
113 changed files with 3204 additions and 0 deletions
25
plugins/devtools/components/plugin/flex/composer.json.twig
Normal file
25
plugins/devtools/components/plugin/flex/composer.json.twig
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
{% set githubid = component.author.githubid ?: component.author.name|hyphenize -%}
|
||||
{
|
||||
"name": "{{ githubid|lower }}/{{ component.name|hyphenize }}",
|
||||
"type": "grav-plugin",
|
||||
"description": "{{ component.description }}",
|
||||
"keywords": ["plugin"],
|
||||
"homepage": "https://github.com/{{ githubid }}/grav-plugin-{{ component.name|hyphenize }}",
|
||||
"license": "MIT",
|
||||
"authors": [
|
||||
{
|
||||
"name": "{{ component.author.name }}",
|
||||
"email": "{{ component.author.email }}",
|
||||
"role": "Developer"
|
||||
}
|
||||
],
|
||||
"require": {
|
||||
"php": ">=7.1.3"
|
||||
},
|
||||
"autoload": {
|
||||
"psr-4": {
|
||||
"Grav\\Plugin\\{{ component.name|camelize }}\\": "classes/"
|
||||
},
|
||||
"classmap": ["{{ component.name|hyphenize }}.php"]
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue