diff --git a/bin/4.6.x-dev/prepare_project_edition.sh b/bin/4.6.x-dev/prepare_project_edition.sh index a95c56b..ceb60ef 100755 --- a/bin/4.6.x-dev/prepare_project_edition.sh +++ b/bin/4.6.x-dev/prepare_project_edition.sh @@ -115,8 +115,7 @@ docker exec install_dependencies composer recipes:install ${DEPENDENCY_PACKAGE_N docker exec install_dependencies composer require ibexa/behat:$PROJECT_VERSION ibexa/docker:$PROJECT_VERSION --no-scripts --ansi --no-update # Install opt-in packages -if [[ "$PROJECT_EDITION" != "oss" ]] && [[ $PHP_IMAGE == *"8.3"* ]]; then - # openai-php/client requires PHP 8.1+, v4.6 test matrix has PHP 7.4, 8.0, 8.3 +if [[ "$PROJECT_EDITION" != "oss" ]]; then # ibexa/connector-qualifio is already being installed with the project docker exec install_dependencies composer require ibexa/connector-ai:$PROJECT_VERSION ibexa/connector-openai:$PROJECT_VERSION --no-scripts --ansi --no-update fi diff --git a/bin/5.0.x-dev/prepare_project_edition.sh b/bin/5.0.x-dev/prepare_project_edition.sh index 2e5db1e..ceb60ef 100755 --- a/bin/5.0.x-dev/prepare_project_edition.sh +++ b/bin/5.0.x-dev/prepare_project_edition.sh @@ -116,7 +116,6 @@ docker exec install_dependencies composer require ibexa/behat:$PROJECT_VERSION i # Install opt-in packages if [[ "$PROJECT_EDITION" != "oss" ]]; then - # openai-php/client requires PHP 8.1+, v5.0 test matrix has PHP 8.3 only # ibexa/connector-qualifio is already being installed with the project docker exec install_dependencies composer require ibexa/connector-ai:$PROJECT_VERSION ibexa/connector-openai:$PROJECT_VERSION --no-scripts --ansi --no-update fi diff --git a/bin/stable/prepare_project_edition.sh b/bin/stable/prepare_project_edition.sh index 82fca8b..27b2c4b 100755 --- a/bin/stable/prepare_project_edition.sh +++ b/bin/stable/prepare_project_edition.sh @@ -48,8 +48,7 @@ if [[ $PROJECT_VERSION == *"v3.3"* ]]; then else echo "> Installing dependencies for v4" docker exec install_dependencies composer require ibexa/behat:$PROJECT_VERSION ibexa/docker:$PROJECT_VERSION --with-all-dependencies --no-scripts --ansi - if [[ "$PROJECT_EDITION" != "oss" ]] && [[ $PHP_IMAGE == *"8.3"* ]]; then - # openai-php/client requires PHP 8.1+, v4.6 test matrix has PHP 7.4, 8.0, 8.3 + if [[ "$PROJECT_EDITION" != "oss" ]]; then echo "> Installing opt-in packages" # ibexa/connector-qualifio is already being installed with the project docker exec install_dependencies composer require ibexa/connector-ai:$PROJECT_VERSION ibexa/connector-openai:$PROJECT_VERSION --with-all-dependencies --no-scripts --ansi