language: php php: - "7.1" branches: except: - gh-pages build: ci: # Set up php configuration - echo 'mbstring.http_input = pass' >> $HOME/.phpenv/versions/$(phpenv version-name)/etc/php.ini - echo 'mbstring.http_output = pass' >> $HOME/.phpenv/versions/$(phpenv version-name)/etc/php.ini - echo 'memory_limit = -1' >> $HOME/.phpenv/versions/$(phpenv version-name)/etc/php.ini - echo 'sendmail_path = /bin/true' >> $HOME/.phpenv/versions/$(phpenv version-name)/etc/php.ini # Disable xdebug for faster Composer operations - rm $HOME/.phpenv/versions/$(phpenv version-name)/etc/conf.d/xdebug.ini # Install / update our tools - composer self-update - composer install --no-interaction # Run code style and linting tools - composer cs - composer lint