Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
with
12 additions
and
6 deletions.
-
+7
−6
.travis.yml
-
+5
−0
phpstan.neon.dist
|
@@ -3,6 +3,7 @@ language: php |
|
|
php: |
|
|
- 7.2 |
|
|
- 7.3 |
|
|
- 7.4 |
|
|
|
|
|
sudo: false |
|
|
|
|
@@ -29,25 +30,25 @@ matrix: |
|
|
fast_finish: true |
|
|
include: |
|
|
- stage: lint |
|
|
php: 7.3 |
|
|
php: 7.4 |
|
|
env: TARGET=lint |
|
|
- stage: lint |
|
|
php: 7.3 |
|
|
php: 7.4 |
|
|
env: TARGET=phpstan |
|
|
- stage: lint |
|
|
php: 7.3 |
|
|
php: 7.4 |
|
|
env: TARGET=checkdeps |
|
|
- stage: test |
|
|
php: 7.2 |
|
|
env: COMPOSER_FLAGS="--prefer-lowest" |
|
|
- stage: test |
|
|
php: 7.3 |
|
|
php: 7.4 |
|
|
env: SYMFONY_VERSION=3.4.* |
|
|
- stage: test |
|
|
php: 7.3 |
|
|
php: 7.4 |
|
|
env: SYMFONY_VERSION=4.2.* |
|
|
allow_failures: |
|
|
- php: 7.3 |
|
|
- php: 7.4 |
|
|
env: TARGET=checkdeps |
|
|
|
|
|
before_install: |
|
|
|
@@ -23,3 +23,8 @@ parameters: |
|
|
message: '#Property .*::\$.* has no typehint specified.#' |
|
|
path: tests/ |
|
|
|
|
|
- |
|
|
message: "#^Call to an undefined method Symfony\\\\Component\\\\Config\\\\Definition\\\\Builder\\\\TreeBuilder::root\\(\\)\\.$#" |
|
|
count: 1 |
|
|
path: src/DependencyInjection/Configuration.php |
|
|
|