diff --git a/.scrutinizer.yml b/.scrutinizer.yml index 544c9fa..8df36d4 100644 --- a/.scrutinizer.yml +++ b/.scrutinizer.yml @@ -5,7 +5,7 @@ filter: build: environment: - elasticsearch: "7.17" + elasticsearch: "^7.17" tests: before: - cd && git clone https://github.com/drupal/drupal diff --git a/.travis.yml b/.travis.yml index 1c67cad..fbc40bd 100644 --- a/.travis.yml +++ b/.travis.yml @@ -4,7 +4,7 @@ dist: trusty language: php php: - - '8.1.13' + - '8.3.8' services: - docker diff --git a/composer.json b/composer.json index 4048589..f4d8585 100644 --- a/composer.json +++ b/composer.json @@ -11,7 +11,7 @@ } ], "require": { - "elasticsearch/elasticsearch": "^7" + "elasticsearch/elasticsearch": "^7.17" }, "authors": [ { @@ -20,7 +20,7 @@ } ], "require-dev": { - "drupal/core": "^9.5.11", - "phpunit/phpunit" : "8.5.14 || 9" + "drupal/core": "^10.3", + "phpunit/phpunit" : "^11.3" } } diff --git a/src/Elastic.php b/src/Elastic.php index 0ca65a5..ff1fe86 100644 --- a/src/Elastic.php +++ b/src/Elastic.php @@ -43,4 +43,4 @@ public static function IndexQueryAggregate($index, $conjunction = 'AND', array $ $query = new QueryAggregate($entity_type, $conjunction, $client, $namespaces); return $query; } -} \ No newline at end of file +}