Skip to content

Commit

Permalink
Merge pull request #9 from olivermbs/laravel11support
Browse files Browse the repository at this point in the history
Laravel 11 Support
  • Loading branch information
stephenjude authored Mar 27, 2024
2 parents 0cc98f6 + 9735640 commit b60d5d3
Show file tree
Hide file tree
Showing 2 changed files with 58 additions and 55 deletions.
6 changes: 5 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,5 @@
/.editorconfig
/.editorconfig
vendor
composer.lock
.phpunit.result.cache
report.junit.xml
107 changes: 53 additions & 54 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,57 +1,56 @@
{
"name": "stephenjude/default-model-sorting",
"description": "Add default sorting column to your eloquent model",
"keywords": [
"stephenjude",
"default-model-sorting",
"sorting",
"eloquent",
"model",
"orderBy"
],
"homepage": "https://github.com/stephenjude/default-model-sorting",
"license": "MIT",
"type": "library",
"authors": [
{
"name": "Stephen Jude",
"email": "[email protected]",
"role": "Developer"
}
],
"require": {
"illuminate/support": "^8.0|^9.0|^10.0"
},
"require-dev": {
"orchestra/testbench": "^6.0|^7.0",
"phpunit/phpunit": "^9.0|^10.0"
},
"autoload": {
"psr-4": {
"Stephenjude\\DefaultModelSorting\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Stephenjude\\DefaultModelSorting\\Tests\\": "tests"
}
},
"scripts": {
"test": "vendor/bin/phpunit",
"test-coverage": "vendor/bin/phpunit --coverage-html coverage"

},
"config": {
"sort-packages": true
},
"extra": {
"laravel": {
"providers": [
"Stephenjude\\DefaultModelSorting\\DefaultModelSortingServiceProvider"
],
"aliases": {
"DefaultModelSorting": "Stephenjude\\DefaultModelSorting\\DefaultModelSortingFacade"
}
}
"name": "stephenjude/default-model-sorting",
"description": "Add default sorting column to your eloquent model",
"keywords": [
"stephenjude",
"default-model-sorting",
"sorting",
"eloquent",
"model",
"orderBy"
],
"homepage": "https://github.com/stephenjude/default-model-sorting",
"license": "MIT",
"type": "library",
"authors": [
{
"name": "Stephen Jude",
"email": "[email protected]",
"role": "Developer"
}
],
"require": {
"illuminate/support": "^8.0|^9.0|^10.0|^11.0"
},
"require-dev": {
"orchestra/testbench": "^6.0|^7.0",
"phpunit/phpunit": "^9.0|^10.0|^11.0"
},
"autoload": {
"psr-4": {
"Stephenjude\\DefaultModelSorting\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Stephenjude\\DefaultModelSorting\\Tests\\": "tests"
}
},
"scripts": {
"test": "vendor/bin/phpunit",
"test-coverage": "vendor/bin/phpunit --coverage-html coverage"
},
"config": {
"sort-packages": true
},
"extra": {
"laravel": {
"providers": [
"Stephenjude\\DefaultModelSorting\\DefaultModelSortingServiceProvider"
],
"aliases": {
"DefaultModelSorting": "Stephenjude\\DefaultModelSorting\\DefaultModelSortingFacade"
}
}
}
}

0 comments on commit b60d5d3

Please sign in to comment.