Skip to content

Commit

Permalink
step 2 add Makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
Egorskov committed Sep 21, 2024
1 parent cd9c2c7 commit c6efbed
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 1 deletion.
Binary file added .DS_Store
Binary file not shown.
8 changes: 8 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
install:
composer install

brain-games:
./bin/brain-games

validate:
composer validate
2 changes: 2 additions & 0 deletions bin/brain-games.php → bin/brain-games
100644 → 100755
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
#!/usr/bin/env php

<?php

echo 'Welcome to the Brain Games!';
9 changes: 8 additions & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,12 @@
"email": "[email protected]"
}
],
"require": {}
"require": {},
"bin": [
"bin/brain-games"
],

"description": "project 45",

"license": "MIT"
}

0 comments on commit c6efbed

Please sign in to comment.