File tree 3 files changed +8
-1
lines changed
src/Sentry/SentryBundle/DependencyInjection
3 files changed +8
-1
lines changed Original file line number Diff line number Diff line change 13
13
],
14
14
"require" : {
15
15
"php" : " >=5.3.3" ,
16
- "sentry/sentry" : " >=1.5.0 " ,
16
+ "sentry/sentry" : " ^1.9 " ,
17
17
"symfony/config" : " ^2.7|^3.0" ,
18
18
"symfony/console" : " ^2.7|^3.0" ,
19
19
"symfony/dependency-injection" : " ^2.7|^3.0" ,
Original file line number Diff line number Diff line change @@ -73,6 +73,9 @@ public function getConfigTreeBuilder()
73
73
->arrayNode ('exclude ' )
74
74
->prototype ('scalar ' )->end ()
75
75
->end ()
76
+ ->arrayNode ('excluded_exceptions ' )
77
+ ->prototype ('scalar ' )->end ()
78
+ ->end ()
76
79
->scalarNode ('http_proxy ' )->defaultNull ()->end ()
77
80
->arrayNode ('extra ' )
78
81
->prototype ('scalar ' )->end ()
Original file line number Diff line number Diff line change @@ -596,6 +596,10 @@ public function test_that_it_sets_all_options()
596
596
'test1 ' ,
597
597
'test2 ' ,
598
598
),
599
+ 'excluded_exceptions ' => array (
600
+ 'test3 ' ,
601
+ 'test4 ' ,
602
+ ),
599
603
'http_proxy ' => 'http_proxy ' ,
600
604
'extra ' => array (
601
605
'extra1 ' => 'extra1 ' ,
You can’t perform that action at this time.
0 commit comments