Download the PHP package darrylkuhn/dialect without Composer
On this page you can find all versions of the php package darrylkuhn/dialect. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download darrylkuhn/dialect
More information about darrylkuhn/dialect
Files in darrylkuhn/dialect
Package dialect
Short Description Provides JSON datatype support for the Eloquent ORM
License MIT
Informations about the package dialect
Dialect
Dialect provides JSON datatype support for the Eloquent ORM. At this point this implementation is pretty bare bones and has been demonstrated to work with PostgreSQL and MySQL. There are lots of opportunities to enhance and improve. If you're interested in contributing please submit merge/pull requests.
Installation
Require this package in your composer.json
file:
"darrylkuhn/dialect": "dev-master"
...then run composer update
to download the package to your vendor directory.
Usage
The Basics
The feature is exposed through a trait called which allows you to define attributes on the model which are of the json datatype. When the model is read in it will parse the JSON document and set up getters and setters for each top level attribute making it easy to interact with the various attributes within the document. For example we could create a Photos model like this:
And then this:
becomes this:
Also when calling the toArray() method the attributes are moved to the top level and the 'json_attributes' column is hidden. This essentially hides away the fact that you're using the json datatype and makes it look like we're working with attributes directly.
Relations
You can also establish relationships on a model like this (only supported in PostgreSQL):
Structure Hinting
Sometimes you may have an empty or partially populated record in which case the trait cannot automatically detect and create getters/setters, etc... When getting or setting an attribute not previously set in the JSON document you'll get an exception. You have two choices to deal with this. You can hint at the full structure as in the example below:
Once you create a hint you will be able to make calls to get and set json attributes e.g. $photo->foo = 'bar';
regardless of whether or not they are already defined in the underlying db record. Alternatly if you prefer not to hint structures then you may call setJsonAttribute()
. For example if you defined a json column called "json_data" and wanted to set an attribute called 'fizz' so you could call:
Showing/Hiding Attributes
One of the aims of the project is to make json attributes "first class" citizens of the model. This means by default we add the attributes to the models appends array so that when you call $model->toArray()
or $model->toJson()
the attribute shows up as a part of the structure like a normal attribute. By default we also hide away the json column holding the underlying data. Both of these settings can be changed using the showJsonColumns()
and showJsonAttributes()
as shown below: