2 个仓库
The process of populating PHP objects from external data sources by mapping values to properties.
Distinct from PHP Data Collection Libraries: None of the candidates cover the specific domain of data hydration for PHP objects.
Explore 2 awesome GitHub repositories matching data & databases · PHP Data Hydration. Refine with filters or upvote what's useful.
Instantiator is a PHP library designed to create class instances without invoking their constructors. It uses the PHP Reflection API to allocate objects in memory and initialize them in a predefined state, bypassing standard constructor logic. The project functions as a data hydration tool and a testing helper. It enables the population of PHP objects from external data sources by mapping values directly to properties, regardless of whether those properties are public, protected, or private. This capability allows for the generation of objects in specific internal states for unit tests withou
Populates PHP objects with data from external sources by mapping values directly to properties.
Doctrine ORM is a PHP object-relational mapper that connects application objects to relational database tables. It uses the data mapper and identity map patterns to decouple the in-memory object model from the database schema, allowing developers to manage data persistence without writing manual SQL. The project features a dedicated object-oriented query language and programmatic builder for retrieving data based on entities rather than tables. It implements a unit-of-work system to track object changes during a request and synchronize them via atomic transactions. The capability surface inc
Provides a system to populate PHP objects and arrays from raw database result sets.