You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: appveyor.yml
+9-10Lines changed: 9 additions & 10 deletions
Original file line number
Diff line number
Diff line change
@@ -10,13 +10,11 @@ environment:
10
10
COMPOSER_ROOT_VERSION: '7.0-dev'
11
11
12
12
matrix:
13
-
- PHP_VERSION: '7.2.5-Win32-VC15'
13
+
- PHP_VERSION: '7.1.11'
14
+
XDEBUG_VERSION: '2.5.5-7.1'
14
15
DEPENDENCIES: '--prefer-lowest'
15
-
- PHP_VERSION: '7.2.5-Win32-VC15'
16
-
DEPENDENCIES: ''
17
-
- PHP_VERSION: '7.1.17-Win32-VC14'
18
-
DEPENDENCIES: '--prefer-lowest'
19
-
- PHP_VERSION: '7.1.17-Win32-VC14'
16
+
- PHP_VERSION: '7.1.11'
17
+
XDEBUG_VERSION: '2.5.5-7.1'
20
18
DEPENDENCIES: ''
21
19
22
20
matrix:
@@ -33,8 +31,8 @@ install:
33
31
- IF NOT EXIST c:\php mkdir c:\php
34
32
- IF NOT EXIST c:\php\%PHP_VERSION% mkdir c:\php\%PHP_VERSION%
35
33
- cd c:\php\%PHP_VERSION%
36
-
- IF NOT EXIST php-installed.txt appveyor-retry curl -fsS -o php.zip https://windows.php.net/downloads/releases/archives/php-%PHP_VERSION%-x86.zip
37
-
- IF NOT EXIST php-installed.txt 7z x php.zip -y
34
+
- IF NOT EXIST php-installed.txt curl -fsS -o php-%PHP_VERSION%-Win32-VC14-x86.zip https://windows.php.net/downloads/releases/archives/php-%PHP_VERSION%-Win32-VC14-x86.zip
35
+
- IF NOT EXIST php-installed.txt 7z x php-%PHP_VERSION%-Win32-VC14-x86.zip -y >nul
38
36
- IF NOT EXIST php-installed.txt del /Q *.zip
39
37
- IF NOT EXIST php-installed.txt copy /Y php.ini-development php.ini
40
38
- IF NOT EXIST php-installed.txt echo max_execution_time=1200 >> php.ini
@@ -45,12 +43,13 @@ install:
45
43
- IF NOT EXIST php-installed.txt echo extension=php_mbstring.dll >> php.ini
46
44
- IF NOT EXIST php-installed.txt echo extension=php_fileinfo.dll >> php.ini
47
45
- IF NOT EXIST php-installed.txt echo extension=php_mysqli.dll >> php.ini
48
-
- IF NOT EXIST php-installed.txt echo extension=php_soap.dll >> php.ini
49
46
- IF NOT EXIST php-installed.txt echo extension=php_pdo_sqlite.dll >> php.ini
50
47
- IF NOT EXIST php-installed.txt echo zend.assertions=1 >> php.ini
51
48
- IF NOT EXIST php-installed.txt echo assert.exception=On >> php.ini
52
-
- IF NOT EXIST php-installed.txt appveyor DownloadFile https://getcomposer.org/composer.phar
49
+
- IF NOT EXIST php-installed.txt curl -fsS -o composer.phar https://getcomposer.org/composer.phar
53
50
- IF NOT EXIST php-installed.txt echo @php %%~dp0composer.phar %%* > composer.bat
51
+
- IF NOT EXIST php-installed.txt curl -fsS -o c:\php\%PHP_VERSION%\ext\php_xdebug-%XDEBUG_VERSION%-vc14.dll https://xdebug.org/files/php_xdebug-%XDEBUG_VERSION%-vc14.dll
52
+
- IF NOT EXIST php-installed.txt echo zend_extension=php_xdebug-%XDEBUG_VERSION%-vc14.dll >> php.ini
54
53
- IF NOT EXIST php-installed.txt type nul >> php-installed.txt
0 commit comments