generated from open-southeners/php-package-template
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
normalize composer & fix version constraint on laravel-helpers
- Loading branch information
Showing
1 changed file
with
13 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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", | ||
|
@@ -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": { | ||
|
@@ -58,7 +60,5 @@ | |
"OpenSoutheners\\LaravelApiable\\ServiceProvider" | ||
] | ||
} | ||
}, | ||
"minimum-stability": "dev", | ||
"prefer-stable": true | ||
} | ||
} |