Skip to content

Commit

Permalink
Merge pull request Kyslik#191 from laravel-shift/l9-compatibility
Browse files Browse the repository at this point in the history
Laravel 9.x Compatibility
  • Loading branch information
Healyhatman authored Feb 15, 2022
2 parents 44f9da9 + 5fceaed commit 91792a1
Show file tree
Hide file tree
Showing 2 changed files with 45 additions and 43 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,12 @@ jobs:
strategy:
fail-fast: true
matrix:
php: [7.2, 7.3, 7.4]
laravel: [6.*, 7.*, 8.*]
php: [7.2, 7.3, 7.4, 8.0]
laravel: [6.*, 7.*, 8.*, 9.*]
dependency-version: [prefer-lowest, prefer-stable]
include:
- laravel: 9.*
testbench: 7.*
- laravel: 8.*
testbench: 6.*
- laravel: 7.*
Expand Down
82 changes: 41 additions & 41 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,43 +1,43 @@
{
"name": "kyslik/column-sortable",
"description": "Package for handling column sorting in Laravel 6.x",
"keywords": [
"sortable",
"sorting",
"column",
"sort",
"laravel"
],
"license": "MIT",
"type": "package",
"authors": [
{
"name": "Martin Kiesel",
"email": "[email protected]",
"role": "Developer and maintainer"
}
],
"require": {
"php": ">=7.2",
"illuminate/support": "5.8.*|^6.0|^7.0|^8.0",
"illuminate/database": "5.8.*|^6.0|^7.0|^8.0"
},
"require-dev": {
"phpunit/phpunit": "^8.5",
"orchestra/testbench": "^5.0"
},
"autoload": {
"psr-4": {
"Kyslik\\ColumnSortable\\": "src/ColumnSortable/"
}
},
"extra": {
"laravel": {
"providers": [
"Kyslik\\ColumnSortable\\ColumnSortableServiceProvider"
]
}
},
"minimum-stability": "dev",
"prefer-stable": true
"name": "kyslik/column-sortable",
"description": "Package for handling column sorting in Laravel 6.x",
"keywords": [
"sortable",
"sorting",
"column",
"sort",
"laravel"
],
"license": "MIT",
"type": "package",
"authors": [
{
"name": "Martin Kiesel",
"email": "[email protected]",
"role": "Developer and maintainer"
}
],
"require": {
"php": ">=7.2",
"illuminate/support": "5.8.*|^6.0|^7.0|^8.0|^9.0",
"illuminate/database": "5.8.*|^6.0|^7.0|^8.0|^9.0"
},
"require-dev": {
"phpunit/phpunit": "^8.5|^9.5.10",
"orchestra/testbench": "^5.0|^7.0"
},
"autoload": {
"psr-4": {
"Kyslik\\ColumnSortable\\": "src/ColumnSortable/"
}
},
"extra": {
"laravel": {
"providers": [
"Kyslik\\ColumnSortable\\ColumnSortableServiceProvider"
]
}
},
"minimum-stability": "dev",
"prefer-stable": true
}

0 comments on commit 91792a1

Please sign in to comment.