Skip to content

Commit

Permalink
Drop support for PHP 7.2 (#1132)
Browse files Browse the repository at this point in the history
* Drop support for PHP 7.2

* Bump appveyor.yml

* Fix phpdoc for PHPStan

* Update Unconfigured/run_tests.bash
  • Loading branch information
sanmai committed Mar 7, 2020
1 parent 31544d9 commit 3b534fa
Show file tree
Hide file tree
Showing 6 changed files with 83 additions and 88 deletions.
11 changes: 3 additions & 8 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ before_install:
jobs:
include:
- stage: Static Code Analysis
php: 7.2
php: 7.3
install:
- composer install $COMPOSER_FLAGS
script:
Expand All @@ -40,7 +40,7 @@ jobs:

- &STANDARD_TEST_JOB
stage: Test
php: 7.2
php: 7.3
env: DRIVER="xdebug"
install:
- |
Expand Down Expand Up @@ -94,11 +94,6 @@ jobs:
php: 7.3
env: DRIVER="phpdbg"

-
<<: *STANDARD_TEST_JOB
php: 7.3
env: DRIVER="xdebug"

-
<<: *STANDARD_TEST_JOB
php: 7.3
Expand Down Expand Up @@ -134,7 +129,7 @@ jobs:
phpdbg -qrr bin/infection $INFECTION_FLAGS $INFECTION_PR_FLAGS;
- stage: Deploy
php: 7.2
php: 7.3
install:
- composer install --no-dev $COMPOSER_FLAGS
script:
Expand Down
8 changes: 4 additions & 4 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@ clone_folder: c:\projects\workspace
environment:
matrix:
- dependencies: highest
php_ver_target: 7.2.20
xdebug_ver: '2.6.0-7.2-vc15'
php_ver_target: 7.3.15
xdebug_ver: '2.9.2-7.3-vc15'
- dependencies: current
php_ver_target: 7.2.20
xdebug_ver: '2.6.0-7.2-vc15'
php_ver_target: 7.3.15
xdebug_ver: '2.9.2-7.3-vc15'

cache: # cache is cleared when linked file is modified
- '%LOCALAPPDATA%\Composer\files -> composer.lock'
Expand Down
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
}
],
"require": {
"php": "^7.2.9",
"php": "^7.3",
"ext-dom": "*",
"ext-json": "*",
"ext-libxml": "*",
Expand Down Expand Up @@ -81,7 +81,7 @@
},
"config": {
"platform": {
"php": "7.2.9"
"php": "7.3.12"
},
"sort-packages": true
},
Expand Down

0 comments on commit 3b534fa

Please sign in to comment.