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: :arrow_up: Updated composer (dev) dependencies

Signed-off-by: Tomáš Vojík <vojik@wboy.cz>
:arrow_up: Updated to PHP 8.0 minimum version

Signed-off-by: Tomáš Vojík <vojik@wboy.cz>
:white_check_mark: Added mutation tests

Signed-off-by: Heroyt <vojik@wboy.cz>
Date: 6 hours ago
Size: 1,351 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": "vojik@wboy.cz", "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": "vojik@wboy.cz", "role": "lead" } ], "minimum-stability": "dev", "prefer-stable": true, "config": { "platform": { "php": "8.0.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" }, "require": { "php": ">=8.0" }, "autoload": { "psr-4": { "TournamentGenerator\\": "src/TournamentGenerator/" } }, "require-dev": { "infection/infection": "^0.26", "phpunit/phpunit": "^9.6" } }