Skip to content

Commit

Permalink
Merge pull request #300 from stephanvierkant/master
Browse files Browse the repository at this point in the history
Dropped support for older PHP versions
  • Loading branch information
weaverryan authored Jan 5, 2022
2 parents 7df0095 + 28e2209 commit da11c2d
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 7 deletions.
6 changes: 1 addition & 5 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,14 +20,10 @@ jobs:
fail-fast: false
matrix:
include:
- description: 'No Symfony specified'
php: '7.2'
- description: 'No Symfony specified'
php: '7.3'
- description: 'No Symfony specified'
php: '7.4'
- description: 'Lowest deps'
php: '7.2'
php: '7.4'
composer_option: '--prefer-lowest'
env:
SYMFONY_DEPRECATIONS_HELPER: max[self]=0
Expand Down
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## vx.x.x
* Drop support for PHP 7.2 and 7.3

## v1.7.1

* Fix composer deprecation notices #268
Expand Down
2 changes: 1 addition & 1 deletion README.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ KnpSnappyBundle
[![Scrutinizer Code Quality](https://scrutinizer-ci.com/g/KnpLabs/KnpSnappyBundle/badges/quality-score.png?b=master)](https://scrutinizer-ci.com/g/KnpLabs/KnpSnappyBundle/?branch=master)
[![StyleCI](https://styleci.io/repos/743218/shield?branch=master)](https://styleci.io/repos/743218)

[Snappy][snappy] is a PHP (5.6+) wrapper for the [wkhtmltopdf][wkhtmltopdf] conversion utility.
[Snappy][snappy] is a PHP wrapper for the [wkhtmltopdf][wkhtmltopdf] conversion utility.
It allows you to generate either pdf or image files from your html documents, using the webkit engine.

The KnpSnappyBundle provides a simple integration for your Symfony project.
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
}
],
"require": {
"php": "^7.4|^8.0",
"php": ">=7.4",
"symfony/framework-bundle": "^4.4|^5.1|^6.0",
"knplabs/knp-snappy": "^1.2"
},
Expand Down

0 comments on commit da11c2d

Please sign in to comment.