Skip to content

Commit

Permalink
Merge pull request #9 from laravel-shift/l12-compatibility
Browse files Browse the repository at this point in the history
Laravel 12.x Compatibility
  • Loading branch information
acidjazz authored Feb 19, 2025
2 parents 81aebf5 + d9c7e29 commit 416d8bd
Showing 1 changed file with 44 additions and 44 deletions.
88 changes: 44 additions & 44 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,47 +1,47 @@
{
"name": "acidjazz/metapi",
"type": "library",
"description": "Laravel API helpers",
"license": "MIT",
"keywords": [
"Laravel",
"API",
"Pagination",
"PHP"
],
"homepage": "https://github.com/acidjazz/metapi",
"authors": [
{
"name": "Kevin Olson",
"email": "[email protected]"
"name": "acidjazz/metapi",
"type": "library",
"description": "Laravel API helpers",
"license": "MIT",
"keywords": [
"Laravel",
"API",
"Pagination",
"PHP"
],
"homepage": "https://github.com/acidjazz/metapi",
"authors": [
{
"name": "Kevin Olson",
"email": "[email protected]"
}
],
"require": {
"illuminate/support": "9.*|10.*|11.*|^12.0",
"jasongrimes/paginator": "^1.0",
"php": "^8.1",
"ext-json": "*"
},
"require-dev": {
"orchestra/testbench": "^7.0|^8.0|^10.0",
"phpunit/phpunit": "^9.5|^10.4|^11.5.3",
"mockery/mockery": "^1.4.4"
},
"autoload": {
"psr-4": {
"acidjazz\\metapi\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"acidjazz\\metapi\\Tests\\": "tests"
}
},
"extra": {
"laravel": {
"providers": [
"acidjazz\\metapi\\ServiceProvider"
]
}
}
],
"require": {
"illuminate/support": "9.*|10.*|11.*",
"jasongrimes/paginator": "^1.0",
"php": "^8.1",
"ext-json": "*"
},
"require-dev": {
"orchestra/testbench": "^7.0|^8.0",
"phpunit/phpunit": "^9.5|^10.4",
"mockery/mockery": "^1.4.4"
},
"autoload": {
"psr-4": {
"acidjazz\\metapi\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"acidjazz\\metapi\\Tests\\": "tests"
}
},
"extra": {
"laravel": {
"providers": [
"acidjazz\\metapi\\ServiceProvider"
]
}
}
}

0 comments on commit 416d8bd

Please sign in to comment.