Download the PHP package lneicelis/transformer without Composer

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

transformer

Build Status Code Coverage Scrutinizer Code Quality Code Intelligence Status

Goals

Usage

For the sake of simplicity we wont use any namespaces and will be instantiating transformer instance manually. In real world applications you would use DI container for instantiating all transformer instance.

Setup

Transformer definition

Most basic transformer must define source it can transform. Transform method should return scalar value or associative array representing resource object.

Registering transformer into TransformerRegistry

Using transformer

Advanced usage

Nesting

Resource object properties or values returned from resource accessors are not always scalar values in real world app but instead other resources. In order to get only scalar values we might need to inject transformers into transformers to eventually have only scalar values that can be serialized. However that usually leads to increased complexity, difficult testing, limited scalability and bloated transformers.

Transformer package allows you not to worry about nested objects transformation. As long as resources returned from transform method has a transformer registered in transformer registry eventual result of transform method will be serializable array.

Example:

Lazy transformation (LazyPropertiesPipe)

There are cases when you do not need all available properties all the time. e.g.:

In such cases we can leverage LazyPropertiesPipe that uses schema to add properties on demand. This can be especially useful when using tools like GraphQL by offloading responsibility of specifying schema to the client.

Access control (AccessControlPipe)

Since one transformer defines transformation schema for one resource an issue occurs when consumer of the resource data has different data access scope.

For example, the same resource might be used by regular user and by admin user, however admin user should be able to access more properties of the resource that a regular user.

Keeping API flexible, transparent and still allowing client to specify schema requires access control mechanism at transformation level. AccessControlPipe can be used in transformation pipeline to specify access control for whole data or individual properties.

Example:


All versions of transformer with dependencies

PHP Build Version
Package Version
Requires php Version ^7.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 lneicelis/transformer contains the following files

Loading the files please wait ....