Skip to content

Commit

Permalink
Added integration services config files
Browse files Browse the repository at this point in the history
  • Loading branch information
Vitexus committed Jan 17, 2017
1 parent e9b317b commit 249b3ce
Show file tree
Hide file tree
Showing 2 changed files with 52 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .scrutinizer.yml
@@ -0,0 +1,30 @@
filter:
excluded_paths:
- 'tests/*'
- 'vendor/*'
tools:
php_code_sniffer:
config:
standard: "PSR2"

checks:
php:
code_rating: true
duplication: true

build:
environment:
php:
version: 7.1.0
dependencies:
before:
- sudo composer self-update && composer --version
- composer self-update
- composer install --no-interaction
tests:
override:
-
command: 'phpunit --coverage-clover=clover.log'
coverage:
file: 'clover.log'
format: 'clover'
22 changes: 22 additions & 0 deletions .travis.yml
@@ -0,0 +1,22 @@
language: php

php:
- 5.6
- 7.0

sudo: false

before_script:
- travis_retry composer self-update
- travis_retry composer install --no-interaction --prefer-source

script:
- mkdir -p build
- ./vendor/bin/parallel-lint src tests
- cd tests
- ../vendor/bin/phpunit -c configuration.xml --bootstrap Bootstrap.php src
- echo commented now ./vendor/bin/phpcs src --standard=psr2 -sp

after_script:
- php vendor/bin/coveralls

0 comments on commit 249b3ce

Please sign in to comment.