Skip to content

Commit f01b024

Browse files
committed
RenderPDF.io Driver for Laravel
1 parent 4f770b9 commit f01b024

File tree

4 files changed

+12
-20
lines changed

4 files changed

+12
-20
lines changed

.github/renderpdf-io-cover.png

86.3 KB
Loading

.github/workflows/build.yml

Lines changed: 5 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -17,21 +17,6 @@ jobs:
1717
fail-fast: false
1818
matrix:
1919
version: [
20-
{
21-
"php": "8.0",
22-
"laravel": "^9",
23-
"test": "^7"
24-
},
25-
{
26-
"php": "8.1",
27-
"laravel": "^9",
28-
"test": "^7"
29-
},
30-
{
31-
"php": "8.2",
32-
"laravel": "^9",
33-
"test": "^7"
34-
},
3520
{
3621
"php": "8.1",
3722
"laravel": "^10",
@@ -78,6 +63,11 @@ jobs:
7863
orchestra/testbench "${{ matrix.version.test }}" \
7964
-W
8065
66+
- name: Further package for laravel ^10
67+
if: success() && matrix.version.laravel == '^10'
68+
run: |
69+
composer require guzzlehttp/guzzle "^7.8" guzzlehttp/uri-template "^1.0"
70+
8171
- name: PHPUnit tests with coverage
8272
if: success()
8373
run: |

README.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,14 @@
11
# Render HTML to PDF for Laravel - RenderPDF.io Laravel Driver
22

3+
![RenderPDF.io Cover](./.github/renderpdf-io-cover.png)
4+
35
[RenderPDF.io](https://renderpdf.io) provides awesome & developer-friendly APIs to convert HTML to PDF.
46

57
This is a Laravel package provides an easy integration with **RenderPDF.io**
68

79
## Requirement
8-
- PHP 8+
9-
- Laravel 9+
10+
- PHP 8.1 and above
11+
- Laravel 10 and above
1012

1113
## Installation
1214

composer.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,13 @@
1414
],
1515
"license": "MIT",
1616
"require": {
17-
"php": "^8.0.2",
18-
"laravel/framework": "^9|^10|^11|dev-master"
17+
"php": "^8.1",
18+
"laravel/framework": "^10|^11|dev-master"
1919
},
2020
"require-dev": {
2121
"mockery/mockery": "^1.6",
2222
"phpunit/phpunit": "^10",
23-
"orchestra/testbench": "^7|^8|^9",
23+
"orchestra/testbench": "^8|^9",
2424
"phpunit/php-code-coverage": "^10"
2525
},
2626
"extra": {

0 commit comments

Comments
 (0)