Skip to content

Commit

Permalink
normalize composer & fix version constraint on laravel-helpers
Browse files Browse the repository at this point in the history
  • Loading branch information
d8vjork committed Oct 24, 2023
1 parent 7cf06a1 commit 86b08cc
Showing 1 changed file with 13 additions and 13 deletions.
26 changes: 13 additions & 13 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
{
"name": "open-southeners/laravel-apiable",
"description": "Integrate JSON:API resources on your Laravel API project.",
"homepage": "https://docs.opensoutheners.com/laravel-apiable/",
"license": "MIT",
"keywords": [
"open-southeners",
Expand All @@ -19,30 +18,33 @@
"email": "[email protected]"
}
],
"homepage": "https://docs.opensoutheners.com/laravel-apiable/",
"require": {
"php": "^8.0|^8.1|^8.2",
"illuminate/support": "^9.0|^10.0",
"open-southeners/laravel-helpers": "^0.9.0"
"php": "^8.0",
"illuminate/support": "^9.0 || ^10.0",
"open-southeners/laravel-helpers": "~0.9"
},
"require-dev": {
"laravel/pint": "^1.1",
"laravel/scout": "^9.0",
"nunomaduro/larastan": "^2.1",
"orchestra/testbench": "^7.0|^8.0",
"orchestra/testbench": "^7.0 || ^8.0",
"phpstan/phpstan": "^1.0",
"phpunit/phpunit": "^9.0|^10.0"
"phpunit/phpunit": "^9.0 || ^10.0"
},
"suggest": {
"hammerstone/fast-paginate": "Improves jsonApiPaginate method performance (SQL database query pagination)",
"laravel/scout": "Integrate search with JsonApiResponse using its search method"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"files": [
"./helpers.php"
],
"psr-4": {
"OpenSoutheners\\LaravelApiable\\": "src"
}
},
"files": [
"./helpers.php"
]
},
"autoload-dev": {
"psr-4": {
Expand All @@ -58,7 +60,5 @@
"OpenSoutheners\\LaravelApiable\\ServiceProvider"
]
}
},
"minimum-stability": "dev",
"prefer-stable": true
}
}

0 comments on commit 86b08cc

Please sign in to comment.