PHP Classes

File: composer.json

Recommend this page to a friend!
  Classes of Lucas de Oliveira   PHP Array Keys Case Transform   composer.json   Download  
File: composer.json
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: PHP Array Keys Case Transform
Transform an array to change the case of the keys
Author: By
Last change:
Date: 5 years ago
Size: 1,014 bytes
 

Contents

Class file image Download
{ "name": "deoliveiralucas/array-keys-case-transform", "description": "Simple library to handle words case transformation from array keys", "license": "MIT", "keywords": ["array", "keys", "case", "transform", "camelcase", "snakecase"], "authors": [ { "name": "Lucas de Oliveira", "email": "contato@deoliveiralucas.net" } ], "require": { "php": ">=7.1.0", "icanboogie/inflector": "^1.4" }, "require-dev": { "phpunit/phpunit": "^7", "zendframework/zend-coding-standard": "^1.0", "squizlabs/php_codesniffer": "*", "roave/security-advisories": "dev-master" }, "autoload": { "psr-4": { "ArrayKeysCaseTransform\\": "src", "Tests\\": "test" } }, "scripts": { "check": [ "@cs-check", "@test" ], "cs-check": "phpcs", "cs-fix": "phpcbf", "test": "phpunit --colors=always" } }