Download the PHP package meritum/serialization without Composer

On this page you can find all versions of the php package meritum/serialization. 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 serialization

meritum/serialization

Pluggable object serialization with item, collection, and pagination support.

Requirements

Installation

Overview

The package is built around three concepts:

The format strategy controls the output shape. Two strategies are provided out of the box, and you can supply your own by implementing StrategyInterface.

Serializers

Implement SerializerInterface to define how a model maps to an array:

To embed a related model, call the related serializer's serialize() directly. The formatter does not recurse — related data must be resolved to a plain array inside serialize():

Formatter

Formatter is the entry point. Construct it with a StrategyInterface and call format() with an Item or Collection:

Item

Wrap a single model in an Item:

With DataArrayStrategy (the default), the output is:

Collection

Wrap an iterable of models in a Collection. Any iterable is accepted, including generators:

Output:

Metadata

Both Item and Collection accept call-site metadata via addMeta(). Multiple calls chain fluently. The meta key is omitted from the output entirely when empty:

Pagination

Cursor pagination

Implement CursorInterface and attach it to a Collection with setCursor():

Offset pagination

Implement PaginatorInterface and attach it with setPaginator():

setCursor() and setPaginator() are mutually exclusive — setting one clears the other. Pagination keys always appear before data in the output.

A bridge package for meritum/database paginators will provide concrete implementations of both interfaces.

Output strategies

DataArrayStrategy (default)

Items are wrapped under a data key. Collections always include a data key. This is the default strategy registered by SerializationModule.

ArrayStrategy

Items are returned as a bare array with no data wrapper. Collections behave the same as DataArrayStrategy — the difference only applies to items.

Custom strategies

Implement StrategyInterface to take full control of the output format:

Kernel integration

SerializationModule registers FormatterInterface in the kernel container. It uses DataArrayStrategy by default. To swap in a custom strategy, register StrategyInterface before booting:

To run multiple formatters with different strategies in the same application, bypass the module and define them manually:

License

MIT


All versions of serialization with dependencies

PHP Build Version
Package Version
Requires php Version ^8.4
georgeff/kernel Version ^1.6
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 meritum/serialization contains the following files

Loading the files please wait ...