Last active
October 9, 2021 04:48
-
-
Save jsdecena/6bd5fcf76d9aa3b86015c47ba4561e39 to your computer and use it in GitHub Desktop.
Simple TDD - composer.json file - after
This file contains hidden or 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
{ | |
"name": "jeff/simple-tdd-10-steps", | |
"authors": [ | |
{ | |
"name": "Jeff", | |
"email": "[email protected]" | |
} | |
], | |
"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