PHP Classes

File: composer.json

Recommend this page to a friend!
  Classes of Marco Cesarato   PHP Dumper Var   composer.json   Download  
File: composer.json
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: PHP Dumper Var
Display a formatted version of variable values
Author: By
Last change: Resolves issue #6
Add depth and highlight method tests
Resolves issue #2
Date: 4 years ago
Size: 1,074 bytes
 

Contents

Class file image Download
{ "name": "marcocesarato/dumper", "description": "This class displays structured information about one or more expressions that includes its type and value. Arrays and objects are explored recursively with values indented to show structure.", "type": "library", "license": "GPL-3.0-or-later", "minimum-stability": "stable", "authors": [ { "name": "Marco Cesarato", "email": "cesarato.developer@gmail.com" } ], "scripts": { "test": "vendor/bin/phpunit", "fix-cs": "vendor/bin/php-cs-fixer fix --config=.cs.php", "check-cs": "vendor/bin/php-cs-fixer fix --dry-run --format=txt --verbose --diff --diff-format=udiff --config=.cs.php", "check-all": [ "@check-cs", "@test" ] }, "require": { "php": ">=5.6", "ext-json": "*" }, "require-dev": { "phpunit/phpunit": "^5.0", "friendsofphp/php-cs-fixer": "^2.15" }, "autoload": { "psr-4": { "marcocesarato\\dumper\\": "src" } }, "autoload-dev": { "psr-4": { "marcocesarato\\dumper\\tests\\": "tests" } } }