diff --git a/composer.json b/composer.json index 80d649ccd4..d194d4b08b 100644 --- a/composer.json +++ b/composer.json @@ -29,7 +29,8 @@ "dapphp/radius": "^2.0", "php-amqplib/php-amqplib": "^2.0", "symfony/yaml": "^2.8", - "rmccue/requests": "^1.7" + "rmccue/requests": "^1.7", + "ramsey/array_column": "^1.1" }, "require-dev": { "squizlabs/php_codesniffer": "2.6.*", diff --git a/includes/polling/functions.inc.php b/includes/polling/functions.inc.php index 71f5c44ffb..4ca5f5b307 100644 --- a/includes/polling/functions.inc.php +++ b/includes/polling/functions.inc.php @@ -144,9 +144,11 @@ function record_sensor_data($device, $all_sensors) ); foreach ($all_sensors as $sensor) { - $class = $sensor['sensor_class']; - $unit = $supported_sensors[$class]; - $sensor_value = $sensor['new_value']; + $class = ucfirst($sensor['sensor_class']); + $unit = $supported_sensors[$class]; + $sensor_value = $sensor['new_value']; + $prev_sensor_value = $sensor['sensor_current']; + if ($sensor_value == -32768) { echo 'Invalid (-32768) '; $sensor_value = 0; @@ -180,17 +182,26 @@ function record_sensor_data($device, $all_sensors) data_update($device, 'sensor', $tags, $fields); // FIXME also warn when crossing WARN level! - if ($sensor['sensor_limit_low'] != '' && $sensor['sensor_current'] > $sensor['sensor_limit_low'] && $sensor_value < $sensor['sensor_limit_low'] && $sensor['sensor_alert'] == 1) { + if ($sensor['sensor_limit_low'] != '' && $prev_sensor_value > $sensor['sensor_limit_low'] && $sensor_value < $sensor['sensor_limit_low'] && $sensor['sensor_alert'] == 1) { echo 'Alerting for '.$device['hostname'].' '.$sensor['sensor_descr']."\n"; - log_event(ucfirst($class) . ' ' . $sensor['sensor_descr'] . ' under threshold: ' . $sensor_value . " $unit (< " . $sensor['sensor_limit_low'] . " $unit)", $device, $class, 4, $sensor['sensor_id']); - } elseif ($sensor['sensor_limit'] != '' && $sensor['sensor_current'] < $sensor['sensor_limit'] && $sensor_value > $sensor['sensor_limit'] && $sensor['sensor_alert'] == 1) { + log_event("$class {$sensor['sensor_descr']} under threshold: $sensor_value $unit (< {$sensor['sensor_limit_low']} $unit)", $device, $class, 4, $sensor['sensor_id']); + } elseif ($sensor['sensor_limit'] != '' && $prev_sensor_value < $sensor['sensor_limit'] && $sensor_value > $sensor['sensor_limit'] && $sensor['sensor_alert'] == 1) { echo 'Alerting for '.$device['hostname'].' '.$sensor['sensor_descr']."\n"; - log_event(ucfirst($class) . ' ' . $sensor['sensor_descr'] . ' above threshold: ' . $sensor_value . " $unit (> " . $sensor['sensor_limit'] . " $unit)", $device, $class, 4, $sensor['sensor_id']); + log_event("$class {$sensor['sensor_descr']} above threshold: $sensor_value $unit (> {$sensor['sensor_limit']} $unit)", $device, $class, 4, $sensor['sensor_id']); } - if ($sensor['sensor_class'] == 'state' && $sensor['sensor_current'] != $sensor_value) { - log_event($class . ' sensor has changed from ' . $sensor['sensor_current'] . ' to ' . $sensor_value, $device, $class, 3, $sensor['sensor_id']); + if ($sensor['sensor_class'] == 'state' && $prev_sensor_value != $sensor_value) { + $trans = array_column( + dbFetchRows( + "SELECT `state_translations`.`state_value`, `state_translations`.`state_descr` FROM `sensors_to_state_indexes` LEFT JOIN `state_translations` USING (`state_index_id`) WHERE `sensors_to_state_indexes`.`sensor_id`=? AND `state_translations`.`state_value` IN ($sensor_value,$prev_sensor_value)", + array($sensor['sensor_id']) + ), + 'state_descr', + 'state_value' + ); + + log_event("$class sensor has changed from {$trans[$prev_sensor_value]} ($prev_sensor_value) to {$trans[$sensor_value]} ($sensor_value)", $device, $class, 3, $sensor['sensor_id']); } - dbUpdate(array('sensor_current' => $sensor_value, 'sensor_prev' => $sensor['sensor_current'], 'lastupdate' => array('NOW()')), 'sensors', "`sensor_class` = ? AND `sensor_id` = ?", array($class,$sensor['sensor_id'])); + dbUpdate(array('sensor_current' => $sensor_value, 'sensor_prev' => $prev_sensor_value, 'lastupdate' => array('NOW()')), 'sensors', "`sensor_class` = ? AND `sensor_id` = ?", array($class,$sensor['sensor_id'])); } } diff --git a/vendor/amenadiel/jpgraph/.gitignore b/vendor/amenadiel/jpgraph/.gitignore new file mode 100644 index 0000000000..a5831209c7 --- /dev/null +++ b/vendor/amenadiel/jpgraph/.gitignore @@ -0,0 +1,7 @@ +*bak* + +*sublime* + + +vendor +fabfile* \ No newline at end of file diff --git a/vendor/composer/autoload_classmap.php b/vendor/composer/autoload_classmap.php index 1bb77f6a9e..b9817eeca8 100644 --- a/vendor/composer/autoload_classmap.php +++ b/vendor/composer/autoload_classmap.php @@ -6,610 +6,17 @@ $vendorDir = dirname(dirname(__FILE__)); $baseDir = dirname($vendorDir); return array( - 'Amenadiel\\JpGraph\\Graph\\Axis' => $vendorDir . '/amenadiel/jpgraph/src/graph/Axis.php', - 'Amenadiel\\JpGraph\\Graph\\AxisPrototype' => $vendorDir . '/amenadiel/jpgraph/src/graph/AxisPrototype.php', - 'Amenadiel\\JpGraph\\Graph\\CanvasGraph' => $vendorDir . '/amenadiel/jpgraph/src/graph/CanvasGraph.php', - 'Amenadiel\\JpGraph\\Graph\\CanvasScale' => $vendorDir . '/amenadiel/jpgraph/src/graph/CanvasScale.php', - 'Amenadiel\\JpGraph\\Graph\\DateScale' => $vendorDir . '/amenadiel/jpgraph/src/graph/DateScale.php', - 'Amenadiel\\JpGraph\\Graph\\GanttActivityInfo' => $vendorDir . '/amenadiel/jpgraph/src/graph/GanttActivityInfo.php', - 'Amenadiel\\JpGraph\\Graph\\GanttGraph' => $vendorDir . '/amenadiel/jpgraph/src/graph/GanttGraph.php', - 'Amenadiel\\JpGraph\\Graph\\GanttScale' => $vendorDir . '/amenadiel/jpgraph/src/graph/GanttScale.php', - 'Amenadiel\\JpGraph\\Graph\\Graph' => $vendorDir . '/amenadiel/jpgraph/src/graph/Graph.php', - 'Amenadiel\\JpGraph\\Graph\\Grid' => $vendorDir . '/amenadiel/jpgraph/src/graph/Grid.php', - 'Amenadiel\\JpGraph\\Graph\\HeaderProperty' => $vendorDir . '/amenadiel/jpgraph/src/graph/HeaderProperty.php', - 'Amenadiel\\JpGraph\\Graph\\HorizontalGridLine' => $vendorDir . '/amenadiel/jpgraph/src/graph/HorizontalGridLine.php', - 'Amenadiel\\JpGraph\\Graph\\Legend' => $vendorDir . '/amenadiel/jpgraph/src/graph/Legend.php', - 'Amenadiel\\JpGraph\\Graph\\LineProperty' => $vendorDir . '/amenadiel/jpgraph/src/graph/LineProperty.php', - 'Amenadiel\\JpGraph\\Graph\\LinearScale' => $vendorDir . '/amenadiel/jpgraph/src/graph/LinearScale.php', - 'Amenadiel\\JpGraph\\Graph\\LinearTicks' => $vendorDir . '/amenadiel/jpgraph/src/graph/LinearTicks.php', - 'Amenadiel\\JpGraph\\Graph\\LogScale' => $vendorDir . '/amenadiel/jpgraph/src/graph/LogScale.php', - 'Amenadiel\\JpGraph\\Graph\\LogTicks' => $vendorDir . '/amenadiel/jpgraph/src/graph/LogTicks.php', - 'Amenadiel\\JpGraph\\Graph\\MGraph' => $vendorDir . '/amenadiel/jpgraph/src/graph/MGraph.php', - 'Amenadiel\\JpGraph\\Graph\\PieGraph' => $vendorDir . '/amenadiel/jpgraph/src/graph/PieGraph.php', - 'Amenadiel\\JpGraph\\Graph\\PolarAxis' => $vendorDir . '/amenadiel/jpgraph/src/graph/PolarAxis.php', - 'Amenadiel\\JpGraph\\Graph\\PolarGraph' => $vendorDir . '/amenadiel/jpgraph/src/graph/PolarGraph.php', - 'Amenadiel\\JpGraph\\Graph\\PolarLogScale' => $vendorDir . '/amenadiel/jpgraph/src/graph/PolarLogScale.php', - 'Amenadiel\\JpGraph\\Graph\\PolarScale' => $vendorDir . '/amenadiel/jpgraph/src/graph/PolarScale.php', - 'Amenadiel\\JpGraph\\Graph\\RadarAxis' => $vendorDir . '/amenadiel/jpgraph/src/graph/RadarAxis.php', - 'Amenadiel\\JpGraph\\Graph\\RadarGraph' => $vendorDir . '/amenadiel/jpgraph/src/graph/RadarGraph.php', - 'Amenadiel\\JpGraph\\Graph\\RadarGrid' => $vendorDir . '/amenadiel/jpgraph/src/graph/RadarGrid.php', - 'Amenadiel\\JpGraph\\Graph\\RadarLinearTicks' => $vendorDir . '/amenadiel/jpgraph/src/graph/RadarLinearTicks.php', - 'Amenadiel\\JpGraph\\Graph\\RadarLogTicks' => $vendorDir . '/amenadiel/jpgraph/src/graph/RadarLogTicks.php', - 'Amenadiel\\JpGraph\\Graph\\RadarPlot' => $vendorDir . '/amenadiel/jpgraph/src/graph/RadarGrid.php', - 'Amenadiel\\JpGraph\\Graph\\RectPattern' => $vendorDir . '/amenadiel/jpgraph/src/graph/RectPattern.php', - 'Amenadiel\\JpGraph\\Graph\\RectPattern3DPlane' => $vendorDir . '/amenadiel/jpgraph/src/graph/RectPattern3DPlane.php', - 'Amenadiel\\JpGraph\\Graph\\RectPatternCross' => $vendorDir . '/amenadiel/jpgraph/src/graph/RectPatternCross.php', - 'Amenadiel\\JpGraph\\Graph\\RectPatternDiagCross' => $vendorDir . '/amenadiel/jpgraph/src/graph/RectPatternDiagCross.php', - 'Amenadiel\\JpGraph\\Graph\\RectPatternFactory' => $vendorDir . '/amenadiel/jpgraph/src/graph/RectPatternFactory.php', - 'Amenadiel\\JpGraph\\Graph\\RectPatternHor' => $vendorDir . '/amenadiel/jpgraph/src/graph/RectPatternHor.php', - 'Amenadiel\\JpGraph\\Graph\\RectPatternLDiag' => $vendorDir . '/amenadiel/jpgraph/src/graph/RectPatternLDiag.php', - 'Amenadiel\\JpGraph\\Graph\\RectPatternRDiag' => $vendorDir . '/amenadiel/jpgraph/src/graph/RectPatternRDiag.php', - 'Amenadiel\\JpGraph\\Graph\\RectPatternSolid' => $vendorDir . '/amenadiel/jpgraph/src/graph/RectPatternSolid.php', - 'Amenadiel\\JpGraph\\Graph\\RectPatternVert' => $vendorDir . '/amenadiel/jpgraph/src/graph/RectPatternVert.php', - 'Amenadiel\\JpGraph\\Graph\\Shape' => $vendorDir . '/amenadiel/jpgraph/src/graph/Shape.php', - 'Amenadiel\\JpGraph\\Graph\\SymChar' => $vendorDir . '/amenadiel/jpgraph/src/graph/SymChar.php', - 'Amenadiel\\JpGraph\\Graph\\Ticks' => $vendorDir . '/amenadiel/jpgraph/src/graph/Ticks.php', - 'Amenadiel\\JpGraph\\Graph\\WindroseGraph' => $vendorDir . '/amenadiel/jpgraph/src/graph/WindroseGraph.php', - 'Amenadiel\\JpGraph\\Graph\\WindrosePlotScale' => $vendorDir . '/amenadiel/jpgraph/src/graph/WindrosePlotScale.php', - 'Amenadiel\\JpGraph\\Image\\DigitalLED74' => $vendorDir . '/amenadiel/jpgraph/src/image/DigitalLED74.php', - 'Amenadiel\\JpGraph\\Image\\FieldArrow' => $vendorDir . '/amenadiel/jpgraph/src/image/FieldArrow.php', - 'Amenadiel\\JpGraph\\Image\\FlagImages' => $vendorDir . '/amenadiel/jpgraph/src/image/FlagImages.php', - 'Amenadiel\\JpGraph\\Image\\Footer' => $vendorDir . '/amenadiel/jpgraph/src/image/Footer.php', - 'Amenadiel\\JpGraph\\Image\\GanttLink' => $vendorDir . '/amenadiel/jpgraph/src/image/GanttLink.php', - 'Amenadiel\\JpGraph\\Image\\IconImage' => $vendorDir . '/amenadiel/jpgraph/src/image/IconImage.php', - 'Amenadiel\\JpGraph\\Image\\Image' => $vendorDir . '/amenadiel/jpgraph/src/image/Image.php', - 'Amenadiel\\JpGraph\\Image\\ImgData' => $vendorDir . '/amenadiel/jpgraph/src/image/ImgData.php', - 'Amenadiel\\JpGraph\\Image\\ImgData_Balls' => $vendorDir . '/amenadiel/jpgraph/src/image/ImgData_Balls.php', - 'Amenadiel\\JpGraph\\Image\\ImgData_Bevels' => $vendorDir . '/amenadiel/jpgraph/src/image/ImgData_Bevels.php', - 'Amenadiel\\JpGraph\\Image\\ImgData_Diamonds' => $vendorDir . '/amenadiel/jpgraph/src/image/ImgData_Diamonds.php', - 'Amenadiel\\JpGraph\\Image\\ImgData_PushPins' => $vendorDir . '/amenadiel/jpgraph/src/image/ImgData_PushPins.php', - 'Amenadiel\\JpGraph\\Image\\ImgData_Squares' => $vendorDir . '/amenadiel/jpgraph/src/image/ImgData_Squares.php', - 'Amenadiel\\JpGraph\\Image\\ImgData_Stars' => $vendorDir . '/amenadiel/jpgraph/src/image/ImgData_Stars.php', - 'Amenadiel\\JpGraph\\Image\\ImgStreamCache' => $vendorDir . '/amenadiel/jpgraph/src/image/ImgStreamCache.php', - 'Amenadiel\\JpGraph\\Image\\ImgTrans' => $vendorDir . '/amenadiel/jpgraph/src/image/ImgTrans.php', - 'Amenadiel\\JpGraph\\Image\\LinkArrow' => $vendorDir . '/amenadiel/jpgraph/src/image/LinkArrow.php', - 'Amenadiel\\JpGraph\\Image\\PredefIcons' => $vendorDir . '/amenadiel/jpgraph/src/image/PredefIcons.php', - 'Amenadiel\\JpGraph\\Image\\Progress' => $vendorDir . '/amenadiel/jpgraph/src/image/Progress.php', - 'Amenadiel\\JpGraph\\Image\\RGB' => $vendorDir . '/amenadiel/jpgraph/src/image/RGB.php', - 'Amenadiel\\JpGraph\\Image\\RotImage' => $vendorDir . '/amenadiel/jpgraph/src/image/RotImage.php', - 'Amenadiel\\JpGraph\\Plot\\AccBarPlot' => $vendorDir . '/amenadiel/jpgraph/src/plot/AccBarPlot.php', - 'Amenadiel\\JpGraph\\Plot\\AccLinePlot' => $vendorDir . '/amenadiel/jpgraph/src/plot/AccLinePlot.php', - 'Amenadiel\\JpGraph\\Plot\\BarPlot' => $vendorDir . '/amenadiel/jpgraph/src/plot/BarPlot.php', - 'Amenadiel\\JpGraph\\Plot\\BoxPlot' => $vendorDir . '/amenadiel/jpgraph/src/plot/BoxPlot.php', - 'Amenadiel\\JpGraph\\Plot\\Contour' => $vendorDir . '/amenadiel/jpgraph/src/plot/Contour.php', - 'Amenadiel\\JpGraph\\Plot\\ContourPlot' => $vendorDir . '/amenadiel/jpgraph/src/plot/ContourPlot.php', - 'Amenadiel\\JpGraph\\Plot\\DisplayValue' => $vendorDir . '/amenadiel/jpgraph/src/plot/DisplayValue.php', - 'Amenadiel\\JpGraph\\Plot\\ErrorLinePlot' => $vendorDir . '/amenadiel/jpgraph/src/plot/ErrorLinePlot.php', - 'Amenadiel\\JpGraph\\Plot\\ErrorPlot' => $vendorDir . '/amenadiel/jpgraph/src/plot/ErrorPlot.php', - 'Amenadiel\\JpGraph\\Plot\\FieldPlot' => $vendorDir . '/amenadiel/jpgraph/src/plot/FieldPlot.php', - 'Amenadiel\\JpGraph\\Plot\\GanttBar' => $vendorDir . '/amenadiel/jpgraph/src/plot/GanttBar.php', - 'Amenadiel\\JpGraph\\Plot\\GanttPlotObject' => $vendorDir . '/amenadiel/jpgraph/src/plot/GanttPlotObject.php', - 'Amenadiel\\JpGraph\\Plot\\GanttVLine' => $vendorDir . '/amenadiel/jpgraph/src/plot/GanttVLine.php', - 'Amenadiel\\JpGraph\\Plot\\Gradient' => $vendorDir . '/amenadiel/jpgraph/src/plot/Gradient.php', - 'Amenadiel\\JpGraph\\Plot\\GroupBarPlot' => $vendorDir . '/amenadiel/jpgraph/src/plot/GroupBarPlot.php', - 'Amenadiel\\JpGraph\\Plot\\IconPlot' => $vendorDir . '/amenadiel/jpgraph/src/plot/IconPlot.php', - 'Amenadiel\\JpGraph\\Plot\\LegendStyle' => $vendorDir . '/amenadiel/jpgraph/src/plot/LegendStyle.php', - 'Amenadiel\\JpGraph\\Plot\\LineErrorPlot' => $vendorDir . '/amenadiel/jpgraph/src/plot/LineErrorPlot.php', - 'Amenadiel\\JpGraph\\Plot\\LinePlot' => $vendorDir . '/amenadiel/jpgraph/src/plot/LinePlot.php', - 'Amenadiel\\JpGraph\\Plot\\MeshInterpolate' => $vendorDir . '/amenadiel/jpgraph/src/plot/MeshInterpolate.php', - 'Amenadiel\\JpGraph\\Plot\\MileStone' => $vendorDir . '/amenadiel/jpgraph/src/plot/MileStone.php', - 'Amenadiel\\JpGraph\\Plot\\PiePlot' => $vendorDir . '/amenadiel/jpgraph/src/plot/PiePlot.php', - 'Amenadiel\\JpGraph\\Plot\\PiePlot3D' => $vendorDir . '/amenadiel/jpgraph/src/plot/PiePlot3D.php', - 'Amenadiel\\JpGraph\\Plot\\PiePlotC' => $vendorDir . '/amenadiel/jpgraph/src/plot/PiePlotC.php', - 'Amenadiel\\JpGraph\\Plot\\Plot' => $vendorDir . '/amenadiel/jpgraph/src/plot/Plot.php', - 'Amenadiel\\JpGraph\\Plot\\PlotBand' => $vendorDir . '/amenadiel/jpgraph/src/plot/PlotBand.php', - 'Amenadiel\\JpGraph\\Plot\\PlotLine' => $vendorDir . '/amenadiel/jpgraph/src/plot/PlotLine.php', - 'Amenadiel\\JpGraph\\Plot\\PlotMark' => $vendorDir . '/amenadiel/jpgraph/src/plot/PlotMark.php', - 'Amenadiel\\JpGraph\\Plot\\PolarPlot' => $vendorDir . '/amenadiel/jpgraph/src/plot/PolarPlot.php', - 'Amenadiel\\JpGraph\\Plot\\RadarPlot' => $vendorDir . '/amenadiel/jpgraph/src/plot/RadarPlot.php', - 'Amenadiel\\JpGraph\\Plot\\ScatterPlot' => $vendorDir . '/amenadiel/jpgraph/src/plot/ScatterPlot.php', - 'Amenadiel\\JpGraph\\Plot\\StockPlot' => $vendorDir . '/amenadiel/jpgraph/src/plot/StockPlot.php', - 'Amenadiel\\JpGraph\\Plot\\WindrosePlot' => $vendorDir . '/amenadiel/jpgraph/src/plot/WindrosePlot.php', - 'Amenadiel\\JpGraph\\Text\\CanvasRectangleText' => $vendorDir . '/amenadiel/jpgraph/src/text/CanvasRectangleText.php', - 'Amenadiel\\JpGraph\\Text\\GB2312toUTF8' => $vendorDir . '/amenadiel/jpgraph/src/text/GB2312toUTF8.php', - 'Amenadiel\\JpGraph\\Text\\GTextTable' => $vendorDir . '/amenadiel/jpgraph/src/text/GTextTable.php', - 'Amenadiel\\JpGraph\\Text\\GTextTableCell' => $vendorDir . '/amenadiel/jpgraph/src/text/GTextTableCell.php', - 'Amenadiel\\JpGraph\\Text\\GraphTabTitle' => $vendorDir . '/amenadiel/jpgraph/src/text/GraphTabTitle.php', - 'Amenadiel\\JpGraph\\Text\\LanguageConv' => $vendorDir . '/amenadiel/jpgraph/src/text/LanguageConv.php', - 'Amenadiel\\JpGraph\\Text\\SuperScriptText' => $vendorDir . '/amenadiel/jpgraph/src/text/SuperScriptText.php', - 'Amenadiel\\JpGraph\\Text\\TTF' => $vendorDir . '/amenadiel/jpgraph/src/text/TTF.php', - 'Amenadiel\\JpGraph\\Text\\Text' => $vendorDir . '/amenadiel/jpgraph/src/text/Text.php', - 'Amenadiel\\JpGraph\\Text\\TextProperty' => $vendorDir . '/amenadiel/jpgraph/src/text/TextProperty.php', - 'Amenadiel\\JpGraph\\Text\\TextPropertyBelow' => $vendorDir . '/amenadiel/jpgraph/src/text/TextPropertyBelow.php', - 'Amenadiel\\JpGraph\\Themes\\AquaTheme' => $vendorDir . '/amenadiel/jpgraph/src/themes/AquaTheme.php', - 'Amenadiel\\JpGraph\\Themes\\GreenTheme' => $vendorDir . '/amenadiel/jpgraph/src/themes/GreenTheme.php', - 'Amenadiel\\JpGraph\\Themes\\OceanTheme' => $vendorDir . '/amenadiel/jpgraph/src/themes/OceanTheme.php', - 'Amenadiel\\JpGraph\\Themes\\OrangeTheme' => $vendorDir . '/amenadiel/jpgraph/src/themes/OrangeTheme.php', - 'Amenadiel\\JpGraph\\Themes\\PastelTheme' => $vendorDir . '/amenadiel/jpgraph/src/themes/PastelTheme.php', - 'Amenadiel\\JpGraph\\Themes\\RoseTheme' => $vendorDir . '/amenadiel/jpgraph/src/themes/RoseTheme.php', - 'Amenadiel\\JpGraph\\Themes\\SoftyTheme' => $vendorDir . '/amenadiel/jpgraph/src/themes/SoftyTheme.php', - 'Amenadiel\\JpGraph\\Themes\\Theme' => $vendorDir . '/amenadiel/jpgraph/src/themes/Theme.php', - 'Amenadiel\\JpGraph\\Themes\\UniversalTheme' => $vendorDir . '/amenadiel/jpgraph/src/themes/UniversalTheme.php', - 'Amenadiel\\JpGraph\\Themes\\VividTheme' => $vendorDir . '/amenadiel/jpgraph/src/themes/VividTheme.php', - 'Amenadiel\\JpGraph\\Util\\Bezier' => $vendorDir . '/amenadiel/jpgraph/src/util/Bezier.php', - 'Amenadiel\\JpGraph\\Util\\ColorFactory' => $vendorDir . '/amenadiel/jpgraph/src/util/ColorFactory.php', - 'Amenadiel\\JpGraph\\Util\\DateLocale' => $vendorDir . '/amenadiel/jpgraph/src/util/DateLocale.php', - 'Amenadiel\\JpGraph\\Util\\DateScaleUtils' => $vendorDir . '/amenadiel/jpgraph/src/util/DateScaleUtils.php', - 'Amenadiel\\JpGraph\\Util\\ErrMsgText' => $vendorDir . '/amenadiel/jpgraph/src/util/ErrMsgText.php', - 'Amenadiel\\JpGraph\\Util\\FlagCache' => $vendorDir . '/amenadiel/jpgraph/src/util/FlagCache.php', - 'Amenadiel\\JpGraph\\Util\\FuncGenerator' => $vendorDir . '/amenadiel/jpgraph/src/util/FuncGenerator.php', - 'Amenadiel\\JpGraph\\Util\\GanttConstraint' => $vendorDir . '/amenadiel/jpgraph/src/util/GanttConstraint.php', - 'Amenadiel\\JpGraph\\Util\\JpGraphErrObject' => $vendorDir . '/amenadiel/jpgraph/src/util/JpGraphErrObject.php', - 'Amenadiel\\JpGraph\\Util\\JpGraphErrObjectImg' => $vendorDir . '/amenadiel/jpgraph/src/util/JpGraphErrObjectImg.php', - 'Amenadiel\\JpGraph\\Util\\JpGraphError' => $vendorDir . '/amenadiel/jpgraph/src/util/JpGraphError.php', - 'Amenadiel\\JpGraph\\Util\\JpGraphException' => $vendorDir . '/amenadiel/jpgraph/src/util/JpGraphException.php', - 'Amenadiel\\JpGraph\\Util\\JpGraphExceptionL' => $vendorDir . '/amenadiel/jpgraph/src/util/JpGraphExceptionL.php', - 'Amenadiel\\JpGraph\\Util\\JpgTimer' => $vendorDir . '/amenadiel/jpgraph/src/util/JpgTimer.php', - 'Amenadiel\\JpGraph\\Util\\LinearRegression' => $vendorDir . '/amenadiel/jpgraph/src/util/LinearRegression.php', - 'Amenadiel\\JpGraph\\Util\\RGB' => $vendorDir . '/amenadiel/jpgraph/src/util/RGB.php', - 'Amenadiel\\JpGraph\\Util\\ReadFileData' => $vendorDir . '/amenadiel/jpgraph/src/util/ReadFileData.php', - 'Amenadiel\\JpGraph\\Util\\Rectangle' => $vendorDir . '/amenadiel/jpgraph/src/util/Rectangle.php', - 'Amenadiel\\JpGraph\\Util\\Spline' => $vendorDir . '/amenadiel/jpgraph/src/util/Spline.php', - 'Console_Color2' => $vendorDir . '/pear/console_color2/Console/Color2.php', 'Console_Table' => $vendorDir . '/pear/console_table/Table.php', - 'Dapphp\\Radius\\EAPPacket' => $vendorDir . '/dapphp/radius/src/EAPPacket.php', - 'Dapphp\\Radius\\MsChapV2Packet' => $vendorDir . '/dapphp/radius/src/MsChapV2Packet.php', - 'Dapphp\\Radius\\Radius' => $vendorDir . '/dapphp/radius/src/Radius.php', - 'Dapphp\\Radius\\VendorId' => $vendorDir . '/dapphp/radius/src/VendorId.php', 'Datamatrix' => $vendorDir . '/tecnickcom/tcpdf/include/barcodes/datamatrix.php', 'EasyPeasyICS' => $vendorDir . '/phpmailer/phpmailer/extras/EasyPeasyICS.php', 'GeSHi' => $vendorDir . '/easybook/geshi/geshi.php', - 'HTMLPurifier' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier.php', - 'HTMLPurifier_Arborize' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/Arborize.php', - 'HTMLPurifier_AttrCollections' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/AttrCollections.php', - 'HTMLPurifier_AttrDef' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef.php', - 'HTMLPurifier_AttrDef_CSS' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS.php', - 'HTMLPurifier_AttrDef_CSS_AlphaValue' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/AlphaValue.php', - 'HTMLPurifier_AttrDef_CSS_Background' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Background.php', - 'HTMLPurifier_AttrDef_CSS_BackgroundPosition' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/BackgroundPosition.php', - 'HTMLPurifier_AttrDef_CSS_Border' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Border.php', - 'HTMLPurifier_AttrDef_CSS_Color' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Color.php', - 'HTMLPurifier_AttrDef_CSS_Composite' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Composite.php', - 'HTMLPurifier_AttrDef_CSS_DenyElementDecorator' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/DenyElementDecorator.php', - 'HTMLPurifier_AttrDef_CSS_Filter' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Filter.php', - 'HTMLPurifier_AttrDef_CSS_Font' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Font.php', - 'HTMLPurifier_AttrDef_CSS_FontFamily' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/FontFamily.php', - 'HTMLPurifier_AttrDef_CSS_Ident' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Ident.php', - 'HTMLPurifier_AttrDef_CSS_ImportantDecorator' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/ImportantDecorator.php', - 'HTMLPurifier_AttrDef_CSS_Length' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Length.php', - 'HTMLPurifier_AttrDef_CSS_ListStyle' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/ListStyle.php', - 'HTMLPurifier_AttrDef_CSS_Multiple' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Multiple.php', - 'HTMLPurifier_AttrDef_CSS_Number' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Number.php', - 'HTMLPurifier_AttrDef_CSS_Percentage' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Percentage.php', - 'HTMLPurifier_AttrDef_CSS_TextDecoration' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/TextDecoration.php', - 'HTMLPurifier_AttrDef_CSS_URI' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/URI.php', - 'HTMLPurifier_AttrDef_Clone' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Clone.php', - 'HTMLPurifier_AttrDef_Enum' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Enum.php', - 'HTMLPurifier_AttrDef_HTML_Bool' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Bool.php', - 'HTMLPurifier_AttrDef_HTML_Class' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Class.php', - 'HTMLPurifier_AttrDef_HTML_Color' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Color.php', - 'HTMLPurifier_AttrDef_HTML_FrameTarget' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/FrameTarget.php', - 'HTMLPurifier_AttrDef_HTML_ID' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/ID.php', - 'HTMLPurifier_AttrDef_HTML_Length' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Length.php', - 'HTMLPurifier_AttrDef_HTML_LinkTypes' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/LinkTypes.php', - 'HTMLPurifier_AttrDef_HTML_MultiLength' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/MultiLength.php', - 'HTMLPurifier_AttrDef_HTML_Nmtokens' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Nmtokens.php', - 'HTMLPurifier_AttrDef_HTML_Pixels' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Pixels.php', - 'HTMLPurifier_AttrDef_Integer' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Integer.php', - 'HTMLPurifier_AttrDef_Lang' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Lang.php', - 'HTMLPurifier_AttrDef_Switch' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Switch.php', - 'HTMLPurifier_AttrDef_Text' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Text.php', - 'HTMLPurifier_AttrDef_URI' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI.php', - 'HTMLPurifier_AttrDef_URI_Email' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI/Email.php', - 'HTMLPurifier_AttrDef_URI_Email_SimpleCheck' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI/Email/SimpleCheck.php', - 'HTMLPurifier_AttrDef_URI_Host' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI/Host.php', - 'HTMLPurifier_AttrDef_URI_IPv4' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI/IPv4.php', - 'HTMLPurifier_AttrDef_URI_IPv6' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI/IPv6.php', - 'HTMLPurifier_AttrTransform' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/AttrTransform.php', - 'HTMLPurifier_AttrTransform_Background' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/AttrTransform/Background.php', - 'HTMLPurifier_AttrTransform_BdoDir' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/AttrTransform/BdoDir.php', - 'HTMLPurifier_AttrTransform_BgColor' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/AttrTransform/BgColor.php', - 'HTMLPurifier_AttrTransform_BoolToCSS' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/AttrTransform/BoolToCSS.php', - 'HTMLPurifier_AttrTransform_Border' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/AttrTransform/Border.php', - 'HTMLPurifier_AttrTransform_EnumToCSS' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/AttrTransform/EnumToCSS.php', - 'HTMLPurifier_AttrTransform_ImgRequired' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/AttrTransform/ImgRequired.php', - 'HTMLPurifier_AttrTransform_ImgSpace' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/AttrTransform/ImgSpace.php', - 'HTMLPurifier_AttrTransform_Input' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/AttrTransform/Input.php', - 'HTMLPurifier_AttrTransform_Lang' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/AttrTransform/Lang.php', - 'HTMLPurifier_AttrTransform_Length' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/AttrTransform/Length.php', - 'HTMLPurifier_AttrTransform_Name' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/AttrTransform/Name.php', - 'HTMLPurifier_AttrTransform_NameSync' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/AttrTransform/NameSync.php', - 'HTMLPurifier_AttrTransform_Nofollow' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/AttrTransform/Nofollow.php', - 'HTMLPurifier_AttrTransform_SafeEmbed' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/AttrTransform/SafeEmbed.php', - 'HTMLPurifier_AttrTransform_SafeObject' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/AttrTransform/SafeObject.php', - 'HTMLPurifier_AttrTransform_SafeParam' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/AttrTransform/SafeParam.php', - 'HTMLPurifier_AttrTransform_ScriptRequired' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/AttrTransform/ScriptRequired.php', - 'HTMLPurifier_AttrTransform_TargetBlank' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/AttrTransform/TargetBlank.php', - 'HTMLPurifier_AttrTransform_TargetNoreferrer' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/AttrTransform/TargetNoreferrer.php', - 'HTMLPurifier_AttrTransform_Textarea' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/AttrTransform/Textarea.php', - 'HTMLPurifier_AttrTypes' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/AttrTypes.php', - 'HTMLPurifier_AttrValidator' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/AttrValidator.php', - 'HTMLPurifier_Bootstrap' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/Bootstrap.php', - 'HTMLPurifier_CSSDefinition' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/CSSDefinition.php', - 'HTMLPurifier_ChildDef' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef.php', - 'HTMLPurifier_ChildDef_Chameleon' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Chameleon.php', - 'HTMLPurifier_ChildDef_Custom' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Custom.php', - 'HTMLPurifier_ChildDef_Empty' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Empty.php', - 'HTMLPurifier_ChildDef_List' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/List.php', - 'HTMLPurifier_ChildDef_Optional' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Optional.php', - 'HTMLPurifier_ChildDef_Required' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Required.php', - 'HTMLPurifier_ChildDef_StrictBlockquote' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/StrictBlockquote.php', - 'HTMLPurifier_ChildDef_Table' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Table.php', - 'HTMLPurifier_Config' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/Config.php', - 'HTMLPurifier_ConfigSchema' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema.php', - 'HTMLPurifier_ConfigSchema_Builder_ConfigSchema' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/Builder/ConfigSchema.php', - 'HTMLPurifier_ConfigSchema_Builder_Xml' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/Builder/Xml.php', - 'HTMLPurifier_ConfigSchema_Exception' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/Exception.php', - 'HTMLPurifier_ConfigSchema_Interchange' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/Interchange.php', - 'HTMLPurifier_ConfigSchema_InterchangeBuilder' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/InterchangeBuilder.php', - 'HTMLPurifier_ConfigSchema_Interchange_Directive' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/Interchange/Directive.php', - 'HTMLPurifier_ConfigSchema_Interchange_Id' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/Interchange/Id.php', - 'HTMLPurifier_ConfigSchema_Validator' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/Validator.php', - 'HTMLPurifier_ConfigSchema_ValidatorAtom' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/ValidatorAtom.php', - 'HTMLPurifier_ContentSets' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/ContentSets.php', - 'HTMLPurifier_Context' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/Context.php', - 'HTMLPurifier_Definition' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/Definition.php', - 'HTMLPurifier_DefinitionCache' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/DefinitionCache.php', - 'HTMLPurifier_DefinitionCacheFactory' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/DefinitionCacheFactory.php', - 'HTMLPurifier_DefinitionCache_Decorator' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/DefinitionCache/Decorator.php', - 'HTMLPurifier_DefinitionCache_Decorator_Cleanup' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/DefinitionCache/Decorator/Cleanup.php', - 'HTMLPurifier_DefinitionCache_Decorator_Memory' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/DefinitionCache/Decorator/Memory.php', - 'HTMLPurifier_DefinitionCache_Null' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/DefinitionCache/Null.php', - 'HTMLPurifier_DefinitionCache_Serializer' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/DefinitionCache/Serializer.php', - 'HTMLPurifier_Doctype' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/Doctype.php', - 'HTMLPurifier_DoctypeRegistry' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/DoctypeRegistry.php', - 'HTMLPurifier_ElementDef' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/ElementDef.php', - 'HTMLPurifier_Encoder' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/Encoder.php', - 'HTMLPurifier_EntityLookup' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/EntityLookup.php', - 'HTMLPurifier_EntityParser' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/EntityParser.php', - 'HTMLPurifier_ErrorCollector' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/ErrorCollector.php', - 'HTMLPurifier_ErrorStruct' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/ErrorStruct.php', - 'HTMLPurifier_Exception' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/Exception.php', - 'HTMLPurifier_Filter' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/Filter.php', - 'HTMLPurifier_Filter_ExtractStyleBlocks' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/Filter/ExtractStyleBlocks.php', - 'HTMLPurifier_Filter_YouTube' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/Filter/YouTube.php', - 'HTMLPurifier_Generator' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/Generator.php', - 'HTMLPurifier_HTMLDefinition' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/HTMLDefinition.php', - 'HTMLPurifier_HTMLModule' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule.php', - 'HTMLPurifier_HTMLModuleManager' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModuleManager.php', - 'HTMLPurifier_HTMLModule_Bdo' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Bdo.php', - 'HTMLPurifier_HTMLModule_CommonAttributes' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/CommonAttributes.php', - 'HTMLPurifier_HTMLModule_Edit' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Edit.php', - 'HTMLPurifier_HTMLModule_Forms' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Forms.php', - 'HTMLPurifier_HTMLModule_Hypertext' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Hypertext.php', - 'HTMLPurifier_HTMLModule_Iframe' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Iframe.php', - 'HTMLPurifier_HTMLModule_Image' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Image.php', - 'HTMLPurifier_HTMLModule_Legacy' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Legacy.php', - 'HTMLPurifier_HTMLModule_List' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/List.php', - 'HTMLPurifier_HTMLModule_Name' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Name.php', - 'HTMLPurifier_HTMLModule_Nofollow' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Nofollow.php', - 'HTMLPurifier_HTMLModule_NonXMLCommonAttributes' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/NonXMLCommonAttributes.php', - 'HTMLPurifier_HTMLModule_Object' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Object.php', - 'HTMLPurifier_HTMLModule_Presentation' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Presentation.php', - 'HTMLPurifier_HTMLModule_Proprietary' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Proprietary.php', - 'HTMLPurifier_HTMLModule_Ruby' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Ruby.php', - 'HTMLPurifier_HTMLModule_SafeEmbed' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/SafeEmbed.php', - 'HTMLPurifier_HTMLModule_SafeObject' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/SafeObject.php', - 'HTMLPurifier_HTMLModule_SafeScripting' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/SafeScripting.php', - 'HTMLPurifier_HTMLModule_Scripting' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Scripting.php', - 'HTMLPurifier_HTMLModule_StyleAttribute' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/StyleAttribute.php', - 'HTMLPurifier_HTMLModule_Tables' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tables.php', - 'HTMLPurifier_HTMLModule_Target' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Target.php', - 'HTMLPurifier_HTMLModule_TargetBlank' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/TargetBlank.php', - 'HTMLPurifier_HTMLModule_TargetNoreferrer' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/TargetNoreferrer.php', - 'HTMLPurifier_HTMLModule_Text' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Text.php', - 'HTMLPurifier_HTMLModule_Tidy' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy.php', - 'HTMLPurifier_HTMLModule_Tidy_Name' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/Name.php', - 'HTMLPurifier_HTMLModule_Tidy_Proprietary' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/Proprietary.php', - 'HTMLPurifier_HTMLModule_Tidy_Strict' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/Strict.php', - 'HTMLPurifier_HTMLModule_Tidy_Transitional' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/Transitional.php', - 'HTMLPurifier_HTMLModule_Tidy_XHTML' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/XHTML.php', - 'HTMLPurifier_HTMLModule_Tidy_XHTMLAndHTML4' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/XHTMLAndHTML4.php', - 'HTMLPurifier_HTMLModule_XMLCommonAttributes' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/XMLCommonAttributes.php', - 'HTMLPurifier_IDAccumulator' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/IDAccumulator.php', - 'HTMLPurifier_Injector' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/Injector.php', - 'HTMLPurifier_Injector_AutoParagraph' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/Injector/AutoParagraph.php', - 'HTMLPurifier_Injector_DisplayLinkURI' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/Injector/DisplayLinkURI.php', - 'HTMLPurifier_Injector_Linkify' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/Injector/Linkify.php', - 'HTMLPurifier_Injector_PurifierLinkify' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/Injector/PurifierLinkify.php', - 'HTMLPurifier_Injector_RemoveEmpty' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/Injector/RemoveEmpty.php', - 'HTMLPurifier_Injector_RemoveSpansWithoutAttributes' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/Injector/RemoveSpansWithoutAttributes.php', - 'HTMLPurifier_Injector_SafeObject' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/Injector/SafeObject.php', - 'HTMLPurifier_Language' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/Language.php', - 'HTMLPurifier_LanguageFactory' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/LanguageFactory.php', - 'HTMLPurifier_Language_en_x_test' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/Language/classes/en-x-test.php', - 'HTMLPurifier_Length' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/Length.php', - 'HTMLPurifier_Lexer' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/Lexer.php', - 'HTMLPurifier_Lexer_DOMLex' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/Lexer/DOMLex.php', - 'HTMLPurifier_Lexer_DirectLex' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/Lexer/DirectLex.php', - 'HTMLPurifier_Lexer_PH5P' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/Lexer/PH5P.php', - 'HTMLPurifier_Node' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/Node.php', - 'HTMLPurifier_Node_Comment' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/Node/Comment.php', - 'HTMLPurifier_Node_Element' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/Node/Element.php', - 'HTMLPurifier_Node_Text' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/Node/Text.php', - 'HTMLPurifier_PercentEncoder' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/PercentEncoder.php', - 'HTMLPurifier_Printer' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/Printer.php', - 'HTMLPurifier_Printer_CSSDefinition' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/Printer/CSSDefinition.php', - 'HTMLPurifier_Printer_ConfigForm' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/Printer/ConfigForm.php', - 'HTMLPurifier_Printer_ConfigForm_NullDecorator' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/Printer/ConfigForm.php', - 'HTMLPurifier_Printer_ConfigForm_bool' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/Printer/ConfigForm.php', - 'HTMLPurifier_Printer_ConfigForm_default' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/Printer/ConfigForm.php', - 'HTMLPurifier_Printer_HTMLDefinition' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/Printer/HTMLDefinition.php', - 'HTMLPurifier_PropertyList' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/PropertyList.php', - 'HTMLPurifier_PropertyListIterator' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/PropertyListIterator.php', - 'HTMLPurifier_Queue' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/Queue.php', - 'HTMLPurifier_Strategy' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/Strategy.php', - 'HTMLPurifier_Strategy_Composite' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/Composite.php', - 'HTMLPurifier_Strategy_Core' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/Core.php', - 'HTMLPurifier_Strategy_FixNesting' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/FixNesting.php', - 'HTMLPurifier_Strategy_MakeWellFormed' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/MakeWellFormed.php', - 'HTMLPurifier_Strategy_RemoveForeignElements' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/RemoveForeignElements.php', - 'HTMLPurifier_Strategy_ValidateAttributes' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/ValidateAttributes.php', - 'HTMLPurifier_StringHash' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/StringHash.php', - 'HTMLPurifier_StringHashParser' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/StringHashParser.php', - 'HTMLPurifier_TagTransform' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/TagTransform.php', - 'HTMLPurifier_TagTransform_Font' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/TagTransform/Font.php', - 'HTMLPurifier_TagTransform_Simple' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/TagTransform/Simple.php', - 'HTMLPurifier_Token' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/Token.php', - 'HTMLPurifier_TokenFactory' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/TokenFactory.php', - 'HTMLPurifier_Token_Comment' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/Token/Comment.php', - 'HTMLPurifier_Token_Empty' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/Token/Empty.php', - 'HTMLPurifier_Token_End' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/Token/End.php', - 'HTMLPurifier_Token_Start' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/Token/Start.php', - 'HTMLPurifier_Token_Tag' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/Token/Tag.php', - 'HTMLPurifier_Token_Text' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/Token/Text.php', - 'HTMLPurifier_URI' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/URI.php', - 'HTMLPurifier_URIDefinition' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/URIDefinition.php', - 'HTMLPurifier_URIFilter' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter.php', - 'HTMLPurifier_URIFilter_DisableExternal' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/DisableExternal.php', - 'HTMLPurifier_URIFilter_DisableExternalResources' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/DisableExternalResources.php', - 'HTMLPurifier_URIFilter_DisableResources' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/DisableResources.php', - 'HTMLPurifier_URIFilter_HostBlacklist' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/HostBlacklist.php', - 'HTMLPurifier_URIFilter_MakeAbsolute' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/MakeAbsolute.php', - 'HTMLPurifier_URIFilter_Munge' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/Munge.php', - 'HTMLPurifier_URIFilter_SafeIframe' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/SafeIframe.php', - 'HTMLPurifier_URIParser' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/URIParser.php', - 'HTMLPurifier_URIScheme' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/URIScheme.php', - 'HTMLPurifier_URISchemeRegistry' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/URISchemeRegistry.php', - 'HTMLPurifier_URIScheme_data' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/URIScheme/data.php', - 'HTMLPurifier_URIScheme_file' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/URIScheme/file.php', - 'HTMLPurifier_URIScheme_ftp' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/URIScheme/ftp.php', - 'HTMLPurifier_URIScheme_http' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/URIScheme/http.php', - 'HTMLPurifier_URIScheme_https' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/URIScheme/https.php', - 'HTMLPurifier_URIScheme_mailto' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/URIScheme/mailto.php', - 'HTMLPurifier_URIScheme_news' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/URIScheme/news.php', - 'HTMLPurifier_URIScheme_nntp' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/URIScheme/nntp.php', - 'HTMLPurifier_URIScheme_tel' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/URIScheme/tel.php', - 'HTMLPurifier_UnitConverter' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/UnitConverter.php', - 'HTMLPurifier_VarParser' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/VarParser.php', - 'HTMLPurifier_VarParserException' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/VarParserException.php', - 'HTMLPurifier_VarParser_Flexible' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/VarParser/Flexible.php', - 'HTMLPurifier_VarParser_Native' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/VarParser/Native.php', - 'HTMLPurifier_Zipper' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/Zipper.php', - 'LibreNMS\\Component' => $baseDir . '/LibreNMS/Component.php', - 'LibreNMS\\ComposerHelper' => $baseDir . '/LibreNMS/ComposerHelper.php', - 'LibreNMS\\Device\\Sensor' => $baseDir . '/LibreNMS/Device/Sensor.php', - 'LibreNMS\\Device\\WirelessSensor' => $baseDir . '/LibreNMS/Device/WirelessSensor.php', - 'LibreNMS\\Exceptions\\DatabaseConnectException' => $baseDir . '/LibreNMS/Exceptions/DatabaseConnectException.php', - 'LibreNMS\\Exceptions\\FileExistsException' => $baseDir . '/LibreNMS/Exceptions/FileExistsException.php', - 'LibreNMS\\Exceptions\\HostExistsException' => $baseDir . '/LibreNMS/Exceptions/HostExistsException.php', - 'LibreNMS\\Exceptions\\HostIpExistsException' => $baseDir . '/LibreNMS/Exceptions/HostIpExistsException.php', - 'LibreNMS\\Exceptions\\HostUnreachableException' => $baseDir . '/LibreNMS/Exceptions/HostUnreachableException.php', - 'LibreNMS\\Exceptions\\HostUnreachablePingException' => $baseDir . '/LibreNMS/Exceptions/HostUnreachablePingException.php', - 'LibreNMS\\Exceptions\\HostUnreachableSnmpException' => $baseDir . '/LibreNMS/Exceptions/HostUnreachableSnmpException.php', - 'LibreNMS\\Exceptions\\InvalidPortAssocModeException' => $baseDir . '/LibreNMS/Exceptions/InvalidPortAssocModeException.php', - 'LibreNMS\\Exceptions\\InvalidRrdTypeException' => $baseDir . '/LibreNMS/Exceptions/InvalidRrdTypeException.php', - 'LibreNMS\\Exceptions\\SnmpVersionUnsupportedException' => $baseDir . '/LibreNMS/Exceptions/SnmpVersionUnsupportedException.php', - 'LibreNMS\\IRCBot' => $baseDir . '/LibreNMS/IRCBot.php', - 'LibreNMS\\Interfaces\\Discovery\\DiscoveryModule' => $baseDir . '/LibreNMS/Interfaces/Discovery/DiscoveryModule.php', - 'LibreNMS\\Interfaces\\Discovery\\Sensors\\WirelessApCountDiscovery' => $baseDir . '/LibreNMS/Interfaces/Discovery/Sensors/WirelessApCountDiscovery.php', - 'LibreNMS\\Interfaces\\Discovery\\Sensors\\WirelessCapacityDiscovery' => $baseDir . '/LibreNMS/Interfaces/Discovery/Sensors/WirelessCapacityDiscovery.php', - 'LibreNMS\\Interfaces\\Discovery\\Sensors\\WirelessCcqDiscovery' => $baseDir . '/LibreNMS/Interfaces/Discovery/Sensors/WirelessCcqDiscovery.php', - 'LibreNMS\\Interfaces\\Discovery\\Sensors\\WirelessClientsDiscovery' => $baseDir . '/LibreNMS/Interfaces/Discovery/Sensors/WirelessClientsDiscovery.php', - 'LibreNMS\\Interfaces\\Discovery\\Sensors\\WirelessDistanceDiscovery' => $baseDir . '/LibreNMS/Interfaces/Discovery/Sensors/WirelessDistanceDiscovery.php', - 'LibreNMS\\Interfaces\\Discovery\\Sensors\\WirelessErrorRateDiscovery' => $baseDir . '/LibreNMS/Interfaces/Discovery/Sensors/WirelessErrorRateDiscovery.php', - 'LibreNMS\\Interfaces\\Discovery\\Sensors\\WirelessErrorRatioDiscovery' => $baseDir . '/LibreNMS/Interfaces/Discovery/Sensors/WirelessErrorRatioDiscovery.php', - 'LibreNMS\\Interfaces\\Discovery\\Sensors\\WirelessFrequencyDiscovery' => $baseDir . '/LibreNMS/Interfaces/Discovery/Sensors/WirelessFrequencyDiscovery.php', - 'LibreNMS\\Interfaces\\Discovery\\Sensors\\WirelessNoiseFloorDiscovery' => $baseDir . '/LibreNMS/Interfaces/Discovery/Sensors/WirelessNoiseFloorDiscovery.php', - 'LibreNMS\\Interfaces\\Discovery\\Sensors\\WirelessPowerDiscovery' => $baseDir . '/LibreNMS/Interfaces/Discovery/Sensors/WirelessPowerDiscovery.php', - 'LibreNMS\\Interfaces\\Discovery\\Sensors\\WirelessQualityDiscovery' => $baseDir . '/LibreNMS/Interfaces/Discovery/Sensors/WirelessQualityDiscovery.php', - 'LibreNMS\\Interfaces\\Discovery\\Sensors\\WirelessRateDiscovery' => $baseDir . '/LibreNMS/Interfaces/Discovery/Sensors/WirelessRateDiscovery.php', - 'LibreNMS\\Interfaces\\Discovery\\Sensors\\WirelessRssiDiscovery' => $baseDir . '/LibreNMS/Interfaces/Discovery/Sensors/WirelessRssiDiscovery.php', - 'LibreNMS\\Interfaces\\Discovery\\Sensors\\WirelessSnrDiscovery' => $baseDir . '/LibreNMS/Interfaces/Discovery/Sensors/WirelessSnrDiscovery.php', - 'LibreNMS\\Interfaces\\Discovery\\Sensors\\WirelessUtilizationDiscovery' => $baseDir . '/LibreNMS/Interfaces/Discovery/Sensors/WirelessUtilizationDiscovery.php', - 'LibreNMS\\Interfaces\\Polling\\PollerModule' => $baseDir . '/LibreNMS/Interfaces/Polling/PollerModule.php', - 'LibreNMS\\Interfaces\\Polling\\Sensors\\WirelessApCountPolling' => $baseDir . '/LibreNMS/Interfaces/Polling/Sensors/WirelessApCountPolling.php', - 'LibreNMS\\Interfaces\\Polling\\Sensors\\WirelessCapacityPolling' => $baseDir . '/LibreNMS/Interfaces/Polling/Sensors/WirelessCapacityPolling.php', - 'LibreNMS\\Interfaces\\Polling\\Sensors\\WirelessCcqPolling' => $baseDir . '/LibreNMS/Interfaces/Polling/Sensors/WirelessCcqPolling.php', - 'LibreNMS\\Interfaces\\Polling\\Sensors\\WirelessClientsPolling' => $baseDir . '/LibreNMS/Interfaces/Polling/Sensors/WirelessClientsPolling.php', - 'LibreNMS\\Interfaces\\Polling\\Sensors\\WirelessDistancePolling' => $baseDir . '/LibreNMS/Interfaces/Polling/Sensors/WirelessDistancePolling.php', - 'LibreNMS\\Interfaces\\Polling\\Sensors\\WirelessErrorRatePolling' => $baseDir . '/LibreNMS/Interfaces/Polling/Sensors/WirelessErrorRatePolling.php', - 'LibreNMS\\Interfaces\\Polling\\Sensors\\WirelessErrorRatioPolling' => $baseDir . '/LibreNMS/Interfaces/Polling/Sensors/WirelessErrorRatioPolling.php', - 'LibreNMS\\Interfaces\\Polling\\Sensors\\WirelessFrequencyPolling' => $baseDir . '/LibreNMS/Interfaces/Polling/Sensors/WirelessFrequencyPolling.php', - 'LibreNMS\\Interfaces\\Polling\\Sensors\\WirelessNoiseFloorPolling' => $baseDir . '/LibreNMS/Interfaces/Polling/Sensors/WirelessNoiseFloorPolling.php', - 'LibreNMS\\Interfaces\\Polling\\Sensors\\WirelessPowerPolling' => $baseDir . '/LibreNMS/Interfaces/Polling/Sensors/WirelessPowerPolling.php', - 'LibreNMS\\Interfaces\\Polling\\Sensors\\WirelessQualityPolling' => $baseDir . '/LibreNMS/Interfaces/Polling/Sensors/WirelessQualityPolling.php', - 'LibreNMS\\Interfaces\\Polling\\Sensors\\WirelessRatePolling' => $baseDir . '/LibreNMS/Interfaces/Polling/Sensors/WirelessRatePolling.php', - 'LibreNMS\\Interfaces\\Polling\\Sensors\\WirelessRssiPolling' => $baseDir . '/LibreNMS/Interfaces/Polling/Sensors/WirelessRssiPolling.php', - 'LibreNMS\\Interfaces\\Polling\\Sensors\\WirelessSnrPolling' => $baseDir . '/LibreNMS/Interfaces/Polling/Sensors/WirelessSnrPolling.php', - 'LibreNMS\\Interfaces\\Polling\\Sensors\\WirelessUtilizationPolling' => $baseDir . '/LibreNMS/Interfaces/Polling/Sensors/WirelessUtilizationPolling.php', - 'LibreNMS\\OS' => $baseDir . '/LibreNMS/OS.php', - 'LibreNMS\\OS\\Airos' => $baseDir . '/LibreNMS/OS/Airos.php', - 'LibreNMS\\OS\\AirosAf' => $baseDir . '/LibreNMS/OS/AirosAf.php', - 'LibreNMS\\OS\\Airport' => $baseDir . '/LibreNMS/OS/Airport.php', - 'LibreNMS\\OS\\Arubaos' => $baseDir . '/LibreNMS/OS/Arubaos.php', - 'LibreNMS\\OS\\Ciscowlc' => $baseDir . '/LibreNMS/OS/Ciscowlc.php', - 'LibreNMS\\OS\\Deliberant' => $baseDir . '/LibreNMS/OS/Deliberant.php', - 'LibreNMS\\OS\\Extendair' => $baseDir . '/LibreNMS/OS/Extendair.php', - 'LibreNMS\\OS\\Generic' => $baseDir . '/LibreNMS/OS/Generic.php', - 'LibreNMS\\OS\\Helios' => $baseDir . '/LibreNMS/OS/Helios.php', - 'LibreNMS\\OS\\Hpmsm' => $baseDir . '/LibreNMS/OS/Hpmsm.php', - 'LibreNMS\\OS\\Ios' => $baseDir . '/LibreNMS/OS/Ios.php', - 'LibreNMS\\OS\\Mimosa' => $baseDir . '/LibreNMS/OS/Mimosa.php', - 'LibreNMS\\OS\\Routeros' => $baseDir . '/LibreNMS/OS/Routeros.php', - 'LibreNMS\\OS\\Siklu' => $baseDir . '/LibreNMS/OS/Siklu.php', - 'LibreNMS\\OS\\Symbol' => $baseDir . '/LibreNMS/OS/Symbol.php', - 'LibreNMS\\OS\\Unifi' => $baseDir . '/LibreNMS/OS/Unifi.php', - 'LibreNMS\\OS\\XirrusAos' => $baseDir . '/LibreNMS/OS/XirrusAos.php', - 'LibreNMS\\ObjectCache' => $baseDir . '/LibreNMS/ObjectCache.php', - 'LibreNMS\\Plugins' => $baseDir . '/LibreNMS/Plugins.php', - 'LibreNMS\\Proc' => $baseDir . '/LibreNMS/Proc.php', - 'LibreNMS\\RRDRecursiveFilterIterator' => $baseDir . '/LibreNMS/RRDRecursiveFilterIterator.php', - 'LibreNMS\\RRD\\RrdDefinition' => $baseDir . '/LibreNMS/RRD/RrdDefinition.php', - 'LibreNMS\\Tests\\AlertTest' => $baseDir . '/tests/AlertingTest.php', - 'LibreNMS\\Tests\\CommonFunctionsTest' => $baseDir . '/tests/CommonFunctionsTest.php', - 'LibreNMS\\Tests\\DBSetupTest' => $baseDir . '/tests/DBSetupTest.php', - 'LibreNMS\\Tests\\DBTestCase' => $baseDir . '/tests/DBTestCase.php', - 'LibreNMS\\Tests\\FunctionsTest' => $baseDir . '/tests/FunctionsTest.php', - 'LibreNMS\\Tests\\OSDiscoveryTest' => $baseDir . '/tests/OSDiscoveryTest.php', - 'LibreNMS\\Tests\\RrdDefinitionTest' => $baseDir . '/tests/RrdDefinitionTest.php', - 'LibreNMS\\Tests\\RrdtoolTest' => $baseDir . '/tests/RrdtoolTest.php', - 'LibreNMS\\Tests\\SVGTest' => $baseDir . '/tests/SVGTest.php', - 'LibreNMS\\Tests\\SyslogTest' => $baseDir . '/tests/SyslogTest.php', - 'LibreNMS\\Tests\\YamlTest' => $baseDir . '/tests/YamlTest.php', 'PDF417' => $vendorDir . '/tecnickcom/tcpdf/include/barcodes/pdf417.php', 'PHPMailer' => $vendorDir . '/phpmailer/phpmailer/class.phpmailer.php', 'PHPMailerOAuth' => $vendorDir . '/phpmailer/phpmailer/class.phpmaileroauth.php', 'PHPMailerOAuthGoogle' => $vendorDir . '/phpmailer/phpmailer/class.phpmaileroauthgoogle.php', 'POP3' => $vendorDir . '/phpmailer/phpmailer/class.pop3.php', - 'PhpAmqpLib\\Channel\\AMQPChannel' => $vendorDir . '/php-amqplib/php-amqplib/PhpAmqpLib/Channel/AMQPChannel.php', - 'PhpAmqpLib\\Channel\\AbstractChannel' => $vendorDir . '/php-amqplib/php-amqplib/PhpAmqpLib/Channel/AbstractChannel.php', - 'PhpAmqpLib\\Connection\\AMQPConnection' => $vendorDir . '/php-amqplib/php-amqplib/PhpAmqpLib/Connection/AMQPConnection.php', - 'PhpAmqpLib\\Connection\\AMQPSSLConnection' => $vendorDir . '/php-amqplib/php-amqplib/PhpAmqpLib/Connection/AMQPSSLConnection.php', - 'PhpAmqpLib\\Connection\\AMQPSocketConnection' => $vendorDir . '/php-amqplib/php-amqplib/PhpAmqpLib/Connection/AMQPSocketConnection.php', - 'PhpAmqpLib\\Connection\\AMQPStreamConnection' => $vendorDir . '/php-amqplib/php-amqplib/PhpAmqpLib/Connection/AMQPStreamConnection.php', - 'PhpAmqpLib\\Connection\\AbstractConnection' => $vendorDir . '/php-amqplib/php-amqplib/PhpAmqpLib/Connection/AbstractConnection.php', - 'PhpAmqpLib\\Exception\\AMQPChannelException' => $vendorDir . '/php-amqplib/php-amqplib/PhpAmqpLib/Exception/AMQPChannelException.php', - 'PhpAmqpLib\\Exception\\AMQPConnectionException' => $vendorDir . '/php-amqplib/php-amqplib/PhpAmqpLib/Exception/AMQPConnectionException.php', - 'PhpAmqpLib\\Exception\\AMQPException' => $vendorDir . '/php-amqplib/php-amqplib/PhpAmqpLib/Exception/AMQPException.php', - 'PhpAmqpLib\\Exception\\AMQPExceptionInterface' => $vendorDir . '/php-amqplib/php-amqplib/PhpAmqpLib/Exception/AMQPExceptionInterface.php', - 'PhpAmqpLib\\Exception\\AMQPOutOfBoundsException' => $vendorDir . '/php-amqplib/php-amqplib/PhpAmqpLib/Exception/AMQPOutOfBoundsException.php', - 'PhpAmqpLib\\Exception\\AMQPProtocolChannelException' => $vendorDir . '/php-amqplib/php-amqplib/PhpAmqpLib/Exception/AMQPProtocolChannelException.php', - 'PhpAmqpLib\\Exception\\AMQPProtocolConnectionException' => $vendorDir . '/php-amqplib/php-amqplib/PhpAmqpLib/Exception/AMQPProtocolConnectionException.php', - 'PhpAmqpLib\\Exception\\AMQPProtocolException' => $vendorDir . '/php-amqplib/php-amqplib/PhpAmqpLib/Exception/AMQPProtocolException.php', - 'PhpAmqpLib\\Exception\\AMQPRuntimeException' => $vendorDir . '/php-amqplib/php-amqplib/PhpAmqpLib/Exception/AMQPRuntimeException.php', - 'PhpAmqpLib\\Exception\\AMQPTimeoutException' => $vendorDir . '/php-amqplib/php-amqplib/PhpAmqpLib/Exception/AMQPTimeoutException.php', - 'PhpAmqpLib\\Helper\\MiscHelper' => $vendorDir . '/php-amqplib/php-amqplib/PhpAmqpLib/Helper/MiscHelper.php', - 'PhpAmqpLib\\Helper\\Protocol\\MethodMap080' => $vendorDir . '/php-amqplib/php-amqplib/PhpAmqpLib/Helper/Protocol/MethodMap080.php', - 'PhpAmqpLib\\Helper\\Protocol\\MethodMap091' => $vendorDir . '/php-amqplib/php-amqplib/PhpAmqpLib/Helper/Protocol/MethodMap091.php', - 'PhpAmqpLib\\Helper\\Protocol\\Protocol080' => $vendorDir . '/php-amqplib/php-amqplib/PhpAmqpLib/Helper/Protocol/Protocol080.php', - 'PhpAmqpLib\\Helper\\Protocol\\Protocol091' => $vendorDir . '/php-amqplib/php-amqplib/PhpAmqpLib/Helper/Protocol/Protocol091.php', - 'PhpAmqpLib\\Helper\\Protocol\\Wait080' => $vendorDir . '/php-amqplib/php-amqplib/PhpAmqpLib/Helper/Protocol/Wait080.php', - 'PhpAmqpLib\\Helper\\Protocol\\Wait091' => $vendorDir . '/php-amqplib/php-amqplib/PhpAmqpLib/Helper/Protocol/Wait091.php', - 'PhpAmqpLib\\Message\\AMQPMessage' => $vendorDir . '/php-amqplib/php-amqplib/PhpAmqpLib/Message/AMQPMessage.php', - 'PhpAmqpLib\\Tests\\Functional\\AbstractPublishConsumeTest' => $vendorDir . '/php-amqplib/php-amqplib/PhpAmqpLib/Tests/Functional/AbstractPublishConsumeTest.php', - 'PhpAmqpLib\\Tests\\Functional\\Bug40Test' => $vendorDir . '/php-amqplib/php-amqplib/PhpAmqpLib/Tests/Functional/Bug40Test.php', - 'PhpAmqpLib\\Tests\\Functional\\Bug49Test' => $vendorDir . '/php-amqplib/php-amqplib/PhpAmqpLib/Tests/Functional/Bug49Test.php', - 'PhpAmqpLib\\Tests\\Functional\\FileTransferTest' => $vendorDir . '/php-amqplib/php-amqplib/PhpAmqpLib/Tests/Functional/FileTransferTest.php', - 'PhpAmqpLib\\Tests\\Functional\\SocketPublishConsumeTest' => $vendorDir . '/php-amqplib/php-amqplib/PhpAmqpLib/Tests/Functional/SocketPublishConsumeTest.php', - 'PhpAmqpLib\\Tests\\Functional\\StreamPublishConsumeTest' => $vendorDir . '/php-amqplib/php-amqplib/PhpAmqpLib/Tests/Functional/StreamPublishConsumeTest.php', - 'PhpAmqpLib\\Tests\\Unit\\AMQPWriterTest' => $vendorDir . '/php-amqplib/php-amqplib/PhpAmqpLib/Tests/Unit/Wire/AMQPWriterTest.php', - 'PhpAmqpLib\\Tests\\Unit\\Helper\\Writer\\Protocol091Test' => $vendorDir . '/php-amqplib/php-amqplib/PhpAmqpLib/Tests/Unit/Helper/Protocol/Protocol091Test.php', - 'PhpAmqpLib\\Tests\\Unit\\WireTest' => $vendorDir . '/php-amqplib/php-amqplib/PhpAmqpLib/Tests/Unit/WireTest.php', - 'PhpAmqpLib\\Wire\\AMQPDecimal' => $vendorDir . '/php-amqplib/php-amqplib/PhpAmqpLib/Wire/AMQPDecimal.php', - 'PhpAmqpLib\\Wire\\AMQPReader' => $vendorDir . '/php-amqplib/php-amqplib/PhpAmqpLib/Wire/AMQPReader.php', - 'PhpAmqpLib\\Wire\\AMQPWriter' => $vendorDir . '/php-amqplib/php-amqplib/PhpAmqpLib/Wire/AMQPWriter.php', - 'PhpAmqpLib\\Wire\\Constants080' => $vendorDir . '/php-amqplib/php-amqplib/PhpAmqpLib/Wire/Constants080.php', - 'PhpAmqpLib\\Wire\\Constants091' => $vendorDir . '/php-amqplib/php-amqplib/PhpAmqpLib/Wire/Constants091.php', - 'PhpAmqpLib\\Wire\\GenericContent' => $vendorDir . '/php-amqplib/php-amqplib/PhpAmqpLib/Wire/GenericContent.php', - 'PhpAmqpLib\\Wire\\IO\\AbstractIO' => $vendorDir . '/php-amqplib/php-amqplib/PhpAmqpLib/Wire/IO/AbstractIO.php', - 'PhpAmqpLib\\Wire\\IO\\SocketIO' => $vendorDir . '/php-amqplib/php-amqplib/PhpAmqpLib/Wire/IO/SocketIO.php', - 'PhpAmqpLib\\Wire\\IO\\StreamIO' => $vendorDir . '/php-amqplib/php-amqplib/PhpAmqpLib/Wire/IO/StreamIO.php', - 'Phpass\\PasswordHash' => $vendorDir . '/xjtuwangke/passwordhash/src/Phpass/PasswordHash.php', 'QRcode' => $vendorDir . '/tecnickcom/tcpdf/include/barcodes/qrcode.php', - 'Requests' => $vendorDir . '/rmccue/requests/library/Requests.php', - 'Requests_Auth' => $vendorDir . '/rmccue/requests/library/Requests/Auth.php', - 'Requests_Auth_Basic' => $vendorDir . '/rmccue/requests/library/Requests/Auth/Basic.php', - 'Requests_Cookie' => $vendorDir . '/rmccue/requests/library/Requests/Cookie.php', - 'Requests_Cookie_Jar' => $vendorDir . '/rmccue/requests/library/Requests/Cookie/Jar.php', - 'Requests_Exception' => $vendorDir . '/rmccue/requests/library/Requests/Exception.php', - 'Requests_Exception_HTTP' => $vendorDir . '/rmccue/requests/library/Requests/Exception/HTTP.php', - 'Requests_Exception_HTTP_304' => $vendorDir . '/rmccue/requests/library/Requests/Exception/HTTP/304.php', - 'Requests_Exception_HTTP_305' => $vendorDir . '/rmccue/requests/library/Requests/Exception/HTTP/305.php', - 'Requests_Exception_HTTP_306' => $vendorDir . '/rmccue/requests/library/Requests/Exception/HTTP/306.php', - 'Requests_Exception_HTTP_400' => $vendorDir . '/rmccue/requests/library/Requests/Exception/HTTP/400.php', - 'Requests_Exception_HTTP_401' => $vendorDir . '/rmccue/requests/library/Requests/Exception/HTTP/401.php', - 'Requests_Exception_HTTP_402' => $vendorDir . '/rmccue/requests/library/Requests/Exception/HTTP/402.php', - 'Requests_Exception_HTTP_403' => $vendorDir . '/rmccue/requests/library/Requests/Exception/HTTP/403.php', - 'Requests_Exception_HTTP_404' => $vendorDir . '/rmccue/requests/library/Requests/Exception/HTTP/404.php', - 'Requests_Exception_HTTP_405' => $vendorDir . '/rmccue/requests/library/Requests/Exception/HTTP/405.php', - 'Requests_Exception_HTTP_406' => $vendorDir . '/rmccue/requests/library/Requests/Exception/HTTP/406.php', - 'Requests_Exception_HTTP_407' => $vendorDir . '/rmccue/requests/library/Requests/Exception/HTTP/407.php', - 'Requests_Exception_HTTP_408' => $vendorDir . '/rmccue/requests/library/Requests/Exception/HTTP/408.php', - 'Requests_Exception_HTTP_409' => $vendorDir . '/rmccue/requests/library/Requests/Exception/HTTP/409.php', - 'Requests_Exception_HTTP_410' => $vendorDir . '/rmccue/requests/library/Requests/Exception/HTTP/410.php', - 'Requests_Exception_HTTP_411' => $vendorDir . '/rmccue/requests/library/Requests/Exception/HTTP/411.php', - 'Requests_Exception_HTTP_412' => $vendorDir . '/rmccue/requests/library/Requests/Exception/HTTP/412.php', - 'Requests_Exception_HTTP_413' => $vendorDir . '/rmccue/requests/library/Requests/Exception/HTTP/413.php', - 'Requests_Exception_HTTP_414' => $vendorDir . '/rmccue/requests/library/Requests/Exception/HTTP/414.php', - 'Requests_Exception_HTTP_415' => $vendorDir . '/rmccue/requests/library/Requests/Exception/HTTP/415.php', - 'Requests_Exception_HTTP_416' => $vendorDir . '/rmccue/requests/library/Requests/Exception/HTTP/416.php', - 'Requests_Exception_HTTP_417' => $vendorDir . '/rmccue/requests/library/Requests/Exception/HTTP/417.php', - 'Requests_Exception_HTTP_418' => $vendorDir . '/rmccue/requests/library/Requests/Exception/HTTP/418.php', - 'Requests_Exception_HTTP_428' => $vendorDir . '/rmccue/requests/library/Requests/Exception/HTTP/428.php', - 'Requests_Exception_HTTP_429' => $vendorDir . '/rmccue/requests/library/Requests/Exception/HTTP/429.php', - 'Requests_Exception_HTTP_431' => $vendorDir . '/rmccue/requests/library/Requests/Exception/HTTP/431.php', - 'Requests_Exception_HTTP_500' => $vendorDir . '/rmccue/requests/library/Requests/Exception/HTTP/500.php', - 'Requests_Exception_HTTP_501' => $vendorDir . '/rmccue/requests/library/Requests/Exception/HTTP/501.php', - 'Requests_Exception_HTTP_502' => $vendorDir . '/rmccue/requests/library/Requests/Exception/HTTP/502.php', - 'Requests_Exception_HTTP_503' => $vendorDir . '/rmccue/requests/library/Requests/Exception/HTTP/503.php', - 'Requests_Exception_HTTP_504' => $vendorDir . '/rmccue/requests/library/Requests/Exception/HTTP/504.php', - 'Requests_Exception_HTTP_505' => $vendorDir . '/rmccue/requests/library/Requests/Exception/HTTP/505.php', - 'Requests_Exception_HTTP_511' => $vendorDir . '/rmccue/requests/library/Requests/Exception/HTTP/511.php', - 'Requests_Exception_HTTP_Unknown' => $vendorDir . '/rmccue/requests/library/Requests/Exception/HTTP/Unknown.php', - 'Requests_Exception_Transport' => $vendorDir . '/rmccue/requests/library/Requests/Exception/Transport.php', - 'Requests_Exception_Transport_cURL' => $vendorDir . '/rmccue/requests/library/Requests/Exception/Transport/cURL.php', - 'Requests_Hooker' => $vendorDir . '/rmccue/requests/library/Requests/Hooker.php', - 'Requests_Hooks' => $vendorDir . '/rmccue/requests/library/Requests/Hooks.php', - 'Requests_IDNAEncoder' => $vendorDir . '/rmccue/requests/library/Requests/IDNAEncoder.php', - 'Requests_IPv6' => $vendorDir . '/rmccue/requests/library/Requests/IPv6.php', - 'Requests_IRI' => $vendorDir . '/rmccue/requests/library/Requests/IRI.php', - 'Requests_Proxy' => $vendorDir . '/rmccue/requests/library/Requests/Proxy.php', - 'Requests_Proxy_HTTP' => $vendorDir . '/rmccue/requests/library/Requests/Proxy/HTTP.php', - 'Requests_Response' => $vendorDir . '/rmccue/requests/library/Requests/Response.php', - 'Requests_Response_Headers' => $vendorDir . '/rmccue/requests/library/Requests/Response/Headers.php', - 'Requests_SSL' => $vendorDir . '/rmccue/requests/library/Requests/SSL.php', - 'Requests_Session' => $vendorDir . '/rmccue/requests/library/Requests/Session.php', - 'Requests_Transport' => $vendorDir . '/rmccue/requests/library/Requests/Transport.php', - 'Requests_Transport_cURL' => $vendorDir . '/rmccue/requests/library/Requests/Transport/cURL.php', - 'Requests_Transport_fsockopen' => $vendorDir . '/rmccue/requests/library/Requests/Transport/fsockopen.php', - 'Requests_Utility_CaseInsensitiveDictionary' => $vendorDir . '/rmccue/requests/library/Requests/Utility/CaseInsensitiveDictionary.php', - 'Requests_Utility_FilteredIterator' => $vendorDir . '/rmccue/requests/library/Requests/Utility/FilteredIterator.php', 'SMTP' => $vendorDir . '/phpmailer/phpmailer/class.smtp.php', - 'SlimFlashTest' => $vendorDir . '/slim/slim/tests/Middleware/FlashTest.php', - 'SlimHttpUtilTest' => $vendorDir . '/slim/slim/tests/Http/UtilTest.php', - 'SlimTest' => $vendorDir . '/slim/slim/tests/SlimTest.php', - 'Slim\\Environment' => $vendorDir . '/slim/slim/Slim/Environment.php', - 'Slim\\Exception\\Pass' => $vendorDir . '/slim/slim/Slim/Exception/Pass.php', - 'Slim\\Exception\\Stop' => $vendorDir . '/slim/slim/Slim/Exception/Stop.php', - 'Slim\\Helper\\Set' => $vendorDir . '/slim/slim/Slim/Helper/Set.php', - 'Slim\\Http\\Cookies' => $vendorDir . '/slim/slim/Slim/Http/Cookies.php', - 'Slim\\Http\\Headers' => $vendorDir . '/slim/slim/Slim/Http/Headers.php', - 'Slim\\Http\\Request' => $vendorDir . '/slim/slim/Slim/Http/Request.php', - 'Slim\\Http\\Response' => $vendorDir . '/slim/slim/Slim/Http/Response.php', - 'Slim\\Http\\Util' => $vendorDir . '/slim/slim/Slim/Http/Util.php', - 'Slim\\Log' => $vendorDir . '/slim/slim/Slim/Log.php', - 'Slim\\LogWriter' => $vendorDir . '/slim/slim/Slim/LogWriter.php', - 'Slim\\Middleware' => $vendorDir . '/slim/slim/Slim/Middleware.php', - 'Slim\\Middleware\\ContentTypes' => $vendorDir . '/slim/slim/Slim/Middleware/ContentTypes.php', - 'Slim\\Middleware\\Flash' => $vendorDir . '/slim/slim/Slim/Middleware/Flash.php', - 'Slim\\Middleware\\MethodOverride' => $vendorDir . '/slim/slim/Slim/Middleware/MethodOverride.php', - 'Slim\\Middleware\\PrettyExceptions' => $vendorDir . '/slim/slim/Slim/Middleware/PrettyExceptions.php', - 'Slim\\Middleware\\SessionCookie' => $vendorDir . '/slim/slim/Slim/Middleware/SessionCookie.php', - 'Slim\\Route' => $vendorDir . '/slim/slim/Slim/Route.php', - 'Slim\\Router' => $vendorDir . '/slim/slim/Slim/Router.php', - 'Slim\\Slim' => $vendorDir . '/slim/slim/Slim/Slim.php', - 'Slim\\View' => $vendorDir . '/slim/slim/Slim/View.php', - 'Symfony\\Component\\Yaml\\Dumper' => $vendorDir . '/symfony/yaml/Dumper.php', - 'Symfony\\Component\\Yaml\\Escaper' => $vendorDir . '/symfony/yaml/Escaper.php', - 'Symfony\\Component\\Yaml\\Exception\\DumpException' => $vendorDir . '/symfony/yaml/Exception/DumpException.php', - 'Symfony\\Component\\Yaml\\Exception\\ExceptionInterface' => $vendorDir . '/symfony/yaml/Exception/ExceptionInterface.php', - 'Symfony\\Component\\Yaml\\Exception\\ParseException' => $vendorDir . '/symfony/yaml/Exception/ParseException.php', - 'Symfony\\Component\\Yaml\\Exception\\RuntimeException' => $vendorDir . '/symfony/yaml/Exception/RuntimeException.php', - 'Symfony\\Component\\Yaml\\Inline' => $vendorDir . '/symfony/yaml/Inline.php', - 'Symfony\\Component\\Yaml\\Parser' => $vendorDir . '/symfony/yaml/Parser.php', - 'Symfony\\Component\\Yaml\\Unescaper' => $vendorDir . '/symfony/yaml/Unescaper.php', - 'Symfony\\Component\\Yaml\\Yaml' => $vendorDir . '/symfony/yaml/Yaml.php', 'TCPDF' => $vendorDir . '/tecnickcom/tcpdf/tcpdf.php', 'TCPDF2DBarcode' => $vendorDir . '/tecnickcom/tcpdf/tcpdf_barcodes_2d.php', 'TCPDFBarcode' => $vendorDir . '/tecnickcom/tcpdf/tcpdf_barcodes_1d.php', diff --git a/vendor/composer/autoload_files.php b/vendor/composer/autoload_files.php index c25686b153..6f9a636c75 100644 --- a/vendor/composer/autoload_files.php +++ b/vendor/composer/autoload_files.php @@ -7,4 +7,5 @@ $baseDir = dirname($vendorDir); return array( '2cffec82183ee1cea088009cef9a6fc3' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier.composer.php', + '8cd2fca4db21bffce1ad0612f7caeec4' => $vendorDir . '/ramsey/array_column/src/array_column.php', ); diff --git a/vendor/composer/autoload_static.php b/vendor/composer/autoload_static.php index e3b3fcb76a..e864644dbc 100644 --- a/vendor/composer/autoload_static.php +++ b/vendor/composer/autoload_static.php @@ -8,6 +8,7 @@ class ComposerStaticInit272059f49825f0adab6de160cf59ca72 { public static $files = array ( '2cffec82183ee1cea088009cef9a6fc3' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier.composer.php', + '8cd2fca4db21bffce1ad0612f7caeec4' => __DIR__ . '/..' . '/ramsey/array_column/src/array_column.php', ); public static $prefixLengthsPsr4 = array ( @@ -126,610 +127,17 @@ class ComposerStaticInit272059f49825f0adab6de160cf59ca72 ); public static $classMap = array ( - 'Amenadiel\\JpGraph\\Graph\\Axis' => __DIR__ . '/..' . '/amenadiel/jpgraph/src/graph/Axis.php', - 'Amenadiel\\JpGraph\\Graph\\AxisPrototype' => __DIR__ . '/..' . '/amenadiel/jpgraph/src/graph/AxisPrototype.php', - 'Amenadiel\\JpGraph\\Graph\\CanvasGraph' => __DIR__ . '/..' . '/amenadiel/jpgraph/src/graph/CanvasGraph.php', - 'Amenadiel\\JpGraph\\Graph\\CanvasScale' => __DIR__ . '/..' . '/amenadiel/jpgraph/src/graph/CanvasScale.php', - 'Amenadiel\\JpGraph\\Graph\\DateScale' => __DIR__ . '/..' . '/amenadiel/jpgraph/src/graph/DateScale.php', - 'Amenadiel\\JpGraph\\Graph\\GanttActivityInfo' => __DIR__ . '/..' . '/amenadiel/jpgraph/src/graph/GanttActivityInfo.php', - 'Amenadiel\\JpGraph\\Graph\\GanttGraph' => __DIR__ . '/..' . '/amenadiel/jpgraph/src/graph/GanttGraph.php', - 'Amenadiel\\JpGraph\\Graph\\GanttScale' => __DIR__ . '/..' . '/amenadiel/jpgraph/src/graph/GanttScale.php', - 'Amenadiel\\JpGraph\\Graph\\Graph' => __DIR__ . '/..' . '/amenadiel/jpgraph/src/graph/Graph.php', - 'Amenadiel\\JpGraph\\Graph\\Grid' => __DIR__ . '/..' . '/amenadiel/jpgraph/src/graph/Grid.php', - 'Amenadiel\\JpGraph\\Graph\\HeaderProperty' => __DIR__ . '/..' . '/amenadiel/jpgraph/src/graph/HeaderProperty.php', - 'Amenadiel\\JpGraph\\Graph\\HorizontalGridLine' => __DIR__ . '/..' . '/amenadiel/jpgraph/src/graph/HorizontalGridLine.php', - 'Amenadiel\\JpGraph\\Graph\\Legend' => __DIR__ . '/..' . '/amenadiel/jpgraph/src/graph/Legend.php', - 'Amenadiel\\JpGraph\\Graph\\LineProperty' => __DIR__ . '/..' . '/amenadiel/jpgraph/src/graph/LineProperty.php', - 'Amenadiel\\JpGraph\\Graph\\LinearScale' => __DIR__ . '/..' . '/amenadiel/jpgraph/src/graph/LinearScale.php', - 'Amenadiel\\JpGraph\\Graph\\LinearTicks' => __DIR__ . '/..' . '/amenadiel/jpgraph/src/graph/LinearTicks.php', - 'Amenadiel\\JpGraph\\Graph\\LogScale' => __DIR__ . '/..' . '/amenadiel/jpgraph/src/graph/LogScale.php', - 'Amenadiel\\JpGraph\\Graph\\LogTicks' => __DIR__ . '/..' . '/amenadiel/jpgraph/src/graph/LogTicks.php', - 'Amenadiel\\JpGraph\\Graph\\MGraph' => __DIR__ . '/..' . '/amenadiel/jpgraph/src/graph/MGraph.php', - 'Amenadiel\\JpGraph\\Graph\\PieGraph' => __DIR__ . '/..' . '/amenadiel/jpgraph/src/graph/PieGraph.php', - 'Amenadiel\\JpGraph\\Graph\\PolarAxis' => __DIR__ . '/..' . '/amenadiel/jpgraph/src/graph/PolarAxis.php', - 'Amenadiel\\JpGraph\\Graph\\PolarGraph' => __DIR__ . '/..' . '/amenadiel/jpgraph/src/graph/PolarGraph.php', - 'Amenadiel\\JpGraph\\Graph\\PolarLogScale' => __DIR__ . '/..' . '/amenadiel/jpgraph/src/graph/PolarLogScale.php', - 'Amenadiel\\JpGraph\\Graph\\PolarScale' => __DIR__ . '/..' . '/amenadiel/jpgraph/src/graph/PolarScale.php', - 'Amenadiel\\JpGraph\\Graph\\RadarAxis' => __DIR__ . '/..' . '/amenadiel/jpgraph/src/graph/RadarAxis.php', - 'Amenadiel\\JpGraph\\Graph\\RadarGraph' => __DIR__ . '/..' . '/amenadiel/jpgraph/src/graph/RadarGraph.php', - 'Amenadiel\\JpGraph\\Graph\\RadarGrid' => __DIR__ . '/..' . '/amenadiel/jpgraph/src/graph/RadarGrid.php', - 'Amenadiel\\JpGraph\\Graph\\RadarLinearTicks' => __DIR__ . '/..' . '/amenadiel/jpgraph/src/graph/RadarLinearTicks.php', - 'Amenadiel\\JpGraph\\Graph\\RadarLogTicks' => __DIR__ . '/..' . '/amenadiel/jpgraph/src/graph/RadarLogTicks.php', - 'Amenadiel\\JpGraph\\Graph\\RadarPlot' => __DIR__ . '/..' . '/amenadiel/jpgraph/src/graph/RadarGrid.php', - 'Amenadiel\\JpGraph\\Graph\\RectPattern' => __DIR__ . '/..' . '/amenadiel/jpgraph/src/graph/RectPattern.php', - 'Amenadiel\\JpGraph\\Graph\\RectPattern3DPlane' => __DIR__ . '/..' . '/amenadiel/jpgraph/src/graph/RectPattern3DPlane.php', - 'Amenadiel\\JpGraph\\Graph\\RectPatternCross' => __DIR__ . '/..' . '/amenadiel/jpgraph/src/graph/RectPatternCross.php', - 'Amenadiel\\JpGraph\\Graph\\RectPatternDiagCross' => __DIR__ . '/..' . '/amenadiel/jpgraph/src/graph/RectPatternDiagCross.php', - 'Amenadiel\\JpGraph\\Graph\\RectPatternFactory' => __DIR__ . '/..' . '/amenadiel/jpgraph/src/graph/RectPatternFactory.php', - 'Amenadiel\\JpGraph\\Graph\\RectPatternHor' => __DIR__ . '/..' . '/amenadiel/jpgraph/src/graph/RectPatternHor.php', - 'Amenadiel\\JpGraph\\Graph\\RectPatternLDiag' => __DIR__ . '/..' . '/amenadiel/jpgraph/src/graph/RectPatternLDiag.php', - 'Amenadiel\\JpGraph\\Graph\\RectPatternRDiag' => __DIR__ . '/..' . '/amenadiel/jpgraph/src/graph/RectPatternRDiag.php', - 'Amenadiel\\JpGraph\\Graph\\RectPatternSolid' => __DIR__ . '/..' . '/amenadiel/jpgraph/src/graph/RectPatternSolid.php', - 'Amenadiel\\JpGraph\\Graph\\RectPatternVert' => __DIR__ . '/..' . '/amenadiel/jpgraph/src/graph/RectPatternVert.php', - 'Amenadiel\\JpGraph\\Graph\\Shape' => __DIR__ . '/..' . '/amenadiel/jpgraph/src/graph/Shape.php', - 'Amenadiel\\JpGraph\\Graph\\SymChar' => __DIR__ . '/..' . '/amenadiel/jpgraph/src/graph/SymChar.php', - 'Amenadiel\\JpGraph\\Graph\\Ticks' => __DIR__ . '/..' . '/amenadiel/jpgraph/src/graph/Ticks.php', - 'Amenadiel\\JpGraph\\Graph\\WindroseGraph' => __DIR__ . '/..' . '/amenadiel/jpgraph/src/graph/WindroseGraph.php', - 'Amenadiel\\JpGraph\\Graph\\WindrosePlotScale' => __DIR__ . '/..' . '/amenadiel/jpgraph/src/graph/WindrosePlotScale.php', - 'Amenadiel\\JpGraph\\Image\\DigitalLED74' => __DIR__ . '/..' . '/amenadiel/jpgraph/src/image/DigitalLED74.php', - 'Amenadiel\\JpGraph\\Image\\FieldArrow' => __DIR__ . '/..' . '/amenadiel/jpgraph/src/image/FieldArrow.php', - 'Amenadiel\\JpGraph\\Image\\FlagImages' => __DIR__ . '/..' . '/amenadiel/jpgraph/src/image/FlagImages.php', - 'Amenadiel\\JpGraph\\Image\\Footer' => __DIR__ . '/..' . '/amenadiel/jpgraph/src/image/Footer.php', - 'Amenadiel\\JpGraph\\Image\\GanttLink' => __DIR__ . '/..' . '/amenadiel/jpgraph/src/image/GanttLink.php', - 'Amenadiel\\JpGraph\\Image\\IconImage' => __DIR__ . '/..' . '/amenadiel/jpgraph/src/image/IconImage.php', - 'Amenadiel\\JpGraph\\Image\\Image' => __DIR__ . '/..' . '/amenadiel/jpgraph/src/image/Image.php', - 'Amenadiel\\JpGraph\\Image\\ImgData' => __DIR__ . '/..' . '/amenadiel/jpgraph/src/image/ImgData.php', - 'Amenadiel\\JpGraph\\Image\\ImgData_Balls' => __DIR__ . '/..' . '/amenadiel/jpgraph/src/image/ImgData_Balls.php', - 'Amenadiel\\JpGraph\\Image\\ImgData_Bevels' => __DIR__ . '/..' . '/amenadiel/jpgraph/src/image/ImgData_Bevels.php', - 'Amenadiel\\JpGraph\\Image\\ImgData_Diamonds' => __DIR__ . '/..' . '/amenadiel/jpgraph/src/image/ImgData_Diamonds.php', - 'Amenadiel\\JpGraph\\Image\\ImgData_PushPins' => __DIR__ . '/..' . '/amenadiel/jpgraph/src/image/ImgData_PushPins.php', - 'Amenadiel\\JpGraph\\Image\\ImgData_Squares' => __DIR__ . '/..' . '/amenadiel/jpgraph/src/image/ImgData_Squares.php', - 'Amenadiel\\JpGraph\\Image\\ImgData_Stars' => __DIR__ . '/..' . '/amenadiel/jpgraph/src/image/ImgData_Stars.php', - 'Amenadiel\\JpGraph\\Image\\ImgStreamCache' => __DIR__ . '/..' . '/amenadiel/jpgraph/src/image/ImgStreamCache.php', - 'Amenadiel\\JpGraph\\Image\\ImgTrans' => __DIR__ . '/..' . '/amenadiel/jpgraph/src/image/ImgTrans.php', - 'Amenadiel\\JpGraph\\Image\\LinkArrow' => __DIR__ . '/..' . '/amenadiel/jpgraph/src/image/LinkArrow.php', - 'Amenadiel\\JpGraph\\Image\\PredefIcons' => __DIR__ . '/..' . '/amenadiel/jpgraph/src/image/PredefIcons.php', - 'Amenadiel\\JpGraph\\Image\\Progress' => __DIR__ . '/..' . '/amenadiel/jpgraph/src/image/Progress.php', - 'Amenadiel\\JpGraph\\Image\\RGB' => __DIR__ . '/..' . '/amenadiel/jpgraph/src/image/RGB.php', - 'Amenadiel\\JpGraph\\Image\\RotImage' => __DIR__ . '/..' . '/amenadiel/jpgraph/src/image/RotImage.php', - 'Amenadiel\\JpGraph\\Plot\\AccBarPlot' => __DIR__ . '/..' . '/amenadiel/jpgraph/src/plot/AccBarPlot.php', - 'Amenadiel\\JpGraph\\Plot\\AccLinePlot' => __DIR__ . '/..' . '/amenadiel/jpgraph/src/plot/AccLinePlot.php', - 'Amenadiel\\JpGraph\\Plot\\BarPlot' => __DIR__ . '/..' . '/amenadiel/jpgraph/src/plot/BarPlot.php', - 'Amenadiel\\JpGraph\\Plot\\BoxPlot' => __DIR__ . '/..' . '/amenadiel/jpgraph/src/plot/BoxPlot.php', - 'Amenadiel\\JpGraph\\Plot\\Contour' => __DIR__ . '/..' . '/amenadiel/jpgraph/src/plot/Contour.php', - 'Amenadiel\\JpGraph\\Plot\\ContourPlot' => __DIR__ . '/..' . '/amenadiel/jpgraph/src/plot/ContourPlot.php', - 'Amenadiel\\JpGraph\\Plot\\DisplayValue' => __DIR__ . '/..' . '/amenadiel/jpgraph/src/plot/DisplayValue.php', - 'Amenadiel\\JpGraph\\Plot\\ErrorLinePlot' => __DIR__ . '/..' . '/amenadiel/jpgraph/src/plot/ErrorLinePlot.php', - 'Amenadiel\\JpGraph\\Plot\\ErrorPlot' => __DIR__ . '/..' . '/amenadiel/jpgraph/src/plot/ErrorPlot.php', - 'Amenadiel\\JpGraph\\Plot\\FieldPlot' => __DIR__ . '/..' . '/amenadiel/jpgraph/src/plot/FieldPlot.php', - 'Amenadiel\\JpGraph\\Plot\\GanttBar' => __DIR__ . '/..' . '/amenadiel/jpgraph/src/plot/GanttBar.php', - 'Amenadiel\\JpGraph\\Plot\\GanttPlotObject' => __DIR__ . '/..' . '/amenadiel/jpgraph/src/plot/GanttPlotObject.php', - 'Amenadiel\\JpGraph\\Plot\\GanttVLine' => __DIR__ . '/..' . '/amenadiel/jpgraph/src/plot/GanttVLine.php', - 'Amenadiel\\JpGraph\\Plot\\Gradient' => __DIR__ . '/..' . '/amenadiel/jpgraph/src/plot/Gradient.php', - 'Amenadiel\\JpGraph\\Plot\\GroupBarPlot' => __DIR__ . '/..' . '/amenadiel/jpgraph/src/plot/GroupBarPlot.php', - 'Amenadiel\\JpGraph\\Plot\\IconPlot' => __DIR__ . '/..' . '/amenadiel/jpgraph/src/plot/IconPlot.php', - 'Amenadiel\\JpGraph\\Plot\\LegendStyle' => __DIR__ . '/..' . '/amenadiel/jpgraph/src/plot/LegendStyle.php', - 'Amenadiel\\JpGraph\\Plot\\LineErrorPlot' => __DIR__ . '/..' . '/amenadiel/jpgraph/src/plot/LineErrorPlot.php', - 'Amenadiel\\JpGraph\\Plot\\LinePlot' => __DIR__ . '/..' . '/amenadiel/jpgraph/src/plot/LinePlot.php', - 'Amenadiel\\JpGraph\\Plot\\MeshInterpolate' => __DIR__ . '/..' . '/amenadiel/jpgraph/src/plot/MeshInterpolate.php', - 'Amenadiel\\JpGraph\\Plot\\MileStone' => __DIR__ . '/..' . '/amenadiel/jpgraph/src/plot/MileStone.php', - 'Amenadiel\\JpGraph\\Plot\\PiePlot' => __DIR__ . '/..' . '/amenadiel/jpgraph/src/plot/PiePlot.php', - 'Amenadiel\\JpGraph\\Plot\\PiePlot3D' => __DIR__ . '/..' . '/amenadiel/jpgraph/src/plot/PiePlot3D.php', - 'Amenadiel\\JpGraph\\Plot\\PiePlotC' => __DIR__ . '/..' . '/amenadiel/jpgraph/src/plot/PiePlotC.php', - 'Amenadiel\\JpGraph\\Plot\\Plot' => __DIR__ . '/..' . '/amenadiel/jpgraph/src/plot/Plot.php', - 'Amenadiel\\JpGraph\\Plot\\PlotBand' => __DIR__ . '/..' . '/amenadiel/jpgraph/src/plot/PlotBand.php', - 'Amenadiel\\JpGraph\\Plot\\PlotLine' => __DIR__ . '/..' . '/amenadiel/jpgraph/src/plot/PlotLine.php', - 'Amenadiel\\JpGraph\\Plot\\PlotMark' => __DIR__ . '/..' . '/amenadiel/jpgraph/src/plot/PlotMark.php', - 'Amenadiel\\JpGraph\\Plot\\PolarPlot' => __DIR__ . '/..' . '/amenadiel/jpgraph/src/plot/PolarPlot.php', - 'Amenadiel\\JpGraph\\Plot\\RadarPlot' => __DIR__ . '/..' . '/amenadiel/jpgraph/src/plot/RadarPlot.php', - 'Amenadiel\\JpGraph\\Plot\\ScatterPlot' => __DIR__ . '/..' . '/amenadiel/jpgraph/src/plot/ScatterPlot.php', - 'Amenadiel\\JpGraph\\Plot\\StockPlot' => __DIR__ . '/..' . '/amenadiel/jpgraph/src/plot/StockPlot.php', - 'Amenadiel\\JpGraph\\Plot\\WindrosePlot' => __DIR__ . '/..' . '/amenadiel/jpgraph/src/plot/WindrosePlot.php', - 'Amenadiel\\JpGraph\\Text\\CanvasRectangleText' => __DIR__ . '/..' . '/amenadiel/jpgraph/src/text/CanvasRectangleText.php', - 'Amenadiel\\JpGraph\\Text\\GB2312toUTF8' => __DIR__ . '/..' . '/amenadiel/jpgraph/src/text/GB2312toUTF8.php', - 'Amenadiel\\JpGraph\\Text\\GTextTable' => __DIR__ . '/..' . '/amenadiel/jpgraph/src/text/GTextTable.php', - 'Amenadiel\\JpGraph\\Text\\GTextTableCell' => __DIR__ . '/..' . '/amenadiel/jpgraph/src/text/GTextTableCell.php', - 'Amenadiel\\JpGraph\\Text\\GraphTabTitle' => __DIR__ . '/..' . '/amenadiel/jpgraph/src/text/GraphTabTitle.php', - 'Amenadiel\\JpGraph\\Text\\LanguageConv' => __DIR__ . '/..' . '/amenadiel/jpgraph/src/text/LanguageConv.php', - 'Amenadiel\\JpGraph\\Text\\SuperScriptText' => __DIR__ . '/..' . '/amenadiel/jpgraph/src/text/SuperScriptText.php', - 'Amenadiel\\JpGraph\\Text\\TTF' => __DIR__ . '/..' . '/amenadiel/jpgraph/src/text/TTF.php', - 'Amenadiel\\JpGraph\\Text\\Text' => __DIR__ . '/..' . '/amenadiel/jpgraph/src/text/Text.php', - 'Amenadiel\\JpGraph\\Text\\TextProperty' => __DIR__ . '/..' . '/amenadiel/jpgraph/src/text/TextProperty.php', - 'Amenadiel\\JpGraph\\Text\\TextPropertyBelow' => __DIR__ . '/..' . '/amenadiel/jpgraph/src/text/TextPropertyBelow.php', - 'Amenadiel\\JpGraph\\Themes\\AquaTheme' => __DIR__ . '/..' . '/amenadiel/jpgraph/src/themes/AquaTheme.php', - 'Amenadiel\\JpGraph\\Themes\\GreenTheme' => __DIR__ . '/..' . '/amenadiel/jpgraph/src/themes/GreenTheme.php', - 'Amenadiel\\JpGraph\\Themes\\OceanTheme' => __DIR__ . '/..' . '/amenadiel/jpgraph/src/themes/OceanTheme.php', - 'Amenadiel\\JpGraph\\Themes\\OrangeTheme' => __DIR__ . '/..' . '/amenadiel/jpgraph/src/themes/OrangeTheme.php', - 'Amenadiel\\JpGraph\\Themes\\PastelTheme' => __DIR__ . '/..' . '/amenadiel/jpgraph/src/themes/PastelTheme.php', - 'Amenadiel\\JpGraph\\Themes\\RoseTheme' => __DIR__ . '/..' . '/amenadiel/jpgraph/src/themes/RoseTheme.php', - 'Amenadiel\\JpGraph\\Themes\\SoftyTheme' => __DIR__ . '/..' . '/amenadiel/jpgraph/src/themes/SoftyTheme.php', - 'Amenadiel\\JpGraph\\Themes\\Theme' => __DIR__ . '/..' . '/amenadiel/jpgraph/src/themes/Theme.php', - 'Amenadiel\\JpGraph\\Themes\\UniversalTheme' => __DIR__ . '/..' . '/amenadiel/jpgraph/src/themes/UniversalTheme.php', - 'Amenadiel\\JpGraph\\Themes\\VividTheme' => __DIR__ . '/..' . '/amenadiel/jpgraph/src/themes/VividTheme.php', - 'Amenadiel\\JpGraph\\Util\\Bezier' => __DIR__ . '/..' . '/amenadiel/jpgraph/src/util/Bezier.php', - 'Amenadiel\\JpGraph\\Util\\ColorFactory' => __DIR__ . '/..' . '/amenadiel/jpgraph/src/util/ColorFactory.php', - 'Amenadiel\\JpGraph\\Util\\DateLocale' => __DIR__ . '/..' . '/amenadiel/jpgraph/src/util/DateLocale.php', - 'Amenadiel\\JpGraph\\Util\\DateScaleUtils' => __DIR__ . '/..' . '/amenadiel/jpgraph/src/util/DateScaleUtils.php', - 'Amenadiel\\JpGraph\\Util\\ErrMsgText' => __DIR__ . '/..' . '/amenadiel/jpgraph/src/util/ErrMsgText.php', - 'Amenadiel\\JpGraph\\Util\\FlagCache' => __DIR__ . '/..' . '/amenadiel/jpgraph/src/util/FlagCache.php', - 'Amenadiel\\JpGraph\\Util\\FuncGenerator' => __DIR__ . '/..' . '/amenadiel/jpgraph/src/util/FuncGenerator.php', - 'Amenadiel\\JpGraph\\Util\\GanttConstraint' => __DIR__ . '/..' . '/amenadiel/jpgraph/src/util/GanttConstraint.php', - 'Amenadiel\\JpGraph\\Util\\JpGraphErrObject' => __DIR__ . '/..' . '/amenadiel/jpgraph/src/util/JpGraphErrObject.php', - 'Amenadiel\\JpGraph\\Util\\JpGraphErrObjectImg' => __DIR__ . '/..' . '/amenadiel/jpgraph/src/util/JpGraphErrObjectImg.php', - 'Amenadiel\\JpGraph\\Util\\JpGraphError' => __DIR__ . '/..' . '/amenadiel/jpgraph/src/util/JpGraphError.php', - 'Amenadiel\\JpGraph\\Util\\JpGraphException' => __DIR__ . '/..' . '/amenadiel/jpgraph/src/util/JpGraphException.php', - 'Amenadiel\\JpGraph\\Util\\JpGraphExceptionL' => __DIR__ . '/..' . '/amenadiel/jpgraph/src/util/JpGraphExceptionL.php', - 'Amenadiel\\JpGraph\\Util\\JpgTimer' => __DIR__ . '/..' . '/amenadiel/jpgraph/src/util/JpgTimer.php', - 'Amenadiel\\JpGraph\\Util\\LinearRegression' => __DIR__ . '/..' . '/amenadiel/jpgraph/src/util/LinearRegression.php', - 'Amenadiel\\JpGraph\\Util\\RGB' => __DIR__ . '/..' . '/amenadiel/jpgraph/src/util/RGB.php', - 'Amenadiel\\JpGraph\\Util\\ReadFileData' => __DIR__ . '/..' . '/amenadiel/jpgraph/src/util/ReadFileData.php', - 'Amenadiel\\JpGraph\\Util\\Rectangle' => __DIR__ . '/..' . '/amenadiel/jpgraph/src/util/Rectangle.php', - 'Amenadiel\\JpGraph\\Util\\Spline' => __DIR__ . '/..' . '/amenadiel/jpgraph/src/util/Spline.php', - 'Console_Color2' => __DIR__ . '/..' . '/pear/console_color2/Console/Color2.php', 'Console_Table' => __DIR__ . '/..' . '/pear/console_table/Table.php', - 'Dapphp\\Radius\\EAPPacket' => __DIR__ . '/..' . '/dapphp/radius/src/EAPPacket.php', - 'Dapphp\\Radius\\MsChapV2Packet' => __DIR__ . '/..' . '/dapphp/radius/src/MsChapV2Packet.php', - 'Dapphp\\Radius\\Radius' => __DIR__ . '/..' . '/dapphp/radius/src/Radius.php', - 'Dapphp\\Radius\\VendorId' => __DIR__ . '/..' . '/dapphp/radius/src/VendorId.php', 'Datamatrix' => __DIR__ . '/..' . '/tecnickcom/tcpdf/include/barcodes/datamatrix.php', 'EasyPeasyICS' => __DIR__ . '/..' . '/phpmailer/phpmailer/extras/EasyPeasyICS.php', 'GeSHi' => __DIR__ . '/..' . '/easybook/geshi/geshi.php', - 'HTMLPurifier' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier.php', - 'HTMLPurifier_Arborize' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/Arborize.php', - 'HTMLPurifier_AttrCollections' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/AttrCollections.php', - 'HTMLPurifier_AttrDef' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef.php', - 'HTMLPurifier_AttrDef_CSS' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS.php', - 'HTMLPurifier_AttrDef_CSS_AlphaValue' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/AlphaValue.php', - 'HTMLPurifier_AttrDef_CSS_Background' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Background.php', - 'HTMLPurifier_AttrDef_CSS_BackgroundPosition' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/BackgroundPosition.php', - 'HTMLPurifier_AttrDef_CSS_Border' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Border.php', - 'HTMLPurifier_AttrDef_CSS_Color' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Color.php', - 'HTMLPurifier_AttrDef_CSS_Composite' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Composite.php', - 'HTMLPurifier_AttrDef_CSS_DenyElementDecorator' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/DenyElementDecorator.php', - 'HTMLPurifier_AttrDef_CSS_Filter' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Filter.php', - 'HTMLPurifier_AttrDef_CSS_Font' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Font.php', - 'HTMLPurifier_AttrDef_CSS_FontFamily' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/FontFamily.php', - 'HTMLPurifier_AttrDef_CSS_Ident' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Ident.php', - 'HTMLPurifier_AttrDef_CSS_ImportantDecorator' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/ImportantDecorator.php', - 'HTMLPurifier_AttrDef_CSS_Length' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Length.php', - 'HTMLPurifier_AttrDef_CSS_ListStyle' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/ListStyle.php', - 'HTMLPurifier_AttrDef_CSS_Multiple' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Multiple.php', - 'HTMLPurifier_AttrDef_CSS_Number' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Number.php', - 'HTMLPurifier_AttrDef_CSS_Percentage' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Percentage.php', - 'HTMLPurifier_AttrDef_CSS_TextDecoration' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/TextDecoration.php', - 'HTMLPurifier_AttrDef_CSS_URI' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/URI.php', - 'HTMLPurifier_AttrDef_Clone' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Clone.php', - 'HTMLPurifier_AttrDef_Enum' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Enum.php', - 'HTMLPurifier_AttrDef_HTML_Bool' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Bool.php', - 'HTMLPurifier_AttrDef_HTML_Class' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Class.php', - 'HTMLPurifier_AttrDef_HTML_Color' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Color.php', - 'HTMLPurifier_AttrDef_HTML_FrameTarget' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/FrameTarget.php', - 'HTMLPurifier_AttrDef_HTML_ID' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/ID.php', - 'HTMLPurifier_AttrDef_HTML_Length' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Length.php', - 'HTMLPurifier_AttrDef_HTML_LinkTypes' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/LinkTypes.php', - 'HTMLPurifier_AttrDef_HTML_MultiLength' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/MultiLength.php', - 'HTMLPurifier_AttrDef_HTML_Nmtokens' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Nmtokens.php', - 'HTMLPurifier_AttrDef_HTML_Pixels' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Pixels.php', - 'HTMLPurifier_AttrDef_Integer' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Integer.php', - 'HTMLPurifier_AttrDef_Lang' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Lang.php', - 'HTMLPurifier_AttrDef_Switch' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Switch.php', - 'HTMLPurifier_AttrDef_Text' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Text.php', - 'HTMLPurifier_AttrDef_URI' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI.php', - 'HTMLPurifier_AttrDef_URI_Email' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI/Email.php', - 'HTMLPurifier_AttrDef_URI_Email_SimpleCheck' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI/Email/SimpleCheck.php', - 'HTMLPurifier_AttrDef_URI_Host' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI/Host.php', - 'HTMLPurifier_AttrDef_URI_IPv4' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI/IPv4.php', - 'HTMLPurifier_AttrDef_URI_IPv6' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI/IPv6.php', - 'HTMLPurifier_AttrTransform' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/AttrTransform.php', - 'HTMLPurifier_AttrTransform_Background' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/AttrTransform/Background.php', - 'HTMLPurifier_AttrTransform_BdoDir' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/AttrTransform/BdoDir.php', - 'HTMLPurifier_AttrTransform_BgColor' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/AttrTransform/BgColor.php', - 'HTMLPurifier_AttrTransform_BoolToCSS' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/AttrTransform/BoolToCSS.php', - 'HTMLPurifier_AttrTransform_Border' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/AttrTransform/Border.php', - 'HTMLPurifier_AttrTransform_EnumToCSS' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/AttrTransform/EnumToCSS.php', - 'HTMLPurifier_AttrTransform_ImgRequired' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/AttrTransform/ImgRequired.php', - 'HTMLPurifier_AttrTransform_ImgSpace' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/AttrTransform/ImgSpace.php', - 'HTMLPurifier_AttrTransform_Input' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/AttrTransform/Input.php', - 'HTMLPurifier_AttrTransform_Lang' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/AttrTransform/Lang.php', - 'HTMLPurifier_AttrTransform_Length' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/AttrTransform/Length.php', - 'HTMLPurifier_AttrTransform_Name' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/AttrTransform/Name.php', - 'HTMLPurifier_AttrTransform_NameSync' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/AttrTransform/NameSync.php', - 'HTMLPurifier_AttrTransform_Nofollow' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/AttrTransform/Nofollow.php', - 'HTMLPurifier_AttrTransform_SafeEmbed' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/AttrTransform/SafeEmbed.php', - 'HTMLPurifier_AttrTransform_SafeObject' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/AttrTransform/SafeObject.php', - 'HTMLPurifier_AttrTransform_SafeParam' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/AttrTransform/SafeParam.php', - 'HTMLPurifier_AttrTransform_ScriptRequired' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/AttrTransform/ScriptRequired.php', - 'HTMLPurifier_AttrTransform_TargetBlank' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/AttrTransform/TargetBlank.php', - 'HTMLPurifier_AttrTransform_TargetNoreferrer' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/AttrTransform/TargetNoreferrer.php', - 'HTMLPurifier_AttrTransform_Textarea' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/AttrTransform/Textarea.php', - 'HTMLPurifier_AttrTypes' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/AttrTypes.php', - 'HTMLPurifier_AttrValidator' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/AttrValidator.php', - 'HTMLPurifier_Bootstrap' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/Bootstrap.php', - 'HTMLPurifier_CSSDefinition' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/CSSDefinition.php', - 'HTMLPurifier_ChildDef' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef.php', - 'HTMLPurifier_ChildDef_Chameleon' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Chameleon.php', - 'HTMLPurifier_ChildDef_Custom' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Custom.php', - 'HTMLPurifier_ChildDef_Empty' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Empty.php', - 'HTMLPurifier_ChildDef_List' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/List.php', - 'HTMLPurifier_ChildDef_Optional' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Optional.php', - 'HTMLPurifier_ChildDef_Required' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Required.php', - 'HTMLPurifier_ChildDef_StrictBlockquote' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/StrictBlockquote.php', - 'HTMLPurifier_ChildDef_Table' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Table.php', - 'HTMLPurifier_Config' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/Config.php', - 'HTMLPurifier_ConfigSchema' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema.php', - 'HTMLPurifier_ConfigSchema_Builder_ConfigSchema' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/Builder/ConfigSchema.php', - 'HTMLPurifier_ConfigSchema_Builder_Xml' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/Builder/Xml.php', - 'HTMLPurifier_ConfigSchema_Exception' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/Exception.php', - 'HTMLPurifier_ConfigSchema_Interchange' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/Interchange.php', - 'HTMLPurifier_ConfigSchema_InterchangeBuilder' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/InterchangeBuilder.php', - 'HTMLPurifier_ConfigSchema_Interchange_Directive' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/Interchange/Directive.php', - 'HTMLPurifier_ConfigSchema_Interchange_Id' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/Interchange/Id.php', - 'HTMLPurifier_ConfigSchema_Validator' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/Validator.php', - 'HTMLPurifier_ConfigSchema_ValidatorAtom' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/ValidatorAtom.php', - 'HTMLPurifier_ContentSets' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/ContentSets.php', - 'HTMLPurifier_Context' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/Context.php', - 'HTMLPurifier_Definition' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/Definition.php', - 'HTMLPurifier_DefinitionCache' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/DefinitionCache.php', - 'HTMLPurifier_DefinitionCacheFactory' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/DefinitionCacheFactory.php', - 'HTMLPurifier_DefinitionCache_Decorator' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/DefinitionCache/Decorator.php', - 'HTMLPurifier_DefinitionCache_Decorator_Cleanup' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/DefinitionCache/Decorator/Cleanup.php', - 'HTMLPurifier_DefinitionCache_Decorator_Memory' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/DefinitionCache/Decorator/Memory.php', - 'HTMLPurifier_DefinitionCache_Null' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/DefinitionCache/Null.php', - 'HTMLPurifier_DefinitionCache_Serializer' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/DefinitionCache/Serializer.php', - 'HTMLPurifier_Doctype' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/Doctype.php', - 'HTMLPurifier_DoctypeRegistry' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/DoctypeRegistry.php', - 'HTMLPurifier_ElementDef' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/ElementDef.php', - 'HTMLPurifier_Encoder' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/Encoder.php', - 'HTMLPurifier_EntityLookup' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/EntityLookup.php', - 'HTMLPurifier_EntityParser' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/EntityParser.php', - 'HTMLPurifier_ErrorCollector' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/ErrorCollector.php', - 'HTMLPurifier_ErrorStruct' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/ErrorStruct.php', - 'HTMLPurifier_Exception' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/Exception.php', - 'HTMLPurifier_Filter' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/Filter.php', - 'HTMLPurifier_Filter_ExtractStyleBlocks' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/Filter/ExtractStyleBlocks.php', - 'HTMLPurifier_Filter_YouTube' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/Filter/YouTube.php', - 'HTMLPurifier_Generator' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/Generator.php', - 'HTMLPurifier_HTMLDefinition' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/HTMLDefinition.php', - 'HTMLPurifier_HTMLModule' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule.php', - 'HTMLPurifier_HTMLModuleManager' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModuleManager.php', - 'HTMLPurifier_HTMLModule_Bdo' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Bdo.php', - 'HTMLPurifier_HTMLModule_CommonAttributes' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/CommonAttributes.php', - 'HTMLPurifier_HTMLModule_Edit' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Edit.php', - 'HTMLPurifier_HTMLModule_Forms' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Forms.php', - 'HTMLPurifier_HTMLModule_Hypertext' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Hypertext.php', - 'HTMLPurifier_HTMLModule_Iframe' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Iframe.php', - 'HTMLPurifier_HTMLModule_Image' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Image.php', - 'HTMLPurifier_HTMLModule_Legacy' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Legacy.php', - 'HTMLPurifier_HTMLModule_List' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/List.php', - 'HTMLPurifier_HTMLModule_Name' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Name.php', - 'HTMLPurifier_HTMLModule_Nofollow' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Nofollow.php', - 'HTMLPurifier_HTMLModule_NonXMLCommonAttributes' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/NonXMLCommonAttributes.php', - 'HTMLPurifier_HTMLModule_Object' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Object.php', - 'HTMLPurifier_HTMLModule_Presentation' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Presentation.php', - 'HTMLPurifier_HTMLModule_Proprietary' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Proprietary.php', - 'HTMLPurifier_HTMLModule_Ruby' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Ruby.php', - 'HTMLPurifier_HTMLModule_SafeEmbed' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/SafeEmbed.php', - 'HTMLPurifier_HTMLModule_SafeObject' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/SafeObject.php', - 'HTMLPurifier_HTMLModule_SafeScripting' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/SafeScripting.php', - 'HTMLPurifier_HTMLModule_Scripting' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Scripting.php', - 'HTMLPurifier_HTMLModule_StyleAttribute' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/StyleAttribute.php', - 'HTMLPurifier_HTMLModule_Tables' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tables.php', - 'HTMLPurifier_HTMLModule_Target' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Target.php', - 'HTMLPurifier_HTMLModule_TargetBlank' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/TargetBlank.php', - 'HTMLPurifier_HTMLModule_TargetNoreferrer' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/TargetNoreferrer.php', - 'HTMLPurifier_HTMLModule_Text' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Text.php', - 'HTMLPurifier_HTMLModule_Tidy' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy.php', - 'HTMLPurifier_HTMLModule_Tidy_Name' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/Name.php', - 'HTMLPurifier_HTMLModule_Tidy_Proprietary' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/Proprietary.php', - 'HTMLPurifier_HTMLModule_Tidy_Strict' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/Strict.php', - 'HTMLPurifier_HTMLModule_Tidy_Transitional' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/Transitional.php', - 'HTMLPurifier_HTMLModule_Tidy_XHTML' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/XHTML.php', - 'HTMLPurifier_HTMLModule_Tidy_XHTMLAndHTML4' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/XHTMLAndHTML4.php', - 'HTMLPurifier_HTMLModule_XMLCommonAttributes' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/XMLCommonAttributes.php', - 'HTMLPurifier_IDAccumulator' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/IDAccumulator.php', - 'HTMLPurifier_Injector' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/Injector.php', - 'HTMLPurifier_Injector_AutoParagraph' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/Injector/AutoParagraph.php', - 'HTMLPurifier_Injector_DisplayLinkURI' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/Injector/DisplayLinkURI.php', - 'HTMLPurifier_Injector_Linkify' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/Injector/Linkify.php', - 'HTMLPurifier_Injector_PurifierLinkify' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/Injector/PurifierLinkify.php', - 'HTMLPurifier_Injector_RemoveEmpty' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/Injector/RemoveEmpty.php', - 'HTMLPurifier_Injector_RemoveSpansWithoutAttributes' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/Injector/RemoveSpansWithoutAttributes.php', - 'HTMLPurifier_Injector_SafeObject' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/Injector/SafeObject.php', - 'HTMLPurifier_Language' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/Language.php', - 'HTMLPurifier_LanguageFactory' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/LanguageFactory.php', - 'HTMLPurifier_Language_en_x_test' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/Language/classes/en-x-test.php', - 'HTMLPurifier_Length' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/Length.php', - 'HTMLPurifier_Lexer' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/Lexer.php', - 'HTMLPurifier_Lexer_DOMLex' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/Lexer/DOMLex.php', - 'HTMLPurifier_Lexer_DirectLex' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/Lexer/DirectLex.php', - 'HTMLPurifier_Lexer_PH5P' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/Lexer/PH5P.php', - 'HTMLPurifier_Node' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/Node.php', - 'HTMLPurifier_Node_Comment' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/Node/Comment.php', - 'HTMLPurifier_Node_Element' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/Node/Element.php', - 'HTMLPurifier_Node_Text' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/Node/Text.php', - 'HTMLPurifier_PercentEncoder' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/PercentEncoder.php', - 'HTMLPurifier_Printer' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/Printer.php', - 'HTMLPurifier_Printer_CSSDefinition' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/Printer/CSSDefinition.php', - 'HTMLPurifier_Printer_ConfigForm' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/Printer/ConfigForm.php', - 'HTMLPurifier_Printer_ConfigForm_NullDecorator' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/Printer/ConfigForm.php', - 'HTMLPurifier_Printer_ConfigForm_bool' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/Printer/ConfigForm.php', - 'HTMLPurifier_Printer_ConfigForm_default' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/Printer/ConfigForm.php', - 'HTMLPurifier_Printer_HTMLDefinition' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/Printer/HTMLDefinition.php', - 'HTMLPurifier_PropertyList' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/PropertyList.php', - 'HTMLPurifier_PropertyListIterator' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/PropertyListIterator.php', - 'HTMLPurifier_Queue' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/Queue.php', - 'HTMLPurifier_Strategy' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/Strategy.php', - 'HTMLPurifier_Strategy_Composite' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/Composite.php', - 'HTMLPurifier_Strategy_Core' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/Core.php', - 'HTMLPurifier_Strategy_FixNesting' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/FixNesting.php', - 'HTMLPurifier_Strategy_MakeWellFormed' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/MakeWellFormed.php', - 'HTMLPurifier_Strategy_RemoveForeignElements' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/RemoveForeignElements.php', - 'HTMLPurifier_Strategy_ValidateAttributes' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/ValidateAttributes.php', - 'HTMLPurifier_StringHash' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/StringHash.php', - 'HTMLPurifier_StringHashParser' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/StringHashParser.php', - 'HTMLPurifier_TagTransform' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/TagTransform.php', - 'HTMLPurifier_TagTransform_Font' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/TagTransform/Font.php', - 'HTMLPurifier_TagTransform_Simple' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/TagTransform/Simple.php', - 'HTMLPurifier_Token' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/Token.php', - 'HTMLPurifier_TokenFactory' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/TokenFactory.php', - 'HTMLPurifier_Token_Comment' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/Token/Comment.php', - 'HTMLPurifier_Token_Empty' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/Token/Empty.php', - 'HTMLPurifier_Token_End' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/Token/End.php', - 'HTMLPurifier_Token_Start' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/Token/Start.php', - 'HTMLPurifier_Token_Tag' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/Token/Tag.php', - 'HTMLPurifier_Token_Text' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/Token/Text.php', - 'HTMLPurifier_URI' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/URI.php', - 'HTMLPurifier_URIDefinition' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/URIDefinition.php', - 'HTMLPurifier_URIFilter' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter.php', - 'HTMLPurifier_URIFilter_DisableExternal' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/DisableExternal.php', - 'HTMLPurifier_URIFilter_DisableExternalResources' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/DisableExternalResources.php', - 'HTMLPurifier_URIFilter_DisableResources' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/DisableResources.php', - 'HTMLPurifier_URIFilter_HostBlacklist' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/HostBlacklist.php', - 'HTMLPurifier_URIFilter_MakeAbsolute' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/MakeAbsolute.php', - 'HTMLPurifier_URIFilter_Munge' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/Munge.php', - 'HTMLPurifier_URIFilter_SafeIframe' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/SafeIframe.php', - 'HTMLPurifier_URIParser' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/URIParser.php', - 'HTMLPurifier_URIScheme' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/URIScheme.php', - 'HTMLPurifier_URISchemeRegistry' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/URISchemeRegistry.php', - 'HTMLPurifier_URIScheme_data' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/URIScheme/data.php', - 'HTMLPurifier_URIScheme_file' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/URIScheme/file.php', - 'HTMLPurifier_URIScheme_ftp' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/URIScheme/ftp.php', - 'HTMLPurifier_URIScheme_http' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/URIScheme/http.php', - 'HTMLPurifier_URIScheme_https' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/URIScheme/https.php', - 'HTMLPurifier_URIScheme_mailto' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/URIScheme/mailto.php', - 'HTMLPurifier_URIScheme_news' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/URIScheme/news.php', - 'HTMLPurifier_URIScheme_nntp' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/URIScheme/nntp.php', - 'HTMLPurifier_URIScheme_tel' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/URIScheme/tel.php', - 'HTMLPurifier_UnitConverter' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/UnitConverter.php', - 'HTMLPurifier_VarParser' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/VarParser.php', - 'HTMLPurifier_VarParserException' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/VarParserException.php', - 'HTMLPurifier_VarParser_Flexible' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/VarParser/Flexible.php', - 'HTMLPurifier_VarParser_Native' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/VarParser/Native.php', - 'HTMLPurifier_Zipper' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/Zipper.php', - 'LibreNMS\\Component' => __DIR__ . '/../..' . '/LibreNMS/Component.php', - 'LibreNMS\\ComposerHelper' => __DIR__ . '/../..' . '/LibreNMS/ComposerHelper.php', - 'LibreNMS\\Device\\Sensor' => __DIR__ . '/../..' . '/LibreNMS/Device/Sensor.php', - 'LibreNMS\\Device\\WirelessSensor' => __DIR__ . '/../..' . '/LibreNMS/Device/WirelessSensor.php', - 'LibreNMS\\Exceptions\\DatabaseConnectException' => __DIR__ . '/../..' . '/LibreNMS/Exceptions/DatabaseConnectException.php', - 'LibreNMS\\Exceptions\\FileExistsException' => __DIR__ . '/../..' . '/LibreNMS/Exceptions/FileExistsException.php', - 'LibreNMS\\Exceptions\\HostExistsException' => __DIR__ . '/../..' . '/LibreNMS/Exceptions/HostExistsException.php', - 'LibreNMS\\Exceptions\\HostIpExistsException' => __DIR__ . '/../..' . '/LibreNMS/Exceptions/HostIpExistsException.php', - 'LibreNMS\\Exceptions\\HostUnreachableException' => __DIR__ . '/../..' . '/LibreNMS/Exceptions/HostUnreachableException.php', - 'LibreNMS\\Exceptions\\HostUnreachablePingException' => __DIR__ . '/../..' . '/LibreNMS/Exceptions/HostUnreachablePingException.php', - 'LibreNMS\\Exceptions\\HostUnreachableSnmpException' => __DIR__ . '/../..' . '/LibreNMS/Exceptions/HostUnreachableSnmpException.php', - 'LibreNMS\\Exceptions\\InvalidPortAssocModeException' => __DIR__ . '/../..' . '/LibreNMS/Exceptions/InvalidPortAssocModeException.php', - 'LibreNMS\\Exceptions\\InvalidRrdTypeException' => __DIR__ . '/../..' . '/LibreNMS/Exceptions/InvalidRrdTypeException.php', - 'LibreNMS\\Exceptions\\SnmpVersionUnsupportedException' => __DIR__ . '/../..' . '/LibreNMS/Exceptions/SnmpVersionUnsupportedException.php', - 'LibreNMS\\IRCBot' => __DIR__ . '/../..' . '/LibreNMS/IRCBot.php', - 'LibreNMS\\Interfaces\\Discovery\\DiscoveryModule' => __DIR__ . '/../..' . '/LibreNMS/Interfaces/Discovery/DiscoveryModule.php', - 'LibreNMS\\Interfaces\\Discovery\\Sensors\\WirelessApCountDiscovery' => __DIR__ . '/../..' . '/LibreNMS/Interfaces/Discovery/Sensors/WirelessApCountDiscovery.php', - 'LibreNMS\\Interfaces\\Discovery\\Sensors\\WirelessCapacityDiscovery' => __DIR__ . '/../..' . '/LibreNMS/Interfaces/Discovery/Sensors/WirelessCapacityDiscovery.php', - 'LibreNMS\\Interfaces\\Discovery\\Sensors\\WirelessCcqDiscovery' => __DIR__ . '/../..' . '/LibreNMS/Interfaces/Discovery/Sensors/WirelessCcqDiscovery.php', - 'LibreNMS\\Interfaces\\Discovery\\Sensors\\WirelessClientsDiscovery' => __DIR__ . '/../..' . '/LibreNMS/Interfaces/Discovery/Sensors/WirelessClientsDiscovery.php', - 'LibreNMS\\Interfaces\\Discovery\\Sensors\\WirelessDistanceDiscovery' => __DIR__ . '/../..' . '/LibreNMS/Interfaces/Discovery/Sensors/WirelessDistanceDiscovery.php', - 'LibreNMS\\Interfaces\\Discovery\\Sensors\\WirelessErrorRateDiscovery' => __DIR__ . '/../..' . '/LibreNMS/Interfaces/Discovery/Sensors/WirelessErrorRateDiscovery.php', - 'LibreNMS\\Interfaces\\Discovery\\Sensors\\WirelessErrorRatioDiscovery' => __DIR__ . '/../..' . '/LibreNMS/Interfaces/Discovery/Sensors/WirelessErrorRatioDiscovery.php', - 'LibreNMS\\Interfaces\\Discovery\\Sensors\\WirelessFrequencyDiscovery' => __DIR__ . '/../..' . '/LibreNMS/Interfaces/Discovery/Sensors/WirelessFrequencyDiscovery.php', - 'LibreNMS\\Interfaces\\Discovery\\Sensors\\WirelessNoiseFloorDiscovery' => __DIR__ . '/../..' . '/LibreNMS/Interfaces/Discovery/Sensors/WirelessNoiseFloorDiscovery.php', - 'LibreNMS\\Interfaces\\Discovery\\Sensors\\WirelessPowerDiscovery' => __DIR__ . '/../..' . '/LibreNMS/Interfaces/Discovery/Sensors/WirelessPowerDiscovery.php', - 'LibreNMS\\Interfaces\\Discovery\\Sensors\\WirelessQualityDiscovery' => __DIR__ . '/../..' . '/LibreNMS/Interfaces/Discovery/Sensors/WirelessQualityDiscovery.php', - 'LibreNMS\\Interfaces\\Discovery\\Sensors\\WirelessRateDiscovery' => __DIR__ . '/../..' . '/LibreNMS/Interfaces/Discovery/Sensors/WirelessRateDiscovery.php', - 'LibreNMS\\Interfaces\\Discovery\\Sensors\\WirelessRssiDiscovery' => __DIR__ . '/../..' . '/LibreNMS/Interfaces/Discovery/Sensors/WirelessRssiDiscovery.php', - 'LibreNMS\\Interfaces\\Discovery\\Sensors\\WirelessSnrDiscovery' => __DIR__ . '/../..' . '/LibreNMS/Interfaces/Discovery/Sensors/WirelessSnrDiscovery.php', - 'LibreNMS\\Interfaces\\Discovery\\Sensors\\WirelessUtilizationDiscovery' => __DIR__ . '/../..' . '/LibreNMS/Interfaces/Discovery/Sensors/WirelessUtilizationDiscovery.php', - 'LibreNMS\\Interfaces\\Polling\\PollerModule' => __DIR__ . '/../..' . '/LibreNMS/Interfaces/Polling/PollerModule.php', - 'LibreNMS\\Interfaces\\Polling\\Sensors\\WirelessApCountPolling' => __DIR__ . '/../..' . '/LibreNMS/Interfaces/Polling/Sensors/WirelessApCountPolling.php', - 'LibreNMS\\Interfaces\\Polling\\Sensors\\WirelessCapacityPolling' => __DIR__ . '/../..' . '/LibreNMS/Interfaces/Polling/Sensors/WirelessCapacityPolling.php', - 'LibreNMS\\Interfaces\\Polling\\Sensors\\WirelessCcqPolling' => __DIR__ . '/../..' . '/LibreNMS/Interfaces/Polling/Sensors/WirelessCcqPolling.php', - 'LibreNMS\\Interfaces\\Polling\\Sensors\\WirelessClientsPolling' => __DIR__ . '/../..' . '/LibreNMS/Interfaces/Polling/Sensors/WirelessClientsPolling.php', - 'LibreNMS\\Interfaces\\Polling\\Sensors\\WirelessDistancePolling' => __DIR__ . '/../..' . '/LibreNMS/Interfaces/Polling/Sensors/WirelessDistancePolling.php', - 'LibreNMS\\Interfaces\\Polling\\Sensors\\WirelessErrorRatePolling' => __DIR__ . '/../..' . '/LibreNMS/Interfaces/Polling/Sensors/WirelessErrorRatePolling.php', - 'LibreNMS\\Interfaces\\Polling\\Sensors\\WirelessErrorRatioPolling' => __DIR__ . '/../..' . '/LibreNMS/Interfaces/Polling/Sensors/WirelessErrorRatioPolling.php', - 'LibreNMS\\Interfaces\\Polling\\Sensors\\WirelessFrequencyPolling' => __DIR__ . '/../..' . '/LibreNMS/Interfaces/Polling/Sensors/WirelessFrequencyPolling.php', - 'LibreNMS\\Interfaces\\Polling\\Sensors\\WirelessNoiseFloorPolling' => __DIR__ . '/../..' . '/LibreNMS/Interfaces/Polling/Sensors/WirelessNoiseFloorPolling.php', - 'LibreNMS\\Interfaces\\Polling\\Sensors\\WirelessPowerPolling' => __DIR__ . '/../..' . '/LibreNMS/Interfaces/Polling/Sensors/WirelessPowerPolling.php', - 'LibreNMS\\Interfaces\\Polling\\Sensors\\WirelessQualityPolling' => __DIR__ . '/../..' . '/LibreNMS/Interfaces/Polling/Sensors/WirelessQualityPolling.php', - 'LibreNMS\\Interfaces\\Polling\\Sensors\\WirelessRatePolling' => __DIR__ . '/../..' . '/LibreNMS/Interfaces/Polling/Sensors/WirelessRatePolling.php', - 'LibreNMS\\Interfaces\\Polling\\Sensors\\WirelessRssiPolling' => __DIR__ . '/../..' . '/LibreNMS/Interfaces/Polling/Sensors/WirelessRssiPolling.php', - 'LibreNMS\\Interfaces\\Polling\\Sensors\\WirelessSnrPolling' => __DIR__ . '/../..' . '/LibreNMS/Interfaces/Polling/Sensors/WirelessSnrPolling.php', - 'LibreNMS\\Interfaces\\Polling\\Sensors\\WirelessUtilizationPolling' => __DIR__ . '/../..' . '/LibreNMS/Interfaces/Polling/Sensors/WirelessUtilizationPolling.php', - 'LibreNMS\\OS' => __DIR__ . '/../..' . '/LibreNMS/OS.php', - 'LibreNMS\\OS\\Airos' => __DIR__ . '/../..' . '/LibreNMS/OS/Airos.php', - 'LibreNMS\\OS\\AirosAf' => __DIR__ . '/../..' . '/LibreNMS/OS/AirosAf.php', - 'LibreNMS\\OS\\Airport' => __DIR__ . '/../..' . '/LibreNMS/OS/Airport.php', - 'LibreNMS\\OS\\Arubaos' => __DIR__ . '/../..' . '/LibreNMS/OS/Arubaos.php', - 'LibreNMS\\OS\\Ciscowlc' => __DIR__ . '/../..' . '/LibreNMS/OS/Ciscowlc.php', - 'LibreNMS\\OS\\Deliberant' => __DIR__ . '/../..' . '/LibreNMS/OS/Deliberant.php', - 'LibreNMS\\OS\\Extendair' => __DIR__ . '/../..' . '/LibreNMS/OS/Extendair.php', - 'LibreNMS\\OS\\Generic' => __DIR__ . '/../..' . '/LibreNMS/OS/Generic.php', - 'LibreNMS\\OS\\Helios' => __DIR__ . '/../..' . '/LibreNMS/OS/Helios.php', - 'LibreNMS\\OS\\Hpmsm' => __DIR__ . '/../..' . '/LibreNMS/OS/Hpmsm.php', - 'LibreNMS\\OS\\Ios' => __DIR__ . '/../..' . '/LibreNMS/OS/Ios.php', - 'LibreNMS\\OS\\Mimosa' => __DIR__ . '/../..' . '/LibreNMS/OS/Mimosa.php', - 'LibreNMS\\OS\\Routeros' => __DIR__ . '/../..' . '/LibreNMS/OS/Routeros.php', - 'LibreNMS\\OS\\Siklu' => __DIR__ . '/../..' . '/LibreNMS/OS/Siklu.php', - 'LibreNMS\\OS\\Symbol' => __DIR__ . '/../..' . '/LibreNMS/OS/Symbol.php', - 'LibreNMS\\OS\\Unifi' => __DIR__ . '/../..' . '/LibreNMS/OS/Unifi.php', - 'LibreNMS\\OS\\XirrusAos' => __DIR__ . '/../..' . '/LibreNMS/OS/XirrusAos.php', - 'LibreNMS\\ObjectCache' => __DIR__ . '/../..' . '/LibreNMS/ObjectCache.php', - 'LibreNMS\\Plugins' => __DIR__ . '/../..' . '/LibreNMS/Plugins.php', - 'LibreNMS\\Proc' => __DIR__ . '/../..' . '/LibreNMS/Proc.php', - 'LibreNMS\\RRDRecursiveFilterIterator' => __DIR__ . '/../..' . '/LibreNMS/RRDRecursiveFilterIterator.php', - 'LibreNMS\\RRD\\RrdDefinition' => __DIR__ . '/../..' . '/LibreNMS/RRD/RrdDefinition.php', - 'LibreNMS\\Tests\\AlertTest' => __DIR__ . '/../..' . '/tests/AlertingTest.php', - 'LibreNMS\\Tests\\CommonFunctionsTest' => __DIR__ . '/../..' . '/tests/CommonFunctionsTest.php', - 'LibreNMS\\Tests\\DBSetupTest' => __DIR__ . '/../..' . '/tests/DBSetupTest.php', - 'LibreNMS\\Tests\\DBTestCase' => __DIR__ . '/../..' . '/tests/DBTestCase.php', - 'LibreNMS\\Tests\\FunctionsTest' => __DIR__ . '/../..' . '/tests/FunctionsTest.php', - 'LibreNMS\\Tests\\OSDiscoveryTest' => __DIR__ . '/../..' . '/tests/OSDiscoveryTest.php', - 'LibreNMS\\Tests\\RrdDefinitionTest' => __DIR__ . '/../..' . '/tests/RrdDefinitionTest.php', - 'LibreNMS\\Tests\\RrdtoolTest' => __DIR__ . '/../..' . '/tests/RrdtoolTest.php', - 'LibreNMS\\Tests\\SVGTest' => __DIR__ . '/../..' . '/tests/SVGTest.php', - 'LibreNMS\\Tests\\SyslogTest' => __DIR__ . '/../..' . '/tests/SyslogTest.php', - 'LibreNMS\\Tests\\YamlTest' => __DIR__ . '/../..' . '/tests/YamlTest.php', 'PDF417' => __DIR__ . '/..' . '/tecnickcom/tcpdf/include/barcodes/pdf417.php', 'PHPMailer' => __DIR__ . '/..' . '/phpmailer/phpmailer/class.phpmailer.php', 'PHPMailerOAuth' => __DIR__ . '/..' . '/phpmailer/phpmailer/class.phpmaileroauth.php', 'PHPMailerOAuthGoogle' => __DIR__ . '/..' . '/phpmailer/phpmailer/class.phpmaileroauthgoogle.php', 'POP3' => __DIR__ . '/..' . '/phpmailer/phpmailer/class.pop3.php', - 'PhpAmqpLib\\Channel\\AMQPChannel' => __DIR__ . '/..' . '/php-amqplib/php-amqplib/PhpAmqpLib/Channel/AMQPChannel.php', - 'PhpAmqpLib\\Channel\\AbstractChannel' => __DIR__ . '/..' . '/php-amqplib/php-amqplib/PhpAmqpLib/Channel/AbstractChannel.php', - 'PhpAmqpLib\\Connection\\AMQPConnection' => __DIR__ . '/..' . '/php-amqplib/php-amqplib/PhpAmqpLib/Connection/AMQPConnection.php', - 'PhpAmqpLib\\Connection\\AMQPSSLConnection' => __DIR__ . '/..' . '/php-amqplib/php-amqplib/PhpAmqpLib/Connection/AMQPSSLConnection.php', - 'PhpAmqpLib\\Connection\\AMQPSocketConnection' => __DIR__ . '/..' . '/php-amqplib/php-amqplib/PhpAmqpLib/Connection/AMQPSocketConnection.php', - 'PhpAmqpLib\\Connection\\AMQPStreamConnection' => __DIR__ . '/..' . '/php-amqplib/php-amqplib/PhpAmqpLib/Connection/AMQPStreamConnection.php', - 'PhpAmqpLib\\Connection\\AbstractConnection' => __DIR__ . '/..' . '/php-amqplib/php-amqplib/PhpAmqpLib/Connection/AbstractConnection.php', - 'PhpAmqpLib\\Exception\\AMQPChannelException' => __DIR__ . '/..' . '/php-amqplib/php-amqplib/PhpAmqpLib/Exception/AMQPChannelException.php', - 'PhpAmqpLib\\Exception\\AMQPConnectionException' => __DIR__ . '/..' . '/php-amqplib/php-amqplib/PhpAmqpLib/Exception/AMQPConnectionException.php', - 'PhpAmqpLib\\Exception\\AMQPException' => __DIR__ . '/..' . '/php-amqplib/php-amqplib/PhpAmqpLib/Exception/AMQPException.php', - 'PhpAmqpLib\\Exception\\AMQPExceptionInterface' => __DIR__ . '/..' . '/php-amqplib/php-amqplib/PhpAmqpLib/Exception/AMQPExceptionInterface.php', - 'PhpAmqpLib\\Exception\\AMQPOutOfBoundsException' => __DIR__ . '/..' . '/php-amqplib/php-amqplib/PhpAmqpLib/Exception/AMQPOutOfBoundsException.php', - 'PhpAmqpLib\\Exception\\AMQPProtocolChannelException' => __DIR__ . '/..' . '/php-amqplib/php-amqplib/PhpAmqpLib/Exception/AMQPProtocolChannelException.php', - 'PhpAmqpLib\\Exception\\AMQPProtocolConnectionException' => __DIR__ . '/..' . '/php-amqplib/php-amqplib/PhpAmqpLib/Exception/AMQPProtocolConnectionException.php', - 'PhpAmqpLib\\Exception\\AMQPProtocolException' => __DIR__ . '/..' . '/php-amqplib/php-amqplib/PhpAmqpLib/Exception/AMQPProtocolException.php', - 'PhpAmqpLib\\Exception\\AMQPRuntimeException' => __DIR__ . '/..' . '/php-amqplib/php-amqplib/PhpAmqpLib/Exception/AMQPRuntimeException.php', - 'PhpAmqpLib\\Exception\\AMQPTimeoutException' => __DIR__ . '/..' . '/php-amqplib/php-amqplib/PhpAmqpLib/Exception/AMQPTimeoutException.php', - 'PhpAmqpLib\\Helper\\MiscHelper' => __DIR__ . '/..' . '/php-amqplib/php-amqplib/PhpAmqpLib/Helper/MiscHelper.php', - 'PhpAmqpLib\\Helper\\Protocol\\MethodMap080' => __DIR__ . '/..' . '/php-amqplib/php-amqplib/PhpAmqpLib/Helper/Protocol/MethodMap080.php', - 'PhpAmqpLib\\Helper\\Protocol\\MethodMap091' => __DIR__ . '/..' . '/php-amqplib/php-amqplib/PhpAmqpLib/Helper/Protocol/MethodMap091.php', - 'PhpAmqpLib\\Helper\\Protocol\\Protocol080' => __DIR__ . '/..' . '/php-amqplib/php-amqplib/PhpAmqpLib/Helper/Protocol/Protocol080.php', - 'PhpAmqpLib\\Helper\\Protocol\\Protocol091' => __DIR__ . '/..' . '/php-amqplib/php-amqplib/PhpAmqpLib/Helper/Protocol/Protocol091.php', - 'PhpAmqpLib\\Helper\\Protocol\\Wait080' => __DIR__ . '/..' . '/php-amqplib/php-amqplib/PhpAmqpLib/Helper/Protocol/Wait080.php', - 'PhpAmqpLib\\Helper\\Protocol\\Wait091' => __DIR__ . '/..' . '/php-amqplib/php-amqplib/PhpAmqpLib/Helper/Protocol/Wait091.php', - 'PhpAmqpLib\\Message\\AMQPMessage' => __DIR__ . '/..' . '/php-amqplib/php-amqplib/PhpAmqpLib/Message/AMQPMessage.php', - 'PhpAmqpLib\\Tests\\Functional\\AbstractPublishConsumeTest' => __DIR__ . '/..' . '/php-amqplib/php-amqplib/PhpAmqpLib/Tests/Functional/AbstractPublishConsumeTest.php', - 'PhpAmqpLib\\Tests\\Functional\\Bug40Test' => __DIR__ . '/..' . '/php-amqplib/php-amqplib/PhpAmqpLib/Tests/Functional/Bug40Test.php', - 'PhpAmqpLib\\Tests\\Functional\\Bug49Test' => __DIR__ . '/..' . '/php-amqplib/php-amqplib/PhpAmqpLib/Tests/Functional/Bug49Test.php', - 'PhpAmqpLib\\Tests\\Functional\\FileTransferTest' => __DIR__ . '/..' . '/php-amqplib/php-amqplib/PhpAmqpLib/Tests/Functional/FileTransferTest.php', - 'PhpAmqpLib\\Tests\\Functional\\SocketPublishConsumeTest' => __DIR__ . '/..' . '/php-amqplib/php-amqplib/PhpAmqpLib/Tests/Functional/SocketPublishConsumeTest.php', - 'PhpAmqpLib\\Tests\\Functional\\StreamPublishConsumeTest' => __DIR__ . '/..' . '/php-amqplib/php-amqplib/PhpAmqpLib/Tests/Functional/StreamPublishConsumeTest.php', - 'PhpAmqpLib\\Tests\\Unit\\AMQPWriterTest' => __DIR__ . '/..' . '/php-amqplib/php-amqplib/PhpAmqpLib/Tests/Unit/Wire/AMQPWriterTest.php', - 'PhpAmqpLib\\Tests\\Unit\\Helper\\Writer\\Protocol091Test' => __DIR__ . '/..' . '/php-amqplib/php-amqplib/PhpAmqpLib/Tests/Unit/Helper/Protocol/Protocol091Test.php', - 'PhpAmqpLib\\Tests\\Unit\\WireTest' => __DIR__ . '/..' . '/php-amqplib/php-amqplib/PhpAmqpLib/Tests/Unit/WireTest.php', - 'PhpAmqpLib\\Wire\\AMQPDecimal' => __DIR__ . '/..' . '/php-amqplib/php-amqplib/PhpAmqpLib/Wire/AMQPDecimal.php', - 'PhpAmqpLib\\Wire\\AMQPReader' => __DIR__ . '/..' . '/php-amqplib/php-amqplib/PhpAmqpLib/Wire/AMQPReader.php', - 'PhpAmqpLib\\Wire\\AMQPWriter' => __DIR__ . '/..' . '/php-amqplib/php-amqplib/PhpAmqpLib/Wire/AMQPWriter.php', - 'PhpAmqpLib\\Wire\\Constants080' => __DIR__ . '/..' . '/php-amqplib/php-amqplib/PhpAmqpLib/Wire/Constants080.php', - 'PhpAmqpLib\\Wire\\Constants091' => __DIR__ . '/..' . '/php-amqplib/php-amqplib/PhpAmqpLib/Wire/Constants091.php', - 'PhpAmqpLib\\Wire\\GenericContent' => __DIR__ . '/..' . '/php-amqplib/php-amqplib/PhpAmqpLib/Wire/GenericContent.php', - 'PhpAmqpLib\\Wire\\IO\\AbstractIO' => __DIR__ . '/..' . '/php-amqplib/php-amqplib/PhpAmqpLib/Wire/IO/AbstractIO.php', - 'PhpAmqpLib\\Wire\\IO\\SocketIO' => __DIR__ . '/..' . '/php-amqplib/php-amqplib/PhpAmqpLib/Wire/IO/SocketIO.php', - 'PhpAmqpLib\\Wire\\IO\\StreamIO' => __DIR__ . '/..' . '/php-amqplib/php-amqplib/PhpAmqpLib/Wire/IO/StreamIO.php', - 'Phpass\\PasswordHash' => __DIR__ . '/..' . '/xjtuwangke/passwordhash/src/Phpass/PasswordHash.php', 'QRcode' => __DIR__ . '/..' . '/tecnickcom/tcpdf/include/barcodes/qrcode.php', - 'Requests' => __DIR__ . '/..' . '/rmccue/requests/library/Requests.php', - 'Requests_Auth' => __DIR__ . '/..' . '/rmccue/requests/library/Requests/Auth.php', - 'Requests_Auth_Basic' => __DIR__ . '/..' . '/rmccue/requests/library/Requests/Auth/Basic.php', - 'Requests_Cookie' => __DIR__ . '/..' . '/rmccue/requests/library/Requests/Cookie.php', - 'Requests_Cookie_Jar' => __DIR__ . '/..' . '/rmccue/requests/library/Requests/Cookie/Jar.php', - 'Requests_Exception' => __DIR__ . '/..' . '/rmccue/requests/library/Requests/Exception.php', - 'Requests_Exception_HTTP' => __DIR__ . '/..' . '/rmccue/requests/library/Requests/Exception/HTTP.php', - 'Requests_Exception_HTTP_304' => __DIR__ . '/..' . '/rmccue/requests/library/Requests/Exception/HTTP/304.php', - 'Requests_Exception_HTTP_305' => __DIR__ . '/..' . '/rmccue/requests/library/Requests/Exception/HTTP/305.php', - 'Requests_Exception_HTTP_306' => __DIR__ . '/..' . '/rmccue/requests/library/Requests/Exception/HTTP/306.php', - 'Requests_Exception_HTTP_400' => __DIR__ . '/..' . '/rmccue/requests/library/Requests/Exception/HTTP/400.php', - 'Requests_Exception_HTTP_401' => __DIR__ . '/..' . '/rmccue/requests/library/Requests/Exception/HTTP/401.php', - 'Requests_Exception_HTTP_402' => __DIR__ . '/..' . '/rmccue/requests/library/Requests/Exception/HTTP/402.php', - 'Requests_Exception_HTTP_403' => __DIR__ . '/..' . '/rmccue/requests/library/Requests/Exception/HTTP/403.php', - 'Requests_Exception_HTTP_404' => __DIR__ . '/..' . '/rmccue/requests/library/Requests/Exception/HTTP/404.php', - 'Requests_Exception_HTTP_405' => __DIR__ . '/..' . '/rmccue/requests/library/Requests/Exception/HTTP/405.php', - 'Requests_Exception_HTTP_406' => __DIR__ . '/..' . '/rmccue/requests/library/Requests/Exception/HTTP/406.php', - 'Requests_Exception_HTTP_407' => __DIR__ . '/..' . '/rmccue/requests/library/Requests/Exception/HTTP/407.php', - 'Requests_Exception_HTTP_408' => __DIR__ . '/..' . '/rmccue/requests/library/Requests/Exception/HTTP/408.php', - 'Requests_Exception_HTTP_409' => __DIR__ . '/..' . '/rmccue/requests/library/Requests/Exception/HTTP/409.php', - 'Requests_Exception_HTTP_410' => __DIR__ . '/..' . '/rmccue/requests/library/Requests/Exception/HTTP/410.php', - 'Requests_Exception_HTTP_411' => __DIR__ . '/..' . '/rmccue/requests/library/Requests/Exception/HTTP/411.php', - 'Requests_Exception_HTTP_412' => __DIR__ . '/..' . '/rmccue/requests/library/Requests/Exception/HTTP/412.php', - 'Requests_Exception_HTTP_413' => __DIR__ . '/..' . '/rmccue/requests/library/Requests/Exception/HTTP/413.php', - 'Requests_Exception_HTTP_414' => __DIR__ . '/..' . '/rmccue/requests/library/Requests/Exception/HTTP/414.php', - 'Requests_Exception_HTTP_415' => __DIR__ . '/..' . '/rmccue/requests/library/Requests/Exception/HTTP/415.php', - 'Requests_Exception_HTTP_416' => __DIR__ . '/..' . '/rmccue/requests/library/Requests/Exception/HTTP/416.php', - 'Requests_Exception_HTTP_417' => __DIR__ . '/..' . '/rmccue/requests/library/Requests/Exception/HTTP/417.php', - 'Requests_Exception_HTTP_418' => __DIR__ . '/..' . '/rmccue/requests/library/Requests/Exception/HTTP/418.php', - 'Requests_Exception_HTTP_428' => __DIR__ . '/..' . '/rmccue/requests/library/Requests/Exception/HTTP/428.php', - 'Requests_Exception_HTTP_429' => __DIR__ . '/..' . '/rmccue/requests/library/Requests/Exception/HTTP/429.php', - 'Requests_Exception_HTTP_431' => __DIR__ . '/..' . '/rmccue/requests/library/Requests/Exception/HTTP/431.php', - 'Requests_Exception_HTTP_500' => __DIR__ . '/..' . '/rmccue/requests/library/Requests/Exception/HTTP/500.php', - 'Requests_Exception_HTTP_501' => __DIR__ . '/..' . '/rmccue/requests/library/Requests/Exception/HTTP/501.php', - 'Requests_Exception_HTTP_502' => __DIR__ . '/..' . '/rmccue/requests/library/Requests/Exception/HTTP/502.php', - 'Requests_Exception_HTTP_503' => __DIR__ . '/..' . '/rmccue/requests/library/Requests/Exception/HTTP/503.php', - 'Requests_Exception_HTTP_504' => __DIR__ . '/..' . '/rmccue/requests/library/Requests/Exception/HTTP/504.php', - 'Requests_Exception_HTTP_505' => __DIR__ . '/..' . '/rmccue/requests/library/Requests/Exception/HTTP/505.php', - 'Requests_Exception_HTTP_511' => __DIR__ . '/..' . '/rmccue/requests/library/Requests/Exception/HTTP/511.php', - 'Requests_Exception_HTTP_Unknown' => __DIR__ . '/..' . '/rmccue/requests/library/Requests/Exception/HTTP/Unknown.php', - 'Requests_Exception_Transport' => __DIR__ . '/..' . '/rmccue/requests/library/Requests/Exception/Transport.php', - 'Requests_Exception_Transport_cURL' => __DIR__ . '/..' . '/rmccue/requests/library/Requests/Exception/Transport/cURL.php', - 'Requests_Hooker' => __DIR__ . '/..' . '/rmccue/requests/library/Requests/Hooker.php', - 'Requests_Hooks' => __DIR__ . '/..' . '/rmccue/requests/library/Requests/Hooks.php', - 'Requests_IDNAEncoder' => __DIR__ . '/..' . '/rmccue/requests/library/Requests/IDNAEncoder.php', - 'Requests_IPv6' => __DIR__ . '/..' . '/rmccue/requests/library/Requests/IPv6.php', - 'Requests_IRI' => __DIR__ . '/..' . '/rmccue/requests/library/Requests/IRI.php', - 'Requests_Proxy' => __DIR__ . '/..' . '/rmccue/requests/library/Requests/Proxy.php', - 'Requests_Proxy_HTTP' => __DIR__ . '/..' . '/rmccue/requests/library/Requests/Proxy/HTTP.php', - 'Requests_Response' => __DIR__ . '/..' . '/rmccue/requests/library/Requests/Response.php', - 'Requests_Response_Headers' => __DIR__ . '/..' . '/rmccue/requests/library/Requests/Response/Headers.php', - 'Requests_SSL' => __DIR__ . '/..' . '/rmccue/requests/library/Requests/SSL.php', - 'Requests_Session' => __DIR__ . '/..' . '/rmccue/requests/library/Requests/Session.php', - 'Requests_Transport' => __DIR__ . '/..' . '/rmccue/requests/library/Requests/Transport.php', - 'Requests_Transport_cURL' => __DIR__ . '/..' . '/rmccue/requests/library/Requests/Transport/cURL.php', - 'Requests_Transport_fsockopen' => __DIR__ . '/..' . '/rmccue/requests/library/Requests/Transport/fsockopen.php', - 'Requests_Utility_CaseInsensitiveDictionary' => __DIR__ . '/..' . '/rmccue/requests/library/Requests/Utility/CaseInsensitiveDictionary.php', - 'Requests_Utility_FilteredIterator' => __DIR__ . '/..' . '/rmccue/requests/library/Requests/Utility/FilteredIterator.php', 'SMTP' => __DIR__ . '/..' . '/phpmailer/phpmailer/class.smtp.php', - 'SlimFlashTest' => __DIR__ . '/..' . '/slim/slim/tests/Middleware/FlashTest.php', - 'SlimHttpUtilTest' => __DIR__ . '/..' . '/slim/slim/tests/Http/UtilTest.php', - 'SlimTest' => __DIR__ . '/..' . '/slim/slim/tests/SlimTest.php', - 'Slim\\Environment' => __DIR__ . '/..' . '/slim/slim/Slim/Environment.php', - 'Slim\\Exception\\Pass' => __DIR__ . '/..' . '/slim/slim/Slim/Exception/Pass.php', - 'Slim\\Exception\\Stop' => __DIR__ . '/..' . '/slim/slim/Slim/Exception/Stop.php', - 'Slim\\Helper\\Set' => __DIR__ . '/..' . '/slim/slim/Slim/Helper/Set.php', - 'Slim\\Http\\Cookies' => __DIR__ . '/..' . '/slim/slim/Slim/Http/Cookies.php', - 'Slim\\Http\\Headers' => __DIR__ . '/..' . '/slim/slim/Slim/Http/Headers.php', - 'Slim\\Http\\Request' => __DIR__ . '/..' . '/slim/slim/Slim/Http/Request.php', - 'Slim\\Http\\Response' => __DIR__ . '/..' . '/slim/slim/Slim/Http/Response.php', - 'Slim\\Http\\Util' => __DIR__ . '/..' . '/slim/slim/Slim/Http/Util.php', - 'Slim\\Log' => __DIR__ . '/..' . '/slim/slim/Slim/Log.php', - 'Slim\\LogWriter' => __DIR__ . '/..' . '/slim/slim/Slim/LogWriter.php', - 'Slim\\Middleware' => __DIR__ . '/..' . '/slim/slim/Slim/Middleware.php', - 'Slim\\Middleware\\ContentTypes' => __DIR__ . '/..' . '/slim/slim/Slim/Middleware/ContentTypes.php', - 'Slim\\Middleware\\Flash' => __DIR__ . '/..' . '/slim/slim/Slim/Middleware/Flash.php', - 'Slim\\Middleware\\MethodOverride' => __DIR__ . '/..' . '/slim/slim/Slim/Middleware/MethodOverride.php', - 'Slim\\Middleware\\PrettyExceptions' => __DIR__ . '/..' . '/slim/slim/Slim/Middleware/PrettyExceptions.php', - 'Slim\\Middleware\\SessionCookie' => __DIR__ . '/..' . '/slim/slim/Slim/Middleware/SessionCookie.php', - 'Slim\\Route' => __DIR__ . '/..' . '/slim/slim/Slim/Route.php', - 'Slim\\Router' => __DIR__ . '/..' . '/slim/slim/Slim/Router.php', - 'Slim\\Slim' => __DIR__ . '/..' . '/slim/slim/Slim/Slim.php', - 'Slim\\View' => __DIR__ . '/..' . '/slim/slim/Slim/View.php', - 'Symfony\\Component\\Yaml\\Dumper' => __DIR__ . '/..' . '/symfony/yaml/Dumper.php', - 'Symfony\\Component\\Yaml\\Escaper' => __DIR__ . '/..' . '/symfony/yaml/Escaper.php', - 'Symfony\\Component\\Yaml\\Exception\\DumpException' => __DIR__ . '/..' . '/symfony/yaml/Exception/DumpException.php', - 'Symfony\\Component\\Yaml\\Exception\\ExceptionInterface' => __DIR__ . '/..' . '/symfony/yaml/Exception/ExceptionInterface.php', - 'Symfony\\Component\\Yaml\\Exception\\ParseException' => __DIR__ . '/..' . '/symfony/yaml/Exception/ParseException.php', - 'Symfony\\Component\\Yaml\\Exception\\RuntimeException' => __DIR__ . '/..' . '/symfony/yaml/Exception/RuntimeException.php', - 'Symfony\\Component\\Yaml\\Inline' => __DIR__ . '/..' . '/symfony/yaml/Inline.php', - 'Symfony\\Component\\Yaml\\Parser' => __DIR__ . '/..' . '/symfony/yaml/Parser.php', - 'Symfony\\Component\\Yaml\\Unescaper' => __DIR__ . '/..' . '/symfony/yaml/Unescaper.php', - 'Symfony\\Component\\Yaml\\Yaml' => __DIR__ . '/..' . '/symfony/yaml/Yaml.php', 'TCPDF' => __DIR__ . '/..' . '/tecnickcom/tcpdf/tcpdf.php', 'TCPDF2DBarcode' => __DIR__ . '/..' . '/tecnickcom/tcpdf/tcpdf_barcodes_2d.php', 'TCPDFBarcode' => __DIR__ . '/..' . '/tecnickcom/tcpdf/tcpdf_barcodes_1d.php', diff --git a/vendor/composer/installed.json b/vendor/composer/installed.json index 8234cd9ab9..0a57dd9a42 100644 --- a/vendor/composer/installed.json +++ b/vendor/composer/installed.json @@ -697,5 +697,52 @@ ], "description": "Symfony Yaml Component", "homepage": "https://symfony.com" + }, + { + "name": "ramsey/array_column", + "version": "1.1.3", + "version_normalized": "1.1.3.0", + "source": { + "type": "git", + "url": "https://github.com/ramsey/array_column.git", + "reference": "f8e52eb28e67eb50e613b451dd916abcf783c1db" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/ramsey/array_column/zipball/f8e52eb28e67eb50e613b451dd916abcf783c1db", + "reference": "f8e52eb28e67eb50e613b451dd916abcf783c1db", + "shasum": "" + }, + "require-dev": { + "jakub-onderka/php-parallel-lint": "0.8.*", + "phpunit/phpunit": "~4.5", + "satooshi/php-coveralls": "0.6.*", + "squizlabs/php_codesniffer": "~2.2" + }, + "time": "2015-03-20 22:07:39", + "type": "library", + "installation-source": "dist", + "autoload": { + "files": [ + "src/array_column.php" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Ben Ramsey", + "homepage": "http://benramsey.com" + } + ], + "description": "Provides functionality for array_column() to projects using PHP earlier than version 5.5.", + "homepage": "https://github.com/ramsey/array_column", + "keywords": [ + "array", + "array_column", + "column" + ] } ] diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrTransform/TargetNoopener.php b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrTransform/TargetNoopener.php new file mode 100644 index 0000000000..1db3c6c09e --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrTransform/TargetNoopener.php @@ -0,0 +1,37 @@ + + This directive enables aggressive pre-filter removal of + script tags. This is not necessary for security, + but it can help work around a bug in libxml where embedded + HTML elements inside script sections cause the parser to + choke. To revert to pre-4.9.0 behavior, set this to false. + This directive has no effect if %Core.Trusted is true, + %Core.RemoveScriptContents is false, or %Core.HiddenElements + does not contain script. +

+--# vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Core.LegacyEntityDecoder.txt b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Core.LegacyEntityDecoder.txt new file mode 100644 index 0000000000..392b436493 --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Core.LegacyEntityDecoder.txt @@ -0,0 +1,36 @@ +Core.LegacyEntityDecoder +TYPE: bool +VERSION: 4.9.0 +DEFAULT: false +--DESCRIPTION-- +

+ Prior to HTML Purifier 4.9.0, entities were decoded by performing + a global search replace for all entities whose decoded versions + did not have special meanings under HTML, and replaced them with + their decoded versions. We would match all entities, even if they did + not have a trailing semicolon, but only if there weren't any trailing + alphanumeric characters. +

+ + + + + + +
OriginalTextAttribute
&yen;¥¥
&yen¥¥
&yena&yena&yena
&yen=¥=¥=
+

+ In HTML Purifier 4.9.0, we changed the behavior of entity parsing + to match entities that had missing trailing semicolons in less + cases, to more closely match HTML5 parsing behavior: +

+ + + + + + +
OriginalTextAttribute
&yen;¥¥
&yen¥¥
&yena¥a&yena
&yen=¥=&yen=
+

+ This flag reverts back to pre-HTML Purifier 4.9.0 behavior. +

+--# vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/HTML.TargetNoopener.txt b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/HTML.TargetNoopener.txt new file mode 100644 index 0000000000..dd514c0def --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/HTML.TargetNoopener.txt @@ -0,0 +1,10 @@ +--# vim: et sw=4 sts=4 +HTML.TargetNoopener +TYPE: bool +VERSION: 4.8.0 +DEFAULT: TRUE +--DESCRIPTION-- +If enabled, noopener rel attributes are added to links which have +a target attribute associated with them. This prevents malicious +destinations from overwriting the original window. +--# vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/TargetNoopener.php b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/TargetNoopener.php new file mode 100644 index 0000000000..b967ff566b --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/TargetNoopener.php @@ -0,0 +1,21 @@ +addBlankElement('a'); + $a->attr_transform_post[] = new HTMLPurifier_AttrTransform_TargetNoopener(); + } +} diff --git a/vendor/ezyang/htmlpurifier/maintenance/.htaccess b/vendor/ezyang/htmlpurifier/maintenance/.htaccess new file mode 100644 index 0000000000..3a42882788 --- /dev/null +++ b/vendor/ezyang/htmlpurifier/maintenance/.htaccess @@ -0,0 +1 @@ +Deny from all diff --git a/vendor/ezyang/htmlpurifier/plugins/phorum/.gitignore b/vendor/ezyang/htmlpurifier/plugins/phorum/.gitignore new file mode 100644 index 0000000000..8325e09020 --- /dev/null +++ b/vendor/ezyang/htmlpurifier/plugins/phorum/.gitignore @@ -0,0 +1,2 @@ +migrate.php +htmlpurifier/* diff --git a/vendor/ezyang/htmlpurifier/plugins/phorum/htmlpurifier/LICENSE b/vendor/ezyang/htmlpurifier/plugins/phorum/htmlpurifier/LICENSE new file mode 100644 index 0000000000..8c88a20d45 --- /dev/null +++ b/vendor/ezyang/htmlpurifier/plugins/phorum/htmlpurifier/LICENSE @@ -0,0 +1,504 @@ + GNU LESSER GENERAL PUBLIC LICENSE + Version 2.1, February 1999 + + Copyright (C) 1991, 1999 Free Software Foundation, Inc. + 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + +[This is the first released version of the Lesser GPL. It also counts + as the successor of the GNU Library Public License, version 2, hence + the version number 2.1.] + + Preamble + + The licenses for most software are designed to take away your +freedom to share and change it. By contrast, the GNU General Public +Licenses are intended to guarantee your freedom to share and change +free software--to make sure the software is free for all its users. + + This license, the Lesser General Public License, applies to some +specially designated software packages--typically libraries--of the +Free Software Foundation and other authors who decide to use it. You +can use it too, but we suggest you first think carefully about whether +this license or the ordinary General Public License is the better +strategy to use in any particular case, based on the explanations below. + + When we speak of free software, we are referring to freedom of use, +not price. Our General Public Licenses are designed to make sure that +you have the freedom to distribute copies of free software (and charge +for this service if you wish); that you receive source code or can get +it if you want it; that you can change the software and use pieces of +it in new free programs; and that you are informed that you can do +these things. + + To protect your rights, we need to make restrictions that forbid +distributors to deny you these rights or to ask you to surrender these +rights. These restrictions translate to certain responsibilities for +you if you distribute copies of the library or if you modify it. + + For example, if you distribute copies of the library, whether gratis +or for a fee, you must give the recipients all the rights that we gave +you. You must make sure that they, too, receive or can get the source +code. If you link other code with the library, you must provide +complete object files to the recipients, so that they can relink them +with the library after making changes to the library and recompiling +it. And you must show them these terms so they know their rights. + + We protect your rights with a two-step method: (1) we copyright the +library, and (2) we offer you this license, which gives you legal +permission to copy, distribute and/or modify the library. + + To protect each distributor, we want to make it very clear that +there is no warranty for the free library. Also, if the library is +modified by someone else and passed on, the recipients should know +that what they have is not the original version, so that the original +author's reputation will not be affected by problems that might be +introduced by others. + + Finally, software patents pose a constant threat to the existence of +any free program. We wish to make sure that a company cannot +effectively restrict the users of a free program by obtaining a +restrictive license from a patent holder. Therefore, we insist that +any patent license obtained for a version of the library must be +consistent with the full freedom of use specified in this license. + + Most GNU software, including some libraries, is covered by the +ordinary GNU General Public License. This license, the GNU Lesser +General Public License, applies to certain designated libraries, and +is quite different from the ordinary General Public License. We use +this license for certain libraries in order to permit linking those +libraries into non-free programs. + + When a program is linked with a library, whether statically or using +a shared library, the combination of the two is legally speaking a +combined work, a derivative of the original library. The ordinary +General Public License therefore permits such linking only if the +entire combination fits its criteria of freedom. The Lesser General +Public License permits more lax criteria for linking other code with +the library. + + We call this license the "Lesser" General Public License because it +does Less to protect the user's freedom than the ordinary General +Public License. It also provides other free software developers Less +of an advantage over competing non-free programs. These disadvantages +are the reason we use the ordinary General Public License for many +libraries. However, the Lesser license provides advantages in certain +special circumstances. + + For example, on rare occasions, there may be a special need to +encourage the widest possible use of a certain library, so that it becomes +a de-facto standard. To achieve this, non-free programs must be +allowed to use the library. A more frequent case is that a free +library does the same job as widely used non-free libraries. In this +case, there is little to gain by limiting the free library to free +software only, so we use the Lesser General Public License. + + In other cases, permission to use a particular library in non-free +programs enables a greater number of people to use a large body of +free software. For example, permission to use the GNU C Library in +non-free programs enables many more people to use the whole GNU +operating system, as well as its variant, the GNU/Linux operating +system. + + Although the Lesser General Public License is Less protective of the +users' freedom, it does ensure that the user of a program that is +linked with the Library has the freedom and the wherewithal to run +that program using a modified version of the Library. + + The precise terms and conditions for copying, distribution and +modification follow. Pay close attention to the difference between a +"work based on the library" and a "work that uses the library". The +former contains code derived from the library, whereas the latter must +be combined with the library in order to run. + + GNU LESSER GENERAL PUBLIC LICENSE + TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + + 0. This License Agreement applies to any software library or other +program which contains a notice placed by the copyright holder or +other authorized party saying it may be distributed under the terms of +this Lesser General Public License (also called "this License"). +Each licensee is addressed as "you". + + A "library" means a collection of software functions and/or data +prepared so as to be conveniently linked with application programs +(which use some of those functions and data) to form executables. + + The "Library", below, refers to any such software library or work +which has been distributed under these terms. A "work based on the +Library" means either the Library or any derivative work under +copyright law: that is to say, a work containing the Library or a +portion of it, either verbatim or with modifications and/or translated +straightforwardly into another language. (Hereinafter, translation is +included without limitation in the term "modification".) + + "Source code" for a work means the preferred form of the work for +making modifications to it. For a library, complete source code means +all the source code for all modules it contains, plus any associated +interface definition files, plus the scripts used to control compilation +and installation of the library. + + Activities other than copying, distribution and modification are not +covered by this License; they are outside its scope. The act of +running a program using the Library is not restricted, and output from +such a program is covered only if its contents constitute a work based +on the Library (independent of the use of the Library in a tool for +writing it). Whether that is true depends on what the Library does +and what the program that uses the Library does. + + 1. You may copy and distribute verbatim copies of the Library's +complete source code as you receive it, in any medium, provided that +you conspicuously and appropriately publish on each copy an +appropriate copyright notice and disclaimer of warranty; keep intact +all the notices that refer to this License and to the absence of any +warranty; and distribute a copy of this License along with the +Library. + + You may charge a fee for the physical act of transferring a copy, +and you may at your option offer warranty protection in exchange for a +fee. + + 2. You may modify your copy or copies of the Library or any portion +of it, thus forming a work based on the Library, and copy and +distribute such modifications or work under the terms of Section 1 +above, provided that you also meet all of these conditions: + + a) The modified work must itself be a software library. + + b) You must cause the files modified to carry prominent notices + stating that you changed the files and the date of any change. + + c) You must cause the whole of the work to be licensed at no + charge to all third parties under the terms of this License. + + d) If a facility in the modified Library refers to a function or a + table of data to be supplied by an application program that uses + the facility, other than as an argument passed when the facility + is invoked, then you must make a good faith effort to ensure that, + in the event an application does not supply such function or + table, the facility still operates, and performs whatever part of + its purpose remains meaningful. + + (For example, a function in a library to compute square roots has + a purpose that is entirely well-defined independent of the + application. Therefore, Subsection 2d requires that any + application-supplied function or table used by this function must + be optional: if the application does not supply it, the square + root function must still compute square roots.) + +These requirements apply to the modified work as a whole. If +identifiable sections of that work are not derived from the Library, +and can be reasonably considered independent and separate works in +themselves, then this License, and its terms, do not apply to those +sections when you distribute them as separate works. But when you +distribute the same sections as part of a whole which is a work based +on the Library, the distribution of the whole must be on the terms of +this License, whose permissions for other licensees extend to the +entire whole, and thus to each and every part regardless of who wrote +it. + +Thus, it is not the intent of this section to claim rights or contest +your rights to work written entirely by you; rather, the intent is to +exercise the right to control the distribution of derivative or +collective works based on the Library. + +In addition, mere aggregation of another work not based on the Library +with the Library (or with a work based on the Library) on a volume of +a storage or distribution medium does not bring the other work under +the scope of this License. + + 3. You may opt to apply the terms of the ordinary GNU General Public +License instead of this License to a given copy of the Library. To do +this, you must alter all the notices that refer to this License, so +that they refer to the ordinary GNU General Public License, version 2, +instead of to this License. (If a newer version than version 2 of the +ordinary GNU General Public License has appeared, then you can specify +that version instead if you wish.) Do not make any other change in +these notices. + + Once this change is made in a given copy, it is irreversible for +that copy, so the ordinary GNU General Public License applies to all +subsequent copies and derivative works made from that copy. + + This option is useful when you wish to copy part of the code of +the Library into a program that is not a library. + + 4. You may copy and distribute the Library (or a portion or +derivative of it, under Section 2) in object code or executable form +under the terms of Sections 1 and 2 above provided that you accompany +it with the complete corresponding machine-readable source code, which +must be distributed under the terms of Sections 1 and 2 above on a +medium customarily used for software interchange. + + If distribution of object code is made by offering access to copy +from a designated place, then offering equivalent access to copy the +source code from the same place satisfies the requirement to +distribute the source code, even though third parties are not +compelled to copy the source along with the object code. + + 5. A program that contains no derivative of any portion of the +Library, but is designed to work with the Library by being compiled or +linked with it, is called a "work that uses the Library". Such a +work, in isolation, is not a derivative work of the Library, and +therefore falls outside the scope of this License. + + However, linking a "work that uses the Library" with the Library +creates an executable that is a derivative of the Library (because it +contains portions of the Library), rather than a "work that uses the +library". The executable is therefore covered by this License. +Section 6 states terms for distribution of such executables. + + When a "work that uses the Library" uses material from a header file +that is part of the Library, the object code for the work may be a +derivative work of the Library even though the source code is not. +Whether this is true is especially significant if the work can be +linked without the Library, or if the work is itself a library. The +threshold for this to be true is not precisely defined by law. + + If such an object file uses only numerical parameters, data +structure layouts and accessors, and small macros and small inline +functions (ten lines or less in length), then the use of the object +file is unrestricted, regardless of whether it is legally a derivative +work. (Executables containing this object code plus portions of the +Library will still fall under Section 6.) + + Otherwise, if the work is a derivative of the Library, you may +distribute the object code for the work under the terms of Section 6. +Any executables containing that work also fall under Section 6, +whether or not they are linked directly with the Library itself. + + 6. As an exception to the Sections above, you may also combine or +link a "work that uses the Library" with the Library to produce a +work containing portions of the Library, and distribute that work +under terms of your choice, provided that the terms permit +modification of the work for the customer's own use and reverse +engineering for debugging such modifications. + + You must give prominent notice with each copy of the work that the +Library is used in it and that the Library and its use are covered by +this License. You must supply a copy of this License. If the work +during execution displays copyright notices, you must include the +copyright notice for the Library among them, as well as a reference +directing the user to the copy of this License. Also, you must do one +of these things: + + a) Accompany the work with the complete corresponding + machine-readable source code for the Library including whatever + changes were used in the work (which must be distributed under + Sections 1 and 2 above); and, if the work is an executable linked + with the Library, with the complete machine-readable "work that + uses the Library", as object code and/or source code, so that the + user can modify the Library and then relink to produce a modified + executable containing the modified Library. (It is understood + that the user who changes the contents of definitions files in the + Library will not necessarily be able to recompile the application + to use the modified definitions.) + + b) Use a suitable shared library mechanism for linking with the + Library. A suitable mechanism is one that (1) uses at run time a + copy of the library already present on the user's computer system, + rather than copying library functions into the executable, and (2) + will operate properly with a modified version of the library, if + the user installs one, as long as the modified version is + interface-compatible with the version that the work was made with. + + c) Accompany the work with a written offer, valid for at + least three years, to give the same user the materials + specified in Subsection 6a, above, for a charge no more + than the cost of performing this distribution. + + d) If distribution of the work is made by offering access to copy + from a designated place, offer equivalent access to copy the above + specified materials from the same place. + + e) Verify that the user has already received a copy of these + materials or that you have already sent this user a copy. + + For an executable, the required form of the "work that uses the +Library" must include any data and utility programs needed for +reproducing the executable from it. However, as a special exception, +the materials to be distributed need not include anything that is +normally distributed (in either source or binary form) with the major +components (compiler, kernel, and so on) of the operating system on +which the executable runs, unless that component itself accompanies +the executable. + + It may happen that this requirement contradicts the license +restrictions of other proprietary libraries that do not normally +accompany the operating system. Such a contradiction means you cannot +use both them and the Library together in an executable that you +distribute. + + 7. You may place library facilities that are a work based on the +Library side-by-side in a single library together with other library +facilities not covered by this License, and distribute such a combined +library, provided that the separate distribution of the work based on +the Library and of the other library facilities is otherwise +permitted, and provided that you do these two things: + + a) Accompany the combined library with a copy of the same work + based on the Library, uncombined with any other library + facilities. This must be distributed under the terms of the + Sections above. + + b) Give prominent notice with the combined library of the fact + that part of it is a work based on the Library, and explaining + where to find the accompanying uncombined form of the same work. + + 8. You may not copy, modify, sublicense, link with, or distribute +the Library except as expressly provided under this License. Any +attempt otherwise to copy, modify, sublicense, link with, or +distribute the Library is void, and will automatically terminate your +rights under this License. However, parties who have received copies, +or rights, from you under this License will not have their licenses +terminated so long as such parties remain in full compliance. + + 9. You are not required to accept this License, since you have not +signed it. However, nothing else grants you permission to modify or +distribute the Library or its derivative works. These actions are +prohibited by law if you do not accept this License. Therefore, by +modifying or distributing the Library (or any work based on the +Library), you indicate your acceptance of this License to do so, and +all its terms and conditions for copying, distributing or modifying +the Library or works based on it. + + 10. Each time you redistribute the Library (or any work based on the +Library), the recipient automatically receives a license from the +original licensor to copy, distribute, link with or modify the Library +subject to these terms and conditions. You may not impose any further +restrictions on the recipients' exercise of the rights granted herein. +You are not responsible for enforcing compliance by third parties with +this License. + + 11. If, as a consequence of a court judgment or allegation of patent +infringement or for any other reason (not limited to patent issues), +conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot +distribute so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you +may not distribute the Library at all. For example, if a patent +license would not permit royalty-free redistribution of the Library by +all those who receive copies directly or indirectly through you, then +the only way you could satisfy both it and this License would be to +refrain entirely from distribution of the Library. + +If any portion of this section is held invalid or unenforceable under any +particular circumstance, the balance of the section is intended to apply, +and the section as a whole is intended to apply in other circumstances. + +It is not the purpose of this section to induce you to infringe any +patents or other property right claims or to contest validity of any +such claims; this section has the sole purpose of protecting the +integrity of the free software distribution system which is +implemented by public license practices. Many people have made +generous contributions to the wide range of software distributed +through that system in reliance on consistent application of that +system; it is up to the author/donor to decide if he or she is willing +to distribute software through any other system and a licensee cannot +impose that choice. + +This section is intended to make thoroughly clear what is believed to +be a consequence of the rest of this License. + + 12. If the distribution and/or use of the Library is restricted in +certain countries either by patents or by copyrighted interfaces, the +original copyright holder who places the Library under this License may add +an explicit geographical distribution limitation excluding those countries, +so that distribution is permitted only in or among countries not thus +excluded. In such case, this License incorporates the limitation as if +written in the body of this License. + + 13. The Free Software Foundation may publish revised and/or new +versions of the Lesser General Public License from time to time. +Such new versions will be similar in spirit to the present version, +but may differ in detail to address new problems or concerns. + +Each version is given a distinguishing version number. If the Library +specifies a version number of this License which applies to it and +"any later version", you have the option of following the terms and +conditions either of that version or of any later version published by +the Free Software Foundation. If the Library does not specify a +license version number, you may choose any version ever published by +the Free Software Foundation. + + 14. If you wish to incorporate parts of the Library into other free +programs whose distribution conditions are incompatible with these, +write to the author to ask for permission. For software which is +copyrighted by the Free Software Foundation, write to the Free +Software Foundation; we sometimes make exceptions for this. Our +decision will be guided by the two goals of preserving the free status +of all derivatives of our free software and of promoting the sharing +and reuse of software generally. + + NO WARRANTY + + 15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO +WARRANTY FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW. +EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR +OTHER PARTIES PROVIDE THE LIBRARY "AS IS" WITHOUT WARRANTY OF ANY +KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE +LIBRARY IS WITH YOU. SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME +THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. + + 16. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN +WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY +AND/OR REDISTRIBUTE THE LIBRARY AS PERMITTED ABOVE, BE LIABLE TO YOU +FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR +CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE +LIBRARY (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING +RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A +FAILURE OF THE LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF +SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGES. + + END OF TERMS AND CONDITIONS + + How to Apply These Terms to Your New Libraries + + If you develop a new library, and you want it to be of the greatest +possible use to the public, we recommend making it free software that +everyone can redistribute and change. You can do so by permitting +redistribution under these terms (or, alternatively, under the terms of the +ordinary General Public License). + + To apply these terms, attach the following notices to the library. It is +safest to attach them to the start of each source file to most effectively +convey the exclusion of warranty; and each file should have at least the +"copyright" line and a pointer to where the full notice is found. + + + Copyright (C) + + This library is free software; you can redistribute it and/or + modify it under the terms of the GNU Lesser General Public + License as published by the Free Software Foundation; either + version 2.1 of the License, or (at your option) any later version. + + This library is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public + License along with this library; if not, write to the Free Software + Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + +Also add information on how to contact you by electronic and paper mail. + +You should also get your employer (if you work as a programmer) or your +school, if any, to sign a "copyright disclaimer" for the library, if +necessary. Here is a sample; alter the names: + + Yoyodyne, Inc., hereby disclaims all copyright interest in the + library `Frob' (a library for tweaking knobs) written by James Random Hacker. + + , 1 April 1990 + Ty Coon, President of Vice + +That's all there is to it! + + vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/plugins/phorum/htmlpurifier/README b/vendor/ezyang/htmlpurifier/plugins/phorum/htmlpurifier/README new file mode 100644 index 0000000000..7df1ebeda8 --- /dev/null +++ b/vendor/ezyang/htmlpurifier/plugins/phorum/htmlpurifier/README @@ -0,0 +1,3 @@ +The contents of the library/ folder should be here. + + vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/test-settings.travis.php b/vendor/ezyang/htmlpurifier/test-settings.travis.php new file mode 100644 index 0000000000..b1edce4aa4 --- /dev/null +++ b/vendor/ezyang/htmlpurifier/test-settings.travis.php @@ -0,0 +1,72 @@ +isSMTP(); + $mail->Host = 'localhost'; + $mail->Port = 25; + + //Use a fixed address in your own domain as the from address + //**DO NOT** use the submitter's address here as it will be forgery + //and will cause your messages to fail SPF checks + $mail->setFrom('from@example.com', 'First Last'); + //Send the message to yourself, or whoever should receive contact for submissions + $mail->addAddress('whoto@example.com', 'John Doe'); + //Put the submitter's address in a reply-to header + //This will fail if the address provided is invalid, + //in which case we should ignore the whole request + if ($mail->addReplyTo($_POST['email'], $_POST['name'])) { + $mail->Subject = 'PHPMailer contact form'; + //Keep it simple - don't use HTML + $mail->isHTML(false); + //Build a simple message body + $mail->Body = <<send()) { + //The reason for failing to send will be in $mail->ErrorInfo + //but you shouldn't display errors to users - process the error, log it on your server. + $msg = 'Sorry, something went wrong. Please try again later.'; + } else { + $msg = 'Message sent! Thanks for contacting us.'; + } + } else { + $msg = 'Invalid email address, message ignored.'; + } +} +?> + + + + + Contact form + + +

Contact us

+$msg"; +} ?> +
+
+
+
+ +
+ + diff --git a/vendor/ramsey/array_column/.gitignore b/vendor/ramsey/array_column/.gitignore new file mode 100644 index 0000000000..7e8f330bd7 --- /dev/null +++ b/vendor/ramsey/array_column/.gitignore @@ -0,0 +1,6 @@ +.DS_Store +phpunit.xml +composer.lock +build +vendor +*.phar diff --git a/vendor/ramsey/array_column/.travis.yml b/vendor/ramsey/array_column/.travis.yml new file mode 100644 index 0000000000..ffc234e71f --- /dev/null +++ b/vendor/ramsey/array_column/.travis.yml @@ -0,0 +1,26 @@ +language: php + +php: + - 5.3 + - 5.4 + - 5.5 + - 5.6 + - 7.0 + - hhvm + +before_script: + - travis_retry composer self-update + - travis_retry composer install --no-interaction --prefer-source + +script: + - mkdir -p build/logs + - ./vendor/bin/parallel-lint src tests + - ./vendor/bin/phpunit --coverage-text + - ./vendor/bin/phpcs src --standard=psr2 -sp + +after_script: + - php vendor/bin/coveralls + +matrix: + allow_failures: + - php: hhvm diff --git a/vendor/ramsey/array_column/CHANGELOG.md b/vendor/ramsey/array_column/CHANGELOG.md new file mode 100644 index 0000000000..1dd01361e2 --- /dev/null +++ b/vendor/ramsey/array_column/CHANGELOG.md @@ -0,0 +1,37 @@ +# array_column() Changelog + +## 1.1.3 + +_Released 2015-03-20_ + +* Changing package name from "rhumsaa/array_column" to "ramsey/array_column" +* Updated Travis CI build config to test more versions of PHP +* Updated Travis CI config to lint and check PSR-2 coding standards +* Added project badges +* Added CHANGELOG + +## 1.1.2 + +_Released 2013-07-22_ + +* Remove unnecessary conditionals +* Whitespace changes + +## 1.1.1 + +_Released 2013-07-06_ + +* Documentation updates + +## 1.1.0 + +_Released 2013-07-06_ + +* Catching up array_column() library functionality and tests with PHP 5.5.0 +* Set Travis CI to run tests on PHP 5.5 + +## 1.0.0 + +_Released 2013-03-22_ + +* Initial release of userland library diff --git a/vendor/ramsey/array_column/LICENSE b/vendor/ramsey/array_column/LICENSE new file mode 100644 index 0000000000..d099612dea --- /dev/null +++ b/vendor/ramsey/array_column/LICENSE @@ -0,0 +1,19 @@ +Copyright (c) 2013-2015 Ben Ramsey (http://benramsey.com) + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. diff --git a/vendor/ramsey/array_column/README.md b/vendor/ramsey/array_column/README.md new file mode 100644 index 0000000000..24b5b73f34 --- /dev/null +++ b/vendor/ramsey/array_column/README.md @@ -0,0 +1,91 @@ +# array_column() for PHP + +[![Build Status](https://travis-ci.org/ramsey/array_column.svg?branch=master)](https://travis-ci.org/ramsey/array_column) +[![Coverage Status](https://coveralls.io/repos/ramsey/array_column/badge.svg?branch=master)](https://coveralls.io/r/ramsey/array_column) +[![Latest Stable Version](https://poser.pugx.org/ramsey/array_column/v/stable.svg)](https://packagist.org/packages/ramsey/array_column) +[![Total Downloads](https://poser.pugx.org/ramsey/array_column/downloads.svg)](https://packagist.org/packages/ramsey/array_column) +[![Latest Unstable Version](https://poser.pugx.org/ramsey/array_column/v/unstable.svg)](https://packagist.org/packages/ramsey/array_column) +[![License](https://poser.pugx.org/ramsey/array_column/license.svg)](https://packagist.org/packages/ramsey/array_column) + +This simple library provides functionality for [`array_column()`](http://php.net/array_column) +to versions of PHP earlier than 5.5. It mimics the functionality of the built-in +function in every way. + + +## Usage + +``` +array array_column(array $input, mixed $columnKey[, mixed $indexKey]) +``` + +Given a multi-dimensional array of data, `array_column()` returns the values +from a single column of the input array, identified by the `$columnKey`. +Optionally, you may provide an `$indexKey` to index the values in the returned +array by the values from the `$indexKey` column in the input array. + +For example, using the following array of data, we tell `array_column()` to +return an array of just the last names, indexed by their record IDs. + +``` php + 2135, + 'first_name' => 'John', + 'last_name' => 'Doe' + ), + array( + 'id' => 3245, + 'first_name' => 'Sally', + 'last_name' => 'Smith' + ), + array( + 'id' => 5342, + 'first_name' => 'Jane', + 'last_name' => 'Jones' + ), + array( + 'id' => 5623, + 'first_name' => 'Peter', + 'last_name' => 'Doe' + ) +); + +$lastNames = array_column($records, 'last_name', 'id'); +``` + +If we call `print_r()` on `$lastNames`, you'll see a resulting array that looks +a bit like this: + +``` text +Array +( + [2135] => Doe + [3245] => Smith + [5342] => Jones + [5623] => Doe +) +``` + + +## Installation + +The easiest way to install this library is to use [Composer](https://getcomposer.org/): + +``` +php composer.phar require ramsey/array_column +``` + +Then, when you run `composer install`, everything will fall magically into place, +and the `array_column()` function will be available to your project, as long as +you are including Composer's autoloader. + +_However, you do not need Composer to use this library._ + +This library has no dependencies and should work on older versions of PHP. +Download the code and include `src/array_column.php` in your project, and all +should work fine. + +When you are ready to run your project on PHP 5.5, everything should +continue to run well without conflicts, even if this library remains included +in your project. diff --git a/vendor/ramsey/array_column/composer.json b/vendor/ramsey/array_column/composer.json new file mode 100644 index 0000000000..2316b22557 --- /dev/null +++ b/vendor/ramsey/array_column/composer.json @@ -0,0 +1,27 @@ +{ + "name": "ramsey/array_column", + "description": "Provides functionality for array_column() to projects using PHP earlier than version 5.5.", + "type": "library", + "keywords": ["array", "column", "array_column"], + "homepage": "https://github.com/ramsey/array_column", + "license": "MIT", + "authors": [ + { + "name": "Ben Ramsey", + "homepage": "http://benramsey.com" + } + ], + "support": { + "issues": "https://github.com/ramsey/array_column/issues", + "source": "https://github.com/ramsey/array_column" + }, + "require-dev": { + "phpunit/phpunit": "~4.5", + "squizlabs/php_codesniffer": "~2.2", + "jakub-onderka/php-parallel-lint": "0.8.*", + "satooshi/php-coveralls": "0.6.*" + }, + "autoload": { + "files": ["src/array_column.php"] + } +} diff --git a/vendor/ramsey/array_column/phpunit.xml.dist b/vendor/ramsey/array_column/phpunit.xml.dist new file mode 100644 index 0000000000..61da3c177b --- /dev/null +++ b/vendor/ramsey/array_column/phpunit.xml.dist @@ -0,0 +1,21 @@ + + + + + ./tests + + + + + ./src + + + + + + + + diff --git a/vendor/ramsey/array_column/src/array_column.php b/vendor/ramsey/array_column/src/array_column.php new file mode 100644 index 0000000000..1e7fa99f28 --- /dev/null +++ b/vendor/ramsey/array_column/src/array_column.php @@ -0,0 +1,115 @@ +recordSet = array( + array( + 'id' => 1, + 'first_name' => 'John', + 'last_name' => 'Doe' + ), + array( + 'id' => 2, + 'first_name' => 'Sally', + 'last_name' => 'Smith' + ), + array( + 'id' => 3, + 'first_name' => 'Jane', + 'last_name' => 'Jones' + ), + ); + + $fh = fopen(__FILE__, 'r', true); + + $this->multiDataTypes = array( + array( + 'id' => 1, + 'value' => new stdClass + ), + array( + 'id' => 2, + 'value' => 34.2345 + ), + array( + 'id' => 3, + 'value' => true + ), + array( + 'id' => 4, + 'value' => false + ), + array( + 'id' => 5, + 'value' => null + ), + array( + 'id' => 6, + 'value' => 1234 + ), + array( + 'id' => 7, + 'value' => 'Foo' + ), + array( + 'id' => 8, + 'value' => $fh + ), + ); + + $this->numericColumns = array( + array('aaa', '111'), + array('bbb', '222'), + array('ccc', '333', -1 => 'ddd'), + ); + + $this->mismatchedColumns = array( + array('a' => 'foo', 'b' => 'bar', 'e' => 'bbb'), + array('a' => 'baz', 'c' => 'qux', 'd' => 'aaa'), + array('a' => 'eee', 'b' => 'fff', 'e' => 'ggg'), + ); + } + + public function testFirstNameColumnFromRecordset() + { + $expected = array('John', 'Sally', 'Jane'); + $this->assertEquals($expected, array_column($this->recordSet, 'first_name')); + } + + public function testIdColumnFromRecordset() + { + $expected = array(1, 2, 3); + $this->assertEquals($expected, array_column($this->recordSet, 'id')); + } + + public function testLastNameColumnKeyedByIdColumnFromRecordset() + { + $expected = array(1 => 'Doe', 2 => 'Smith', 3 => 'Jones'); + $this->assertEquals($expected, array_column($this->recordSet, 'last_name', 'id')); + } + + public function testLastNameColumnKeyedByFirstNameColumnFromRecordset() + { + $expected = array('John' => 'Doe', 'Sally' => 'Smith', 'Jane' => 'Jones'); + $this->assertEquals($expected, array_column($this->recordSet, 'last_name', 'first_name')); + } + + public function testValueColumnWithMultipleDataTypes() + { + $expected = array(); + foreach ($this->multiDataTypes as $row) { + $expected[] = $row['value']; + } + $this->assertEquals($expected, array_column($this->multiDataTypes, 'value')); + } + + public function testValueColumnKeyedByIdWithMultipleDataTypes() + { + $expected = array(); + foreach ($this->multiDataTypes as $row) { + $expected[$row['id']] = $row['value']; + } + $this->assertEquals($expected, array_column($this->multiDataTypes, 'value', 'id')); + } + + public function testNumericColumnKeys1() + { + $expected = array('111', '222', '333'); + $this->assertEquals($expected, array_column($this->numericColumns, 1)); + } + + public function testNumericColumnKeys2() + { + $expected = array('aaa' => '111', 'bbb' => '222', 'ccc' => '333'); + $this->assertEquals($expected, array_column($this->numericColumns, 1, 0)); + } + + public function testNumericColumnKeys3() + { + $expected = array('aaa' => '111', 'bbb' => '222', 'ccc' => '333'); + $this->assertEquals($expected, array_column($this->numericColumns, 1, 0.123)); + } + + public function testNumericColumnKeys4() + { + $expected = array(0 => '111', 1 => '222', 'ddd' => '333'); + $this->assertEquals($expected, array_column($this->numericColumns, 1, -1)); + } + + public function testFailureToFindColumn1() + { + $this->assertEquals(array(), array_column($this->numericColumns, 2)); + } + + public function testFailureToFindColumn2() + { + $this->assertEquals(array(), array_column($this->numericColumns, 'foo')); + } + + public function testFailureToFindColumn3() + { + $expected = array('aaa', 'bbb', 'ccc'); + $this->assertEquals($expected, array_column($this->numericColumns, 0, 'foo')); + } + + public function testFailureToFindColumn4() + { + $this->assertEquals(array(), array_column($this->numericColumns, 3.14)); + } + + public function testSingleDimensionalArray() + { + $singleDimension = array('foo', 'bar', 'baz'); + $this->assertEquals(array(), array_column($singleDimension, 1)); + } + + public function testMismatchedColumns1() + { + $expected = array('qux'); + $this->assertEquals($expected, array_column($this->mismatchedColumns, 'c')); + } + + public function testMismatchedColumns2() + { + $expected = array('baz' => 'qux'); + $this->assertEquals($expected, array_column($this->mismatchedColumns, 'c', 'a')); + } + + public function testMismatchedColumns3() + { + $expected = array('foo', 'aaa' => 'baz', 'eee'); + $this->assertEquals($expected, array_column($this->mismatchedColumns, 'a', 'd')); + } + + public function testMismatchedColumns4() + { + $expected = array('bbb' => 'foo', 'baz', 'ggg' => 'eee'); + $this->assertEquals($expected, array_column($this->mismatchedColumns, 'a', 'e')); + } + + public function testMismatchedColumns5() + { + $expected = array('bar', 'fff'); + $this->assertEquals($expected, array_column($this->mismatchedColumns, 'b')); + } + + public function testMismatchedColumns6() + { + $expected = array('foo' => 'bar', 'eee' => 'fff'); + $this->assertEquals($expected, array_column($this->mismatchedColumns, 'b', 'a')); + } + + public function testObjectConvertedToString() + { + $f = new Foo(); + $b = new Bar(); + $this->assertEquals(array('Doe', 'Smith', 'Jones'), array_column($this->recordSet, $f)); + $this->assertEquals(array('John' => 'Doe', 'Sally' => 'Smith', 'Jane' => 'Jones'), array_column($this->recordSet, $f, $b)); + } + + /** + * @expectedException PHPUnit_Framework_Error_Warning + * @expectedExceptionMessage array_column() expects at least 2 parameters, 0 given + */ + public function testFunctionWithZeroArgs() + { + $foo = array_column(); + } + + public function testFunctionWithZeroArgsReturnValue() + { + $foo = @array_column(); + $this->assertNull($foo); + } + + /** + * @expectedException PHPUnit_Framework_Error_Warning + * @expectedExceptionMessage array_column() expects at least 2 parameters, 1 given + */ + public function testFunctionWithOneArg() + { + $foo = array_column(array()); + } + + public function testFunctionWithOneArgReturnValue() + { + $foo = @array_column(array()); + $this->assertNull($foo); + } + + /** + * @expectedException PHPUnit_Framework_Error_Warning + * @expectedExceptionMessage array_column() expects parameter 1 to be array, string given + */ + public function testFunctionWithStringAsFirstArg() + { + $foo = array_column('foo', 0); + } + + public function testFunctionWithStringAsFirstArgReturnValue() + { + $foo = @array_column('foo', 0); + $this->assertNull($foo); + } + + /** + * @expectedException PHPUnit_Framework_Error_Warning + * @expectedExceptionMessage array_column() expects parameter 1 to be array, integer given + */ + public function testFunctionWithIntAsFirstArg() + { + $foo = array_column(1, 'foo'); + } + + public function testFunctionWithIntAsFirstArgReturnValue() + { + $foo = @array_column(1, 'foo'); + $this->assertNull($foo); + } + + /** + * @expectedException PHPUnit_Framework_Error_Warning + * @expectedExceptionMessage array_column(): The column key should be either a string or an integer + */ + public function testFunctionWithColumnKeyAsBool() + { + $foo = array_column(array(), true); + } + + public function testFunctionWithColumnKeyAsBoolReturnValue() + { + $foo = @array_column(array(), true); + $this->assertFalse($foo); + } + + /** + * @expectedException PHPUnit_Framework_Error_Warning + * @expectedExceptionMessage array_column(): The column key should be either a string or an integer + */ + public function testFunctionWithColumnKeyAsArray() + { + $foo = array_column(array(), array()); + } + + public function testFunctionWithColumnKeyAsArrayReturnValue() + { + $foo = @array_column(array(), array()); + $this->assertFalse($foo); + } + + /** + * @expectedException PHPUnit_Framework_Error_Warning + * @expectedExceptionMessage array_column(): The index key should be either a string or an integer + */ + public function testFunctionWithIndexKeyAsBool() + { + $foo = array_column(array(), 'foo', true); + } + + public function testFunctionWithIndexKeyAsBoolReturnValue() + { + $foo = @array_column(array(), 'foo', true); + $this->assertFalse($foo); + } + + /** + * @expectedException PHPUnit_Framework_Error_Warning + * @expectedExceptionMessage array_column(): The index key should be either a string or an integer + */ + public function testFunctionWithIndexKeyAsArray() + { + $foo = array_column(array(), 'foo', array()); + } + + public function testFunctionWithIndexKeyAsArrayReturnValue() + { + $foo = @array_column(array(), 'foo', array()); + $this->assertFalse($foo); + } + + /** + * @link https://bugs.php.net/bug.php?id=64493 + */ + public function testBugRequest64493() + { + // Array from Bug Request #64493 test script + $rows = array( + 456 => array('id' => '3', 'title' => 'Foo', 'date' => '2013-03-25'), + 457 => array('id' => '5', 'title' => 'Bar', 'date' => '2012-05-20'), + ); + + // pass null as second parameter to get back all columns indexed by third parameter + $expected1 = array( + 3 => array('id' => '3', 'title' => 'Foo', 'date' => '2013-03-25'), + 5 => array('id' => '5', 'title' => 'Bar', 'date' => '2012-05-20'), + ); + $this->assertEquals($expected1, array_column($rows, null, 'id')); + + // pass null as second parameter and bogus third param to get back zero-indexed array of all columns + $expected2 = array( + array('id' => '3', 'title' => 'Foo', 'date' => '2013-03-25'), + array('id' => '5', 'title' => 'Bar', 'date' => '2012-05-20'), + ); + $this->assertEquals($expected2, array_column($rows, null, 'foo')); + + // pass null as second parameter and no third param to get back array_values(input) (same as $expected2) + $this->assertEquals($expected2, array_column($rows, null)); + } + + public function testObjectCast() + { + $columnKey = new ColumnKeyClass(); + $indexKey = new IndexKeyClass(); + $value = new ValueClass(); + + $records = array( + array( + 'id' => $value, + 'first_name' => 'John', + 'last_name' => 'XXX' + ), + array( + 'id' => 3245, + 'first_name' => 'Sally', + 'last_name' => 'Smith' + ), + ); + + $expected = array( + 2135 => 'John', + 3245 => 'Sally', + ); + + $this->assertEquals($expected, array_column($records, $columnKey, $indexKey)); + } +} + +class Foo +{ + public function __toString() + { + return 'last_name'; + } +} + +class Bar +{ + public function __toString() + { + return 'first_name'; + } +} + +class ColumnKeyClass +{ + function __toString() { return 'first_name'; } +} + +class IndexKeyClass +{ + function __toString() { return 'id'; } +} + +class ValueClass +{ + function __toString() { return '2135'; } +} diff --git a/vendor/ramsey/array_column/tests/bootstrap.php b/vendor/ramsey/array_column/tests/bootstrap.php new file mode 100644 index 0000000000..97eabbac7b --- /dev/null +++ b/vendor/ramsey/array_column/tests/bootstrap.php @@ -0,0 +1,5 @@ +