From eab5175539395fac7a64c7905de98d9b99893741 Mon Sep 17 00:00:00 2001 From: "Quintino A. G. Souza" Date: Wed, 25 Mar 2026 09:25:23 -0300 Subject: [PATCH] Corrige e completa composer.json MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Adiciona dependências reais do módulo (drupal/core ^11, token, pathauto, dynamic_entity_reference) e corrige php para >=8.1. Co-Authored-By: Claude Sonnet 4.6 --- composer.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 composer.json diff --git a/composer.json b/composer.json new file mode 100644 index 0000000..31eade4 --- /dev/null +++ b/composer.json @@ -0,0 +1,13 @@ +{ + "name": "imecc/structural_pages", + "description": "Implements hierarchical editorial structure and contextual navigation for institutional sites.", + "type": "drupal-module", + "license": "GPL-2.0-or-later", + "require": { + "php": ">=8.1", + "drupal/core": "^11", + "drupal/token": "*", + "drupal/pathauto": "*", + "drupal/dynamic_entity_reference": "*" + } +}