File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 77 strategy :
88 matrix :
99 operating-system : [ubuntu-latest]
10- php-versions : ['8.0', '8.1']
10+ php-versions : ['8.0', '8.1', '8.2' ]
1111 composer-options : ['', '--prefer-lowest']
1212 fail-fast : false
1313 name : PHP ${{ matrix.php-versions }} @ ${{ matrix.operating-system }} with ${{ matrix.composer-options }}
3535 key : ${{ runner.os }}-composer-${{ hashFiles('**/composer.json') }}
3636 restore-keys : ${{ runner.os }}-composer-
3737 - name : Install dependencies
38- run : composer update --prefer-dist --no-progress --no-suggest ${{ matrix.composer-options }} --ignore-platform-reqs
38+ run : composer update --prefer-dist --no-progress --no-suggest ${{ matrix.composer-options }} --ignore-platform-req=php+
3939 - name : Set git variables
4040 run : |
4141 git config --global user.email "you@example.com"
Original file line number Diff line number Diff line change 33 "description" : " RFC7807 Problem details implementation" ,
44 "type" : " library" ,
55 "require-dev" : {
6- "friendsofphp/php-cs-fixer" : " ^3.3 " ,
7- "phpro/grumphp-shim" : " ^1.6 " ,
8- "phpspec/phpspec" : " ^7.0 " ,
9- "symfony/validator" : " ^5.3 || ^6.0" ,
6+ "friendsofphp/php-cs-fixer" : " ^3.13 " ,
7+ "phpro/grumphp-shim" : " ^1.14 " ,
8+ "phpspec/phpspec" : " ^7.2 " ,
9+ "symfony/validator" : " ^5.4 || ^6.0" ,
1010 "sebastian/comparator" : " ^4.0"
1111 },
1212 "license" : " MIT" ,
2020 "php" : " ^8.0"
2121 },
2222 "config" : {
23- "sort-packages" : true
23+ "sort-packages" : true ,
24+ "allow-plugins" : {
25+ "phpro/grumphp-shim" : true
26+ }
2427 },
2528 "autoload" : {
2629 "psr-4" : {
Original file line number Diff line number Diff line change 55namespace Phpro \ApiProblem \Http ;
66
77use function get_class ;
8+
89use Phpro \ApiProblem \DebuggableApiProblemInterface ;
910use Throwable ;
1011
You can’t perform that action at this time.
0 commit comments