Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Drop support for PHP 7.1 #1703

Merged
merged 1 commit into from
Nov 19, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ env:
- DOCKER_VERSION=17.09.0
- DOCKER_COMPOSE_VERSION=1.17.1
matrix:
- TARGET="71"
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Would this all work but keep this target + the Docker file in? Or will all the tests fail because of the composer requirement?

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think this won't work because of the composer requirement, at least if --ignore-platform-reqs is not used

- TARGET="72"
- TARGET="73"
- TARGET="Lint"
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ All notable changes to this project will be documented in this file based on the
### Backward Compatibility Breaks

* The class `\Elastica\QueryBuilder\Version\Version240` has been moved to `\Elastica\QueryBuilder\Version\Version700` [#1693](https://github.com/ruflin/Elastica/pull/1693)
* Dropped support for PHP 7.1

### Bugfixes

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ This project tries to follow Elasticsearch in terms of [End of Life](https://www

| Elastica | ElasticSearch | elasticsearch-php | PHP |
| --------------------------------------------------------------------------------------- | ------------- | ----------------- | -------- |
| [7.x](https://github.com/ruflin/Elastica/tree/master) | 7.x | ^7.0 | ^7.1 |
| [7.x](https://github.com/ruflin/Elastica/tree/master) | 7.x | ^7.0 | ^7.2 |
| [6.x](https://github.com/ruflin/Elastica/tree/6.x) | 6.x | ^6.0 | ^7.0 |
| [5.x](https://github.com/ruflin/Elastica/tree/5.x) | 5.x | ^5.0 | \>=5.6 |
| [3.2.3](https://github.com/ruflin/Elastica/tree/3.2.3) (unmaintained) | 2.4.0 | no | \>=5.4 |
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
}
],
"require": {
"php": "^7.1",
"php": "^7.2",
"ext-json": "*",
"psr/log": "~1.0",
"elasticsearch/elasticsearch": "^7.0"
Expand Down
38 changes: 0 additions & 38 deletions env/elastica/Docker71

This file was deleted.

2 changes: 1 addition & 1 deletion env/elastica/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
}
],
"require": {
"php": "^7.1",
"php": "^7.2",
"phpdocumentor/phpdocumentor": "^2.9",
"mayflower/php-codebrowser": "~1.1",
"pdepend/pdepend": "^2.5",
Expand Down