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: :memo: Added the possibility to generate API docs using Doxygen

Signed-off-by: Heroyt <vojik@wboy.cz>
:memo: API docs for the latest changes

Signed-off-by: Heroyt <vojik@wboy.cz>
:memo: Move API documentation to its root directory
:green_heart: Fixed composer.json validity
:construction_worker: Added test script to composer
:art: Better structure, documented code an update to PHP 7.4

A lot of changes - mainly restructuring / reformatting the code to be more maintainable.
Date: 2 years ago
Size: 1,156 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": "7.4.0" }, "optimize-autoloader": true, "sort-packages": true }, "scripts": { "docs": "php phpDocumentor.phar -s src/ -t docs/api/", "doxygen": "doxygen", "test": "./vendor/bin/phpunit" }, "require": { "php": ">=7.4" }, "autoload": { "psr-4": { "TournamentGenerator\\": "src/TournamentGenerator/" } }, "require-dev": { "phpunit/phpunit": "^9.5" } }