mirror of
https://github.com/openclassify/openclassify.git
synced 2026-02-10 23:36:08 -06:00
59 lines
1.6 KiB
JSON
59 lines
1.6 KiB
JSON
{
|
|
"name": "laravel/scout",
|
|
"description": "Laravel Scout provides a driver based solution to searching your Eloquent models.",
|
|
"keywords": ["algolia", "laravel", "search"],
|
|
"license": "MIT",
|
|
"support": {
|
|
"issues": "https://github.com/laravel/scout/issues",
|
|
"source": "https://github.com/laravel/scout"
|
|
},
|
|
"authors": [
|
|
{
|
|
"name": "Taylor Otwell",
|
|
"email": "taylor@laravel.com"
|
|
}
|
|
],
|
|
"require": {
|
|
"php": "^7.2|^8.0",
|
|
"illuminate/bus": "^6.0|^7.0|^8.0",
|
|
"illuminate/contracts": "^6.0|^7.0|^8.0",
|
|
"illuminate/database": "^6.0|^7.0|^8.0",
|
|
"illuminate/http": "^6.0|^7.0|^8.0",
|
|
"illuminate/pagination": "^6.0|^7.0|^8.0",
|
|
"illuminate/queue": "^6.0|^7.0|^8.0",
|
|
"illuminate/support": "^6.0|^7.0|^8.0"
|
|
},
|
|
"require-dev": {
|
|
"mockery/mockery": "^1.0",
|
|
"phpunit/phpunit": "^8.0|^9.3"
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"Laravel\\Scout\\": "src/"
|
|
}
|
|
},
|
|
"autoload-dev": {
|
|
"psr-4": {
|
|
"Laravel\\Scout\\Tests\\": "tests/"
|
|
}
|
|
},
|
|
"extra": {
|
|
"branch-alias": {
|
|
"dev-master": "8.x-dev"
|
|
},
|
|
"laravel": {
|
|
"providers": [
|
|
"Laravel\\Scout\\ScoutServiceProvider"
|
|
]
|
|
}
|
|
},
|
|
"suggest": {
|
|
"algolia/algoliasearch-client-php": "Required to use the Algolia engine (^2.2)."
|
|
},
|
|
"config": {
|
|
"sort-packages": true
|
|
},
|
|
"minimum-stability": "dev",
|
|
"prefer-stable": true
|
|
}
|