Skip to content

Commit

Permalink
Merge pull request #55 from belgattitude/feat/php7.2
Browse files Browse the repository at this point in the history
release: v2.8.0
  • Loading branch information
belgattitude authored Apr 10, 2020
2 parents 83c4f42 + 4091fcf commit 795c402
Show file tree
Hide file tree
Showing 8 changed files with 24 additions and 21 deletions.
2 changes: 1 addition & 1 deletion .scrutinizer.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ build:
project_setup:
override: true
environment:
php: 7.1
php: 7.2
tests:
override: ['php-scrutinizer-run']

Expand Down
1 change: 0 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ dist: trusty
matrix:
fast_finish: true
include:
- php: 7.1
- php: 7.2
env:
- CS_CHECKS=true
Expand Down
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,17 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/)
and this project adheres to [Semantic Versioning](http://semver.org/).

## 2.8.0 (2020-04-10)

### Removed

- Drop support for PHP7.1

### Improved

- Doc improvements
- QA, CI fixes

## 2.7.0 (2019-12-21)

### Added
Expand Down
6 changes: 3 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,18 +28,18 @@
},
"require": {
"ext-xml": "*",
"php": "^7.1",
"php": "^7.2",
"psr/log": "^1.0"
},
"require-dev" : {
"phpunit/phpunit": "^7.5",
"friendsofphp/php-cs-fixer": "^2.15",
"monolog/monolog": "^1.0 || ^2.0",
"monolog/monolog": "^2.0",
"phpstan/phpstan": "^0.12.9",
"phpstan/phpstan-strict-rules": "^0.12",
"phpstan/phpstan-phpunit": "^0.12",
"belgattitude/pjbserver-tools": "^3.0",
"infection/infection": "^0.13 || ^0.14"
"infection/infection": "^0.14"
},
"scripts": {
"check": [
Expand Down
8 changes: 1 addition & 7 deletions doc/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,11 +64,6 @@ to take advantage of
- when a pure-PHP alternative does not exists *(Android, driver, closed api, enterprise...)*
- or simply for the fun of it.

!!! warning

The freedom allowed by `soluble-japha` is not fit for every scenarios.
Be sure to read the [considerations](#considerations) and [performance](#performance)
sections to learn more.

## Features

Expand Down Expand Up @@ -122,7 +117,6 @@ All P/R are warmly welcomed.

## License

The MIT License (MIT). Copyright (c) 2013-2020 Vanvelthem Sébastien
Published under the [MIT License](https://github.com/belgattitude/soluble-japha/blob/master/LICENSE.md). Copyright (c) 2013-2020 Vanvelthem Sébastien

See the details [here](https://github.com/belgattitude/soluble-japha/blob/master/LICENSE.txt)

8 changes: 7 additions & 1 deletion doc/install_client.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,17 @@
# PHP installation

=== "PHP7.1+"
=== "PHP7.2+"

```bash
$ composer require soluble/japha
```

=== "PHP7.1"

```bash
$ composer require "soluble/japha@^2.7.0"
```

=== "PHP 5.6"
*For PHP5.6, use the ^1.0.0 version, BC compat with ^2.0.0.*

Expand Down
2 changes: 1 addition & 1 deletion phpstan.neon
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ parameters:
message: '#should return string(.*) but return statement is missing#'
path: src/Soluble/Japha/Bridge/Driver/Pjb62/SocketHandler.php
-
message: '#should return int|null but return statement is missing#'
message: '#should return int\|null but return statement is missing#'
path: src/Soluble/Japha/Bridge/Driver/Pjb62/HttpTunnelHandler.php
-
message: '#between 1 and 1 is always false#'
Expand Down
7 changes: 0 additions & 7 deletions requirements.txt

This file was deleted.

0 comments on commit 795c402

Please sign in to comment.