Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Chore/pro 1750/docker update #145

Open
wants to merge 28 commits into
base: master
Choose a base branch
from
Open
Changes from 2 commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
5d11078
feat(BE-1914): fork and adapt the library
calinblaga May 25, 2021
2781a65
feat(BE-1914): makes it php 7.4 compatible
calinblaga May 25, 2021
459abf1
feat(BE-1914): introduce laminas
haeber May 27, 2021
7a548a5
Merge pull request #2 from jobcloud/feat/BE-1914/introduce-laminas
haeber May 28, 2021
36ee83c
Merge pull request #1 from jobcloud/feat/BE-1914/fork-and-adapt
haeber May 28, 2021
55fedd7
fix(BE-2482): replace curly braces for compatibility with newer PHP v…
haeber Jan 20, 2022
1229b46
Merge pull request #3 from jobcloud/fix/BE-2482/replace-curly-braces
haeber Jan 24, 2022
080ad84
feat(BE-2692): adjustments
calinblaga Jun 27, 2022
693c589
Merge pull request #4 from jobcloud/feat/BE-2692/adjustments
calinblaga Jul 14, 2022
6d154e8
feat(FIAP-59): update lib to support php 8.1
tomicgoran Apr 20, 2023
8f8af3e
feat(FIAP-59): get rid of laminas dependencies which are not used and…
tomicgoran Apr 24, 2023
2925f45
feat(FIAP-56): cleanup
tomicgoran Apr 25, 2023
3182975
Merge pull request #5 from jobcloud/feat/FIAP-59/php-8.1-upgrade
haeber May 24, 2023
63fed4c
feat(FIAP-197): fix deprecations WIP
tomicgoran Jun 1, 2023
7335c00
feat(FIAP-197): fix deprecations WIP#2
tomicgoran Jun 1, 2023
6e4ca1b
feat(FIAP-197): updated zendpdf
tomicgoran Jun 2, 2023
8704dc6
feat(FIAP-197): prefer-stable
tomicgoran Jun 2, 2023
d501c4b
feat(FIAP-197): use tagged ver of zendpdf
tomicgoran Jun 2, 2023
cd8fbe4
feat(FIAP-197): use alpine and update composer
haeber Jun 5, 2023
946b9b7
Merge pull request #6 from jobcloud/feat/FIAP-197/fix-deprecations
haeber Jun 5, 2023
c74b063
feat(PRO-684): solve PHP 8.1 deprecation
haeber Jun 5, 2023
7addcc4
fix(PRO-698): fix null on strtolower PHP 8.1 deprecation
haeber Jun 7, 2023
60fc4ad
Merge pull request #7 from jobcloud/fix/PRO-698/strtolower-with-null-…
haeber Jun 7, 2023
c262967
fix(PRO-698): PHP 8.1 deprecation fixes - null on substr
haeber Jun 8, 2023
539d34f
Merge pull request #8 from jobcloud/fix/PRO-698/php81-deprecation-fixes
haeber Jun 8, 2023
1225886
fix(PRO-698): PHP 8.1 deprecation fixes - null on preg_split; clean c…
haeber Jun 8, 2023
67097c5
Merge pull request #9 from jobcloud/fix/PRO-698/php81-deprecation-fixes
haeber Jun 9, 2023
8451636
chore(PRO-1750): php docker update
stevan-tosic Apr 16, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 9 additions & 8 deletions composer.json
Original file line number Diff line number Diff line change
@@ -12,19 +12,20 @@
}
],
"require": {
"zendframework/zendpdf": "~2.0.0",
"zendframework/zend-cache": "^2.0"
"zendframework/zendpdf": "~2.0.0",
"laminas/laminas-cache": "^2.0",
"laminas/laminas-zendframework-bridge": "^1.1"
},
"require-dev": {
"zendframework/zend-barcode": "^2.0",
"zendframework/zend-validator": "^2.0",
"imagine/Imagine": ">=0.2.0,<0.6.0",
"laminas/laminas-barcode": "^2.0",
"laminas/laminas-validator": "^2.0",
"imagine/imagine": ">=0.2.0,<0.6.0",
"phpunit/phpunit": ">=4,<5.4.0"
},
"suggest": {
"zendframework/zend-barcode": "If you want to use barcodes",
"zendframework/zend-validator": "If you want to use barcodes (required by zend-barcode)",
"imagine/Imagine": "If you want to use image generating (required version: >=v0.2.6)"
"laminas/laminas-barcode": "If you want to use barcodes",
"laminas/laminas-validator": "If you want to use barcodes (required by zend-barcode)",
"imagine/imagine": "If you want to use image generating (required version: >=v0.2.6)"
},
"autoload": {
"psr-0": { "PHPPdf": "lib/", "Imagine": "lib/" }