Skip to content

Commit

Permalink
Adding travis basic setup (with installation of ZF app skeleton)
Browse files Browse the repository at this point in the history
  • Loading branch information
Ocramius committed Apr 8, 2012
1 parent fe7e650 commit ae876c7
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .travis.yml
@@ -0,0 +1,19 @@
language: php

php:
- 5.3
- 5.4

# cloning a custom zend skeleton application, running composer on it and replacing the module with
# the one that has been checked out.
before_script:
- cd ..
- git clone git://github.com/ocramius/ZendSkeletonApplication.git -b doctrine-orm-module-tests --recursive
- cd ZendSkeletonApplication
- wget -nc http://getcomposer.org/composer.phar
- php composer.phar install --install-suggests
- rm -rf vendor/doctrine/DoctrineORMModule
- cp -r ../DoctrineORMModule vendor/doctrine/
- cd tests

script: phpunit

0 comments on commit ae876c7

Please sign in to comment.