Download the PHP package ornament/core without Composer

On this page you can find all versions of the php package ornament/core. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package core

Ornament

PHP8 object decorator toolkit, core package

When translating data from any storage source to your PHP models, you'll often want to augment it. For example, a date from a database is simply a string, but maybe you prefer it as a DateTime object, or a Carbon instance.

Ornament's aim is to simplify tons of boilerplate code to facilitate this.

Installation

You'll likely also want auxiliary packages from the ornament/* family. These contain predefined types you can use, e.g. the Bitflag\Property allowing you to stuff multiple true/false values in a single integer.

Manual installation

Yadiyadi, git clone or whatever and add the path for the Ornament\Core namespace to your psr-4 autoload config. But really, don't do that unless you're masochistic.

Basic usage

Ornament models are nothing more than vanilla PHP classes; there is no need to extend any master or god class of sorts (you might want to do that in your own framework of choice).

At the very least, you'll want to use the Ornament\Core\Model trait:

Here, we indicated (via type-hinting) that the datecreated property should actually contain a DateTime object. It is also readonly, since the creation date is not very likely to ever change.

Ornament defines a default constructor which assumes one argument: a hash of key/value pairs for your model's properties. If you require a constructor for your model (e.g. because you need to inject dependencies) you may alias the default constructor and call it manually. An example:

Decorated properties assume the decorating class accepts the value as its first constructor argument. Additional arguments may be specified by annotating the property with one or more Ornament\Core\Construct attributes. The attribute's constructor argument is the actual additional value that should be passed. For instance, to specify a specific time zone for the DateTime property, one would write:

Lastly, Ornament defines a Decorator class that custom decorators may extend. The difference from a "vanilla" decorator is that extensions of the Decorator come with some utility methods, and receive by default a second constructor argument: a ReflectionProperty of the original target field (so your custom decorator can also refer to any attributes your project may have defined for that specific property - or whatever other black magic you need to do).

Extensions of the Decorator class can also add Construct attributes like above. These will be passed as the third etc. arguments to the constructor.

Types

Properties specifying one of the basic, built-in types (e.g. int or string) will have their values coerced to the correct type.

Enums

Properties may also be type-hinted as a backed enum:

If the enum property is nullable, an invalid value will not throw an error, but cause null to be set instead.

Getters for virtual properties

Ornament models support the concept of virtual properties (which are, by definition, read-only).

An example of a virtual property would be a model with a firstname and lastname property, and a getter for fullname. To mark a method as a getter, attribute it with #[\Ornament\Core\Getter("propertyName")]:

The name and visibility of a getter (usually) don't matter; a best practice is to mark them as protected so they cannot be called from outside, and to give them a reasonably descriptive name for your own sanity (in the above example, getFullname would have been better).

PHP, PDO and fetchObject

PDO's fetchObject and related methods try to be clever by injecting properties based on fetched database columns before the constructor is called. Hence, do not use PDO::FETCH_OBJECT; instead, use PDO::FETCH_ASSOC.

Stateful models

Models may use the Ornament\Core\State trait to expose some convenience methods:

All these methods are public. You can use them in your storage logic to determine how to proceed (e.g. skip an expensive UPDATE operation if the model isPristine() anyway).

Preventing properties from being decorated

If your models are more than a "simple" data store, there might be properties on it you explicitly don't want decorated. Note that any static property is already left alone.

To explicitly tell Ornament to skip decoration for a public or protected property, add the attribute Ornament\Core\NoDecoration to it.


All versions of core with dependencies

PHP Build Version
Package Version
Requires php Version >=8.1
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package ornament/core contains the following files

Loading the files please wait ....