Skip to content
This repository was archived by the owner on Oct 8, 2025. It is now read-only.
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
3 changes: 2 additions & 1 deletion roles/composer/defaults/main.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
---
composer:
validate_command: "validate --no-check-all --no-check-publish" # leave empty to skip validation
validate_command: validate # leave empty to skip validation
validate_args: "--no-check-all --no-check-publish"
command: install # leave empty to do nothing
no_dev: true
working_dir: "{{ deploy_path }}"
Expand Down
1 change: 1 addition & 0 deletions roles/composer/tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
- name: Validate composer.json and composer.lock files.
community.general.composer:
command: "{{ composer.validate_command }}"
arguments: "{{ composer.validate_args }}"
no_dev: "{{ composer.no_dev }}"
working_dir: "{{ composer.working_dir }}"
apcu_autoloader: "{{ composer.apcu_autoloader }}"
Expand Down