25 lines
389 B
YAML
25 lines
389 B
YAML
sudo: false
|
|
language: php
|
|
php:
|
|
- nightly
|
|
- 5.6
|
|
- 5.5
|
|
- 5.4
|
|
|
|
matrix:
|
|
allow_failures:
|
|
- php: nightly
|
|
|
|
before_install:
|
|
- npm install -g npm@latest
|
|
- npm install -g bower gulp jscs
|
|
- npm install
|
|
- pyrus install pear/PHP_CodeSniffer
|
|
- phpenv rehash
|
|
|
|
script:
|
|
- npm run build
|
|
- npm run jshint
|
|
- npm run jscs
|
|
- phpcs --standard=ruleset.xml --extensions=php -n -s .
|