This is a base template for a project using PHPUnit and MySQL dev/test/prod packages.
- PHP >= 5.5.9
The install script uses wget to download the dependency package manager Composer v1.1.2.
If you do not have wget, then you will need to manually download Composer
and place composer.phar
in the project root directory.
If you're installing this for production use, then you can get all the dependencies with the script.
./install --prod
You can run the install script with the --dev
flag to grab the developer tools like PHPUnit.
./install --dev
To run the test suite, use the test
script.
./test
The verbose flag will show more detailed output.
./test -v
Written with StackEdit.