Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
6213c00
fix: add missing #[Override] attributes (mago analyze)
tyrsson Aug 10, 2026
bde6051
fix: document unhandled-thrown-type findings (mago analyze)
tyrsson Aug 10, 2026
2d2eebb
fix: resolve non-existent-method findings (mago analyze)
tyrsson Aug 10, 2026
0fbfc7e
fix: resolve imprecise-type findings (mago analyze)
tyrsson Aug 10, 2026
517dd97
fix: resolve most uninitialized-property findings (mago analyze)
tyrsson Aug 10, 2026
5fae58c
fix: document unhandled-thrown-type in Result::loadFromMysqliResult()
tyrsson Aug 10, 2026
5bf22d7
fix: resolve unused-parameter findings (mago analyze)
tyrsson Aug 10, 2026
9371a24
mago analyze: add row-shape docblocks for Metadata/Source.php query l…
tyrsson Aug 10, 2026
4d917f8
mago analyze: fix real bugs and tighten types in Result.php
tyrsson Aug 10, 2026
01bf652
mago analyze: fix real bugs in Statement.php
tyrsson Aug 10, 2026
1446135
mago analyze: fix real bugs in Connection.php
tyrsson Aug 10, 2026
db9b687
mago analyze: suppress createResult() argument mismatch in Connection…
tyrsson Aug 10, 2026
e73cdab
mago analyze: fix real bugs in Pdo/Connection.php
tyrsson Aug 10, 2026
4e2c1fc
mago analyze: fix real bugs in AlterTableDecorator.php
tyrsson Aug 10, 2026
d052760
mago analyze: fix real bugs in CreateTableDecorator.php
tyrsson Aug 10, 2026
a8ab431
mago analyze: generate baseline for remaining tracked findings
tyrsson Aug 10, 2026
f1292f3
mago analyze: use @mago-expect for unused-parameter in Container fact…
tyrsson Aug 11, 2026
c8b197b
mago analyze: move @mago-expect into existing docblocks in Container …
tyrsson Aug 11, 2026
bd76204
adds php version, latest release and license to readme
tyrsson Aug 12, 2026
b36e74b
Correct package name in readme
tyrsson Aug 12, 2026
9432fe6
mago analyze: rename baseline to documented analysis-baseline.toml co…
tyrsson Aug 12, 2026
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
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
# PhpDb Adapter Mysql
# PhpDb Mysql

[![PHP Version](https://img.shields.io/packagist/php-v/php-db/phpdb-mysql)](https://packagist.org/packages/php-db/phpdb-mysql)
[![Continuous Integration](https://github.com/php-db/phpdb-mysql/actions/workflows/continuous-integration.yml/badge.svg)](https://github.com/php-db/phpdb-mysql/actions/workflows/continuous-integration.yml)
[![codecov](https://codecov.io/gh/php-db/phpdb-mysql/graph/badge.svg)](https://codecov.io/gh/php-db/phpdb-mysql)
[![Mutation testing badge](https://img.shields.io/endpoint?style=flat&url=https%3A%2F%2Fbadge-api.stryker-mutator.io%2Fgithub.com%2Fphp-db%2Fphpdb-mysql%2F0.5.x)](https://dashboard.stryker-mutator.io/reports/github.com/php-db/phpdb-mysql/0.5.x)
[![Latest Stable Version](https://img.shields.io/packagist/v/php-db/phpdb-mysql)](https://packagist.org/packages/php-db/phpdb-mysql)
[![License](https://img.shields.io/github/license/php-db/phpdb-mysql)](LICENSE)

This package provides MySQL support for PhpDb.
Loading