File tree 4 files changed +20
-25
lines changed
4 files changed +20
-25
lines changed Original file line number Diff line number Diff line change 17
17
- name : ' Setup PHP'
18
18
uses : ' shivammathur/setup-php@v2'
19
19
with :
20
- php-version : ' 8.1 '
21
- - name : ' Composer Install'
22
- uses : ' ramsey/ composer- install@v3 '
20
+ php-version : ' 8.2 '
21
+ - name : ' Install dependencies '
22
+ run : ' composer install --no-progress --prefer-dist --optimize-autoloader '
23
23
- name : ' Rector'
24
24
run : ' vendor/bin/rector process --dry-run --no-progress-bar --ansi'
25
25
32
32
- name : ' Setup PHP'
33
33
uses : ' shivammathur/setup-php@v2'
34
34
with :
35
- php-version : ' 8.1 '
36
- - name : ' Composer Install'
37
- uses : ' ramsey/ composer- install@v3 '
35
+ php-version : ' 8.2 '
36
+ - name : ' Install dependencies '
37
+ run : ' composer install --no-progress --prefer-dist --optimize-autoloader '
38
38
- name : ' PHPStan'
39
39
run : ' vendor/bin/phpstan analyze --no-progress --ansi'
40
40
47
47
- name : ' Setup PHP'
48
48
uses : ' shivammathur/setup-php@v2'
49
49
with :
50
- php-version : ' 8.1 '
51
- - name : ' Composer Install'
52
- uses : ' ramsey/ composer- install@v3 '
50
+ php-version : ' 8.2 '
51
+ - name : ' Install dependencies '
52
+ run : ' composer install --no-progress --prefer-dist --optimize-autoloader '
53
53
- name : ' PHP CS Fixer'
54
54
run : ' vendor/bin/php-cs-fixer fix --diff --dry-run --show-progress=none --ansi'
55
55
58
58
runs-on : ' ubuntu-24.04'
59
59
strategy :
60
60
matrix :
61
- include :
62
- - php : ' 8.1'
63
- - php : ' 8.2'
64
- - php : ' 8.3'
61
+ php : ['8.2', '8.3']
65
62
fail-fast : false
66
63
steps :
67
64
- name : ' Checkout'
70
67
uses : ' shivammathur/setup-php@v2'
71
68
with :
72
69
php-version : " ${{ matrix.php }}"
73
- - name : ' Composer Install'
74
- uses : ' ramsey/ composer- install@v3 '
70
+ - name : ' Install dependencies '
71
+ run : ' composer install --no-progress --prefer-dist --optimize-autoloader '
75
72
- name : ' PHPUnit'
76
73
run : ' XDEBUG_MODE=coverage vendor/bin/phpunit --coverage-text --coverage-clover phpunit-coverage.xml'
77
74
- name : ' Code Climate'
Original file line number Diff line number Diff line change 4
4
[ ![ Total Downloads] ( https://poser.pugx.org/darkwebdesign/symfony-addon-transformers/downloads?format=flat )] ( https://packagist.org/packages/darkwebdesign/symfony-addon-transformers )
5
5
[ ![ License] ( https://poser.pugx.org/darkwebdesign/symfony-addon-transformers/license?format=flat )] ( https://packagist.org/packages/darkwebdesign/symfony-addon-transformers )
6
6
7
- [ ![ Build Status] ( https://github.com/darkwebdesign/symfony-addon-transformers/actions/workflows/build.yaml/badge.svg?branch=6.4 )] ( https://github.com/darkwebdesign/symfony-addon-transformers/actions/workflows/build.yaml )
8
- [ ![ Coverage Status] ( https://codecov.io/gh/darkwebdesign/symfony-addon-transformers/branch/6.4 /graph/badge.svg )] ( https://codecov.io/gh/darkwebdesign/symfony-addon-transformers )
9
- [ ![ PHP Version] ( https://img.shields.io/badge/php-8.1 %2B-777BB3.svg )] ( https://php.net/ )
10
- [ ![ Symfony Version] ( https://img.shields.io/badge/symfony-6.4 -93C74B.svg )] ( https://symfony.com/ )
7
+ [ ![ Build Status] ( https://github.com/darkwebdesign/symfony-addon-transformers/actions/workflows/build.yaml/badge.svg?branch=7.0 )] ( https://github.com/darkwebdesign/symfony-addon-transformers/actions/workflows/build.yaml )
8
+ [ ![ Coverage Status] ( https://codecov.io/gh/darkwebdesign/symfony-addon-transformers/branch/7.0 /graph/badge.svg )] ( https://codecov.io/gh/darkwebdesign/symfony-addon-transformers )
9
+ [ ![ PHP Version] ( https://img.shields.io/badge/php-8.2 %2B-777BB3.svg )] ( https://php.net/ )
10
+ [ ![ Symfony Version] ( https://img.shields.io/badge/symfony-7.0 -93C74B.svg )] ( https://symfony.com/ )
11
11
12
12
Symfony Add-on Transformers is a collection of extra Symfony data transformers that you can use in your Symfony
13
13
applications.
14
14
15
- Learn more about it in its [ documentation] ( https://darkwebdesign.github.io/symfony-addon-pack/docs/6.4 ) .
15
+ Learn more about it in its [ documentation] ( https://darkwebdesign.github.io/symfony-addon-pack/docs/7.0 ) .
16
16
17
17
## Features
18
18
Original file line number Diff line number Diff line change 9
9
{"name" : " Raymond Schouten" }
10
10
],
11
11
"require" : {
12
- "php" : " ^8.1 " ,
13
- "symfony/form" : " 6.4 .*"
12
+ "php" : " ^8.2 " ,
13
+ "symfony/form" : " 7.0 .*"
14
14
},
15
15
"require-dev" : {
16
16
"doctrine/orm" : " ^2.7" ,
Original file line number Diff line number Diff line change 4
4
5
5
use Rector \Config \RectorConfig ;
6
6
use Rector \Set \ValueObject \LevelSetList ;
7
- use Rector \Symfony \Set \SymfonySetList ;
8
7
9
8
return RectorConfig::configure ()
10
9
->withPaths ([
11
10
__DIR__ . '/src ' ,
12
11
__DIR__ . '/tests ' ,
13
12
])
14
13
->withSets ([
15
- LevelSetList::UP_TO_PHP_81 ,
16
- SymfonySetList::SYMFONY_64 ,
14
+ LevelSetList::UP_TO_PHP_82 ,
17
15
])
18
16
->withImportNames (
19
17
importShortClasses: false ,
You can’t perform that action at this time.
0 commit comments