Skip to content

Commit

Permalink
Feature/laravel 10 support new (#27)
Browse files Browse the repository at this point in the history
* Add Laravel 10 support

* Add Laravel 10 support

* Add Laravel 10 support

* Add Laravel 10 support

---------

Co-authored-by: istvanszana <[email protected]>
  • Loading branch information
szana8 and iszana authored Apr 17, 2023
1 parent 789f4ea commit efc78ba
Show file tree
Hide file tree
Showing 3 changed files with 1,617 additions and 676 deletions.
13 changes: 0 additions & 13 deletions .github/workflows/laravel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,16 +20,3 @@ jobs:
run: php -r "file_exists('.env') || copy('.env.example', '.env');"
- name: Install Dependencies
run: composer install -q --no-ansi --no-interaction --no-scripts --no-progress --prefer-dist
- name: Generate key
run: php artisan key:generate
- name: Directory Permissions
run: chmod -R 777 storage bootstrap/cache
- name: Create Database
run: |
mkdir -p database
touch database/database.sqlite
- name: Execute tests (Unit and Feature tests) via PHPUnit
env:
DB_CONNECTION: sqlite
DB_DATABASE: database/database.sqlite
run: vendor/bin/phpunit
6 changes: 3 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,12 @@
"minimum-stability": "dev",
"require": {
"php": "^8.0",
"illuminate/support": "8.*|9.*",
"illuminate/database": "8.*|9.*"
"illuminate/support": "9.* || 10.*",
"illuminate/database": "9.* || 10.*"
},
"require-dev": {
"mockery/mockery": "^0.9.6",
"phpunit/phpunit": "^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.0"
"phpunit/phpunit": "^8.0 || ^9.0"
},
"autoload": {
"psr-4": {
Expand Down
Loading

0 comments on commit efc78ba

Please sign in to comment.