Skip to content

Commit

Permalink
chore(example): PHPUnit
Browse files Browse the repository at this point in the history
  • Loading branch information
leocavalcante committed Jan 26, 2024
1 parent 040e264 commit f6cce06
Show file tree
Hide file tree
Showing 6 changed files with 1,707 additions and 0 deletions.
2 changes: 2 additions & 0 deletions examples/phpunit/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
.phpunit.cache/
vendor/
15 changes: 15 additions & 0 deletions examples/phpunit/composer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
{
"autoload": {
"psr-4": {
"App\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Test\\": "tests/"
}
},
"require-dev": {
"phpunit/phpunit": "^10.5"
}
}
Loading

0 comments on commit f6cce06

Please sign in to comment.