Skip to content

Latest commit

 

History

History
22 lines (15 loc) · 856 Bytes

README.md

File metadata and controls

22 lines (15 loc) · 856 Bytes

PHP class for generating a tournament

The objective of this project was to implement a single and double elimination tournament system.

What the client required

  • A tournament generation system customizable according to the following parameters:
    • A number of players greater than 3.
    • The possibility to choose between a single elimination tournament and a double elimination tournament.
    • Be able to obtain the result in PHP or JSON format.
  • A basic display so that a novice can understand where he is in the tournament.
  • Handle only one object for all values.

What is not included in this project

  • The transformation of this object into a database
  • The possibility of filling the tournament
  • Round-robin tournaments

All of these elements weren't requested by the client or haven't been made public.