Commits on Source (9)
-
-
Issue #2886164 by dipesh_goswami, jayesh_makwana, nitin_lama, akshaydalvi212, mrinalini9, svendecabooter: Coding Standard issues
-
Sven Decabooter authored
-
Istvan Reszler-Fekete authored
Issue #3393182: TypeError: htmlspecialchars(): Argument #1 ($string) must be of type string, array given in htmlspecialchars()
-
Project-Update-bot authored
-
-
Sven Decabooter authored
-
Sven Decabooter authored
Issue #3393182 by reszli: TypeError: htmlspecialchars(): Argument #1 ($string) must be of type string, array given in htmlspecialchars()
-
Sven Decabooter authored
Showing
- .gitlab-ci.yml 107 additions, 0 deletions.gitlab-ci.yml
- README.md 10 additions, 6 deletionsREADME.md
- composer.json 10 additions, 5 deletionscomposer.json
- config/install/video_embed_html5.config.yml 1 addition, 1 deletionconfig/install/video_embed_html5.config.yml
- css/video-embed-html5-thumbnails.css 3 additions, 3 deletionscss/video-embed-html5-thumbnails.css
- js/video-embed-html5-thumbnails.js 34 additions, 22 deletionsjs/video-embed-html5-thumbnails.js
- src/Form/VideoEmbedHtml5ConfigForm.php 24 additions, 19 deletionssrc/Form/VideoEmbedHtml5ConfigForm.php
- src/Plugin/video_embed_field/Provider/Html5.php 96 additions, 45 deletionssrc/Plugin/video_embed_field/Provider/Html5.php
- templates/video-embed-html5.html.twig 2 additions, 2 deletionstemplates/video-embed-html5.html.twig
- tests/src/Unit/ProviderUrlParseTest.php 5 additions, 3 deletionstests/src/Unit/ProviderUrlParseTest.php
- video_embed_html5.info.yml 1 addition, 2 deletionsvideo_embed_html5.info.yml
- video_embed_html5.install 6 additions, 1 deletionvideo_embed_html5.install
- video_embed_html5.module 8 additions, 6 deletionsvideo_embed_html5.module
.gitlab-ci.yml
0 → 100644
... | @@ -4,10 +4,15 @@ | ... | @@ -4,10 +4,15 @@ |
"type": "drupal-module", | "type": "drupal-module", | ||
"homepage": "https://www.drupal.org/project/video_embed_html5", | "homepage": "https://www.drupal.org/project/video_embed_html5", | ||
"license": "GPL-2.0+", | "license": "GPL-2.0+", | ||
"extra": { | "require": { | ||
"drupal": { | "php": ">=8.0", | ||
"package": " Video Embed Field", | "drupal/video_embed_field": "^2.5", | ||
"version": "8.x-1.x" | "drupal/core": "^9.2 || ^10 || ^11" | ||
} | }, | ||
"require-dev": { | |||
"drupal/php_ffmpeg": "1.x-dev" | |||
}, | |||
"suggest": { | |||
"drupal/php_ffmpeg": "For server side generation of video thumbnails" | |||
} | } | ||
} | } |