Skip to content

Commit efa9bc8

Browse files
committed
remove php 7.2 support
1 parent 1deb6e3 commit efa9bc8

File tree

4 files changed

+559
-477
lines changed

4 files changed

+559
-477
lines changed

.travis.yml

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
language: php
22

33
php:
4-
- 7.2
54
- 7.3
65
- 7.4snapshot
76

@@ -25,10 +24,10 @@ install:
2524

2625
script:
2726
- ./vendor/bin/phpunit --configuration ./phpunit.xml --coverage-clover=coverage.clover
28-
- if [ "$TRAVIS_PHP_VERSION" == "7.2" ]; then ./vendor/bin/psalm --config=psalm.xml; fi
29-
- if [ "$TRAVIS_PHP_VERSION" == "7.2" ]; then ./vendor/bin/phpstan analyse src --level 7; fi
30-
- if [ "$TRAVIS_PHP_VERSION" == "7.2" ]; then ./vendor/bin/php-cs-fixer fix --allow-risky=yes --dry-run; fi
27+
- if [ "$TRAVIS_PHP_VERSION" == "7.3" ]; then ./vendor/bin/psalm --config=psalm.xml; fi
28+
- if [ "$TRAVIS_PHP_VERSION" == "7.3" ]; then ./vendor/bin/phpstan analyse src --level 7; fi
29+
- if [ "$TRAVIS_PHP_VERSION" == "7.3" ]; then ./vendor/bin/php-cs-fixer fix --allow-risky=yes --dry-run; fi
3130

3231
after_script:
33-
- if [ "$TRAVIS_PHP_VERSION" == "7.2" ]; then wget -c -nc --retry-connrefused --tries=0 https://scrutinizer-ci.com/ocular.phar; fi
34-
- if [ "$TRAVIS_PHP_VERSION" == "7.2" ]; then php ocular.phar code-coverage:upload --format=php-clover coverage.clover; fi
32+
- if [ "$TRAVIS_PHP_VERSION" == "7.3" ]; then wget -c -nc --retry-connrefused --tries=0 https://scrutinizer-ci.com/ocular.phar; fi
33+
- if [ "$TRAVIS_PHP_VERSION" == "7.3" ]; then php ocular.phar code-coverage:upload --format=php-clover coverage.clover; fi

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
}
2929
},
3030
"require": {
31-
"php": ">=7.2",
31+
"php": ">=7.3",
3232
"ext-json": "*",
3333
"php-service-bus/common": "^v3.2",
3434
"symfony/serializer-pack": "^v1"
@@ -38,7 +38,7 @@
3838
"phpunit/phpunit": "^8",
3939
"ext-iconv": "*",
4040
"vimeo/psalm": "^v3",
41-
"phpstan/phpstan": "^0.11.5"
41+
"phpstan/phpstan": "^0.11"
4242
},
4343
"prefer-stable": true,
4444
"minimum-stability": "stable",

0 commit comments

Comments
 (0)