Skip to content

Commit

Permalink
Merge pull request #2 from dansysanalyst/adds_tests
Browse files Browse the repository at this point in the history
  • Loading branch information
akshit-arora authored Sep 5, 2022
2 parents 3370366 + 826cff4 commit 933e464
Show file tree
Hide file tree
Showing 7 changed files with 9,180 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
vendor
tmp
.idea/
.php_cs.cache
.phpunit.cache
.phpunit.result.cache
.php-cs-fixer.cache
18 changes: 18 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,30 @@
"AkshitArora\\DbLog\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"AkshitArora\\DbLog\\Tests\\" : "tests"
}
},
"require": {},
"require-dev": {
"composer/composer": "^2.1",
"phpunit/phpunit": "^9.5",
"illuminate/support": "^8.18|^9.0",
"orchestra/testbench": "^6.17 | ^7.0",
"pestphp/pest": "^1.21",
"laradumps/laradumps": "^1.3"
},
"extra": {
"laravel": {
"providers": [
"AkshitArora\\DbLog\\DbLogServiceProvider"
]
}
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
}
}
}
Loading

0 comments on commit 933e464

Please sign in to comment.