Skip to content

Commit e88e30a

Browse files
authored
Merge pull request #2 from php-api-clients/dependabot/composer/api-clients/test-utilities-4.3.0
Bump api-clients/test-utilities from 4.1.0 to 4.3.0
2 parents ad9901a + 6b6593c commit e88e30a

File tree

5 files changed

+1531
-570
lines changed

5 files changed

+1531
-570
lines changed

.php_cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php declare(strict_types=1);
22

3-
use ApiClients\Tools\TestUtilities\PhpCsFixerConfig;
3+
use ApiClients\Tools\CsFixerConfig\PhpCsFixerConfig;
44
use PhpCsFixer\Config;
55

66
return (function (): Config
@@ -12,9 +12,9 @@ return (function (): Config
1212

1313
return PhpCsFixerConfig::create()
1414
->setFinder(
15-
PhpCsFixer\Finder::create()
16-
->in($paths)
17-
->append($paths)
15+
PhpCsFixer\Finder::create()
16+
->in($paths)
17+
->append($paths)
1818
)
1919
->setUsingCache(false)
2020
;

.travis.yml

Lines changed: 6 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -8,29 +8,25 @@ cache:
88
## Build matrix for lowest and highest possible targets
99
matrix:
1010
include:
11-
- php: 7.0
11+
- php: 7.2
1212
env:
1313
- qaExtended=true
14-
- php: 7.1
14+
- dropPlatform=false
1515
- php: nightly
1616
env:
1717
- dropPlatform=false
18-
- php: 7.0
19-
env:
20-
- dependencies=lowest
21-
- php: 7.1
18+
- php: 7.2
2219
env:
2320
- dependencies=lowest
21+
- dropPlatform=false
2422
- php: nightly
2523
env:
2624
- dependencies=lowest
2725
- dropPlatform=false
28-
- php: 7.0
29-
env:
30-
- dependencies=highest
31-
- php: 7.1
26+
- php: 7.2
3227
env:
3328
- dependencies=highest
29+
- dropPlatform=false
3430
- php: nightly
3531
env:
3632
- dependencies=highest

appveyor.yml

Lines changed: 4 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -7,19 +7,13 @@ clone_folder: c:\projects\php-project-workspace
77
environment:
88
matrix:
99
- dependencies: lowest
10-
php_ver_target: 7.0
11-
- dependencies: lowest
12-
php_ver_target: 7.1
13-
- dependencies: current
14-
php_ver_target: 7.0
10+
php_ver_target: 7.2
1511
- dependencies: current
16-
php_ver_target: 7.1
17-
- dependencies: highest
18-
php_ver_target: 7.0
12+
php_ver_target: 7.2
1913
- dependencies: highest
20-
php_ver_target: 7.1
14+
php_ver_target: 7.2
2115

22-
## Cache composer, chocolatey and php bits
16+
## Cache composer file
2317
cache:
2418
- '%LOCALAPPDATA%\Composer\files -> composer.lock'
2519

composer.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@
99
}
1010
],
1111
"require": {
12-
"php": "^7.0",
12+
"php": "^7.2",
1313
"api-clients/middleware": "^4.0"
1414
},
1515
"require-dev": {
16-
"api-clients/test-utilities": "^4.1",
16+
"api-clients/test-utilities": "^5.1",
1717
"ringcentral/psr7": "^1.2"
1818
},
1919
"autoload": {
@@ -29,7 +29,7 @@
2929
"config": {
3030
"sort-packages": true,
3131
"platform": {
32-
"php": "7.0"
32+
"php": "7.2"
3333
}
3434
},
3535
"scripts": {

0 commit comments

Comments
 (0)