Download the PHP package dbout/wp-orm without Composer
On this page you can find all versions of the php package dbout/wp-orm. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Informations about the package wp-orm
WordPress ORM with Eloquent
[!IMPORTANT] The phinx package will be removed in a future release in order to use the Laravel migration system. It is therefore advisable to stop using the tool. More info.
WordPress ORM with Eloquent is a small library that adds a basic ORM into WordPress, which is easily extendable and includes models for core WordPress models such as posts, post metas, users, comments and more.
The ORM is based on Eloquent ORM and uses the WordPress connection (wpdb
class).
💡 To simplify the integration of this library, we recommend using WordPress with one of the following tools: Bedrock, Themosis or Wordplate.
Features
- ✅ Support core WordPress models:
Comment
,Option
,Post
,TermTaxonomy
,Term
,User
,PostMeta
andUserMeta
- ✅ Support core WordPress post type:
Article
,Attachment
andPage
- ✅ Based on core WordPress database connection (
wpdb
class), no configuration required ! - ✅ Custom functions to filter models with meta
- ❤️ Easy integration of a custom post type
- ❤️ Easy model creation for projects with custom tables
- ❤️ All the features available in Eloquent, are usable with this library !
Not yet developed but planned in a future version:
- 🗓️ Create custom comment type
- 🗓️ Meta casting (e.g. Attribute Casting)
Documentation
This documentation only covers the specific points of this library, if you want to know more about Eloquent, the easiest is to look at the documentation of Eloquent :)
- Installation
- Use WordPress core models
- Filter data
- With findOneBy*
- With taps
- With query builder
- Events
- Create custom model
- Generic Model
- Custom Post Type Model
Migration with Phinx
Installation
Requirements
The server requirements are basically the same as for WordPress with the addition of a few ones :
- PHP >= 8.1
- Composer
Installation
You can use Composer. Follow the installation instructions if you do not already have composer installed.
composer require dbout/wp-orm
In your PHP script, make sure you include the autoloader:
require __DIR__ . '/vendor/autoload.php';
🎉 You have nothing more to do, you can use the library now! Not even need to configure database accesses because it's the wpdb
connection that is used.
Contributing
We encourage you to contribute to this repository, so everyone can benefit from new features, bug fixes, and any other improvements. Have a look at our contributing guidelines to find out how to raise a pull request.
All versions of wp-orm with dependencies
laravel/serializable-closure Version ^1.3
illuminate/database Version ^11.0