Skip to content

Commit 03827f7

Browse files
authored
Merge pull request #8 from php-api-clients/dependabot/composer/api-clients/test-utilities-5.2.0
Bump api-clients/test-utilities from 5.1.0 to 5.2.0
2 parents 3ecfade + f03dfba commit 03827f7

File tree

5 files changed

+561
-246
lines changed

5 files changed

+561
-246
lines changed

.travis.yml

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,20 @@ matrix:
1212
env:
1313
- qaExtended=true
1414
- dropPlatform=false
15+
- php: 7.3
16+
env:
17+
- dropPlatform=false
1518
- php: nightly
1619
env:
1720
- dropPlatform=false
1821
- php: 7.2
1922
env:
2023
- dependencies=lowest
2124
- dropPlatform=false
25+
- php: 7.3
26+
env:
27+
- dependencies=lowest
28+
- dropPlatform=false
2229
- php: nightly
2330
env:
2431
- dependencies=lowest
@@ -27,6 +34,10 @@ matrix:
2734
env:
2835
- dependencies=highest
2936
- dropPlatform=false
37+
- php: 7.3
38+
env:
39+
- dependencies=highest
40+
- dropPlatform=false
3041
- php: nightly
3142
env:
3243
- dependencies=highest
@@ -48,4 +59,4 @@ script:
4859
- if [ "$qaExtended" = "true" ]; then make ci-extended; fi;
4960

5061
## Gather coverage and set it to coverage servers
51-
after_script: if [ "$qaExtended" = "true" ]; then make ci-coverage; fi;
62+
after_script: if [ "$qaExtended" = "true" ]; then make ci-coverage; fi;

appveyor.yml

Lines changed: 30 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -6,45 +6,45 @@ clone_folder: c:\projects\php-project-workspace
66
## Build matrix for lowest and highest possible targets
77
environment:
88
matrix:
9-
- dependencies: lowest
10-
php_ver_target: 7.2
11-
- dependencies: current
12-
php_ver_target: 7.2
13-
- dependencies: highest
14-
php_ver_target: 7.2
9+
- dependencies: lowest
10+
php_ver_target: 7.2
11+
- dependencies: current
12+
php_ver_target: 7.2
13+
- dependencies: highest
14+
php_ver_target: 7.2
1515

1616
## Cache composer file
1717
cache:
18-
- '%LOCALAPPDATA%\Composer\files -> composer.lock'
18+
- '%LOCALAPPDATA%\Composer\files -> composer.lock'
1919

2020
## Set up environment varriables
2121
init:
22-
- SET PATH=C:\Program Files\OpenSSL;c:\tools\php;%PATH%
23-
- SET COMPOSER_NO_INTERACTION=1
24-
- SET PHP=1
25-
- SET ANSICON=121x90 (121x90)
22+
- SET PATH=C:\Program Files\OpenSSL;c:\tools\php;%PATH%
23+
- SET COMPOSER_NO_INTERACTION=1
24+
- SET PHP=1
25+
- SET ANSICON=121x90 (121x90)
2626

2727
## Install PHP and composer, and run the appropriate composer command
2828
install:
29-
- IF EXIST c:\tools\php (SET PHP=0)
30-
- ps: appveyor-retry cinst --params '""/InstallDir:C:\tools\php""' --ignore-checksums -y php --version ((choco search php --exact --all-versions -r | select-string -pattern $env:php_ver_target | sort { [version]($_ -split '\|' | select -last 1) } -Descending | Select-Object -first 1) -replace '[php|]','')
31-
- cd c:\tools\php
32-
- IF %PHP%==1 copy php.ini-production php.ini /Y
33-
- IF %PHP%==1 echo date.timezone="UTC" >> php.ini
34-
- IF %PHP%==1 echo extension_dir=ext >> php.ini
35-
- IF %PHP%==1 echo extension=php_openssl.dll >> php.ini
36-
- IF %PHP%==1 echo extension=php_mbstring.dll >> php.ini
37-
- IF %PHP%==1 echo extension=php_fileinfo.dll >> php.ini
38-
- IF %PHP%==1 echo @php %%~dp0composer.phar %%* > composer.bat
39-
- appveyor-retry appveyor DownloadFile https://getcomposer.org/composer.phar
40-
- cd c:\projects\php-project-workspace
41-
- composer config --unset platform.php
42-
- IF %dependencies%==lowest appveyor-retry composer update --prefer-lowest --no-progress --profile -n
43-
- IF %dependencies%==current appveyor-retry composer install --no-progress --profile
44-
- IF %dependencies%==highest appveyor-retry composer update --no-progress --profile -n
45-
#- composer show
29+
- IF EXIST c:\tools\php (SET PHP=0)
30+
- ps: appveyor-retry cinst --params '""/InstallDir:C:\tools\php""' --ignore-checksums -y php --version ((choco search php --exact --all-versions -r | select-string -pattern $env:php_ver_target | sort { [version]($_ -split '\|' | select -last 1) } -Descending | Select-Object -first 1) -replace '[php|]','')
31+
- cd c:\tools\php
32+
- IF %PHP%==1 copy php.ini-production php.ini /Y
33+
- IF %PHP%==1 echo date.timezone="UTC" >> php.ini
34+
- IF %PHP%==1 echo extension_dir=ext >> php.ini
35+
- IF %PHP%==1 echo extension=php_openssl.dll >> php.ini
36+
- IF %PHP%==1 echo extension=php_mbstring.dll >> php.ini
37+
- IF %PHP%==1 echo extension=php_fileinfo.dll >> php.ini
38+
- IF %PHP%==1 echo @php %%~dp0composer.phar %%* > composer.bat
39+
- appveyor-retry appveyor DownloadFile https://getcomposer.org/composer.phar
40+
- cd c:\projects\php-project-workspace
41+
- composer config --unset platform.php
42+
- IF %dependencies%==lowest appveyor-retry composer update --prefer-lowest --no-progress --profile -n
43+
- IF %dependencies%==current appveyor-retry composer install --no-progress --profile
44+
- IF %dependencies%==highest appveyor-retry composer update --no-progress --profile -n
45+
#- composer show
4646

4747
## Run the actual test
4848
test_script:
49-
- cd c:\projects\php-project-workspace
50-
- vendor/bin/phpunit -c phpunit.xml.dist
49+
- cd c:\projects\php-project-workspace
50+
- vendor/bin/phpunit -c phpunit.xml.dist

0 commit comments

Comments
 (0)