Skip to content

Commit 933e464

Browse files
authored
Merge pull request #2 from dansysanalyst/adds_tests
2 parents 3370366 + 826cff4 commit 933e464

File tree

7 files changed

+9180
-0
lines changed

7 files changed

+9180
-0
lines changed

.gitignore

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
vendor
2+
tmp
3+
.idea/
4+
.php_cs.cache
5+
.phpunit.cache
6+
.phpunit.result.cache
7+
.php-cs-fixer.cache

composer.json

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,30 @@
1515
"AkshitArora\\DbLog\\": "src/"
1616
}
1717
},
18+
"autoload-dev": {
19+
"psr-4": {
20+
"AkshitArora\\DbLog\\Tests\\" : "tests"
21+
}
22+
},
1823
"require": {},
24+
"require-dev": {
25+
"composer/composer": "^2.1",
26+
"phpunit/phpunit": "^9.5",
27+
"illuminate/support": "^8.18|^9.0",
28+
"orchestra/testbench": "^6.17 | ^7.0",
29+
"pestphp/pest": "^1.21",
30+
"laradumps/laradumps": "^1.3"
31+
},
1932
"extra": {
2033
"laravel": {
2134
"providers": [
2235
"AkshitArora\\DbLog\\DbLogServiceProvider"
2336
]
2437
}
38+
},
39+
"config": {
40+
"allow-plugins": {
41+
"pestphp/pest-plugin": true
42+
}
2543
}
2644
}

0 commit comments

Comments
 (0)