File tree Expand file tree Collapse file tree 3 files changed +54
-1
lines changed Expand file tree Collapse file tree 3 files changed +54
-1
lines changed Original file line number Diff line number Diff line change
1
+ <?php
2
+
3
+ require __DIR__ .'/../vendor/autoload.php ' ;
4
+
5
+ use Symfony \Component \Finder \Finder ;
6
+
7
+ $ finder = (new Finder ())
8
+ ->in ([__DIR__ .'/../src/*/ ' , __DIR__ .'/../src/*/src/Bridge/*/ ' ])
9
+ ->depth (0 )
10
+ ->name ('composer.json ' )
11
+ ;
12
+
13
+ // 1. Find all UX packages
14
+ $ uxPackages = [];
15
+ foreach ($ finder as $ composerFile ) {
16
+ $ json = file_get_contents ($ composerFile ->getPathname ());
17
+ if (null === $ packageData = json_decode ($ json , true )) {
18
+ passthru (sprintf ('composer validate %s ' , $ composerFile ->getPathname ()));
19
+ exit (1 );
20
+ }
21
+
22
+ if (str_starts_with ($ composerFile ->getPathname (), __DIR__ . '/../src/ ' )) {
23
+ $ packageName = $ packageData ['name ' ];
24
+
25
+ $ uxPackages [] = [
26
+ 'path ' => realpath ($ composerFile ->getPath ()),
27
+ ];
28
+ }
29
+ }
30
+
31
+ echo json_encode ($ uxPackages , JSON_PRETTY_PRINT | JSON_UNESCAPED_SLASHES | JSON_UNESCAPED_UNICODE ) . PHP_EOL ;
Original file line number Diff line number Diff line change 81
81
source .github/workflows/.utils.sh
82
82
83
83
echo "$PACKAGES" | xargs -n1 | parallel -j +3 "_run_task {} '(cd src/{} && $COMPOSER_MIN_STAB && $COMPOSER_UP && $PHPUNIT_INSTALL && $PHPSTAN)'"
84
+
85
+ normalize-package-php :
86
+ name : Normalize PHP Packages
87
+ runs-on : ubuntu-latest
88
+ steps :
89
+ - uses : actions/checkout@v4
90
+ - name : Setup PHP
91
+ uses : shivammathur/setup-php@v2
92
+ with :
93
+ php-version : ' 8.1'
94
+ - run : composer install --no-progress --no-interaction --ansi
95
+ - run : composer packages-normalize-check
Original file line number Diff line number Diff line change 8
8
"php" : " >=8.1" ,
9
9
"symfony/filesystem" : " ^6.4|^7.0" ,
10
10
"symfony/finder" : " ^6.4|^7.0" ,
11
- "php-cs-fixer/shim" : " ^3.62"
11
+ "php-cs-fixer/shim" : " ^3.62" ,
12
+ "ergebnis/composer-normalize" : " ^2.47"
13
+ },
14
+ "config" : {
15
+ "allow-plugins" : {
16
+ "ergebnis/composer-normalize" : true
17
+ }
18
+ },
19
+ "scripts" : {
20
+ "packages-normalize" : " php .github/get-ux-packages.php | jq -r '.[] | .path' | while read -r path; do composer normalize \" $path/composer.json\" --no-check-lock; done" ,
21
+ "packages-normalize-check" : " php .github/get-ux-packages.php | jq -r '.[] | .path' | while read -r path; do composer normalize \" $path/composer.json\" --no-check-lock --dry-run || echo \"\\ 033[41mFile $path is not normalized.\\ 033[0m\n\\ 033[41mPlease run \" composer packages-normalize\" in Symfony UX root repository.\\ 033[0m\n\" ; done"
12
22
}
13
23
}
You can’t perform that action at this time.
0 commit comments