PHP Classes

File: composer.json

Recommend this page to a friend!
  Classes of Lucas de Oliveira   PHP Copy Object Properties to Another   composer.json   Download  
File: composer.json
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: PHP Copy Object Properties to Another
Copy the values of attributes to another object
Author: By
Last change:
Date: 5 years ago
Size: 1,128 bytes
 

Contents

Class file image Download
{ "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" } }