Skip to content

Latest commit

 

History

History
65 lines (35 loc) · 1.3 KB

README.md

File metadata and controls

65 lines (35 loc) · 1.3 KB

PHP-Minesweeper

This is an object-oriented PHP implementation of the game Minesweeper. It was made to practice test-driven development. So this minesweeper implementation is unit tested.

Because of its OOP nature, it's easy to add custom squares instead of mines.

I hope anyone finds it useful.

PHP-Minesweeper screenshot

Requirements

Installation details

Download the files or clone this project.

git clone https://github.com/mauserrifle/php-minesweeper.git

Get all dependencies through composer:

composer update

Running unittests

./vendor/bin/phpunit --colors tests

This should output:

......................

Time: 0 seconds, Memory: 4.00Mb

OK (22 tests, 175 assertions)

Playing

PHP 5.4 is easy and fast:

cd public
php -S localhost:8000

Open http://localhost:8000 in your browser.

Demo

There will be no demo from me

TODO

  • Create tests for flagging

  • Create tests for not adding mines on surrounded squares of a position to avoid

  • Improve code for position avoid regarding surrounding positions. See Grid@createRandomPosition

  • Prevent infinite loop when creating a grid with more mines