Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/49-add-repository-generator-test…
Browse files Browse the repository at this point in the history
…s' into 49-add-requests-generator-tests
  • Loading branch information
pirs1337 committed Dec 19, 2024
2 parents 6dbec55 + 8a4cd74 commit f8795a6
Show file tree
Hide file tree
Showing 105 changed files with 6,236 additions and 5,199 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/run-tests-with-coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
steps:
- uses: shivammathur/setup-php@v2
with:
php-version: '7.4'
php-version: '8.3'
- uses: actions/checkout@v3
- name: Validate composer.json and composer.lock
run: composer validate
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
.idea
vendor/
.phpunit.result.cache
.phpunit.cache
5 changes: 0 additions & 5 deletions Dockerfile

This file was deleted.

2 changes: 2 additions & 0 deletions ReadMe.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# Laravel-Entity-Generator

[![Coverage Status](https://coveralls.io/repos/github/RonasIT/laravel-entity-generator/badge.svg?branch=master)](https://coveralls.io/github/RonasIT/laravel-entity-generator?branch=master)

Laravel-Entity-Generator - This generator is used to create a standard class stack for a new entity.

### Install
Expand Down
28 changes: 15 additions & 13 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,20 +10,21 @@
}
],
"require": {
"php": ">=7.1.3",
"laravel/framework": ">=5.7.0",
"ronasit/laravel-helpers": ">=2.5",
"laravel/legacy-factories": ">=1.3.0",
"orchestra/testbench": "^6.25",
"ext-json": "*"
"php": "^8.3",
"laravel/framework": "^11.31.0",
"ronasit/laravel-helpers": "^3.0.1-beta",
"laravel/legacy-factories": ">=1.4.0",
"ext-json": "*",
"doctrine/dbal": "^4.2"
},
"require-dev": {
"fzaninotto/faker": "~1.4",
"php-coveralls/php-coveralls": "^2.5",
"mockery/mockery": "^1.4",
"phpunit/phpunit": "^8.0",
"mikey179/vfsstream": "^1.6.11",
"php-mock/php-mock": "^2.4.1"
"fakerphp/faker": "^1.24.0",
"mockery/mockery": "^1.6.12",
"phpunit/phpunit": "^10.5.38",
"php-coveralls/php-coveralls": "^2.7",
"orchestra/testbench": "^9.5.2",
"mikey179/vfsstream": "^1.6.12",
"php-mock/php-mock": "^2.5"
},
"autoload": {
"psr-4": {
Expand All @@ -36,7 +37,8 @@
"autoload-dev": {
"psr-4": {
"RonasIT\\Support\\Tests\\": "tests/",
"RonasIT\\Support\\Tests\\Support\\": "tests/Support/"
"RonasIT\\Support\\Tests\\Support\\": "tests/Support/",
"App\\Nova\\": "tests/Support/Nova/"
},
"files": [
"tests/TestCase.php"
Expand Down
Loading

0 comments on commit f8795a6

Please sign in to comment.