File tree Expand file tree Collapse file tree 3 files changed +11
-7
lines changed Expand file tree Collapse file tree 3 files changed +11
-7
lines changed Original file line number Diff line number Diff line change 7
7
strategy :
8
8
matrix :
9
9
operating-system : [ubuntu-latest]
10
- php-versions : ['8.0', '8.1']
10
+ php-versions : ['8.0', '8.1', '8.2' ]
11
11
composer-options : ['', '--prefer-lowest']
12
12
fail-fast : false
13
13
name : PHP ${{ matrix.php-versions }} @ ${{ matrix.operating-system }} with ${{ matrix.composer-options }}
35
35
key : ${{ runner.os }}-composer-${{ hashFiles('**/composer.json') }}
36
36
restore-keys : ${{ runner.os }}-composer-
37
37
- 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+
39
39
- name : Set git variables
40
40
run : |
41
41
git config --global user.email "[email protected] "
Original file line number Diff line number Diff line change 3
3
"description" : " RFC7807 Problem details implementation" ,
4
4
"type" : " library" ,
5
5
"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" ,
10
10
"sebastian/comparator" : " ^4.0"
11
11
},
12
12
"license" : " MIT" ,
20
20
"php" : " ^8.0"
21
21
},
22
22
"config" : {
23
- "sort-packages" : true
23
+ "sort-packages" : true ,
24
+ "allow-plugins" : {
25
+ "phpro/grumphp-shim" : true
26
+ }
24
27
},
25
28
"autoload" : {
26
29
"psr-4" : {
Original file line number Diff line number Diff line change 5
5
namespace Phpro \ApiProblem \Http ;
6
6
7
7
use function get_class ;
8
+
8
9
use Phpro \ApiProblem \DebuggableApiProblemInterface ;
9
10
use Throwable ;
10
11
You can’t perform that action at this time.
0 commit comments