Package Data | |
---|---|
Maintainer Username: | davispeixoto |
Maintainer Contact: | davis.peixoto@gmail.com (Davis Peixoto) |
Package Create Date: | 2014-04-03 |
Package Last Update: | 2015-10-07 |
Language: | PHP |
License: | MIT |
Last Refreshed: | 2024-12-19 03:05:00 |
Package Statistics | |
---|---|
Total Downloads: | 101 |
Monthly Downloads: | 0 |
Daily Downloads: | 0 |
Total Stars: | 9 |
Total Watchers: | 2 |
Total Forks: | 4 |
Total Open Issues: | 1 |
This Laravel 4 package provides an interface for consuming (querying) Apache Solr via its restful interface.
Begin by installing this package through Composer. Edit your project's composer.json
file to require davispeixoto/laravel-4-solr
.
"require": {
"laravel/framework": "4.1.*",
"davispeixoto/laravel-4-solr": "dev-master"
}
Next, update Composer from the Terminal:
composer update
Once this operation completes, still in Terminal run:
php artisan config:publish davispeixoto/laravel-4-solr
Update the settings in the generated app/config/packages/davispeixoto/laravel-4-solr
configuration file with solr endpoint, port, output format.
Finally add the service provider. Open app/config/app.php
, and add a new item to the providers array.
'Davispeixoto\Laravel4Solr\Laravel4SolrServiceProvider'
That's it! You're all set to go. Just use:
Route::get('/test', function() {
try {
Solr::setCore('products');
Solr::setFQ('color' , 'blue*');
Solr::outputFormat('json');
$results = Solr::getResults();
echo print_r($results , true);
} catch (Exception $e) {
Log::error($e->getMessage());
die($e->getMessage() . $e->getTraceAsString());
}
});
This library is open-sourced software licensed under the MIT license
This project follows the Semantic Versioning