Download the PHP package zero-config/clone without Composer

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

Introduction

The zero-config/clone package is meant to support developers creating deep clones of objects. Contrary to most solutions out there, this package does exactly what is says on the tin and requires no knowledge of the inner workings or specific configuration in order to do what one expects it to do. 🐑

Bitbucket Pipelines codecov Packagist PHP from Packagist Packagist

Installation

Usage

To use the clone functionality, simply invoke the deepClone function. Alternatively, the alias 🐑 can be used.

For an object oriented approach, one can use an instance of Cloner.

Rules of thumb

  1. Objects are cloned recursively.
  2. Properties of all visibilities (public, protected, private) are cloned.
  3. Static properties are NOT cloned.
  4. Singletons remain singletons.
  5. Relations are kept in-tact. References to siblings will also be referenced between cloned siblings.
  6. Cloning does not cause recursion errors when object pairs reference each other.

Proof of concept

The cloner creates deep copies of objects, recognizing references and capable of properly handling recursive self-references.

The code above will output:

This proves that holland and amsterdam are both the same objects and when performing a deep copy, both amsterdam and holland no longer affect the child objects of the original timezone, yet they both still point to the same object.

This is achieved by checking whether a given object already has a clone, reusing the clone when available.


All versions of clone with dependencies

PHP Build Version
Package Version
Requires php Version ^7.2
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 zero-config/clone contains the following files

Loading the files please wait ....