Skip to content

Commit e8da64b

Browse files
authored
Merge pull request #5 from scaytrase/feature/background-resolution
Background resolution
2 parents 232dfbf + 53d7943 commit e8da64b

File tree

136 files changed

+3764
-3185
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

136 files changed

+3764
-3185
lines changed

.scrutinizer.yml

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
build:
2+
tests:
3+
override:
4+
-
5+
command: vendor/bin/phpunit --coverage-clover=build/clover.xml
6+
coverage:
7+
file: build/clover.xml
8+
format: php-clover
9+
10+
filter:
11+
excluded_paths:
12+
- "./tests"

.travis.yml

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
language: php
2+
3+
php:
4+
- 7.1
5+
- 7.2
6+
- nightly
7+
8+
sudo: false
9+
10+
matrix:
11+
fast_finish: true
12+
allow_failures:
13+
- php: nightly
14+
include:
15+
- php: 7.1
16+
env: PACKAGES='symfony/symfony=2.8.*'
17+
- php: 7.1
18+
env: PACKAGES='symfony/symfony=3.4.*'
19+
- php: 7.1
20+
env: PACKAGES='symfony/symfony=4.0.*'
21+
22+
before_install:
23+
- travis_retry composer self-update
24+
25+
install:
26+
- composer require --no-update ${PACKAGES}
27+
- composer --prefer-source install

0 commit comments

Comments
 (0)