1 # Select docker image from https://hub.docker.com/_/php/
4 # Select what we should cache
10 # Install git, the docker php image doesn't have it installed by default
12 - apt-get install git -yqq
13 - apt-get install zip -yqq
14 # Enable necessary php extensions
15 - docker-php-ext-enable curl && docker-php-ext-enable json && docker-php-ext-enable zip && docker-php-ext-enable mbstring && docker-php-ext-enable gd && docker-php-ext-enable pdo_mysql
17 - curl -sS https://getcomposer.org/installer | php
18 # Create composer.json file manually, since this is a project without any non-dev dependencies yet
19 - php composer.phar require --dev php-parallel-lint/php-parallel-lint
20 # Install all project dependencies
21 - php composer.phar install
24 ## Default test with PHP7.1
27 - ./vendor/bin/parallel-lint --exclude vendor .
29 # Run same tests with PHP7.0
33 - ./vendor/bin/parallel-lint --exclude vendor .
35 # Run same tests with PHP5.6
39 - ./vendor/bin/parallel-lint --exclude vendor .