Showing
- .gitignore 4 additions, 0 deletions.gitignore
- .gitlab-ci.yml 29 additions, 0 deletions.gitlab-ci.yml
- block_button_modal.module 6 additions, 2 deletionsblock_button_modal.module
- composer.json 72 additions, 0 deletionscomposer.json
- js/block_button_modal_block.js 11 additions, 7 deletionsjs/block_button_modal_block.js
.gitignore
0 → 100644
.gitlab-ci.yml
0 → 100644
composer.json
0 → 100644
{ | ||
"name": "drupal/block_button_modal", | ||
"type": "drupal-module", | ||
"description": "The Block Button Modal module allows you to show a block\u0027s content in a modal dialog.", | ||
"license": "GPL-2.0-or-later", | ||
"repositories": { | ||
"drupal": { | ||
"type": "composer", | ||
"url": "https://packages.drupal.org/8" | ||
} | ||
}, | ||
"require-dev": { | ||
"composer/installers": "^1 || ^2", | ||
"drupal/core-composer-scaffold": "10.2.x-dev", | ||
"cweagans/composer-patches": "~1.0", | ||
"drupal/core-recommended": "10.2.x-dev", | ||
"drupal/core-dev": "10.2.x-dev", | ||
"php-parallel-lint/php-parallel-lint": "^1.2", | ||
"drush/drush": "^12.5" | ||
}, | ||
"minimum-stability": "dev", | ||
"prefer-stable": true, | ||
"config": { | ||
"process-timeout": 36000, | ||
"allow-plugins": { | ||
"dealerdirect/phpcodesniffer-composer-installer": true, | ||
"composer/installers": true, | ||
"cweagans/composer-patches": true, | ||
"drupal/core-composer-scaffold": true, | ||
"drupalspoons/composer-plugin": true, | ||
"phpstan/extension-installer": true | ||
} | ||
}, | ||
"extra": { | ||
"installer-paths": { | ||
"web/core": [ | ||
"type:drupal-core" | ||
], | ||
"web/libraries/{$name}": [ | ||
"type:drupal-library" | ||
], | ||
"web/modules/contrib/{$name}": [ | ||
"type:drupal-module" | ||
], | ||
"web/profiles/{$name}": [ | ||
"type:drupal-profile" | ||
], | ||
"web/themes/{$name}": [ | ||
"type:drupal-theme" | ||
], | ||
"drush/{$name}": [ | ||
"type:drupal-drush" | ||
] | ||
}, | ||
"drupal-scaffold": { | ||
"locations": { | ||
"web-root": "web/" | ||
} | ||
}, | ||
"drush": { | ||
"services": { | ||
"drush.services.yml": "^9 || ^10 || ^11" | ||
} | ||
} | ||
}, | ||
"authors": [ | ||
{ | ||
"name": "Ruud Simons", | ||
"email": "ruud@groowup.nl" | ||
} | ||
] | ||
} |
Please register or sign in to comment