-
- Downloads
docker4drupal#24 Initial version of the ahoy plugin
parents
No related branches found
No related tags found
Showing
- .editorconfig 17 additions, 0 deletions.editorconfig
- .gitignore 2 additions, 0 deletions.gitignore
- .gitlab-ci.yml 3 additions, 0 deletions.gitlab-ci.yml
- composer.json 58 additions, 0 deletionscomposer.json
- src/Handler.php 90 additions, 0 deletionssrc/Handler.php
- src/Plugin.php 63 additions, 0 deletionssrc/Plugin.php
.editorconfig
0 → 100644
.gitignore
0 → 100644
.gitlab-ci.yml
0 → 100644
composer.json
0 → 100644
{ | |||
"name": "lakedrops/ahoy", | |||
"description": "This plugin collects available ahoy scripts from installed LakeDrops plugins and configures ahy in the project root.", | |||
"type": "composer-plugin", | |||
"keywords": [ | |||
"Ahoy", | |||
"Drupal", | |||
"Development", | |||
"Install", | |||
"Update" | |||
], | |||
"homepage": "https://gitlab.lakedrops.com/composer/plugin/ahoy", | |||
"license": "GPL-2.0+", | |||
"authors": [ | |||
{ | |||
"name": "Jürgen Haas", | |||
"email": "juergen@paragon-es.de", | |||
"homepage": "https://www.paragon-es.de", | |||
"role": "Drupal Expert" | |||
}, | |||
{ | |||
"name": "Richard Papp", | |||
"email": "richard.papp@boromino.com", | |||
"homepage": "http://www.boromino.com", | |||
"role": "Drupal Expert" | |||
} | |||
], | |||
"support": { | |||
"issues": "https://gitlab.lakedrops.com/composer/plugin/ahoy/issues", | |||
"source": "https://gitlab.lakedrops.com/composer/plugin/ahoy/tree/master" | |||
}, | |||
"require": { | |||
"composer-plugin-api": "^1.0.0", | |||
"lakedrops/composer-json-utils": "^0.1" | |||
}, | |||
"require-dev": { | |||
"composer/composer": "^1.5.0", | |||
"phpunit/phpunit": "^4.8.0" | |||
}, | |||
"minimum-stability": "dev", | |||
"prefer-stable": true, | |||
"autoload": { | |||
"psr-4": { | |||
"LakeDrops\\Ahoy\\": "src/" | |||
} | |||
}, | |||
"extra": { | |||
"class": "LakeDrops\\Ahoy\\Plugin", | |||
"lakedrops": { | |||
"scripts": { | |||
"lakedrops-ahoy": { | |||
"callback": "LakeDrops\\Ahoy\\Plugin::scripts", | |||
"description": "Scan LakeDrops plugins for ahoy scripts." | |||
} | |||
} | |||
} | |||
} | |||
} |
src/Handler.php
0 → 100644
src/Plugin.php
0 → 100644
Please register or sign in to comment