@@ -14,22 +14,22 @@ jobs:
1414 name : Check composer.json
1515 runs-on : ubuntu-latest
1616 steps :
17- - uses : actions/checkout@v4
17+ - uses : actions/checkout@v5
1818 - uses : shivammathur/setup-php@v2
1919 with :
2020 coverage : none
21- php-version : ' 8.2 '
21+ php-version : ' 8.4 '
2222 - run : composer validate --strict --no-check-lock
2323
2424 static_analysis :
2525 name : Static analysis
2626 runs-on : ubuntu-latest
2727 steps :
28- - uses : actions/checkout@v4
28+ - uses : actions/checkout@v5
2929 - uses : shivammathur/setup-php@v2
3030 with :
3131 coverage : none
32- php-version : ' 8.2 '
32+ php-version : ' 8.4 '
3333 - name : Install dependencies
3434 run : composer update --ansi --no-progress --prefer-dist --no-interaction
3535 - run : vendor/bin/phpstan analyze
@@ -39,18 +39,18 @@ jobs:
3939 runs-on : ubuntu-latest
4040 strategy :
4141 matrix :
42- php : [ '7.2', '7.3', '7.4', '8.0', '8.1', '8.2', '8.3' ]
42+ php : [ '7.2', '7.3', '7.4', '8.0', '8.1', '8.2', '8.3', '8.4', '8.5' ]
4343 minimum_stability : [ 'stable' ]
4444 name_suffix : [ '' ]
4545 implementation : [ 'http_kernel' ]
4646 include :
47- - php : ' 8.2 '
47+ - php : ' 8.4 '
4848 minimum_stability : dev
4949 implementation : ' http_kernel'
5050 name_suffix : ' and dev deps'
51- - php : ' 8.2 '
51+ - php : ' 8.4 '
5252 implementation : http_client
53- - php : ' 8.2 '
53+ - php : ' 8.4 '
5454 minimum_stability : dev
5555 implementation : ' http_client'
5656 name_suffix : ' and dev deps'
6161
6262 steps :
6363 - name : Checkout
64- uses : actions/checkout@v4
64+ uses : actions/checkout@v5
6565 with :
6666 fetch-depth : 2
6767
7171 coverage : " xdebug"
7272 php-version : " ${{ matrix.php }}"
7373 tools : composer
74+ ini-file : ' development'
7475
7576 - name : Configure for minimum stability
7677 if : " ${{ matrix.minimum_stability == 'dev' }}"
0 commit comments