Skip to content
This repository has been archived by the owner on Aug 16, 2024. It is now read-only.

feat!: drop Laminas v2 #17

Merged
merged 31 commits into from
Jan 16, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
04a56f3
WIP 3.0 project branch
fibble Nov 2, 2023
1879630
WIP 3.0 project branch
fibble Nov 6, 2023
64f62e9
WIP 3.0 project branch
fibble Nov 8, 2023
9b3d2ab
WIP 3.0 project branch
fibble Nov 9, 2023
53a3fcd
WIP 3.0 project branch
fibble Nov 17, 2023
871f5fa
WIP 3.0 project branch
fibble Nov 2, 2023
a11be00
WIP 3.0 project branch
fibble Nov 6, 2023
ec726c0
WIP 3.0 project branch
fibble Nov 27, 2023
e2ce2c6
WIP 3.0 project branch
fibble Nov 27, 2023
68ef795
Fixes
fibble Dec 4, 2023
e9a173e
fix: template method call fix
fibble Dec 21, 2023
f8a5781
feat: Updates to get app working with Laminas 3
fibble Dec 29, 2023
bdf9e4b
refactor(FormAnnotations): Refactoring deprecated annotation formats
fibble Jan 8, 2024
14b04d3
VOL-4006 fix all tests except form tests for Laminas 3
ilindsay Dec 19, 2023
a38461c
VOL-4006 remove createService, ServiceLocatorInterface and getService…
ilindsay Dec 21, 2023
a00e8dd
refactor(FormAnnotations): Refactoring deprecated annotation formats
fibble Jan 8, 2024
81bc8f8
fix: Fixes to issues introduced on rebasing 3.0 branch onto main to g…
fibble Jan 9, 2024
a68335d
fix: refactoring unit tests to accommodate Laminas 3.0 changes
fibble Jan 9, 2024
6b2e93c
fix: refactoring unit tests to accommodate Laminas 3.0 changes
fibble Jan 9, 2024
e97786b
fix: refactoring unit tests to accommodate Laminas 3.0 changes - wip
fibble Jan 9, 2024
63a43f4
fix: refactoring unit tests to accommodate Laminas 3.0 changes - wip
fibble Jan 10, 2024
38733b8
feat: drop support for Laminas 2 in composer.json
ilindsay Jan 15, 2024
1cfb09f
feat: make SanSessionToolbar available via laminas dev tools VOL-3749
ilindsay Jan 15, 2024
e561e7a
feat: drop support for Laminas 2, remove last createService, remove t…
ilindsay Jan 15, 2024
d986f4d
fix: add missing Laminas dependencies
JoshuaLicense Jan 16, 2024
affd454
fix: update cache config to be Laminas v3 compatible
JoshuaLicense Jan 16, 2024
e50af0c
Merge branch 'main' into project/3.0
JoshuaLicense Jan 16, 2024
ee29f46
fix: fake the `ext-redis` version
JoshuaLicense Jan 16, 2024
4c54c43
Merge branch 'project/3.0' of https://github.com/dvsa/olcs-selfserve …
JoshuaLicense Jan 16, 2024
2f77eb3
chore: bump dependencies
JoshuaLicense Jan 16, 2024
20271ae
chore: bump `olcs-common` and `olcs-auth` to `^5.0.0`
JoshuaLicense Jan 16, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
41 changes: 25 additions & 16 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,22 +3,29 @@
"description": "OLCS Self Service Web Site",
"require": {
"php": "^7.4",
"container-interop/container-interop": "^1.2",
"doctrine/annotations": "^1.14.2",
"doctrine/doctrine-module": "^1",
"doctrine/doctrine-module": "^5",
"dvsa/laminas-config-cloud-parameters": "^0.2.0",
"laminas/laminas-authentication": "^2.6",
"laminas/laminas-eventmanager": "^2.6",
"laminas/laminas-form": "^2.13",
"laminas/laminas-cache": "^3.6",
"laminas/laminas-cache-storage-adapter-redis": "^2.4",
"laminas/laminas-eventmanager": "^3.0",
"laminas/laminas-filter": "^2.22",
"laminas/laminas-form": "^3.0",
"laminas/laminas-http": "^2.8",
"laminas/laminas-i18n": "^2.14",
"laminas/laminas-mvc": "^2.7",
"laminas/laminas-inputfilter": "^2.21",
"laminas/laminas-mvc": "^3.0",
"laminas/laminas-mvc-plugin-flashmessenger": "^1.8",
"laminas/laminas-mvc-plugin-prg": "^1.7",
"laminas/laminas-navigation": "^2.15",
"laminas/laminas-serializer": "^2.10",
"laminas/laminas-servicemanager": "^2.7",
"laminas/laminas-servicemanager": "^3.0",
"laminas/laminas-session": "^2.8",
"laminas/laminas-stdlib": "^2.7",
"laminas/laminas-stdlib": "^3.0",
"laminas/laminas-validator": "^2.25",
"laminas/laminas-view": "^2.11",
"lm-commons/lmc-rbac-mvc": "^2.6",
"lm-commons/lmc-rbac-mvc": "^3.3",
"olcs/olcs-auth": "^5.0.0",
"olcs/olcs-common": "^5.0.0",
"olcs/olcs-logging": "^5.0.0",
Expand Down Expand Up @@ -50,15 +57,17 @@
"PermitsTest\\": "test/Permits/src"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"sort-packages": true,
"allow-plugins": {
"bamarni/composer-bin-plugin": true,
"laminas/laminas-dependency-plugin": true
}
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"allow-plugins": {
"laminas/laminas-dependency-plugin": true,
"bamarni/composer-bin-plugin": true
},
"platform": {
"ext-redis": "4.3"
}
},
"scripts": {
"bin": "echo 'bin not installed'",
"post-install-cmd": [
Expand Down
Loading
Loading