@@ -111,13 +111,13 @@ discard block |
||
111 | 111 | if (!$prefix) { |
112 | 112 | if ($prepend) { |
113 | 113 | $this->fallbackDirsPsr0 = array_merge( |
114 | - (array) $paths, |
|
114 | + (array)$paths, |
|
115 | 115 | $this->fallbackDirsPsr0 |
116 | 116 | ); |
117 | 117 | } else { |
118 | 118 | $this->fallbackDirsPsr0 = array_merge( |
119 | 119 | $this->fallbackDirsPsr0, |
120 | - (array) $paths |
|
120 | + (array)$paths |
|
121 | 121 | ); |
122 | 122 | } |
123 | 123 | |
@@ -126,19 +126,19 @@ discard block |
||
126 | 126 | |
127 | 127 | $first = $prefix[0]; |
128 | 128 | if (!isset($this->prefixesPsr0[$first][$prefix])) { |
129 | - $this->prefixesPsr0[$first][$prefix] = (array) $paths; |
|
129 | + $this->prefixesPsr0[$first][$prefix] = (array)$paths; |
|
130 | 130 | |
131 | 131 | return; |
132 | 132 | } |
133 | 133 | if ($prepend) { |
134 | 134 | $this->prefixesPsr0[$first][$prefix] = array_merge( |
135 | - (array) $paths, |
|
135 | + (array)$paths, |
|
136 | 136 | $this->prefixesPsr0[$first][$prefix] |
137 | 137 | ); |
138 | 138 | } else { |
139 | 139 | $this->prefixesPsr0[$first][$prefix] = array_merge( |
140 | 140 | $this->prefixesPsr0[$first][$prefix], |
141 | - (array) $paths |
|
141 | + (array)$paths |
|
142 | 142 | ); |
143 | 143 | } |
144 | 144 | } |
@@ -159,13 +159,13 @@ discard block |
||
159 | 159 | // Register directories for the root namespace. |
160 | 160 | if ($prepend) { |
161 | 161 | $this->fallbackDirsPsr4 = array_merge( |
162 | - (array) $paths, |
|
162 | + (array)$paths, |
|
163 | 163 | $this->fallbackDirsPsr4 |
164 | 164 | ); |
165 | 165 | } else { |
166 | 166 | $this->fallbackDirsPsr4 = array_merge( |
167 | 167 | $this->fallbackDirsPsr4, |
168 | - (array) $paths |
|
168 | + (array)$paths |
|
169 | 169 | ); |
170 | 170 | } |
171 | 171 | } elseif (!isset($this->prefixDirsPsr4[$prefix])) { |
@@ -175,18 +175,18 @@ discard block |
||
175 | 175 | throw new \InvalidArgumentException("A non-empty PSR-4 prefix must end with a namespace separator."); |
176 | 176 | } |
177 | 177 | $this->prefixLengthsPsr4[$prefix[0]][$prefix] = $length; |
178 | - $this->prefixDirsPsr4[$prefix] = (array) $paths; |
|
178 | + $this->prefixDirsPsr4[$prefix] = (array)$paths; |
|
179 | 179 | } elseif ($prepend) { |
180 | 180 | // Prepend directories for an already registered namespace. |
181 | 181 | $this->prefixDirsPsr4[$prefix] = array_merge( |
182 | - (array) $paths, |
|
182 | + (array)$paths, |
|
183 | 183 | $this->prefixDirsPsr4[$prefix] |
184 | 184 | ); |
185 | 185 | } else { |
186 | 186 | // Append directories for an already registered namespace. |
187 | 187 | $this->prefixDirsPsr4[$prefix] = array_merge( |
188 | 188 | $this->prefixDirsPsr4[$prefix], |
189 | - (array) $paths |
|
189 | + (array)$paths |
|
190 | 190 | ); |
191 | 191 | } |
192 | 192 | } |
@@ -201,9 +201,9 @@ discard block |
||
201 | 201 | public function set($prefix, $paths) |
202 | 202 | { |
203 | 203 | if (!$prefix) { |
204 | - $this->fallbackDirsPsr0 = (array) $paths; |
|
204 | + $this->fallbackDirsPsr0 = (array)$paths; |
|
205 | 205 | } else { |
206 | - $this->prefixesPsr0[$prefix[0]][$prefix] = (array) $paths; |
|
206 | + $this->prefixesPsr0[$prefix[0]][$prefix] = (array)$paths; |
|
207 | 207 | } |
208 | 208 | } |
209 | 209 | |
@@ -219,14 +219,14 @@ discard block |
||
219 | 219 | public function setPsr4($prefix, $paths) |
220 | 220 | { |
221 | 221 | if (!$prefix) { |
222 | - $this->fallbackDirsPsr4 = (array) $paths; |
|
222 | + $this->fallbackDirsPsr4 = (array)$paths; |
|
223 | 223 | } else { |
224 | 224 | $length = strlen($prefix); |
225 | 225 | if ('\\' !== $prefix[$length - 1]) { |
226 | 226 | throw new \InvalidArgumentException("A non-empty PSR-4 prefix must end with a namespace separator."); |
227 | 227 | } |
228 | 228 | $this->prefixLengthsPsr4[$prefix[0]][$prefix] = $length; |
229 | - $this->prefixDirsPsr4[$prefix] = (array) $paths; |
|
229 | + $this->prefixDirsPsr4[$prefix] = (array)$paths; |
|
230 | 230 | } |
231 | 231 | } |
232 | 232 | |
@@ -370,7 +370,7 @@ discard block |
||
370 | 370 | private function findFileWithExtension($class, $ext) |
371 | 371 | { |
372 | 372 | // PSR-4 lookup |
373 | - $logicalPathPsr4 = strtr($class, '\\', DIRECTORY_SEPARATOR) . $ext; |
|
373 | + $logicalPathPsr4 = strtr($class, '\\', DIRECTORY_SEPARATOR).$ext; |
|
374 | 374 | |
375 | 375 | $first = $class[0]; |
376 | 376 | if (isset($this->prefixLengthsPsr4[$first])) { |
@@ -379,9 +379,9 @@ discard block |
||
379 | 379 | $subPath = substr($subPath, 0, $lastPos); |
380 | 380 | $search = $subPath.'\\'; |
381 | 381 | if (isset($this->prefixDirsPsr4[$search])) { |
382 | - $pathEnd = DIRECTORY_SEPARATOR . substr($logicalPathPsr4, $lastPos + 1); |
|
382 | + $pathEnd = DIRECTORY_SEPARATOR.substr($logicalPathPsr4, $lastPos + 1); |
|
383 | 383 | foreach ($this->prefixDirsPsr4[$search] as $dir) { |
384 | - if (file_exists($file = $dir . $pathEnd)) { |
|
384 | + if (file_exists($file = $dir.$pathEnd)) { |
|
385 | 385 | return $file; |
386 | 386 | } |
387 | 387 | } |
@@ -391,7 +391,7 @@ discard block |
||
391 | 391 | |
392 | 392 | // PSR-4 fallback dirs |
393 | 393 | foreach ($this->fallbackDirsPsr4 as $dir) { |
394 | - if (file_exists($file = $dir . DIRECTORY_SEPARATOR . $logicalPathPsr4)) { |
|
394 | + if (file_exists($file = $dir.DIRECTORY_SEPARATOR.$logicalPathPsr4)) { |
|
395 | 395 | return $file; |
396 | 396 | } |
397 | 397 | } |
@@ -403,14 +403,14 @@ discard block |
||
403 | 403 | . strtr(substr($logicalPathPsr4, $pos + 1), '_', DIRECTORY_SEPARATOR); |
404 | 404 | } else { |
405 | 405 | // PEAR-like class name |
406 | - $logicalPathPsr0 = strtr($class, '_', DIRECTORY_SEPARATOR) . $ext; |
|
406 | + $logicalPathPsr0 = strtr($class, '_', DIRECTORY_SEPARATOR).$ext; |
|
407 | 407 | } |
408 | 408 | |
409 | 409 | if (isset($this->prefixesPsr0[$first])) { |
410 | 410 | foreach ($this->prefixesPsr0[$first] as $prefix => $dirs) { |
411 | 411 | if (0 === strpos($class, $prefix)) { |
412 | 412 | foreach ($dirs as $dir) { |
413 | - if (file_exists($file = $dir . DIRECTORY_SEPARATOR . $logicalPathPsr0)) { |
|
413 | + if (file_exists($file = $dir.DIRECTORY_SEPARATOR.$logicalPathPsr0)) { |
|
414 | 414 | return $file; |
415 | 415 | } |
416 | 416 | } |
@@ -420,7 +420,7 @@ discard block |
||
420 | 420 | |
421 | 421 | // PSR-0 fallback dirs |
422 | 422 | foreach ($this->fallbackDirsPsr0 as $dir) { |
423 | - if (file_exists($file = $dir . DIRECTORY_SEPARATOR . $logicalPathPsr0)) { |
|
423 | + if (file_exists($file = $dir.DIRECTORY_SEPARATOR.$logicalPathPsr0)) { |
|
424 | 424 | return $file; |
425 | 425 | } |
426 | 426 | } |
@@ -6,185 +6,185 @@ |
||
6 | 6 | $baseDir = dirname($vendorDir); |
7 | 7 | |
8 | 8 | return array( |
9 | - 'Firebase\\JWT\\BeforeValidException' => $vendorDir . '/firebase/php-jwt/src/BeforeValidException.php', |
|
10 | - 'Firebase\\JWT\\ExpiredException' => $vendorDir . '/firebase/php-jwt/src/ExpiredException.php', |
|
11 | - 'Firebase\\JWT\\JWT' => $vendorDir . '/firebase/php-jwt/src/JWT.php', |
|
12 | - 'Firebase\\JWT\\SignatureInvalidException' => $vendorDir . '/firebase/php-jwt/src/SignatureInvalidException.php', |
|
13 | - 'Geekwright\\RegDom\\PublicSuffixList' => $vendorDir . '/geekwright/regdom/src/PublicSuffixList.php', |
|
14 | - 'Geekwright\\RegDom\\RegisteredDomain' => $vendorDir . '/geekwright/regdom/src/RegisteredDomain.php', |
|
15 | - 'Kint' => $vendorDir . '/kint-php/kint/src/Kint.php', |
|
16 | - 'Kint_Object' => $vendorDir . '/kint-php/kint/src/Object.php', |
|
17 | - 'Kint_Object_Blob' => $vendorDir . '/kint-php/kint/src/Object/Blob.php', |
|
18 | - 'Kint_Object_Closure' => $vendorDir . '/kint-php/kint/src/Object/Closure.php', |
|
19 | - 'Kint_Object_Color' => $vendorDir . '/kint-php/kint/src/Object/Color.php', |
|
20 | - 'Kint_Object_DateTime' => $vendorDir . '/kint-php/kint/src/Object/DateTime.php', |
|
21 | - 'Kint_Object_Instance' => $vendorDir . '/kint-php/kint/src/Object/Instance.php', |
|
22 | - 'Kint_Object_Method' => $vendorDir . '/kint-php/kint/src/Object/Method.php', |
|
23 | - 'Kint_Object_Nothing' => $vendorDir . '/kint-php/kint/src/Object/Nothing.php', |
|
24 | - 'Kint_Object_Parameter' => $vendorDir . '/kint-php/kint/src/Object/Parameter.php', |
|
25 | - 'Kint_Object_Representation' => $vendorDir . '/kint-php/kint/src/Object/Representation.php', |
|
26 | - 'Kint_Object_Representation_Color' => $vendorDir . '/kint-php/kint/src/Object/Representation/Color.php', |
|
27 | - 'Kint_Object_Representation_Docstring' => $vendorDir . '/kint-php/kint/src/Object/Representation/Docstring.php', |
|
28 | - 'Kint_Object_Representation_Microtime' => $vendorDir . '/kint-php/kint/src/Object/Representation/Microtime.php', |
|
29 | - 'Kint_Object_Representation_Source' => $vendorDir . '/kint-php/kint/src/Object/Representation/Source.php', |
|
30 | - 'Kint_Object_Representation_SplFileInfo' => $vendorDir . '/kint-php/kint/src/Object/Representation/SplFileInfo.php', |
|
31 | - 'Kint_Object_Resource' => $vendorDir . '/kint-php/kint/src/Object/Resource.php', |
|
32 | - 'Kint_Object_Stream' => $vendorDir . '/kint-php/kint/src/Object/Stream.php', |
|
33 | - 'Kint_Object_Throwable' => $vendorDir . '/kint-php/kint/src/Object/Throwable.php', |
|
34 | - 'Kint_Object_Trace' => $vendorDir . '/kint-php/kint/src/Object/Trace.php', |
|
35 | - 'Kint_Object_TraceFrame' => $vendorDir . '/kint-php/kint/src/Object/TraceFrame.php', |
|
36 | - 'Kint_Parser' => $vendorDir . '/kint-php/kint/src/Parser.php', |
|
37 | - 'Kint_Parser_Base64' => $vendorDir . '/kint-php/kint/src/Parser/Base64.php', |
|
38 | - 'Kint_Parser_Binary' => $vendorDir . '/kint-php/kint/src/Parser/Binary.php', |
|
39 | - 'Kint_Parser_Blacklist' => $vendorDir . '/kint-php/kint/src/Parser/Blacklist.php', |
|
40 | - 'Kint_Parser_ClassMethods' => $vendorDir . '/kint-php/kint/src/Parser/ClassMethods.php', |
|
41 | - 'Kint_Parser_ClassStatics' => $vendorDir . '/kint-php/kint/src/Parser/ClassStatics.php', |
|
42 | - 'Kint_Parser_Closure' => $vendorDir . '/kint-php/kint/src/Parser/Closure.php', |
|
43 | - 'Kint_Parser_Color' => $vendorDir . '/kint-php/kint/src/Parser/Color.php', |
|
44 | - 'Kint_Parser_DOMIterator' => $vendorDir . '/kint-php/kint/src/Parser/DOMIterator.php', |
|
45 | - 'Kint_Parser_DOMNode' => $vendorDir . '/kint-php/kint/src/Parser/DOMNode.php', |
|
46 | - 'Kint_Parser_DateTime' => $vendorDir . '/kint-php/kint/src/Parser/DateTime.php', |
|
47 | - 'Kint_Parser_FsPath' => $vendorDir . '/kint-php/kint/src/Parser/FsPath.php', |
|
48 | - 'Kint_Parser_Iterator' => $vendorDir . '/kint-php/kint/src/Parser/Iterator.php', |
|
49 | - 'Kint_Parser_Json' => $vendorDir . '/kint-php/kint/src/Parser/Json.php', |
|
50 | - 'Kint_Parser_Microtime' => $vendorDir . '/kint-php/kint/src/Parser/Microtime.php', |
|
51 | - 'Kint_Parser_Plugin' => $vendorDir . '/kint-php/kint/src/Parser/Plugin.php', |
|
52 | - 'Kint_Parser_Serialize' => $vendorDir . '/kint-php/kint/src/Parser/Serialize.php', |
|
53 | - 'Kint_Parser_SimpleXMLElement' => $vendorDir . '/kint-php/kint/src/Parser/SimpleXMLElement.php', |
|
54 | - 'Kint_Parser_SplFileInfo' => $vendorDir . '/kint-php/kint/src/Parser/SplFileInfo.php', |
|
55 | - 'Kint_Parser_SplObjectStorage' => $vendorDir . '/kint-php/kint/src/Parser/SplObjectStorage.php', |
|
56 | - 'Kint_Parser_Stream' => $vendorDir . '/kint-php/kint/src/Parser/Stream.php', |
|
57 | - 'Kint_Parser_Table' => $vendorDir . '/kint-php/kint/src/Parser/Table.php', |
|
58 | - 'Kint_Parser_Throwable' => $vendorDir . '/kint-php/kint/src/Parser/Throwable.php', |
|
59 | - 'Kint_Parser_Timestamp' => $vendorDir . '/kint-php/kint/src/Parser/Timestamp.php', |
|
60 | - 'Kint_Parser_ToString' => $vendorDir . '/kint-php/kint/src/Parser/ToString.php', |
|
61 | - 'Kint_Parser_Trace' => $vendorDir . '/kint-php/kint/src/Parser/Trace.php', |
|
62 | - 'Kint_Parser_Xml' => $vendorDir . '/kint-php/kint/src/Parser/Xml.php', |
|
63 | - 'Kint_Renderer' => $vendorDir . '/kint-php/kint/src/Renderer.php', |
|
64 | - 'Kint_Renderer_Cli' => $vendorDir . '/kint-php/kint/src/Renderer/Cli.php', |
|
65 | - 'Kint_Renderer_Plain' => $vendorDir . '/kint-php/kint/src/Renderer/Plain.php', |
|
66 | - 'Kint_Renderer_Rich' => $vendorDir . '/kint-php/kint/src/Renderer/Rich.php', |
|
67 | - 'Kint_Renderer_Rich_Binary' => $vendorDir . '/kint-php/kint/src/Renderer/Rich/Binary.php', |
|
68 | - 'Kint_Renderer_Rich_Blacklist' => $vendorDir . '/kint-php/kint/src/Renderer/Rich/Blacklist.php', |
|
69 | - 'Kint_Renderer_Rich_Callable' => $vendorDir . '/kint-php/kint/src/Renderer/Rich/Callable.php', |
|
70 | - 'Kint_Renderer_Rich_Closure' => $vendorDir . '/kint-php/kint/src/Renderer/Rich/Closure.php', |
|
71 | - 'Kint_Renderer_Rich_Color' => $vendorDir . '/kint-php/kint/src/Renderer/Rich/Color.php', |
|
72 | - 'Kint_Renderer_Rich_ColorDetails' => $vendorDir . '/kint-php/kint/src/Renderer/Rich/ColorDetails.php', |
|
73 | - 'Kint_Renderer_Rich_DepthLimit' => $vendorDir . '/kint-php/kint/src/Renderer/Rich/DepthLimit.php', |
|
74 | - 'Kint_Renderer_Rich_Docstring' => $vendorDir . '/kint-php/kint/src/Renderer/Rich/Docstring.php', |
|
75 | - 'Kint_Renderer_Rich_Microtime' => $vendorDir . '/kint-php/kint/src/Renderer/Rich/Microtime.php', |
|
76 | - 'Kint_Renderer_Rich_Nothing' => $vendorDir . '/kint-php/kint/src/Renderer/Rich/Nothing.php', |
|
77 | - 'Kint_Renderer_Rich_Plugin' => $vendorDir . '/kint-php/kint/src/Renderer/Rich/Plugin.php', |
|
78 | - 'Kint_Renderer_Rich_Recursion' => $vendorDir . '/kint-php/kint/src/Renderer/Rich/Recursion.php', |
|
79 | - 'Kint_Renderer_Rich_SimpleXMLElement' => $vendorDir . '/kint-php/kint/src/Renderer/Rich/SimpleXMLElement.php', |
|
80 | - 'Kint_Renderer_Rich_Source' => $vendorDir . '/kint-php/kint/src/Renderer/Rich/Source.php', |
|
81 | - 'Kint_Renderer_Rich_Table' => $vendorDir . '/kint-php/kint/src/Renderer/Rich/Table.php', |
|
82 | - 'Kint_Renderer_Rich_Timestamp' => $vendorDir . '/kint-php/kint/src/Renderer/Rich/Timestamp.php', |
|
83 | - 'Kint_Renderer_Rich_TraceFrame' => $vendorDir . '/kint-php/kint/src/Renderer/Rich/TraceFrame.php', |
|
84 | - 'Kint_Renderer_Text' => $vendorDir . '/kint-php/kint/src/Renderer/Text.php', |
|
85 | - 'Kint_Renderer_Text_Blacklist' => $vendorDir . '/kint-php/kint/src/Renderer/Text/Blacklist.php', |
|
86 | - 'Kint_Renderer_Text_DepthLimit' => $vendorDir . '/kint-php/kint/src/Renderer/Text/DepthLimit.php', |
|
87 | - 'Kint_Renderer_Text_Nothing' => $vendorDir . '/kint-php/kint/src/Renderer/Text/Nothing.php', |
|
88 | - 'Kint_Renderer_Text_Plugin' => $vendorDir . '/kint-php/kint/src/Renderer/Text/Plugin.php', |
|
89 | - 'Kint_Renderer_Text_Recursion' => $vendorDir . '/kint-php/kint/src/Renderer/Text/Recursion.php', |
|
90 | - 'Kint_Renderer_Text_Trace' => $vendorDir . '/kint-php/kint/src/Renderer/Text/Trace.php', |
|
91 | - 'Kint_SourceParser' => $vendorDir . '/kint-php/kint/src/SourceParser.php', |
|
92 | - 'Symfony\\Component\\Yaml\\Dumper' => $vendorDir . '/symfony/yaml/Dumper.php', |
|
93 | - 'Symfony\\Component\\Yaml\\Escaper' => $vendorDir . '/symfony/yaml/Escaper.php', |
|
94 | - 'Symfony\\Component\\Yaml\\Exception\\DumpException' => $vendorDir . '/symfony/yaml/Exception/DumpException.php', |
|
95 | - 'Symfony\\Component\\Yaml\\Exception\\ExceptionInterface' => $vendorDir . '/symfony/yaml/Exception/ExceptionInterface.php', |
|
96 | - 'Symfony\\Component\\Yaml\\Exception\\ParseException' => $vendorDir . '/symfony/yaml/Exception/ParseException.php', |
|
97 | - 'Symfony\\Component\\Yaml\\Exception\\RuntimeException' => $vendorDir . '/symfony/yaml/Exception/RuntimeException.php', |
|
98 | - 'Symfony\\Component\\Yaml\\Inline' => $vendorDir . '/symfony/yaml/Inline.php', |
|
99 | - 'Symfony\\Component\\Yaml\\Parser' => $vendorDir . '/symfony/yaml/Parser.php', |
|
100 | - 'Symfony\\Component\\Yaml\\Unescaper' => $vendorDir . '/symfony/yaml/Unescaper.php', |
|
101 | - 'Symfony\\Component\\Yaml\\Yaml' => $vendorDir . '/symfony/yaml/Yaml.php', |
|
102 | - 'Symfony\\Polyfill\\Mbstring\\Mbstring' => $vendorDir . '/symfony/polyfill-mbstring/Mbstring.php', |
|
103 | - 'Webmozart\\Assert\\Assert' => $vendorDir . '/webmozart/assert/src/Assert.php', |
|
104 | - 'WideImage\\Canvas' => $vendorDir . '/smottt/wideimage/lib/WideImage/Canvas.php', |
|
105 | - 'WideImage\\Coordinate' => $vendorDir . '/smottt/wideimage/lib/WideImage/Coordinate.php', |
|
106 | - 'WideImage\\Exception\\Exception' => $vendorDir . '/smottt/wideimage/lib/WideImage/Exception/Exception.php', |
|
107 | - 'WideImage\\Exception\\GDFunctionResultException' => $vendorDir . '/smottt/wideimage/lib/WideImage/Exception/GDFunctionResultException.php', |
|
108 | - 'WideImage\\Exception\\InvalidCanvasMethodException' => $vendorDir . '/smottt/wideimage/lib/WideImage/Exception/InvalidCanvasMethodException.php', |
|
109 | - 'WideImage\\Exception\\InvalidCoordinateException' => $vendorDir . '/smottt/wideimage/lib/WideImage/Exception/InvalidCoordinateException.php', |
|
110 | - 'WideImage\\Exception\\InvalidFontFileException' => $vendorDir . '/smottt/wideimage/lib/WideImage/Exception/InvalidFontFileException.php', |
|
111 | - 'WideImage\\Exception\\InvalidImageDimensionException' => $vendorDir . '/smottt/wideimage/lib/WideImage/Exception/InvalidImageDimensionException.php', |
|
112 | - 'WideImage\\Exception\\InvalidImageHandleException' => $vendorDir . '/smottt/wideimage/lib/WideImage/Exception/InvalidImageHandleException.php', |
|
113 | - 'WideImage\\Exception\\InvalidImageSourceException' => $vendorDir . '/smottt/wideimage/lib/WideImage/Exception/InvalidImageSourceException.php', |
|
114 | - 'WideImage\\Exception\\NoFontException' => $vendorDir . '/smottt/wideimage/lib/WideImage/Exception/NoFontException.php', |
|
115 | - 'WideImage\\Exception\\UnknownErrorWhileMappingException' => $vendorDir . '/smottt/wideimage/lib/WideImage/Exception/UnknownErrorWhileMappingException.php', |
|
116 | - 'WideImage\\Exception\\UnknownImageOperationException' => $vendorDir . '/smottt/wideimage/lib/WideImage/Exception/UnknownImageOperationException.php', |
|
117 | - 'WideImage\\Exception\\UnsupportedFormatException' => $vendorDir . '/smottt/wideimage/lib/WideImage/Exception/UnsupportedFormatException.php', |
|
118 | - 'WideImage\\Font\\GDF' => $vendorDir . '/smottt/wideimage/lib/WideImage/Font/GDF.php', |
|
119 | - 'WideImage\\Font\\PS' => $vendorDir . '/smottt/wideimage/lib/WideImage/Font/PS.php', |
|
120 | - 'WideImage\\Font\\TTF' => $vendorDir . '/smottt/wideimage/lib/WideImage/Font/TTF.php', |
|
121 | - 'WideImage\\Image' => $vendorDir . '/smottt/wideimage/lib/WideImage/Image.php', |
|
122 | - 'WideImage\\MapperFactory' => $vendorDir . '/smottt/wideimage/lib/WideImage/MapperFactory.php', |
|
123 | - 'WideImage\\Mapper\\BMP' => $vendorDir . '/smottt/wideimage/lib/WideImage/Mapper/BMP.php', |
|
124 | - 'WideImage\\Mapper\\GD' => $vendorDir . '/smottt/wideimage/lib/WideImage/Mapper/GD.php', |
|
125 | - 'WideImage\\Mapper\\GD2' => $vendorDir . '/smottt/wideimage/lib/WideImage/Mapper/GD2.php', |
|
126 | - 'WideImage\\Mapper\\GIF' => $vendorDir . '/smottt/wideimage/lib/WideImage/Mapper/GIF.php', |
|
127 | - 'WideImage\\Mapper\\JPEG' => $vendorDir . '/smottt/wideimage/lib/WideImage/Mapper/JPEG.php', |
|
128 | - 'WideImage\\Mapper\\PNG' => $vendorDir . '/smottt/wideimage/lib/WideImage/Mapper/PNG.php', |
|
129 | - 'WideImage\\Mapper\\TGA' => $vendorDir . '/smottt/wideimage/lib/WideImage/Mapper/TGA.php', |
|
130 | - 'WideImage\\Mapper\\WEBP' => $vendorDir . '/smottt/wideimage/lib/WideImage/Mapper/WEBP.php', |
|
131 | - 'WideImage\\OperationFactory' => $vendorDir . '/smottt/wideimage/lib/WideImage/OperationFactory.php', |
|
132 | - 'WideImage\\Operation\\AddNoise' => $vendorDir . '/smottt/wideimage/lib/WideImage/Operation/AddNoise.php', |
|
133 | - 'WideImage\\Operation\\ApplyConvolution' => $vendorDir . '/smottt/wideimage/lib/WideImage/Operation/ApplyConvolution.php', |
|
134 | - 'WideImage\\Operation\\ApplyFilter' => $vendorDir . '/smottt/wideimage/lib/WideImage/Operation/ApplyFilter.php', |
|
135 | - 'WideImage\\Operation\\ApplyMask' => $vendorDir . '/smottt/wideimage/lib/WideImage/Operation/ApplyMask.php', |
|
136 | - 'WideImage\\Operation\\AsGrayscale' => $vendorDir . '/smottt/wideimage/lib/WideImage/Operation/AsGrayscale.php', |
|
137 | - 'WideImage\\Operation\\AsNegative' => $vendorDir . '/smottt/wideimage/lib/WideImage/Operation/AsNegative.php', |
|
138 | - 'WideImage\\Operation\\AutoCrop' => $vendorDir . '/smottt/wideimage/lib/WideImage/Operation/AutoCrop.php', |
|
139 | - 'WideImage\\Operation\\CopyChannelsPalette' => $vendorDir . '/smottt/wideimage/lib/WideImage/Operation/CopyChannelsPalette.php', |
|
140 | - 'WideImage\\Operation\\CopyChannelsTrueColor' => $vendorDir . '/smottt/wideimage/lib/WideImage/Operation/CopyChannelsTrueColor.php', |
|
141 | - 'WideImage\\Operation\\CorrectGamma' => $vendorDir . '/smottt/wideimage/lib/WideImage/Operation/CorrectGamma.php', |
|
142 | - 'WideImage\\Operation\\Crop' => $vendorDir . '/smottt/wideimage/lib/WideImage/Operation/Crop.php', |
|
143 | - 'WideImage\\Operation\\Exception\\InvalidFitMethodException' => $vendorDir . '/smottt/wideimage/lib/WideImage/Operation/Exception/InvalidFitMethodException.php', |
|
144 | - 'WideImage\\Operation\\Exception\\InvalidResizeDimensionException' => $vendorDir . '/smottt/wideimage/lib/WideImage/Operation/Exception/InvalidResizeDimensionException.php', |
|
145 | - 'WideImage\\Operation\\Flip' => $vendorDir . '/smottt/wideimage/lib/WideImage/Operation/Flip.php', |
|
146 | - 'WideImage\\Operation\\GetMask' => $vendorDir . '/smottt/wideimage/lib/WideImage/Operation/GetMask.php', |
|
147 | - 'WideImage\\Operation\\Merge' => $vendorDir . '/smottt/wideimage/lib/WideImage/Operation/Merge.php', |
|
148 | - 'WideImage\\Operation\\Mirror' => $vendorDir . '/smottt/wideimage/lib/WideImage/Operation/Mirror.php', |
|
149 | - 'WideImage\\Operation\\Resize' => $vendorDir . '/smottt/wideimage/lib/WideImage/Operation/Resize.php', |
|
150 | - 'WideImage\\Operation\\ResizeCanvas' => $vendorDir . '/smottt/wideimage/lib/WideImage/Operation/ResizeCanvas.php', |
|
151 | - 'WideImage\\Operation\\Rotate' => $vendorDir . '/smottt/wideimage/lib/WideImage/Operation/Rotate.php', |
|
152 | - 'WideImage\\Operation\\RoundCorners' => $vendorDir . '/smottt/wideimage/lib/WideImage/Operation/RoundCorners.php', |
|
153 | - 'WideImage\\Operation\\Unsharp' => $vendorDir . '/smottt/wideimage/lib/WideImage/Operation/Unsharp.php', |
|
154 | - 'WideImage\\PaletteImage' => $vendorDir . '/smottt/wideimage/lib/WideImage/PaletteImage.php', |
|
155 | - 'WideImage\\TrueColorImage' => $vendorDir . '/smottt/wideimage/lib/WideImage/TrueColorImage.php', |
|
156 | - 'WideImage\\WideImage' => $vendorDir . '/smottt/wideimage/lib/WideImage/WideImage.php', |
|
157 | - 'WideImage\\vendor\\de77\\BMP' => $vendorDir . '/smottt/wideimage/lib/WideImage/vendor/de77/BMP.php', |
|
158 | - 'WideImage\\vendor\\de77\\TGA' => $vendorDir . '/smottt/wideimage/lib/WideImage/vendor/de77/TGA.php', |
|
159 | - 'Xmf\\Assert' => $vendorDir . '/xoops/xmf/src/Assert.php', |
|
160 | - 'Xmf\\Database\\Migrate' => $vendorDir . '/xoops/xmf/src/Database/Migrate.php', |
|
161 | - 'Xmf\\Database\\TableLoad' => $vendorDir . '/xoops/xmf/src/Database/TableLoad.php', |
|
162 | - 'Xmf\\Database\\Tables' => $vendorDir . '/xoops/xmf/src/Database/Tables.php', |
|
163 | - 'Xmf\\Debug' => $vendorDir . '/xoops/xmf/src/Debug.php', |
|
164 | - 'Xmf\\FilterInput' => $vendorDir . '/xoops/xmf/src/FilterInput.php', |
|
165 | - 'Xmf\\Highlighter' => $vendorDir . '/xoops/xmf/src/Highlighter.php', |
|
166 | - 'Xmf\\IPAddress' => $vendorDir . '/xoops/xmf/src/IPAddress.php', |
|
167 | - 'Xmf\\Jwt\\JsonWebToken' => $vendorDir . '/xoops/xmf/src/Jwt/JsonWebToken.php', |
|
168 | - 'Xmf\\Jwt\\KeyFactory' => $vendorDir . '/xoops/xmf/src/Jwt/KeyFactory.php', |
|
169 | - 'Xmf\\Jwt\\TokenFactory' => $vendorDir . '/xoops/xmf/src/Jwt/TokenFactory.php', |
|
170 | - 'Xmf\\Jwt\\TokenReader' => $vendorDir . '/xoops/xmf/src/Jwt/TokenReader.php', |
|
171 | - 'Xmf\\Key\\ArrayStorage' => $vendorDir . '/xoops/xmf/src/Key/ArrayStorage.php', |
|
172 | - 'Xmf\\Key\\Basic' => $vendorDir . '/xoops/xmf/src/Key/Basic.php', |
|
173 | - 'Xmf\\Key\\FileStorage' => $vendorDir . '/xoops/xmf/src/Key/FileStorage.php', |
|
174 | - 'Xmf\\Key\\KeyAbstract' => $vendorDir . '/xoops/xmf/src/Key/KeyAbstract.php', |
|
175 | - 'Xmf\\Key\\StorageInterface' => $vendorDir . '/xoops/xmf/src/Key/StorageInterface.php', |
|
176 | - 'Xmf\\Language' => $vendorDir . '/xoops/xmf/src/Language.php', |
|
177 | - 'Xmf\\Metagen' => $vendorDir . '/xoops/xmf/src/Metagen.php', |
|
178 | - 'Xmf\\Module\\Admin' => $vendorDir . '/xoops/xmf/src/Module/Admin.php', |
|
179 | - 'Xmf\\Module\\Helper' => $vendorDir . '/xoops/xmf/src/Module/Helper.php', |
|
180 | - 'Xmf\\Module\\Helper\\AbstractHelper' => $vendorDir . '/xoops/xmf/src/Module/Helper/AbstractHelper.php', |
|
181 | - 'Xmf\\Module\\Helper\\Cache' => $vendorDir . '/xoops/xmf/src/Module/Helper/Cache.php', |
|
182 | - 'Xmf\\Module\\Helper\\GenericHelper' => $vendorDir . '/xoops/xmf/src/Module/Helper/GenericHelper.php', |
|
183 | - 'Xmf\\Module\\Helper\\Permission' => $vendorDir . '/xoops/xmf/src/Module/Helper/Permission.php', |
|
184 | - 'Xmf\\Module\\Helper\\Session' => $vendorDir . '/xoops/xmf/src/Module/Helper/Session.php', |
|
185 | - 'Xmf\\Random' => $vendorDir . '/xoops/xmf/src/Random.php', |
|
186 | - 'Xmf\\Request' => $vendorDir . '/xoops/xmf/src/Request.php', |
|
187 | - 'Xmf\\StopWords' => $vendorDir . '/xoops/xmf/src/StopWords.php', |
|
188 | - 'Xmf\\Uuid' => $vendorDir . '/xoops/xmf/src/Uuid.php', |
|
189 | - 'Xmf\\Yaml' => $vendorDir . '/xoops/xmf/src/Yaml.php', |
|
9 | + 'Firebase\\JWT\\BeforeValidException' => $vendorDir.'/firebase/php-jwt/src/BeforeValidException.php', |
|
10 | + 'Firebase\\JWT\\ExpiredException' => $vendorDir.'/firebase/php-jwt/src/ExpiredException.php', |
|
11 | + 'Firebase\\JWT\\JWT' => $vendorDir.'/firebase/php-jwt/src/JWT.php', |
|
12 | + 'Firebase\\JWT\\SignatureInvalidException' => $vendorDir.'/firebase/php-jwt/src/SignatureInvalidException.php', |
|
13 | + 'Geekwright\\RegDom\\PublicSuffixList' => $vendorDir.'/geekwright/regdom/src/PublicSuffixList.php', |
|
14 | + 'Geekwright\\RegDom\\RegisteredDomain' => $vendorDir.'/geekwright/regdom/src/RegisteredDomain.php', |
|
15 | + 'Kint' => $vendorDir.'/kint-php/kint/src/Kint.php', |
|
16 | + 'Kint_Object' => $vendorDir.'/kint-php/kint/src/Object.php', |
|
17 | + 'Kint_Object_Blob' => $vendorDir.'/kint-php/kint/src/Object/Blob.php', |
|
18 | + 'Kint_Object_Closure' => $vendorDir.'/kint-php/kint/src/Object/Closure.php', |
|
19 | + 'Kint_Object_Color' => $vendorDir.'/kint-php/kint/src/Object/Color.php', |
|
20 | + 'Kint_Object_DateTime' => $vendorDir.'/kint-php/kint/src/Object/DateTime.php', |
|
21 | + 'Kint_Object_Instance' => $vendorDir.'/kint-php/kint/src/Object/Instance.php', |
|
22 | + 'Kint_Object_Method' => $vendorDir.'/kint-php/kint/src/Object/Method.php', |
|
23 | + 'Kint_Object_Nothing' => $vendorDir.'/kint-php/kint/src/Object/Nothing.php', |
|
24 | + 'Kint_Object_Parameter' => $vendorDir.'/kint-php/kint/src/Object/Parameter.php', |
|
25 | + 'Kint_Object_Representation' => $vendorDir.'/kint-php/kint/src/Object/Representation.php', |
|
26 | + 'Kint_Object_Representation_Color' => $vendorDir.'/kint-php/kint/src/Object/Representation/Color.php', |
|
27 | + 'Kint_Object_Representation_Docstring' => $vendorDir.'/kint-php/kint/src/Object/Representation/Docstring.php', |
|
28 | + 'Kint_Object_Representation_Microtime' => $vendorDir.'/kint-php/kint/src/Object/Representation/Microtime.php', |
|
29 | + 'Kint_Object_Representation_Source' => $vendorDir.'/kint-php/kint/src/Object/Representation/Source.php', |
|
30 | + 'Kint_Object_Representation_SplFileInfo' => $vendorDir.'/kint-php/kint/src/Object/Representation/SplFileInfo.php', |
|
31 | + 'Kint_Object_Resource' => $vendorDir.'/kint-php/kint/src/Object/Resource.php', |
|
32 | + 'Kint_Object_Stream' => $vendorDir.'/kint-php/kint/src/Object/Stream.php', |
|
33 | + 'Kint_Object_Throwable' => $vendorDir.'/kint-php/kint/src/Object/Throwable.php', |
|
34 | + 'Kint_Object_Trace' => $vendorDir.'/kint-php/kint/src/Object/Trace.php', |
|
35 | + 'Kint_Object_TraceFrame' => $vendorDir.'/kint-php/kint/src/Object/TraceFrame.php', |
|
36 | + 'Kint_Parser' => $vendorDir.'/kint-php/kint/src/Parser.php', |
|
37 | + 'Kint_Parser_Base64' => $vendorDir.'/kint-php/kint/src/Parser/Base64.php', |
|
38 | + 'Kint_Parser_Binary' => $vendorDir.'/kint-php/kint/src/Parser/Binary.php', |
|
39 | + 'Kint_Parser_Blacklist' => $vendorDir.'/kint-php/kint/src/Parser/Blacklist.php', |
|
40 | + 'Kint_Parser_ClassMethods' => $vendorDir.'/kint-php/kint/src/Parser/ClassMethods.php', |
|
41 | + 'Kint_Parser_ClassStatics' => $vendorDir.'/kint-php/kint/src/Parser/ClassStatics.php', |
|
42 | + 'Kint_Parser_Closure' => $vendorDir.'/kint-php/kint/src/Parser/Closure.php', |
|
43 | + 'Kint_Parser_Color' => $vendorDir.'/kint-php/kint/src/Parser/Color.php', |
|
44 | + 'Kint_Parser_DOMIterator' => $vendorDir.'/kint-php/kint/src/Parser/DOMIterator.php', |
|
45 | + 'Kint_Parser_DOMNode' => $vendorDir.'/kint-php/kint/src/Parser/DOMNode.php', |
|
46 | + 'Kint_Parser_DateTime' => $vendorDir.'/kint-php/kint/src/Parser/DateTime.php', |
|
47 | + 'Kint_Parser_FsPath' => $vendorDir.'/kint-php/kint/src/Parser/FsPath.php', |
|
48 | + 'Kint_Parser_Iterator' => $vendorDir.'/kint-php/kint/src/Parser/Iterator.php', |
|
49 | + 'Kint_Parser_Json' => $vendorDir.'/kint-php/kint/src/Parser/Json.php', |
|
50 | + 'Kint_Parser_Microtime' => $vendorDir.'/kint-php/kint/src/Parser/Microtime.php', |
|
51 | + 'Kint_Parser_Plugin' => $vendorDir.'/kint-php/kint/src/Parser/Plugin.php', |
|
52 | + 'Kint_Parser_Serialize' => $vendorDir.'/kint-php/kint/src/Parser/Serialize.php', |
|
53 | + 'Kint_Parser_SimpleXMLElement' => $vendorDir.'/kint-php/kint/src/Parser/SimpleXMLElement.php', |
|
54 | + 'Kint_Parser_SplFileInfo' => $vendorDir.'/kint-php/kint/src/Parser/SplFileInfo.php', |
|
55 | + 'Kint_Parser_SplObjectStorage' => $vendorDir.'/kint-php/kint/src/Parser/SplObjectStorage.php', |
|
56 | + 'Kint_Parser_Stream' => $vendorDir.'/kint-php/kint/src/Parser/Stream.php', |
|
57 | + 'Kint_Parser_Table' => $vendorDir.'/kint-php/kint/src/Parser/Table.php', |
|
58 | + 'Kint_Parser_Throwable' => $vendorDir.'/kint-php/kint/src/Parser/Throwable.php', |
|
59 | + 'Kint_Parser_Timestamp' => $vendorDir.'/kint-php/kint/src/Parser/Timestamp.php', |
|
60 | + 'Kint_Parser_ToString' => $vendorDir.'/kint-php/kint/src/Parser/ToString.php', |
|
61 | + 'Kint_Parser_Trace' => $vendorDir.'/kint-php/kint/src/Parser/Trace.php', |
|
62 | + 'Kint_Parser_Xml' => $vendorDir.'/kint-php/kint/src/Parser/Xml.php', |
|
63 | + 'Kint_Renderer' => $vendorDir.'/kint-php/kint/src/Renderer.php', |
|
64 | + 'Kint_Renderer_Cli' => $vendorDir.'/kint-php/kint/src/Renderer/Cli.php', |
|
65 | + 'Kint_Renderer_Plain' => $vendorDir.'/kint-php/kint/src/Renderer/Plain.php', |
|
66 | + 'Kint_Renderer_Rich' => $vendorDir.'/kint-php/kint/src/Renderer/Rich.php', |
|
67 | + 'Kint_Renderer_Rich_Binary' => $vendorDir.'/kint-php/kint/src/Renderer/Rich/Binary.php', |
|
68 | + 'Kint_Renderer_Rich_Blacklist' => $vendorDir.'/kint-php/kint/src/Renderer/Rich/Blacklist.php', |
|
69 | + 'Kint_Renderer_Rich_Callable' => $vendorDir.'/kint-php/kint/src/Renderer/Rich/Callable.php', |
|
70 | + 'Kint_Renderer_Rich_Closure' => $vendorDir.'/kint-php/kint/src/Renderer/Rich/Closure.php', |
|
71 | + 'Kint_Renderer_Rich_Color' => $vendorDir.'/kint-php/kint/src/Renderer/Rich/Color.php', |
|
72 | + 'Kint_Renderer_Rich_ColorDetails' => $vendorDir.'/kint-php/kint/src/Renderer/Rich/ColorDetails.php', |
|
73 | + 'Kint_Renderer_Rich_DepthLimit' => $vendorDir.'/kint-php/kint/src/Renderer/Rich/DepthLimit.php', |
|
74 | + 'Kint_Renderer_Rich_Docstring' => $vendorDir.'/kint-php/kint/src/Renderer/Rich/Docstring.php', |
|
75 | + 'Kint_Renderer_Rich_Microtime' => $vendorDir.'/kint-php/kint/src/Renderer/Rich/Microtime.php', |
|
76 | + 'Kint_Renderer_Rich_Nothing' => $vendorDir.'/kint-php/kint/src/Renderer/Rich/Nothing.php', |
|
77 | + 'Kint_Renderer_Rich_Plugin' => $vendorDir.'/kint-php/kint/src/Renderer/Rich/Plugin.php', |
|
78 | + 'Kint_Renderer_Rich_Recursion' => $vendorDir.'/kint-php/kint/src/Renderer/Rich/Recursion.php', |
|
79 | + 'Kint_Renderer_Rich_SimpleXMLElement' => $vendorDir.'/kint-php/kint/src/Renderer/Rich/SimpleXMLElement.php', |
|
80 | + 'Kint_Renderer_Rich_Source' => $vendorDir.'/kint-php/kint/src/Renderer/Rich/Source.php', |
|
81 | + 'Kint_Renderer_Rich_Table' => $vendorDir.'/kint-php/kint/src/Renderer/Rich/Table.php', |
|
82 | + 'Kint_Renderer_Rich_Timestamp' => $vendorDir.'/kint-php/kint/src/Renderer/Rich/Timestamp.php', |
|
83 | + 'Kint_Renderer_Rich_TraceFrame' => $vendorDir.'/kint-php/kint/src/Renderer/Rich/TraceFrame.php', |
|
84 | + 'Kint_Renderer_Text' => $vendorDir.'/kint-php/kint/src/Renderer/Text.php', |
|
85 | + 'Kint_Renderer_Text_Blacklist' => $vendorDir.'/kint-php/kint/src/Renderer/Text/Blacklist.php', |
|
86 | + 'Kint_Renderer_Text_DepthLimit' => $vendorDir.'/kint-php/kint/src/Renderer/Text/DepthLimit.php', |
|
87 | + 'Kint_Renderer_Text_Nothing' => $vendorDir.'/kint-php/kint/src/Renderer/Text/Nothing.php', |
|
88 | + 'Kint_Renderer_Text_Plugin' => $vendorDir.'/kint-php/kint/src/Renderer/Text/Plugin.php', |
|
89 | + 'Kint_Renderer_Text_Recursion' => $vendorDir.'/kint-php/kint/src/Renderer/Text/Recursion.php', |
|
90 | + 'Kint_Renderer_Text_Trace' => $vendorDir.'/kint-php/kint/src/Renderer/Text/Trace.php', |
|
91 | + 'Kint_SourceParser' => $vendorDir.'/kint-php/kint/src/SourceParser.php', |
|
92 | + 'Symfony\\Component\\Yaml\\Dumper' => $vendorDir.'/symfony/yaml/Dumper.php', |
|
93 | + 'Symfony\\Component\\Yaml\\Escaper' => $vendorDir.'/symfony/yaml/Escaper.php', |
|
94 | + 'Symfony\\Component\\Yaml\\Exception\\DumpException' => $vendorDir.'/symfony/yaml/Exception/DumpException.php', |
|
95 | + 'Symfony\\Component\\Yaml\\Exception\\ExceptionInterface' => $vendorDir.'/symfony/yaml/Exception/ExceptionInterface.php', |
|
96 | + 'Symfony\\Component\\Yaml\\Exception\\ParseException' => $vendorDir.'/symfony/yaml/Exception/ParseException.php', |
|
97 | + 'Symfony\\Component\\Yaml\\Exception\\RuntimeException' => $vendorDir.'/symfony/yaml/Exception/RuntimeException.php', |
|
98 | + 'Symfony\\Component\\Yaml\\Inline' => $vendorDir.'/symfony/yaml/Inline.php', |
|
99 | + 'Symfony\\Component\\Yaml\\Parser' => $vendorDir.'/symfony/yaml/Parser.php', |
|
100 | + 'Symfony\\Component\\Yaml\\Unescaper' => $vendorDir.'/symfony/yaml/Unescaper.php', |
|
101 | + 'Symfony\\Component\\Yaml\\Yaml' => $vendorDir.'/symfony/yaml/Yaml.php', |
|
102 | + 'Symfony\\Polyfill\\Mbstring\\Mbstring' => $vendorDir.'/symfony/polyfill-mbstring/Mbstring.php', |
|
103 | + 'Webmozart\\Assert\\Assert' => $vendorDir.'/webmozart/assert/src/Assert.php', |
|
104 | + 'WideImage\\Canvas' => $vendorDir.'/smottt/wideimage/lib/WideImage/Canvas.php', |
|
105 | + 'WideImage\\Coordinate' => $vendorDir.'/smottt/wideimage/lib/WideImage/Coordinate.php', |
|
106 | + 'WideImage\\Exception\\Exception' => $vendorDir.'/smottt/wideimage/lib/WideImage/Exception/Exception.php', |
|
107 | + 'WideImage\\Exception\\GDFunctionResultException' => $vendorDir.'/smottt/wideimage/lib/WideImage/Exception/GDFunctionResultException.php', |
|
108 | + 'WideImage\\Exception\\InvalidCanvasMethodException' => $vendorDir.'/smottt/wideimage/lib/WideImage/Exception/InvalidCanvasMethodException.php', |
|
109 | + 'WideImage\\Exception\\InvalidCoordinateException' => $vendorDir.'/smottt/wideimage/lib/WideImage/Exception/InvalidCoordinateException.php', |
|
110 | + 'WideImage\\Exception\\InvalidFontFileException' => $vendorDir.'/smottt/wideimage/lib/WideImage/Exception/InvalidFontFileException.php', |
|
111 | + 'WideImage\\Exception\\InvalidImageDimensionException' => $vendorDir.'/smottt/wideimage/lib/WideImage/Exception/InvalidImageDimensionException.php', |
|
112 | + 'WideImage\\Exception\\InvalidImageHandleException' => $vendorDir.'/smottt/wideimage/lib/WideImage/Exception/InvalidImageHandleException.php', |
|
113 | + 'WideImage\\Exception\\InvalidImageSourceException' => $vendorDir.'/smottt/wideimage/lib/WideImage/Exception/InvalidImageSourceException.php', |
|
114 | + 'WideImage\\Exception\\NoFontException' => $vendorDir.'/smottt/wideimage/lib/WideImage/Exception/NoFontException.php', |
|
115 | + 'WideImage\\Exception\\UnknownErrorWhileMappingException' => $vendorDir.'/smottt/wideimage/lib/WideImage/Exception/UnknownErrorWhileMappingException.php', |
|
116 | + 'WideImage\\Exception\\UnknownImageOperationException' => $vendorDir.'/smottt/wideimage/lib/WideImage/Exception/UnknownImageOperationException.php', |
|
117 | + 'WideImage\\Exception\\UnsupportedFormatException' => $vendorDir.'/smottt/wideimage/lib/WideImage/Exception/UnsupportedFormatException.php', |
|
118 | + 'WideImage\\Font\\GDF' => $vendorDir.'/smottt/wideimage/lib/WideImage/Font/GDF.php', |
|
119 | + 'WideImage\\Font\\PS' => $vendorDir.'/smottt/wideimage/lib/WideImage/Font/PS.php', |
|
120 | + 'WideImage\\Font\\TTF' => $vendorDir.'/smottt/wideimage/lib/WideImage/Font/TTF.php', |
|
121 | + 'WideImage\\Image' => $vendorDir.'/smottt/wideimage/lib/WideImage/Image.php', |
|
122 | + 'WideImage\\MapperFactory' => $vendorDir.'/smottt/wideimage/lib/WideImage/MapperFactory.php', |
|
123 | + 'WideImage\\Mapper\\BMP' => $vendorDir.'/smottt/wideimage/lib/WideImage/Mapper/BMP.php', |
|
124 | + 'WideImage\\Mapper\\GD' => $vendorDir.'/smottt/wideimage/lib/WideImage/Mapper/GD.php', |
|
125 | + 'WideImage\\Mapper\\GD2' => $vendorDir.'/smottt/wideimage/lib/WideImage/Mapper/GD2.php', |
|
126 | + 'WideImage\\Mapper\\GIF' => $vendorDir.'/smottt/wideimage/lib/WideImage/Mapper/GIF.php', |
|
127 | + 'WideImage\\Mapper\\JPEG' => $vendorDir.'/smottt/wideimage/lib/WideImage/Mapper/JPEG.php', |
|
128 | + 'WideImage\\Mapper\\PNG' => $vendorDir.'/smottt/wideimage/lib/WideImage/Mapper/PNG.php', |
|
129 | + 'WideImage\\Mapper\\TGA' => $vendorDir.'/smottt/wideimage/lib/WideImage/Mapper/TGA.php', |
|
130 | + 'WideImage\\Mapper\\WEBP' => $vendorDir.'/smottt/wideimage/lib/WideImage/Mapper/WEBP.php', |
|
131 | + 'WideImage\\OperationFactory' => $vendorDir.'/smottt/wideimage/lib/WideImage/OperationFactory.php', |
|
132 | + 'WideImage\\Operation\\AddNoise' => $vendorDir.'/smottt/wideimage/lib/WideImage/Operation/AddNoise.php', |
|
133 | + 'WideImage\\Operation\\ApplyConvolution' => $vendorDir.'/smottt/wideimage/lib/WideImage/Operation/ApplyConvolution.php', |
|
134 | + 'WideImage\\Operation\\ApplyFilter' => $vendorDir.'/smottt/wideimage/lib/WideImage/Operation/ApplyFilter.php', |
|
135 | + 'WideImage\\Operation\\ApplyMask' => $vendorDir.'/smottt/wideimage/lib/WideImage/Operation/ApplyMask.php', |
|
136 | + 'WideImage\\Operation\\AsGrayscale' => $vendorDir.'/smottt/wideimage/lib/WideImage/Operation/AsGrayscale.php', |
|
137 | + 'WideImage\\Operation\\AsNegative' => $vendorDir.'/smottt/wideimage/lib/WideImage/Operation/AsNegative.php', |
|
138 | + 'WideImage\\Operation\\AutoCrop' => $vendorDir.'/smottt/wideimage/lib/WideImage/Operation/AutoCrop.php', |
|
139 | + 'WideImage\\Operation\\CopyChannelsPalette' => $vendorDir.'/smottt/wideimage/lib/WideImage/Operation/CopyChannelsPalette.php', |
|
140 | + 'WideImage\\Operation\\CopyChannelsTrueColor' => $vendorDir.'/smottt/wideimage/lib/WideImage/Operation/CopyChannelsTrueColor.php', |
|
141 | + 'WideImage\\Operation\\CorrectGamma' => $vendorDir.'/smottt/wideimage/lib/WideImage/Operation/CorrectGamma.php', |
|
142 | + 'WideImage\\Operation\\Crop' => $vendorDir.'/smottt/wideimage/lib/WideImage/Operation/Crop.php', |
|
143 | + 'WideImage\\Operation\\Exception\\InvalidFitMethodException' => $vendorDir.'/smottt/wideimage/lib/WideImage/Operation/Exception/InvalidFitMethodException.php', |
|
144 | + 'WideImage\\Operation\\Exception\\InvalidResizeDimensionException' => $vendorDir.'/smottt/wideimage/lib/WideImage/Operation/Exception/InvalidResizeDimensionException.php', |
|
145 | + 'WideImage\\Operation\\Flip' => $vendorDir.'/smottt/wideimage/lib/WideImage/Operation/Flip.php', |
|
146 | + 'WideImage\\Operation\\GetMask' => $vendorDir.'/smottt/wideimage/lib/WideImage/Operation/GetMask.php', |
|
147 | + 'WideImage\\Operation\\Merge' => $vendorDir.'/smottt/wideimage/lib/WideImage/Operation/Merge.php', |
|
148 | + 'WideImage\\Operation\\Mirror' => $vendorDir.'/smottt/wideimage/lib/WideImage/Operation/Mirror.php', |
|
149 | + 'WideImage\\Operation\\Resize' => $vendorDir.'/smottt/wideimage/lib/WideImage/Operation/Resize.php', |
|
150 | + 'WideImage\\Operation\\ResizeCanvas' => $vendorDir.'/smottt/wideimage/lib/WideImage/Operation/ResizeCanvas.php', |
|
151 | + 'WideImage\\Operation\\Rotate' => $vendorDir.'/smottt/wideimage/lib/WideImage/Operation/Rotate.php', |
|
152 | + 'WideImage\\Operation\\RoundCorners' => $vendorDir.'/smottt/wideimage/lib/WideImage/Operation/RoundCorners.php', |
|
153 | + 'WideImage\\Operation\\Unsharp' => $vendorDir.'/smottt/wideimage/lib/WideImage/Operation/Unsharp.php', |
|
154 | + 'WideImage\\PaletteImage' => $vendorDir.'/smottt/wideimage/lib/WideImage/PaletteImage.php', |
|
155 | + 'WideImage\\TrueColorImage' => $vendorDir.'/smottt/wideimage/lib/WideImage/TrueColorImage.php', |
|
156 | + 'WideImage\\WideImage' => $vendorDir.'/smottt/wideimage/lib/WideImage/WideImage.php', |
|
157 | + 'WideImage\\vendor\\de77\\BMP' => $vendorDir.'/smottt/wideimage/lib/WideImage/vendor/de77/BMP.php', |
|
158 | + 'WideImage\\vendor\\de77\\TGA' => $vendorDir.'/smottt/wideimage/lib/WideImage/vendor/de77/TGA.php', |
|
159 | + 'Xmf\\Assert' => $vendorDir.'/xoops/xmf/src/Assert.php', |
|
160 | + 'Xmf\\Database\\Migrate' => $vendorDir.'/xoops/xmf/src/Database/Migrate.php', |
|
161 | + 'Xmf\\Database\\TableLoad' => $vendorDir.'/xoops/xmf/src/Database/TableLoad.php', |
|
162 | + 'Xmf\\Database\\Tables' => $vendorDir.'/xoops/xmf/src/Database/Tables.php', |
|
163 | + 'Xmf\\Debug' => $vendorDir.'/xoops/xmf/src/Debug.php', |
|
164 | + 'Xmf\\FilterInput' => $vendorDir.'/xoops/xmf/src/FilterInput.php', |
|
165 | + 'Xmf\\Highlighter' => $vendorDir.'/xoops/xmf/src/Highlighter.php', |
|
166 | + 'Xmf\\IPAddress' => $vendorDir.'/xoops/xmf/src/IPAddress.php', |
|
167 | + 'Xmf\\Jwt\\JsonWebToken' => $vendorDir.'/xoops/xmf/src/Jwt/JsonWebToken.php', |
|
168 | + 'Xmf\\Jwt\\KeyFactory' => $vendorDir.'/xoops/xmf/src/Jwt/KeyFactory.php', |
|
169 | + 'Xmf\\Jwt\\TokenFactory' => $vendorDir.'/xoops/xmf/src/Jwt/TokenFactory.php', |
|
170 | + 'Xmf\\Jwt\\TokenReader' => $vendorDir.'/xoops/xmf/src/Jwt/TokenReader.php', |
|
171 | + 'Xmf\\Key\\ArrayStorage' => $vendorDir.'/xoops/xmf/src/Key/ArrayStorage.php', |
|
172 | + 'Xmf\\Key\\Basic' => $vendorDir.'/xoops/xmf/src/Key/Basic.php', |
|
173 | + 'Xmf\\Key\\FileStorage' => $vendorDir.'/xoops/xmf/src/Key/FileStorage.php', |
|
174 | + 'Xmf\\Key\\KeyAbstract' => $vendorDir.'/xoops/xmf/src/Key/KeyAbstract.php', |
|
175 | + 'Xmf\\Key\\StorageInterface' => $vendorDir.'/xoops/xmf/src/Key/StorageInterface.php', |
|
176 | + 'Xmf\\Language' => $vendorDir.'/xoops/xmf/src/Language.php', |
|
177 | + 'Xmf\\Metagen' => $vendorDir.'/xoops/xmf/src/Metagen.php', |
|
178 | + 'Xmf\\Module\\Admin' => $vendorDir.'/xoops/xmf/src/Module/Admin.php', |
|
179 | + 'Xmf\\Module\\Helper' => $vendorDir.'/xoops/xmf/src/Module/Helper.php', |
|
180 | + 'Xmf\\Module\\Helper\\AbstractHelper' => $vendorDir.'/xoops/xmf/src/Module/Helper/AbstractHelper.php', |
|
181 | + 'Xmf\\Module\\Helper\\Cache' => $vendorDir.'/xoops/xmf/src/Module/Helper/Cache.php', |
|
182 | + 'Xmf\\Module\\Helper\\GenericHelper' => $vendorDir.'/xoops/xmf/src/Module/Helper/GenericHelper.php', |
|
183 | + 'Xmf\\Module\\Helper\\Permission' => $vendorDir.'/xoops/xmf/src/Module/Helper/Permission.php', |
|
184 | + 'Xmf\\Module\\Helper\\Session' => $vendorDir.'/xoops/xmf/src/Module/Helper/Session.php', |
|
185 | + 'Xmf\\Random' => $vendorDir.'/xoops/xmf/src/Random.php', |
|
186 | + 'Xmf\\Request' => $vendorDir.'/xoops/xmf/src/Request.php', |
|
187 | + 'Xmf\\StopWords' => $vendorDir.'/xoops/xmf/src/StopWords.php', |
|
188 | + 'Xmf\\Uuid' => $vendorDir.'/xoops/xmf/src/Uuid.php', |
|
189 | + 'Xmf\\Yaml' => $vendorDir.'/xoops/xmf/src/Yaml.php', |
|
190 | 190 | ); |
@@ -9,7 +9,7 @@ discard block |
||
9 | 9 | public static function loadClassLoader($class) |
10 | 10 | { |
11 | 11 | if ('Composer\Autoload\ClassLoader' === $class) { |
12 | - require __DIR__ . '/ClassLoader.php'; |
|
12 | + require __DIR__.'/ClassLoader.php'; |
|
13 | 13 | } |
14 | 14 | } |
15 | 15 | |
@@ -25,11 +25,11 @@ discard block |
||
25 | 25 | |
26 | 26 | $useStaticLoader = PHP_VERSION_ID >= 50600 && !defined('HHVM_VERSION') && (!function_exists('zend_loader_file_encoded') || !zend_loader_file_encoded()); |
27 | 27 | if ($useStaticLoader) { |
28 | - require_once __DIR__ . '/autoload_static.php'; |
|
28 | + require_once __DIR__.'/autoload_static.php'; |
|
29 | 29 | |
30 | 30 | call_user_func(\Composer\Autoload\ComposerStaticInitfb0e5c3e4af98ed910184391855ba473::getInitializer($loader)); |
31 | 31 | } else { |
32 | - $classMap = require __DIR__ . '/autoload_classmap.php'; |
|
32 | + $classMap = require __DIR__.'/autoload_classmap.php'; |
|
33 | 33 | if ($classMap) { |
34 | 34 | $loader->addClassMap($classMap); |
35 | 35 | } |
@@ -41,7 +41,7 @@ discard block |
||
41 | 41 | if ($useStaticLoader) { |
42 | 42 | $includeFiles = Composer\Autoload\ComposerStaticInitfb0e5c3e4af98ed910184391855ba473::$files; |
43 | 43 | } else { |
44 | - $includeFiles = require __DIR__ . '/autoload_files.php'; |
|
44 | + $includeFiles = require __DIR__.'/autoload_files.php'; |
|
45 | 45 | } |
46 | 46 | foreach ($includeFiles as $fileIdentifier => $file) { |
47 | 47 | composerRequirefb0e5c3e4af98ed910184391855ba473($fileIdentifier, $file); |
@@ -6,8 +6,8 @@ |
||
6 | 6 | $baseDir = dirname($vendorDir); |
7 | 7 | |
8 | 8 | return array( |
9 | - '0e6d7bf4a5811bfa5cf40c5ccd6fae6a' => $vendorDir . '/symfony/polyfill-mbstring/bootstrap.php', |
|
10 | - '3917c79c5052b270641b5a200963dbc2' => $vendorDir . '/kint-php/kint/init.php', |
|
11 | - '5255c38a0faeba867671b61dfda6d864' => $vendorDir . '/paragonie/random_compat/lib/random.php', |
|
12 | - 'e40631d46120a9c38ea139981f8dab26' => $vendorDir . '/ircmaxell/password-compat/lib/password.php', |
|
9 | + '0e6d7bf4a5811bfa5cf40c5ccd6fae6a' => $vendorDir.'/symfony/polyfill-mbstring/bootstrap.php', |
|
10 | + '3917c79c5052b270641b5a200963dbc2' => $vendorDir.'/kint-php/kint/init.php', |
|
11 | + '5255c38a0faeba867671b61dfda6d864' => $vendorDir.'/paragonie/random_compat/lib/random.php', |
|
12 | + 'e40631d46120a9c38ea139981f8dab26' => $vendorDir.'/ircmaxell/password-compat/lib/password.php', |
|
13 | 13 | ); |
@@ -6,261 +6,261 @@ |
||
6 | 6 | |
7 | 7 | class ComposerStaticInitfb0e5c3e4af98ed910184391855ba473 |
8 | 8 | { |
9 | - public static $files = array ( |
|
10 | - '0e6d7bf4a5811bfa5cf40c5ccd6fae6a' => __DIR__ . '/..' . '/symfony/polyfill-mbstring/bootstrap.php', |
|
11 | - '3917c79c5052b270641b5a200963dbc2' => __DIR__ . '/..' . '/kint-php/kint/init.php', |
|
12 | - '5255c38a0faeba867671b61dfda6d864' => __DIR__ . '/..' . '/paragonie/random_compat/lib/random.php', |
|
13 | - 'e40631d46120a9c38ea139981f8dab26' => __DIR__ . '/..' . '/ircmaxell/password-compat/lib/password.php', |
|
9 | + public static $files = array( |
|
10 | + '0e6d7bf4a5811bfa5cf40c5ccd6fae6a' => __DIR__.'/..'.'/symfony/polyfill-mbstring/bootstrap.php', |
|
11 | + '3917c79c5052b270641b5a200963dbc2' => __DIR__.'/..'.'/kint-php/kint/init.php', |
|
12 | + '5255c38a0faeba867671b61dfda6d864' => __DIR__.'/..'.'/paragonie/random_compat/lib/random.php', |
|
13 | + 'e40631d46120a9c38ea139981f8dab26' => __DIR__.'/..'.'/ircmaxell/password-compat/lib/password.php', |
|
14 | 14 | ); |
15 | 15 | |
16 | - public static $prefixLengthsPsr4 = array ( |
|
16 | + public static $prefixLengthsPsr4 = array( |
|
17 | 17 | 'X' => |
18 | - array ( |
|
18 | + array( |
|
19 | 19 | 'Xmf\\' => 4, |
20 | 20 | ), |
21 | 21 | 'W' => |
22 | - array ( |
|
22 | + array( |
|
23 | 23 | 'Webmozart\\Assert\\' => 17, |
24 | 24 | ), |
25 | 25 | 'S' => |
26 | - array ( |
|
26 | + array( |
|
27 | 27 | 'Symfony\\Polyfill\\Mbstring\\' => 26, |
28 | 28 | 'Symfony\\Component\\Yaml\\' => 23, |
29 | 29 | ), |
30 | 30 | 'G' => |
31 | - array ( |
|
31 | + array( |
|
32 | 32 | 'Geekwright\\RegDom\\' => 18, |
33 | 33 | ), |
34 | 34 | 'F' => |
35 | - array ( |
|
35 | + array( |
|
36 | 36 | 'Firebase\\JWT\\' => 13, |
37 | 37 | ), |
38 | 38 | ); |
39 | 39 | |
40 | - public static $prefixDirsPsr4 = array ( |
|
40 | + public static $prefixDirsPsr4 = array( |
|
41 | 41 | 'Xmf\\' => |
42 | - array ( |
|
43 | - 0 => __DIR__ . '/..' . '/xoops/xmf/src', |
|
42 | + array( |
|
43 | + 0 => __DIR__.'/..'.'/xoops/xmf/src', |
|
44 | 44 | ), |
45 | 45 | 'Webmozart\\Assert\\' => |
46 | - array ( |
|
47 | - 0 => __DIR__ . '/..' . '/webmozart/assert/src', |
|
46 | + array( |
|
47 | + 0 => __DIR__.'/..'.'/webmozart/assert/src', |
|
48 | 48 | ), |
49 | 49 | 'Symfony\\Polyfill\\Mbstring\\' => |
50 | - array ( |
|
51 | - 0 => __DIR__ . '/..' . '/symfony/polyfill-mbstring', |
|
50 | + array( |
|
51 | + 0 => __DIR__.'/..'.'/symfony/polyfill-mbstring', |
|
52 | 52 | ), |
53 | 53 | 'Symfony\\Component\\Yaml\\' => |
54 | - array ( |
|
55 | - 0 => __DIR__ . '/..' . '/symfony/yaml', |
|
54 | + array( |
|
55 | + 0 => __DIR__.'/..'.'/symfony/yaml', |
|
56 | 56 | ), |
57 | 57 | 'Geekwright\\RegDom\\' => |
58 | - array ( |
|
59 | - 0 => __DIR__ . '/..' . '/geekwright/regdom/src', |
|
58 | + array( |
|
59 | + 0 => __DIR__.'/..'.'/geekwright/regdom/src', |
|
60 | 60 | ), |
61 | 61 | 'Firebase\\JWT\\' => |
62 | - array ( |
|
63 | - 0 => __DIR__ . '/..' . '/firebase/php-jwt/src', |
|
62 | + array( |
|
63 | + 0 => __DIR__.'/..'.'/firebase/php-jwt/src', |
|
64 | 64 | ), |
65 | 65 | ); |
66 | 66 | |
67 | - public static $prefixesPsr0 = array ( |
|
67 | + public static $prefixesPsr0 = array( |
|
68 | 68 | 'W' => |
69 | - array ( |
|
69 | + array( |
|
70 | 70 | 'WideImage' => |
71 | - array ( |
|
72 | - 0 => __DIR__ . '/..' . '/smottt/wideimage/lib', |
|
71 | + array( |
|
72 | + 0 => __DIR__.'/..'.'/smottt/wideimage/lib', |
|
73 | 73 | ), |
74 | 74 | ), |
75 | 75 | ); |
76 | 76 | |
77 | - public static $classMap = array ( |
|
78 | - 'Firebase\\JWT\\BeforeValidException' => __DIR__ . '/..' . '/firebase/php-jwt/src/BeforeValidException.php', |
|
79 | - 'Firebase\\JWT\\ExpiredException' => __DIR__ . '/..' . '/firebase/php-jwt/src/ExpiredException.php', |
|
80 | - 'Firebase\\JWT\\JWT' => __DIR__ . '/..' . '/firebase/php-jwt/src/JWT.php', |
|
81 | - 'Firebase\\JWT\\SignatureInvalidException' => __DIR__ . '/..' . '/firebase/php-jwt/src/SignatureInvalidException.php', |
|
82 | - 'Geekwright\\RegDom\\PublicSuffixList' => __DIR__ . '/..' . '/geekwright/regdom/src/PublicSuffixList.php', |
|
83 | - 'Geekwright\\RegDom\\RegisteredDomain' => __DIR__ . '/..' . '/geekwright/regdom/src/RegisteredDomain.php', |
|
84 | - 'Kint' => __DIR__ . '/..' . '/kint-php/kint/src/Kint.php', |
|
85 | - 'Kint_Object' => __DIR__ . '/..' . '/kint-php/kint/src/Object.php', |
|
86 | - 'Kint_Object_Blob' => __DIR__ . '/..' . '/kint-php/kint/src/Object/Blob.php', |
|
87 | - 'Kint_Object_Closure' => __DIR__ . '/..' . '/kint-php/kint/src/Object/Closure.php', |
|
88 | - 'Kint_Object_Color' => __DIR__ . '/..' . '/kint-php/kint/src/Object/Color.php', |
|
89 | - 'Kint_Object_DateTime' => __DIR__ . '/..' . '/kint-php/kint/src/Object/DateTime.php', |
|
90 | - 'Kint_Object_Instance' => __DIR__ . '/..' . '/kint-php/kint/src/Object/Instance.php', |
|
91 | - 'Kint_Object_Method' => __DIR__ . '/..' . '/kint-php/kint/src/Object/Method.php', |
|
92 | - 'Kint_Object_Nothing' => __DIR__ . '/..' . '/kint-php/kint/src/Object/Nothing.php', |
|
93 | - 'Kint_Object_Parameter' => __DIR__ . '/..' . '/kint-php/kint/src/Object/Parameter.php', |
|
94 | - 'Kint_Object_Representation' => __DIR__ . '/..' . '/kint-php/kint/src/Object/Representation.php', |
|
95 | - 'Kint_Object_Representation_Color' => __DIR__ . '/..' . '/kint-php/kint/src/Object/Representation/Color.php', |
|
96 | - 'Kint_Object_Representation_Docstring' => __DIR__ . '/..' . '/kint-php/kint/src/Object/Representation/Docstring.php', |
|
97 | - 'Kint_Object_Representation_Microtime' => __DIR__ . '/..' . '/kint-php/kint/src/Object/Representation/Microtime.php', |
|
98 | - 'Kint_Object_Representation_Source' => __DIR__ . '/..' . '/kint-php/kint/src/Object/Representation/Source.php', |
|
99 | - 'Kint_Object_Representation_SplFileInfo' => __DIR__ . '/..' . '/kint-php/kint/src/Object/Representation/SplFileInfo.php', |
|
100 | - 'Kint_Object_Resource' => __DIR__ . '/..' . '/kint-php/kint/src/Object/Resource.php', |
|
101 | - 'Kint_Object_Stream' => __DIR__ . '/..' . '/kint-php/kint/src/Object/Stream.php', |
|
102 | - 'Kint_Object_Throwable' => __DIR__ . '/..' . '/kint-php/kint/src/Object/Throwable.php', |
|
103 | - 'Kint_Object_Trace' => __DIR__ . '/..' . '/kint-php/kint/src/Object/Trace.php', |
|
104 | - 'Kint_Object_TraceFrame' => __DIR__ . '/..' . '/kint-php/kint/src/Object/TraceFrame.php', |
|
105 | - 'Kint_Parser' => __DIR__ . '/..' . '/kint-php/kint/src/Parser.php', |
|
106 | - 'Kint_Parser_Base64' => __DIR__ . '/..' . '/kint-php/kint/src/Parser/Base64.php', |
|
107 | - 'Kint_Parser_Binary' => __DIR__ . '/..' . '/kint-php/kint/src/Parser/Binary.php', |
|
108 | - 'Kint_Parser_Blacklist' => __DIR__ . '/..' . '/kint-php/kint/src/Parser/Blacklist.php', |
|
109 | - 'Kint_Parser_ClassMethods' => __DIR__ . '/..' . '/kint-php/kint/src/Parser/ClassMethods.php', |
|
110 | - 'Kint_Parser_ClassStatics' => __DIR__ . '/..' . '/kint-php/kint/src/Parser/ClassStatics.php', |
|
111 | - 'Kint_Parser_Closure' => __DIR__ . '/..' . '/kint-php/kint/src/Parser/Closure.php', |
|
112 | - 'Kint_Parser_Color' => __DIR__ . '/..' . '/kint-php/kint/src/Parser/Color.php', |
|
113 | - 'Kint_Parser_DOMIterator' => __DIR__ . '/..' . '/kint-php/kint/src/Parser/DOMIterator.php', |
|
114 | - 'Kint_Parser_DOMNode' => __DIR__ . '/..' . '/kint-php/kint/src/Parser/DOMNode.php', |
|
115 | - 'Kint_Parser_DateTime' => __DIR__ . '/..' . '/kint-php/kint/src/Parser/DateTime.php', |
|
116 | - 'Kint_Parser_FsPath' => __DIR__ . '/..' . '/kint-php/kint/src/Parser/FsPath.php', |
|
117 | - 'Kint_Parser_Iterator' => __DIR__ . '/..' . '/kint-php/kint/src/Parser/Iterator.php', |
|
118 | - 'Kint_Parser_Json' => __DIR__ . '/..' . '/kint-php/kint/src/Parser/Json.php', |
|
119 | - 'Kint_Parser_Microtime' => __DIR__ . '/..' . '/kint-php/kint/src/Parser/Microtime.php', |
|
120 | - 'Kint_Parser_Plugin' => __DIR__ . '/..' . '/kint-php/kint/src/Parser/Plugin.php', |
|
121 | - 'Kint_Parser_Serialize' => __DIR__ . '/..' . '/kint-php/kint/src/Parser/Serialize.php', |
|
122 | - 'Kint_Parser_SimpleXMLElement' => __DIR__ . '/..' . '/kint-php/kint/src/Parser/SimpleXMLElement.php', |
|
123 | - 'Kint_Parser_SplFileInfo' => __DIR__ . '/..' . '/kint-php/kint/src/Parser/SplFileInfo.php', |
|
124 | - 'Kint_Parser_SplObjectStorage' => __DIR__ . '/..' . '/kint-php/kint/src/Parser/SplObjectStorage.php', |
|
125 | - 'Kint_Parser_Stream' => __DIR__ . '/..' . '/kint-php/kint/src/Parser/Stream.php', |
|
126 | - 'Kint_Parser_Table' => __DIR__ . '/..' . '/kint-php/kint/src/Parser/Table.php', |
|
127 | - 'Kint_Parser_Throwable' => __DIR__ . '/..' . '/kint-php/kint/src/Parser/Throwable.php', |
|
128 | - 'Kint_Parser_Timestamp' => __DIR__ . '/..' . '/kint-php/kint/src/Parser/Timestamp.php', |
|
129 | - 'Kint_Parser_ToString' => __DIR__ . '/..' . '/kint-php/kint/src/Parser/ToString.php', |
|
130 | - 'Kint_Parser_Trace' => __DIR__ . '/..' . '/kint-php/kint/src/Parser/Trace.php', |
|
131 | - 'Kint_Parser_Xml' => __DIR__ . '/..' . '/kint-php/kint/src/Parser/Xml.php', |
|
132 | - 'Kint_Renderer' => __DIR__ . '/..' . '/kint-php/kint/src/Renderer.php', |
|
133 | - 'Kint_Renderer_Cli' => __DIR__ . '/..' . '/kint-php/kint/src/Renderer/Cli.php', |
|
134 | - 'Kint_Renderer_Plain' => __DIR__ . '/..' . '/kint-php/kint/src/Renderer/Plain.php', |
|
135 | - 'Kint_Renderer_Rich' => __DIR__ . '/..' . '/kint-php/kint/src/Renderer/Rich.php', |
|
136 | - 'Kint_Renderer_Rich_Binary' => __DIR__ . '/..' . '/kint-php/kint/src/Renderer/Rich/Binary.php', |
|
137 | - 'Kint_Renderer_Rich_Blacklist' => __DIR__ . '/..' . '/kint-php/kint/src/Renderer/Rich/Blacklist.php', |
|
138 | - 'Kint_Renderer_Rich_Callable' => __DIR__ . '/..' . '/kint-php/kint/src/Renderer/Rich/Callable.php', |
|
139 | - 'Kint_Renderer_Rich_Closure' => __DIR__ . '/..' . '/kint-php/kint/src/Renderer/Rich/Closure.php', |
|
140 | - 'Kint_Renderer_Rich_Color' => __DIR__ . '/..' . '/kint-php/kint/src/Renderer/Rich/Color.php', |
|
141 | - 'Kint_Renderer_Rich_ColorDetails' => __DIR__ . '/..' . '/kint-php/kint/src/Renderer/Rich/ColorDetails.php', |
|
142 | - 'Kint_Renderer_Rich_DepthLimit' => __DIR__ . '/..' . '/kint-php/kint/src/Renderer/Rich/DepthLimit.php', |
|
143 | - 'Kint_Renderer_Rich_Docstring' => __DIR__ . '/..' . '/kint-php/kint/src/Renderer/Rich/Docstring.php', |
|
144 | - 'Kint_Renderer_Rich_Microtime' => __DIR__ . '/..' . '/kint-php/kint/src/Renderer/Rich/Microtime.php', |
|
145 | - 'Kint_Renderer_Rich_Nothing' => __DIR__ . '/..' . '/kint-php/kint/src/Renderer/Rich/Nothing.php', |
|
146 | - 'Kint_Renderer_Rich_Plugin' => __DIR__ . '/..' . '/kint-php/kint/src/Renderer/Rich/Plugin.php', |
|
147 | - 'Kint_Renderer_Rich_Recursion' => __DIR__ . '/..' . '/kint-php/kint/src/Renderer/Rich/Recursion.php', |
|
148 | - 'Kint_Renderer_Rich_SimpleXMLElement' => __DIR__ . '/..' . '/kint-php/kint/src/Renderer/Rich/SimpleXMLElement.php', |
|
149 | - 'Kint_Renderer_Rich_Source' => __DIR__ . '/..' . '/kint-php/kint/src/Renderer/Rich/Source.php', |
|
150 | - 'Kint_Renderer_Rich_Table' => __DIR__ . '/..' . '/kint-php/kint/src/Renderer/Rich/Table.php', |
|
151 | - 'Kint_Renderer_Rich_Timestamp' => __DIR__ . '/..' . '/kint-php/kint/src/Renderer/Rich/Timestamp.php', |
|
152 | - 'Kint_Renderer_Rich_TraceFrame' => __DIR__ . '/..' . '/kint-php/kint/src/Renderer/Rich/TraceFrame.php', |
|
153 | - 'Kint_Renderer_Text' => __DIR__ . '/..' . '/kint-php/kint/src/Renderer/Text.php', |
|
154 | - 'Kint_Renderer_Text_Blacklist' => __DIR__ . '/..' . '/kint-php/kint/src/Renderer/Text/Blacklist.php', |
|
155 | - 'Kint_Renderer_Text_DepthLimit' => __DIR__ . '/..' . '/kint-php/kint/src/Renderer/Text/DepthLimit.php', |
|
156 | - 'Kint_Renderer_Text_Nothing' => __DIR__ . '/..' . '/kint-php/kint/src/Renderer/Text/Nothing.php', |
|
157 | - 'Kint_Renderer_Text_Plugin' => __DIR__ . '/..' . '/kint-php/kint/src/Renderer/Text/Plugin.php', |
|
158 | - 'Kint_Renderer_Text_Recursion' => __DIR__ . '/..' . '/kint-php/kint/src/Renderer/Text/Recursion.php', |
|
159 | - 'Kint_Renderer_Text_Trace' => __DIR__ . '/..' . '/kint-php/kint/src/Renderer/Text/Trace.php', |
|
160 | - 'Kint_SourceParser' => __DIR__ . '/..' . '/kint-php/kint/src/SourceParser.php', |
|
161 | - 'Symfony\\Component\\Yaml\\Dumper' => __DIR__ . '/..' . '/symfony/yaml/Dumper.php', |
|
162 | - 'Symfony\\Component\\Yaml\\Escaper' => __DIR__ . '/..' . '/symfony/yaml/Escaper.php', |
|
163 | - 'Symfony\\Component\\Yaml\\Exception\\DumpException' => __DIR__ . '/..' . '/symfony/yaml/Exception/DumpException.php', |
|
164 | - 'Symfony\\Component\\Yaml\\Exception\\ExceptionInterface' => __DIR__ . '/..' . '/symfony/yaml/Exception/ExceptionInterface.php', |
|
165 | - 'Symfony\\Component\\Yaml\\Exception\\ParseException' => __DIR__ . '/..' . '/symfony/yaml/Exception/ParseException.php', |
|
166 | - 'Symfony\\Component\\Yaml\\Exception\\RuntimeException' => __DIR__ . '/..' . '/symfony/yaml/Exception/RuntimeException.php', |
|
167 | - 'Symfony\\Component\\Yaml\\Inline' => __DIR__ . '/..' . '/symfony/yaml/Inline.php', |
|
168 | - 'Symfony\\Component\\Yaml\\Parser' => __DIR__ . '/..' . '/symfony/yaml/Parser.php', |
|
169 | - 'Symfony\\Component\\Yaml\\Unescaper' => __DIR__ . '/..' . '/symfony/yaml/Unescaper.php', |
|
170 | - 'Symfony\\Component\\Yaml\\Yaml' => __DIR__ . '/..' . '/symfony/yaml/Yaml.php', |
|
171 | - 'Symfony\\Polyfill\\Mbstring\\Mbstring' => __DIR__ . '/..' . '/symfony/polyfill-mbstring/Mbstring.php', |
|
172 | - 'Webmozart\\Assert\\Assert' => __DIR__ . '/..' . '/webmozart/assert/src/Assert.php', |
|
173 | - 'WideImage\\Canvas' => __DIR__ . '/..' . '/smottt/wideimage/lib/WideImage/Canvas.php', |
|
174 | - 'WideImage\\Coordinate' => __DIR__ . '/..' . '/smottt/wideimage/lib/WideImage/Coordinate.php', |
|
175 | - 'WideImage\\Exception\\Exception' => __DIR__ . '/..' . '/smottt/wideimage/lib/WideImage/Exception/Exception.php', |
|
176 | - 'WideImage\\Exception\\GDFunctionResultException' => __DIR__ . '/..' . '/smottt/wideimage/lib/WideImage/Exception/GDFunctionResultException.php', |
|
177 | - 'WideImage\\Exception\\InvalidCanvasMethodException' => __DIR__ . '/..' . '/smottt/wideimage/lib/WideImage/Exception/InvalidCanvasMethodException.php', |
|
178 | - 'WideImage\\Exception\\InvalidCoordinateException' => __DIR__ . '/..' . '/smottt/wideimage/lib/WideImage/Exception/InvalidCoordinateException.php', |
|
179 | - 'WideImage\\Exception\\InvalidFontFileException' => __DIR__ . '/..' . '/smottt/wideimage/lib/WideImage/Exception/InvalidFontFileException.php', |
|
180 | - 'WideImage\\Exception\\InvalidImageDimensionException' => __DIR__ . '/..' . '/smottt/wideimage/lib/WideImage/Exception/InvalidImageDimensionException.php', |
|
181 | - 'WideImage\\Exception\\InvalidImageHandleException' => __DIR__ . '/..' . '/smottt/wideimage/lib/WideImage/Exception/InvalidImageHandleException.php', |
|
182 | - 'WideImage\\Exception\\InvalidImageSourceException' => __DIR__ . '/..' . '/smottt/wideimage/lib/WideImage/Exception/InvalidImageSourceException.php', |
|
183 | - 'WideImage\\Exception\\NoFontException' => __DIR__ . '/..' . '/smottt/wideimage/lib/WideImage/Exception/NoFontException.php', |
|
184 | - 'WideImage\\Exception\\UnknownErrorWhileMappingException' => __DIR__ . '/..' . '/smottt/wideimage/lib/WideImage/Exception/UnknownErrorWhileMappingException.php', |
|
185 | - 'WideImage\\Exception\\UnknownImageOperationException' => __DIR__ . '/..' . '/smottt/wideimage/lib/WideImage/Exception/UnknownImageOperationException.php', |
|
186 | - 'WideImage\\Exception\\UnsupportedFormatException' => __DIR__ . '/..' . '/smottt/wideimage/lib/WideImage/Exception/UnsupportedFormatException.php', |
|
187 | - 'WideImage\\Font\\GDF' => __DIR__ . '/..' . '/smottt/wideimage/lib/WideImage/Font/GDF.php', |
|
188 | - 'WideImage\\Font\\PS' => __DIR__ . '/..' . '/smottt/wideimage/lib/WideImage/Font/PS.php', |
|
189 | - 'WideImage\\Font\\TTF' => __DIR__ . '/..' . '/smottt/wideimage/lib/WideImage/Font/TTF.php', |
|
190 | - 'WideImage\\Image' => __DIR__ . '/..' . '/smottt/wideimage/lib/WideImage/Image.php', |
|
191 | - 'WideImage\\MapperFactory' => __DIR__ . '/..' . '/smottt/wideimage/lib/WideImage/MapperFactory.php', |
|
192 | - 'WideImage\\Mapper\\BMP' => __DIR__ . '/..' . '/smottt/wideimage/lib/WideImage/Mapper/BMP.php', |
|
193 | - 'WideImage\\Mapper\\GD' => __DIR__ . '/..' . '/smottt/wideimage/lib/WideImage/Mapper/GD.php', |
|
194 | - 'WideImage\\Mapper\\GD2' => __DIR__ . '/..' . '/smottt/wideimage/lib/WideImage/Mapper/GD2.php', |
|
195 | - 'WideImage\\Mapper\\GIF' => __DIR__ . '/..' . '/smottt/wideimage/lib/WideImage/Mapper/GIF.php', |
|
196 | - 'WideImage\\Mapper\\JPEG' => __DIR__ . '/..' . '/smottt/wideimage/lib/WideImage/Mapper/JPEG.php', |
|
197 | - 'WideImage\\Mapper\\PNG' => __DIR__ . '/..' . '/smottt/wideimage/lib/WideImage/Mapper/PNG.php', |
|
198 | - 'WideImage\\Mapper\\TGA' => __DIR__ . '/..' . '/smottt/wideimage/lib/WideImage/Mapper/TGA.php', |
|
199 | - 'WideImage\\Mapper\\WEBP' => __DIR__ . '/..' . '/smottt/wideimage/lib/WideImage/Mapper/WEBP.php', |
|
200 | - 'WideImage\\OperationFactory' => __DIR__ . '/..' . '/smottt/wideimage/lib/WideImage/OperationFactory.php', |
|
201 | - 'WideImage\\Operation\\AddNoise' => __DIR__ . '/..' . '/smottt/wideimage/lib/WideImage/Operation/AddNoise.php', |
|
202 | - 'WideImage\\Operation\\ApplyConvolution' => __DIR__ . '/..' . '/smottt/wideimage/lib/WideImage/Operation/ApplyConvolution.php', |
|
203 | - 'WideImage\\Operation\\ApplyFilter' => __DIR__ . '/..' . '/smottt/wideimage/lib/WideImage/Operation/ApplyFilter.php', |
|
204 | - 'WideImage\\Operation\\ApplyMask' => __DIR__ . '/..' . '/smottt/wideimage/lib/WideImage/Operation/ApplyMask.php', |
|
205 | - 'WideImage\\Operation\\AsGrayscale' => __DIR__ . '/..' . '/smottt/wideimage/lib/WideImage/Operation/AsGrayscale.php', |
|
206 | - 'WideImage\\Operation\\AsNegative' => __DIR__ . '/..' . '/smottt/wideimage/lib/WideImage/Operation/AsNegative.php', |
|
207 | - 'WideImage\\Operation\\AutoCrop' => __DIR__ . '/..' . '/smottt/wideimage/lib/WideImage/Operation/AutoCrop.php', |
|
208 | - 'WideImage\\Operation\\CopyChannelsPalette' => __DIR__ . '/..' . '/smottt/wideimage/lib/WideImage/Operation/CopyChannelsPalette.php', |
|
209 | - 'WideImage\\Operation\\CopyChannelsTrueColor' => __DIR__ . '/..' . '/smottt/wideimage/lib/WideImage/Operation/CopyChannelsTrueColor.php', |
|
210 | - 'WideImage\\Operation\\CorrectGamma' => __DIR__ . '/..' . '/smottt/wideimage/lib/WideImage/Operation/CorrectGamma.php', |
|
211 | - 'WideImage\\Operation\\Crop' => __DIR__ . '/..' . '/smottt/wideimage/lib/WideImage/Operation/Crop.php', |
|
212 | - 'WideImage\\Operation\\Exception\\InvalidFitMethodException' => __DIR__ . '/..' . '/smottt/wideimage/lib/WideImage/Operation/Exception/InvalidFitMethodException.php', |
|
213 | - 'WideImage\\Operation\\Exception\\InvalidResizeDimensionException' => __DIR__ . '/..' . '/smottt/wideimage/lib/WideImage/Operation/Exception/InvalidResizeDimensionException.php', |
|
214 | - 'WideImage\\Operation\\Flip' => __DIR__ . '/..' . '/smottt/wideimage/lib/WideImage/Operation/Flip.php', |
|
215 | - 'WideImage\\Operation\\GetMask' => __DIR__ . '/..' . '/smottt/wideimage/lib/WideImage/Operation/GetMask.php', |
|
216 | - 'WideImage\\Operation\\Merge' => __DIR__ . '/..' . '/smottt/wideimage/lib/WideImage/Operation/Merge.php', |
|
217 | - 'WideImage\\Operation\\Mirror' => __DIR__ . '/..' . '/smottt/wideimage/lib/WideImage/Operation/Mirror.php', |
|
218 | - 'WideImage\\Operation\\Resize' => __DIR__ . '/..' . '/smottt/wideimage/lib/WideImage/Operation/Resize.php', |
|
219 | - 'WideImage\\Operation\\ResizeCanvas' => __DIR__ . '/..' . '/smottt/wideimage/lib/WideImage/Operation/ResizeCanvas.php', |
|
220 | - 'WideImage\\Operation\\Rotate' => __DIR__ . '/..' . '/smottt/wideimage/lib/WideImage/Operation/Rotate.php', |
|
221 | - 'WideImage\\Operation\\RoundCorners' => __DIR__ . '/..' . '/smottt/wideimage/lib/WideImage/Operation/RoundCorners.php', |
|
222 | - 'WideImage\\Operation\\Unsharp' => __DIR__ . '/..' . '/smottt/wideimage/lib/WideImage/Operation/Unsharp.php', |
|
223 | - 'WideImage\\PaletteImage' => __DIR__ . '/..' . '/smottt/wideimage/lib/WideImage/PaletteImage.php', |
|
224 | - 'WideImage\\TrueColorImage' => __DIR__ . '/..' . '/smottt/wideimage/lib/WideImage/TrueColorImage.php', |
|
225 | - 'WideImage\\WideImage' => __DIR__ . '/..' . '/smottt/wideimage/lib/WideImage/WideImage.php', |
|
226 | - 'WideImage\\vendor\\de77\\BMP' => __DIR__ . '/..' . '/smottt/wideimage/lib/WideImage/vendor/de77/BMP.php', |
|
227 | - 'WideImage\\vendor\\de77\\TGA' => __DIR__ . '/..' . '/smottt/wideimage/lib/WideImage/vendor/de77/TGA.php', |
|
228 | - 'Xmf\\Assert' => __DIR__ . '/..' . '/xoops/xmf/src/Assert.php', |
|
229 | - 'Xmf\\Database\\Migrate' => __DIR__ . '/..' . '/xoops/xmf/src/Database/Migrate.php', |
|
230 | - 'Xmf\\Database\\TableLoad' => __DIR__ . '/..' . '/xoops/xmf/src/Database/TableLoad.php', |
|
231 | - 'Xmf\\Database\\Tables' => __DIR__ . '/..' . '/xoops/xmf/src/Database/Tables.php', |
|
232 | - 'Xmf\\Debug' => __DIR__ . '/..' . '/xoops/xmf/src/Debug.php', |
|
233 | - 'Xmf\\FilterInput' => __DIR__ . '/..' . '/xoops/xmf/src/FilterInput.php', |
|
234 | - 'Xmf\\Highlighter' => __DIR__ . '/..' . '/xoops/xmf/src/Highlighter.php', |
|
235 | - 'Xmf\\IPAddress' => __DIR__ . '/..' . '/xoops/xmf/src/IPAddress.php', |
|
236 | - 'Xmf\\Jwt\\JsonWebToken' => __DIR__ . '/..' . '/xoops/xmf/src/Jwt/JsonWebToken.php', |
|
237 | - 'Xmf\\Jwt\\KeyFactory' => __DIR__ . '/..' . '/xoops/xmf/src/Jwt/KeyFactory.php', |
|
238 | - 'Xmf\\Jwt\\TokenFactory' => __DIR__ . '/..' . '/xoops/xmf/src/Jwt/TokenFactory.php', |
|
239 | - 'Xmf\\Jwt\\TokenReader' => __DIR__ . '/..' . '/xoops/xmf/src/Jwt/TokenReader.php', |
|
240 | - 'Xmf\\Key\\ArrayStorage' => __DIR__ . '/..' . '/xoops/xmf/src/Key/ArrayStorage.php', |
|
241 | - 'Xmf\\Key\\Basic' => __DIR__ . '/..' . '/xoops/xmf/src/Key/Basic.php', |
|
242 | - 'Xmf\\Key\\FileStorage' => __DIR__ . '/..' . '/xoops/xmf/src/Key/FileStorage.php', |
|
243 | - 'Xmf\\Key\\KeyAbstract' => __DIR__ . '/..' . '/xoops/xmf/src/Key/KeyAbstract.php', |
|
244 | - 'Xmf\\Key\\StorageInterface' => __DIR__ . '/..' . '/xoops/xmf/src/Key/StorageInterface.php', |
|
245 | - 'Xmf\\Language' => __DIR__ . '/..' . '/xoops/xmf/src/Language.php', |
|
246 | - 'Xmf\\Metagen' => __DIR__ . '/..' . '/xoops/xmf/src/Metagen.php', |
|
247 | - 'Xmf\\Module\\Admin' => __DIR__ . '/..' . '/xoops/xmf/src/Module/Admin.php', |
|
248 | - 'Xmf\\Module\\Helper' => __DIR__ . '/..' . '/xoops/xmf/src/Module/Helper.php', |
|
249 | - 'Xmf\\Module\\Helper\\AbstractHelper' => __DIR__ . '/..' . '/xoops/xmf/src/Module/Helper/AbstractHelper.php', |
|
250 | - 'Xmf\\Module\\Helper\\Cache' => __DIR__ . '/..' . '/xoops/xmf/src/Module/Helper/Cache.php', |
|
251 | - 'Xmf\\Module\\Helper\\GenericHelper' => __DIR__ . '/..' . '/xoops/xmf/src/Module/Helper/GenericHelper.php', |
|
252 | - 'Xmf\\Module\\Helper\\Permission' => __DIR__ . '/..' . '/xoops/xmf/src/Module/Helper/Permission.php', |
|
253 | - 'Xmf\\Module\\Helper\\Session' => __DIR__ . '/..' . '/xoops/xmf/src/Module/Helper/Session.php', |
|
254 | - 'Xmf\\Random' => __DIR__ . '/..' . '/xoops/xmf/src/Random.php', |
|
255 | - 'Xmf\\Request' => __DIR__ . '/..' . '/xoops/xmf/src/Request.php', |
|
256 | - 'Xmf\\StopWords' => __DIR__ . '/..' . '/xoops/xmf/src/StopWords.php', |
|
257 | - 'Xmf\\Uuid' => __DIR__ . '/..' . '/xoops/xmf/src/Uuid.php', |
|
258 | - 'Xmf\\Yaml' => __DIR__ . '/..' . '/xoops/xmf/src/Yaml.php', |
|
77 | + public static $classMap = array( |
|
78 | + 'Firebase\\JWT\\BeforeValidException' => __DIR__.'/..'.'/firebase/php-jwt/src/BeforeValidException.php', |
|
79 | + 'Firebase\\JWT\\ExpiredException' => __DIR__.'/..'.'/firebase/php-jwt/src/ExpiredException.php', |
|
80 | + 'Firebase\\JWT\\JWT' => __DIR__.'/..'.'/firebase/php-jwt/src/JWT.php', |
|
81 | + 'Firebase\\JWT\\SignatureInvalidException' => __DIR__.'/..'.'/firebase/php-jwt/src/SignatureInvalidException.php', |
|
82 | + 'Geekwright\\RegDom\\PublicSuffixList' => __DIR__.'/..'.'/geekwright/regdom/src/PublicSuffixList.php', |
|
83 | + 'Geekwright\\RegDom\\RegisteredDomain' => __DIR__.'/..'.'/geekwright/regdom/src/RegisteredDomain.php', |
|
84 | + 'Kint' => __DIR__.'/..'.'/kint-php/kint/src/Kint.php', |
|
85 | + 'Kint_Object' => __DIR__.'/..'.'/kint-php/kint/src/Object.php', |
|
86 | + 'Kint_Object_Blob' => __DIR__.'/..'.'/kint-php/kint/src/Object/Blob.php', |
|
87 | + 'Kint_Object_Closure' => __DIR__.'/..'.'/kint-php/kint/src/Object/Closure.php', |
|
88 | + 'Kint_Object_Color' => __DIR__.'/..'.'/kint-php/kint/src/Object/Color.php', |
|
89 | + 'Kint_Object_DateTime' => __DIR__.'/..'.'/kint-php/kint/src/Object/DateTime.php', |
|
90 | + 'Kint_Object_Instance' => __DIR__.'/..'.'/kint-php/kint/src/Object/Instance.php', |
|
91 | + 'Kint_Object_Method' => __DIR__.'/..'.'/kint-php/kint/src/Object/Method.php', |
|
92 | + 'Kint_Object_Nothing' => __DIR__.'/..'.'/kint-php/kint/src/Object/Nothing.php', |
|
93 | + 'Kint_Object_Parameter' => __DIR__.'/..'.'/kint-php/kint/src/Object/Parameter.php', |
|
94 | + 'Kint_Object_Representation' => __DIR__.'/..'.'/kint-php/kint/src/Object/Representation.php', |
|
95 | + 'Kint_Object_Representation_Color' => __DIR__.'/..'.'/kint-php/kint/src/Object/Representation/Color.php', |
|
96 | + 'Kint_Object_Representation_Docstring' => __DIR__.'/..'.'/kint-php/kint/src/Object/Representation/Docstring.php', |
|
97 | + 'Kint_Object_Representation_Microtime' => __DIR__.'/..'.'/kint-php/kint/src/Object/Representation/Microtime.php', |
|
98 | + 'Kint_Object_Representation_Source' => __DIR__.'/..'.'/kint-php/kint/src/Object/Representation/Source.php', |
|
99 | + 'Kint_Object_Representation_SplFileInfo' => __DIR__.'/..'.'/kint-php/kint/src/Object/Representation/SplFileInfo.php', |
|
100 | + 'Kint_Object_Resource' => __DIR__.'/..'.'/kint-php/kint/src/Object/Resource.php', |
|
101 | + 'Kint_Object_Stream' => __DIR__.'/..'.'/kint-php/kint/src/Object/Stream.php', |
|
102 | + 'Kint_Object_Throwable' => __DIR__.'/..'.'/kint-php/kint/src/Object/Throwable.php', |
|
103 | + 'Kint_Object_Trace' => __DIR__.'/..'.'/kint-php/kint/src/Object/Trace.php', |
|
104 | + 'Kint_Object_TraceFrame' => __DIR__.'/..'.'/kint-php/kint/src/Object/TraceFrame.php', |
|
105 | + 'Kint_Parser' => __DIR__.'/..'.'/kint-php/kint/src/Parser.php', |
|
106 | + 'Kint_Parser_Base64' => __DIR__.'/..'.'/kint-php/kint/src/Parser/Base64.php', |
|
107 | + 'Kint_Parser_Binary' => __DIR__.'/..'.'/kint-php/kint/src/Parser/Binary.php', |
|
108 | + 'Kint_Parser_Blacklist' => __DIR__.'/..'.'/kint-php/kint/src/Parser/Blacklist.php', |
|
109 | + 'Kint_Parser_ClassMethods' => __DIR__.'/..'.'/kint-php/kint/src/Parser/ClassMethods.php', |
|
110 | + 'Kint_Parser_ClassStatics' => __DIR__.'/..'.'/kint-php/kint/src/Parser/ClassStatics.php', |
|
111 | + 'Kint_Parser_Closure' => __DIR__.'/..'.'/kint-php/kint/src/Parser/Closure.php', |
|
112 | + 'Kint_Parser_Color' => __DIR__.'/..'.'/kint-php/kint/src/Parser/Color.php', |
|
113 | + 'Kint_Parser_DOMIterator' => __DIR__.'/..'.'/kint-php/kint/src/Parser/DOMIterator.php', |
|
114 | + 'Kint_Parser_DOMNode' => __DIR__.'/..'.'/kint-php/kint/src/Parser/DOMNode.php', |
|
115 | + 'Kint_Parser_DateTime' => __DIR__.'/..'.'/kint-php/kint/src/Parser/DateTime.php', |
|
116 | + 'Kint_Parser_FsPath' => __DIR__.'/..'.'/kint-php/kint/src/Parser/FsPath.php', |
|
117 | + 'Kint_Parser_Iterator' => __DIR__.'/..'.'/kint-php/kint/src/Parser/Iterator.php', |
|
118 | + 'Kint_Parser_Json' => __DIR__.'/..'.'/kint-php/kint/src/Parser/Json.php', |
|
119 | + 'Kint_Parser_Microtime' => __DIR__.'/..'.'/kint-php/kint/src/Parser/Microtime.php', |
|
120 | + 'Kint_Parser_Plugin' => __DIR__.'/..'.'/kint-php/kint/src/Parser/Plugin.php', |
|
121 | + 'Kint_Parser_Serialize' => __DIR__.'/..'.'/kint-php/kint/src/Parser/Serialize.php', |
|
122 | + 'Kint_Parser_SimpleXMLElement' => __DIR__.'/..'.'/kint-php/kint/src/Parser/SimpleXMLElement.php', |
|
123 | + 'Kint_Parser_SplFileInfo' => __DIR__.'/..'.'/kint-php/kint/src/Parser/SplFileInfo.php', |
|
124 | + 'Kint_Parser_SplObjectStorage' => __DIR__.'/..'.'/kint-php/kint/src/Parser/SplObjectStorage.php', |
|
125 | + 'Kint_Parser_Stream' => __DIR__.'/..'.'/kint-php/kint/src/Parser/Stream.php', |
|
126 | + 'Kint_Parser_Table' => __DIR__.'/..'.'/kint-php/kint/src/Parser/Table.php', |
|
127 | + 'Kint_Parser_Throwable' => __DIR__.'/..'.'/kint-php/kint/src/Parser/Throwable.php', |
|
128 | + 'Kint_Parser_Timestamp' => __DIR__.'/..'.'/kint-php/kint/src/Parser/Timestamp.php', |
|
129 | + 'Kint_Parser_ToString' => __DIR__.'/..'.'/kint-php/kint/src/Parser/ToString.php', |
|
130 | + 'Kint_Parser_Trace' => __DIR__.'/..'.'/kint-php/kint/src/Parser/Trace.php', |
|
131 | + 'Kint_Parser_Xml' => __DIR__.'/..'.'/kint-php/kint/src/Parser/Xml.php', |
|
132 | + 'Kint_Renderer' => __DIR__.'/..'.'/kint-php/kint/src/Renderer.php', |
|
133 | + 'Kint_Renderer_Cli' => __DIR__.'/..'.'/kint-php/kint/src/Renderer/Cli.php', |
|
134 | + 'Kint_Renderer_Plain' => __DIR__.'/..'.'/kint-php/kint/src/Renderer/Plain.php', |
|
135 | + 'Kint_Renderer_Rich' => __DIR__.'/..'.'/kint-php/kint/src/Renderer/Rich.php', |
|
136 | + 'Kint_Renderer_Rich_Binary' => __DIR__.'/..'.'/kint-php/kint/src/Renderer/Rich/Binary.php', |
|
137 | + 'Kint_Renderer_Rich_Blacklist' => __DIR__.'/..'.'/kint-php/kint/src/Renderer/Rich/Blacklist.php', |
|
138 | + 'Kint_Renderer_Rich_Callable' => __DIR__.'/..'.'/kint-php/kint/src/Renderer/Rich/Callable.php', |
|
139 | + 'Kint_Renderer_Rich_Closure' => __DIR__.'/..'.'/kint-php/kint/src/Renderer/Rich/Closure.php', |
|
140 | + 'Kint_Renderer_Rich_Color' => __DIR__.'/..'.'/kint-php/kint/src/Renderer/Rich/Color.php', |
|
141 | + 'Kint_Renderer_Rich_ColorDetails' => __DIR__.'/..'.'/kint-php/kint/src/Renderer/Rich/ColorDetails.php', |
|
142 | + 'Kint_Renderer_Rich_DepthLimit' => __DIR__.'/..'.'/kint-php/kint/src/Renderer/Rich/DepthLimit.php', |
|
143 | + 'Kint_Renderer_Rich_Docstring' => __DIR__.'/..'.'/kint-php/kint/src/Renderer/Rich/Docstring.php', |
|
144 | + 'Kint_Renderer_Rich_Microtime' => __DIR__.'/..'.'/kint-php/kint/src/Renderer/Rich/Microtime.php', |
|
145 | + 'Kint_Renderer_Rich_Nothing' => __DIR__.'/..'.'/kint-php/kint/src/Renderer/Rich/Nothing.php', |
|
146 | + 'Kint_Renderer_Rich_Plugin' => __DIR__.'/..'.'/kint-php/kint/src/Renderer/Rich/Plugin.php', |
|
147 | + 'Kint_Renderer_Rich_Recursion' => __DIR__.'/..'.'/kint-php/kint/src/Renderer/Rich/Recursion.php', |
|
148 | + 'Kint_Renderer_Rich_SimpleXMLElement' => __DIR__.'/..'.'/kint-php/kint/src/Renderer/Rich/SimpleXMLElement.php', |
|
149 | + 'Kint_Renderer_Rich_Source' => __DIR__.'/..'.'/kint-php/kint/src/Renderer/Rich/Source.php', |
|
150 | + 'Kint_Renderer_Rich_Table' => __DIR__.'/..'.'/kint-php/kint/src/Renderer/Rich/Table.php', |
|
151 | + 'Kint_Renderer_Rich_Timestamp' => __DIR__.'/..'.'/kint-php/kint/src/Renderer/Rich/Timestamp.php', |
|
152 | + 'Kint_Renderer_Rich_TraceFrame' => __DIR__.'/..'.'/kint-php/kint/src/Renderer/Rich/TraceFrame.php', |
|
153 | + 'Kint_Renderer_Text' => __DIR__.'/..'.'/kint-php/kint/src/Renderer/Text.php', |
|
154 | + 'Kint_Renderer_Text_Blacklist' => __DIR__.'/..'.'/kint-php/kint/src/Renderer/Text/Blacklist.php', |
|
155 | + 'Kint_Renderer_Text_DepthLimit' => __DIR__.'/..'.'/kint-php/kint/src/Renderer/Text/DepthLimit.php', |
|
156 | + 'Kint_Renderer_Text_Nothing' => __DIR__.'/..'.'/kint-php/kint/src/Renderer/Text/Nothing.php', |
|
157 | + 'Kint_Renderer_Text_Plugin' => __DIR__.'/..'.'/kint-php/kint/src/Renderer/Text/Plugin.php', |
|
158 | + 'Kint_Renderer_Text_Recursion' => __DIR__.'/..'.'/kint-php/kint/src/Renderer/Text/Recursion.php', |
|
159 | + 'Kint_Renderer_Text_Trace' => __DIR__.'/..'.'/kint-php/kint/src/Renderer/Text/Trace.php', |
|
160 | + 'Kint_SourceParser' => __DIR__.'/..'.'/kint-php/kint/src/SourceParser.php', |
|
161 | + 'Symfony\\Component\\Yaml\\Dumper' => __DIR__.'/..'.'/symfony/yaml/Dumper.php', |
|
162 | + 'Symfony\\Component\\Yaml\\Escaper' => __DIR__.'/..'.'/symfony/yaml/Escaper.php', |
|
163 | + 'Symfony\\Component\\Yaml\\Exception\\DumpException' => __DIR__.'/..'.'/symfony/yaml/Exception/DumpException.php', |
|
164 | + 'Symfony\\Component\\Yaml\\Exception\\ExceptionInterface' => __DIR__.'/..'.'/symfony/yaml/Exception/ExceptionInterface.php', |
|
165 | + 'Symfony\\Component\\Yaml\\Exception\\ParseException' => __DIR__.'/..'.'/symfony/yaml/Exception/ParseException.php', |
|
166 | + 'Symfony\\Component\\Yaml\\Exception\\RuntimeException' => __DIR__.'/..'.'/symfony/yaml/Exception/RuntimeException.php', |
|
167 | + 'Symfony\\Component\\Yaml\\Inline' => __DIR__.'/..'.'/symfony/yaml/Inline.php', |
|
168 | + 'Symfony\\Component\\Yaml\\Parser' => __DIR__.'/..'.'/symfony/yaml/Parser.php', |
|
169 | + 'Symfony\\Component\\Yaml\\Unescaper' => __DIR__.'/..'.'/symfony/yaml/Unescaper.php', |
|
170 | + 'Symfony\\Component\\Yaml\\Yaml' => __DIR__.'/..'.'/symfony/yaml/Yaml.php', |
|
171 | + 'Symfony\\Polyfill\\Mbstring\\Mbstring' => __DIR__.'/..'.'/symfony/polyfill-mbstring/Mbstring.php', |
|
172 | + 'Webmozart\\Assert\\Assert' => __DIR__.'/..'.'/webmozart/assert/src/Assert.php', |
|
173 | + 'WideImage\\Canvas' => __DIR__.'/..'.'/smottt/wideimage/lib/WideImage/Canvas.php', |
|
174 | + 'WideImage\\Coordinate' => __DIR__.'/..'.'/smottt/wideimage/lib/WideImage/Coordinate.php', |
|
175 | + 'WideImage\\Exception\\Exception' => __DIR__.'/..'.'/smottt/wideimage/lib/WideImage/Exception/Exception.php', |
|
176 | + 'WideImage\\Exception\\GDFunctionResultException' => __DIR__.'/..'.'/smottt/wideimage/lib/WideImage/Exception/GDFunctionResultException.php', |
|
177 | + 'WideImage\\Exception\\InvalidCanvasMethodException' => __DIR__.'/..'.'/smottt/wideimage/lib/WideImage/Exception/InvalidCanvasMethodException.php', |
|
178 | + 'WideImage\\Exception\\InvalidCoordinateException' => __DIR__.'/..'.'/smottt/wideimage/lib/WideImage/Exception/InvalidCoordinateException.php', |
|
179 | + 'WideImage\\Exception\\InvalidFontFileException' => __DIR__.'/..'.'/smottt/wideimage/lib/WideImage/Exception/InvalidFontFileException.php', |
|
180 | + 'WideImage\\Exception\\InvalidImageDimensionException' => __DIR__.'/..'.'/smottt/wideimage/lib/WideImage/Exception/InvalidImageDimensionException.php', |
|
181 | + 'WideImage\\Exception\\InvalidImageHandleException' => __DIR__.'/..'.'/smottt/wideimage/lib/WideImage/Exception/InvalidImageHandleException.php', |
|
182 | + 'WideImage\\Exception\\InvalidImageSourceException' => __DIR__.'/..'.'/smottt/wideimage/lib/WideImage/Exception/InvalidImageSourceException.php', |
|
183 | + 'WideImage\\Exception\\NoFontException' => __DIR__.'/..'.'/smottt/wideimage/lib/WideImage/Exception/NoFontException.php', |
|
184 | + 'WideImage\\Exception\\UnknownErrorWhileMappingException' => __DIR__.'/..'.'/smottt/wideimage/lib/WideImage/Exception/UnknownErrorWhileMappingException.php', |
|
185 | + 'WideImage\\Exception\\UnknownImageOperationException' => __DIR__.'/..'.'/smottt/wideimage/lib/WideImage/Exception/UnknownImageOperationException.php', |
|
186 | + 'WideImage\\Exception\\UnsupportedFormatException' => __DIR__.'/..'.'/smottt/wideimage/lib/WideImage/Exception/UnsupportedFormatException.php', |
|
187 | + 'WideImage\\Font\\GDF' => __DIR__.'/..'.'/smottt/wideimage/lib/WideImage/Font/GDF.php', |
|
188 | + 'WideImage\\Font\\PS' => __DIR__.'/..'.'/smottt/wideimage/lib/WideImage/Font/PS.php', |
|
189 | + 'WideImage\\Font\\TTF' => __DIR__.'/..'.'/smottt/wideimage/lib/WideImage/Font/TTF.php', |
|
190 | + 'WideImage\\Image' => __DIR__.'/..'.'/smottt/wideimage/lib/WideImage/Image.php', |
|
191 | + 'WideImage\\MapperFactory' => __DIR__.'/..'.'/smottt/wideimage/lib/WideImage/MapperFactory.php', |
|
192 | + 'WideImage\\Mapper\\BMP' => __DIR__.'/..'.'/smottt/wideimage/lib/WideImage/Mapper/BMP.php', |
|
193 | + 'WideImage\\Mapper\\GD' => __DIR__.'/..'.'/smottt/wideimage/lib/WideImage/Mapper/GD.php', |
|
194 | + 'WideImage\\Mapper\\GD2' => __DIR__.'/..'.'/smottt/wideimage/lib/WideImage/Mapper/GD2.php', |
|
195 | + 'WideImage\\Mapper\\GIF' => __DIR__.'/..'.'/smottt/wideimage/lib/WideImage/Mapper/GIF.php', |
|
196 | + 'WideImage\\Mapper\\JPEG' => __DIR__.'/..'.'/smottt/wideimage/lib/WideImage/Mapper/JPEG.php', |
|
197 | + 'WideImage\\Mapper\\PNG' => __DIR__.'/..'.'/smottt/wideimage/lib/WideImage/Mapper/PNG.php', |
|
198 | + 'WideImage\\Mapper\\TGA' => __DIR__.'/..'.'/smottt/wideimage/lib/WideImage/Mapper/TGA.php', |
|
199 | + 'WideImage\\Mapper\\WEBP' => __DIR__.'/..'.'/smottt/wideimage/lib/WideImage/Mapper/WEBP.php', |
|
200 | + 'WideImage\\OperationFactory' => __DIR__.'/..'.'/smottt/wideimage/lib/WideImage/OperationFactory.php', |
|
201 | + 'WideImage\\Operation\\AddNoise' => __DIR__.'/..'.'/smottt/wideimage/lib/WideImage/Operation/AddNoise.php', |
|
202 | + 'WideImage\\Operation\\ApplyConvolution' => __DIR__.'/..'.'/smottt/wideimage/lib/WideImage/Operation/ApplyConvolution.php', |
|
203 | + 'WideImage\\Operation\\ApplyFilter' => __DIR__.'/..'.'/smottt/wideimage/lib/WideImage/Operation/ApplyFilter.php', |
|
204 | + 'WideImage\\Operation\\ApplyMask' => __DIR__.'/..'.'/smottt/wideimage/lib/WideImage/Operation/ApplyMask.php', |
|
205 | + 'WideImage\\Operation\\AsGrayscale' => __DIR__.'/..'.'/smottt/wideimage/lib/WideImage/Operation/AsGrayscale.php', |
|
206 | + 'WideImage\\Operation\\AsNegative' => __DIR__.'/..'.'/smottt/wideimage/lib/WideImage/Operation/AsNegative.php', |
|
207 | + 'WideImage\\Operation\\AutoCrop' => __DIR__.'/..'.'/smottt/wideimage/lib/WideImage/Operation/AutoCrop.php', |
|
208 | + 'WideImage\\Operation\\CopyChannelsPalette' => __DIR__.'/..'.'/smottt/wideimage/lib/WideImage/Operation/CopyChannelsPalette.php', |
|
209 | + 'WideImage\\Operation\\CopyChannelsTrueColor' => __DIR__.'/..'.'/smottt/wideimage/lib/WideImage/Operation/CopyChannelsTrueColor.php', |
|
210 | + 'WideImage\\Operation\\CorrectGamma' => __DIR__.'/..'.'/smottt/wideimage/lib/WideImage/Operation/CorrectGamma.php', |
|
211 | + 'WideImage\\Operation\\Crop' => __DIR__.'/..'.'/smottt/wideimage/lib/WideImage/Operation/Crop.php', |
|
212 | + 'WideImage\\Operation\\Exception\\InvalidFitMethodException' => __DIR__.'/..'.'/smottt/wideimage/lib/WideImage/Operation/Exception/InvalidFitMethodException.php', |
|
213 | + 'WideImage\\Operation\\Exception\\InvalidResizeDimensionException' => __DIR__.'/..'.'/smottt/wideimage/lib/WideImage/Operation/Exception/InvalidResizeDimensionException.php', |
|
214 | + 'WideImage\\Operation\\Flip' => __DIR__.'/..'.'/smottt/wideimage/lib/WideImage/Operation/Flip.php', |
|
215 | + 'WideImage\\Operation\\GetMask' => __DIR__.'/..'.'/smottt/wideimage/lib/WideImage/Operation/GetMask.php', |
|
216 | + 'WideImage\\Operation\\Merge' => __DIR__.'/..'.'/smottt/wideimage/lib/WideImage/Operation/Merge.php', |
|
217 | + 'WideImage\\Operation\\Mirror' => __DIR__.'/..'.'/smottt/wideimage/lib/WideImage/Operation/Mirror.php', |
|
218 | + 'WideImage\\Operation\\Resize' => __DIR__.'/..'.'/smottt/wideimage/lib/WideImage/Operation/Resize.php', |
|
219 | + 'WideImage\\Operation\\ResizeCanvas' => __DIR__.'/..'.'/smottt/wideimage/lib/WideImage/Operation/ResizeCanvas.php', |
|
220 | + 'WideImage\\Operation\\Rotate' => __DIR__.'/..'.'/smottt/wideimage/lib/WideImage/Operation/Rotate.php', |
|
221 | + 'WideImage\\Operation\\RoundCorners' => __DIR__.'/..'.'/smottt/wideimage/lib/WideImage/Operation/RoundCorners.php', |
|
222 | + 'WideImage\\Operation\\Unsharp' => __DIR__.'/..'.'/smottt/wideimage/lib/WideImage/Operation/Unsharp.php', |
|
223 | + 'WideImage\\PaletteImage' => __DIR__.'/..'.'/smottt/wideimage/lib/WideImage/PaletteImage.php', |
|
224 | + 'WideImage\\TrueColorImage' => __DIR__.'/..'.'/smottt/wideimage/lib/WideImage/TrueColorImage.php', |
|
225 | + 'WideImage\\WideImage' => __DIR__.'/..'.'/smottt/wideimage/lib/WideImage/WideImage.php', |
|
226 | + 'WideImage\\vendor\\de77\\BMP' => __DIR__.'/..'.'/smottt/wideimage/lib/WideImage/vendor/de77/BMP.php', |
|
227 | + 'WideImage\\vendor\\de77\\TGA' => __DIR__.'/..'.'/smottt/wideimage/lib/WideImage/vendor/de77/TGA.php', |
|
228 | + 'Xmf\\Assert' => __DIR__.'/..'.'/xoops/xmf/src/Assert.php', |
|
229 | + 'Xmf\\Database\\Migrate' => __DIR__.'/..'.'/xoops/xmf/src/Database/Migrate.php', |
|
230 | + 'Xmf\\Database\\TableLoad' => __DIR__.'/..'.'/xoops/xmf/src/Database/TableLoad.php', |
|
231 | + 'Xmf\\Database\\Tables' => __DIR__.'/..'.'/xoops/xmf/src/Database/Tables.php', |
|
232 | + 'Xmf\\Debug' => __DIR__.'/..'.'/xoops/xmf/src/Debug.php', |
|
233 | + 'Xmf\\FilterInput' => __DIR__.'/..'.'/xoops/xmf/src/FilterInput.php', |
|
234 | + 'Xmf\\Highlighter' => __DIR__.'/..'.'/xoops/xmf/src/Highlighter.php', |
|
235 | + 'Xmf\\IPAddress' => __DIR__.'/..'.'/xoops/xmf/src/IPAddress.php', |
|
236 | + 'Xmf\\Jwt\\JsonWebToken' => __DIR__.'/..'.'/xoops/xmf/src/Jwt/JsonWebToken.php', |
|
237 | + 'Xmf\\Jwt\\KeyFactory' => __DIR__.'/..'.'/xoops/xmf/src/Jwt/KeyFactory.php', |
|
238 | + 'Xmf\\Jwt\\TokenFactory' => __DIR__.'/..'.'/xoops/xmf/src/Jwt/TokenFactory.php', |
|
239 | + 'Xmf\\Jwt\\TokenReader' => __DIR__.'/..'.'/xoops/xmf/src/Jwt/TokenReader.php', |
|
240 | + 'Xmf\\Key\\ArrayStorage' => __DIR__.'/..'.'/xoops/xmf/src/Key/ArrayStorage.php', |
|
241 | + 'Xmf\\Key\\Basic' => __DIR__.'/..'.'/xoops/xmf/src/Key/Basic.php', |
|
242 | + 'Xmf\\Key\\FileStorage' => __DIR__.'/..'.'/xoops/xmf/src/Key/FileStorage.php', |
|
243 | + 'Xmf\\Key\\KeyAbstract' => __DIR__.'/..'.'/xoops/xmf/src/Key/KeyAbstract.php', |
|
244 | + 'Xmf\\Key\\StorageInterface' => __DIR__.'/..'.'/xoops/xmf/src/Key/StorageInterface.php', |
|
245 | + 'Xmf\\Language' => __DIR__.'/..'.'/xoops/xmf/src/Language.php', |
|
246 | + 'Xmf\\Metagen' => __DIR__.'/..'.'/xoops/xmf/src/Metagen.php', |
|
247 | + 'Xmf\\Module\\Admin' => __DIR__.'/..'.'/xoops/xmf/src/Module/Admin.php', |
|
248 | + 'Xmf\\Module\\Helper' => __DIR__.'/..'.'/xoops/xmf/src/Module/Helper.php', |
|
249 | + 'Xmf\\Module\\Helper\\AbstractHelper' => __DIR__.'/..'.'/xoops/xmf/src/Module/Helper/AbstractHelper.php', |
|
250 | + 'Xmf\\Module\\Helper\\Cache' => __DIR__.'/..'.'/xoops/xmf/src/Module/Helper/Cache.php', |
|
251 | + 'Xmf\\Module\\Helper\\GenericHelper' => __DIR__.'/..'.'/xoops/xmf/src/Module/Helper/GenericHelper.php', |
|
252 | + 'Xmf\\Module\\Helper\\Permission' => __DIR__.'/..'.'/xoops/xmf/src/Module/Helper/Permission.php', |
|
253 | + 'Xmf\\Module\\Helper\\Session' => __DIR__.'/..'.'/xoops/xmf/src/Module/Helper/Session.php', |
|
254 | + 'Xmf\\Random' => __DIR__.'/..'.'/xoops/xmf/src/Random.php', |
|
255 | + 'Xmf\\Request' => __DIR__.'/..'.'/xoops/xmf/src/Request.php', |
|
256 | + 'Xmf\\StopWords' => __DIR__.'/..'.'/xoops/xmf/src/StopWords.php', |
|
257 | + 'Xmf\\Uuid' => __DIR__.'/..'.'/xoops/xmf/src/Uuid.php', |
|
258 | + 'Xmf\\Yaml' => __DIR__.'/..'.'/xoops/xmf/src/Yaml.php', |
|
259 | 259 | ); |
260 | 260 | |
261 | 261 | public static function getInitializer(ClassLoader $loader) |
262 | 262 | { |
263 | - return \Closure::bind(function () use ($loader) { |
|
263 | + return \Closure::bind(function() use ($loader) { |
|
264 | 264 | $loader->prefixLengthsPsr4 = ComposerStaticInitfb0e5c3e4af98ed910184391855ba473::$prefixLengthsPsr4; |
265 | 265 | $loader->prefixDirsPsr4 = ComposerStaticInitfb0e5c3e4af98ed910184391855ba473::$prefixDirsPsr4; |
266 | 266 | $loader->prefixesPsr0 = ComposerStaticInitfb0e5c3e4af98ed910184391855ba473::$prefixesPsr0; |
@@ -6,5 +6,5 @@ |
||
6 | 6 | $baseDir = dirname($vendorDir); |
7 | 7 | |
8 | 8 | return array( |
9 | - 'WideImage' => array($vendorDir . '/smottt/wideimage/lib'), |
|
9 | + 'WideImage' => array($vendorDir.'/smottt/wideimage/lib'), |
|
10 | 10 | ); |
@@ -1,5 +1,5 @@ discard block |
||
1 | 1 | <?php |
2 | - /** |
|
2 | + /** |
|
3 | 3 | ##DOC-SIGNATURE## |
4 | 4 | |
5 | 5 | This file is part of WideImage. |
@@ -17,9 +17,8 @@ discard block |
||
17 | 17 | You should have received a copy of the GNU Lesser General Public License |
18 | 18 | along with WideImage; if not, write to the Free Software |
19 | 19 | Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA |
20 | - |
|
21 | - * @package Internal/Operations |
|
22 | - **/ |
|
20 | + * @package Internal/Operations |
|
21 | + **/ |
|
23 | 22 | |
24 | 23 | namespace WideImage\Operation; |
25 | 24 | |
@@ -33,50 +32,50 @@ discard block |
||
33 | 32 | */ |
34 | 33 | class Merge |
35 | 34 | { |
36 | - /** |
|
37 | - * Returns a merged image |
|
38 | - * |
|
39 | - * @param \WideImage\Image $base |
|
40 | - * @param \WideImage\Image $overlay |
|
41 | - * @param smart_coordinate $left |
|
42 | - * @param smart_coordinate $top |
|
43 | - * @param numeric $pct |
|
44 | - * @return \WideImage\Image |
|
45 | - */ |
|
46 | - public function execute($base, $overlay, $left, $top, $pct) |
|
47 | - { |
|
48 | - $x = Coordinate::fix($left, $base->getWidth(), $overlay->getWidth()); |
|
49 | - $y = Coordinate::fix($top, $base->getHeight(), $overlay->getHeight()); |
|
35 | + /** |
|
36 | + * Returns a merged image |
|
37 | + * |
|
38 | + * @param \WideImage\Image $base |
|
39 | + * @param \WideImage\Image $overlay |
|
40 | + * @param smart_coordinate $left |
|
41 | + * @param smart_coordinate $top |
|
42 | + * @param numeric $pct |
|
43 | + * @return \WideImage\Image |
|
44 | + */ |
|
45 | + public function execute($base, $overlay, $left, $top, $pct) |
|
46 | + { |
|
47 | + $x = Coordinate::fix($left, $base->getWidth(), $overlay->getWidth()); |
|
48 | + $y = Coordinate::fix($top, $base->getHeight(), $overlay->getHeight()); |
|
50 | 49 | |
51 | - $result = $base->asTrueColor(); |
|
52 | - $result->alphaBlending(true); |
|
53 | - $result->saveAlpha(true); |
|
50 | + $result = $base->asTrueColor(); |
|
51 | + $result->alphaBlending(true); |
|
52 | + $result->saveAlpha(true); |
|
54 | 53 | |
55 | - if ($pct <= 0) { |
|
56 | - return $result; |
|
57 | - } |
|
54 | + if ($pct <= 0) { |
|
55 | + return $result; |
|
56 | + } |
|
58 | 57 | |
59 | - if ($pct < 100) { |
|
60 | - if (!imagecopymerge( |
|
61 | - $result->getHandle(), |
|
62 | - $overlay->getHandle(), |
|
63 | - $x, $y, 0, 0, |
|
64 | - $overlay->getWidth(), |
|
65 | - $overlay->getHeight(), |
|
66 | - $pct)) { |
|
67 | - throw new GDFunctionResultException("imagecopymerge() returned false"); |
|
68 | - } |
|
69 | - } else { |
|
70 | - if (!imagecopy( |
|
71 | - $result->getHandle(), |
|
72 | - $overlay->getHandle(), |
|
73 | - $x, $y, 0, 0, |
|
74 | - $overlay->getWidth(), |
|
75 | - $overlay->getHeight())) { |
|
76 | - throw new GDFunctionResultException("imagecopy() returned false"); |
|
77 | - } |
|
78 | - } |
|
58 | + if ($pct < 100) { |
|
59 | + if (!imagecopymerge( |
|
60 | + $result->getHandle(), |
|
61 | + $overlay->getHandle(), |
|
62 | + $x, $y, 0, 0, |
|
63 | + $overlay->getWidth(), |
|
64 | + $overlay->getHeight(), |
|
65 | + $pct)) { |
|
66 | + throw new GDFunctionResultException("imagecopymerge() returned false"); |
|
67 | + } |
|
68 | + } else { |
|
69 | + if (!imagecopy( |
|
70 | + $result->getHandle(), |
|
71 | + $overlay->getHandle(), |
|
72 | + $x, $y, 0, 0, |
|
73 | + $overlay->getWidth(), |
|
74 | + $overlay->getHeight())) { |
|
75 | + throw new GDFunctionResultException("imagecopy() returned false"); |
|
76 | + } |
|
77 | + } |
|
79 | 78 | |
80 | - return $result; |
|
81 | - } |
|
79 | + return $result; |
|
80 | + } |
|
82 | 81 | } |
@@ -1,5 +1,5 @@ discard block |
||
1 | 1 | <?php |
2 | - /** |
|
2 | + /** |
|
3 | 3 | ##DOC-SIGNATURE## |
4 | 4 | |
5 | 5 | This file is part of WideImage. |
@@ -17,9 +17,8 @@ discard block |
||
17 | 17 | You should have received a copy of the GNU Lesser General Public License |
18 | 18 | along with WideImage; if not, write to the Free Software |
19 | 19 | Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA |
20 | - |
|
21 | - * @package Internal/Operations |
|
22 | - **/ |
|
20 | + * @package Internal/Operations |
|
21 | + **/ |
|
23 | 22 | |
24 | 23 | namespace WideImage\Operation; |
25 | 24 | |
@@ -32,74 +31,74 @@ discard block |
||
32 | 31 | */ |
33 | 32 | class ApplyMask |
34 | 33 | { |
35 | - /** |
|
36 | - * Applies a mask on the copy of source image |
|
37 | - * |
|
38 | - * @param \WideImage\Image $image |
|
39 | - * @param \WideImage\Image $mask |
|
40 | - * @param smart_coordinate $left |
|
41 | - * @param smart_coordinate $top |
|
42 | - * @return \WideImage\Image |
|
43 | - */ |
|
44 | - public function execute($image, $mask, $left = 0, $top = 0) |
|
45 | - { |
|
46 | - $left = Coordinate::fix($left, $image->getWidth(), $mask->getWidth()); |
|
47 | - $top = Coordinate::fix($top, $image->getHeight(), $mask->getHeight()); |
|
34 | + /** |
|
35 | + * Applies a mask on the copy of source image |
|
36 | + * |
|
37 | + * @param \WideImage\Image $image |
|
38 | + * @param \WideImage\Image $mask |
|
39 | + * @param smart_coordinate $left |
|
40 | + * @param smart_coordinate $top |
|
41 | + * @return \WideImage\Image |
|
42 | + */ |
|
43 | + public function execute($image, $mask, $left = 0, $top = 0) |
|
44 | + { |
|
45 | + $left = Coordinate::fix($left, $image->getWidth(), $mask->getWidth()); |
|
46 | + $top = Coordinate::fix($top, $image->getHeight(), $mask->getHeight()); |
|
48 | 47 | |
49 | - $width = $image->getWidth(); |
|
50 | - $mask_width = $mask->getWidth(); |
|
48 | + $width = $image->getWidth(); |
|
49 | + $mask_width = $mask->getWidth(); |
|
51 | 50 | |
52 | - $height = $image->getHeight(); |
|
53 | - $mask_height = $mask->getHeight(); |
|
51 | + $height = $image->getHeight(); |
|
52 | + $mask_height = $mask->getHeight(); |
|
54 | 53 | |
55 | - $result = $image->asTrueColor(); |
|
54 | + $result = $image->asTrueColor(); |
|
56 | 55 | |
57 | - $result->alphaBlending(false); |
|
58 | - $result->saveAlpha(true); |
|
56 | + $result->alphaBlending(false); |
|
57 | + $result->saveAlpha(true); |
|
59 | 58 | |
60 | - $srcTransparentColor = $result->getTransparentColor(); |
|
59 | + $srcTransparentColor = $result->getTransparentColor(); |
|
61 | 60 | |
62 | - if ($srcTransparentColor >= 0) { |
|
63 | - $destTransparentColor = $srcTransparentColor; |
|
64 | - } else { |
|
65 | - $destTransparentColor = $result->allocateColorAlpha(255, 255, 255, 127); |
|
66 | - } |
|
61 | + if ($srcTransparentColor >= 0) { |
|
62 | + $destTransparentColor = $srcTransparentColor; |
|
63 | + } else { |
|
64 | + $destTransparentColor = $result->allocateColorAlpha(255, 255, 255, 127); |
|
65 | + } |
|
67 | 66 | |
68 | - for ($x = 0; $x < $width; $x++) { |
|
69 | - for ($y = 0; $y < $height; $y++) { |
|
70 | - $mx = $x - $left; |
|
71 | - $my = $y - $top; |
|
67 | + for ($x = 0; $x < $width; $x++) { |
|
68 | + for ($y = 0; $y < $height; $y++) { |
|
69 | + $mx = $x - $left; |
|
70 | + $my = $y - $top; |
|
72 | 71 | |
73 | - if ($mx >= 0 && $mx < $mask_width && $my >= 0 && $my < $mask_height) { |
|
74 | - $srcColor = $image->getColorAt($x, $y); |
|
72 | + if ($mx >= 0 && $mx < $mask_width && $my >= 0 && $my < $mask_height) { |
|
73 | + $srcColor = $image->getColorAt($x, $y); |
|
75 | 74 | |
76 | - if ($srcColor == $srcTransparentColor) { |
|
77 | - $destColor = $destTransparentColor; |
|
78 | - } else { |
|
79 | - $maskRGB = $mask->getRGBAt($mx, $my); |
|
75 | + if ($srcColor == $srcTransparentColor) { |
|
76 | + $destColor = $destTransparentColor; |
|
77 | + } else { |
|
78 | + $maskRGB = $mask->getRGBAt($mx, $my); |
|
80 | 79 | |
81 | - if ($maskRGB['red'] == 0) { |
|
82 | - $destColor = $destTransparentColor; |
|
83 | - } elseif ($srcColor >= 0) { |
|
84 | - $imageRGB = $image->getRGBAt($x, $y); |
|
85 | - $level = ($maskRGB['red'] / 255) * (1 - $imageRGB['alpha'] / 127); |
|
86 | - $imageRGB['alpha'] = 127 - round($level * 127); |
|
80 | + if ($maskRGB['red'] == 0) { |
|
81 | + $destColor = $destTransparentColor; |
|
82 | + } elseif ($srcColor >= 0) { |
|
83 | + $imageRGB = $image->getRGBAt($x, $y); |
|
84 | + $level = ($maskRGB['red'] / 255) * (1 - $imageRGB['alpha'] / 127); |
|
85 | + $imageRGB['alpha'] = 127 - round($level * 127); |
|
87 | 86 | |
88 | - if ($imageRGB['alpha'] == 127) { |
|
89 | - $destColor = $destTransparentColor; |
|
90 | - } else { |
|
91 | - $destColor = $result->allocateColorAlpha($imageRGB); |
|
92 | - } |
|
93 | - } else { |
|
94 | - $destColor = $destTransparentColor; |
|
95 | - } |
|
96 | - } |
|
87 | + if ($imageRGB['alpha'] == 127) { |
|
88 | + $destColor = $destTransparentColor; |
|
89 | + } else { |
|
90 | + $destColor = $result->allocateColorAlpha($imageRGB); |
|
91 | + } |
|
92 | + } else { |
|
93 | + $destColor = $destTransparentColor; |
|
94 | + } |
|
95 | + } |
|
97 | 96 | |
98 | - $result->setColorAt($x, $y, $destColor); |
|
99 | - } |
|
100 | - } |
|
101 | - } |
|
97 | + $result->setColorAt($x, $y, $destColor); |
|
98 | + } |
|
99 | + } |
|
100 | + } |
|
102 | 101 | |
103 | - return $result; |
|
104 | - } |
|
102 | + return $result; |
|
103 | + } |
|
105 | 104 | } |
@@ -1,5 +1,5 @@ discard block |
||
1 | 1 | <?php |
2 | - /** |
|
2 | + /** |
|
3 | 3 | ##DOC-SIGNATURE## |
4 | 4 | |
5 | 5 | This file is part of WideImage. |
@@ -17,9 +17,8 @@ discard block |
||
17 | 17 | You should have received a copy of the GNU Lesser General Public License |
18 | 18 | along with WideImage; if not, write to the Free Software |
19 | 19 | Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA |
20 | - |
|
21 | - * @package Internal/Operations |
|
22 | - **/ |
|
20 | + * @package Internal/Operations |
|
21 | + **/ |
|
23 | 22 | |
24 | 23 | namespace WideImage\Operation; |
25 | 24 | |
@@ -32,24 +31,24 @@ discard block |
||
32 | 31 | */ |
33 | 32 | class AsGrayscale |
34 | 33 | { |
35 | - /** |
|
36 | - * Returns a greyscale copy of an image |
|
37 | - * |
|
38 | - * @param \WideImage\Image $image |
|
39 | - * @return \WideImage\Image |
|
40 | - */ |
|
41 | - public function execute($image) |
|
42 | - { |
|
43 | - $new = $image->asTrueColor(); |
|
34 | + /** |
|
35 | + * Returns a greyscale copy of an image |
|
36 | + * |
|
37 | + * @param \WideImage\Image $image |
|
38 | + * @return \WideImage\Image |
|
39 | + */ |
|
40 | + public function execute($image) |
|
41 | + { |
|
42 | + $new = $image->asTrueColor(); |
|
44 | 43 | |
45 | - if (!imagefilter($new->getHandle(), IMG_FILTER_GRAYSCALE)) { |
|
46 | - throw new GDFunctionResultException("imagefilter() returned false"); |
|
47 | - } |
|
44 | + if (!imagefilter($new->getHandle(), IMG_FILTER_GRAYSCALE)) { |
|
45 | + throw new GDFunctionResultException("imagefilter() returned false"); |
|
46 | + } |
|
48 | 47 | |
49 | - if (!$image->isTrueColor()) { |
|
50 | - $new = $new->asPalette(); |
|
51 | - } |
|
48 | + if (!$image->isTrueColor()) { |
|
49 | + $new = $new->asPalette(); |
|
50 | + } |
|
52 | 51 | |
53 | - return $new; |
|
54 | - } |
|
52 | + return $new; |
|
53 | + } |
|
55 | 54 | } |