Included vendor/ to the project - 2

This commit is contained in:
2017-09-13 09:38:30 +07:00
parent 17f1643875
commit 41a8d82464
43 changed files with 5893 additions and 0 deletions

21
vendor/myclabs/deep-copy/composer.json vendored Normal file
View File

@@ -0,0 +1,21 @@
{
"name": "myclabs/deep-copy",
"type": "library",
"description": "Create deep copies (clones) of your objects",
"keywords": ["clone", "copy", "duplicate", "object", "object graph"],
"homepage": "https://github.com/myclabs/DeepCopy",
"license": "MIT",
"autoload": {
"psr-4": { "DeepCopy\\": "src/DeepCopy/" }
},
"autoload-dev": {
"psr-4": { "DeepCopyTest\\": "tests/DeepCopyTest/" }
},
"require": {
"php": ">=5.4.0"
},
"require-dev": {
"doctrine/collections": "1.*",
"phpunit/phpunit": "~4.1"
}
}