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.
		
		
		
		
		
			
		
			
				
					
					
						
							35 lines
						
					
					
						
							505 B
						
					
					
				
			
		
		
	
	
							35 lines
						
					
					
						
							505 B
						
					
					
				sudo: false
 | 
						|
 | 
						|
branches:
 | 
						|
    only:
 | 
						|
        - master
 | 
						|
 | 
						|
language: php
 | 
						|
 | 
						|
php:
 | 
						|
    - 5.3
 | 
						|
    - 5.4
 | 
						|
    - 5.5
 | 
						|
    - 5.6
 | 
						|
    - 7.0
 | 
						|
    - 7.1
 | 
						|
    - 7.2
 | 
						|
    - hhvm
 | 
						|
 | 
						|
matrix:
 | 
						|
  fast_finish: true
 | 
						|
  include:
 | 
						|
    - php: 5.3
 | 
						|
      dist: precise
 | 
						|
  allow_failures:
 | 
						|
    - php: 5.3
 | 
						|
      dist: xenial
 | 
						|
    - php: 5.3
 | 
						|
      dist: trusty
 | 
						|
 | 
						|
before_script:
 | 
						|
    - if [[ $TRAVIS_PHP_VERSION != hhvm ]]; then phpenv config-rm xdebug.ini; fi;
 | 
						|
    - composer --no-interaction --prefer-source install
 | 
						|
 | 
						|
script:
 | 
						|
    - bin/phpspec run -f dot
 | 
						|
 |