Skip to content
Merged
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
Empty file removed .ddev/.env
Empty file.
7 changes: 4 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
runs-on: ubuntu-22.04

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7

- uses: shivammathur/setup-php@v2
with:
Expand All @@ -29,7 +29,7 @@ jobs:
mysql -uroot -proot -e "ALTER USER 'root'@'localhost' IDENTIFIED WITH mysql_native_password BY 'root';"

- name: Cache composer dependencies
uses: actions/cache@v4
uses: actions/cache@v6
with:
path: ~/.composer/cache
key: ${{ runner.os }}-composer-cache-${{ hashFiles('**/composer.json') }}
Expand All @@ -39,10 +39,11 @@ jobs:
run: |
composer config repositories.thunder git https://github.com/thunder/thunder-distribution.git
composer config repositories.paragraphs_features git https://github.com/thunder/paragraphs_features.git
composer config repositories.select2 git https://git.drupalcode.org/project/select2.git
composer config repositories.ivw git https://git.drupalcode.org/project/ivw_integration.git
composer config repositories.update_helper git https://git.drupalcode.org/project/update_helper.git
composer config repositories.thunder_testing_demo git https://github.com/thunder/thunder_testing_demo.git
composer config repositories.thunder_ai_prompt_management git https://git.drupalcode.org/project/thunder_ai_prompt_management.git
composer config repositories.ai_chatbot_assistant_ui git https://git.drupalcode.org/project/ai_chatbot_assistant_ui.git

- name: Install dependencies
run: |
Expand Down
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -16,3 +16,8 @@ composer.lock

.editorconfig
.gitattributes

.claude/settings.local.json
.claude/worktrees

.ddev/.env
27 changes: 21 additions & 6 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,13 +34,17 @@
"type": "git",
"url": "git@github.com:thunder/thunder-distribution.git"
},
"thunder_ai_prompt_management": {
"type": "git",
"url": "git@git.drupal.org:project/thunder_ai_prompt_management.git"
},
"paragraphs_features": {
"type": "git",
"url": "git@github.com:thunder/paragraphs_features.git"
},
"select2": {
"ai_chatbot_assistant_ui": {
"type": "git",
"url": "git@git.drupal.org:project/select2.git"
"url": "git@git.drupal.org:project/ai_chatbot_assistant_ui.git"
},
"ivw": {
"type": "git",
Expand Down Expand Up @@ -68,7 +72,13 @@
"netcarver/textile": "^3.7",
"drupal/default_content": "2.0.x-dev",
"mglaman/composer-drupal-lenient": "^1.0",
"drupal/core-recipe-unpack": "^11.3"
"drupal/core-recipe-unpack": "^11.3",
"drupal/thunder_ai": "^1.0",
"drupal/ai": "^1.5",
"drupal/entity_blueprint": "^1.0",
"drupal/field_widget_actions": "^1.4",
"drupal/tool_belt": "^1.0",
"drupal/ai_agents": "^1.0"
},
"require-dev": {
"drupal/core-dev": "^10 || ^11",
Expand All @@ -77,7 +87,8 @@
},
"replace": {
"drupal/paragraphs_features": "*",
"drupal/select2": "*",
"drupal/ai_chatbot_assistant_ui": "*",
"drupal/thunder_ai_prompt_management": "*",
"drupal/ivw_integration": "*",
"drupal/update_helper": "*",
"thunder/thunder_testing_demo": "*",
Expand Down Expand Up @@ -150,16 +161,20 @@
"merge-extra-deep": true
},
"local-develop-packages": {
"thunder/thunder-distribution": "8.3.x",
"thunder/thunder-distribution": "8.4.x",
"drupal/paragraphs_features": "2.x",
"drupal/select2": "2.x",
"drupal/ai_chatbot_assistant_ui": "1.0.x",
"drupal/thunder_ai_prompt_management": "1.0.x",
"drupal/ivw_integration": "8.x-2.x",
"drupal/update_helper": "4.0.x",
"thunder/thunder_testing_demo": "4.x"
},
"enable-patching": true
},
"config": {
"audit": {
"block-insecure": false
},
"process-timeout": 2000,
"allow-plugins": {
"composer/installers": true,
Expand Down
Loading