Skip to content

Commit

Permalink
Merge pull request #71 from Sammyjo20/feature/v3-laravel-10
Browse files Browse the repository at this point in the history
Feature | Add support for Laravel 10
  • Loading branch information
Sammyjo20 authored Feb 21, 2023
2 parents a85e14f + 2107e22 commit 954a621
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 13 deletions.
4 changes: 1 addition & 3 deletions .github/workflows/php-cs-fixer.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,7 @@ jobs:

steps:
- name: Checkout code
uses: actions/checkout@v2
with:
ref: ${{ github.head_ref }}
uses: actions/checkout@v3
- name: Run PHP CS Fixer
uses: docker://oskarstark/php-cs-fixer-ga
with:
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,14 @@ jobs:
strategy:
fail-fast: true
matrix:
php: [8.0]
laravel: [^8.0, ^9.0]
php: [8.1, 8.2]
laravel: [^9.0, ^10.0]
dependency-version: [prefer-lowest, prefer-stable]
include:
- laravel: ^8.0
testbench: ^6.0
- laravel: ^9.0
testbench: ^6.0
testbench: ^7.0
- laravel: ^10.0
testbench: ^8.0

name: PHP ${{ matrix.php }} - Laravel ${{ matrix.laravel }} - ${{ matrix.dependency-version }}

Expand Down
10 changes: 5 additions & 5 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,19 +10,19 @@
}
],
"require": {
"php": "^8.0",
"php": "^8.1",
"ext-json": "*",
"ext-zip": "*",
"illuminate/console": "^9.0",
"illuminate/filesystem": "^9.0",
"illuminate/support": "^9.0",
"illuminate/console": "^9.0 || ^10.0",
"illuminate/filesystem": "^9.0 || ^10.0",
"illuminate/support": "^9.0 || ^10.0",
"symfony/finder": "^6.0",
"symfony/process": "^6.0",
"league/flysystem": "^3.0"
},
"require-dev": {
"phpunit/phpunit": "^9.3",
"orchestra/testbench": "^7.0",
"orchestra/testbench": "^7.0 || ^8.0",
"friendsofphp/php-cs-fixer": "^3.1.0",
"spatie/ray": "^1.33",
"pestphp/pest": "^1.21"
Expand Down
Binary file modified tests/Helpers/Support/Zip/Destination/WithSubFolder.zip
Binary file not shown.

0 comments on commit 954a621

Please sign in to comment.