Skip to content

Commit a79b8d8

Browse files
committed
Merge branch '49-add-tests' into 49-cover-entity-generator-with-tests
2 parents 5dfe100 + 5e93ac5 commit a79b8d8

Some content is hidden

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

50 files changed

+6325
-4363
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: 11 additions & 10 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",
13+
"php": "^8.3",
14+
"laravel/framework": "^11.21",
15+
"ronasit/laravel-helpers": "^3.0.0-beta",
1616
"laravel/legacy-factories": ">=1.3.0",
17-
"ext-json": "*"
17+
"ext-json": "*",
18+
"doctrine/dbal": "^4.1"
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",
21+
"fakerphp/faker": "^1.23.1",
22+
"mockery/mockery": "^1.6.12",
23+
"phpunit/phpunit": "^10.5.30",
24+
"php-coveralls/php-coveralls": "^2.7",
25+
"orchestra/testbench": "^9.3",
2426
"mikey179/vfsstream": "^1.6.11",
25-
"php-mock/php-mock": "^2.4.1",
26-
"orchestra/testbench": "^6.25"
27+
"php-mock/php-mock": "^2.5"
2728
},
2829
"autoload": {
2930
"psr-4": {

0 commit comments

Comments
 (0)