PHP Classes

File: composer.json

Recommend this page to a friend!
  Classes of Andrey Iatsenko   Laravel Route Coverage   composer.json   Download  
File: composer.json
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Laravel Route Coverage
Report the coverage of Laravel project tests
Author: By
Last change:
Date: 9 months ago
Size: 1,800 bytes
 

Contents

Class file image Download
{ "name": "yzen.dev/laravel-route-coverage", "version": "0.1.2", "description": "Laravel route coverage", "minimum-stability": "dev", "prefer-stable": true, "license": "MIT", "keywords": [ "laravel", "route", "coverage" ], "support": { "issues": "https://github.com/yzen-dev/laravel-route-coverage/issues", "source": "https://github.com/yzen-dev/laravel-route-coverage" }, "authors": [ { "name": "Andey Iatsenko", "email": "yzen.dev@gmail.com" } ], "autoload": { "psr-4": { "LaravelRouteCoverage\\": "src/" } }, "autoload-dev": { "psr-4": { "Tests\\": "tests/" } }, "require": { "php": "^7.4 | ^8.0", "illuminate/console": "^7.0 || ^v8.0", "illuminate/routing": "^7.0 || ^v8.0", "illuminate/config": "^7.0 || ^v8.0" }, "require-dev": { "phpstan/phpstan": "^0.12.82", "mockery/mockery": "^1.0", "phpunit/phpunit": "^9.3", "squizlabs/php_codesniffer": "*" }, "extra": { "laravel": { "providers": [ "LaravelRouteCoverage\\ServiceProvider" ] } }, "scripts": { "phpunit": [ "./vendor/phpunit/phpunit/phpunit --configuration ./phpunit.xml" ], "phpstan": [ "./vendor/bin/phpstan analyse -c ./phpstan.neon src" ], "phpcs": [ "./vendor/bin/phpcs --standard=./phpcs.xml -n --no-cache -s" ], "phpcbf": [ "./vendor/bin/phpcbf --standard=./phpcs.xml -n --no-cache -s" ], "coverage": [ "./vendor/phpunit/phpunit/phpunit --configuration ./phpunit.xml --coverage-text --colors=never --coverage-clover coverage.xml" ], "coverage-html": [ "./vendor/phpunit/phpunit/phpunit --configuration ./phpunit.xml --coverage-html public/coverage --coverage-text" ] } }