Skip to content
This repository was archived by the owner on Jul 8, 2023. It is now read-only.

Commit 1c01b4c

Browse files
committed
Update build configuration for PHP 7.3
1 parent e27eae5 commit 1c01b4c

File tree

2 files changed

+20
-15
lines changed

2 files changed

+20
-15
lines changed

.travis.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ matrix:
44
include:
55
- php: 7.1
66
- php: 7.2
7+
- php: 7.3
78
- php: nightly
89
fast_finish: true
910
allow_failures:

appveyor.yml

Lines changed: 19 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,29 @@
11
version: "{branch}-{build}"
22
build: false
3-
clone_folder: C:\projects\eloquent
4-
platform: 'x86'
3+
platform: x86
4+
5+
init:
6+
- SET PATH=c:\php;%PATH%
7+
- SET COMPOSER_NO_INTERACTION=1
8+
- SET PHP=1
9+
10+
cache:
11+
- '%LOCALAPPDATA%\Composer\files'
512

613
install:
7-
- cinst -y OpenSSL.Light
8-
- SET PATH=C:\Program Files\OpenSSL;%PATH%
9-
- sc config wuauserv start= auto
10-
- net start wuauserv
11-
- cinst -y php
12-
- cd c:\tools\php72
13-
- copy php.ini-production php.ini
14+
- ps: Set-Service wuauserv -StartupType Manual
15+
- cinst -y php composer
16+
- refreshenv
17+
- cd c:\tools\php73
18+
- copy php.ini-production php.ini /Y
1419
- echo date.timezone="UTC" >> php.ini
1520
- echo extension_dir=ext >> php.ini
16-
- echo extension=php_mbstring.dll >> php.ini
1721
- echo extension=php_openssl.dll >> php.ini
18-
- cd C:\projects\eloquent
19-
- SET PATH=C:\tools\php72;%PATH%
20-
- appveyor-retry php -r "readfile('http://getcomposer.org/installer');" | php
21-
- appveyor-retry php composer.phar install --prefer-source --no-interaction
22+
- echo extension=php_mbstring.dll >> php.ini
23+
- echo extension=php_curl.dll >> php.ini
24+
- cd %APPVEYOR_BUILD_FOLDER%
25+
- composer install --no-progress
2226

2327
test_script:
24-
- cd C:\projects\eloquent
28+
- cd %APPVEYOR_BUILD_FOLDER%
2529
- vendor/bin/kahlan

0 commit comments

Comments
 (0)