Skip to content

Commit

Permalink
Migrating to Laravel 5.4
Browse files Browse the repository at this point in the history
  • Loading branch information
nqxcode committed May 4, 2017
1 parent d0848b3 commit 66bdd4d
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 8 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Laravel 5.3 Lucene search
Laravel 5.4 Lucene search
==============

[![Latest Stable Version](https://poser.pugx.org/nqxcode/laravel-lucene-search/v/stable.png)](https://packagist.org/packages/nqxcode/laravel-lucene-search)
Expand All @@ -7,7 +7,7 @@ Laravel 5.3 Lucene search
[![Build Status](https://travis-ci.org/nqxcode/laravel-lucene-search.svg?branch=master)](https://travis-ci.org/nqxcode/laravel-lucene-search)
[![Coverage Status](https://img.shields.io/coveralls/nqxcode/laravel-lucene-search/master.svg?style=flat)](https://coveralls.io/r/nqxcode/laravel-lucene-search?branch=master)

Laravel 5.3 package for full-text search over Eloquent models based on ZendSearch Lucene.
Laravel 5.4 package for full-text search over Eloquent models based on ZendSearch Lucene.

## Installation

Expand All @@ -16,7 +16,7 @@ Require this package in your composer.json and run composer update:
```json
{
"require": {
"nqxcode/laravel-lucene-search": "2.3.*"
"nqxcode/laravel-lucene-search": "2.4.*"
}
}
```
Expand Down
9 changes: 5 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "nqxcode/laravel-lucene-search",
"description": "Laravel 5.3 package for full-text search over Eloquent models based on ZendSearch Lucene.",
"description": "Laravel 5.4 package for full-text search over Eloquent models based on ZendSearch Lucene.",
"keywords": ["laravel", "lucene", "zendsearch", "eloquent", "search", "fulltext"],
"license": "MIT",
"authors": [
Expand All @@ -11,14 +11,15 @@
],
"require": {
"php": ">=5.6.4",
"illuminate/support": "5.3.*",
"illuminate/support": "5.4.*",
"nqxcode/zendsearch": "2.*",
"nqxcode/lucene-stemmer-en-ru": "1.*"
},
"require-dev": {
"phpunit/phpunit": "3.7.*",
"phpunit/phpunit": "^5.2",
"mockery/mockery": "0.9.*",
"orchestra/testbench": "3.3.*"
"orchestra/testbench": "~3.4.0",
"orchestra/database": "~3.4.0"
},
"autoload": {
"psr-4": {
Expand Down
5 changes: 4 additions & 1 deletion tests/TestCase.php
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,10 @@ protected function getEnvironmentSetUp($app)

protected function getPackageProviders($app)
{
return array('Nqxcode\LuceneSearch\ServiceProvider');
return array(
'Nqxcode\LuceneSearch\ServiceProvider',
'Orchestra\Database\ConsoleServiceProvider'
);
}

protected function getPackageAliases($app)
Expand Down

0 comments on commit 66bdd4d

Please sign in to comment.