Skip to content

Commit a35c7e0

Browse files
committed
TASK: Tweak TravisCI setup a bit
Adding `--no-update` to the require, since we install in the next step anyway. Also remove one required package, since it is required by the tested package anyway. One less dependency that can go out of sync.
1 parent d11662c commit a35c7e0

2 files changed

Lines changed: 8 additions & 4 deletions

File tree

.travis.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
language: php
22
matrix:
33
include:
4+
- php: 7.1
5+
env: ES=1
6+
- php: 7.1
7+
env: ES=2
48
- php: 7.0
59
env: ES=1
610
- php: 7.0
@@ -20,9 +24,9 @@ before_install:
2024
- cd ..
2125
- git clone https://github.com/neos/neos-base-distribution.git -b ${NEOS_TARGET_VERSION}
2226
- cd neos-base-distribution
23-
- composer require neos/content-repository-search:~2.1.0 flowpack/elasticsearch-contentrepositoryadaptor
27+
- composer require --no-update --no-interaction flowpack/elasticsearch-contentrepositoryadaptor
2428
install:
25-
- composer install
29+
- composer install --no-interaction
2630
- cd ..
2731
- rm -rf neos-base-distribution/Packages/Application/Flowpack.ElasticSearch.ContentRepositoryAdaptor
2832
- mv Flowpack.ElasticSearch.ContentRepositoryAdaptor neos-base-distribution/Packages/Application/Flowpack.ElasticSearch.ContentRepositoryAdaptor

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
{
22
"name": "flowpack/elasticsearch-contentrepositoryadaptor",
33
"type": "typo3-flow-package",
4-
"description": "This package provides functionality for using Elasticsearch on top of TYPO3CR.Search",
4+
"description": "This package provides functionality for using Elasticsearch on top of Neos.ContentRepository.Search",
55
"homepage": "http://flowpack.org/",
66
"license": ["LGPL-3.0"],
77
"require": {
88
"php": ">=5.5.0",
99

1010
"flowpack/elasticsearch": "^1.1.0",
11-
"typo3/typo3cr-search": "^2.1.0"
11+
"neos/content-repository-search": "^2.1.0"
1212
},
1313
"autoload": {
1414
"psr-0": {

0 commit comments

Comments
 (0)