zrnik / mksql
MkSQL is a tool for keeping your tables up to date with PHP code. You can use it in your project or as a database preparation in your integration tests.
Installs: 1 122
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 0
Forks: 0
Open Issues: 0
Requires
- php: >=8.0
- ext-pdo: *
- jetbrains/phpstorm-attributes: ^1.0
- nette/utils: ^3.0
- zrnik/enum: ^1
Requires (Dev)
- brick/date-time: ^0.3
- nette/neon: ^3
- phpstan/phpstan: ^1.8
- phpstan/phpstan-phpunit: ^1.3.4
- phpunit/phpunit: ^9
- tracy/tracy: ^2
- zrnik/phpunit-exceptions: ^0.0.5
- dev-master
- v0.10.0
- v0.9.18
- v0.9.17
- v0.9.16
- v0.9.15
- v0.9.14
- v0.9.13
- v0.9.12
- v0.9.11
- v0.9.10
- v0.9.9
- v0.9.8
- v0.9.7
- v0.9.6
- v0.9.5
- v0.9.4
- v0.9.3
- v0.9.2
- v0.9.1
- v0.9.0
- v0.8.4
- v0.8.3
- v0.8.2
- v0.8.1
- v0.8
- v0.7.2
- v0.7.1
- v0.7
- v0.6.7
- v0.6.6
- v0.6.5
- v0.6.4
- v0.6.3
- v0.6.2
- 0.6.0
- 0.5.1
- 0.4.0
- 0.3.2
- 0.3.1
- 0.3.0
- 0.2.3
- 0.2.2
- 0.2.1
- 0.2.0
- 0.1.5
- 0.1.4
- 0.1.3
- 0.1.2
- 0.1.1
- 0.1.0
This package is auto-updated.
Last update: 2025-03-12 17:04:06 UTC
README
Do not use this!
Use doctrine instead!
What is it?
So, I just found out that the thing I created is usually called an ORM and DBAL.
MkSQL is a tool for keeping your tables up to date with PHP code. It aims for a simple use cases, so it cannot handle very complex stuff. Explore the docs to see what is possible.
This package simply allows you to define entities, that represent your database tables, and automatically creates them for you.
You can also skip the ORM
part and use Updater
class to create your database without any entities, instead of
creating them with Adminer (or PHPMyAdmin).
Documentation index is in docs/index.md file.
Requirements
This package requires you to run it with PHP 8+, as it uses the new stuff this version delivers. Mainly attributes and promoted constructor properties.
{ "PHP": ">= 8", "ext-pdo": "*", "nette/utils": "^3.0", "zrnik/enum": "^1", "ext-iconv": "*", "ext-intl": "*" }
Installation
composer require zrnik/mksql
Read more at Installation and Configuration page.
Supported Drivers:
This package contains a Tracy panel
Add this to your bootstrap file:
Tracy\Debugger::getBar()->addPanel(new \Zrnik\MkSQL\Tracy\Panel());
Or, if you are using Nette Framework, register it in your configuration file:
tracy: bar: - Zrnik\MkSQL\Tracy\Panel