Skip to content

Commit

Permalink
update ci workflow php versions
Browse files Browse the repository at this point in the history
  • Loading branch information
lhapaipai committed Feb 9, 2024
1 parent 4dc1c8e commit 09b496c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
"scripts": {
"cs-fix": "php8.2 vendor/bin/php-cs-fixer fix --config=.php-cs-fixer.dist.php",
"ci-check": [
"find -L . -path ./vendor -prune -o -type f -name '*.php' -print0 | xargs -0 -n 1 -P $(nproc) php7.4 -l",
"find -L . -path ./vendor -prune -o -type f -name '*.php' -print0 | xargs -0 -n 1 -P $(nproc) php8.1 -l",
"find -L . -path ./vendor -prune -o -type f -name '*.php' -print0 | xargs -0 -n 1 -P $(nproc) php8.2 -l",
"php8.2 vendor/bin/php-cs-fixer fix --config=.php-cs-fixer.dist.php --diff --dry-run --stop-on-violation --using-cache=no",
"php8.2 vendor/bin/phpstan analyse --configuration=phpstan.neon"
Expand Down
2 changes: 1 addition & 1 deletion src/DependencyInjection/Configuration.php
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ public function getConfigTreeBuilder(): TreeBuilder
->enumNode('crossorigin')
->defaultFalse()
->values([false, 'anonymous', 'use-credentials'])
->info('crossorigin value when Encore.enableIntegrityHashes() is used, can be false (default), anonymous or use-credentials')
->info('crossorigin value, can be false (default), anonymous or use-credentials')
->end()
->arrayNode('script_attributes')
->info('Key/value pair of attributes to render on all script tags')
Expand Down

0 comments on commit 09b496c

Please sign in to comment.