Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]
### Removed
- remove direct dependenceis on drupal/entity_browser
- remove direct dependenceis on drupal/pathauto
- remove direct dependenceis on drupal/feeds

## [1.3.0] - 2025-11-07
### Added
Expand Down
3 changes: 0 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,6 @@ RUN COMPOSER_MEMORY_LIMIT=-1 composer require "vaites/php-apache-tika:^1.2"
# Install drupal/paragraphs as required by entity_to_text_paragraphs
RUN COMPOSER_MEMORY_LIMIT=-1 composer config minimum-stability dev
RUN COMPOSER_MEMORY_LIMIT=-1 composer require "drupal/paragraphs:^1.14"
RUN COMPOSER_MEMORY_LIMIT=-1 composer require --dev "drupal/entity_browser"
RUN COMPOSER_MEMORY_LIMIT=-1 composer require --dev "drupal/feeds"
RUN COMPOSER_MEMORY_LIMIT=-1 composer require --dev "drupal/pathauto"

# Register the Drupal and DrupalPractice Standard with PHPCS.
#RUN ./vendor/bin/phpcs --config-set installed_paths \
Expand Down
8 changes: 3 additions & 5 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,14 +33,12 @@
"require-dev": {
"drupal/coder": "^8.3.1",
"drupal/paragraphs": "^1.14",
"vaites/php-apache-tika": "^1",
"drupal/feeds": "^3.0",
"drupal/pathauto": "^1.13",
"drupal/entity_browser": "^2.12"
"vaites/php-apache-tika": "^1"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
"dealerdirect/phpcodesniffer-composer-installer": true,
"drupal/core-composer-scaffold": true
}
}
}
1 change: 0 additions & 1 deletion drupalci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ build:
commands:
- cd ${SOURCE_DIR}
- sudo composer require "ezyang/htmlpurifier:^4.14" "drupal/paragraphs:^1.14" "vaites/php-apache-tika:^1.2" --no-scripts
- sudo composer require --dev "drupal/entity_browser" --no-scripts
run_tests.standard:
types: 'Simpletest,PHPUnit-Unit,PHPUnit-Kernel,PHPUnit-Functional'
run_tests.js:
Expand Down
Loading