Download the PHP package nti/sync-bundle without Composer

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

NTISyncBundle

Installation

  1. Install the bundle using composer:

  2. Add the bundle configuration to the AppKernel

  3. Update the database schema

  4. Add the routes to your routing.yml

Requirements

Below are a list of things that need to be considered in order to implement this bundle:

  1. Any Entity that needs to be taken into account during the synchronization process must have the @NTI\SyncEntity annotation at the class level.
  2. ManyToOne relationships that should alter the last synchronization timestamp of their parents should use the annotation @NTI\SyncParent(getter="[Getter Name]") (see example below for more information).
  3. Entities to be synced must have a repository implementing the SyncRepositoryInterface (see below for more information).
  4. The mapping SyncMapping needs to be configured foreach entity as it is the list used as reference for the lookup.
  5. The SyncState should be created for each mapping. This can be done with this query after creating all the SyncMapping: yaml nti_sync: deletes:

    Identifier to use when an item gets deleted. This would go in your deletes section as shown below

    identifier_getter: "getId"

{ "[MAPPING_NAME]": { "changes": [ { "id": 2, "productId": "POTATOBAG", "name": "Potato bag", "description": "Bag of potatoes", "price": "32.99", "cost": "0", "createdOn": "11/30/2017 04:22:49 PM", "updatedOn": "11/30/2017 04:22:49 PM", "lastTimestamp": 1515068439 }, ... ], "newItems": [ { "id": 1, "uuid": "24a7aff0-fea8-4f62-b421-6f97f464f310", "mapping": { "id": 1, "name": "Product", "class": "AppBundle\Entity\Product\Product", "sync_service": "AppBundle\Service\Product\ProductService" }, "class_id": 8, "timestamp": 1515068439 }, ...
], "deletes": [ { "id": 2, "mapping": { "id": 2, "name": "Product", "class": "AppBundle\Entity\Product\Product" }, "classId": "[identifier_getter result]", "timestamp": 1512080746 }, ... ], "failedItems": [ { "id": 7, "uuid": "abcdefg-123456-hifgxyz-78901", "mapping": { "id": 9, "name": "Product", "class": "AppBundle\Entity\Product\Product", "sync_service": " ... " }, "classId": 137, "timestamp": 1512080747, "errors": [...errors provided...] }, ... ], "_real_last_timestamp": 1512092445 } }

POST /nti/sync/push Content-Type: application/json { "mappings": [ { "mapping": "[MAPPING_NAME]", "data": [ { "id": "5eb86d4a-9b82-42f3-abae-82b1b61ad58e", "serverId": 1, "name": "Product1", "description": "Description of the product", "price": 55, "lastTimestamp": 1512080746 }, ... ] } ] }

{ "mappings": [ { "[MAPPING_NAME]": "RESULT OF YOUR sync() HERE" }, { "[MAPPING_NAME]": "RESULT OF YOUR sync() HERE" }, { "[MAPPING_NAME]": "RESULT OF YOUR sync() HERE" }, ] }



## Todo

* Handle deletes from third parties
* `ManyToMany` relationships are tricky and can lead to performance issues 

All versions of sync-bundle with dependencies

PHP Build Version
Package Version
Requires symfony/serializer Version >=2.0
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 nti/sync-bundle contains the following files

Loading the files please wait ....