File tree Expand file tree Collapse file tree 3 files changed +4
-1
lines changed Expand file tree Collapse file tree 3 files changed +4
-1
lines changed Original file line number Diff line number Diff line change 52
52
53
53
- name : " Symfony version"
54
54
if : " matrix.symfony-version != ''"
55
- run : perl -pi -e 's#"(symfony/.*)":\s*"\^ .*"#"$1":"'"${{ matrix.symfony-version }}.*"'"#' composer.json && cat composer.json
55
+ run : perl -pi -e 's#"(symfony/.*)":\s*".*\|\| .*"#"$1":"'"${{ matrix.symfony-version }}.*"'"#' composer.json && cat composer.json
56
56
57
57
- name : " Webonyx GraphQL version"
58
58
if : " matrix.graphql-version != ''"
Original file line number Diff line number Diff line change 59
59
"symfony/browser-kit" : " ^4.4 || ^5.2" ,
60
60
"symfony/console" : " ^4.4 || ^5.2" ,
61
61
"symfony/css-selector" : " ^4.4 || ^5.2" ,
62
+ "symfony/monolog-bundle" : " ^3.7" ,
62
63
"symfony/phpunit-bridge" : " ^4.4 || ^5.2" ,
63
64
"symfony/process" : " ^4.4 || ^5.2" ,
64
65
"symfony/security-bundle" : " ^4.4 || ^5.2" ,
Original file line number Diff line number Diff line change 6
6
7
7
use Overblog \GraphQLBundle \OverblogGraphQLBundle ;
8
8
use Symfony \Bundle \FrameworkBundle \FrameworkBundle ;
9
+ use Symfony \Bundle \MonologBundle \MonologBundle ;
9
10
use Symfony \Bundle \SecurityBundle \SecurityBundle ;
10
11
use Symfony \Component \Config \Loader \LoaderInterface ;
11
12
use Symfony \Component \DependencyInjection \Compiler \CompilerPassInterface ;
@@ -25,6 +26,7 @@ public function registerBundles()
25
26
{
26
27
yield new FrameworkBundle ();
27
28
yield new SecurityBundle ();
29
+ yield new MonologBundle ();
28
30
yield new OverblogGraphQLBundle ();
29
31
}
30
32
You can’t perform that action at this time.
0 commit comments