Skip to content

Commit 090aa2b

Browse files
authored
Merge pull request #43 from candasm/2.0
Update README file links.
2 parents fe2d315 + aca74f4 commit 090aa2b

File tree

6 files changed

+11
-14
lines changed

6 files changed

+11
-14
lines changed

.gitignore

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
11
/vendor
2-
composer.phar
32
composer.lock
4-
.DS_Store
5-
.idea
6-
atlassian-ide-plugin.xml
3+
build/

.travis.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ before_script:
1111

1212
script:
1313
- mkdir -p build/logs
14-
- protected/vendor/bin/phpcs
15-
- protected/vendor/bin/phpunit
14+
- vendor/bin/phpcs
15+
- vendor/bin/phpunit
1616

1717
after_script:
18-
- protected/vendor/bin/coveralls -v
18+
- vendor/bin/coveralls -v

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
1-
Elasticsearch for Laravel
1+
Elasticsearch for Laravel 2.0.5
22
=========================
33
[![Latest Stable Version](https://poser.pugx.org/shift31/laravel-elasticsearch/v/stable)](https://packagist.org/packages/shift31/laravel-elasticsearch)
44
[![Total Downloads](https://poser.pugx.org/shift31/laravel-elasticsearch/downloads)](https://packagist.org/packages/shift31/laravel-elasticsearch)
5-
[![Build Status](https://travis-ci.org/shift31/laravel-elasticsearch.svg?branch=master)](https://travis-ci.org/shift31/laravel-elasticsearch)
6-
[![Coverage Status](https://coveralls.io/repos/github/shift31/laravel-elasticsearch/badge.svg?branch=master)](https://coveralls.io/github/shift31/laravel-elasticsearch?branch=master)
5+
[![Build Status](https://travis-ci.org/shift31/laravel-elasticsearch.svg?branch=2.0)](https://travis-ci.org/shift31/laravel-elasticsearch)
6+
[![Coverage Status](https://coveralls.io/repos/github/shift31/laravel-elasticsearch/badge.svg?branch=2.0)](https://coveralls.io/github/shift31/laravel-elasticsearch?branch=2.0)
77
[![License](https://poser.pugx.org/shift31/laravel-elasticsearch/license)](https://packagist.org/packages/shift31/laravel-elasticsearch)
88

99
This is a Laravel (4+) Service Provider for the official Elasticsearch low-level client:
10-
http://www.elasticsearch.org/guide/en/elasticsearch/client/php-api/current/index.html
10+
https://www.elastic.co/guide/en/elasticsearch/client/php-api/2.0/index.html
1111

1212

1313
Version Matrix

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
},
1515
"require-dev": {
1616
"squizlabs/php_codesniffer": "^2.8",
17-
"phpunit/phpunit": "^5.7"
17+
"phpunit/phpunit": "^4.8"
1818
},
1919
"autoload": {
2020
"psr-0": {

phpunit.xml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,7 @@
88
convertWarningsToExceptions="true"
99
processIsolation="false"
1010
stopOnFailure="false"
11-
syntaxCheck="false"
12-
>
11+
syntaxCheck="false">
1312
<testsuites>
1413
<testsuite name="Package Test Suite">
1514
<directory suffix=".php">./tests/</directory>

src/Shift31/LaravelElasticsearch/Facades/Es.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
use Illuminate\Support\Facades\Facade;
44

55
/**
6+
* @see \Elasticsearch\Client
67
* @see \Elasticsearch\ClientBuilder
78
*/
89
class Es extends Facade

0 commit comments

Comments
 (0)