Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
34 commits
Select commit Hold shift + click to select a range
d8aaa35
latest changes. Pdo named arguments are broken
tyrsson Apr 19, 2025
3d24705
Update StatementInterface prepare signature
tyrsson Apr 23, 2025
c239faa
fix config provider
tyrsson Apr 23, 2025
446f46e
Fixes regression of "mapped" parameters thanks to @simon-mundy
tyrsson Apr 26, 2025
e97ba15
Merge branch '3.0.x' into adapter-migration-mysql
tyrsson May 4, 2025
db1cd25
Introduces Driver\Pdo\AbstractPdo
tyrsson May 6, 2025
db979f5
Missed strict types
tyrsson May 6, 2025
6f7f915
Adding temp debug comments
tyrsson May 13, 2025
61c04d1
Removes MySQL related code that has been migrated to laminas-db-adapt…
tyrsson May 14, 2025
d5b3f4e
Temp removes ci constraint on which actions trigger workflow runs for…
tyrsson May 14, 2025
f29d5cf
Refactoring around ConnectionInterface, AbstractConnection, AbstractP…
tyrsson May 15, 2025
f8baa9a
Signed-off-by: Joey Smith <jsmith@webinertia.net>
tyrsson May 15, 2025
05b6f99
Signed-off-by: Joey Smith <jsmith@webinertia.net>
tyrsson May 15, 2025
6088adf
Refactor AdapterAwareInterface and Trait
tyrsson May 16, 2025
68d0e22
DriverInterface::getDatabasePlatformName() signature change
tyrsson May 20, 2025
0e01fa0
Signed-off-by: Joey Smith <jsmith@webinertia.net>
tyrsson May 20, 2025
674b596
Signed-off-by: Joey Smith <jsmith@webinertia.net>
tyrsson May 20, 2025
8bd2bb1
Updating StatementInterface typing and \Pdo\Statement typing
tyrsson May 21, 2025
4aed88e
Updating StatementInterface::execute to nullable return type
tyrsson May 21, 2025
b046b57
Updating \Pdo\Statement::execute to nullable return type
tyrsson May 21, 2025
838ef3d
Refactoring typing
tyrsson May 22, 2025
a7e589c
Fixed type in DriverAwareInterface file/class name
tyrsson May 23, 2025
9d6d275
Interface typing
tyrsson May 23, 2025
213e6d3
Signed-off-by: Joey Smith <jsmith@webinertia.net>
tyrsson May 23, 2025
1d6a464
Fixing formatParameterName parameter typing for $name
tyrsson May 24, 2025
924aa67
testing temp fix for formatParameterName
tyrsson May 24, 2025
3525c63
updating temp fix to proposed fix, see comment in AbstractPdo::format…
tyrsson May 24, 2025
8236c4d
Aligning for integration test
tyrsson May 24, 2025
a700452
Package initialization refactoring
tyrsson May 25, 2025
9766886
Latest revisions
tyrsson May 26, 2025
64fb334
Fix up types
settermjd May 26, 2025
39538ec
Refactor AdapterServiceFactory to align with AdapterManager implement…
tyrsson May 27, 2025
0812ef1
Merge branch 'adapter-migration-mysql' of https://github.com/axleus/l…
tyrsson May 27, 2025
d58b030
Signed-off-by: Joey Smith <jsmith@webinertia.net>
tyrsson May 27, 2025
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
2 changes: 0 additions & 2 deletions .github/workflows/continuous-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,6 @@ on:
pull_request:
push:
branches:
- '[0-9]+.[0-9]+.x'
- 'refs/pull/*'
tags:

jobs:
Expand Down
19 changes: 8 additions & 11 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,30 +24,27 @@
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"extra": {
"extra": {
"laminas": {
"component": "Laminas\\Db",
"config-provider": "Laminas\\Db\\ConfigProvider"
"config-provider": "Laminas\\Db\\Container\\ConfigProvider"
}
},
"require": {
"php": "~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0",
"laminas/laminas-servicemanager": "^4.0.0",
"laminas/laminas-stdlib": "^3.20.0"
},
"require-dev": {
"laminas/laminas-coding-standard": "^3.0.1",
"laminas/laminas-eventmanager": "^3.14.0",
"laminas/laminas-hydrator": "^4.16.0",
"laminas/laminas-servicemanager": "^3.23.0",
"phpunit/phpunit": "^11.5.12",
"psalm/plugin-phpunit": "^0.19.2",
"rector/rector": "^2.0",
"vimeo/psalm": "^6.8.8"
},
"suggest": {
"laminas/laminas-eventmanager": "Laminas\\EventManager component",
"laminas/laminas-hydrator": "(^3.2 || ^4.3) Laminas\\Hydrator component for using HydratingResultSets",
"laminas/laminas-servicemanager": "Laminas\\ServiceManager component"
"laminas/laminas-hydrator": "(^5.0.0) Laminas\\Hydrator component for using HydratingResultSets"
},
"autoload": {
"psr-4": {
Expand All @@ -66,15 +63,15 @@
"@cs-check",
"@test"
],
"cs-check": "phpcs",
"cs-check": "php -d xdebug.mode=off vendor/bin/phpcs",
"cs-fix": "phpcbf",
"test": "phpunit --colors=always --testsuite \"unit test\"",
"test": "php -d xdebug.mode=off vendor/bin/phpunit --colors=always --testsuite \"unit test\"",
"test-coverage": "phpunit --colors=always --coverage-clover clover.xml",
"test-integration": "phpunit --colors=always --testsuite \"integration test\"",
"static-analysis": "psalm --shepherd --stats",
"static-analysis": "php -d xdebug.mode=off vendor/bin/psalm",
"upload-coverage": "coveralls -v"
},
"conflict": {
"zendframework/zend-db": "*"
}
}
}
Loading
Loading