Skip to content

Instantly share code, notes, and snippets.

@ceilidhboy
Last active July 14, 2022 09:35
Show Gist options
  • Save ceilidhboy/8baddb96bc74925882b1b5f2c9155eed to your computer and use it in GitHub Desktop.
Save ceilidhboy/8baddb96bc74925882b1b5f2c9155eed to your computer and use it in GitHub Desktop.
Basic Composer file for a coding Kata with PhpUnit. Change the namespaces in lines 7 and 12 to suit.
{
"require-dev": {
"phpunit/phpunit": "^9"
},
"autoload": {
"psr-4": {
"Bowling\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Bowling\\Tests\\": "tests"
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment