PHP Classes

File: composer.json

Recommend this page to a friend!
  Classes of Tomáš Vojík   PHP Tournament Bracket Generator   composer.json   Download  
File: composer.json
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: PHP Tournament Bracket Generator
Organize the matches of teams in a tournament
Author: By
Last change: :heavy_plus_sign: Added new code quality tools

Signed-off-by: Tomáš VojĂ­k <[email protected]>
Date: 5 months ago
Size: 1,665 bytes
 

Contents

Class file image Download
{ "name": "heroyt/tournament-generator", "description": "A set of classes used to create multiple kinds of tournament brackets in PHP.", "homepage": "https://github.com/Heroyt/tournament-generator", "keywords": [ "generator", "tournament", "tournaments", "scheduler", "teams", "bracket" ], "support": { "email": "[email protected]", "docs": "https://heroyt.github.io/tournament-generator/", "wiki": "https://tournament-generator.readthedocs.io/en/latest/", "source": "https://github.com/Heroyt/tournament-generator" }, "type": "library", "license": "MIT", "authors": [ { "name": "Tomá? Vojík", "email": "[email protected]", "role": "lead" } ], "minimum-stability": "dev", "prefer-stable": true, "config": { "platform": { "php": "8.4.0" }, "optimize-autoloader": true, "sort-packages": true, "allow-plugins": { "infection/extension-installer": true, "ocramius/package-versions": true } }, "scripts": { "docs": "php phpDocumentor.phar -s src/ -t docs/api/", "doxygen": "doxygen", "test": "./vendor/bin/phpunit", "testMutation": "./vendor/bin/infection --threads=4", "phpstan": "./vendor/bin/phpstan analyse -c phpstan.neon", "cs": "./vendor/bin/php-cs-fixer --allow-risky=yes check", "cbf": "./vendor/bin/php-cs-fixer --allow-risky=yes fix", "rector": "./vendor/bin/rector" }, "require": { "php": ">=8.4" }, "autoload": { "psr-4": { "TournamentGenerator\\": "src/TournamentGenerator/" } }, "require-dev": { "friendsofphp/php-cs-fixer": "^3.84", "infection/infection": "^0.30", "phpstan/phpstan": "^2.1", "phpunit/phpunit": "^12.2", "rector/rector": "^2.1" } }