Skip to content

Commit e140b0d

Browse files
committed
Merge branch 'master' into 49-cover-entity-generator-with-tests
2 parents 5dfe100 + a22d3a2 commit e140b0d

File tree

60 files changed

+6581
-4451
lines changed

Some content is hidden

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

60 files changed

+6581
-4451
lines changed

.github/workflows/run-tests-with-coverage.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
steps:
1313
- uses: shivammathur/setup-php@v2
1414
with:
15-
php-version: '7.4'
15+
php-version: '8.3'
1616
- uses: actions/checkout@v3
1717
- name: Validate composer.json and composer.lock
1818
run: composer validate

.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

Dockerfile

Lines changed: 0 additions & 5 deletions
This file was deleted.

composer.json

Lines changed: 16 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -10,20 +10,21 @@
1010
}
1111
],
1212
"require": {
13-
"php": ">=7.1.3",
14-
"laravel/framework": ">=5.7.0",
15-
"ronasit/laravel-helpers": ">=2.5",
16-
"laravel/legacy-factories": ">=1.3.0",
17-
"ext-json": "*"
13+
"php": "^8.3",
14+
"laravel/framework": "^11.31.0",
15+
"ronasit/laravel-helpers": "^3.0.1-beta",
16+
"laravel/legacy-factories": ">=1.4.0",
17+
"ext-json": "*",
18+
"doctrine/dbal": "^4.2"
1819
},
1920
"require-dev": {
20-
"fzaninotto/faker": "~1.4",
21-
"php-coveralls/php-coveralls": "^2.5",
22-
"mockery/mockery": "^1.4",
23-
"phpunit/phpunit": "^8.0",
24-
"mikey179/vfsstream": "^1.6.11",
25-
"php-mock/php-mock": "^2.4.1",
26-
"orchestra/testbench": "^6.25"
21+
"fakerphp/faker": "^1.24.0",
22+
"mockery/mockery": "^1.6.12",
23+
"phpunit/phpunit": "^10.5.38",
24+
"php-coveralls/php-coveralls": "^2.7",
25+
"orchestra/testbench": "^9.5.2",
26+
"mikey179/vfsstream": "^1.6.12",
27+
"php-mock/php-mock": "^2.5"
2728
},
2829
"autoload": {
2930
"psr-4": {
@@ -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)