-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Some quick things after first pairing session with Iryna
- Loading branch information
Andrew Cairns
committed
Nov 13, 2023
1 parent
dcedd0c
commit e5c7a2f
Showing
11 changed files
with
2,012 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
./vendor/* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,8 @@ | ||
# tic-tac-toe-kata | ||
DDD modeling kata for Tic Tac Toe | ||
# Rules: | ||
|
||
- The game is played on a 3x3 grid. | ||
- One player is assigned X, another is assigned O. | ||
- Players take turns placing marks on empty spaces on the grid until an end condition is met. | ||
- End condition 1: 3 of one player's marks line up orthogonally or diagonally making them the winner | ||
- All spaces are filled: in which nobody is the winner. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
{ | ||
"name": "andrew.cairns/tictactoe", | ||
"require-dev": { | ||
"phpunit/phpunit": "^10.4" | ||
}, | ||
"autoload": { | ||
"psr-4": { | ||
"AndrewCairns\\Tictactoe\\": "src/" | ||
} | ||
}, | ||
"autoload-dev": { | ||
"psr-4": { | ||
"Tests\\AndrewCairns\\Tictactoe\\": "tests/" | ||
} | ||
}, | ||
"authors": [ | ||
{ | ||
"name": "Andrew Cairns", | ||
"email": "[email protected]" | ||
} | ||
], | ||
"require": {} | ||
} |
Oops, something went wrong.