File tree 2 files changed +30
-1
lines changed
src/orange/cfhelper/configuration
2 files changed +30
-1
lines changed Original file line number Diff line number Diff line change 10
10
}
11
11
],
12
12
"require" : {
13
- "arhframe/iocart" : " 1.0.1"
13
+ "arhframe/iocart" : " 1.0.1" ,
14
+ "filp/whoops" : " 1.1.1"
14
15
},
15
16
"autoload" : {
16
17
"psr-0" : {
Original file line number Diff line number Diff line change @@ -17,10 +17,38 @@ class PhpIniConfigurator
17
17
public static $ servicePhpIniName = 'php-ini ' ;
18
18
private $ serviceManager ;
19
19
private $ applicationInfo ;
20
+ private $ config = array ();
20
21
21
22
function __construct ()
22
23
{
24
+ $ this ->loadConfigCfHelper ();
25
+ }
26
+
27
+ public function loadConfigCfHelper ()
28
+ {
29
+ if (!is_file (__DIR__ . '/../../../../../../../composer.json ' )) {
30
+ return ;
31
+ }
32
+ $ composerJson = json_decode (file_get_contents (__DIR__ . '/../../../../../../../composer.json ' ), true );
33
+ if (empty ($ composerJson ['cfhelper ' ])) {
34
+ return ;
35
+ }
36
+ $ this ->config = $ composerJson ['cfhelper ' ];
37
+ $ this ->loadConfig ();
38
+ }
23
39
40
+ public function loadConfig ()
41
+ {
42
+ if (!empty ($ this ->config ['type ' ]) && $ this ->config ['type ' ] == 'development ' ) {
43
+ ini_set ("display_errors " , "On " );
44
+ ini_set ("error_reporting " , -1 );
45
+ $ whoops = new \Whoops \Run ;
46
+ $ whoops ->pushHandler (new \Whoops \Handler \PrettyPageHandler );
47
+ $ whoops ->register ();
48
+ } else {
49
+ ini_set ("display_errors " , "Off " );
50
+ ini_set ("error_reporting " , E_ALL & ~E_DEPRECATED );
51
+ }
24
52
}
25
53
26
54
public function loadIniConfig ()
You can’t perform that action at this time.
0 commit comments