Skip to content

Instantly share code, notes, and snippets.

@jsdecena
Last active October 9, 2021 04:48
Show Gist options
  • Save jsdecena/6bd5fcf76d9aa3b86015c47ba4561e39 to your computer and use it in GitHub Desktop.
Save jsdecena/6bd5fcf76d9aa3b86015c47ba4561e39 to your computer and use it in GitHub Desktop.
Simple TDD - composer.json file - after
{
"name": "jeff/simple-tdd-10-steps",
"authors": [
{
"name": "Jeff",
"email": "your-email@example.com"
}
],
"autoload": {
"psr-4": {
"Jsdecena\\SimpleTdd\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Jsdecena\\SimpleTdd\\Tests\\": "tests/"
}
},
"require": {
"illuminate/support": "^7.30"
},
"require-dev": {
"phpunit/phpunit": "^8.5",
"orchestra/testbench": "5.x-dev"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment