File tree Expand file tree Collapse file tree 5 files changed +2472
-1212
lines changed Expand file tree Collapse file tree 5 files changed +2472
-1212
lines changed Original file line number Diff line number Diff line change 1
- FROM php:8.0 -alpine
1
+ FROM php:8.3 -alpine
2
2
3
3
WORKDIR /app
4
4
EXPOSE 9000
Original file line number Diff line number Diff line change 3
3
- push
4
4
jobs :
5
5
test :
6
- runs-on : ubuntu-latest
6
+ runs-on : ${{ matrix.os }}
7
+ strategy :
8
+ matrix :
9
+ os : [ 'ubuntu-latest' ]
10
+ php-version : [ '8.3', '8.4' ]
7
11
steps :
8
12
- uses : actions/checkout@v2
9
13
- uses : shivammathur/setup-php@v2
10
14
with :
11
- php-version : ' 8.0 '
15
+ php-version : ${{ matrix.php-version }}
12
16
- name : Prepare
13
17
run : composer install
14
18
- name : Lint
Original file line number Diff line number Diff line change 14
14
],
15
15
"homepage" : " https://github.com/jigarius/phpake" ,
16
16
"require" : {
17
- "php" : " >= 8.0 " ,
17
+ "php" : " ^8.3 " ,
18
18
"phpdocumentor/reflection-docblock" : " ^5.2" ,
19
- "symfony/console" : " ^5.3 "
19
+ "symfony/console" : " ^6 || ^7 "
20
20
},
21
21
"require-dev" : {
22
22
"dealerdirect/phpcodesniffer-composer-installer" : " ^0.7.1" ,
23
23
"drupal/coder" : " ^8.3" ,
24
24
"ergebnis/composer-normalize" : " ^2.28" ,
25
- "phpro/grumphp" : " ^1.13 " ,
25
+ "phpro/grumphp" : " ^2 " ,
26
26
"phpunit/phpunit" : " ^9.5"
27
27
},
28
28
"autoload" : {
39
39
"config" : {
40
40
"allow-plugins" : {
41
41
"dealerdirect/phpcodesniffer-composer-installer" : true ,
42
- "phpro/grumphp " : true ,
43
- "ergebnis/composer-normalize " : true
42
+ "ergebnis/composer-normalize " : true ,
43
+ "phpro/grumphp " : true
44
44
}
45
45
}
46
46
}
You can’t perform that action at this time.
0 commit comments