Skip to content

Commit

Permalink
[TASK] Drop support for PHP 5.5 (#690)
Browse files Browse the repository at this point in the history
Fixes #339
  • Loading branch information
oliverklee authored and JakeQZ committed Sep 4, 2019
1 parent 2472bc1 commit a6c75be
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 6 deletions.
5 changes: 0 additions & 5 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,13 +1,8 @@
sudo: false

# This line allows compilation of PHP 5.5. It can be removed once we do not support
# PHP 5.5 anymore.
dist: trusty

language: php

php:
- "5.5"
- "5.6"
- "7.0"
- "7.1"
Expand Down
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@ This project adheres to [Semantic Versioning](https://semver.org/).
### Deprecated

### Removed
- Drop support for PHP 5.5
([#690](https://github.com/MyIntervals/emogrifier/pull/690))

### Fixed

Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
"source": "https://github.com/MyIntervals/emogrifier"
},
"require": {
"php": "^5.5.0 || ~7.0.0 || ~7.1.0 || ~7.2.0 || ~7.3.0",
"php": "^5.6.0 || ~7.0.0 || ~7.1.0 || ~7.2.0 || ~7.3.0",
"ext-dom": "*",
"ext-libxml": "*",
"symfony/css-selector": "^3.4.0 || ^4.0.0"
Expand Down
2 changes: 2 additions & 0 deletions config/php-cs-fixer.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@
[
// copied from the TYPO3 Core
'@PSR2' => true,
'@PHP56Migration' => true,
'@PHP56Migration:risky' => true,
'@DoctrineAnnotation' => true,
'no_leading_import_slash' => true,
'no_trailing_comma_in_singleline_array' => true,
Expand Down

0 comments on commit a6c75be

Please sign in to comment.