Skip to content

Commit a22d3a2

Browse files
authored
Merge pull request #65 from RonasIT/49-add-tests
Cover generators with tests
2 parents 5e14dc9 + 30d2f74 commit a22d3a2

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

43 files changed

+1554
-519
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
.idea
22
vendor/
33
.phpunit.result.cache
4+
.phpunit.cache

composer.json

Lines changed: 11 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -11,18 +11,19 @@
1111
],
1212
"require": {
1313
"php": "^8.3",
14-
"laravel/framework": "^11.21",
14+
"laravel/framework": "^11.31.0",
1515
"ronasit/laravel-helpers": "^3.0.1-beta",
16-
"laravel/legacy-factories": ">=1.3.0",
17-
"ext-json": "*"
16+
"laravel/legacy-factories": ">=1.4.0",
17+
"ext-json": "*",
18+
"doctrine/dbal": "^4.2"
1819
},
1920
"require-dev": {
20-
"fakerphp/faker": "^1.23.1",
21+
"fakerphp/faker": "^1.24.0",
2122
"mockery/mockery": "^1.6.12",
22-
"phpunit/phpunit": "^10.5.30",
23+
"phpunit/phpunit": "^10.5.38",
2324
"php-coveralls/php-coveralls": "^2.7",
24-
"orchestra/testbench": "^9.3",
25-
"mikey179/vfsstream": "^1.6.11",
25+
"orchestra/testbench": "^9.5.2",
26+
"mikey179/vfsstream": "^1.6.12",
2627
"php-mock/php-mock": "^2.5"
2728
},
2829
"autoload": {
@@ -36,7 +37,9 @@
3637
"autoload-dev": {
3738
"psr-4": {
3839
"RonasIT\\Support\\Tests\\": "tests/",
39-
"RonasIT\\Support\\Tests\\Support\\": "tests/Support/"
40+
"RonasIT\\Support\\Tests\\Support\\": "tests/Support/",
41+
"App\\Models\\": "tests/Support/Models/",
42+
"App\\Nova\\": "tests/Support/Nova/"
4043
},
4144
"files": [
4245
"tests/TestCase.php"

0 commit comments

Comments
 (0)