Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[TASK] Drop support for PHP 5.5 #690

Merged
merged 1 commit into from
Sep 4, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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