{
"name": "deoliveiralucas/copy-object-attributes-values",
"description": "Simple helper to copy attributes values with the same name from one object to an other.",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Lucas de Oliveira",
"email": "contato@deoliveiralucas.net",
"homepage": "https://github.com/deoliveiralucas"
}
],
"autoload": {
"psr-4": {
"CopyObjectAttributesValues\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"CopyObjectAttributesValuesTest\\": "test/unit"
}
},
"minimum-stability": "stable",
"require": {
"php": ">=7.1.0"
},
"require-dev": {
"phpunit/phpunit": "^7",
"zendframework/zend-coding-standard": "^1.0",
"squizlabs/php_codesniffer": "*",
"roave/security-advisories": "dev-master"
},
"scripts": {
"check": [
"@cs-check",
"@test"
],
"cs-check": "phpcs",
"cs-fix": "phpcbf",
"test": "phpunit --colors=always"
}
}
|