Skip to content

Commit

Permalink
Laravel 10.x Compatibility (#90)
Browse files Browse the repository at this point in the history
* Bump dependencies for Laravel 10

* Update GitHub Actions for Laravel 10

* Update main.yml

* Update composer.json

---------

Co-authored-by: sausin <sausin@users.noreply.github.com>
  • Loading branch information
laravel-shift and sausin committed Apr 12, 2023
1 parent f0b1d94 commit ba3c676
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 14 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ jobs:
strategy:
fail-fast: true
matrix:
php: [8.0, 8.1]
illuminate: [9.*]
php: [8.1]
illuminate: [10.*]
dependency-version: [prefer-stable]

name: P${{ matrix.php }} - L${{ matrix.illuminate }} - ${{ matrix.dependency-version }}
Expand Down
31 changes: 19 additions & 12 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,17 @@
"name": "sausin/laravel-ovh",
"description": "OVH Object Storage driver for laravel",
"keywords": [
"filesystem", "filesystems", "files", "storage",
"flysystem", "openstack", "opencloud", "swift",
"ovh", "laravel", "driver"
"filesystem",
"filesystems",
"files",
"storage",
"flysystem",
"openstack",
"opencloud",
"swift",
"ovh",
"laravel",
"driver"
],
"license": "MIT",
"authors": [
Expand All @@ -24,16 +32,16 @@
}
},
"require": {
"php": "^8.0",
"illuminate/console": "^9.0",
"illuminate/support": "^9.0",
"nimbusoft/flysystem-openstack-swift": "^1.0"
"php": "^8.1",
"illuminate/console": "^10.0",
"illuminate/support": "^10.0",
"nimbusoft/flysystem-openstack-swift": "^1.5"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"mockery/mockery": "^1.3 >= 1.3.1",
"friendsofphp/php-cs-fixer": "^3.0",
"orchestra/testbench": "^7.0"
"phpunit/phpunit": "^9.5.10",
"mockery/mockery": "^1.4.4",
"friendsofphp/php-cs-fixer": "^3.14",
"orchestra/testbench": "^8.0"
},
"extra": {
"laravel": {
Expand Down Expand Up @@ -63,7 +71,6 @@
"Sausin\\LaravelOvh\\Composer\\Scripts::devOnly",
"# cghooks update"
],

"lint": "php-cs-fixer fix",
"test:lint": "@lint --dry-run",
"test:unit": "phpunit",
Expand Down

0 comments on commit ba3c676

Please sign in to comment.