Merge branch '3.0.x'
This commit is contained in:
commit
001daeeac0
7 changed files with 25 additions and 7 deletions
5
.scrutinizer.yml
Normal file
5
.scrutinizer.yml
Normal file
|
|
@ -0,0 +1,5 @@
|
||||||
|
imports:
|
||||||
|
- php
|
||||||
|
|
||||||
|
tools:
|
||||||
|
external_code_coverage: true
|
||||||
19
.travis.yml
19
.travis.yml
|
|
@ -2,18 +2,31 @@ language: php
|
||||||
|
|
||||||
php:
|
php:
|
||||||
- 5.3
|
- 5.3
|
||||||
- 5.4
|
|
||||||
- 5.5
|
- 5.5
|
||||||
- 5.6
|
- 5.6
|
||||||
|
|
||||||
|
matrix:
|
||||||
|
include:
|
||||||
|
- php: 5.5
|
||||||
|
env: SYMFONY_VERSION='2.3.*'
|
||||||
|
- php: 5.5
|
||||||
|
env: SYMFONY_VERSION='2.5.*'
|
||||||
|
- php: 5.5
|
||||||
|
env: SYMFONY_VERSION='dev-master'
|
||||||
|
|
||||||
before_script:
|
before_script:
|
||||||
- /usr/share/elasticsearch/bin/elasticsearch -v
|
- /usr/share/elasticsearch/bin/elasticsearch -v
|
||||||
- sudo /usr/share/elasticsearch/bin/plugin -install elasticsearch/elasticsearch-mapper-attachments/2.0.0
|
- sudo /usr/share/elasticsearch/bin/plugin -install elasticsearch/elasticsearch-mapper-attachments/2.0.0
|
||||||
- sudo service elasticsearch restart
|
- sudo service elasticsearch restart
|
||||||
- echo "extension = mongo.so" >> ~/.phpenv/versions/$(phpenv version-name)/etc/php.ini
|
- sh -c 'if [ "$TRAVIS_PHP_VERSION" != "hhvm" ]; then echo "extension = mongo.so" >> ~/.phpenv/versions/$(phpenv version-name)/etc/php.ini; fi;'
|
||||||
|
- sh -c 'if [ "$SYMFONY_VERSION" != "" ]; then composer require --dev --no-update symfony/symfony=$SYMFONY_VERSION; fi;'
|
||||||
- composer install --dev --prefer-source
|
- composer install --dev --prefer-source
|
||||||
|
|
||||||
script: vendor/bin/phpunit
|
script: vendor/bin/phpunit --coverage-clover=coverage.clover
|
||||||
|
|
||||||
services:
|
services:
|
||||||
- elasticsearch
|
- elasticsearch
|
||||||
|
|
||||||
|
after_script:
|
||||||
|
- wget https://scrutinizer-ci.com/ocular.phar
|
||||||
|
- php ocular.phar code-coverage:upload --format=php-clover coverage.clover
|
||||||
|
|
|
||||||
|
|
@ -108,6 +108,7 @@ class FOSElasticaExtension extends Extension
|
||||||
if (false !== $logger) {
|
if (false !== $logger) {
|
||||||
$clientDef->addMethodCall('setLogger', array(new Reference($logger)));
|
$clientDef->addMethodCall('setLogger', array(new Reference($logger)));
|
||||||
}
|
}
|
||||||
|
$clientDef->addTag('fos_elastica.client');
|
||||||
|
|
||||||
$container->setDefinition($clientId, $clientDef);
|
$container->setDefinition($clientId, $clientDef);
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -59,7 +59,7 @@ class RepositoryManager implements RepositoryManagerInterface
|
||||||
}
|
}
|
||||||
|
|
||||||
$refClass = new \ReflectionClass($entityName);
|
$refClass = new \ReflectionClass($entityName);
|
||||||
$annotation = $this->reader->getClassAnnotation($refClass, 'FOS\\ElasticaBundle\\Configuration\\Search');
|
$annotation = $this->reader->getClassAnnotation($refClass, 'FOS\\ElasticaBundle\\Annotation\\Search');
|
||||||
if ($annotation) {
|
if ($annotation) {
|
||||||
$this->entities[$entityName]['repositoryName']
|
$this->entities[$entityName]['repositoryName']
|
||||||
= $annotation->repositoryClass;
|
= $annotation->repositoryClass;
|
||||||
|
|
|
||||||
|
|
@ -58,7 +58,7 @@ Alternatively you can specify the custom repository using an annotation in the e
|
||||||
|
|
||||||
namespace Application\UserBundle\Entity;
|
namespace Application\UserBundle\Entity;
|
||||||
|
|
||||||
use FOS\ElasticaBundle\Configuration\Search;
|
use FOS\ElasticaBundle\Annotation\Search;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @Search(repositoryClass="Acme\ElasticaBundle\SearchRepository\UserRepository")
|
* @Search(repositoryClass="Acme\ElasticaBundle\SearchRepository\UserRepository")
|
||||||
|
|
|
||||||
|
|
@ -7,7 +7,7 @@ A) Install FOSElasticaBundle
|
||||||
FOSElasticaBundle is installed using [Composer](https://getcomposer.org).
|
FOSElasticaBundle is installed using [Composer](https://getcomposer.org).
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
$ php composer.phar require friendsofsymfony/elastica-bundle "~3.0.2"
|
$ php composer.phar require friendsofsymfony/elastica-bundle "~3.0"
|
||||||
```
|
```
|
||||||
|
|
||||||
### Elasticsearch
|
### Elasticsearch
|
||||||
|
|
|
||||||
|
|
@ -23,7 +23,6 @@
|
||||||
"require-dev":{
|
"require-dev":{
|
||||||
"doctrine/orm": "~2.2",
|
"doctrine/orm": "~2.2",
|
||||||
"doctrine/doctrine-bundle": "~1.2@beta",
|
"doctrine/doctrine-bundle": "~1.2@beta",
|
||||||
"doctrine/mongodb-odm": "1.0.*@beta",
|
|
||||||
"jms/serializer-bundle": "@stable",
|
"jms/serializer-bundle": "@stable",
|
||||||
"phpunit/phpunit": "~4.1",
|
"phpunit/phpunit": "~4.1",
|
||||||
"propel/propel1": "1.6.*",
|
"propel/propel1": "1.6.*",
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue