Download the PHP package zahran/data-mapper without Composer

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

Build Status

JSON Data Mapper

Author: Mohamed Zahran

Requirements

Table of Contents

Installation

Install using composer:

Usage

After installing the package, make sure you get an instance of the Container and register the instances that the tool needs. Each instance have an alias/id so it can be easily overridden by custom implementations. The overriding part will be explained in detail later on.

Mappings Examples

1. Mapping JSON Objects

In this example, we'll learn how to map simple objects:

Original JSON:

Output:

Mappings:

NOTE: REMOVE THE COMMENTS BELOW AFTER YOU COPY/PASTE THE MAPPINGS!

Comments below are used for demonstration purposes only. Please remove them before you use the sample!

Interesting, isn't it? P.S. You don't have to include all attributes of the JSON object. Map the attributes that you only need.

2. Mapping JSON Arrays

In this example, we'll learn how to map a JSON Array "items" to "ItemsArray" and rename the "name" attribute.

Original JSON:

Output:

Mappings:

NOTE: REMOVE THE COMMENTS BELOW AFTER YOU COPY/PASTE THE MAPPINGS!

Comments below are used for demonstration purposes only. Please remove them before you use the sample!

3. Applying Conditions

We'll learn how to apply conditions to an attribute. In this example, we'll replace the value of "completed" to either Completed or Pending based on the original value of the attribute.

A list of supported condition types:

Original JSON:

Output:

Mappings:

NOTE: REMOVE THE COMMENTS BELOW AFTER YOU COPY/PASTE THE MAPPINGS!

Comments below are used for demonstration purposes only. Please remove them before you use the sample!

4. Cast Values To Another Type

You can cast values to another type. For example, you may need to change "1" to become "true", or convert a date to another date format.

A list of supported types:

Original JSON:

Output:

Mappings:

NOTE: REMOVE THE COMMENTS BELOW AFTER YOU COPY/PASTE THE MAPPINGS!

Comments below are used for demonstration purposes only. Please remove them before you use the sample!

5. Applying Mutators

Sometimes, you may need to change a value based on some business logic. Mutators allow you to apply custom PHP logic around the attribute value. It also gives the ability to use native PHP built-in functions.

A list of supported mutators:

Original JSON:

In this example, we are going to convert the title to uppercase and multiply the views by 5.

Output:

Mappings:

NOTE: REMOVE THE COMMENTS BELOW AFTER YOU COPY/PASTE THE MAPPINGS!

Comments below are used for demonstration purposes only. Please remove them before you use the sample!

6. Additional Features

Default Values

It's possible to set a default value for an attribute. This can be useful if the path you set doesn't exist, or you want to set a default value anyway.

Limiting Array Items

Sometimes, you may want to get certain items from an array depending on your use-case. It's possible to define a list of indices. Please note that the first index starts with 0. To do so, append an array of indices as a second argument to the "path" array on the target attribute. Possible ways to limit items:

Original JSON:

In this example, we are going to map all items but limit the categories to the first two items of the array and inject some hard-coded values as the default value for an attribute that's going to be created during runtime.

Output:
Mappings:

NOTE: REMOVE THE COMMENTS BELOW AFTER YOU COPY/PASTE THE MAPPINGS!

Comments below are used for demonstration purposes only. Please remove them before you use the sample!

Appending Values On Limiting Array Items

In the example, above we learnt how to get certain items from an array using indices, but you may have a case where you want to append a value at the end of the list. This is can be done this way:

Notes On The Mappings

You should now be aware of how Mappings are built. Nevertheless, I feel that you may need to bear these things in mind while building yours.

Extending The Package

The package is built to be extensible to allow you to add custom cast types, conditions and/or mutators. Moreover, you can retire any of the core classes, just make sure you're implementing the right interface.

Custom Cast Type

  1. You'll need to implement \Zahran\Mapper\Contract\CastType. It has two public methods: setModel and cast. Create the new Cast Type you want and follow the example below:

  2. Add your custom cast type to the Container. Replace {type} with the name you want to use in the mappings (i.e. custom). You can replace a core class by overriding the id. For example, if you want to replace class \Zahran\Mapper\CastType\Boolean with your own version, you'll need to register your custom implementation under cast_type.boolean.

Add Custom Condition

  1. You'll need to implement \Zahran\Mapper\Contract\Condition. It has two public methods: setModel and apply. Create the new Condition you want and follow the example below:

  2. Add your custom condition to the Container. Replace {condition_type} with the name you want to use in the mappings (i.e. custom). You can replace a core class by overriding the id. For example, if you want to replace class \Zahran\Mapper\Condition\Equals with your own version, you'll need to register your custom implementation under condition.eq.

Add Custom Mutator

  1. You'll need to implement \Zahran\Mapper\Contract\Condition. It has two public methods: setModel and apply. Create the new Condition you want and follow the example below:

  2. Add your custom mutator to the Container. Replace {name} with the name you want to use in the mappings (i.e. custom). You can replace a core class by overriding the id. For example, if you want to replace class \Zahran\Mapper\Mutator\Multiply with your own version, you'll need to register your custom implementation under mutator.multiple.

Contributing

All changes that makes the Mapper more accurate is always highly appreciated and welcome.

License

The JSON Mapper is open-sourced software licensed under the MIT license.


All versions of data-mapper with dependencies

PHP Build Version
Package Version
Requires cakephp/utility Version ^4.0
php Version >=7.2.0
psr/container Version ^2.0
ext-json Version *
phpunit/phpunit Version 8.*||9.*
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 zahran/data-mapper contains the following files

Loading the files please wait ....