summaryrefslogtreecommitdiffstats
path: root/composer.json
diff options
context:
space:
mode:
Diffstat (limited to 'composer.json')
-rw-r--r--composer.json21
1 files changed, 21 insertions, 0 deletions
diff --git a/composer.json b/composer.json
new file mode 100644
index 0000000..d20287a
--- /dev/null
+++ b/composer.json
@@ -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"
+ }
+}