Skip to content

Commit

Permalink
Merge pull request #34 from johnkrovitch/feature/symfony5
Browse files Browse the repository at this point in the history
Add the compatibility for Symfony 5
  • Loading branch information
johnkrovitch authored Aug 31, 2020
2 parents d8608a9 + 71206da commit 47ad132
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 3 deletions.
10 changes: 10 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
language: php

php:
- 7.4

install:
- composer install

script:
- make tests
9 changes: 9 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
.PHONY: all

all: install

install:
composer install

tests:
bin/var-dump-check --symfony --doctrine --tracy src
7 changes: 4 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,16 +10,17 @@
}
],
"require": {
"symfony/options-resolver": "^2.8 || ^3.0 || ^4.0",
"symfony/dependency-injection": "^2.8 || ^3.0 || ^4.0"
"symfony/options-resolver": "^2.8|^3.0|^4.0|^5.0",
"symfony/dependency-injection": "^2.8|^3.0|^4.0|^5.0"
},
"autoload": {
"psr-4": {
"": "src/"
}
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.1"
"friendsofphp/php-cs-fixer": "^2.1",
"php-parallel-lint/php-var-dump-check": "^0.5.0"
},
"config": {
"bin-dir": "bin"
Expand Down

0 comments on commit 47ad132

Please sign in to comment.