lightning / orm
Light & fast PHP ORM, using Hydrahon (query builder), Carbon (DateTime extension) and Eloquent's Collection component (Laravel).
Requires
- php: ^7.2 || ^8.0
- clancats/hydrahon: ^1.1.8
- doctrine/inflector: ^1.3
- nesbot/carbon: ^1.36.2 || ^2
- tightenco/collect: ^5.7 || ^9.0
Requires (Dev)
- phpunit/phpunit: ^9.0
- dev-master
- 0.5.0
- 0.4.0
- 0.3.38
- 0.3.37
- 0.3.36
- 0.3.35
- 0.3.34
- 0.3.33
- 0.3.32
- 0.3.31
- 0.3.30
- 0.3.29
- 0.3.28
- 0.3.27
- 0.3.26
- 0.3.25
- 0.3.24
- 0.3.23
- 0.3.22
- 0.3.21
- 0.3.20
- 0.3.19
- 0.3.18
- 0.3.17
- 0.3.16
- 0.3.15
- 0.3.14
- 0.3.13
- 0.3.12
- 0.3.11
- 0.3.10
- 0.3.9
- 0.3.8
- 0.3.7
- 0.3.6
- 0.3.5
- 0.3.4
- 0.3.3
- 0.3.2
- 0.3.1
- 0.3.0
- 0.2.24
- 0.2.23
- 0.2.22
- 0.2.21
- 0.2.20
- 0.2.19
- 0.2.18
- 0.2.17
- 0.2.16
- 0.2.15
- 0.2.14
- 0.2.13
- 0.2.12
- 0.2.11
- 0.2.10
- 0.2.9
- 0.2.8
- 0.2.7
- 0.2.6
- 0.2.5
- 0.2.4
- 0.2.3
- 0.2.2
- 0.2.1
- 0.2.0
- 0.1.3
- 0.1.2
- 0.1.1
- 0.1.0
- dev-develop
- dev-feature/log_elapsed_time
- dev-feature/entitty_clone
- dev-feature/hotfix_exception_bag_construct
- dev-feature/new_select_arg
- dev-feature/hotfix_unset
- dev-feature/empty_collection_one_to_many
- dev-feature/bug_exception_bag
- dev-feature/lazy_loaded_entity_property_is_set
- dev-feature/lazyload_and_pluck
- dev-feature/many_to_many_prefix
- dev-feature/tryLoadingFromUniqueFields
- dev-feature/loadOrNew_cache_fix
- dev-feature/cache_fix
- dev-feature/cache_for_existing_entities
- dev-feature/cache_on_chained_relations
- dev-feature/many_to_one_on_null
- dev-feature/relation_prefix
- dev-feature/exceptionbag_dedoublon_messages
- dev-feature/relations_cache
- dev-feature/relation_prefix_one_to_many
- dev-feature/correctif
- dev-feature/factory
- dev-feature/many_to_many_with_prefix
- dev-feature/entitites_collection_construct_parameters
- dev-feature/specific_entitiescollection
- dev-feature/iterator_aggregate
- dev-feature/collections_many_to_many
- dev-feature/truncate_in_entitytest
- dev-feature/mac_decimal_separator
- dev-feature/issues_pull_request_11
- dev-feature/many_to_many
- dev-feature/specific_setter
- dev-feature/array_to_entities_collection
- dev-feature/clone_collection
- dev-feature/without_prefix
- dev-feature/new-collection-functions
- dev-feature/save-all-exeptions
- dev-feature/collection-relations
- dev-feature/external-collections
This package is auto-updated.
Last update: 2025-01-06 17:06:05 UTC
README
Lightning ORM is an Object Relational Mapper written in PHP.
Why reinventing the wheel ?
I like the Laravel/Eloquent syntax and philosophy, but the performances are very poor when requesting relations from a collection (example : $customers->orders) because it makes one query per customer... Lightning ORM makes a single request and hydrates all the entities at once.
I also have the habbit of prefixing all my fields with the table's name to make them unique (examples : customer.cst_id, order.rdr_id, order.rdr_cst_id). This allows to make requests without using the tables names : SELECT * FROM order JOIN customer ON cst_id = rdr_cst_id
. Lightning ORM handles this natively.
Installation
Lightning ORM follows PSR-4
autoloading and can be installed using composer:
$ composer require 'lightning/orm'
Running tests
The root user should be able to connect to MySQL without any password.
You should also run those two commands to install the dependencies and the test database :
$ composer install
$ tests/bin/init.sh
After that, you can run the tests using Composer :
$ composer test
Quick Start
Not written yet...
Dependencies
Lightning ORM is using :
- Hydrahon (query builder)
- Carbon (DateTime extension)
- The
Collection
component from Laravel/Eloquent
License
The MIT License (MIT). Please see License File for more information.