Last active
July 14, 2022 09:35
-
-
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.
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
{ | |
"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