File tree Expand file tree Collapse file tree 5 files changed +30
-18
lines changed Expand file tree Collapse file tree 5 files changed +30
-18
lines changed Original file line number Diff line number Diff line change 1
- FROM php:8.2 -fpm-alpine
1
+ FROM php:8.4 -fpm-alpine
2
2
3
3
ARG UID
4
4
ARG GID
Original file line number Diff line number Diff line change 19
19
- name : Install PHP with extensions
20
20
uses : shivammathur/setup-php@v2
21
21
with :
22
- php-version : ' 8.2 '
22
+ php-version : ' 8.4 '
23
23
coverage : none
24
24
tools : composer:v2
25
25
- name : Install Composer dependencies (locked)
36
36
- name : Install PHP with extensions
37
37
uses : shivammathur/setup-php@v2
38
38
with :
39
- php-version : ' 8.2 '
39
+ php-version : ' 8.4 '
40
40
coverage : none
41
41
tools : composer:v2
42
42
- name : Install Composer dependencies (locked)
53
53
- name : Install PHP with extensions
54
54
uses : shivammathur/setup-php@v2
55
55
with :
56
- php-version : ' 8.2 '
56
+ php-version : ' 8.4 '
57
57
coverage : none
58
58
tools : composer:v2
59
59
- name : Install Composer dependencies (locked)
Original file line number Diff line number Diff line change @@ -22,11 +22,17 @@ jobs:
22
22
php-version :
23
23
- ' 8.2'
24
24
- ' 8.3'
25
+ - ' 8.4'
25
26
dependencies : [highest]
26
27
allowed-to-fail : [false]
27
28
symfony-require : ['']
28
29
variant : [normal]
29
30
include :
31
+ - php-version : ' 8.1'
32
+ dependencies : highest
33
+ allowed-to-fail : false
34
+ symfony-require : 6.4.*
35
+ variant : symfony/symfony:"6.4.*"
30
36
- php-version : ' 8.2'
31
37
dependencies : highest
32
38
allowed-to-fail : false
35
41
- php-version : ' 8.2'
36
42
dependencies : highest
37
43
allowed-to-fail : false
38
- symfony-require : 7.1 .*
39
- variant : symfony/symfony:"7.1 .*"
44
+ symfony-require : 7.3 .*
45
+ variant : symfony/symfony:"7.3 .*"
40
46
- php-version : ' 8.3'
41
47
dependencies : highest
42
48
allowed-to-fail : false
45
51
- php-version : ' 8.3'
46
52
dependencies : highest
47
53
allowed-to-fail : false
48
- symfony-require : 7.1.*
49
- variant : symfony/symfony:"7.1.*"
54
+ symfony-require : 7.3.*
55
+ variant : symfony/symfony:"7.3.*"
56
+ - php-version : ' 8.4'
57
+ dependencies : highest
58
+ allowed-to-fail : false
59
+ symfony-require : 6.4.*
60
+ variant : symfony/symfony:"6.4.*"
61
+ - php-version : ' 8.4'
62
+ dependencies : highest
63
+ allowed-to-fail : false
64
+ symfony-require : 7.3.*
65
+ variant : symfony/symfony:"7.3.*"
50
66
51
67
steps :
52
68
- name : Checkout
Original file line number Diff line number Diff line change 45
45
"require" : {
46
46
"php" : " >=8.1" ,
47
47
"cleverage/process-bundle" : " ^4.0" ,
48
- "symfony/http-client" : " ^6.4|^7.1 "
48
+ "symfony/http-client" : " ^6.4|^7.3 "
49
49
},
50
50
"require-dev" : {
51
51
"friendsofphp/php-cs-fixer" : " *" ,
Original file line number Diff line number Diff line change 8
8
use Rector \ValueObject \PhpVersion ;
9
9
10
10
return RectorConfig::configure ()
11
- ->withPhpVersion (PhpVersion::PHP_82 )
11
+ ->withPhpVersion (PhpVersion::PHP_84 )
12
12
->withPaths ([
13
13
__DIR__ .'/src ' ,
14
14
__DIR__ .'/tests ' ,
15
15
])
16
- ->withPhpSets (php82 : true )
16
+ ->withPhpSets (php81 : true )
17
17
// here we can define, what prepared sets of rules will be applied
18
- ->withPreparedSets (
19
- deadCode: true ,
20
- codeQuality: true
21
- )
18
+ ->withPreparedSets (deadCode: true , codeQuality: true , symfonyCodeQuality: true )
19
+ ->withAttributesSets (symfony: true )
22
20
->withSets ([
23
- LevelSetList::UP_TO_PHP_82 ,
21
+ LevelSetList::UP_TO_PHP_81 ,
24
22
SymfonySetList::SYMFONY_64 ,
25
- SymfonySetList::SYMFONY_71 ,
26
23
SymfonySetList::SYMFONY_CODE_QUALITY ,
27
24
SymfonySetList::SYMFONY_CONSTRUCTOR_INJECTION ,
28
- SymfonySetList::ANNOTATIONS_TO_ATTRIBUTES ,
29
25
])
30
26
;
You can’t perform that action at this time.
0 commit comments