rps/composer.json

24 lines
519 B
JSON
Raw Normal View History

2020-02-18 14:47:34 +00:00
{
"name": "miguel456/rps",
"description": "A simple Rock Paper Scissors game as a warmup from not coding for a while",
"type": "project",
"license": "MIT",
"authors": [
{
"name": "Miguel Nogueira",
"email": "miguel456@spacejewel-hosting.com"
}
],
2020-02-18 19:33:48 +00:00
"require": {
"ext-readline": "*"
},
2020-02-18 14:47:34 +00:00
"autoload": {
2020-02-18 19:33:48 +00:00
"files": [
"src/Input/Input.php"
],
2020-02-18 14:47:34 +00:00
"psr-4": {
"miguel456\\rps\\": "src/"
}
}
}