Skip to content

Commit

Permalink
Merge pull request #27 from petrparolek/php-7.4-and-mpdf-8.0
Browse files Browse the repository at this point in the history
added support of PHP 7.4 and mPDF 8.0
  • Loading branch information
jkuchar authored Jan 21, 2020
2 parents 369ca35 + 98d8019 commit 2391b6f
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 10 deletions.
11 changes: 10 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,16 @@
language: php

php:
- '7.1'
- '7.2'
- '7.3'
before_script: composer install
- '7.4'

env:
- COMPOSER_OPTIONS=
- COMPOSER_OPTIONS=--prefer-lowest

before_script:
- composer update ${COMPOSER_OPTIONS}

script: composer run verify
18 changes: 9 additions & 9 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,16 +22,16 @@
}
},
"require": {
"php": ">= 7.1.0",
"nette/utils": "^3.0",
"nette/http": "^3.0",
"nette/application": "^3.0",
"mpdf/mpdf": "^7.0.0",
"paquettg/php-html-parser": "^2.0"
"php": "~7.1.0|~7.2.0|~7.3.0|~7.4.0",
"nette/utils": "~2.4.0|~3.0.0|~3.1.0",
"nette/http": "~2.4.0|~3.0.0",
"nette/application": "~2.4.0|~3.0.0",
"mpdf/mpdf": "^7.0|^8.0",
"paquettg/php-html-parser": "^2.1.0"
},
"require-dev": {
"nette/tester": "^2.2",
"phpstan/phpstan": "^0.11.12",
"grifart/phpstan-oneline": "^0.2.2"
"nette/tester": "^2.3.1",
"phpstan/phpstan": "^0.12.7",
"grifart/phpstan-oneline": "^0.3.0"
}
}

0 comments on commit 2391b6f

Please sign in to comment.