Skip to content

Commit 3d62a3e

Browse files
committed
bugfixes
1 parent 49befd3 commit 3d62a3e

5 files changed

Lines changed: 9 additions & 8 deletions

File tree

.github/workflows/js.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313

1414
strategy:
1515
matrix:
16-
node-version: [14, latest, lts/*]
16+
node-version: [18, latest, lts/*]
1717

1818
steps:
1919
- uses: actions/checkout@v3

.github/workflows/php.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
fail-fast: false
1717
matrix:
1818
operating-system: [ ubuntu-latest ]
19-
php-versions: [ '8.0', '8.1' ]
19+
php-versions: [ '8.1', '8.2', '8.3' ]
2020

2121
steps:
2222
- uses: actions/checkout@v3

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ and all the other fancy stuff people use these days.
2727

2828
## Requirements
2929

30-
- PHP 8.0+ with enabled program execution functions (proc_open) and 'fopen wrappers'
31-
- Node.js 14.1.0+ (for older Node.js versions use see [changelog](https://github.com/spiritix/php-chrome-html2pdf/blob/master/CHANGELOG.md))
30+
- PHP 8.1+ with enabled program execution functions (proc_open) and 'fopen wrappers'
31+
- Node.js 18+ (for older Node.js versions use see [changelog](https://github.com/spiritix/php-chrome-html2pdf/blob/master/CHANGELOG.md))
3232
- A few [OS specific dependencies](https://github.com/puppeteer/puppeteer/blob/main/docs/troubleshooting.md#chrome-headless-doesnt-launch-on-unix)
3333

3434
## Installation

composer.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
}
2121
],
2222
"require": {
23-
"php": "^8.0",
23+
"php": "^8.1",
2424
"oat-sa/composer-npm-bridge": "^0.4"
2525
},
2626
"require-dev": {
@@ -44,7 +44,8 @@
4444
},
4545
"config": {
4646
"allow-plugins": {
47-
"oat-sa/composer-npm-bridge": true
47+
"oat-sa/composer-npm-bridge": true,
48+
"eloquent/composer-npm-bridge": true
4849
}
4950
},
5051
"scripts": {

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
{
22
"name": "php-chrome-html2pdf",
3-
"version": "1.7.4",
3+
"version": "1.7.6",
44
"description": "A PHP library for converting HTML to PDF using Google Chrome.",
55
"main": "index.js",
66
"type": "module",
77
"directories": {
88
"test": "tests/js"
99
},
1010
"engines": {
11-
"node": ">=14.1.0"
11+
"node": ">=18.20.1"
1212
},
1313
"dependencies": {
1414
"commander": "^9.2.0",

0 commit comments

Comments
 (0)