A PHP implementation of TicTacToe game inspired from Odin Project
- Supports PHP 7 and above.
- Plays on the command line.
- Play against computer bot or human player.
- A user interface that's easy to grasp for non programmers.
# git clone https://github.com/BennyThadikaran/TicTacToe.git
cd TicTacToe;
php index.php;
The AI class uses MiniMax algorithm to maximize chances of winning. Worst case scenario, the game results in a draw.