circle.yml 712 B

12345678910111213141516171819202122232425
  1. machine:
  2. xcode:
  3. version: 8.2
  4. checkout:
  5. pre:
  6. - system_profiler SPSoftwareDataType
  7. dependencies:
  8. cache_directories:
  9. - ~/.composer
  10. - ~/Library/Caches/Homebrew
  11. pre:
  12. - brew update
  13. - brew tap homebrew/homebrew-php
  14. - brew install php71
  15. - curl -sS https://getcomposer.org/installer | php
  16. - php composer.phar global show hirak/prestissimo -q || php composer.phar global require --no-interaction --no-progress --optimize-autoloader hirak/prestissimo
  17. override:
  18. - php composer.phar install --no-interaction --no-progress
  19. test:
  20. override:
  21. - vendor/bin/phpunit
  22. - php php-cs-fixer --diff --dry-run -v fix