Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/opportus/orm
A basic ORM, still in writing process... [PRE_ALPHA]
https://github.com/opportus/orm
mapper orm pdo-mysql repository
Last synced: 9 days ago
JSON representation
A basic ORM, still in writing process... [PRE_ALPHA]
- Host: GitHub
- URL: https://github.com/opportus/orm
- Owner: opportus
- License: mit
- Created: 2017-10-14T20:22:05.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2017-10-27T19:23:41.000Z (about 7 years ago)
- Last Synced: 2024-11-10T19:50:23.985Z (2 months ago)
- Topics: mapper, orm, pdo-mysql, repository
- Language: PHP
- Homepage:
- Size: 7.81 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## About
I've written this ORM as a school project. I maintain and develop it as I use it for my personnal projects.It implements the following design patterns:
- Data gateway (a default PDO_MYSQL Adapter implementing GatewayInterface)
- Data mapper
- Repository
- Model factory
- Domain model### Phylosophy
KISS > Flexibility > Extensibility
### Important Notes
Note that this ORM is still in pre-alpha, so:
- It doesn't support advanced mapping yet, meaning that at this time, you can only create entities whose data are all in the same table
- It may include new features and possibly heavy changes anytime soonNote also that PHP versions lower than the **7.0** *might* never be supported...
## Contributing
Constructive issues/PRs of any type are more than welcome !
## Doc
Will work on the doc when the ORM will get stable enough...