Skip to content

Commit 7c70a93

Browse files
committed
Remove non-supported versions of Symfony of new changes
1 parent 8e6f769 commit 7c70a93

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

.travis.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,9 @@ sudo: false
33
language: php
44

55
php:
6-
- 7.1
76
- 7.2
7+
- 7.3
8+
- 7.4
89

910
matrix:
1011
fast_finish: true
@@ -14,5 +15,5 @@ before_script: composer install
1415
script: ./bin/phpunit --coverage-clover=coverage.clover
1516

1617
after_script:
17-
- if [ "$TRAVIS_PHP_VERSION" != "7.0" ]; then wget https://scrutinizer-ci.com/ocular.phar; fi
18-
- if [ "$TRAVIS_PHP_VERSION" != "7.0" ]; then php ocular.phar code-coverage:upload --format=php-clover coverage.clover; fi
18+
- wget https://scrutinizer-ci.com/ocular.phar;
19+
- php ocular.phar code-coverage:upload --format=php-clover coverage.clover;

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,11 @@
2222
}
2323
],
2424
"require": {
25-
"php": "^7.1.3",
25+
"php": "^7.2",
2626
"ext-curl": "*",
2727
"jms/serializer": "^1.0|^2.0|^3.0",
2828
"guzzlehttp/guzzle": "^6.0|^7.0",
29-
"symfony/event-dispatcher": "^2.3|^3.0|^4.0|^5.0",
29+
"symfony/event-dispatcher": "^4.0|^5.0",
3030
"symfony/yaml": "^2.3|^3.0|^4.0|^5.0",
3131
"doctrine/collections": "^1.2"
3232
},

0 commit comments

Comments
 (0)