PHP Classes

File: composer.json

Recommend this page to a friend!
  Classes of Francesco Danti   ATK4 PHP Debug Bar   composer.json   Download  
File: composer.json
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: ATK4 PHP Debug Bar
Output debug information using PHP DebugBar
Author: By
Last change:
Date: 4 years ago
Size: 2,606 bytes
 

Contents

Class file image Download
{ "name": "abbadon1334/atk4-phpdebugbar", "description": "ATK4 UI with PHPDebugBar", "type": "library", "license": "MIT", "authors": [ { "name": "abbadon1334", "email": "fdanti@gmail.com" } ], "minimum-stability": "dev", "require": { "php": ">=7.2.0", "atk4/ui": "dev-develop", "maximebf/debugbar": "^1.15@dev", "ext-pdo": "*" }, "require-dev":{ "atk4/data": "dev-develop", "atk4/schema": "dev-develop", "codacy/coverage": "dev-master", "friendsofphp/php-cs-fixer": "dev-master@dev", "monolog/monolog": "^2.0@dev", "phpmd/phpmd": "2.6.1", "phpmetrics/phpmetrics": "dev-master@dev", "phpstan/phpstan": "0.11.12", "phpunit/phpunit": "*", "squizlabs/php_codesniffer": "3.4.2", "symfony/yaml": "~2.1|~3.0|~4.0" }, "config": { "sort-packages": true }, "autoload": { "psr-4": { "ATK4PHPDebugBar\\": "src/" } }, "autoload-dev": { "psr-4": { "ATK4PHPDebugBar\\Tests\\": "tests/" } }, "scripts": { "fix": "php-cs-fixer fix src", "stan": "phpstan analyse src", "stan1": "phpstan analyse --level 1 src", "stan2": "phpstan analyse --level 2 src", "stan3": "phpstan analyse --level 3 src", "stan4": "phpstan analyse --level 4 src", "stan5": "phpstan analyse --level 5 src", "stan6": "phpstan analyse --level 6 src", "stan7": "phpstan analyse --level 7 src", "metrics": [ "mkdir -p ./build/report", "mv ./build/report ./build/report_$(date +\"%Y.%m.%d_%H%M%S\")", "phpmetrics --config=./.phpmetrics.json .", "firefox ./build/report/phpmetrics.html/index.html" ], "metrics-clear": [ "rm -rf ./build/report_*", "rm -rf ./build/report" ], "unit": [ "mkdir -p ./build/coverage", "mv ./build/coverage ./build/coverage_$(date +\"%Y.%m.%d_%H%M%S\")", "phpunit --configuration phpunit.xml" ], "unit-html": [ "mkdir -p ./build/coverage", "mv ./build/coverage ./build/coverage_$(date +\"%Y.%m.%d_%H%M%S\")", "phpunit --configuration phpunit.xml --coverage-html ./build/coverage", "firefox ./build/coverage/index.html" ], "unit-clear": [ "rm -rf ./build/coverage_*", "rm -rf ./build/coverage" ] } }