Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
19 commits
Select commit Hold shift + click to select a range
6526fb7
Replaces callMagicSet, canCallMagicSet that were somehow removed in 0…
tyrsson Dec 11, 2025
7f8c2b8
Replaces missing methods
tyrsson Dec 11, 2025
efd31ee
Long list of phpstan changes
tyrsson Dec 13, 2025
218bd26
This finishes resolving all phpstan errors at the current level excep…
tyrsson Dec 13, 2025
25bcc55
Fixes TestAsset\ConnectionWrapper, TestAsset\PdoStubDriver and Connec…
tyrsson Dec 14, 2025
53aedea
Moves AdapterAbstractServiceFactoryTest and AdapterServiceDelegatorTe…
tyrsson Dec 14, 2025
843233c
final currently planned phpunit fixes
tyrsson Dec 14, 2025
5cbc521
Force phpunit to run from the root phpunit.xml.dist config
tyrsson Dec 14, 2025
3e7be50
Pin phpunit to the correct minimum minor for the current configuratio…
tyrsson Dec 14, 2025
5f7272a
Set all test that use reflections setAccesible to be skipped in php 8.5
tyrsson Dec 14, 2025
43ed0f9
Signed-off-by: Joey Smith <jsmith@webinertia.net>
tyrsson Dec 14, 2025
b9b2eb0
Refactor to use IgnoreDeprecations attribute along side RequiresPhp t…
tyrsson Dec 14, 2025
91f65aa
Signed-off-by: Joey Smith <jsmith@webinertia.net>
tyrsson Dec 14, 2025
44f4786
Add Attributes for deprecations and required php version to all test …
tyrsson Dec 14, 2025
b3663d2
Fix typing for $rowCount in Result
tyrsson Dec 15, 2025
6653e38
Adding .editorconfig for those newbies that might not know how to pro…
tyrsson Dec 15, 2025
247c279
phpcs fixes
tyrsson Dec 15, 2025
0533b82
This commit now includes changes from PR 102 that has been closed.
tyrsson Dec 16, 2025
f697b8a
Now includes fix for test triggering notices.
tyrsson Dec 17, 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
15 changes: 15 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
; This file is for unifying the coding style for different editors and IDEs.
; More information at http://editorconfig.org

root = true

[*]
charset = utf-8
indent_size = 4
indent_style = space
end_of_line = lf
insert_final_newline = true
trim_trailing_whitespace = true

[Makefile]
indent_style = tab
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
/.phpcs-cache
/.phpunit.result.cache
/.phpunit.cache
/.phpstan-cache
/phpstan.neon
/phpbench.json
/clover.xml
/coveralls-upload.json
/phpunit.xml
/vendor/
/.vscode
69 changes: 0 additions & 69 deletions .laminas-ci/phpunit.xml

This file was deleted.

22 changes: 0 additions & 22 deletions .laminas-ci/pre-run.sh

This file was deleted.

11 changes: 7 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
"phpbench/phpbench": "^1.4",
"phpstan/phpstan": "^2.1",
"phpstan/phpstan-phpunit": "^2.0",
"phpunit/phpunit": "^11.5.15",
"phpunit/phpunit": "^11.5.42",
"rector/rector": "^2.0"
},
"suggest": {
Expand All @@ -63,15 +63,18 @@
"scripts": {
"check": [
"@cs-check",
"@static-analysis"
"@sa",
"@test",
"@test-integration"
],
"cs-check": "phpcs",
"cs-fix": "phpcbf",
"test": "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": "vendor/bin/phpstan analyse --memory-limit=256M",
"sa-generate-baseline": "vendor/bin/phpstan analyse --memory-limit=256M --generate-baseline",
"sa": "vendor/bin/phpstan analyse --memory-limit=256M",
"sa-gen-baseline": "vendor/bin/phpstan analyse --memory-limit=256M --generate-baseline",
"sa-verbose": "vendor/bin/phpstan analyse --memory-limit=256M -vv",
"upload-coverage": "coveralls -v"
},
"conflict": {
Expand Down
Loading