File tree 2 files changed +20
-17
lines changed 2 files changed +20
-17
lines changed Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " symfony-tools/code-block-checker" ,
3
- "type" : " project" ,
4
3
"license" : " proprietary" ,
4
+ "type" : " project" ,
5
5
"require" : {
6
6
"php" : " >=8.0" ,
7
7
"ext-ctype" : " *" ,
21
21
"symfony/yaml" : " ^5.2" ,
22
22
"twig/twig" : " ^3.3"
23
23
},
24
+ "require-dev" : {
25
+ "bamarni/composer-bin-plugin" : " ^1.4.1" ,
26
+ "phpunit/phpunit" : " ^9.3.10"
27
+ },
24
28
"replace" : {
25
29
"symfony/polyfill-ctype" : " *" ,
26
30
"symfony/polyfill-iconv" : " *"
27
31
},
28
- "require-dev" : {
29
- "bamarni/composer-bin-plugin" : " ^1.4.1" ,
30
- "phpunit/phpunit" : " ^9.3.10"
32
+ "minimum-stability" : " dev" ,
33
+ "prefer-stable" : true ,
34
+ "autoload" : {
35
+ "psr-4" : {
36
+ "SymfonyTools\\ CodeBlockChecker\\ " : " src/"
37
+ }
38
+ },
39
+ "autoload-dev" : {
40
+ "psr-4" : {
41
+ "SymfonyTools\\ CodeBlockChecker\\ Tests\\ " : " tests/"
42
+ }
31
43
},
32
44
"config" : {
33
45
"optimize-autoloader" : true ,
40
52
"symfony" : {
41
53
"allow-contrib" : false
42
54
}
43
- },
44
- "autoload" : {
45
- "psr-4" : {
46
- "SymfonyTools\\ CodeBlockChecker\\ " : " src/"
47
- }
48
- },
49
- "autoload-dev" : {
50
- "psr-4" : {
51
- "SymfonyTools\\ CodeBlockChecker\\ Tests\\ " : " tests/"
52
- }
53
- },
54
- "minimum-stability" : " dev" ,
55
- "prefer-stable" : true
55
+ }
56
56
}
Original file line number Diff line number Diff line change @@ -62,6 +62,9 @@ public function getFunctions()
62
62
new TwigFunction ('workflow_transition ' ),
63
63
new TwigFunction ('t ' ),
64
64
new TwigFunction ('mercure ' ),
65
+ new TwigFunction ('stimulus_controller ' ),
66
+ new TwigFunction ('stimulus_action ' ),
67
+ new TwigFunction ('stimulus_target ' ),
65
68
];
66
69
}
67
70
You can’t perform that action at this time.
0 commit comments