PHP Classes

File: composer.json

Recommend this page to a friend!
  Classes of Rodolfo Berrios Arce   Wordle CLI   composer.json   Download  
File: composer.json
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Wordle CLI
Run the Wordle game on the command line console
Author: By
Last change:
Date: 8 days ago
Size: 2,523 bytes
 

Contents

Class file image Download
{ "name": "rodber/wordle-cli", "authors": [ { "name": "Rodolfo Berrios", "email": "[email protected]", "homepage": "https://chevere.org" } ], "require": { "php": ">=8.0", "league/climate": "^3.8", "chevere/message": "^1.0", "chevere/writer": "^1.0", "chevere/filesystem": "1.0.x-dev", "chevere/parameter": "^1.0" }, "require-dev": { "phpstan/phpstan": "^1.9", "phpunit/phpunit": "^9.5", "symplify/easy-coding-standard": "^11.1" }, "autoload": { "psr-4": { "Rodber\\Wordle\\": "src/" } }, "minimum-stability": "dev", "prefer-stable": true, "bin": [ "wordle-cli" ], "scripts": { "all": [ "composer phpstan", "composer test", "composer test-coverage", "composer infection -- --skip-initial-tests --coverage=build/logs" ], "infection": [ "Composer\\Config::disableProcessTimeout", "infection --only-covered -j10" ], "infection-filter": "sh -c 'sh -c \"composer infection -- --filter=$0 --test-framework-options=--filter=$1\"' $1 $2", "phpstan": "vendor/bin/phpstan analyze src/ --memory-limit 512M --level 9", "test": [ "Composer\\Config::disableProcessTimeout", "vendor/bin/phpunit -c phpunit.xml" ], "test-coverage": [ "Composer\\Config::disableProcessTimeout", "vendor/bin/phpunit -c phpunit-coverage.xml" ], "cs-update": "mkdir -p .ecs && cd .ecs && curl -O https://raw.githubusercontent.com/chevere/code-style/main/.ecs/ecs-chevere.php", "cs-fix": "vendor/bin/ecs --config='.ecs/ecs.php' check src --fix", "open-coverage": "open build/logs/html/index.html", "open-infection": "open build/logs/html/infection.html" }, "scripts-descriptions": { "all": "Runs all checks", "infection": "Runs infection", "infection-filter": "Runs infection filtered (args infection-filter phpunit-filter)", "phpstan": "Runs phpstan", "test": "Run test suite", "test-coverage": "Run test suite (coverage)", "cs-update": "Update Chevere code style definition", "cs-fix": "Update Chevere code style definition", "open-coverage": "Open code coverage report", "open-infection": "Open infection report" } }