Skip to content

Commit 7389ec9

Browse files
author
Sylvain Blondeau
committed
tetris game
0 parents  commit 7389ec9

19 files changed

+2719
-0
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
vendor

composer.json

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
{
2+
"name": "sylvain/tetris",
3+
"require": {
4+
"phpunit/phpunit": "^8.4"
5+
},
6+
"authors": [
7+
{
8+
"name": "Sylvain Blondeau",
9+
"email": "[email protected]"
10+
}
11+
],
12+
"autoload" : {
13+
"psr-4": {
14+
"App\\" : "src/"
15+
}
16+
}
17+
}

0 commit comments

Comments
 (0)