Run composer install in Travis CI before tests

Tests are using the Composer autoloader since: cd1c030362

Because of that Composer should have actually dumped the autoloader in the `vendor/` folder,
before the tests are ran.
This commit is contained in:
Haralan Dobrev 2014-04-25 00:01:20 +03:00
parent 4f027386b1
commit 3d84201d74
1 changed files with 3 additions and 0 deletions

View File

@ -7,3 +7,6 @@ php:
- 5.3
- 5.2
- hhvm
before_install: composer self-update
install: composer install