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

Extracted the waiting client out into separate package #1

Open
wants to merge 5 commits into
base: master
Choose a base branch
from
Open
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
4 changes: 2 additions & 2 deletions .php_cs
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
<?php declare(strict_types=1);

use ApiClients\Tools\TestUtilities\PhpCsFixerConfig;
use ApiClients\Tools\CsFixerConfig\PhpCsFixerConfig;
use PhpCsFixer\Config;

return (function (): Config
{
$paths = [
__DIR__ . DIRECTORY_SEPARATOR . 'src',
__DIR__ . DIRECTORY_SEPARATOR . 'etc',
__DIR__ . DIRECTORY_SEPARATOR . 'tests',
];

Expand Down
66 changes: 5 additions & 61 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,93 +8,37 @@ cache:
## Build matrix for lowest and highest possible targets
matrix:
include:
- php: 7.1
env:
- qaExtended=true
- php: 7.2
env:
- qaExtended=true
- dropPlatform=false
- php: 7.3snapshot
env:
- dropPlatform=false
dist: xenial
sudo: required
addons:
apt:
packages:
- libzip4
- php: 7.3.0RC1
- php: 7.3
env:
- dropPlatform=false
dist: xenial
sudo: required
addons:
apt:
packages:
- libzip4
- php: nightly
env:
- dropPlatform=false
- php: 7.1
env:
- dependencies=lowest
- dropPlatform=false
- php: 7.2
env:
- dependencies=lowest
- dropPlatform=false
- php: 7.3snapshot
env:
- dependencies=lowest
- dropPlatform=false
dist: xenial
sudo: required
addons:
apt:
packages:
- libzip4
- php: 7.3.0RC1
- php: 7.3
env:
- dependencies=lowest
- dropPlatform=false
dist: xenial
sudo: required
addons:
apt:
packages:
- libzip4

- php: nightly
env:
- dependencies=lowest
- dropPlatform=false
- php: 7.1
env:
- dependencies=highest
- dropPlatform=false
- php: 7.2
env:
- dependencies=highest
- dropPlatform=false
- php: 7.3snapshot
env:
- dependencies=highest
- dropPlatform=false
dist: xenial
sudo: required
addons:
apt:
packages:
- libzip4
- php: 7.3.0RC1
- php: 7.3
env:
- dependencies=highest
- dropPlatform=false
dist: xenial
sudo: required
addons:
apt:
packages:
- libzip4
- php: nightly
env:
- dependencies=highest
Expand Down
6 changes: 0 additions & 6 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,16 +6,10 @@ clone_folder: c:\projects\php-project-workspace
## Build matrix for lowest and highest possible targets
environment:
matrix:
- dependencies: lowest
php_ver_target: 7.1
- dependencies: lowest
php_ver_target: 7.2
- dependencies: current
php_ver_target: 7.1
- dependencies: current
php_ver_target: 7.2
- dependencies: highest
php_ver_target: 7.1
- dependencies: highest
php_ver_target: 7.2

Expand Down
7 changes: 3 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,11 @@
"description": "PHP-DI definition for clue/redis-react",
"require": {
"php": "^7.2",
"clue/redis-react": "^2.2",
"psr/log": "^1.0",
"wyrihaximus/psr-3-callable-throwable-logger": "^1.0"
"wyrihaximus/react-redis-waiting-client": "dev-master"
},
"require-dev": {
"api-clients/test-utilities": "^5.1"
"api-clients/test-utilities": "^5.1",
"php-di/php-di": "^6.0"
},
"autoload": {
"psr-4": {
Expand Down
Loading