basho / riak-php-client

PHP clients for Riak
Apache License 2.0
160 stars 69 forks source link

Document setting up environment for running test suite. [JIRA: CLIENTS-357] #96

Closed lukebakken closed 8 years ago

lukebakken commented 9 years ago

For instance, on Arch Linux:

sudo pacman -S php
curl -sS https://getcomposer.org/installer | php
sudo mv composer.phar /usr/local/bin/composer
sudo chmod 755 /usr/local/bin/composer
composer install
./vendor/bin/phpunit

There is also no script to set up Riak to run tests at this point.

See issues: basho/riak-nodejs-client#43 basho/riak-dotnet-client#270

lukebakken commented 9 years ago

Also, make a note that phar and openssl must be enabled in php.ini

christophermancini commented 8 years ago

Attempted to address this in #109