davispeixoto/laravel-4-solr

Laravel 4 Apache Solr simple query client
103 9
Install
composer require davispeixoto/laravel-4-solr
Latest Version:0.0.3
PHP:>=5.3.0
License:MIT
Last Updated:Oct 7, 2015
Links: GitHub  ·  Packagist
Maintainer: davispeixoto

Laravel 4 Apache Solr

Build Status

This Laravel 4 package provides an interface for consuming (querying) Apache Solr via its restful interface.

Installation

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());
	}
});

License

This library is open-sourced software licensed under the MIT license

Versioning

This project follows the Semantic Versioning

Related Packages

davispeixoto/laravel-salesforce

Laravel 4 Salesforce Force.com PHP Toolkit port

33,725 13
venturecraft/xero-laravel

Xero Service Provider for Laravel 4

3,257 3
maxhoffmann/parsedown-laravel

A parsedown (markdown) wrapper for Laravel

61,771 55
elevencodes/instagram-laravel

Instagram Service Provider for Laravel 4

8,403 32
ricardofontanelli/laravel-telegram

A simple and lightweight Laravel 4 and 5 wrapper to interact with Telegram Bot.

3,651 10