File tree Expand file tree Collapse file tree 4 files changed +20
-25
lines changed
Expand file tree Collapse file tree 4 files changed +20
-25
lines changed Original file line number Diff line number Diff line change 1717 - name : ' Setup PHP'
1818 uses : ' shivammathur/setup-php@v2'
1919 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 '
2323 - name : ' Rector'
2424 run : ' vendor/bin/rector process --dry-run --no-progress-bar --ansi'
2525
3232 - name : ' Setup PHP'
3333 uses : ' shivammathur/setup-php@v2'
3434 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 '
3838 - name : ' PHPStan'
3939 run : ' vendor/bin/phpstan analyze --no-progress --ansi'
4040
4747 - name : ' Setup PHP'
4848 uses : ' shivammathur/setup-php@v2'
4949 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 '
5353 - name : ' PHP CS Fixer'
5454 run : ' vendor/bin/php-cs-fixer fix --diff --dry-run --show-progress=none --ansi'
5555
5858 runs-on : ' ubuntu-24.04'
5959 strategy :
6060 matrix :
61- include :
62- - php : ' 8.1'
63- - php : ' 8.2'
64- - php : ' 8.3'
61+ php : ['8.2', '8.3']
6562 fail-fast : false
6663 steps :
6764 - name : ' Checkout'
7067 uses : ' shivammathur/setup-php@v2'
7168 with :
7269 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 '
7572 - name : ' PHPUnit'
7673 run : ' XDEBUG_MODE=coverage vendor/bin/phpunit --coverage-text --coverage-clover phpunit-coverage.xml'
7774 - name : ' Code Climate'
Original file line number Diff line number Diff line change 44[ ![ Total Downloads] ( https://poser.pugx.org/darkwebdesign/symfony-addon-transformers/downloads?format=flat )] ( https://packagist.org/packages/darkwebdesign/symfony-addon-transformers )
55[ ![ License] ( https://poser.pugx.org/darkwebdesign/symfony-addon-transformers/license?format=flat )] ( https://packagist.org/packages/darkwebdesign/symfony-addon-transformers )
66
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/ )
1111
1212Symfony Add-on Transformers is a collection of extra Symfony data transformers that you can use in your Symfony
1313applications.
1414
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 ) .
1616
1717## Features
1818
Original file line number Diff line number Diff line change 99 {"name" : " Raymond Schouten" }
1010 ],
1111 "require" : {
12- "php" : " ^8.1 " ,
13- "symfony/form" : " 6.4 .*"
12+ "php" : " ^8.2 " ,
13+ "symfony/form" : " 7.0 .*"
1414 },
1515 "require-dev" : {
1616 "doctrine/orm" : " ^2.7" ,
Original file line number Diff line number Diff line change 44
55use Rector \Config \RectorConfig ;
66use Rector \Set \ValueObject \LevelSetList ;
7- use Rector \Symfony \Set \SymfonySetList ;
87
98return RectorConfig::configure ()
109 ->withPaths ([
1110 __DIR__ . '/src ' ,
1211 __DIR__ . '/tests ' ,
1312 ])
1413 ->withSets ([
15- LevelSetList::UP_TO_PHP_81 ,
16- SymfonySetList::SYMFONY_64 ,
14+ LevelSetList::UP_TO_PHP_82 ,
1715 ])
1816 ->withImportNames (
1917 importShortClasses: false ,
You can’t perform that action at this time.
0 commit comments