You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
852 B
38 lines
852 B
{
|
|
"name": "myclabs/deep-copy",
|
|
"type": "library",
|
|
"description": "Create deep copies (clones) of your objects",
|
|
"keywords": ["clone", "copy", "duplicate", "object", "object graph"],
|
|
"license": "MIT",
|
|
|
|
"autoload": {
|
|
"psr-4": {
|
|
"DeepCopy\\": "src/DeepCopy/"
|
|
},
|
|
"files": [
|
|
"src/DeepCopy/deep_copy.php"
|
|
]
|
|
},
|
|
"autoload-dev": {
|
|
"psr-4": {
|
|
"DeepCopy\\": "fixtures/",
|
|
"DeepCopyTest\\": "tests/DeepCopyTest/"
|
|
}
|
|
},
|
|
|
|
"require": {
|
|
"php": "^7.1 || ^8.0"
|
|
},
|
|
"require-dev": {
|
|
"doctrine/collections": "^1.0",
|
|
"doctrine/common": "^2.6",
|
|
"phpunit/phpunit": "^7.1"
|
|
},
|
|
"replace": {
|
|
"myclabs/deep-copy": "self.version"
|
|
},
|
|
|
|
"config": {
|
|
"sort-packages": true
|
|
}
|
|
}
|