File tree Expand file tree Collapse file tree 3 files changed +13
-6
lines changed
Expand file tree Collapse file tree 3 files changed +13
-6
lines changed Original file line number Diff line number Diff line change 6161 - php-version : ' 8.2'
6262 symfony-version : ' 7.0.*'
6363 - php-version : ' 8.4'
64- symfony-version : ' 8.0.x-dev' # TODO: change to '8.0' when Symfony 8.0 is released
65- minimum-stability : ' dev' # TODO: remove when Symfony 8.0 is released
64+ symfony-version : ' 8.0.*'
6665
6766 steps :
6867 - uses : actions/checkout@v4
7574
7675 - name : Allow Flex Plugin
7776 run : composer global config --no-plugins allow-plugins.symfony/flex true
78-
77+
7978 - name : Configure Composer stability
8079 run : composer config minimum-stability ${{ matrix.minimum-stability }}
8180
9493 8.2) symfony new my_app --version="7.1.*" --webapp ;;
9594 8.3) symfony new my_app --version="7.2.*" --webapp ;;
9695 8.4) case "${{ matrix.symfony-version }}" in
97- 8.0.x-dev ) symfony new my_app --version="8.0.x-dev " --webapp ;;
96+ 8.0.* ) symfony new my_app --version="8.0.* " --webapp ;;
9897 *) symfony new my_app --version="7.3.*" --webapp ;;
9998 esac ;;
10099 esac
Original file line number Diff line number Diff line change 2727 "phpstan/phpstan" : " ^2.1.21" ,
2828 "symplify/easy-coding-standard" : " 12.5.22" ,
2929 "symfony/framework-bundle" : " ^6.4|^7.0|^8.0"
30+ },
31+ "config" : {
32+ "audit" : {
33+ "ignore" : [
34+ " PKSA-365x-2zjk-pt47"
35+ ]
36+ }
3037 }
3138}
Original file line number Diff line number Diff line change 44
55namespace Kocal \BiomeJsBundle \DependencyInjection ;
66
7- use Symfony \Component \Config \Definition \Builder \ArrayNodeDefinition ;
87use Symfony \Component \Config \Definition \Builder \TreeBuilder ;
98use Symfony \Component \Config \Definition \ConfigurationInterface ;
109use Symfony \Component \Config \FileLocator ;
@@ -37,11 +36,13 @@ public function getAlias(): string
3736 return 'kocal_biome_js ' ;
3837 }
3938
39+ /**
40+ * @return TreeBuilder<'array'>
41+ */
4042 public function getConfigTreeBuilder (): TreeBuilder
4143 {
4244 $ treeBuilder = new TreeBuilder ($ this ->getAlias ());
4345 $ rootNode = $ treeBuilder ->getRootNode ();
44- \assert ($ rootNode instanceof ArrayNodeDefinition);
4546
4647 $ rootNode
4748 ->children ()
You can’t perform that action at this time.
0 commit comments