Skip to content
This repository was archived by the owner on Jun 13, 2025. It is now read-only.

Install PHP dependencies in the project #213

Merged
merged 1 commit into from
Sep 16, 2024
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
14 changes: 0 additions & 14 deletions integrations/php/composer.json

This file was deleted.

7 changes: 5 additions & 2 deletions integrations/php/install-driver.sh
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,10 @@ php --ri mongodb

# Install composer and dependencies
install_composer
php composer.phar update
php composer.phar update --working-dir=${PHPLIB_PATH}

# Allow simple-phpunit to install its own PHPUnit dependencies
php vendor/bin/simple-phpunit install
php ${PHPLIB_PATH}/vendor/bin/simple-phpunit install

# The symlink helps to include the library and tests with a simple path
ln -s ${PHPLIB_PATH}/vendor ./vendor