You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							32 lines
						
					
					
						
							572 B
						
					
					
				
			
		
		
	
	
							32 lines
						
					
					
						
							572 B
						
					
					
				language: php
 | 
						|
 | 
						|
sudo: false
 | 
						|
 | 
						|
cache:
 | 
						|
    directories:
 | 
						|
        - $HOME/.composer/cache/files
 | 
						|
 | 
						|
php:
 | 
						|
    - 5.3
 | 
						|
    - 5.4
 | 
						|
    - 5.5
 | 
						|
    - 5.6
 | 
						|
    - 7.0
 | 
						|
    - hhvm
 | 
						|
 | 
						|
matrix:
 | 
						|
    include:
 | 
						|
        - php: 5.3
 | 
						|
          env: COMPOSER_FLAGS='--prefer-lowest --prefer-stable' SYMFONY_DEPRECATIONS_HELPER=weak
 | 
						|
        - php: 5.6
 | 
						|
          env: DEPENDENCIES=dev
 | 
						|
 | 
						|
before_install:
 | 
						|
    - composer self-update
 | 
						|
    - if [ "$DEPENDENCIES" = "dev" ]; then perl -pi -e 's/^}$/,"minimum-stability":"dev"}/' composer.json; fi;
 | 
						|
 | 
						|
install:
 | 
						|
    - composer update $COMPOSER_FLAGS
 | 
						|
 | 
						|
script:
 | 
						|
    - phpunit
 | 
						|
 |