mirror of
https://github.com/tecnickcom/TCPDF.git
synced 2025-01-16 21:58:22 +01:00
Requires curl extension
This commit is contained in:
parent
ebfc0b855e
commit
a9d32801f1
8
.github/workflows/tests.yml
vendored
8
.github/workflows/tests.yml
vendored
@ -29,10 +29,10 @@ jobs:
|
|||||||
coverage-extension: ["none"]
|
coverage-extension: ["none"]
|
||||||
# Add more specific tests
|
# Add more specific tests
|
||||||
include:
|
include:
|
||||||
#- { php-version: '8.2', experimental: false, os: macos-latest, php-extensions: 'bcmath, imagick, gd', coverage-extension: 'none' }
|
#- { php-version: '8.2', experimental: false, os: macos-latest, php-extensions: 'bcmath, curl, imagick, gd', coverage-extension: 'none' }
|
||||||
- { php-version: '8.2', experimental: false, os: windows-latest, php-extensions: 'bcmath, imagick, gd', coverage-extension: 'none' }
|
- { php-version: '8.2', experimental: false, os: windows-latest, php-extensions: 'bcmath, curl, imagick, gd', coverage-extension: 'none' }
|
||||||
- { php-version: '8.3', experimental: true, os: ubuntu-latest, php-extensions: 'bcmath, imagick, gd', coverage-extension: 'pcov' }
|
- { php-version: '8.3', experimental: true, os: ubuntu-latest, php-extensions: 'bcmath, curl, imagick, gd', coverage-extension: 'pcov' }
|
||||||
- { php-version: 'nightly', experimental: true, os: ubuntu-latest, php-extensions: 'bcmath, imagick, gd', coverage-extension: 'pcov' }
|
- { php-version: 'nightly', experimental: true, os: ubuntu-latest, php-extensions: 'bcmath, curl, imagick, gd', coverage-extension: 'pcov' }
|
||||||
env:
|
env:
|
||||||
PDFINFO_BINARY: ${{ (matrix.os == 'ubuntu-latest') && '/usr/bin/pdfinfo' || ((matrix.os == 'macos-latest') && '/usr/local/bin/pdfinfo' || 'C:\ProgramData\Chocolatey\bin\pdfinfo.exe') }}
|
PDFINFO_BINARY: ${{ (matrix.os == 'ubuntu-latest') && '/usr/bin/pdfinfo' || ((matrix.os == 'macos-latest') && '/usr/local/bin/pdfinfo' || 'C:\ProgramData\Chocolatey\bin\pdfinfo.exe') }}
|
||||||
steps:
|
steps:
|
||||||
|
@ -1,11 +1,10 @@
|
|||||||
6.8.0 (2024-12-23)
|
6.8.0 (2024-12-23)
|
||||||
- Requires PHP 7.1+.
|
- Requires PHP 7.1+ and curl extension.
|
||||||
- Escape error message.
|
- Escape error message.
|
||||||
- Use strict time-constant function to compare TCPDF-tag hashes.
|
- Use strict time-constant function to compare TCPDF-tag hashes.
|
||||||
- Add K_CURLOPTS config array to set custom cURL options (NOTE: some defaults have changed).
|
- Add K_CURLOPTS config array to set custom cURL options (NOTE: some defaults have changed).
|
||||||
- Add some addTTFfont fixes from tc-lib-pdf-font.
|
- Add some addTTFfont fixes from tc-lib-pdf-font.
|
||||||
|
|
||||||
|
|
||||||
6.7.8 (2024-12-13)
|
6.7.8 (2024-12-13)
|
||||||
- Improve SVG detection by checking for (mandatory) namespace.
|
- Improve SVG detection by checking for (mandatory) namespace.
|
||||||
- Use late state binding now that minimum PHP version is 5.5.
|
- Use late state binding now that minimum PHP version is 5.5.
|
||||||
|
@ -22,7 +22,8 @@
|
|||||||
}
|
}
|
||||||
],
|
],
|
||||||
"require": {
|
"require": {
|
||||||
"php": ">=7.1.0"
|
"php": ">=7.1.0",
|
||||||
|
"ext-curl": "*"
|
||||||
},
|
},
|
||||||
"autoload": {
|
"autoload": {
|
||||||
"classmap": [
|
"classmap": [
|
||||||
|
Loading…
x
Reference in New Issue
Block a user