Skip to content

Commit dfc1788

Browse files
committed
Require --raw diffs for gitlib
1 parent b79c7cd commit dfc1788

12 files changed

Lines changed: 256 additions & 237 deletions

File tree

appveyor.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,13 @@ init:
4343
- ps: $Env:AMP_DEBUG = '1'
4444

4545
install:
46+
# Install Visual C++ Redistributable (required for PHP 8.4+)
47+
- ps: |
48+
if ($Env:php_version -ge "8.4") {
49+
Write-Host "Installing Visual C++ Redistributable for PHP 8.4+"
50+
appveyor-retry choco install vcredist140 --yes --force --ignore-dependencies
51+
}
52+
4653
# Install PHP
4754
- ps: If ((Test-Path $Env:php_directory) -eq $False) { New-Item -Path $Env:php_directory -ItemType 'directory' }
4855
- ps: $php_install_parameters = '"/DontAddToPath /InstallDir:' + $Env:php_directory + '"'

composer.json

Lines changed: 12 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
"amphp/amp": "^3.0",
2121
"amphp/parallel": "^2.1",
2222
"doctrine/collections": "^1.6.8 || ^2.0",
23-
"gitonomy/gitlib": "^1.3",
23+
"gitonomy/gitlib": "^1.6",
2424
"laravel/serializable-closure": "^2.0",
2525
"monolog/monolog": "^2.0 || ^3.0",
2626
"ondram/ci-detector": "^4.0",
@@ -36,18 +36,21 @@
3636
"symfony/finder": "^6.4 || ^7.0 || ^8.0",
3737
"symfony/options-resolver": "^6.4 || ^7.0 || ^8.0",
3838
"symfony/process": "^6.4 || ^7.0 || ^8.0",
39+
"symfony/string": "^6.4 || ^7.0 || ^8.0",
3940
"symfony/yaml": "^6.4 || ^7.0 || ^8.0"
4041
},
4142
"require-dev": {
42-
"brianium/paratest": "^7.8",
43-
"composer/composer": "^2.2.6",
44-
"nikic/php-parser": "^5.0",
45-
"php-cs-fixer/shim": "^3.88",
46-
"php-parallel-lint/php-parallel-lint": "^1.3",
47-
"phpspec/phpspec": "^8.0",
48-
"phpspec/prophecy": "^1.23",
43+
"amphp/dns": "^2.1",
44+
"amphp/socket": "^2.1",
45+
"brianium/paratest": "^7.8.5",
46+
"composer/composer": "^2.9.5",
47+
"nikic/php-parser": "^5.7",
48+
"php-cs-fixer/shim": "^3.93",
49+
"php-parallel-lint/php-parallel-lint": "^1.4",
50+
"phpspec/phpspec": "^8.2",
51+
"phpspec/prophecy": "^1.24",
4952
"phpspec/prophecy-phpunit": "^2.4",
50-
"phpunit/phpunit": "^11.5"
53+
"phpunit/phpunit": "^11.5.50"
5154
},
5255
"suggest": {
5356
"atoum/atoum": "Lets GrumPHP run your unit tests.",

0 commit comments

Comments
 (0)