Skip to content

Commit

Permalink
Update to L11 (#17)
Browse files Browse the repository at this point in the history
* Update to L11

* Update to L11
  • Loading branch information
karoldabro authored Apr 2, 2024
1 parent 5013f8f commit 9501528
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 23 deletions.
36 changes: 18 additions & 18 deletions .github/workflows/laravel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,14 @@ on:
branches: [ "master" ]

jobs:
tests82:
tests83:

runs-on: ubuntu-latest

steps:
- uses: shivammathur/setup-php@15c43e89cdef867065b0213be354c2841860869e
with:
php-version: '8.2'
php-version: '8.3'
- uses: actions/checkout@v3
- name: Install Dependencies
run: composer install -q --no-ansi --no-interaction --no-scripts --no-progress --prefer-dist
Expand All @@ -28,23 +28,23 @@ jobs:
DB_DATABASE: database/database.sqlite
run: vendor/bin/phpunit

tests81:
tests82:

runs-on: ubuntu-latest

steps:
- uses: shivammathur/setup-php@15c43e89cdef867065b0213be354c2841860869e
with:
php-version: '8.1'
- uses: actions/checkout@v3
- name: Install Dependencies
run: composer install -q --no-ansi --no-interaction --no-scripts --no-progress --prefer-dist
- name: Create Database
run: |
mkdir -p database
touch database/database.sqlite
- name: Execute tests (Unit and Feature tests) via PHPUnit
env:
DB_CONNECTION: testing
DB_DATABASE: database/database.sqlite
run: vendor/bin/phpunit
- uses: shivammathur/setup-php@15c43e89cdef867065b0213be354c2841860869e
with:
php-version: '8.2'
- uses: actions/checkout@v3
- name: Install Dependencies
run: composer install -q --no-ansi --no-interaction --no-scripts --no-progress --prefer-dist
- name: Create Database
run: |
mkdir -p database
touch database/database.sqlite
- name: Execute tests (Unit and Feature tests) via PHPUnit
env:
DB_CONNECTION: testing
DB_DATABASE: database/database.sqlite
run: vendor/bin/phpunit
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ By composer:

| php | laravel / lumen | seeder-once |
|--------------------|-----------------|----------------------------------------------------|
| 8.2, 8.3 | 10.0, 11.0 | ```composer require "kdabrow/seeder-once: ^5.0"``` |
| 8.1, 8.2 | 10.0 | ```composer require "kdabrow/seeder-once: ^4.0"``` |
| 8.0, 8.1 | 9.21 | ```composer require "kdabrow/seeder-once: ^3.0"``` |
| 7.3, 7.4, 8.0 | 8.0, 9.0 | ```composer require "kdabrow/seeder-once: ^2.2"``` |
Expand Down
10 changes: 5 additions & 5 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,13 @@
}
],
"require": {
"php": ">=8.0.2",
"illuminate/console": "^10.0",
"illuminate/database": "^10.0",
"illuminate/support": "^10.0"
"php": ">=8.2.0",
"illuminate/console": "^10.0|^11.0",
"illuminate/database": "^10.0|^11.0",
"illuminate/support": "^10.0|^11.0"
},
"require-dev": {
"orchestra/testbench": "^8.0"
"orchestra/testbench": "^9.0|^9.0"
},
"autoload": {
"psr-4": {
Expand Down

0 comments on commit 9501528

Please sign in to comment.