diff --git a/Laravel/.env b/Laravel/.env new file mode 100644 index 0000000..d184184 --- /dev/null +++ b/Laravel/.env @@ -0,0 +1,33 @@ +APP_NAME=Laravel +APP_ENV=local +APP_KEY=base64:yiCZrXkhkUItoott+xl/5gpJhgrl1kCkGHfywwHNuxs= +APP_DEBUG=true +APP_LOG_LEVEL=debug +APP_URL=http://localhost + +DB_CONNECTION=mysql +DB_HOST=127.0.0.1 +DB_PORT=3306 +DB_DATABASE=dhtstats +DB_USERNAME=dhtuser +DB_PASSWORD=raspberry + +BROADCAST_DRIVER=log +CACHE_DRIVER=file +SESSION_DRIVER=file +QUEUE_DRIVER=sync + +REDIS_HOST=127.0.0.1 +REDIS_PASSWORD=null +REDIS_PORT=6379 + +MAIL_DRIVER=smtp +MAIL_HOST=smtp.mailtrap.io +MAIL_PORT=2525 +MAIL_USERNAME=null +MAIL_PASSWORD=null +MAIL_ENCRYPTION=null + +PUSHER_APP_ID= +PUSHER_APP_KEY= +PUSHER_APP_SECRET= diff --git a/Laravel/app/Http/Controllers/PagesController.php b/Laravel/app/Http/Controllers/PagesController.php index 4ee3227..fc39d5a 100644 --- a/Laravel/app/Http/Controllers/PagesController.php +++ b/Laravel/app/Http/Controllers/PagesController.php @@ -3,6 +3,10 @@ namespace App\Http\Controllers; use Illuminate\Http\Request; +use Charts; + +use App\Stats; +use App\Http\Requests; class PagesController extends Controller { @@ -10,10 +14,72 @@ class PagesController extends Controller public function dashboard() { $pagetitle = 'Dashboard'; $activeNav = 'dashboard'; - + + $temperature = Stats::select('temperature') + ->limit('1440') + ->orderBy('created_at', 'desc') + ->pluck('temperature'); + + $humidity = Stats::select('humidity') + ->limit('1440') + ->orderBy('created_at', 'desc') + ->pluck('humidity'); + + $gm3 = Stats::select('gm3') + ->limit('1440') + ->orderBy('created_at', 'desc') + ->pluck('gm3'); + + $created_at = Stats::select('created_at') + ->limit('1440') + ->orderBy('created_at', 'desc') + ->pluck('created_at'); + + $latestTemp = Stats::select('temperature') + ->orderBy('created_at', 'desc') + ->limit('1') + ->pluck('temperature'); + + $latestHumidity = Stats::select('humidity') + ->orderBy('created_at', 'desc') + ->limit('1') + ->pluck('humidity'); + + $latestGM3 = Stats::select('gm3') + ->orderBy('created_at', 'desc') + ->limit('1') + ->pluck('gm3'); + + + + $latestTemp = '' . $latestTemp[0]; + $latestHumidity = '' . $latestHumidity[0]; + $latestGM3 = '' . $latestGM3[0]; + + $latestShit = 'Temp: ' . $latestTemp . ' Hum: ' . $latestHumidity . ' g/m³: ' . $latestGM3; + + $chart = Charts::multi('line', 'material') + ->title("Temperatur, Luftfeuchtigkeit, g/m³") + ->dimensions(0, 400) // Width x Height + // This defines a preset of colors already done:) + ->template("material") + // You could always set them manually + // ->colors(['#2196F3', '#F44336', '#FFC107']) + // Setup the diferent datasets (this is a multi chart) + ->dataset('Temperatur', $temperature) + ->dataset('Luftfeuchtigkeit', $humidity) + ->dataset('g/m³', $gm3) + // Setup what the values mean + ->labels($created_at); + return view('dashboard')->with([ 'pagetitle' => $pagetitle, 'activeNav' => $activeNav, + 'chart' => $chart, + 'latestTemp' => $latestTemp, + 'latestHumidity' => $latestHumidity, + 'latestGM3' => $latestGM3, + 'latestShit' => $latestShit, ]); } diff --git a/Laravel/app/Http/Requests/StatsRequest.php b/Laravel/app/Http/Requests/StatsRequest.php new file mode 100644 index 0000000..ba56710 --- /dev/null +++ b/Laravel/app/Http/Requests/StatsRequest.php @@ -0,0 +1,36 @@ + 'required|integer', + 'pin' => 'required|integer', + 'humidity' => 'required|float', + 'temperature' => 'required|float', + 'isoutside' => 'required|integer', + 'gm3' => 'required|float', + 'created_at' => 'required|date', + ]; + } +} diff --git a/Laravel/app/Stats.php b/Laravel/app/Stats.php new file mode 100644 index 0000000..1adbc0f --- /dev/null +++ b/Laravel/app/Stats.php @@ -0,0 +1,50 @@ +=7.0.0", + "consoletvs/charts": "5.*", "fideloper/proxy": "~3.3", "laravel/framework": "5.5.*", "laravel/tinker": "~1.0" diff --git a/Laravel/composer.lock b/Laravel/composer.lock index 5fa2d57..c98e21a 100644 --- a/Laravel/composer.lock +++ b/Laravel/composer.lock @@ -4,8 +4,57 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#composer-lock-the-lock-file", "This file is @generated automatically" ], - "content-hash": "8f2120fa77d42a42b4210cdbe1c114e2", + "content-hash": "ffd0258eb25bcccc681eb1cbe2d657e9", "packages": [ + { + "name": "consoletvs/charts", + "version": "5.0.2", + "source": { + "type": "git", + "url": "https://github.com/ConsoleTVs/Charts.git", + "reference": "954e969c974ad9cd53a6afd263824b33dcdb8540" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/ConsoleTVs/Charts/zipball/954e969c974ad9cd53a6afd263824b33dcdb8540", + "reference": "954e969c974ad9cd53a6afd263824b33dcdb8540", + "shasum": "" + }, + "require": { + "illuminate/support": "5.*", + "jenssegers/date": "v3.*", + "jlawrence/eos": "3.*", + "php": ">=5.6.4" + }, + "type": "library", + "extra": { + "laravel": { + "providers": [ + "ConsoleTVs\\Charts\\ChartsServiceProvider" + ], + "aliases": { + "Charts": "ConsoleTVs\\Charts\\Facades\\Charts" + } + } + }, + "autoload": { + "psr-4": { + "ConsoleTVs\\Charts\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Erik Campobadal", + "email": "soc@erik.cat" + } + ], + "description": "Create charts for laravel using diferent charts libraries", + "time": "2017-08-14T11:10:46+00:00" + }, { "name": "dnoegel/php-xdg-base-dir", "version": "0.1", @@ -403,6 +452,114 @@ ], "time": "2015-04-20T18:58:01+00:00" }, + { + "name": "jenssegers/date", + "version": "v3.2.12", + "source": { + "type": "git", + "url": "https://github.com/jenssegers/date.git", + "reference": "1db4d580d1d45085a48fd4a332697619b9a3851c" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/jenssegers/date/zipball/1db4d580d1d45085a48fd4a332697619b9a3851c", + "reference": "1db4d580d1d45085a48fd4a332697619b9a3851c", + "shasum": "" + }, + "require": { + "nesbot/carbon": "^1.0", + "php": ">=5.4", + "symfony/translation": "^2.7|^3.0" + }, + "require-dev": { + "phpunit/phpunit": "^4.0|^5.0|^6.0", + "satooshi/php-coveralls": "^1.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "3.1-dev" + }, + "laravel": { + "providers": [ + "Jenssegers\\Date\\DateServiceProvider" + ], + "aliases": { + "Date": "Jenssegers\\Date\\Date" + } + } + }, + "autoload": { + "psr-4": { + "Jenssegers\\Date\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Jens Segers", + "homepage": "https://jenssegers.com" + } + ], + "description": "A date library to help you work with dates in different languages", + "homepage": "https://github.com/jenssegers/date", + "keywords": [ + "carbon", + "date", + "datetime", + "i18n", + "laravel", + "time", + "translation" + ], + "time": "2017-06-30T11:51:03+00:00" + }, + { + "name": "jlawrence/eos", + "version": "v3.2.2", + "source": { + "type": "git", + "url": "https://github.com/jlawrence11/eos.git", + "reference": "25e3d0f2316cb4636000f452a8e7dcc83725a32a" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/jlawrence11/eos/zipball/25e3d0f2316cb4636000f452a8e7dcc83725a32a", + "reference": "25e3d0f2316cb4636000f452a8e7dcc83725a32a", + "shasum": "" + }, + "require-dev": { + "codeclimate/php-test-reporter": "dev-master", + "phpunit/phpunit": "4.*" + }, + "type": "library", + "autoload": { + "psr-4": { + "jlawrence\\eos\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "LGPL-2.1+" + ], + "authors": [ + { + "name": "Jon Lawrence", + "email": "jon@jon-lawrence.com" + } + ], + "description": "Parse and solve math equations without using 'eval()'.", + "keywords": [ + "eos", + "equations", + "math", + "solve" + ], + "time": "2016-03-02T22:35:41+00:00" + }, { "name": "laravel/framework", "version": "v5.5.4", diff --git a/Laravel/config/app.php b/Laravel/config/app.php index 0e4ebed..b3d185f 100644 --- a/Laravel/config/app.php +++ b/Laravel/config/app.php @@ -176,7 +176,9 @@ return [ // App\Providers\BroadcastServiceProvider::class, App\Providers\EventServiceProvider::class, App\Providers\RouteServiceProvider::class, + + ], /* diff --git a/Laravel/config/charts.php b/Laravel/config/charts.php new file mode 100644 index 0000000..5fa47c0 --- /dev/null +++ b/Laravel/config/charts.php @@ -0,0 +1,191 @@ + [ + 'type' => 'line', // The default chart type. + 'library' => 'material', // The default chart library. + 'element_label' => 'Element', // The default chart element label. + 'empty_dataset_label' => 'No Data Set', + 'empty_dataset_value' => 0, + 'title' => 'My Cool Chart', // Default chart title. + 'height' => 400, // 0 Means it will take 100% of the division height. + 'width' => 0, // 0 Means it will take 100% of the division width. + 'responsive' => false, // Not recommended since all libraries have diferent sizes. + 'background_color' => 'inherit', // The chart division background color. + 'colors' => [], // Default chart colors if using no template is set. + 'one_color' => false, // Only use the first color in all values. + 'template' => 'material', // The default chart color template. + 'legend' => true, // Whether to enable the chart legend (where applicable). + 'x_axis_title' => false, // The title of the x-axis + 'y_axis_title' => null, // The title of the y-axis (When set to null will use element_label value). + 'loader' => [ + 'active' => true, // Determines the if loader is active by default. + 'duration' => 500, // In milliseconds. + 'color' => '#000000', // Determines the default loader color. + ], + ], + + /* + |-------------------------------------------------------------------------- + | All the color templates available for the charts. + |-------------------------------------------------------------------------- + */ + 'templates' => [ + 'material' => [ + '#2196F3', '#F44336', '#FFC107', + ], + 'red-material' => [ + '#B71C1C', '#F44336', '#E57373', + ], + 'indigo-material' => [ + '#1A237E', '#3F51B5', '#7986CB', + ], + 'blue-material' => [ + '#0D47A1', '#2196F3', '#64B5F6', + ], + 'teal-material' => [ + '#004D40', '#009688', '#4DB6AC', + ], + 'green-material' => [ + '#1B5E20', '#4CAF50', '#81C784', + ], + 'yellow-material' => [ + '#F57F17', '#FFEB3B', '#FFF176', + ], + 'orange-material' => [ + '#E65100', '#FF9800', '#FFB74D', + ], + ], + + /* + |-------------------------------------------------------------------------- + | Assets required by the libraries. + |-------------------------------------------------------------------------- + */ + + 'assets' => [ + 'global' => [ + 'scripts' => [ + 'https://cdnjs.cloudflare.com/ajax/libs/jquery/3.1.1/jquery.min.js', + ], + ], + + 'canvas-gauges' => [ + 'scripts' => [ + 'https://cdn.rawgit.com/Mikhus/canvas-gauges/gh-pages/download/2.1.2/all/gauge.min.js', + ], + ], + + 'chartist' => [ + 'scripts' => [ + 'https://cdnjs.cloudflare.com/ajax/libs/chartist/0.10.1/chartist.min.js', + ], + 'styles' => [ + 'https://cdnjs.cloudflare.com/ajax/libs/chartist/0.10.1/chartist.min.css', + ], + ], + + 'chartjs' => [ + 'scripts' => [ + 'https://cdnjs.cloudflare.com/ajax/libs/Chart.js/2.4.0/Chart.min.js', + ], + ], + + 'fusioncharts' => [ + 'scripts' => [ + 'https://static.fusioncharts.com/code/latest/fusioncharts.js', + 'https://static.fusioncharts.com/code/latest/themes/fusioncharts.theme.fint.js', + ], + ], + + 'google' => [ + 'scripts' => [ + 'https://www.google.com/jsapi', + 'https://www.gstatic.com/charts/loader.js', + "google.charts.load('current', {'packages':['corechart', 'gauge', 'geochart', 'bar', 'line']})", + ], + ], + + 'highcharts' => [ + 'styles' => [ + // The following CSS is not added due to color compatibility errors. + // 'https://cdnjs.cloudflare.com/ajax/libs/highcharts/5.0.7/css/highcharts.css', + ], + 'scripts' => [ + 'https://cdnjs.cloudflare.com/ajax/libs/highcharts/5.0.7/highcharts.js', + 'https://cdnjs.cloudflare.com/ajax/libs/highcharts/5.0.7/js/modules/offline-exporting.js', + 'https://cdnjs.cloudflare.com/ajax/libs/highmaps/5.0.7/js/modules/map.js', + 'https://cdnjs.cloudflare.com/ajax/libs/highmaps/5.0.7/js/modules/data.js', + 'https://code.highcharts.com/mapdata/custom/world.js', + ], + ], + + 'justgage' => [ + 'scripts' => [ + 'https://cdnjs.cloudflare.com/ajax/libs/raphael/2.2.6/raphael.min.js', + 'https://cdnjs.cloudflare.com/ajax/libs/justgage/1.2.2/justgage.min.js', + ], + ], + + 'morris' => [ + 'styles' => [ + 'https://cdnjs.cloudflare.com/ajax/libs/morris.js/0.5.1/morris.css', + ], + 'scripts' => [ + 'https://cdnjs.cloudflare.com/ajax/libs/raphael/2.2.6/raphael.min.js', + 'https://cdnjs.cloudflare.com/ajax/libs/morris.js/0.5.1/morris.min.js', + ], + ], + + 'plottablejs' => [ + 'scripts' => [ + 'https://cdnjs.cloudflare.com/ajax/libs/d3/3.5.5/d3.min.js', + 'https://cdnjs.cloudflare.com/ajax/libs/plottable.js/2.8.0/plottable.min.js', + ], + 'styles' => [ + 'https://cdnjs.cloudflare.com/ajax/libs/plottable.js/2.2.0/plottable.css', + ], + ], + + 'progressbarjs' => [ + 'scripts' => [ + 'https://cdnjs.cloudflare.com/ajax/libs/progressbar.js/1.0.1/progressbar.min.js', + ], + ], + + 'c3' => [ + 'scripts' => [ + 'https://cdnjs.cloudflare.com/ajax/libs/d3/3.5.5/d3.min.js', + 'https://cdnjs.cloudflare.com/ajax/libs/c3/0.4.11/c3.min.js', + ], + 'styles' => [ + 'https://cdnjs.cloudflare.com/ajax/libs/c3/0.4.11/c3.min.css', + ], + ], + + 'echarts' => [ + 'scripts' => [ + 'https://cdnjs.cloudflare.com/ajax/libs/echarts/3.6.2/echarts.min.js', + ], + ], + + 'amcharts' => [ + 'scripts' => [ + 'https://cdnjs.cloudflare.com/ajax/libs/amcharts/3.21.2/amcharts.js', + 'https://cdnjs.cloudflare.com/ajax/libs/amcharts/3.21.2/serial.js', + 'https://cdnjs.cloudflare.com/ajax/libs/amcharts/3.21.2/plugins/export/export.min.js', + 'https://cdnjs.cloudflare.com/ajax/libs/amcharts/3.21.2/themes/light.js', + ], + 'styles' => [ + 'https://cdnjs.cloudflare.com/ajax/libs/amcharts/3.21.2/plugins/export/export.css', + ], + ], + ], +]; diff --git a/Laravel/config/trustedproxy.php b/Laravel/config/trustedproxy.php new file mode 100644 index 0000000..fab11a0 --- /dev/null +++ b/Laravel/config/trustedproxy.php @@ -0,0 +1,71 @@ +getClientIp() + * always gets the originating client IP, no matter + * how many proxies that client's request has + * subsequently passed through. + */ + 'proxies' => [ + '192.168.1.10', + ], + + /* + * Or, to trust all proxies that connect + * directly to your server, uncomment this: + */ + # 'proxies' => '*', + + /* + * Or, to trust ALL proxies, including those that + * are in a chain of forwarding, uncomment this: + */ + # 'proxies' => '**', + + /* + * Default Header Names + * + * Change these if the proxy does + * not send the default header names. + * + * Note that headers such as X-Forwarded-For + * are transformed to HTTP_X_FORWARDED_FOR format. + * + * The following are Symfony defaults, found in + * \Symfony\Component\HttpFoundation\Request::$trustedHeaders + * + * You may optionally set headers to 'null' here if you'd like + * for them to be considered untrusted instead. Ex: + * + * Illuminate\Http\Request::HEADER_CLIENT_HOST => null, + * + * WARNING: If you're using AWS Elastic Load Balancing or Heroku, + * the FORWARDED and X_FORWARDED_HOST headers should be set to null + * as they are currently unsupported there. + */ + 'headers' => [ + (defined('Illuminate\Http\Request::HEADER_FORWARDED') ? Illuminate\Http\Request::HEADER_FORWARDED : 'forwarded') => 'FORWARDED', + Illuminate\Http\Request::HEADER_CLIENT_IP => 'X_FORWARDED_FOR', + Illuminate\Http\Request::HEADER_CLIENT_HOST => 'X_FORWARDED_HOST', + Illuminate\Http\Request::HEADER_CLIENT_PROTO => 'X_FORWARDED_PROTO', + Illuminate\Http\Request::HEADER_CLIENT_PORT => 'X_FORWARDED_PORT', + ] +]; diff --git a/Laravel/resources/views/dashboard.blade.php b/Laravel/resources/views/dashboard.blade.php index f5bbfed..651c61c 100644 --- a/Laravel/resources/views/dashboard.blade.php +++ b/Laravel/resources/views/dashboard.blade.php @@ -62,7 +62,12 @@ .m-b-md { margin-bottom: 30px; } + + + + {!! Charts::styles() !!} +
@@ -79,17 +84,27 @@
- Dashboard + HumidityPi
+ +
+ {!! $latestShit !!} +
+ +
+
+ {!! $chart->html() !!} + {!! Charts::scripts() !!} + {!! $chart->script() !!} diff --git a/Laravel/resources/views/vendor/charts/_partials/container/canvas.blade.php b/Laravel/resources/views/vendor/charts/_partials/container/canvas.blade.php new file mode 100644 index 0000000..5b3b28e --- /dev/null +++ b/Laravel/resources/views/vendor/charts/_partials/container/canvas.blade.php @@ -0,0 +1,7 @@ +@if(!$model->container) + @include('charts::_partials.loader.container-top') +
+ +
+ @include('charts::_partials.loader.container-bottom') +@endif diff --git a/Laravel/resources/views/vendor/charts/_partials/container/canvas2.blade.php b/Laravel/resources/views/vendor/charts/_partials/container/canvas2.blade.php new file mode 100644 index 0000000..5490b25 --- /dev/null +++ b/Laravel/resources/views/vendor/charts/_partials/container/canvas2.blade.php @@ -0,0 +1,7 @@ +@if(!$model->container) + @include('charts::_partials.loader.container-top') +
+ +
+ @include('charts::_partials.loader.container-bottom') +@endif diff --git a/Laravel/resources/views/vendor/charts/_partials/container/chartist.blade.php b/Laravel/resources/views/vendor/charts/_partials/container/chartist.blade.php new file mode 100644 index 0000000..0eea85f --- /dev/null +++ b/Laravel/resources/views/vendor/charts/_partials/container/chartist.blade.php @@ -0,0 +1,6 @@ +@if(!$model->container) + @include('charts::_partials.container.title') + @include('charts::_partials.loader.container-top') +
+ @include('charts::_partials.loader.container-bottom') +@endif diff --git a/Laravel/resources/views/vendor/charts/_partials/container/div-titled.blade.php b/Laravel/resources/views/vendor/charts/_partials/container/div-titled.blade.php new file mode 100644 index 0000000..3afde40 --- /dev/null +++ b/Laravel/resources/views/vendor/charts/_partials/container/div-titled.blade.php @@ -0,0 +1,8 @@ +@if(!$model->container) + @include('charts::_partials.container.title') + @include('charts::_partials.loader.container-top') +
+
+
+ @include('charts::_partials.loader.container-bottom') +@endif diff --git a/Laravel/resources/views/vendor/charts/_partials/container/div.blade.php b/Laravel/resources/views/vendor/charts/_partials/container/div.blade.php new file mode 100644 index 0000000..f346338 --- /dev/null +++ b/Laravel/resources/views/vendor/charts/_partials/container/div.blade.php @@ -0,0 +1,6 @@ +@if(!$model->container) + + @include('charts::_partials.loader.container-top') +
+ @include('charts::_partials.loader.container-bottom') +@endif diff --git a/Laravel/resources/views/vendor/charts/_partials/container/svg.blade.php b/Laravel/resources/views/vendor/charts/_partials/container/svg.blade.php new file mode 100644 index 0000000..254e4c4 --- /dev/null +++ b/Laravel/resources/views/vendor/charts/_partials/container/svg.blade.php @@ -0,0 +1,5 @@ +@if(!$model->container) + @include('charts::_partials.loader.container-top') + + @include('charts::_partials.loader.container-bottom') +@endif diff --git a/Laravel/resources/views/vendor/charts/_partials/container/title.blade.php b/Laravel/resources/views/vendor/charts/_partials/container/title.blade.php new file mode 100644 index 0000000..a7bd61c --- /dev/null +++ b/Laravel/resources/views/vendor/charts/_partials/container/title.blade.php @@ -0,0 +1,9 @@ +@if(!$model->container) +
+ @if($model->title) +
+ {{ $model->title }} +
+ @endif +
+@endif diff --git a/Laravel/resources/views/vendor/charts/_partials/dimension/css.blade.php b/Laravel/resources/views/vendor/charts/_partials/dimension/css.blade.php new file mode 100644 index 0000000..2969955 --- /dev/null +++ b/Laravel/resources/views/vendor/charts/_partials/dimension/css.blade.php @@ -0,0 +1,11 @@ +@if($model->responsive) + height: 100%; width: 100%; +@else + @if($model->height) + height: {{ $model->height }}px; + @endif + + @if($model->width) + width: {{ $model->width }}px; + @endif +@endif diff --git a/Laravel/resources/views/vendor/charts/_partials/dimension/html.blade.php b/Laravel/resources/views/vendor/charts/_partials/dimension/html.blade.php new file mode 100644 index 0000000..949914e --- /dev/null +++ b/Laravel/resources/views/vendor/charts/_partials/dimension/html.blade.php @@ -0,0 +1,11 @@ +@if($model->responsive) + height="100%" width="100%" +@else + @if($model->height) + height="{{ $model->height }}" + @endif + + @if($model->width) + width="{{ $model->width }}" + @endif +@endif diff --git a/Laravel/resources/views/vendor/charts/_partials/dimension/js.blade.php b/Laravel/resources/views/vendor/charts/_partials/dimension/js.blade.php new file mode 100644 index 0000000..c11a137 --- /dev/null +++ b/Laravel/resources/views/vendor/charts/_partials/dimension/js.blade.php @@ -0,0 +1,16 @@ +@if($model->responsive) + height: "100%", + width: "100%", +@else + @if($model->height) + height: "{{ $model->height }}px", + @else + height: "100%", + @endif + + @if($model->width) + width: "{{ $model->width }}px", + @else + width: "100%", + @endif +@endif diff --git a/Laravel/resources/views/vendor/charts/_partials/dimension/js2.blade.php b/Laravel/resources/views/vendor/charts/_partials/dimension/js2.blade.php new file mode 100644 index 0000000..92d1bf8 --- /dev/null +++ b/Laravel/resources/views/vendor/charts/_partials/dimension/js2.blade.php @@ -0,0 +1,9 @@ +@if(!$model->responsive) + @if($model->height) + height: {{ $model->height }}, + @endif + + @if($model->width) + width: {{ $model->width }}, + @endif +@endif diff --git a/Laravel/resources/views/vendor/charts/_partials/dimension/svg.blade.php b/Laravel/resources/views/vendor/charts/_partials/dimension/svg.blade.php new file mode 100644 index 0000000..22037c6 --- /dev/null +++ b/Laravel/resources/views/vendor/charts/_partials/dimension/svg.blade.php @@ -0,0 +1,5 @@ + diff --git a/Laravel/resources/views/vendor/charts/_partials/helpers/hex2rgb.blade.php b/Laravel/resources/views/vendor/charts/_partials/helpers/hex2rgb.blade.php new file mode 100644 index 0000000..b20800a --- /dev/null +++ b/Laravel/resources/views/vendor/charts/_partials/helpers/hex2rgb.blade.php @@ -0,0 +1,11 @@ + diff --git a/Laravel/resources/views/vendor/charts/_partials/loader/container-bottom.blade.php b/Laravel/resources/views/vendor/charts/_partials/loader/container-bottom.blade.php new file mode 100644 index 0000000..ebc6381 --- /dev/null +++ b/Laravel/resources/views/vendor/charts/_partials/loader/container-bottom.blade.php @@ -0,0 +1,2 @@ + + diff --git a/Laravel/resources/views/vendor/charts/_partials/loader/container-top.blade.php b/Laravel/resources/views/vendor/charts/_partials/loader/container-top.blade.php new file mode 100644 index 0000000..03fd424 --- /dev/null +++ b/Laravel/resources/views/vendor/charts/_partials/loader/container-top.blade.php @@ -0,0 +1,7 @@ +
+ +
diff --git a/Laravel/resources/views/vendor/charts/_partials/loader/css.blade.php b/Laravel/resources/views/vendor/charts/_partials/loader/css.blade.php new file mode 100644 index 0000000..8888bb0 --- /dev/null +++ b/Laravel/resources/views/vendor/charts/_partials/loader/css.blade.php @@ -0,0 +1,68 @@ + diff --git a/Laravel/resources/views/vendor/charts/_partials/loader/js.blade.php b/Laravel/resources/views/vendor/charts/_partials/loader/js.blade.php new file mode 100644 index 0000000..5e90b74 --- /dev/null +++ b/Laravel/resources/views/vendor/charts/_partials/loader/js.blade.php @@ -0,0 +1,20 @@ + diff --git a/Laravel/resources/views/vendor/charts/amcharts/bar.blade.php b/Laravel/resources/views/vendor/charts/amcharts/bar.blade.php new file mode 100644 index 0000000..d40bec0 --- /dev/null +++ b/Laravel/resources/views/vendor/charts/amcharts/bar.blade.php @@ -0,0 +1,49 @@ +@if(!$model->customId) + @include('charts::_partials.container.div') +@endif + + diff --git a/Laravel/resources/views/vendor/charts/c3/area.blade.php b/Laravel/resources/views/vendor/charts/c3/area.blade.php new file mode 100644 index 0000000..e59ad16 --- /dev/null +++ b/Laravel/resources/views/vendor/charts/c3/area.blade.php @@ -0,0 +1,30 @@ +@include('charts::_partials.container.div') + diff --git a/Laravel/resources/views/vendor/charts/c3/bar.blade.php b/Laravel/resources/views/vendor/charts/c3/bar.blade.php new file mode 100644 index 0000000..77fc17a --- /dev/null +++ b/Laravel/resources/views/vendor/charts/c3/bar.blade.php @@ -0,0 +1,30 @@ +@include('charts::_partials.container.div') + diff --git a/Laravel/resources/views/vendor/charts/c3/donut.blade.php b/Laravel/resources/views/vendor/charts/c3/donut.blade.php new file mode 100644 index 0000000..d36f50b --- /dev/null +++ b/Laravel/resources/views/vendor/charts/c3/donut.blade.php @@ -0,0 +1,32 @@ +@include('charts::_partials.container.div') + diff --git a/Laravel/resources/views/vendor/charts/c3/gauge.blade.php b/Laravel/resources/views/vendor/charts/c3/gauge.blade.php new file mode 100644 index 0000000..b7b02f5 --- /dev/null +++ b/Laravel/resources/views/vendor/charts/c3/gauge.blade.php @@ -0,0 +1,34 @@ +@include('charts::_partials.container.div') + diff --git a/Laravel/resources/views/vendor/charts/c3/line.blade.php b/Laravel/resources/views/vendor/charts/c3/line.blade.php new file mode 100644 index 0000000..ae81015 --- /dev/null +++ b/Laravel/resources/views/vendor/charts/c3/line.blade.php @@ -0,0 +1,29 @@ +@include('charts::_partials.container.div') + diff --git a/Laravel/resources/views/vendor/charts/c3/multi/area.blade.php b/Laravel/resources/views/vendor/charts/c3/multi/area.blade.php new file mode 100644 index 0000000..7dfac73 --- /dev/null +++ b/Laravel/resources/views/vendor/charts/c3/multi/area.blade.php @@ -0,0 +1,32 @@ +@include('charts::_partials.container.div') + diff --git a/Laravel/resources/views/vendor/charts/c3/multi/bar.blade.php b/Laravel/resources/views/vendor/charts/c3/multi/bar.blade.php new file mode 100644 index 0000000..219c225 --- /dev/null +++ b/Laravel/resources/views/vendor/charts/c3/multi/bar.blade.php @@ -0,0 +1,32 @@ +@include('charts::_partials.container.div') + diff --git a/Laravel/resources/views/vendor/charts/c3/multi/line.blade.php b/Laravel/resources/views/vendor/charts/c3/multi/line.blade.php new file mode 100644 index 0000000..79092c5 --- /dev/null +++ b/Laravel/resources/views/vendor/charts/c3/multi/line.blade.php @@ -0,0 +1,31 @@ +@include('charts::_partials.container.div') + diff --git a/Laravel/resources/views/vendor/charts/c3/pie.blade.php b/Laravel/resources/views/vendor/charts/c3/pie.blade.php new file mode 100644 index 0000000..36851f9 --- /dev/null +++ b/Laravel/resources/views/vendor/charts/c3/pie.blade.php @@ -0,0 +1,32 @@ +@include('charts::_partials.container.div') + diff --git a/Laravel/resources/views/vendor/charts/canvas-gauges/gauge.blade.php b/Laravel/resources/views/vendor/charts/canvas-gauges/gauge.blade.php new file mode 100644 index 0000000..784316d --- /dev/null +++ b/Laravel/resources/views/vendor/charts/canvas-gauges/gauge.blade.php @@ -0,0 +1,99 @@ +@if(!$model->customId) + @include('charts::_partials.container.canvas') +@endif + + diff --git a/Laravel/resources/views/vendor/charts/canvas-gauges/realtime/gauge.blade.php b/Laravel/resources/views/vendor/charts/canvas-gauges/realtime/gauge.blade.php new file mode 100644 index 0000000..fed82fd --- /dev/null +++ b/Laravel/resources/views/vendor/charts/canvas-gauges/realtime/gauge.blade.php @@ -0,0 +1,105 @@ +@if(!$model->customId) + @include('charts::_partials.container.canvas') +@endif + + diff --git a/Laravel/resources/views/vendor/charts/canvas-gauges/realtime/temp.blade.php b/Laravel/resources/views/vendor/charts/canvas-gauges/realtime/temp.blade.php new file mode 100644 index 0000000..77630a3 --- /dev/null +++ b/Laravel/resources/views/vendor/charts/canvas-gauges/realtime/temp.blade.php @@ -0,0 +1,108 @@ +@if(!$model->customId) + @include('charts::_partials.container.canvas') +@endif + + diff --git a/Laravel/resources/views/vendor/charts/canvas-gauges/temp.blade.php b/Laravel/resources/views/vendor/charts/canvas-gauges/temp.blade.php new file mode 100644 index 0000000..01fedb1 --- /dev/null +++ b/Laravel/resources/views/vendor/charts/canvas-gauges/temp.blade.php @@ -0,0 +1,102 @@ +@if(!$model->customId) + @include('charts::_partials.container.canvas') +@endif + + diff --git a/Laravel/resources/views/vendor/charts/chartist/area.blade.php b/Laravel/resources/views/vendor/charts/chartist/area.blade.php new file mode 100644 index 0000000..1aef197 --- /dev/null +++ b/Laravel/resources/views/vendor/charts/chartist/area.blade.php @@ -0,0 +1,25 @@ +@include('charts::_partials.container.chartist') + + diff --git a/Laravel/resources/views/vendor/charts/chartist/bar.blade.php b/Laravel/resources/views/vendor/charts/chartist/bar.blade.php new file mode 100644 index 0000000..c3d5969 --- /dev/null +++ b/Laravel/resources/views/vendor/charts/chartist/bar.blade.php @@ -0,0 +1,22 @@ +@include('charts::_partials.container.chartist') + + diff --git a/Laravel/resources/views/vendor/charts/chartist/donut.blade.php b/Laravel/resources/views/vendor/charts/chartist/donut.blade.php new file mode 100644 index 0000000..58137c5 --- /dev/null +++ b/Laravel/resources/views/vendor/charts/chartist/donut.blade.php @@ -0,0 +1,26 @@ +@include('charts::_partials.container.chartist') + + diff --git a/Laravel/resources/views/vendor/charts/chartist/line.blade.php b/Laravel/resources/views/vendor/charts/chartist/line.blade.php new file mode 100644 index 0000000..75233e6 --- /dev/null +++ b/Laravel/resources/views/vendor/charts/chartist/line.blade.php @@ -0,0 +1,22 @@ +@include('charts::_partials.container.chartist') + + diff --git a/Laravel/resources/views/vendor/charts/chartist/multi/area.blade.php b/Laravel/resources/views/vendor/charts/chartist/multi/area.blade.php new file mode 100644 index 0000000..2580ec5 --- /dev/null +++ b/Laravel/resources/views/vendor/charts/chartist/multi/area.blade.php @@ -0,0 +1,26 @@ +@include('charts::_partials.container.chartist') + + diff --git a/Laravel/resources/views/vendor/charts/chartist/multi/bar.blade.php b/Laravel/resources/views/vendor/charts/chartist/multi/bar.blade.php new file mode 100644 index 0000000..e332194 --- /dev/null +++ b/Laravel/resources/views/vendor/charts/chartist/multi/bar.blade.php @@ -0,0 +1,24 @@ +@include('charts::_partials.container.chartist') + + diff --git a/Laravel/resources/views/vendor/charts/chartist/multi/line.blade.php b/Laravel/resources/views/vendor/charts/chartist/multi/line.blade.php new file mode 100644 index 0000000..0b21b16 --- /dev/null +++ b/Laravel/resources/views/vendor/charts/chartist/multi/line.blade.php @@ -0,0 +1,24 @@ +@include('charts::_partials.container.chartist') + + diff --git a/Laravel/resources/views/vendor/charts/chartist/pie.blade.php b/Laravel/resources/views/vendor/charts/chartist/pie.blade.php new file mode 100644 index 0000000..17fc188 --- /dev/null +++ b/Laravel/resources/views/vendor/charts/chartist/pie.blade.php @@ -0,0 +1,24 @@ +@include('charts::_partials.container.chartist') + + diff --git a/Laravel/resources/views/vendor/charts/chartjs/area.blade.php b/Laravel/resources/views/vendor/charts/chartjs/area.blade.php new file mode 100644 index 0000000..11bd229 --- /dev/null +++ b/Laravel/resources/views/vendor/charts/chartjs/area.blade.php @@ -0,0 +1,49 @@ +@if(!$model->customId) + @include('charts::_partials.container.canvas2') +@endif + +@include('charts::_partials.helpers.hex2rgb') + + diff --git a/Laravel/resources/views/vendor/charts/chartjs/bar.blade.php b/Laravel/resources/views/vendor/charts/chartjs/bar.blade.php new file mode 100644 index 0000000..230ee22 --- /dev/null +++ b/Laravel/resources/views/vendor/charts/chartjs/bar.blade.php @@ -0,0 +1,57 @@ +@if(!$model->customId) + @include('charts::_partials.container.canvas2') +@endif + + diff --git a/Laravel/resources/views/vendor/charts/chartjs/donut.blade.php b/Laravel/resources/views/vendor/charts/chartjs/donut.blade.php new file mode 100644 index 0000000..3e01b01 --- /dev/null +++ b/Laravel/resources/views/vendor/charts/chartjs/donut.blade.php @@ -0,0 +1,47 @@ +@if(!$model->customId) + @include('charts::_partials.container.canvas2') +@endif + + diff --git a/Laravel/resources/views/vendor/charts/chartjs/line.blade.php b/Laravel/resources/views/vendor/charts/chartjs/line.blade.php new file mode 100644 index 0000000..fdbf1af --- /dev/null +++ b/Laravel/resources/views/vendor/charts/chartjs/line.blade.php @@ -0,0 +1,46 @@ +@if(!$model->customId) + @include('charts::_partials.container.canvas2') +@endif + + diff --git a/Laravel/resources/views/vendor/charts/chartjs/multi/area.blade.php b/Laravel/resources/views/vendor/charts/chartjs/multi/area.blade.php new file mode 100644 index 0000000..342665f --- /dev/null +++ b/Laravel/resources/views/vendor/charts/chartjs/multi/area.blade.php @@ -0,0 +1,56 @@ +@if(!$model->customId) + @include('charts::_partials.container.canvas2') +@endif + +@include('charts::_partials.helpers.hex2rgb') + + diff --git a/Laravel/resources/views/vendor/charts/chartjs/multi/bar.blade.php b/Laravel/resources/views/vendor/charts/chartjs/multi/bar.blade.php new file mode 100644 index 0000000..db5fcf3 --- /dev/null +++ b/Laravel/resources/views/vendor/charts/chartjs/multi/bar.blade.php @@ -0,0 +1,58 @@ +@if(!$model->customId) + @include('charts::_partials.container.canvas2') +@endif + + diff --git a/Laravel/resources/views/vendor/charts/chartjs/multi/line.blade.php b/Laravel/resources/views/vendor/charts/chartjs/multi/line.blade.php new file mode 100644 index 0000000..76f6670 --- /dev/null +++ b/Laravel/resources/views/vendor/charts/chartjs/multi/line.blade.php @@ -0,0 +1,51 @@ +@if(!$model->customId) + @include('charts::_partials.container.canvas2') +@endif + + diff --git a/Laravel/resources/views/vendor/charts/chartjs/pie.blade.php b/Laravel/resources/views/vendor/charts/chartjs/pie.blade.php new file mode 100644 index 0000000..33e827c --- /dev/null +++ b/Laravel/resources/views/vendor/charts/chartjs/pie.blade.php @@ -0,0 +1,47 @@ +@if(!$model->customId) + @include('charts::_partials.container.canvas2') +@endif + + diff --git a/Laravel/resources/views/vendor/charts/echarts/area.blade.php b/Laravel/resources/views/vendor/charts/echarts/area.blade.php new file mode 100644 index 0000000..4d0493d --- /dev/null +++ b/Laravel/resources/views/vendor/charts/echarts/area.blade.php @@ -0,0 +1,59 @@ +@if(!$model->customId) + @include('charts::_partials.container.div') +@endif + diff --git a/Laravel/resources/views/vendor/charts/echarts/bar.blade.php b/Laravel/resources/views/vendor/charts/echarts/bar.blade.php new file mode 100644 index 0000000..3cd182f --- /dev/null +++ b/Laravel/resources/views/vendor/charts/echarts/bar.blade.php @@ -0,0 +1,54 @@ +@if(!$model->customId) + @include('charts::_partials.container.div') +@endif + diff --git a/Laravel/resources/views/vendor/charts/echarts/donut.blade.php b/Laravel/resources/views/vendor/charts/echarts/donut.blade.php new file mode 100644 index 0000000..0ad0102 --- /dev/null +++ b/Laravel/resources/views/vendor/charts/echarts/donut.blade.php @@ -0,0 +1,58 @@ +@if(!$model->customId) + @include('charts::_partials.container.div') +@endif + diff --git a/Laravel/resources/views/vendor/charts/echarts/gauge.blade.php b/Laravel/resources/views/vendor/charts/echarts/gauge.blade.php new file mode 100644 index 0000000..ef11099 --- /dev/null +++ b/Laravel/resources/views/vendor/charts/echarts/gauge.blade.php @@ -0,0 +1,60 @@ +@if(!$model->customId) + @include('charts::_partials.container.div') +@endif + diff --git a/Laravel/resources/views/vendor/charts/echarts/line.blade.php b/Laravel/resources/views/vendor/charts/echarts/line.blade.php new file mode 100644 index 0000000..6719e3a --- /dev/null +++ b/Laravel/resources/views/vendor/charts/echarts/line.blade.php @@ -0,0 +1,54 @@ +@if(!$model->customId) + @include('charts::_partials.container.div') +@endif + diff --git a/Laravel/resources/views/vendor/charts/echarts/multi/area.blade.php b/Laravel/resources/views/vendor/charts/echarts/multi/area.blade.php new file mode 100644 index 0000000..f7f322b --- /dev/null +++ b/Laravel/resources/views/vendor/charts/echarts/multi/area.blade.php @@ -0,0 +1,72 @@ +@if(!$model->customId) + @include('charts::_partials.container.div') +@endif + diff --git a/Laravel/resources/views/vendor/charts/echarts/multi/bar.blade.php b/Laravel/resources/views/vendor/charts/echarts/multi/bar.blade.php new file mode 100644 index 0000000..f905332 --- /dev/null +++ b/Laravel/resources/views/vendor/charts/echarts/multi/bar.blade.php @@ -0,0 +1,67 @@ +@if(!$model->customId) + @include('charts::_partials.container.div') +@endif + diff --git a/Laravel/resources/views/vendor/charts/echarts/multi/line.blade.php b/Laravel/resources/views/vendor/charts/echarts/multi/line.blade.php new file mode 100644 index 0000000..9613a5f --- /dev/null +++ b/Laravel/resources/views/vendor/charts/echarts/multi/line.blade.php @@ -0,0 +1,67 @@ +@if(!$model->customId) + @include('charts::_partials.container.div') +@endif + diff --git a/Laravel/resources/views/vendor/charts/echarts/pie.blade.php b/Laravel/resources/views/vendor/charts/echarts/pie.blade.php new file mode 100644 index 0000000..8053433 --- /dev/null +++ b/Laravel/resources/views/vendor/charts/echarts/pie.blade.php @@ -0,0 +1,56 @@ +@if(!$model->customId) + @include('charts::_partials.container.div') +@endif + diff --git a/Laravel/resources/views/vendor/charts/fusioncharts/area.blade.php b/Laravel/resources/views/vendor/charts/fusioncharts/area.blade.php new file mode 100644 index 0000000..0aeb167 --- /dev/null +++ b/Laravel/resources/views/vendor/charts/fusioncharts/area.blade.php @@ -0,0 +1,48 @@ + + +@include('charts::_partials.container.div') diff --git a/Laravel/resources/views/vendor/charts/fusioncharts/bar.blade.php b/Laravel/resources/views/vendor/charts/fusioncharts/bar.blade.php new file mode 100644 index 0000000..3222ef0 --- /dev/null +++ b/Laravel/resources/views/vendor/charts/fusioncharts/bar.blade.php @@ -0,0 +1,48 @@ + + +@include('charts::_partials.container.div') diff --git a/Laravel/resources/views/vendor/charts/fusioncharts/donut.blade.php b/Laravel/resources/views/vendor/charts/fusioncharts/donut.blade.php new file mode 100644 index 0000000..822bb9c --- /dev/null +++ b/Laravel/resources/views/vendor/charts/fusioncharts/donut.blade.php @@ -0,0 +1,59 @@ + + +@include('charts::_partials.container.div') diff --git a/Laravel/resources/views/vendor/charts/fusioncharts/line.blade.php b/Laravel/resources/views/vendor/charts/fusioncharts/line.blade.php new file mode 100644 index 0000000..46c670e --- /dev/null +++ b/Laravel/resources/views/vendor/charts/fusioncharts/line.blade.php @@ -0,0 +1,47 @@ + + +@include('charts::_partials.container.div') diff --git a/Laravel/resources/views/vendor/charts/fusioncharts/multi/area.blade.php b/Laravel/resources/views/vendor/charts/fusioncharts/multi/area.blade.php new file mode 100644 index 0000000..51bcbaa --- /dev/null +++ b/Laravel/resources/views/vendor/charts/fusioncharts/multi/area.blade.php @@ -0,0 +1,63 @@ + + +@include('charts::_partials.container.div') diff --git a/Laravel/resources/views/vendor/charts/fusioncharts/multi/bar.blade.php b/Laravel/resources/views/vendor/charts/fusioncharts/multi/bar.blade.php new file mode 100644 index 0000000..6ca331e --- /dev/null +++ b/Laravel/resources/views/vendor/charts/fusioncharts/multi/bar.blade.php @@ -0,0 +1,62 @@ + + +@include('charts::_partials.container.div') diff --git a/Laravel/resources/views/vendor/charts/fusioncharts/multi/line.blade.php b/Laravel/resources/views/vendor/charts/fusioncharts/multi/line.blade.php new file mode 100644 index 0000000..00ab70d --- /dev/null +++ b/Laravel/resources/views/vendor/charts/fusioncharts/multi/line.blade.php @@ -0,0 +1,62 @@ + + +@include('charts::_partials.container.div') diff --git a/Laravel/resources/views/vendor/charts/fusioncharts/pie.blade.php b/Laravel/resources/views/vendor/charts/fusioncharts/pie.blade.php new file mode 100644 index 0000000..533773a --- /dev/null +++ b/Laravel/resources/views/vendor/charts/fusioncharts/pie.blade.php @@ -0,0 +1,59 @@ + + +@include('charts::_partials.container.div') diff --git a/Laravel/resources/views/vendor/charts/google/area.blade.php b/Laravel/resources/views/vendor/charts/google/area.blade.php new file mode 100644 index 0000000..76ea915 --- /dev/null +++ b/Laravel/resources/views/vendor/charts/google/area.blade.php @@ -0,0 +1,28 @@ + + +@if(!$model->customId) + @include('charts::_partials.container.div') +@endif diff --git a/Laravel/resources/views/vendor/charts/google/bar.blade.php b/Laravel/resources/views/vendor/charts/google/bar.blade.php new file mode 100644 index 0000000..1acdae3 --- /dev/null +++ b/Laravel/resources/views/vendor/charts/google/bar.blade.php @@ -0,0 +1,43 @@ + + +@if(!$model->customId) + @include('charts::_partials.container.div') +@endif diff --git a/Laravel/resources/views/vendor/charts/google/colors.blade.php b/Laravel/resources/views/vendor/charts/google/colors.blade.php new file mode 100644 index 0000000..c89fd42 --- /dev/null +++ b/Laravel/resources/views/vendor/charts/google/colors.blade.php @@ -0,0 +1,10 @@ +@if($model->colors) +colors:[ + @foreach($model->colors as $color) + "{{ $color }}", + @endforeach +], +@endif +@if($model->background_color) +backgroundColor: "{{ $model->background_color }}", +@endif diff --git a/Laravel/resources/views/vendor/charts/google/donut.blade.php b/Laravel/resources/views/vendor/charts/google/donut.blade.php new file mode 100644 index 0000000..5a102f5 --- /dev/null +++ b/Laravel/resources/views/vendor/charts/google/donut.blade.php @@ -0,0 +1,27 @@ + + +@if(!$model->customId) + @include('charts::_partials.container.div') +@endif diff --git a/Laravel/resources/views/vendor/charts/google/gauge.blade.php b/Laravel/resources/views/vendor/charts/google/gauge.blade.php new file mode 100644 index 0000000..8c5c8c4 --- /dev/null +++ b/Laravel/resources/views/vendor/charts/google/gauge.blade.php @@ -0,0 +1,74 @@ + + +@if(!$model->customId) + @include('charts::_partials/container.div-titled') +@endif diff --git a/Laravel/resources/views/vendor/charts/google/geo.blade.php b/Laravel/resources/views/vendor/charts/google/geo.blade.php new file mode 100644 index 0000000..8b911a7 --- /dev/null +++ b/Laravel/resources/views/vendor/charts/google/geo.blade.php @@ -0,0 +1,34 @@ + + +@if(!$model->customId) + @include('charts::_partials/container.div-titled') +@endif diff --git a/Laravel/resources/views/vendor/charts/google/line.blade.php b/Laravel/resources/views/vendor/charts/google/line.blade.php new file mode 100644 index 0000000..7d889d5 --- /dev/null +++ b/Laravel/resources/views/vendor/charts/google/line.blade.php @@ -0,0 +1,29 @@ + + +@if(!$model->customId) + @include('charts::_partials.container.div') +@endif diff --git a/Laravel/resources/views/vendor/charts/google/multi/area.blade.php b/Laravel/resources/views/vendor/charts/google/multi/area.blade.php new file mode 100644 index 0000000..96d0b92 --- /dev/null +++ b/Laravel/resources/views/vendor/charts/google/multi/area.blade.php @@ -0,0 +1,38 @@ + + +@if(!$model->customId) + @include('charts::_partials.container.div') +@endif diff --git a/Laravel/resources/views/vendor/charts/google/multi/bar.blade.php b/Laravel/resources/views/vendor/charts/google/multi/bar.blade.php new file mode 100644 index 0000000..79541ea --- /dev/null +++ b/Laravel/resources/views/vendor/charts/google/multi/bar.blade.php @@ -0,0 +1,38 @@ + + +@if(!$model->customId) + @include('charts::_partials.container.div') +@endif diff --git a/Laravel/resources/views/vendor/charts/google/multi/line.blade.php b/Laravel/resources/views/vendor/charts/google/multi/line.blade.php new file mode 100644 index 0000000..cc3225b --- /dev/null +++ b/Laravel/resources/views/vendor/charts/google/multi/line.blade.php @@ -0,0 +1,38 @@ + + +@if(!$model->customId) + @include('charts::_partials.container.div') +@endif diff --git a/Laravel/resources/views/vendor/charts/google/pie.blade.php b/Laravel/resources/views/vendor/charts/google/pie.blade.php new file mode 100644 index 0000000..6b6de24 --- /dev/null +++ b/Laravel/resources/views/vendor/charts/google/pie.blade.php @@ -0,0 +1,26 @@ + + +@if(!$model->customId) + @include('charts::_partials.container.div') +@endif diff --git a/Laravel/resources/views/vendor/charts/google/realtime/gauge.blade.php b/Laravel/resources/views/vendor/charts/google/realtime/gauge.blade.php new file mode 100644 index 0000000..c043695 --- /dev/null +++ b/Laravel/resources/views/vendor/charts/google/realtime/gauge.blade.php @@ -0,0 +1,84 @@ + + +@if(!$model->customId) + @include('charts::_partials/container.div-titled') +@endif diff --git a/Laravel/resources/views/vendor/charts/google/scatter.blade.php b/Laravel/resources/views/vendor/charts/google/scatter.blade.php new file mode 100644 index 0000000..56e5dd7 --- /dev/null +++ b/Laravel/resources/views/vendor/charts/google/scatter.blade.php @@ -0,0 +1,33 @@ + + +@if(!$model->customId) + @include('charts::_partials.container.div') +@endif diff --git a/Laravel/resources/views/vendor/charts/google/titles.blade.php b/Laravel/resources/views/vendor/charts/google/titles.blade.php new file mode 100644 index 0000000..fa6d878 --- /dev/null +++ b/Laravel/resources/views/vendor/charts/google/titles.blade.php @@ -0,0 +1,10 @@ +@if($model->title) +title: "{!! $model->title !!}", +@endif +@if($model->x_axis_title) +hAxis: {title: "{{ $model->x_axis_title }}"}, +@endif +@if($model->y_axis_title) +vAxis: {title: "{{ $model->y_axis_title }}"}, +@endif + diff --git a/Laravel/resources/views/vendor/charts/highcharts/area.blade.php b/Laravel/resources/views/vendor/charts/highcharts/area.blade.php new file mode 100644 index 0000000..441dad1 --- /dev/null +++ b/Laravel/resources/views/vendor/charts/highcharts/area.blade.php @@ -0,0 +1,67 @@ + + +@if(!$model->customId) + @include('charts::_partials.container.div') +@endif diff --git a/Laravel/resources/views/vendor/charts/highcharts/bar.blade.php b/Laravel/resources/views/vendor/charts/highcharts/bar.blade.php new file mode 100644 index 0000000..e5715e1 --- /dev/null +++ b/Laravel/resources/views/vendor/charts/highcharts/bar.blade.php @@ -0,0 +1,66 @@ + + +@if(!$model->customId) + @include('charts::_partials.container.div') +@endif diff --git a/Laravel/resources/views/vendor/charts/highcharts/donut.blade.php b/Laravel/resources/views/vendor/charts/highcharts/donut.blade.php new file mode 100644 index 0000000..b28f998 --- /dev/null +++ b/Laravel/resources/views/vendor/charts/highcharts/donut.blade.php @@ -0,0 +1,66 @@ + + +@if(!$model->customId) + @include('charts::_partials.container.div') +@endif diff --git a/Laravel/resources/views/vendor/charts/highcharts/geo.blade.php b/Laravel/resources/views/vendor/charts/highcharts/geo.blade.php new file mode 100644 index 0000000..477a477 --- /dev/null +++ b/Laravel/resources/views/vendor/charts/highcharts/geo.blade.php @@ -0,0 +1,71 @@ +@php + // Get the max / min index + $max = 0; + $min = $model->values ? $model->values[0] : 0; +@endphp + +@foreach($model->values as $dta) + @if($dta > $max) + @php($max = $dta) + @elseif($dta < $min) + @php($min = $dta) + @endif +@endforeach + + + +@if(!$model->customId) + @include('charts::_partials.container.div') +@endif diff --git a/Laravel/resources/views/vendor/charts/highcharts/line.blade.php b/Laravel/resources/views/vendor/charts/highcharts/line.blade.php new file mode 100644 index 0000000..d1621bb --- /dev/null +++ b/Laravel/resources/views/vendor/charts/highcharts/line.blade.php @@ -0,0 +1,66 @@ + + +@if(!$model->customId) + @include('charts::_partials.container.div') +@endif diff --git a/Laravel/resources/views/vendor/charts/highcharts/multi/area.blade.php b/Laravel/resources/views/vendor/charts/highcharts/multi/area.blade.php new file mode 100644 index 0000000..82535ae --- /dev/null +++ b/Laravel/resources/views/vendor/charts/highcharts/multi/area.blade.php @@ -0,0 +1,58 @@ + + +@if(!$model->customId) + @include('charts::_partials.container.div') +@endif diff --git a/Laravel/resources/views/vendor/charts/highcharts/multi/areaspline.blade.php b/Laravel/resources/views/vendor/charts/highcharts/multi/areaspline.blade.php new file mode 100644 index 0000000..7e87279 --- /dev/null +++ b/Laravel/resources/views/vendor/charts/highcharts/multi/areaspline.blade.php @@ -0,0 +1,67 @@ + + +@if(!$model->customId) + @include('charts::_partials.container.div') +@endif diff --git a/Laravel/resources/views/vendor/charts/highcharts/multi/bar.blade.php b/Laravel/resources/views/vendor/charts/highcharts/multi/bar.blade.php new file mode 100644 index 0000000..58fb2cc --- /dev/null +++ b/Laravel/resources/views/vendor/charts/highcharts/multi/bar.blade.php @@ -0,0 +1,66 @@ + + +@if(!$model->customId) + @include('charts::_partials.container.div') +@endif diff --git a/Laravel/resources/views/vendor/charts/highcharts/multi/line.blade.php b/Laravel/resources/views/vendor/charts/highcharts/multi/line.blade.php new file mode 100644 index 0000000..86ecfed --- /dev/null +++ b/Laravel/resources/views/vendor/charts/highcharts/multi/line.blade.php @@ -0,0 +1,57 @@ + + +@if(!$model->customId) + @include('charts::_partials.container.div') +@endif diff --git a/Laravel/resources/views/vendor/charts/highcharts/pie.blade.php b/Laravel/resources/views/vendor/charts/highcharts/pie.blade.php new file mode 100644 index 0000000..e40c8af --- /dev/null +++ b/Laravel/resources/views/vendor/charts/highcharts/pie.blade.php @@ -0,0 +1,65 @@ + + +@if(!$model->customId) + @include('charts::_partials.container.div') +@endif diff --git a/Laravel/resources/views/vendor/charts/highcharts/realtime/area.blade.php b/Laravel/resources/views/vendor/charts/highcharts/realtime/area.blade.php new file mode 100644 index 0000000..1cdcaa6 --- /dev/null +++ b/Laravel/resources/views/vendor/charts/highcharts/realtime/area.blade.php @@ -0,0 +1,80 @@ + + +@if(!$model->customId) + @include('charts::_partials.container.div') +@endif diff --git a/Laravel/resources/views/vendor/charts/highcharts/realtime/bar.blade.php b/Laravel/resources/views/vendor/charts/highcharts/realtime/bar.blade.php new file mode 100644 index 0000000..b4782eb --- /dev/null +++ b/Laravel/resources/views/vendor/charts/highcharts/realtime/bar.blade.php @@ -0,0 +1,84 @@ + + +@if(!$model->customId) + @include('charts::_partials.container.div') +@endif diff --git a/Laravel/resources/views/vendor/charts/highcharts/realtime/line.blade.php b/Laravel/resources/views/vendor/charts/highcharts/realtime/line.blade.php new file mode 100644 index 0000000..b173351 --- /dev/null +++ b/Laravel/resources/views/vendor/charts/highcharts/realtime/line.blade.php @@ -0,0 +1,80 @@ + + +@if(!$model->customId) + @include('charts::_partials.container.div') +@endif diff --git a/Laravel/resources/views/vendor/charts/justgage/gauge.blade.php b/Laravel/resources/views/vendor/charts/justgage/gauge.blade.php new file mode 100644 index 0000000..e02a89a --- /dev/null +++ b/Laravel/resources/views/vendor/charts/justgage/gauge.blade.php @@ -0,0 +1,33 @@ +@include('charts::_partials.container.div') + + diff --git a/Laravel/resources/views/vendor/charts/justgage/percentage.blade.php b/Laravel/resources/views/vendor/charts/justgage/percentage.blade.php new file mode 100644 index 0000000..958d8b9 --- /dev/null +++ b/Laravel/resources/views/vendor/charts/justgage/percentage.blade.php @@ -0,0 +1,37 @@ +@include('charts::_partials.container.div') + + diff --git a/Laravel/resources/views/vendor/charts/justgage/realtime/gauge.blade.php b/Laravel/resources/views/vendor/charts/justgage/realtime/gauge.blade.php new file mode 100644 index 0000000..c15a404 --- /dev/null +++ b/Laravel/resources/views/vendor/charts/justgage/realtime/gauge.blade.php @@ -0,0 +1,39 @@ +@include('charts::_partials.container.div') + + diff --git a/Laravel/resources/views/vendor/charts/justgage/realtime/percentage.blade.php b/Laravel/resources/views/vendor/charts/justgage/realtime/percentage.blade.php new file mode 100644 index 0000000..caf64e3 --- /dev/null +++ b/Laravel/resources/views/vendor/charts/justgage/realtime/percentage.blade.php @@ -0,0 +1,43 @@ +@include('charts::_partials.container.div') + + diff --git a/Laravel/resources/views/vendor/charts/material/bar.blade.php b/Laravel/resources/views/vendor/charts/material/bar.blade.php new file mode 100644 index 0000000..b2e5dca --- /dev/null +++ b/Laravel/resources/views/vendor/charts/material/bar.blade.php @@ -0,0 +1,39 @@ + + +@include('charts::_partials.container.div') diff --git a/Laravel/resources/views/vendor/charts/material/line.blade.php b/Laravel/resources/views/vendor/charts/material/line.blade.php new file mode 100644 index 0000000..95454fe --- /dev/null +++ b/Laravel/resources/views/vendor/charts/material/line.blade.php @@ -0,0 +1,30 @@ + + +@include('charts::_partials.container.div') diff --git a/Laravel/resources/views/vendor/charts/material/multi/bar.blade.php b/Laravel/resources/views/vendor/charts/material/multi/bar.blade.php new file mode 100644 index 0000000..9907017 --- /dev/null +++ b/Laravel/resources/views/vendor/charts/material/multi/bar.blade.php @@ -0,0 +1,46 @@ + + +@include('charts::_partials.container.div') diff --git a/Laravel/resources/views/vendor/charts/material/multi/line.blade.php b/Laravel/resources/views/vendor/charts/material/multi/line.blade.php new file mode 100644 index 0000000..32ab970 --- /dev/null +++ b/Laravel/resources/views/vendor/charts/material/multi/line.blade.php @@ -0,0 +1,46 @@ + + +@include('charts::_partials.container.div') diff --git a/Laravel/resources/views/vendor/charts/minimalist/_data/multi.blade.php b/Laravel/resources/views/vendor/charts/minimalist/_data/multi.blade.php new file mode 100644 index 0000000..f925150 --- /dev/null +++ b/Laravel/resources/views/vendor/charts/minimalist/_data/multi.blade.php @@ -0,0 +1,10 @@ +@for($i = 0; $i < count($model->datasets); $i++) + var s{{ $i }} = [ + @for($k = 0; $k < count($model->datasets[$i]['values']); $k++) + { + x: "{{ $model->labels[$k] }}", + y: {{ $model->datasets[$i]['values'][$k] }} + }, + @endfor + ]; +@endfor diff --git a/Laravel/resources/views/vendor/charts/minimalist/_data/one-indcolor.blade.php b/Laravel/resources/views/vendor/charts/minimalist/_data/one-indcolor.blade.php new file mode 100644 index 0000000..791b7ec --- /dev/null +++ b/Laravel/resources/views/vendor/charts/minimalist/_data/one-indcolor.blade.php @@ -0,0 +1,11 @@ +var data = [ + @for($i = 0; $i < count($model->values); $i++) + { + x: "{!! $model->labels[$i] !!}", + y: {{ $model->values[$i] }}, + @if($model->colors) + color: "{{ $model->colors[$i] }}" + @endif + }, + @endfor +]; diff --git a/Laravel/resources/views/vendor/charts/minimalist/_data/one.blade.php b/Laravel/resources/views/vendor/charts/minimalist/_data/one.blade.php new file mode 100644 index 0000000..5fdcf63 --- /dev/null +++ b/Laravel/resources/views/vendor/charts/minimalist/_data/one.blade.php @@ -0,0 +1,8 @@ +var data = [ + @for($i = 0; $i < count($model->values); $i++) + { + x: "{!! $model->labels[$i] !!}", + y: {{ $model->values[$i] }}, + }, + @endfor +]; diff --git a/Laravel/resources/views/vendor/charts/minimalist/area.blade.php b/Laravel/resources/views/vendor/charts/minimalist/area.blade.php new file mode 100644 index 0000000..5e6d3f3 --- /dev/null +++ b/Laravel/resources/views/vendor/charts/minimalist/area.blade.php @@ -0,0 +1,24 @@ +@include('charts::_partials.container.svg') + + diff --git a/Laravel/resources/views/vendor/charts/minimalist/bar.blade.php b/Laravel/resources/views/vendor/charts/minimalist/bar.blade.php new file mode 100644 index 0000000..1a9cff1 --- /dev/null +++ b/Laravel/resources/views/vendor/charts/minimalist/bar.blade.php @@ -0,0 +1,23 @@ +@include('charts::_partials.container.svg') + + diff --git a/Laravel/resources/views/vendor/charts/minimalist/donut.blade.php b/Laravel/resources/views/vendor/charts/minimalist/donut.blade.php new file mode 100644 index 0000000..2f00814 --- /dev/null +++ b/Laravel/resources/views/vendor/charts/minimalist/donut.blade.php @@ -0,0 +1,27 @@ +@include('charts::_partials.container.svg') + + diff --git a/Laravel/resources/views/vendor/charts/minimalist/line.blade.php b/Laravel/resources/views/vendor/charts/minimalist/line.blade.php new file mode 100644 index 0000000..b641acd --- /dev/null +++ b/Laravel/resources/views/vendor/charts/minimalist/line.blade.php @@ -0,0 +1,24 @@ +@include('charts::_partials.container.svg') + + + diff --git a/Laravel/resources/views/vendor/charts/minimalist/multi/area.blade.php b/Laravel/resources/views/vendor/charts/minimalist/multi/area.blade.php new file mode 100644 index 0000000..6ed88c6 --- /dev/null +++ b/Laravel/resources/views/vendor/charts/minimalist/multi/area.blade.php @@ -0,0 +1,27 @@ +@include('charts::_partials.container.svg') + + + diff --git a/Laravel/resources/views/vendor/charts/minimalist/multi/bar.blade.php b/Laravel/resources/views/vendor/charts/minimalist/multi/bar.blade.php new file mode 100644 index 0000000..0a9b03e --- /dev/null +++ b/Laravel/resources/views/vendor/charts/minimalist/multi/bar.blade.php @@ -0,0 +1,26 @@ +@include('charts::_partials.container.svg') + + diff --git a/Laravel/resources/views/vendor/charts/minimalist/multi/line.blade.php b/Laravel/resources/views/vendor/charts/minimalist/multi/line.blade.php new file mode 100644 index 0000000..427949f --- /dev/null +++ b/Laravel/resources/views/vendor/charts/minimalist/multi/line.blade.php @@ -0,0 +1,26 @@ +@include('charts::_partials.container.svg') + + + diff --git a/Laravel/resources/views/vendor/charts/minimalist/pie.blade.php b/Laravel/resources/views/vendor/charts/minimalist/pie.blade.php new file mode 100644 index 0000000..e426bf0 --- /dev/null +++ b/Laravel/resources/views/vendor/charts/minimalist/pie.blade.php @@ -0,0 +1,26 @@ +@include('charts::_partials.container.svg') + + diff --git a/Laravel/resources/views/vendor/charts/morris/area.blade.php b/Laravel/resources/views/vendor/charts/morris/area.blade.php new file mode 100644 index 0000000..f1a17e0 --- /dev/null +++ b/Laravel/resources/views/vendor/charts/morris/area.blade.php @@ -0,0 +1,26 @@ +@include('charts::_partials/container.div-titled') + + diff --git a/Laravel/resources/views/vendor/charts/morris/bar.blade.php b/Laravel/resources/views/vendor/charts/morris/bar.blade.php new file mode 100644 index 0000000..fa1cb01 --- /dev/null +++ b/Laravel/resources/views/vendor/charts/morris/bar.blade.php @@ -0,0 +1,33 @@ +@include('charts::_partials/container.div-titled') + + diff --git a/Laravel/resources/views/vendor/charts/morris/donut.blade.php b/Laravel/resources/views/vendor/charts/morris/donut.blade.php new file mode 100644 index 0000000..90114c8 --- /dev/null +++ b/Laravel/resources/views/vendor/charts/morris/donut.blade.php @@ -0,0 +1,25 @@ +@include('charts::_partials/container.div-titled') + + diff --git a/Laravel/resources/views/vendor/charts/morris/line.blade.php b/Laravel/resources/views/vendor/charts/morris/line.blade.php new file mode 100644 index 0000000..5c86a22 --- /dev/null +++ b/Laravel/resources/views/vendor/charts/morris/line.blade.php @@ -0,0 +1,26 @@ +@include('charts::_partials/container.div-titled') + + diff --git a/Laravel/resources/views/vendor/charts/morris/multi/area.blade.php b/Laravel/resources/views/vendor/charts/morris/multi/area.blade.php new file mode 100644 index 0000000..0da0550 --- /dev/null +++ b/Laravel/resources/views/vendor/charts/morris/multi/area.blade.php @@ -0,0 +1,40 @@ +@include('charts::_partials/container.div-titled') + + diff --git a/Laravel/resources/views/vendor/charts/morris/multi/bar.blade.php b/Laravel/resources/views/vendor/charts/morris/multi/bar.blade.php new file mode 100644 index 0000000..aab9a39 --- /dev/null +++ b/Laravel/resources/views/vendor/charts/morris/multi/bar.blade.php @@ -0,0 +1,40 @@ +@include('charts::_partials.container.div-titled') + + diff --git a/Laravel/resources/views/vendor/charts/morris/multi/line.blade.php b/Laravel/resources/views/vendor/charts/morris/multi/line.blade.php new file mode 100644 index 0000000..acc3594 --- /dev/null +++ b/Laravel/resources/views/vendor/charts/morris/multi/line.blade.php @@ -0,0 +1,40 @@ +@include('charts::_partials/container.div-titled') + + diff --git a/Laravel/resources/views/vendor/charts/plottablejs/_data/multi.blade.php b/Laravel/resources/views/vendor/charts/plottablejs/_data/multi.blade.php new file mode 100644 index 0000000..66e382d --- /dev/null +++ b/Laravel/resources/views/vendor/charts/plottablejs/_data/multi.blade.php @@ -0,0 +1,10 @@ +@for($i = 0; $i < count($model->datasets); $i++) + var s{{ $i }} = [ + @for($k = 0; $k < count($model->datasets[$i]['values']); $k++) + { + x: "{{ $model->labels[$k] }}", + y: {{ $model->datasets[$i]['values'][$k] }}, + }, + @endfor + ]; +@endfor diff --git a/Laravel/resources/views/vendor/charts/plottablejs/_data/one.blade.php b/Laravel/resources/views/vendor/charts/plottablejs/_data/one.blade.php new file mode 100644 index 0000000..791b7ec --- /dev/null +++ b/Laravel/resources/views/vendor/charts/plottablejs/_data/one.blade.php @@ -0,0 +1,11 @@ +var data = [ + @for($i = 0; $i < count($model->values); $i++) + { + x: "{!! $model->labels[$i] !!}", + y: {{ $model->values[$i] }}, + @if($model->colors) + color: "{{ $model->colors[$i] }}" + @endif + }, + @endfor +]; diff --git a/Laravel/resources/views/vendor/charts/plottablejs/area.blade.php b/Laravel/resources/views/vendor/charts/plottablejs/area.blade.php new file mode 100644 index 0000000..07a1715 --- /dev/null +++ b/Laravel/resources/views/vendor/charts/plottablejs/area.blade.php @@ -0,0 +1,37 @@ +@include('charts::_partials.container.svg') + + diff --git a/Laravel/resources/views/vendor/charts/plottablejs/bar.blade.php b/Laravel/resources/views/vendor/charts/plottablejs/bar.blade.php new file mode 100644 index 0000000..178f91a --- /dev/null +++ b/Laravel/resources/views/vendor/charts/plottablejs/bar.blade.php @@ -0,0 +1,36 @@ +@include('charts::_partials.container.svg') + + diff --git a/Laravel/resources/views/vendor/charts/plottablejs/donut.blade.php b/Laravel/resources/views/vendor/charts/plottablejs/donut.blade.php new file mode 100644 index 0000000..e299071 --- /dev/null +++ b/Laravel/resources/views/vendor/charts/plottablejs/donut.blade.php @@ -0,0 +1,41 @@ +@include('charts::_partials.container.svg') + + + diff --git a/Laravel/resources/views/vendor/charts/plottablejs/line.blade.php b/Laravel/resources/views/vendor/charts/plottablejs/line.blade.php new file mode 100644 index 0000000..a275578 --- /dev/null +++ b/Laravel/resources/views/vendor/charts/plottablejs/line.blade.php @@ -0,0 +1,36 @@ +@include('charts::_partials.container.svg') + + diff --git a/Laravel/resources/views/vendor/charts/plottablejs/multi/area.blade.php b/Laravel/resources/views/vendor/charts/plottablejs/multi/area.blade.php new file mode 100644 index 0000000..d32b7e8 --- /dev/null +++ b/Laravel/resources/views/vendor/charts/plottablejs/multi/area.blade.php @@ -0,0 +1,39 @@ +@include('charts::_partials.container.svg') + + diff --git a/Laravel/resources/views/vendor/charts/plottablejs/multi/bar.blade.php b/Laravel/resources/views/vendor/charts/plottablejs/multi/bar.blade.php new file mode 100644 index 0000000..83a1b59 --- /dev/null +++ b/Laravel/resources/views/vendor/charts/plottablejs/multi/bar.blade.php @@ -0,0 +1,41 @@ +@include('charts::_partials.container.svg') + + diff --git a/Laravel/resources/views/vendor/charts/plottablejs/multi/line.blade.php b/Laravel/resources/views/vendor/charts/plottablejs/multi/line.blade.php new file mode 100644 index 0000000..e5d7070 --- /dev/null +++ b/Laravel/resources/views/vendor/charts/plottablejs/multi/line.blade.php @@ -0,0 +1,38 @@ +@include('charts::_partials.container.svg') + + diff --git a/Laravel/resources/views/vendor/charts/plottablejs/pie.blade.php b/Laravel/resources/views/vendor/charts/plottablejs/pie.blade.php new file mode 100644 index 0000000..b2a5bcc --- /dev/null +++ b/Laravel/resources/views/vendor/charts/plottablejs/pie.blade.php @@ -0,0 +1,39 @@ +@include('charts::_partials.container.svg') + + diff --git a/Laravel/resources/views/vendor/charts/progressbarjs/percentage.blade.php b/Laravel/resources/views/vendor/charts/progressbarjs/percentage.blade.php new file mode 100644 index 0000000..1388019 --- /dev/null +++ b/Laravel/resources/views/vendor/charts/progressbarjs/percentage.blade.php @@ -0,0 +1,34 @@ +@php($min = count($model->values) >= 2 ? $model->values[1] : 0) +@php($max = count($model->values) >= 3 ? $model->values[2] : 100) + +@include('charts::_partials.container.div-titled') +@include('charts::_partials.dimension.svg') + diff --git a/Laravel/resources/views/vendor/charts/progressbarjs/progressbar.blade.php b/Laravel/resources/views/vendor/charts/progressbarjs/progressbar.blade.php new file mode 100644 index 0000000..23b8763 --- /dev/null +++ b/Laravel/resources/views/vendor/charts/progressbarjs/progressbar.blade.php @@ -0,0 +1,25 @@ +@php($min = count($model->values) >= 2 ? $model->values[1] : 0) +@php($max = count($model->values) >= 3 ? $model->values[2] : 100) + +@include('charts::_partials.container.title') +
+ + diff --git a/Laravel/resources/views/vendor/charts/progressbarjs/realtime/percentage.blade.php b/Laravel/resources/views/vendor/charts/progressbarjs/realtime/percentage.blade.php new file mode 100644 index 0000000..60563f9 --- /dev/null +++ b/Laravel/resources/views/vendor/charts/progressbarjs/realtime/percentage.blade.php @@ -0,0 +1,41 @@ +@php($min = count($model->values) >= 2 ? $model->values[1] : 0) +@php($max = count($model->values) >= 3 ? $model->values[2] : 100) + +@include('charts::_partials.container.div-titled') +@include('charts::_partials.dimension.svg') + diff --git a/Laravel/resources/views/vendor/charts/progressbarjs/realtime/progressbar.blade.php b/Laravel/resources/views/vendor/charts/progressbarjs/realtime/progressbar.blade.php new file mode 100644 index 0000000..e8bf0f8 --- /dev/null +++ b/Laravel/resources/views/vendor/charts/progressbarjs/realtime/progressbar.blade.php @@ -0,0 +1,32 @@ +@php($min = count($model->values) >= 2 ? $model->values[1] : 0) +@php($max = count($model->values) >= 3 ? $model->values[2] : 100) + +@include('charts::_partials.container.title') +
+ + diff --git a/Laravel/resources/views/vendor/mail/html/button.blade.php b/Laravel/resources/views/vendor/mail/html/button.blade.php new file mode 100644 index 0000000..c7aae1b --- /dev/null +++ b/Laravel/resources/views/vendor/mail/html/button.blade.php @@ -0,0 +1,19 @@ + + + + +
+ + + + +
+ + + + +
+ {{ $slot }} +
+
+
diff --git a/Laravel/resources/views/vendor/mail/html/footer.blade.php b/Laravel/resources/views/vendor/mail/html/footer.blade.php new file mode 100644 index 0000000..c3f9360 --- /dev/null +++ b/Laravel/resources/views/vendor/mail/html/footer.blade.php @@ -0,0 +1,11 @@ + + + + + + + + + diff --git a/Laravel/resources/views/vendor/mail/html/header.blade.php b/Laravel/resources/views/vendor/mail/html/header.blade.php new file mode 100644 index 0000000..eefabab --- /dev/null +++ b/Laravel/resources/views/vendor/mail/html/header.blade.php @@ -0,0 +1,7 @@ + + + + {{ $slot }} + + + diff --git a/Laravel/resources/views/vendor/mail/html/layout.blade.php b/Laravel/resources/views/vendor/mail/html/layout.blade.php new file mode 100644 index 0000000..991ae52 --- /dev/null +++ b/Laravel/resources/views/vendor/mail/html/layout.blade.php @@ -0,0 +1,54 @@ + + + + + + + + + + + + + +
+ + {{ $header or '' }} + + + + + + + {{ $footer or '' }} +
+ + + + + +
+ {{ Illuminate\Mail\Markdown::parse($slot) }} + + {{ $subcopy or '' }} +
+
+
+ + diff --git a/Laravel/resources/views/vendor/mail/html/message.blade.php b/Laravel/resources/views/vendor/mail/html/message.blade.php new file mode 100644 index 0000000..2ad23a6 --- /dev/null +++ b/Laravel/resources/views/vendor/mail/html/message.blade.php @@ -0,0 +1,27 @@ +@component('mail::layout') + {{-- Header --}} + @slot('header') + @component('mail::header', ['url' => config('app.url')]) + {{ config('app.name') }} + @endcomponent + @endslot + + {{-- Body --}} + {{ $slot }} + + {{-- Subcopy --}} + @isset($subcopy) + @slot('subcopy') + @component('mail::subcopy') + {{ $subcopy }} + @endcomponent + @endslot + @endisset + + {{-- Footer --}} + @slot('footer') + @component('mail::footer') + © {{ date('Y') }} {{ config('app.name') }}. All rights reserved. + @endcomponent + @endslot +@endcomponent diff --git a/Laravel/resources/views/vendor/mail/html/panel.blade.php b/Laravel/resources/views/vendor/mail/html/panel.blade.php new file mode 100644 index 0000000..f397080 --- /dev/null +++ b/Laravel/resources/views/vendor/mail/html/panel.blade.php @@ -0,0 +1,13 @@ + + + + +
+ + + + +
+ {{ Illuminate\Mail\Markdown::parse($slot) }} +
+
diff --git a/Laravel/resources/views/vendor/mail/html/promotion.blade.php b/Laravel/resources/views/vendor/mail/html/promotion.blade.php new file mode 100644 index 0000000..0debcf8 --- /dev/null +++ b/Laravel/resources/views/vendor/mail/html/promotion.blade.php @@ -0,0 +1,7 @@ + + + + +
+ {{ Illuminate\Mail\Markdown::parse($slot) }} +
diff --git a/Laravel/resources/views/vendor/mail/html/promotion/button.blade.php b/Laravel/resources/views/vendor/mail/html/promotion/button.blade.php new file mode 100644 index 0000000..8e79081 --- /dev/null +++ b/Laravel/resources/views/vendor/mail/html/promotion/button.blade.php @@ -0,0 +1,13 @@ + + + + +
+ + + + +
+ {{ $slot }} +
+
diff --git a/Laravel/resources/views/vendor/mail/html/subcopy.blade.php b/Laravel/resources/views/vendor/mail/html/subcopy.blade.php new file mode 100644 index 0000000..c3df7b4 --- /dev/null +++ b/Laravel/resources/views/vendor/mail/html/subcopy.blade.php @@ -0,0 +1,7 @@ + + + + +
+ {{ Illuminate\Mail\Markdown::parse($slot) }} +
diff --git a/Laravel/resources/views/vendor/mail/html/table.blade.php b/Laravel/resources/views/vendor/mail/html/table.blade.php new file mode 100644 index 0000000..a5f3348 --- /dev/null +++ b/Laravel/resources/views/vendor/mail/html/table.blade.php @@ -0,0 +1,3 @@ +
+{{ Illuminate\Mail\Markdown::parse($slot) }} +
diff --git a/Laravel/resources/views/vendor/mail/html/themes/default.css b/Laravel/resources/views/vendor/mail/html/themes/default.css new file mode 100644 index 0000000..2065993 --- /dev/null +++ b/Laravel/resources/views/vendor/mail/html/themes/default.css @@ -0,0 +1,285 @@ +/* Base */ + +body, body *:not(html):not(style):not(br):not(tr):not(code) { + font-family: Avenir, Helvetica, sans-serif; + box-sizing: border-box; +} + +body { + background-color: #f5f8fa; + color: #74787E; + height: 100%; + hyphens: auto; + line-height: 1.4; + margin: 0; + -moz-hyphens: auto; + -ms-word-break: break-all; + width: 100% !important; + -webkit-hyphens: auto; + -webkit-text-size-adjust: none; + word-break: break-all; + word-break: break-word; +} + +p, +ul, +ol, +blockquote { + line-height: 1.4; + text-align: left; +} + +a { + color: #3869D4; +} + +a img { + border: none; +} + +/* Typography */ + +h1 { + color: #2F3133; + font-size: 19px; + font-weight: bold; + margin-top: 0; + text-align: left; +} + +h2 { + color: #2F3133; + font-size: 16px; + font-weight: bold; + margin-top: 0; + text-align: left; +} + +h3 { + color: #2F3133; + font-size: 14px; + font-weight: bold; + margin-top: 0; + text-align: left; +} + +p { + color: #74787E; + font-size: 16px; + line-height: 1.5em; + margin-top: 0; + text-align: left; +} + +p.sub { + font-size: 12px; +} + +img { + max-width: 100%; +} + +/* Layout */ + +.wrapper { + background-color: #f5f8fa; + margin: 0; + padding: 0; + width: 100%; + -premailer-cellpadding: 0; + -premailer-cellspacing: 0; + -premailer-width: 100%; +} + +.content { + margin: 0; + padding: 0; + width: 100%; + -premailer-cellpadding: 0; + -premailer-cellspacing: 0; + -premailer-width: 100%; +} + +/* Header */ + +.header { + padding: 25px 0; + text-align: center; +} + +.header a { + color: #bbbfc3; + font-size: 19px; + font-weight: bold; + text-decoration: none; + text-shadow: 0 1px 0 white; +} + +/* Body */ + +.body { + background-color: #FFFFFF; + border-bottom: 1px solid #EDEFF2; + border-top: 1px solid #EDEFF2; + margin: 0; + padding: 0; + width: 100%; + -premailer-cellpadding: 0; + -premailer-cellspacing: 0; + -premailer-width: 100%; +} + +.inner-body { + background-color: #FFFFFF; + margin: 0 auto; + padding: 0; + width: 570px; + -premailer-cellpadding: 0; + -premailer-cellspacing: 0; + -premailer-width: 570px; +} + +/* Subcopy */ + +.subcopy { + border-top: 1px solid #EDEFF2; + margin-top: 25px; + padding-top: 25px; +} + +.subcopy p { + font-size: 12px; +} + +/* Footer */ + +.footer { + margin: 0 auto; + padding: 0; + text-align: center; + width: 570px; + -premailer-cellpadding: 0; + -premailer-cellspacing: 0; + -premailer-width: 570px; +} + +.footer p { + color: #AEAEAE; + font-size: 12px; + text-align: center; +} + +/* Tables */ + +.table table { + margin: 30px auto; + width: 100%; + -premailer-cellpadding: 0; + -premailer-cellspacing: 0; + -premailer-width: 100%; +} + +.table th { + border-bottom: 1px solid #EDEFF2; + padding-bottom: 8px; +} + +.table td { + color: #74787E; + font-size: 15px; + line-height: 18px; + padding: 10px 0; +} + +.content-cell { + padding: 35px; +} + +/* Buttons */ + +.action { + margin: 30px auto; + padding: 0; + text-align: center; + width: 100%; + -premailer-cellpadding: 0; + -premailer-cellspacing: 0; + -premailer-width: 100%; +} + +.button { + border-radius: 3px; + box-shadow: 0 2px 3px rgba(0, 0, 0, 0.16); + color: #FFF; + display: inline-block; + text-decoration: none; + -webkit-text-size-adjust: none; +} + +.button-blue { + background-color: #3097D1; + border-top: 10px solid #3097D1; + border-right: 18px solid #3097D1; + border-bottom: 10px solid #3097D1; + border-left: 18px solid #3097D1; +} + +.button-green { + background-color: #2ab27b; + border-top: 10px solid #2ab27b; + border-right: 18px solid #2ab27b; + border-bottom: 10px solid #2ab27b; + border-left: 18px solid #2ab27b; +} + +.button-red { + background-color: #bf5329; + border-top: 10px solid #bf5329; + border-right: 18px solid #bf5329; + border-bottom: 10px solid #bf5329; + border-left: 18px solid #bf5329; +} + +/* Panels */ + +.panel { + margin: 0 0 21px; +} + +.panel-content { + background-color: #EDEFF2; + padding: 16px; +} + +.panel-item { + padding: 0; +} + +.panel-item p:last-of-type { + margin-bottom: 0; + padding-bottom: 0; +} + +/* Promotions */ + +.promotion { + background-color: #FFFFFF; + border: 2px dashed #9BA2AB; + margin: 0; + margin-bottom: 25px; + margin-top: 25px; + padding: 24px; + width: 100%; + -premailer-cellpadding: 0; + -premailer-cellspacing: 0; + -premailer-width: 100%; +} + +.promotion h1 { + text-align: center; +} + +.promotion p { + font-size: 15px; + text-align: center; +} diff --git a/Laravel/resources/views/vendor/mail/markdown/button.blade.php b/Laravel/resources/views/vendor/mail/markdown/button.blade.php new file mode 100644 index 0000000..97444eb --- /dev/null +++ b/Laravel/resources/views/vendor/mail/markdown/button.blade.php @@ -0,0 +1 @@ +{{ $slot }}: {{ $url }} diff --git a/Laravel/resources/views/vendor/mail/markdown/footer.blade.php b/Laravel/resources/views/vendor/mail/markdown/footer.blade.php new file mode 100644 index 0000000..3338f62 --- /dev/null +++ b/Laravel/resources/views/vendor/mail/markdown/footer.blade.php @@ -0,0 +1 @@ +{{ $slot }} diff --git a/Laravel/resources/views/vendor/mail/markdown/header.blade.php b/Laravel/resources/views/vendor/mail/markdown/header.blade.php new file mode 100644 index 0000000..aaa3e57 --- /dev/null +++ b/Laravel/resources/views/vendor/mail/markdown/header.blade.php @@ -0,0 +1 @@ +[{{ $slot }}]({{ $url }}) diff --git a/Laravel/resources/views/vendor/mail/markdown/layout.blade.php b/Laravel/resources/views/vendor/mail/markdown/layout.blade.php new file mode 100644 index 0000000..9378baa --- /dev/null +++ b/Laravel/resources/views/vendor/mail/markdown/layout.blade.php @@ -0,0 +1,9 @@ +{!! strip_tags($header) !!} + +{!! strip_tags($slot) !!} +@isset($subcopy) + +{!! strip_tags($subcopy) !!} +@endisset + +{!! strip_tags($footer) !!} diff --git a/Laravel/resources/views/vendor/mail/markdown/message.blade.php b/Laravel/resources/views/vendor/mail/markdown/message.blade.php new file mode 100644 index 0000000..b409c71 --- /dev/null +++ b/Laravel/resources/views/vendor/mail/markdown/message.blade.php @@ -0,0 +1,27 @@ +@component('mail::layout') + {{-- Header --}} + @slot('header') + @component('mail::header', ['url' => config('app.url')]) + {{ config('app.name') }} + @endcomponent + @endslot + + {{-- Body --}} + {{ $slot }} + + {{-- Subcopy --}} + @isset($subcopy) + @slot('subcopy') + @component('mail::subcopy') + {{ $subcopy }} + @endcomponent + @endslot + @endisset + + {{-- Footer --}} + @slot('footer') + @component('mail::footer') + © {{ date('Y') }} {{ config('app.name') }}. All rights reserved. + @endcomponent + @endslot +@endcomponent diff --git a/Laravel/resources/views/vendor/mail/markdown/panel.blade.php b/Laravel/resources/views/vendor/mail/markdown/panel.blade.php new file mode 100644 index 0000000..3338f62 --- /dev/null +++ b/Laravel/resources/views/vendor/mail/markdown/panel.blade.php @@ -0,0 +1 @@ +{{ $slot }} diff --git a/Laravel/resources/views/vendor/mail/markdown/promotion.blade.php b/Laravel/resources/views/vendor/mail/markdown/promotion.blade.php new file mode 100644 index 0000000..3338f62 --- /dev/null +++ b/Laravel/resources/views/vendor/mail/markdown/promotion.blade.php @@ -0,0 +1 @@ +{{ $slot }} diff --git a/Laravel/resources/views/vendor/mail/markdown/promotion/button.blade.php b/Laravel/resources/views/vendor/mail/markdown/promotion/button.blade.php new file mode 100644 index 0000000..aaa3e57 --- /dev/null +++ b/Laravel/resources/views/vendor/mail/markdown/promotion/button.blade.php @@ -0,0 +1 @@ +[{{ $slot }}]({{ $url }}) diff --git a/Laravel/resources/views/vendor/mail/markdown/subcopy.blade.php b/Laravel/resources/views/vendor/mail/markdown/subcopy.blade.php new file mode 100644 index 0000000..3338f62 --- /dev/null +++ b/Laravel/resources/views/vendor/mail/markdown/subcopy.blade.php @@ -0,0 +1 @@ +{{ $slot }} diff --git a/Laravel/resources/views/vendor/mail/markdown/table.blade.php b/Laravel/resources/views/vendor/mail/markdown/table.blade.php new file mode 100644 index 0000000..3338f62 --- /dev/null +++ b/Laravel/resources/views/vendor/mail/markdown/table.blade.php @@ -0,0 +1 @@ +{{ $slot }} diff --git a/Laravel/resources/views/vendor/notifications/email.blade.php b/Laravel/resources/views/vendor/notifications/email.blade.php new file mode 100644 index 0000000..abfaa88 --- /dev/null +++ b/Laravel/resources/views/vendor/notifications/email.blade.php @@ -0,0 +1,58 @@ +@component('mail::message') +{{-- Greeting --}} +@if (! empty($greeting)) +# {{ $greeting }} +@else +@if ($level == 'error') +# Whoops! +@else +# Hello! +@endif +@endif + +{{-- Intro Lines --}} +@foreach ($introLines as $line) +{{ $line }} + +@endforeach + +{{-- Action Button --}} +@isset($actionText) + +@component('mail::button', ['url' => $actionUrl, 'color' => $color]) +{{ $actionText }} +@endcomponent +@endisset + +{{-- Outro Lines --}} +@foreach ($outroLines as $line) +{{ $line }} + +@endforeach + +{{-- Salutation --}} +@if (! empty($salutation)) +{{ $salutation }} +@else +Regards,
{{ config('app.name') }} +@endif + +{{-- Subcopy --}} +@isset($actionText) +@component('mail::subcopy') +If you’re having trouble clicking the "{{ $actionText }}" button, copy and paste the URL below +into your web browser: [{{ $actionUrl }}]({{ $actionUrl }}) +@endcomponent +@endisset +@endcomponent diff --git a/Laravel/resources/views/vendor/pagination/bootstrap-4.blade.php b/Laravel/resources/views/vendor/pagination/bootstrap-4.blade.php new file mode 100644 index 0000000..3f98455 --- /dev/null +++ b/Laravel/resources/views/vendor/pagination/bootstrap-4.blade.php @@ -0,0 +1,36 @@ +@if ($paginator->hasPages()) + +@endif diff --git a/Laravel/resources/views/vendor/pagination/default.blade.php b/Laravel/resources/views/vendor/pagination/default.blade.php new file mode 100644 index 0000000..4e795ff --- /dev/null +++ b/Laravel/resources/views/vendor/pagination/default.blade.php @@ -0,0 +1,36 @@ +@if ($paginator->hasPages()) + +@endif diff --git a/Laravel/resources/views/vendor/pagination/semantic-ui.blade.php b/Laravel/resources/views/vendor/pagination/semantic-ui.blade.php new file mode 100644 index 0000000..c6e0d21 --- /dev/null +++ b/Laravel/resources/views/vendor/pagination/semantic-ui.blade.php @@ -0,0 +1,36 @@ +@if ($paginator->hasPages()) + +@endif diff --git a/Laravel/resources/views/vendor/pagination/simple-bootstrap-4.blade.php b/Laravel/resources/views/vendor/pagination/simple-bootstrap-4.blade.php new file mode 100644 index 0000000..a9a18d3 --- /dev/null +++ b/Laravel/resources/views/vendor/pagination/simple-bootstrap-4.blade.php @@ -0,0 +1,17 @@ +@if ($paginator->hasPages()) + +@endif diff --git a/Laravel/resources/views/vendor/pagination/simple-default.blade.php b/Laravel/resources/views/vendor/pagination/simple-default.blade.php new file mode 100644 index 0000000..1801609 --- /dev/null +++ b/Laravel/resources/views/vendor/pagination/simple-default.blade.php @@ -0,0 +1,17 @@ +@if ($paginator->hasPages()) + +@endif diff --git a/Laravel/vendor/composer/autoload_classmap.php b/Laravel/vendor/composer/autoload_classmap.php index 6ef4d1d..1b7a9ff 100644 --- a/Laravel/vendor/composer/autoload_classmap.php +++ b/Laravel/vendor/composer/autoload_classmap.php @@ -6,7 +6,584 @@ $vendorDir = dirname(dirname(__FILE__)); $baseDir = dirname($vendorDir); return array( + 'App\\Console\\Kernel' => $baseDir . '/app/Console/Kernel.php', + 'App\\Exceptions\\Handler' => $baseDir . '/app/Exceptions/Handler.php', + 'App\\Http\\Controllers\\Auth\\ForgotPasswordController' => $baseDir . '/app/Http/Controllers/Auth/ForgotPasswordController.php', + 'App\\Http\\Controllers\\Auth\\LoginController' => $baseDir . '/app/Http/Controllers/Auth/LoginController.php', + 'App\\Http\\Controllers\\Auth\\RegisterController' => $baseDir . '/app/Http/Controllers/Auth/RegisterController.php', + 'App\\Http\\Controllers\\Auth\\ResetPasswordController' => $baseDir . '/app/Http/Controllers/Auth/ResetPasswordController.php', + 'App\\Http\\Controllers\\Controller' => $baseDir . '/app/Http/Controllers/Controller.php', + 'App\\Http\\Controllers\\PagesController' => $baseDir . '/app/Http/Controllers/PagesController.php', + 'App\\Http\\Kernel' => $baseDir . '/app/Http/Kernel.php', + 'App\\Http\\Middleware\\EncryptCookies' => $baseDir . '/app/Http/Middleware/EncryptCookies.php', + 'App\\Http\\Middleware\\RedirectIfAuthenticated' => $baseDir . '/app/Http/Middleware/RedirectIfAuthenticated.php', + 'App\\Http\\Middleware\\TrimStrings' => $baseDir . '/app/Http/Middleware/TrimStrings.php', + 'App\\Http\\Middleware\\TrustProxies' => $baseDir . '/app/Http/Middleware/TrustProxies.php', + 'App\\Http\\Middleware\\VerifyCsrfToken' => $baseDir . '/app/Http/Middleware/VerifyCsrfToken.php', + 'App\\Providers\\AppServiceProvider' => $baseDir . '/app/Providers/AppServiceProvider.php', + 'App\\Providers\\AuthServiceProvider' => $baseDir . '/app/Providers/AuthServiceProvider.php', + 'App\\Providers\\BroadcastServiceProvider' => $baseDir . '/app/Providers/BroadcastServiceProvider.php', + 'App\\Providers\\EventServiceProvider' => $baseDir . '/app/Providers/EventServiceProvider.php', + 'App\\Providers\\RouteServiceProvider' => $baseDir . '/app/Providers/RouteServiceProvider.php', + 'App\\User' => $baseDir . '/app/User.php', + 'Carbon\\Carbon' => $vendorDir . '/nesbot/carbon/src/Carbon/Carbon.php', + 'Carbon\\CarbonInterval' => $vendorDir . '/nesbot/carbon/src/Carbon/CarbonInterval.php', + 'Carbon\\Exceptions\\InvalidDateException' => $vendorDir . '/nesbot/carbon/src/Carbon/Exceptions/InvalidDateException.php', + 'ConsoleTVs\\Charts\\Builder' => $vendorDir . '/consoletvs/charts/src/Builder.php', + 'ConsoleTVs\\Charts\\Builder\\Chart' => $vendorDir . '/consoletvs/charts/src/Builder/Chart.php', + 'ConsoleTVs\\Charts\\Builder\\Database' => $vendorDir . '/consoletvs/charts/src/Builder/Database.php', + 'ConsoleTVs\\Charts\\Builder\\Math' => $vendorDir . '/consoletvs/charts/src/Builder/Math.php', + 'ConsoleTVs\\Charts\\Builder\\Multi' => $vendorDir . '/consoletvs/charts/src/Builder/Multi.php', + 'ConsoleTVs\\Charts\\Builder\\MultiDatabase' => $vendorDir . '/consoletvs/charts/src/Builder/MultiDatabase.php', + 'ConsoleTVs\\Charts\\Builder\\Realtime' => $vendorDir . '/consoletvs/charts/src/Builder/Realtime.php', + 'ConsoleTVs\\Charts\\ChartsServiceProvider' => $vendorDir . '/consoletvs/charts/src/ChartsServiceProvider.php', + 'ConsoleTVs\\Charts\\Facades\\Charts' => $vendorDir . '/consoletvs/charts/src/Facades/Charts.php', + 'ConsoleTVs\\Charts\\Traits\\Setters' => $vendorDir . '/consoletvs/charts/src/Traits/Setters.php', + 'Cron\\AbstractField' => $vendorDir . '/mtdowling/cron-expression/src/Cron/AbstractField.php', + 'Cron\\CronExpression' => $vendorDir . '/mtdowling/cron-expression/src/Cron/CronExpression.php', + 'Cron\\DayOfMonthField' => $vendorDir . '/mtdowling/cron-expression/src/Cron/DayOfMonthField.php', + 'Cron\\DayOfWeekField' => $vendorDir . '/mtdowling/cron-expression/src/Cron/DayOfWeekField.php', + 'Cron\\FieldFactory' => $vendorDir . '/mtdowling/cron-expression/src/Cron/FieldFactory.php', + 'Cron\\FieldInterface' => $vendorDir . '/mtdowling/cron-expression/src/Cron/FieldInterface.php', + 'Cron\\HoursField' => $vendorDir . '/mtdowling/cron-expression/src/Cron/HoursField.php', + 'Cron\\MinutesField' => $vendorDir . '/mtdowling/cron-expression/src/Cron/MinutesField.php', + 'Cron\\MonthField' => $vendorDir . '/mtdowling/cron-expression/src/Cron/MonthField.php', + 'Cron\\YearField' => $vendorDir . '/mtdowling/cron-expression/src/Cron/YearField.php', 'DatabaseSeeder' => $baseDir . '/database/seeds/DatabaseSeeder.php', + 'DeepCopy\\DeepCopy' => $vendorDir . '/myclabs/deep-copy/src/DeepCopy/DeepCopy.php', + 'DeepCopy\\Exception\\CloneException' => $vendorDir . '/myclabs/deep-copy/src/DeepCopy/Exception/CloneException.php', + 'DeepCopy\\Filter\\Doctrine\\DoctrineCollectionFilter' => $vendorDir . '/myclabs/deep-copy/src/DeepCopy/Filter/Doctrine/DoctrineCollectionFilter.php', + 'DeepCopy\\Filter\\Doctrine\\DoctrineEmptyCollectionFilter' => $vendorDir . '/myclabs/deep-copy/src/DeepCopy/Filter/Doctrine/DoctrineEmptyCollectionFilter.php', + 'DeepCopy\\Filter\\Doctrine\\DoctrineProxyFilter' => $vendorDir . '/myclabs/deep-copy/src/DeepCopy/Filter/Doctrine/DoctrineProxyFilter.php', + 'DeepCopy\\Filter\\Filter' => $vendorDir . '/myclabs/deep-copy/src/DeepCopy/Filter/Filter.php', + 'DeepCopy\\Filter\\KeepFilter' => $vendorDir . '/myclabs/deep-copy/src/DeepCopy/Filter/KeepFilter.php', + 'DeepCopy\\Filter\\ReplaceFilter' => $vendorDir . '/myclabs/deep-copy/src/DeepCopy/Filter/ReplaceFilter.php', + 'DeepCopy\\Filter\\SetNullFilter' => $vendorDir . '/myclabs/deep-copy/src/DeepCopy/Filter/SetNullFilter.php', + 'DeepCopy\\Matcher\\Doctrine\\DoctrineProxyMatcher' => $vendorDir . '/myclabs/deep-copy/src/DeepCopy/Matcher/Doctrine/DoctrineProxyMatcher.php', + 'DeepCopy\\Matcher\\Matcher' => $vendorDir . '/myclabs/deep-copy/src/DeepCopy/Matcher/Matcher.php', + 'DeepCopy\\Matcher\\PropertyMatcher' => $vendorDir . '/myclabs/deep-copy/src/DeepCopy/Matcher/PropertyMatcher.php', + 'DeepCopy\\Matcher\\PropertyNameMatcher' => $vendorDir . '/myclabs/deep-copy/src/DeepCopy/Matcher/PropertyNameMatcher.php', + 'DeepCopy\\Matcher\\PropertyTypeMatcher' => $vendorDir . '/myclabs/deep-copy/src/DeepCopy/Matcher/PropertyTypeMatcher.php', + 'DeepCopy\\Reflection\\ReflectionHelper' => $vendorDir . '/myclabs/deep-copy/src/DeepCopy/Reflection/ReflectionHelper.php', + 'DeepCopy\\TypeFilter\\ReplaceFilter' => $vendorDir . '/myclabs/deep-copy/src/DeepCopy/TypeFilter/ReplaceFilter.php', + 'DeepCopy\\TypeFilter\\ShallowCopyFilter' => $vendorDir . '/myclabs/deep-copy/src/DeepCopy/TypeFilter/ShallowCopyFilter.php', + 'DeepCopy\\TypeFilter\\Spl\\SplDoublyLinkedList' => $vendorDir . '/myclabs/deep-copy/src/DeepCopy/TypeFilter/Spl/SplDoublyLinkedList.php', + 'DeepCopy\\TypeFilter\\TypeFilter' => $vendorDir . '/myclabs/deep-copy/src/DeepCopy/TypeFilter/TypeFilter.php', + 'DeepCopy\\TypeMatcher\\TypeMatcher' => $vendorDir . '/myclabs/deep-copy/src/DeepCopy/TypeMatcher/TypeMatcher.php', + 'Doctrine\\Common\\Inflector\\Inflector' => $vendorDir . '/doctrine/inflector/lib/Doctrine/Common/Inflector/Inflector.php', + 'Doctrine\\Common\\Lexer\\AbstractLexer' => $vendorDir . '/doctrine/lexer/lib/Doctrine/Common/Lexer/AbstractLexer.php', + 'Doctrine\\Instantiator\\Exception\\ExceptionInterface' => $vendorDir . '/doctrine/instantiator/src/Doctrine/Instantiator/Exception/ExceptionInterface.php', + 'Doctrine\\Instantiator\\Exception\\InvalidArgumentException' => $vendorDir . '/doctrine/instantiator/src/Doctrine/Instantiator/Exception/InvalidArgumentException.php', + 'Doctrine\\Instantiator\\Exception\\UnexpectedValueException' => $vendorDir . '/doctrine/instantiator/src/Doctrine/Instantiator/Exception/UnexpectedValueException.php', + 'Doctrine\\Instantiator\\Instantiator' => $vendorDir . '/doctrine/instantiator/src/Doctrine/Instantiator/Instantiator.php', + 'Doctrine\\Instantiator\\InstantiatorInterface' => $vendorDir . '/doctrine/instantiator/src/Doctrine/Instantiator/InstantiatorInterface.php', + 'Dotenv\\Dotenv' => $vendorDir . '/vlucas/phpdotenv/src/Dotenv.php', + 'Dotenv\\Exception\\ExceptionInterface' => $vendorDir . '/vlucas/phpdotenv/src/Exception/ExceptionInterface.php', + 'Dotenv\\Exception\\InvalidCallbackException' => $vendorDir . '/vlucas/phpdotenv/src/Exception/InvalidCallbackException.php', + 'Dotenv\\Exception\\InvalidFileException' => $vendorDir . '/vlucas/phpdotenv/src/Exception/InvalidFileException.php', + 'Dotenv\\Exception\\InvalidPathException' => $vendorDir . '/vlucas/phpdotenv/src/Exception/InvalidPathException.php', + 'Dotenv\\Exception\\ValidationException' => $vendorDir . '/vlucas/phpdotenv/src/Exception/ValidationException.php', + 'Dotenv\\Loader' => $vendorDir . '/vlucas/phpdotenv/src/Loader.php', + 'Dotenv\\Validator' => $vendorDir . '/vlucas/phpdotenv/src/Validator.php', + 'Egulias\\EmailValidator\\EmailLexer' => $vendorDir . '/egulias/email-validator/EmailValidator/EmailLexer.php', + 'Egulias\\EmailValidator\\EmailParser' => $vendorDir . '/egulias/email-validator/EmailValidator/EmailParser.php', + 'Egulias\\EmailValidator\\EmailValidator' => $vendorDir . '/egulias/email-validator/EmailValidator/EmailValidator.php', + 'Egulias\\EmailValidator\\Exception\\AtextAfterCFWS' => $vendorDir . '/egulias/email-validator/EmailValidator/Exception/AtextAfterCFWS.php', + 'Egulias\\EmailValidator\\Exception\\CRLFAtTheEnd' => $vendorDir . '/egulias/email-validator/EmailValidator/Exception/CRLFAtTheEnd.php', + 'Egulias\\EmailValidator\\Exception\\CRLFX2' => $vendorDir . '/egulias/email-validator/EmailValidator/Exception/CRLFX2.php', + 'Egulias\\EmailValidator\\Exception\\CRNoLF' => $vendorDir . '/egulias/email-validator/EmailValidator/Exception/CRNoLF.php', + 'Egulias\\EmailValidator\\Exception\\CharNotAllowed' => $vendorDir . '/egulias/email-validator/EmailValidator/Exception/CharNotAllowed.php', + 'Egulias\\EmailValidator\\Exception\\CommaInDomain' => $vendorDir . '/egulias/email-validator/EmailValidator/Exception/CommaInDomain.php', + 'Egulias\\EmailValidator\\Exception\\ConsecutiveAt' => $vendorDir . '/egulias/email-validator/EmailValidator/Exception/ConsecutiveAt.php', + 'Egulias\\EmailValidator\\Exception\\ConsecutiveDot' => $vendorDir . '/egulias/email-validator/EmailValidator/Exception/ConsecutiveDot.php', + 'Egulias\\EmailValidator\\Exception\\DomainHyphened' => $vendorDir . '/egulias/email-validator/EmailValidator/Exception/DomainHyphened.php', + 'Egulias\\EmailValidator\\Exception\\DotAtEnd' => $vendorDir . '/egulias/email-validator/EmailValidator/Exception/DotAtEnd.php', + 'Egulias\\EmailValidator\\Exception\\DotAtStart' => $vendorDir . '/egulias/email-validator/EmailValidator/Exception/DotAtStart.php', + 'Egulias\\EmailValidator\\Exception\\ExpectedQPair' => $vendorDir . '/egulias/email-validator/EmailValidator/Exception/ExpectingQPair.php', + 'Egulias\\EmailValidator\\Exception\\ExpectingAT' => $vendorDir . '/egulias/email-validator/EmailValidator/Exception/ExpectingAT.php', + 'Egulias\\EmailValidator\\Exception\\ExpectingATEXT' => $vendorDir . '/egulias/email-validator/EmailValidator/Exception/ExpectingATEXT.php', + 'Egulias\\EmailValidator\\Exception\\ExpectingCTEXT' => $vendorDir . '/egulias/email-validator/EmailValidator/Exception/ExpectingCTEXT.php', + 'Egulias\\EmailValidator\\Exception\\ExpectingDTEXT' => $vendorDir . '/egulias/email-validator/EmailValidator/Exception/ExpectingDTEXT.php', + 'Egulias\\EmailValidator\\Exception\\ExpectingDomainLiteralClose' => $vendorDir . '/egulias/email-validator/EmailValidator/Exception/ExpectingDomainLiteralClose.php', + 'Egulias\\EmailValidator\\Exception\\InvalidEmail' => $vendorDir . '/egulias/email-validator/EmailValidator/Exception/InvalidEmail.php', + 'Egulias\\EmailValidator\\Exception\\NoDNSRecord' => $vendorDir . '/egulias/email-validator/EmailValidator/Exception/NoDNSRecord.php', + 'Egulias\\EmailValidator\\Exception\\NoDomainPart' => $vendorDir . '/egulias/email-validator/EmailValidator/Exception/NoDomainPart.php', + 'Egulias\\EmailValidator\\Exception\\NoLocalPart' => $vendorDir . '/egulias/email-validator/EmailValidator/Exception/NoLocalPart.php', + 'Egulias\\EmailValidator\\Exception\\UnclosedComment' => $vendorDir . '/egulias/email-validator/EmailValidator/Exception/UnclosedComment.php', + 'Egulias\\EmailValidator\\Exception\\UnclosedQuotedString' => $vendorDir . '/egulias/email-validator/EmailValidator/Exception/UnclosedQuotedString.php', + 'Egulias\\EmailValidator\\Exception\\UnopenedComment' => $vendorDir . '/egulias/email-validator/EmailValidator/Exception/UnopenedComment.php', + 'Egulias\\EmailValidator\\Parser\\DomainPart' => $vendorDir . '/egulias/email-validator/EmailValidator/Parser/DomainPart.php', + 'Egulias\\EmailValidator\\Parser\\LocalPart' => $vendorDir . '/egulias/email-validator/EmailValidator/Parser/LocalPart.php', + 'Egulias\\EmailValidator\\Parser\\Parser' => $vendorDir . '/egulias/email-validator/EmailValidator/Parser/Parser.php', + 'Egulias\\EmailValidator\\Validation\\DNSCheckValidation' => $vendorDir . '/egulias/email-validator/EmailValidator/Validation/DNSCheckValidation.php', + 'Egulias\\EmailValidator\\Validation\\EmailValidation' => $vendorDir . '/egulias/email-validator/EmailValidator/Validation/EmailValidation.php', + 'Egulias\\EmailValidator\\Validation\\Error\\RFCWarnings' => $vendorDir . '/egulias/email-validator/EmailValidator/Validation/Error/RFCWarnings.php', + 'Egulias\\EmailValidator\\Validation\\Error\\SpoofEmail' => $vendorDir . '/egulias/email-validator/EmailValidator/Validation/Error/SpoofEmail.php', + 'Egulias\\EmailValidator\\Validation\\Exception\\EmptyValidationList' => $vendorDir . '/egulias/email-validator/EmailValidator/Validation/Exception/EmptyValidationList.php', + 'Egulias\\EmailValidator\\Validation\\MultipleErrors' => $vendorDir . '/egulias/email-validator/EmailValidator/Validation/MultipleErrors.php', + 'Egulias\\EmailValidator\\Validation\\MultipleValidationWithAnd' => $vendorDir . '/egulias/email-validator/EmailValidator/Validation/MultipleValidationWithAnd.php', + 'Egulias\\EmailValidator\\Validation\\NoRFCWarningsValidation' => $vendorDir . '/egulias/email-validator/EmailValidator/Validation/NoRFCWarningsValidation.php', + 'Egulias\\EmailValidator\\Validation\\RFCValidation' => $vendorDir . '/egulias/email-validator/EmailValidator/Validation/RFCValidation.php', + 'Egulias\\EmailValidator\\Validation\\SpoofCheckValidation' => $vendorDir . '/egulias/email-validator/EmailValidator/Validation/SpoofCheckValidation.php', + 'Egulias\\EmailValidator\\Warning\\AddressLiteral' => $vendorDir . '/egulias/email-validator/EmailValidator/Warning/AddressLiteral.php', + 'Egulias\\EmailValidator\\Warning\\CFWSNearAt' => $vendorDir . '/egulias/email-validator/EmailValidator/Warning/CFWSNearAt.php', + 'Egulias\\EmailValidator\\Warning\\CFWSWithFWS' => $vendorDir . '/egulias/email-validator/EmailValidator/Warning/CFWSWithFWS.php', + 'Egulias\\EmailValidator\\Warning\\Comment' => $vendorDir . '/egulias/email-validator/EmailValidator/Warning/Comment.php', + 'Egulias\\EmailValidator\\Warning\\DeprecatedComment' => $vendorDir . '/egulias/email-validator/EmailValidator/Warning/DeprecatedComment.php', + 'Egulias\\EmailValidator\\Warning\\DomainLiteral' => $vendorDir . '/egulias/email-validator/EmailValidator/Warning/DomainLiteral.php', + 'Egulias\\EmailValidator\\Warning\\DomainTooLong' => $vendorDir . '/egulias/email-validator/EmailValidator/Warning/DomainTooLong.php', + 'Egulias\\EmailValidator\\Warning\\EmailTooLong' => $vendorDir . '/egulias/email-validator/EmailValidator/Warning/EmailTooLong.php', + 'Egulias\\EmailValidator\\Warning\\IPV6BadChar' => $vendorDir . '/egulias/email-validator/EmailValidator/Warning/IPV6BadChar.php', + 'Egulias\\EmailValidator\\Warning\\IPV6ColonEnd' => $vendorDir . '/egulias/email-validator/EmailValidator/Warning/IPV6ColonEnd.php', + 'Egulias\\EmailValidator\\Warning\\IPV6ColonStart' => $vendorDir . '/egulias/email-validator/EmailValidator/Warning/IPV6ColonStart.php', + 'Egulias\\EmailValidator\\Warning\\IPV6Deprecated' => $vendorDir . '/egulias/email-validator/EmailValidator/Warning/IPV6Deprecated.php', + 'Egulias\\EmailValidator\\Warning\\IPV6DoubleColon' => $vendorDir . '/egulias/email-validator/EmailValidator/Warning/IPV6DoubleColon.php', + 'Egulias\\EmailValidator\\Warning\\IPV6GroupCount' => $vendorDir . '/egulias/email-validator/EmailValidator/Warning/IPV6GroupCount.php', + 'Egulias\\EmailValidator\\Warning\\IPV6MaxGroups' => $vendorDir . '/egulias/email-validator/EmailValidator/Warning/IPV6MaxGroups.php', + 'Egulias\\EmailValidator\\Warning\\LabelTooLong' => $vendorDir . '/egulias/email-validator/EmailValidator/Warning/LabelTooLong.php', + 'Egulias\\EmailValidator\\Warning\\LocalTooLong' => $vendorDir . '/egulias/email-validator/EmailValidator/Warning/LocalTooLong.php', + 'Egulias\\EmailValidator\\Warning\\NoDNSMXRecord' => $vendorDir . '/egulias/email-validator/EmailValidator/Warning/NoDNSMXRecord.php', + 'Egulias\\EmailValidator\\Warning\\ObsoleteDTEXT' => $vendorDir . '/egulias/email-validator/EmailValidator/Warning/ObsoleteDTEXT.php', + 'Egulias\\EmailValidator\\Warning\\QuotedPart' => $vendorDir . '/egulias/email-validator/EmailValidator/Warning/QuotedPart.php', + 'Egulias\\EmailValidator\\Warning\\QuotedString' => $vendorDir . '/egulias/email-validator/EmailValidator/Warning/QuotedString.php', + 'Egulias\\EmailValidator\\Warning\\TLD' => $vendorDir . '/egulias/email-validator/EmailValidator/Warning/TLD.php', + 'Egulias\\EmailValidator\\Warning\\Warning' => $vendorDir . '/egulias/email-validator/EmailValidator/Warning/Warning.php', + 'Faker\\Calculator\\Iban' => $vendorDir . '/fzaninotto/faker/src/Faker/Calculator/Iban.php', + 'Faker\\Calculator\\Inn' => $vendorDir . '/fzaninotto/faker/src/Faker/Calculator/Inn.php', + 'Faker\\Calculator\\Luhn' => $vendorDir . '/fzaninotto/faker/src/Faker/Calculator/Luhn.php', + 'Faker\\DefaultGenerator' => $vendorDir . '/fzaninotto/faker/src/Faker/DefaultGenerator.php', + 'Faker\\Documentor' => $vendorDir . '/fzaninotto/faker/src/Faker/Documentor.php', + 'Faker\\Factory' => $vendorDir . '/fzaninotto/faker/src/Faker/Factory.php', + 'Faker\\Generator' => $vendorDir . '/fzaninotto/faker/src/Faker/Generator.php', + 'Faker\\Guesser\\Name' => $vendorDir . '/fzaninotto/faker/src/Faker/Guesser/Name.php', + 'Faker\\ORM\\CakePHP\\ColumnTypeGuesser' => $vendorDir . '/fzaninotto/faker/src/Faker/ORM/CakePHP/ColumnTypeGuesser.php', + 'Faker\\ORM\\CakePHP\\EntityPopulator' => $vendorDir . '/fzaninotto/faker/src/Faker/ORM/CakePHP/EntityPopulator.php', + 'Faker\\ORM\\CakePHP\\Populator' => $vendorDir . '/fzaninotto/faker/src/Faker/ORM/CakePHP/Populator.php', + 'Faker\\ORM\\Doctrine\\ColumnTypeGuesser' => $vendorDir . '/fzaninotto/faker/src/Faker/ORM/Doctrine/ColumnTypeGuesser.php', + 'Faker\\ORM\\Doctrine\\EntityPopulator' => $vendorDir . '/fzaninotto/faker/src/Faker/ORM/Doctrine/EntityPopulator.php', + 'Faker\\ORM\\Doctrine\\Populator' => $vendorDir . '/fzaninotto/faker/src/Faker/ORM/Doctrine/Populator.php', + 'Faker\\ORM\\Mandango\\ColumnTypeGuesser' => $vendorDir . '/fzaninotto/faker/src/Faker/ORM/Mandango/ColumnTypeGuesser.php', + 'Faker\\ORM\\Mandango\\EntityPopulator' => $vendorDir . '/fzaninotto/faker/src/Faker/ORM/Mandango/EntityPopulator.php', + 'Faker\\ORM\\Mandango\\Populator' => $vendorDir . '/fzaninotto/faker/src/Faker/ORM/Mandango/Populator.php', + 'Faker\\ORM\\Propel2\\ColumnTypeGuesser' => $vendorDir . '/fzaninotto/faker/src/Faker/ORM/Propel2/ColumnTypeGuesser.php', + 'Faker\\ORM\\Propel2\\EntityPopulator' => $vendorDir . '/fzaninotto/faker/src/Faker/ORM/Propel2/EntityPopulator.php', + 'Faker\\ORM\\Propel2\\Populator' => $vendorDir . '/fzaninotto/faker/src/Faker/ORM/Propel2/Populator.php', + 'Faker\\ORM\\Propel\\ColumnTypeGuesser' => $vendorDir . '/fzaninotto/faker/src/Faker/ORM/Propel/ColumnTypeGuesser.php', + 'Faker\\ORM\\Propel\\EntityPopulator' => $vendorDir . '/fzaninotto/faker/src/Faker/ORM/Propel/EntityPopulator.php', + 'Faker\\ORM\\Propel\\Populator' => $vendorDir . '/fzaninotto/faker/src/Faker/ORM/Propel/Populator.php', + 'Faker\\ORM\\Spot\\ColumnTypeGuesser' => $vendorDir . '/fzaninotto/faker/src/Faker/ORM/Spot/ColumnTypeGuesser.php', + 'Faker\\ORM\\Spot\\EntityPopulator' => $vendorDir . '/fzaninotto/faker/src/Faker/ORM/Spot/EntityPopulator.php', + 'Faker\\ORM\\Spot\\Populator' => $vendorDir . '/fzaninotto/faker/src/Faker/ORM/Spot/Populator.php', + 'Faker\\Provider\\Address' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/Address.php', + 'Faker\\Provider\\Barcode' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/Barcode.php', + 'Faker\\Provider\\Base' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/Base.php', + 'Faker\\Provider\\Biased' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/Biased.php', + 'Faker\\Provider\\Color' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/Color.php', + 'Faker\\Provider\\Company' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/Company.php', + 'Faker\\Provider\\DateTime' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/DateTime.php', + 'Faker\\Provider\\File' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/File.php', + 'Faker\\Provider\\HtmlLorem' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/HtmlLorem.php', + 'Faker\\Provider\\Image' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/Image.php', + 'Faker\\Provider\\Internet' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/Internet.php', + 'Faker\\Provider\\Lorem' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/Lorem.php', + 'Faker\\Provider\\Miscellaneous' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/Miscellaneous.php', + 'Faker\\Provider\\Payment' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/Payment.php', + 'Faker\\Provider\\Person' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/Person.php', + 'Faker\\Provider\\PhoneNumber' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/PhoneNumber.php', + 'Faker\\Provider\\Text' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/Text.php', + 'Faker\\Provider\\UserAgent' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/UserAgent.php', + 'Faker\\Provider\\Uuid' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/Uuid.php', + 'Faker\\Provider\\ar_JO\\Address' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/ar_JO/Address.php', + 'Faker\\Provider\\ar_JO\\Company' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/ar_JO/Company.php', + 'Faker\\Provider\\ar_JO\\Internet' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/ar_JO/Internet.php', + 'Faker\\Provider\\ar_JO\\Person' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/ar_JO/Person.php', + 'Faker\\Provider\\ar_JO\\Text' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/ar_JO/Text.php', + 'Faker\\Provider\\ar_SA\\Address' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/ar_SA/Address.php', + 'Faker\\Provider\\ar_SA\\Color' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/ar_SA/Color.php', + 'Faker\\Provider\\ar_SA\\Company' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/ar_SA/Company.php', + 'Faker\\Provider\\ar_SA\\Internet' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/ar_SA/Internet.php', + 'Faker\\Provider\\ar_SA\\Payment' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/ar_SA/Payment.php', + 'Faker\\Provider\\ar_SA\\Person' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/ar_SA/Person.php', + 'Faker\\Provider\\ar_SA\\Text' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/ar_SA/Text.php', + 'Faker\\Provider\\at_AT\\Payment' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/at_AT/Payment.php', + 'Faker\\Provider\\bg_BG\\Internet' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/bg_BG/Internet.php', + 'Faker\\Provider\\bg_BG\\Payment' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/bg_BG/Payment.php', + 'Faker\\Provider\\bg_BG\\Person' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/bg_BG/Person.php', + 'Faker\\Provider\\bg_BG\\PhoneNumber' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/bg_BG/PhoneNumber.php', + 'Faker\\Provider\\bn_BD\\Address' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/bn_BD/Address.php', + 'Faker\\Provider\\bn_BD\\Company' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/bn_BD/Company.php', + 'Faker\\Provider\\bn_BD\\Person' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/bn_BD/Person.php', + 'Faker\\Provider\\bn_BD\\PhoneNumber' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/bn_BD/PhoneNumber.php', + 'Faker\\Provider\\bn_BD\\Utils' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/bn_BD/Utils.php', + 'Faker\\Provider\\cs_CZ\\Address' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/cs_CZ/Address.php', + 'Faker\\Provider\\cs_CZ\\Company' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/cs_CZ/Company.php', + 'Faker\\Provider\\cs_CZ\\DateTime' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/cs_CZ/DateTime.php', + 'Faker\\Provider\\cs_CZ\\Internet' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/cs_CZ/Internet.php', + 'Faker\\Provider\\cs_CZ\\Payment' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/cs_CZ/Payment.php', + 'Faker\\Provider\\cs_CZ\\Person' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/cs_CZ/Person.php', + 'Faker\\Provider\\cs_CZ\\PhoneNumber' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/cs_CZ/PhoneNumber.php', + 'Faker\\Provider\\cs_CZ\\Text' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/cs_CZ/Text.php', + 'Faker\\Provider\\da_DK\\Address' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/da_DK/Address.php', + 'Faker\\Provider\\da_DK\\Company' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/da_DK/Company.php', + 'Faker\\Provider\\da_DK\\Internet' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/da_DK/Internet.php', + 'Faker\\Provider\\da_DK\\Payment' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/da_DK/Payment.php', + 'Faker\\Provider\\da_DK\\Person' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/da_DK/Person.php', + 'Faker\\Provider\\da_DK\\PhoneNumber' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/da_DK/PhoneNumber.php', + 'Faker\\Provider\\de_AT\\Address' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/de_AT/Address.php', + 'Faker\\Provider\\de_AT\\Company' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/de_AT/Company.php', + 'Faker\\Provider\\de_AT\\Internet' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/de_AT/Internet.php', + 'Faker\\Provider\\de_AT\\Payment' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/de_AT/Payment.php', + 'Faker\\Provider\\de_AT\\Person' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/de_AT/Person.php', + 'Faker\\Provider\\de_AT\\PhoneNumber' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/de_AT/PhoneNumber.php', + 'Faker\\Provider\\de_AT\\Text' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/de_AT/Text.php', + 'Faker\\Provider\\de_CH\\Address' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/de_CH/Address.php', + 'Faker\\Provider\\de_CH\\Company' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/de_CH/Company.php', + 'Faker\\Provider\\de_CH\\Internet' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/de_CH/Internet.php', + 'Faker\\Provider\\de_CH\\Payment' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/de_CH/Payment.php', + 'Faker\\Provider\\de_CH\\Person' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/de_CH/Person.php', + 'Faker\\Provider\\de_CH\\PhoneNumber' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/de_CH/PhoneNumber.php', + 'Faker\\Provider\\de_CH\\Text' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/de_CH/Text.php', + 'Faker\\Provider\\de_DE\\Address' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/de_DE/Address.php', + 'Faker\\Provider\\de_DE\\Company' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/de_DE/Company.php', + 'Faker\\Provider\\de_DE\\Internet' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/de_DE/Internet.php', + 'Faker\\Provider\\de_DE\\Payment' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/de_DE/Payment.php', + 'Faker\\Provider\\de_DE\\Person' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/de_DE/Person.php', + 'Faker\\Provider\\de_DE\\PhoneNumber' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/de_DE/PhoneNumber.php', + 'Faker\\Provider\\de_DE\\Text' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/de_DE/Text.php', + 'Faker\\Provider\\el_CY\\Address' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/el_CY/Address.php', + 'Faker\\Provider\\el_CY\\Company' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/el_CY/Company.php', + 'Faker\\Provider\\el_CY\\Internet' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/el_CY/Internet.php', + 'Faker\\Provider\\el_CY\\Payment' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/el_CY/Payment.php', + 'Faker\\Provider\\el_CY\\Person' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/el_CY/Person.php', + 'Faker\\Provider\\el_CY\\PhoneNumber' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/el_CY/PhoneNumber.php', + 'Faker\\Provider\\el_GR\\Address' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/el_GR/Address.php', + 'Faker\\Provider\\el_GR\\Company' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/el_GR/Company.php', + 'Faker\\Provider\\el_GR\\Payment' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/el_GR/Payment.php', + 'Faker\\Provider\\el_GR\\Person' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/el_GR/Person.php', + 'Faker\\Provider\\el_GR\\PhoneNumber' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/el_GR/PhoneNumber.php', + 'Faker\\Provider\\el_GR\\Text' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/el_GR/Text.php', + 'Faker\\Provider\\en_AU\\Address' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/en_AU/Address.php', + 'Faker\\Provider\\en_AU\\Internet' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/en_AU/Internet.php', + 'Faker\\Provider\\en_AU\\PhoneNumber' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/en_AU/PhoneNumber.php', + 'Faker\\Provider\\en_CA\\Address' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/en_CA/Address.php', + 'Faker\\Provider\\en_CA\\PhoneNumber' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/en_CA/PhoneNumber.php', + 'Faker\\Provider\\en_GB\\Address' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/en_GB/Address.php', + 'Faker\\Provider\\en_GB\\Internet' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/en_GB/Internet.php', + 'Faker\\Provider\\en_GB\\Payment' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/en_GB/Payment.php', + 'Faker\\Provider\\en_GB\\Person' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/en_GB/Person.php', + 'Faker\\Provider\\en_GB\\PhoneNumber' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/en_GB/PhoneNumber.php', + 'Faker\\Provider\\en_HK\\Address' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/en_HK/Address.php', + 'Faker\\Provider\\en_HK\\Internet' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/en_HK/Internet.php', + 'Faker\\Provider\\en_HK\\PhoneNumber' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/en_HK/PhoneNumber.php', + 'Faker\\Provider\\en_IN\\Address' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/en_IN/Address.php', + 'Faker\\Provider\\en_IN\\Internet' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/en_IN/Internet.php', + 'Faker\\Provider\\en_IN\\Person' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/en_IN/Person.php', + 'Faker\\Provider\\en_IN\\PhoneNumber' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/en_IN/PhoneNumber.php', + 'Faker\\Provider\\en_NG\\Address' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/en_NG/Address.php', + 'Faker\\Provider\\en_NG\\Internet' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/en_NG/Internet.php', + 'Faker\\Provider\\en_NG\\Person' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/en_NG/Person.php', + 'Faker\\Provider\\en_NG\\PhoneNumber' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/en_NG/PhoneNumber.php', + 'Faker\\Provider\\en_NZ\\Address' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/en_NZ/Address.php', + 'Faker\\Provider\\en_NZ\\Internet' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/en_NZ/Internet.php', + 'Faker\\Provider\\en_NZ\\PhoneNumber' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/en_NZ/PhoneNumber.php', + 'Faker\\Provider\\en_PH\\Address' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/en_PH/Address.php', + 'Faker\\Provider\\en_PH\\PhoneNumber' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/en_PH/PhoneNumber.php', + 'Faker\\Provider\\en_SG\\Address' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/en_SG/Address.php', + 'Faker\\Provider\\en_SG\\PhoneNumber' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/en_SG/PhoneNumber.php', + 'Faker\\Provider\\en_UG\\Address' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/en_UG/Address.php', + 'Faker\\Provider\\en_UG\\Internet' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/en_UG/Internet.php', + 'Faker\\Provider\\en_UG\\Person' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/en_UG/Person.php', + 'Faker\\Provider\\en_UG\\PhoneNumber' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/en_UG/PhoneNumber.php', + 'Faker\\Provider\\en_US\\Address' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/en_US/Address.php', + 'Faker\\Provider\\en_US\\Company' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/en_US/Company.php', + 'Faker\\Provider\\en_US\\Payment' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/en_US/Payment.php', + 'Faker\\Provider\\en_US\\Person' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/en_US/Person.php', + 'Faker\\Provider\\en_US\\PhoneNumber' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/en_US/PhoneNumber.php', + 'Faker\\Provider\\en_US\\Text' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/en_US/Text.php', + 'Faker\\Provider\\en_ZA\\Address' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/en_ZA/Address.php', + 'Faker\\Provider\\en_ZA\\Company' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/en_ZA/Company.php', + 'Faker\\Provider\\en_ZA\\Internet' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/en_ZA/Internet.php', + 'Faker\\Provider\\en_ZA\\Person' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/en_ZA/Person.php', + 'Faker\\Provider\\en_ZA\\PhoneNumber' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/en_ZA/PhoneNumber.php', + 'Faker\\Provider\\es_AR\\Address' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/es_AR/Address.php', + 'Faker\\Provider\\es_AR\\Company' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/es_AR/Company.php', + 'Faker\\Provider\\es_AR\\Person' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/es_AR/Person.php', + 'Faker\\Provider\\es_AR\\PhoneNumber' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/es_AR/PhoneNumber.php', + 'Faker\\Provider\\es_ES\\Address' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/es_ES/Address.php', + 'Faker\\Provider\\es_ES\\Company' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/es_ES/Company.php', + 'Faker\\Provider\\es_ES\\Internet' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/es_ES/Internet.php', + 'Faker\\Provider\\es_ES\\Payment' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/es_ES/Payment.php', + 'Faker\\Provider\\es_ES\\Person' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/es_ES/Person.php', + 'Faker\\Provider\\es_ES\\PhoneNumber' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/es_ES/PhoneNumber.php', + 'Faker\\Provider\\es_ES\\Text' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/es_ES/Text.php', + 'Faker\\Provider\\es_PE\\Address' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/es_PE/Address.php', + 'Faker\\Provider\\es_PE\\Company' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/es_PE/Company.php', + 'Faker\\Provider\\es_PE\\Person' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/es_PE/Person.php', + 'Faker\\Provider\\es_PE\\PhoneNumber' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/es_PE/PhoneNumber.php', + 'Faker\\Provider\\es_VE\\Address' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/es_VE/Address.php', + 'Faker\\Provider\\es_VE\\Company' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/es_VE/Company.php', + 'Faker\\Provider\\es_VE\\Internet' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/es_VE/Internet.php', + 'Faker\\Provider\\es_VE\\Person' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/es_VE/Person.php', + 'Faker\\Provider\\es_VE\\PhoneNumber' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/es_VE/PhoneNumber.php', + 'Faker\\Provider\\fa_IR\\Address' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/fa_IR/Address.php', + 'Faker\\Provider\\fa_IR\\Company' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/fa_IR/Company.php', + 'Faker\\Provider\\fa_IR\\Internet' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/fa_IR/Internet.php', + 'Faker\\Provider\\fa_IR\\Person' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/fa_IR/Person.php', + 'Faker\\Provider\\fa_IR\\PhoneNumber' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/fa_IR/PhoneNumber.php', + 'Faker\\Provider\\fa_IR\\Text' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/fa_IR/Text.php', + 'Faker\\Provider\\fi_FI\\Address' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/fi_FI/Address.php', + 'Faker\\Provider\\fi_FI\\Company' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/fi_FI/Company.php', + 'Faker\\Provider\\fi_FI\\Internet' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/fi_FI/Internet.php', + 'Faker\\Provider\\fi_FI\\Payment' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/fi_FI/Payment.php', + 'Faker\\Provider\\fi_FI\\Person' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/fi_FI/Person.php', + 'Faker\\Provider\\fi_FI\\PhoneNumber' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/fi_FI/PhoneNumber.php', + 'Faker\\Provider\\fr_BE\\Address' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/fr_BE/Address.php', + 'Faker\\Provider\\fr_BE\\Company' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/fr_BE/Company.php', + 'Faker\\Provider\\fr_BE\\Internet' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/fr_BE/Internet.php', + 'Faker\\Provider\\fr_BE\\Payment' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/fr_BE/Payment.php', + 'Faker\\Provider\\fr_BE\\Person' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/fr_BE/Person.php', + 'Faker\\Provider\\fr_BE\\PhoneNumber' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/fr_BE/PhoneNumber.php', + 'Faker\\Provider\\fr_CA\\Address' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/fr_CA/Address.php', + 'Faker\\Provider\\fr_CA\\Company' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/fr_CA/Company.php', + 'Faker\\Provider\\fr_CA\\Person' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/fr_CA/Person.php', + 'Faker\\Provider\\fr_CH\\Address' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/fr_CH/Address.php', + 'Faker\\Provider\\fr_CH\\Company' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/fr_CH/Company.php', + 'Faker\\Provider\\fr_CH\\Internet' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/fr_CH/Internet.php', + 'Faker\\Provider\\fr_CH\\Payment' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/fr_CH/Payment.php', + 'Faker\\Provider\\fr_CH\\Person' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/fr_CH/Person.php', + 'Faker\\Provider\\fr_CH\\PhoneNumber' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/fr_CH/PhoneNumber.php', + 'Faker\\Provider\\fr_CH\\Text' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/fr_CH/Text.php', + 'Faker\\Provider\\fr_FR\\Address' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/fr_FR/Address.php', + 'Faker\\Provider\\fr_FR\\Company' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/fr_FR/Company.php', + 'Faker\\Provider\\fr_FR\\Internet' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/fr_FR/Internet.php', + 'Faker\\Provider\\fr_FR\\Payment' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/fr_FR/Payment.php', + 'Faker\\Provider\\fr_FR\\Person' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/fr_FR/Person.php', + 'Faker\\Provider\\fr_FR\\PhoneNumber' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/fr_FR/PhoneNumber.php', + 'Faker\\Provider\\fr_FR\\Text' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/fr_FR/Text.php', + 'Faker\\Provider\\he_IL\\Address' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/he_IL/Address.php', + 'Faker\\Provider\\he_IL\\Company' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/he_IL/Company.php', + 'Faker\\Provider\\he_IL\\Payment' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/he_IL/Payment.php', + 'Faker\\Provider\\he_IL\\Person' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/he_IL/Person.php', + 'Faker\\Provider\\he_IL\\PhoneNumber' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/he_IL/PhoneNumber.php', + 'Faker\\Provider\\hr_HR\\Address' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/hr_HR/Address.php', + 'Faker\\Provider\\hr_HR\\Company' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/hr_HR/Company.php', + 'Faker\\Provider\\hr_HR\\Payment' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/hr_HR/Payment.php', + 'Faker\\Provider\\hr_HR\\Person' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/hr_HR/Person.php', + 'Faker\\Provider\\hr_HR\\PhoneNumber' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/hr_HR/PhoneNumber.php', + 'Faker\\Provider\\hu_HU\\Address' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/hu_HU/Address.php', + 'Faker\\Provider\\hu_HU\\Company' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/hu_HU/Company.php', + 'Faker\\Provider\\hu_HU\\Payment' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/hu_HU/Payment.php', + 'Faker\\Provider\\hu_HU\\Person' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/hu_HU/Person.php', + 'Faker\\Provider\\hu_HU\\PhoneNumber' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/hu_HU/PhoneNumber.php', + 'Faker\\Provider\\hu_HU\\Text' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/hu_HU/Text.php', + 'Faker\\Provider\\hy_AM\\Address' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/hy_AM/Address.php', + 'Faker\\Provider\\hy_AM\\Color' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/hy_AM/Color.php', + 'Faker\\Provider\\hy_AM\\Company' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/hy_AM/Company.php', + 'Faker\\Provider\\hy_AM\\Internet' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/hy_AM/Internet.php', + 'Faker\\Provider\\hy_AM\\Person' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/hy_AM/Person.php', + 'Faker\\Provider\\hy_AM\\PhoneNumber' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/hy_AM/PhoneNumber.php', + 'Faker\\Provider\\id_ID\\Address' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/id_ID/Address.php', + 'Faker\\Provider\\id_ID\\Company' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/id_ID/Company.php', + 'Faker\\Provider\\id_ID\\Internet' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/id_ID/Internet.php', + 'Faker\\Provider\\id_ID\\Person' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/id_ID/Person.php', + 'Faker\\Provider\\id_ID\\PhoneNumber' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/id_ID/PhoneNumber.php', + 'Faker\\Provider\\is_IS\\Address' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/is_IS/Address.php', + 'Faker\\Provider\\is_IS\\Company' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/is_IS/Company.php', + 'Faker\\Provider\\is_IS\\Internet' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/is_IS/Internet.php', + 'Faker\\Provider\\is_IS\\Payment' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/is_IS/Payment.php', + 'Faker\\Provider\\is_IS\\Person' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/is_IS/Person.php', + 'Faker\\Provider\\is_IS\\PhoneNumber' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/is_IS/PhoneNumber.php', + 'Faker\\Provider\\it_CH\\Address' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/it_CH/Address.php', + 'Faker\\Provider\\it_CH\\Company' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/it_CH/Company.php', + 'Faker\\Provider\\it_CH\\Internet' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/it_CH/Internet.php', + 'Faker\\Provider\\it_CH\\Payment' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/it_CH/Payment.php', + 'Faker\\Provider\\it_CH\\Person' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/it_CH/Person.php', + 'Faker\\Provider\\it_CH\\PhoneNumber' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/it_CH/PhoneNumber.php', + 'Faker\\Provider\\it_CH\\Text' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/it_CH/Text.php', + 'Faker\\Provider\\it_IT\\Address' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/it_IT/Address.php', + 'Faker\\Provider\\it_IT\\Company' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/it_IT/Company.php', + 'Faker\\Provider\\it_IT\\Internet' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/it_IT/Internet.php', + 'Faker\\Provider\\it_IT\\Payment' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/it_IT/Payment.php', + 'Faker\\Provider\\it_IT\\Person' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/it_IT/Person.php', + 'Faker\\Provider\\it_IT\\PhoneNumber' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/it_IT/PhoneNumber.php', + 'Faker\\Provider\\it_IT\\Text' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/it_IT/Text.php', + 'Faker\\Provider\\ja_JP\\Address' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/ja_JP/Address.php', + 'Faker\\Provider\\ja_JP\\Company' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/ja_JP/Company.php', + 'Faker\\Provider\\ja_JP\\Internet' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/ja_JP/Internet.php', + 'Faker\\Provider\\ja_JP\\Person' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/ja_JP/Person.php', + 'Faker\\Provider\\ja_JP\\PhoneNumber' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/ja_JP/PhoneNumber.php', + 'Faker\\Provider\\ja_JP\\Text' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/ja_JP/Text.php', + 'Faker\\Provider\\ka_GE\\Address' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/ka_GE/Address.php', + 'Faker\\Provider\\ka_GE\\Color' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/ka_GE/Color.php', + 'Faker\\Provider\\ka_GE\\Company' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/ka_GE/Company.php', + 'Faker\\Provider\\ka_GE\\DateTime' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/ka_GE/DateTime.php', + 'Faker\\Provider\\ka_GE\\Internet' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/ka_GE/Internet.php', + 'Faker\\Provider\\ka_GE\\Payment' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/ka_GE/Payment.php', + 'Faker\\Provider\\ka_GE\\Person' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/ka_GE/Person.php', + 'Faker\\Provider\\ka_GE\\PhoneNumber' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/ka_GE/PhoneNumber.php', + 'Faker\\Provider\\ka_GE\\Text' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/ka_GE/Text.php', + 'Faker\\Provider\\kk_KZ\\Address' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/kk_KZ/Address.php', + 'Faker\\Provider\\kk_KZ\\Color' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/kk_KZ/Color.php', + 'Faker\\Provider\\kk_KZ\\Company' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/kk_KZ/Company.php', + 'Faker\\Provider\\kk_KZ\\Internet' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/kk_KZ/Internet.php', + 'Faker\\Provider\\kk_KZ\\Payment' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/kk_KZ/Payment.php', + 'Faker\\Provider\\kk_KZ\\Person' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/kk_KZ/Person.php', + 'Faker\\Provider\\kk_KZ\\PhoneNumber' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/kk_KZ/PhoneNumber.php', + 'Faker\\Provider\\kk_KZ\\Text' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/kk_KZ/Text.php', + 'Faker\\Provider\\ko_KR\\Address' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/ko_KR/Address.php', + 'Faker\\Provider\\ko_KR\\Company' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/ko_KR/Company.php', + 'Faker\\Provider\\ko_KR\\Internet' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/ko_KR/Internet.php', + 'Faker\\Provider\\ko_KR\\Person' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/ko_KR/Person.php', + 'Faker\\Provider\\ko_KR\\PhoneNumber' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/ko_KR/PhoneNumber.php', + 'Faker\\Provider\\ko_KR\\Text' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/ko_KR/Text.php', + 'Faker\\Provider\\lt_LT\\Address' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/lt_LT/Address.php', + 'Faker\\Provider\\lt_LT\\Company' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/lt_LT/Company.php', + 'Faker\\Provider\\lt_LT\\Internet' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/lt_LT/Internet.php', + 'Faker\\Provider\\lt_LT\\Payment' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/lt_LT/Payment.php', + 'Faker\\Provider\\lt_LT\\Person' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/lt_LT/Person.php', + 'Faker\\Provider\\lt_LT\\PhoneNumber' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/lt_LT/PhoneNumber.php', + 'Faker\\Provider\\lv_LV\\Address' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/lv_LV/Address.php', + 'Faker\\Provider\\lv_LV\\Color' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/lv_LV/Color.php', + 'Faker\\Provider\\lv_LV\\Internet' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/lv_LV/Internet.php', + 'Faker\\Provider\\lv_LV\\Payment' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/lv_LV/Payment.php', + 'Faker\\Provider\\lv_LV\\Person' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/lv_LV/Person.php', + 'Faker\\Provider\\lv_LV\\PhoneNumber' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/lv_LV/PhoneNumber.php', + 'Faker\\Provider\\me_ME\\Address' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/me_ME/Address.php', + 'Faker\\Provider\\me_ME\\Company' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/me_ME/Company.php', + 'Faker\\Provider\\me_ME\\Payment' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/me_ME/Payment.php', + 'Faker\\Provider\\me_ME\\Person' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/me_ME/Person.php', + 'Faker\\Provider\\me_ME\\PhoneNumber' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/me_ME/PhoneNumber.php', + 'Faker\\Provider\\mn_MN\\Person' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/mn_MN/Person.php', + 'Faker\\Provider\\mn_MN\\PhoneNumber' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/mn_MN/PhoneNumber.php', + 'Faker\\Provider\\nb_NO\\Address' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/nb_NO/Address.php', + 'Faker\\Provider\\nb_NO\\Company' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/nb_NO/Company.php', + 'Faker\\Provider\\nb_NO\\Payment' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/nb_NO/Payment.php', + 'Faker\\Provider\\nb_NO\\Person' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/nb_NO/Person.php', + 'Faker\\Provider\\nb_NO\\PhoneNumber' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/nb_NO/PhoneNumber.php', + 'Faker\\Provider\\ne_NP\\Address' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/ne_NP/Address.php', + 'Faker\\Provider\\ne_NP\\Internet' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/ne_NP/Internet.php', + 'Faker\\Provider\\ne_NP\\Person' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/ne_NP/Person.php', + 'Faker\\Provider\\ne_NP\\PhoneNumber' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/ne_NP/PhoneNumber.php', + 'Faker\\Provider\\nl_BE\\Address' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/nl_BE/Address.php', + 'Faker\\Provider\\nl_BE\\Company' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/nl_BE/Company.php', + 'Faker\\Provider\\nl_BE\\Internet' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/nl_BE/Internet.php', + 'Faker\\Provider\\nl_BE\\Payment' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/nl_BE/Payment.php', + 'Faker\\Provider\\nl_BE\\Person' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/nl_BE/Person.php', + 'Faker\\Provider\\nl_BE\\PhoneNumber' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/nl_BE/PhoneNumber.php', + 'Faker\\Provider\\nl_NL\\Address' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/nl_NL/Address.php', + 'Faker\\Provider\\nl_NL\\Color' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/nl_NL/Color.php', + 'Faker\\Provider\\nl_NL\\Company' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/nl_NL/Company.php', + 'Faker\\Provider\\nl_NL\\Internet' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/nl_NL/Internet.php', + 'Faker\\Provider\\nl_NL\\Payment' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/nl_NL/Payment.php', + 'Faker\\Provider\\nl_NL\\Person' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/nl_NL/Person.php', + 'Faker\\Provider\\nl_NL\\PhoneNumber' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/nl_NL/PhoneNumber.php', + 'Faker\\Provider\\nl_NL\\Text' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/nl_NL/Text.php', + 'Faker\\Provider\\pl_PL\\Address' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/pl_PL/Address.php', + 'Faker\\Provider\\pl_PL\\Company' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/pl_PL/Company.php', + 'Faker\\Provider\\pl_PL\\Internet' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/pl_PL/Internet.php', + 'Faker\\Provider\\pl_PL\\Payment' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/pl_PL/Payment.php', + 'Faker\\Provider\\pl_PL\\Person' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/pl_PL/Person.php', + 'Faker\\Provider\\pl_PL\\PhoneNumber' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/pl_PL/PhoneNumber.php', + 'Faker\\Provider\\pl_PL\\Text' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/pl_PL/Text.php', + 'Faker\\Provider\\pt_BR\\Address' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/pt_BR/Address.php', + 'Faker\\Provider\\pt_BR\\Company' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/pt_BR/Company.php', + 'Faker\\Provider\\pt_BR\\Internet' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/pt_BR/Internet.php', + 'Faker\\Provider\\pt_BR\\Payment' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/pt_BR/Payment.php', + 'Faker\\Provider\\pt_BR\\Person' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/pt_BR/Person.php', + 'Faker\\Provider\\pt_BR\\PhoneNumber' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/pt_BR/PhoneNumber.php', + 'Faker\\Provider\\pt_PT\\Address' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/pt_PT/Address.php', + 'Faker\\Provider\\pt_PT\\Payment' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/pt_PT/Payment.php', + 'Faker\\Provider\\pt_PT\\Person' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/pt_PT/Person.php', + 'Faker\\Provider\\pt_PT\\PhoneNumber' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/pt_PT/PhoneNumber.php', + 'Faker\\Provider\\ro_MD\\Address' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/ro_MD/Address.php', + 'Faker\\Provider\\ro_MD\\Payment' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/ro_MD/Payment.php', + 'Faker\\Provider\\ro_MD\\Person' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/ro_MD/Person.php', + 'Faker\\Provider\\ro_MD\\PhoneNumber' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/ro_MD/PhoneNumber.php', + 'Faker\\Provider\\ro_MD\\Text' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/ro_MD/Text.php', + 'Faker\\Provider\\ro_RO\\Address' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/ro_RO/Address.php', + 'Faker\\Provider\\ro_RO\\Payment' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/ro_RO/Payment.php', + 'Faker\\Provider\\ro_RO\\Person' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/ro_RO/Person.php', + 'Faker\\Provider\\ro_RO\\PhoneNumber' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/ro_RO/PhoneNumber.php', + 'Faker\\Provider\\ro_RO\\Text' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/ro_RO/Text.php', + 'Faker\\Provider\\ru_RU\\Address' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/ru_RU/Address.php', + 'Faker\\Provider\\ru_RU\\Color' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/ru_RU/Color.php', + 'Faker\\Provider\\ru_RU\\Company' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/ru_RU/Company.php', + 'Faker\\Provider\\ru_RU\\Internet' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/ru_RU/Internet.php', + 'Faker\\Provider\\ru_RU\\Payment' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/ru_RU/Payment.php', + 'Faker\\Provider\\ru_RU\\Person' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/ru_RU/Person.php', + 'Faker\\Provider\\ru_RU\\PhoneNumber' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/ru_RU/PhoneNumber.php', + 'Faker\\Provider\\ru_RU\\Text' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/ru_RU/Text.php', + 'Faker\\Provider\\sk_SK\\Address' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/sk_SK/Address.php', + 'Faker\\Provider\\sk_SK\\Company' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/sk_SK/Company.php', + 'Faker\\Provider\\sk_SK\\Internet' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/sk_SK/Internet.php', + 'Faker\\Provider\\sk_SK\\Payment' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/sk_SK/Payment.php', + 'Faker\\Provider\\sk_SK\\Person' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/sk_SK/Person.php', + 'Faker\\Provider\\sk_SK\\PhoneNumber' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/sk_SK/PhoneNumber.php', + 'Faker\\Provider\\sl_SI\\Address' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/sl_SI/Address.php', + 'Faker\\Provider\\sl_SI\\Internet' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/sl_SI/Internet.php', + 'Faker\\Provider\\sl_SI\\Payment' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/sl_SI/Payment.php', + 'Faker\\Provider\\sl_SI\\Person' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/sl_SI/Person.php', + 'Faker\\Provider\\sl_SI\\PhoneNumber' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/sl_SI/PhoneNumber.php', + 'Faker\\Provider\\sr_Cyrl_RS\\Address' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/sr_Cyrl_RS/Address.php', + 'Faker\\Provider\\sr_Cyrl_RS\\Payment' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/sr_Cyrl_RS/Payment.php', + 'Faker\\Provider\\sr_Cyrl_RS\\Person' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/sr_Cyrl_RS/Person.php', + 'Faker\\Provider\\sr_Latn_RS\\Address' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/sr_Latn_RS/Address.php', + 'Faker\\Provider\\sr_Latn_RS\\Payment' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/sr_Latn_RS/Payment.php', + 'Faker\\Provider\\sr_Latn_RS\\Person' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/sr_Latn_RS/Person.php', + 'Faker\\Provider\\sr_RS\\Address' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/sr_RS/Address.php', + 'Faker\\Provider\\sr_RS\\Payment' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/sr_RS/Payment.php', + 'Faker\\Provider\\sr_RS\\Person' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/sr_RS/Person.php', + 'Faker\\Provider\\sv_SE\\Address' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/sv_SE/Address.php', + 'Faker\\Provider\\sv_SE\\Company' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/sv_SE/Company.php', + 'Faker\\Provider\\sv_SE\\Payment' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/sv_SE/Payment.php', + 'Faker\\Provider\\sv_SE\\Person' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/sv_SE/Person.php', + 'Faker\\Provider\\sv_SE\\PhoneNumber' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/sv_SE/PhoneNumber.php', + 'Faker\\Provider\\th_TH\\Address' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/th_TH/Address.php', + 'Faker\\Provider\\th_TH\\Company' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/th_TH/Company.php', + 'Faker\\Provider\\th_TH\\Internet' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/th_TH/Internet.php', + 'Faker\\Provider\\th_TH\\Payment' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/th_TH/Payment.php', + 'Faker\\Provider\\th_TH\\PhoneNumber' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/th_TH/PhoneNumber.php', + 'Faker\\Provider\\tr_TR\\Address' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/tr_TR/Address.php', + 'Faker\\Provider\\tr_TR\\Color' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/tr_TR/Color.php', + 'Faker\\Provider\\tr_TR\\DateTime' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/tr_TR/DateTime.php', + 'Faker\\Provider\\tr_TR\\Internet' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/tr_TR/Internet.php', + 'Faker\\Provider\\tr_TR\\Payment' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/tr_TR/Payment.php', + 'Faker\\Provider\\tr_TR\\Person' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/tr_TR/Person.php', + 'Faker\\Provider\\tr_TR\\PhoneNumber' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/tr_TR/PhoneNumber.php', + 'Faker\\Provider\\uk_UA\\Address' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/uk_UA/Address.php', + 'Faker\\Provider\\uk_UA\\Color' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/uk_UA/Color.php', + 'Faker\\Provider\\uk_UA\\Company' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/uk_UA/Company.php', + 'Faker\\Provider\\uk_UA\\Internet' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/uk_UA/Internet.php', + 'Faker\\Provider\\uk_UA\\Person' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/uk_UA/Person.php', + 'Faker\\Provider\\uk_UA\\PhoneNumber' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/uk_UA/PhoneNumber.php', + 'Faker\\Provider\\uk_UA\\Text' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/uk_UA/Text.php', + 'Faker\\Provider\\uk_Ua\\Payment' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/uk_UA/Payment.php', + 'Faker\\Provider\\vi_VN\\Address' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/vi_VN/Address.php', + 'Faker\\Provider\\vi_VN\\Color' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/vi_VN/Color.php', + 'Faker\\Provider\\vi_VN\\Internet' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/vi_VN/Internet.php', + 'Faker\\Provider\\vi_VN\\Person' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/vi_VN/Person.php', + 'Faker\\Provider\\vi_VN\\PhoneNumber' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/vi_VN/PhoneNumber.php', + 'Faker\\Provider\\zh_CN\\Address' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/zh_CN/Address.php', + 'Faker\\Provider\\zh_CN\\Color' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/zh_CN/Color.php', + 'Faker\\Provider\\zh_CN\\Company' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/zh_CN/Company.php', + 'Faker\\Provider\\zh_CN\\DateTime' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/zh_CN/DateTime.php', + 'Faker\\Provider\\zh_CN\\Internet' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/zh_CN/Internet.php', + 'Faker\\Provider\\zh_CN\\Payment' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/zh_CN/Payment.php', + 'Faker\\Provider\\zh_CN\\Person' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/zh_CN/Person.php', + 'Faker\\Provider\\zh_CN\\PhoneNumber' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/zh_CN/PhoneNumber.php', + 'Faker\\Provider\\zh_TW\\Address' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/zh_TW/Address.php', + 'Faker\\Provider\\zh_TW\\Color' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/zh_TW/Color.php', + 'Faker\\Provider\\zh_TW\\Company' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/zh_TW/Company.php', + 'Faker\\Provider\\zh_TW\\DateTime' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/zh_TW/DateTime.php', + 'Faker\\Provider\\zh_TW\\Internet' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/zh_TW/Internet.php', + 'Faker\\Provider\\zh_TW\\Payment' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/zh_TW/Payment.php', + 'Faker\\Provider\\zh_TW\\Person' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/zh_TW/Person.php', + 'Faker\\Provider\\zh_TW\\PhoneNumber' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/zh_TW/PhoneNumber.php', + 'Faker\\Provider\\zh_TW\\Text' => $vendorDir . '/fzaninotto/faker/src/Faker/Provider/zh_TW/Text.php', + 'Faker\\UniqueGenerator' => $vendorDir . '/fzaninotto/faker/src/Faker/UniqueGenerator.php', + 'Faker\\ValidGenerator' => $vendorDir . '/fzaninotto/faker/src/Faker/ValidGenerator.php', + 'Fideloper\\Proxy\\TrustProxies' => $vendorDir . '/fideloper/proxy/src/TrustProxies.php', + 'Fideloper\\Proxy\\TrustedProxyServiceProvider' => $vendorDir . '/fideloper/proxy/src/TrustedProxyServiceProvider.php', 'File_Iterator' => $vendorDir . '/phpunit/php-file-iterator/src/Iterator.php', 'File_Iterator_Facade' => $vendorDir . '/phpunit/php-file-iterator/src/Facade.php', 'File_Iterator_Factory' => $vendorDir . '/phpunit/php-file-iterator/src/Factory.php', @@ -78,6 +655,975 @@ return array( 'Hamcrest\\Type\\IsString' => $vendorDir . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/Type/IsString.php', 'Hamcrest\\Util' => $vendorDir . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/Util.php', 'Hamcrest\\Xml\\HasXPath' => $vendorDir . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/Xml/HasXPath.php', + 'Illuminate\\Auth\\Access\\AuthorizationException' => $vendorDir . '/laravel/framework/src/Illuminate/Auth/Access/AuthorizationException.php', + 'Illuminate\\Auth\\Access\\Gate' => $vendorDir . '/laravel/framework/src/Illuminate/Auth/Access/Gate.php', + 'Illuminate\\Auth\\Access\\HandlesAuthorization' => $vendorDir . '/laravel/framework/src/Illuminate/Auth/Access/HandlesAuthorization.php', + 'Illuminate\\Auth\\Access\\Response' => $vendorDir . '/laravel/framework/src/Illuminate/Auth/Access/Response.php', + 'Illuminate\\Auth\\AuthManager' => $vendorDir . '/laravel/framework/src/Illuminate/Auth/AuthManager.php', + 'Illuminate\\Auth\\AuthServiceProvider' => $vendorDir . '/laravel/framework/src/Illuminate/Auth/AuthServiceProvider.php', + 'Illuminate\\Auth\\Authenticatable' => $vendorDir . '/laravel/framework/src/Illuminate/Auth/Authenticatable.php', + 'Illuminate\\Auth\\AuthenticationException' => $vendorDir . '/laravel/framework/src/Illuminate/Auth/AuthenticationException.php', + 'Illuminate\\Auth\\Console\\AuthMakeCommand' => $vendorDir . '/laravel/framework/src/Illuminate/Auth/Console/AuthMakeCommand.php', + 'Illuminate\\Auth\\Console\\ClearResetsCommand' => $vendorDir . '/laravel/framework/src/Illuminate/Auth/Console/ClearResetsCommand.php', + 'Illuminate\\Auth\\CreatesUserProviders' => $vendorDir . '/laravel/framework/src/Illuminate/Auth/CreatesUserProviders.php', + 'Illuminate\\Auth\\DatabaseUserProvider' => $vendorDir . '/laravel/framework/src/Illuminate/Auth/DatabaseUserProvider.php', + 'Illuminate\\Auth\\EloquentUserProvider' => $vendorDir . '/laravel/framework/src/Illuminate/Auth/EloquentUserProvider.php', + 'Illuminate\\Auth\\Events\\Attempting' => $vendorDir . '/laravel/framework/src/Illuminate/Auth/Events/Attempting.php', + 'Illuminate\\Auth\\Events\\Authenticated' => $vendorDir . '/laravel/framework/src/Illuminate/Auth/Events/Authenticated.php', + 'Illuminate\\Auth\\Events\\Failed' => $vendorDir . '/laravel/framework/src/Illuminate/Auth/Events/Failed.php', + 'Illuminate\\Auth\\Events\\Lockout' => $vendorDir . '/laravel/framework/src/Illuminate/Auth/Events/Lockout.php', + 'Illuminate\\Auth\\Events\\Login' => $vendorDir . '/laravel/framework/src/Illuminate/Auth/Events/Login.php', + 'Illuminate\\Auth\\Events\\Logout' => $vendorDir . '/laravel/framework/src/Illuminate/Auth/Events/Logout.php', + 'Illuminate\\Auth\\Events\\PasswordReset' => $vendorDir . '/laravel/framework/src/Illuminate/Auth/Events/PasswordReset.php', + 'Illuminate\\Auth\\Events\\Registered' => $vendorDir . '/laravel/framework/src/Illuminate/Auth/Events/Registered.php', + 'Illuminate\\Auth\\GenericUser' => $vendorDir . '/laravel/framework/src/Illuminate/Auth/GenericUser.php', + 'Illuminate\\Auth\\GuardHelpers' => $vendorDir . '/laravel/framework/src/Illuminate/Auth/GuardHelpers.php', + 'Illuminate\\Auth\\Middleware\\Authenticate' => $vendorDir . '/laravel/framework/src/Illuminate/Auth/Middleware/Authenticate.php', + 'Illuminate\\Auth\\Middleware\\AuthenticateWithBasicAuth' => $vendorDir . '/laravel/framework/src/Illuminate/Auth/Middleware/AuthenticateWithBasicAuth.php', + 'Illuminate\\Auth\\Middleware\\Authorize' => $vendorDir . '/laravel/framework/src/Illuminate/Auth/Middleware/Authorize.php', + 'Illuminate\\Auth\\Notifications\\ResetPassword' => $vendorDir . '/laravel/framework/src/Illuminate/Auth/Notifications/ResetPassword.php', + 'Illuminate\\Auth\\Passwords\\CanResetPassword' => $vendorDir . '/laravel/framework/src/Illuminate/Auth/Passwords/CanResetPassword.php', + 'Illuminate\\Auth\\Passwords\\DatabaseTokenRepository' => $vendorDir . '/laravel/framework/src/Illuminate/Auth/Passwords/DatabaseTokenRepository.php', + 'Illuminate\\Auth\\Passwords\\PasswordBroker' => $vendorDir . '/laravel/framework/src/Illuminate/Auth/Passwords/PasswordBroker.php', + 'Illuminate\\Auth\\Passwords\\PasswordBrokerManager' => $vendorDir . '/laravel/framework/src/Illuminate/Auth/Passwords/PasswordBrokerManager.php', + 'Illuminate\\Auth\\Passwords\\PasswordResetServiceProvider' => $vendorDir . '/laravel/framework/src/Illuminate/Auth/Passwords/PasswordResetServiceProvider.php', + 'Illuminate\\Auth\\Passwords\\TokenRepositoryInterface' => $vendorDir . '/laravel/framework/src/Illuminate/Auth/Passwords/TokenRepositoryInterface.php', + 'Illuminate\\Auth\\Recaller' => $vendorDir . '/laravel/framework/src/Illuminate/Auth/Recaller.php', + 'Illuminate\\Auth\\RequestGuard' => $vendorDir . '/laravel/framework/src/Illuminate/Auth/RequestGuard.php', + 'Illuminate\\Auth\\SessionGuard' => $vendorDir . '/laravel/framework/src/Illuminate/Auth/SessionGuard.php', + 'Illuminate\\Auth\\TokenGuard' => $vendorDir . '/laravel/framework/src/Illuminate/Auth/TokenGuard.php', + 'Illuminate\\Broadcasting\\BroadcastController' => $vendorDir . '/laravel/framework/src/Illuminate/Broadcasting/BroadcastController.php', + 'Illuminate\\Broadcasting\\BroadcastEvent' => $vendorDir . '/laravel/framework/src/Illuminate/Broadcasting/BroadcastEvent.php', + 'Illuminate\\Broadcasting\\BroadcastException' => $vendorDir . '/laravel/framework/src/Illuminate/Broadcasting/BroadcastException.php', + 'Illuminate\\Broadcasting\\BroadcastManager' => $vendorDir . '/laravel/framework/src/Illuminate/Broadcasting/BroadcastManager.php', + 'Illuminate\\Broadcasting\\BroadcastServiceProvider' => $vendorDir . '/laravel/framework/src/Illuminate/Broadcasting/BroadcastServiceProvider.php', + 'Illuminate\\Broadcasting\\Broadcasters\\Broadcaster' => $vendorDir . '/laravel/framework/src/Illuminate/Broadcasting/Broadcasters/Broadcaster.php', + 'Illuminate\\Broadcasting\\Broadcasters\\LogBroadcaster' => $vendorDir . '/laravel/framework/src/Illuminate/Broadcasting/Broadcasters/LogBroadcaster.php', + 'Illuminate\\Broadcasting\\Broadcasters\\NullBroadcaster' => $vendorDir . '/laravel/framework/src/Illuminate/Broadcasting/Broadcasters/NullBroadcaster.php', + 'Illuminate\\Broadcasting\\Broadcasters\\PusherBroadcaster' => $vendorDir . '/laravel/framework/src/Illuminate/Broadcasting/Broadcasters/PusherBroadcaster.php', + 'Illuminate\\Broadcasting\\Broadcasters\\RedisBroadcaster' => $vendorDir . '/laravel/framework/src/Illuminate/Broadcasting/Broadcasters/RedisBroadcaster.php', + 'Illuminate\\Broadcasting\\Channel' => $vendorDir . '/laravel/framework/src/Illuminate/Broadcasting/Channel.php', + 'Illuminate\\Broadcasting\\InteractsWithSockets' => $vendorDir . '/laravel/framework/src/Illuminate/Broadcasting/InteractsWithSockets.php', + 'Illuminate\\Broadcasting\\PendingBroadcast' => $vendorDir . '/laravel/framework/src/Illuminate/Broadcasting/PendingBroadcast.php', + 'Illuminate\\Broadcasting\\PresenceChannel' => $vendorDir . '/laravel/framework/src/Illuminate/Broadcasting/PresenceChannel.php', + 'Illuminate\\Broadcasting\\PrivateChannel' => $vendorDir . '/laravel/framework/src/Illuminate/Broadcasting/PrivateChannel.php', + 'Illuminate\\Bus\\BusServiceProvider' => $vendorDir . '/laravel/framework/src/Illuminate/Bus/BusServiceProvider.php', + 'Illuminate\\Bus\\Dispatcher' => $vendorDir . '/laravel/framework/src/Illuminate/Bus/Dispatcher.php', + 'Illuminate\\Bus\\Queueable' => $vendorDir . '/laravel/framework/src/Illuminate/Bus/Queueable.php', + 'Illuminate\\Cache\\ApcStore' => $vendorDir . '/laravel/framework/src/Illuminate/Cache/ApcStore.php', + 'Illuminate\\Cache\\ApcWrapper' => $vendorDir . '/laravel/framework/src/Illuminate/Cache/ApcWrapper.php', + 'Illuminate\\Cache\\ArrayStore' => $vendorDir . '/laravel/framework/src/Illuminate/Cache/ArrayStore.php', + 'Illuminate\\Cache\\CacheManager' => $vendorDir . '/laravel/framework/src/Illuminate/Cache/CacheManager.php', + 'Illuminate\\Cache\\CacheServiceProvider' => $vendorDir . '/laravel/framework/src/Illuminate/Cache/CacheServiceProvider.php', + 'Illuminate\\Cache\\Console\\CacheTableCommand' => $vendorDir . '/laravel/framework/src/Illuminate/Cache/Console/CacheTableCommand.php', + 'Illuminate\\Cache\\Console\\ClearCommand' => $vendorDir . '/laravel/framework/src/Illuminate/Cache/Console/ClearCommand.php', + 'Illuminate\\Cache\\Console\\ForgetCommand' => $vendorDir . '/laravel/framework/src/Illuminate/Cache/Console/ForgetCommand.php', + 'Illuminate\\Cache\\DatabaseStore' => $vendorDir . '/laravel/framework/src/Illuminate/Cache/DatabaseStore.php', + 'Illuminate\\Cache\\Events\\CacheEvent' => $vendorDir . '/laravel/framework/src/Illuminate/Cache/Events/CacheEvent.php', + 'Illuminate\\Cache\\Events\\CacheHit' => $vendorDir . '/laravel/framework/src/Illuminate/Cache/Events/CacheHit.php', + 'Illuminate\\Cache\\Events\\CacheMissed' => $vendorDir . '/laravel/framework/src/Illuminate/Cache/Events/CacheMissed.php', + 'Illuminate\\Cache\\Events\\KeyForgotten' => $vendorDir . '/laravel/framework/src/Illuminate/Cache/Events/KeyForgotten.php', + 'Illuminate\\Cache\\Events\\KeyWritten' => $vendorDir . '/laravel/framework/src/Illuminate/Cache/Events/KeyWritten.php', + 'Illuminate\\Cache\\FileStore' => $vendorDir . '/laravel/framework/src/Illuminate/Cache/FileStore.php', + 'Illuminate\\Cache\\Lock' => $vendorDir . '/laravel/framework/src/Illuminate/Cache/Lock.php', + 'Illuminate\\Cache\\MemcachedConnector' => $vendorDir . '/laravel/framework/src/Illuminate/Cache/MemcachedConnector.php', + 'Illuminate\\Cache\\MemcachedLock' => $vendorDir . '/laravel/framework/src/Illuminate/Cache/MemcachedLock.php', + 'Illuminate\\Cache\\MemcachedStore' => $vendorDir . '/laravel/framework/src/Illuminate/Cache/MemcachedStore.php', + 'Illuminate\\Cache\\NullStore' => $vendorDir . '/laravel/framework/src/Illuminate/Cache/NullStore.php', + 'Illuminate\\Cache\\RateLimiter' => $vendorDir . '/laravel/framework/src/Illuminate/Cache/RateLimiter.php', + 'Illuminate\\Cache\\RedisLock' => $vendorDir . '/laravel/framework/src/Illuminate/Cache/RedisLock.php', + 'Illuminate\\Cache\\RedisStore' => $vendorDir . '/laravel/framework/src/Illuminate/Cache/RedisStore.php', + 'Illuminate\\Cache\\RedisTaggedCache' => $vendorDir . '/laravel/framework/src/Illuminate/Cache/RedisTaggedCache.php', + 'Illuminate\\Cache\\Repository' => $vendorDir . '/laravel/framework/src/Illuminate/Cache/Repository.php', + 'Illuminate\\Cache\\RetrievesMultipleKeys' => $vendorDir . '/laravel/framework/src/Illuminate/Cache/RetrievesMultipleKeys.php', + 'Illuminate\\Cache\\TagSet' => $vendorDir . '/laravel/framework/src/Illuminate/Cache/TagSet.php', + 'Illuminate\\Cache\\TaggableStore' => $vendorDir . '/laravel/framework/src/Illuminate/Cache/TaggableStore.php', + 'Illuminate\\Cache\\TaggedCache' => $vendorDir . '/laravel/framework/src/Illuminate/Cache/TaggedCache.php', + 'Illuminate\\Config\\Repository' => $vendorDir . '/laravel/framework/src/Illuminate/Config/Repository.php', + 'Illuminate\\Console\\Application' => $vendorDir . '/laravel/framework/src/Illuminate/Console/Application.php', + 'Illuminate\\Console\\Command' => $vendorDir . '/laravel/framework/src/Illuminate/Console/Command.php', + 'Illuminate\\Console\\ConfirmableTrait' => $vendorDir . '/laravel/framework/src/Illuminate/Console/ConfirmableTrait.php', + 'Illuminate\\Console\\DetectsApplicationNamespace' => $vendorDir . '/laravel/framework/src/Illuminate/Console/DetectsApplicationNamespace.php', + 'Illuminate\\Console\\Events\\ArtisanStarting' => $vendorDir . '/laravel/framework/src/Illuminate/Console/Events/ArtisanStarting.php', + 'Illuminate\\Console\\Events\\CommandFinished' => $vendorDir . '/laravel/framework/src/Illuminate/Console/Events/CommandFinished.php', + 'Illuminate\\Console\\Events\\CommandStarting' => $vendorDir . '/laravel/framework/src/Illuminate/Console/Events/CommandStarting.php', + 'Illuminate\\Console\\GeneratorCommand' => $vendorDir . '/laravel/framework/src/Illuminate/Console/GeneratorCommand.php', + 'Illuminate\\Console\\OutputStyle' => $vendorDir . '/laravel/framework/src/Illuminate/Console/OutputStyle.php', + 'Illuminate\\Console\\Parser' => $vendorDir . '/laravel/framework/src/Illuminate/Console/Parser.php', + 'Illuminate\\Console\\Scheduling\\CacheMutex' => $vendorDir . '/laravel/framework/src/Illuminate/Console/Scheduling/CacheMutex.php', + 'Illuminate\\Console\\Scheduling\\CallbackEvent' => $vendorDir . '/laravel/framework/src/Illuminate/Console/Scheduling/CallbackEvent.php', + 'Illuminate\\Console\\Scheduling\\CommandBuilder' => $vendorDir . '/laravel/framework/src/Illuminate/Console/Scheduling/CommandBuilder.php', + 'Illuminate\\Console\\Scheduling\\Event' => $vendorDir . '/laravel/framework/src/Illuminate/Console/Scheduling/Event.php', + 'Illuminate\\Console\\Scheduling\\ManagesFrequencies' => $vendorDir . '/laravel/framework/src/Illuminate/Console/Scheduling/ManagesFrequencies.php', + 'Illuminate\\Console\\Scheduling\\Mutex' => $vendorDir . '/laravel/framework/src/Illuminate/Console/Scheduling/Mutex.php', + 'Illuminate\\Console\\Scheduling\\Schedule' => $vendorDir . '/laravel/framework/src/Illuminate/Console/Scheduling/Schedule.php', + 'Illuminate\\Console\\Scheduling\\ScheduleFinishCommand' => $vendorDir . '/laravel/framework/src/Illuminate/Console/Scheduling/ScheduleFinishCommand.php', + 'Illuminate\\Console\\Scheduling\\ScheduleRunCommand' => $vendorDir . '/laravel/framework/src/Illuminate/Console/Scheduling/ScheduleRunCommand.php', + 'Illuminate\\Container\\BoundMethod' => $vendorDir . '/laravel/framework/src/Illuminate/Container/BoundMethod.php', + 'Illuminate\\Container\\Container' => $vendorDir . '/laravel/framework/src/Illuminate/Container/Container.php', + 'Illuminate\\Container\\ContextualBindingBuilder' => $vendorDir . '/laravel/framework/src/Illuminate/Container/ContextualBindingBuilder.php', + 'Illuminate\\Container\\EntryNotFoundException' => $vendorDir . '/laravel/framework/src/Illuminate/Container/EntryNotFoundException.php', + 'Illuminate\\Contracts\\Auth\\Access\\Authorizable' => $vendorDir . '/laravel/framework/src/Illuminate/Contracts/Auth/Access/Authorizable.php', + 'Illuminate\\Contracts\\Auth\\Access\\Gate' => $vendorDir . '/laravel/framework/src/Illuminate/Contracts/Auth/Access/Gate.php', + 'Illuminate\\Contracts\\Auth\\Authenticatable' => $vendorDir . '/laravel/framework/src/Illuminate/Contracts/Auth/Authenticatable.php', + 'Illuminate\\Contracts\\Auth\\CanResetPassword' => $vendorDir . '/laravel/framework/src/Illuminate/Contracts/Auth/CanResetPassword.php', + 'Illuminate\\Contracts\\Auth\\Factory' => $vendorDir . '/laravel/framework/src/Illuminate/Contracts/Auth/Factory.php', + 'Illuminate\\Contracts\\Auth\\Guard' => $vendorDir . '/laravel/framework/src/Illuminate/Contracts/Auth/Guard.php', + 'Illuminate\\Contracts\\Auth\\PasswordBroker' => $vendorDir . '/laravel/framework/src/Illuminate/Contracts/Auth/PasswordBroker.php', + 'Illuminate\\Contracts\\Auth\\PasswordBrokerFactory' => $vendorDir . '/laravel/framework/src/Illuminate/Contracts/Auth/PasswordBrokerFactory.php', + 'Illuminate\\Contracts\\Auth\\StatefulGuard' => $vendorDir . '/laravel/framework/src/Illuminate/Contracts/Auth/StatefulGuard.php', + 'Illuminate\\Contracts\\Auth\\SupportsBasicAuth' => $vendorDir . '/laravel/framework/src/Illuminate/Contracts/Auth/SupportsBasicAuth.php', + 'Illuminate\\Contracts\\Auth\\UserProvider' => $vendorDir . '/laravel/framework/src/Illuminate/Contracts/Auth/UserProvider.php', + 'Illuminate\\Contracts\\Broadcasting\\Broadcaster' => $vendorDir . '/laravel/framework/src/Illuminate/Contracts/Broadcasting/Broadcaster.php', + 'Illuminate\\Contracts\\Broadcasting\\Factory' => $vendorDir . '/laravel/framework/src/Illuminate/Contracts/Broadcasting/Factory.php', + 'Illuminate\\Contracts\\Broadcasting\\ShouldBroadcast' => $vendorDir . '/laravel/framework/src/Illuminate/Contracts/Broadcasting/ShouldBroadcast.php', + 'Illuminate\\Contracts\\Broadcasting\\ShouldBroadcastNow' => $vendorDir . '/laravel/framework/src/Illuminate/Contracts/Broadcasting/ShouldBroadcastNow.php', + 'Illuminate\\Contracts\\Bus\\Dispatcher' => $vendorDir . '/laravel/framework/src/Illuminate/Contracts/Bus/Dispatcher.php', + 'Illuminate\\Contracts\\Bus\\QueueingDispatcher' => $vendorDir . '/laravel/framework/src/Illuminate/Contracts/Bus/QueueingDispatcher.php', + 'Illuminate\\Contracts\\Cache\\Factory' => $vendorDir . '/laravel/framework/src/Illuminate/Contracts/Cache/Factory.php', + 'Illuminate\\Contracts\\Cache\\Lock' => $vendorDir . '/laravel/framework/src/Illuminate/Contracts/Cache/Lock.php', + 'Illuminate\\Contracts\\Cache\\LockProvider' => $vendorDir . '/laravel/framework/src/Illuminate/Contracts/Cache/LockProvider.php', + 'Illuminate\\Contracts\\Cache\\LockTimeoutException' => $vendorDir . '/laravel/framework/src/Illuminate/Contracts/Cache/LockTimeoutException.php', + 'Illuminate\\Contracts\\Cache\\Repository' => $vendorDir . '/laravel/framework/src/Illuminate/Contracts/Cache/Repository.php', + 'Illuminate\\Contracts\\Cache\\Store' => $vendorDir . '/laravel/framework/src/Illuminate/Contracts/Cache/Store.php', + 'Illuminate\\Contracts\\Config\\Repository' => $vendorDir . '/laravel/framework/src/Illuminate/Contracts/Config/Repository.php', + 'Illuminate\\Contracts\\Console\\Application' => $vendorDir . '/laravel/framework/src/Illuminate/Contracts/Console/Application.php', + 'Illuminate\\Contracts\\Console\\Kernel' => $vendorDir . '/laravel/framework/src/Illuminate/Contracts/Console/Kernel.php', + 'Illuminate\\Contracts\\Container\\BindingResolutionException' => $vendorDir . '/laravel/framework/src/Illuminate/Contracts/Container/BindingResolutionException.php', + 'Illuminate\\Contracts\\Container\\Container' => $vendorDir . '/laravel/framework/src/Illuminate/Contracts/Container/Container.php', + 'Illuminate\\Contracts\\Container\\ContextualBindingBuilder' => $vendorDir . '/laravel/framework/src/Illuminate/Contracts/Container/ContextualBindingBuilder.php', + 'Illuminate\\Contracts\\Cookie\\Factory' => $vendorDir . '/laravel/framework/src/Illuminate/Contracts/Cookie/Factory.php', + 'Illuminate\\Contracts\\Cookie\\QueueingFactory' => $vendorDir . '/laravel/framework/src/Illuminate/Contracts/Cookie/QueueingFactory.php', + 'Illuminate\\Contracts\\Database\\ModelIdentifier' => $vendorDir . '/laravel/framework/src/Illuminate/Contracts/Database/ModelIdentifier.php', + 'Illuminate\\Contracts\\Debug\\ExceptionHandler' => $vendorDir . '/laravel/framework/src/Illuminate/Contracts/Debug/ExceptionHandler.php', + 'Illuminate\\Contracts\\Encryption\\DecryptException' => $vendorDir . '/laravel/framework/src/Illuminate/Contracts/Encryption/DecryptException.php', + 'Illuminate\\Contracts\\Encryption\\EncryptException' => $vendorDir . '/laravel/framework/src/Illuminate/Contracts/Encryption/EncryptException.php', + 'Illuminate\\Contracts\\Encryption\\Encrypter' => $vendorDir . '/laravel/framework/src/Illuminate/Contracts/Encryption/Encrypter.php', + 'Illuminate\\Contracts\\Events\\Dispatcher' => $vendorDir . '/laravel/framework/src/Illuminate/Contracts/Events/Dispatcher.php', + 'Illuminate\\Contracts\\Filesystem\\Cloud' => $vendorDir . '/laravel/framework/src/Illuminate/Contracts/Filesystem/Cloud.php', + 'Illuminate\\Contracts\\Filesystem\\Factory' => $vendorDir . '/laravel/framework/src/Illuminate/Contracts/Filesystem/Factory.php', + 'Illuminate\\Contracts\\Filesystem\\FileNotFoundException' => $vendorDir . '/laravel/framework/src/Illuminate/Contracts/Filesystem/FileNotFoundException.php', + 'Illuminate\\Contracts\\Filesystem\\Filesystem' => $vendorDir . '/laravel/framework/src/Illuminate/Contracts/Filesystem/Filesystem.php', + 'Illuminate\\Contracts\\Foundation\\Application' => $vendorDir . '/laravel/framework/src/Illuminate/Contracts/Foundation/Application.php', + 'Illuminate\\Contracts\\Hashing\\Hasher' => $vendorDir . '/laravel/framework/src/Illuminate/Contracts/Hashing/Hasher.php', + 'Illuminate\\Contracts\\Http\\Kernel' => $vendorDir . '/laravel/framework/src/Illuminate/Contracts/Http/Kernel.php', + 'Illuminate\\Contracts\\Logging\\Log' => $vendorDir . '/laravel/framework/src/Illuminate/Contracts/Logging/Log.php', + 'Illuminate\\Contracts\\Mail\\MailQueue' => $vendorDir . '/laravel/framework/src/Illuminate/Contracts/Mail/MailQueue.php', + 'Illuminate\\Contracts\\Mail\\Mailable' => $vendorDir . '/laravel/framework/src/Illuminate/Contracts/Mail/Mailable.php', + 'Illuminate\\Contracts\\Mail\\Mailer' => $vendorDir . '/laravel/framework/src/Illuminate/Contracts/Mail/Mailer.php', + 'Illuminate\\Contracts\\Notifications\\Dispatcher' => $vendorDir . '/laravel/framework/src/Illuminate/Contracts/Notifications/Dispatcher.php', + 'Illuminate\\Contracts\\Notifications\\Factory' => $vendorDir . '/laravel/framework/src/Illuminate/Contracts/Notifications/Factory.php', + 'Illuminate\\Contracts\\Pagination\\LengthAwarePaginator' => $vendorDir . '/laravel/framework/src/Illuminate/Contracts/Pagination/LengthAwarePaginator.php', + 'Illuminate\\Contracts\\Pagination\\Paginator' => $vendorDir . '/laravel/framework/src/Illuminate/Contracts/Pagination/Paginator.php', + 'Illuminate\\Contracts\\Pipeline\\Hub' => $vendorDir . '/laravel/framework/src/Illuminate/Contracts/Pipeline/Hub.php', + 'Illuminate\\Contracts\\Pipeline\\Pipeline' => $vendorDir . '/laravel/framework/src/Illuminate/Contracts/Pipeline/Pipeline.php', + 'Illuminate\\Contracts\\Queue\\EntityNotFoundException' => $vendorDir . '/laravel/framework/src/Illuminate/Contracts/Queue/EntityNotFoundException.php', + 'Illuminate\\Contracts\\Queue\\EntityResolver' => $vendorDir . '/laravel/framework/src/Illuminate/Contracts/Queue/EntityResolver.php', + 'Illuminate\\Contracts\\Queue\\Factory' => $vendorDir . '/laravel/framework/src/Illuminate/Contracts/Queue/Factory.php', + 'Illuminate\\Contracts\\Queue\\Job' => $vendorDir . '/laravel/framework/src/Illuminate/Contracts/Queue/Job.php', + 'Illuminate\\Contracts\\Queue\\Monitor' => $vendorDir . '/laravel/framework/src/Illuminate/Contracts/Queue/Monitor.php', + 'Illuminate\\Contracts\\Queue\\Queue' => $vendorDir . '/laravel/framework/src/Illuminate/Contracts/Queue/Queue.php', + 'Illuminate\\Contracts\\Queue\\QueueableCollection' => $vendorDir . '/laravel/framework/src/Illuminate/Contracts/Queue/QueueableCollection.php', + 'Illuminate\\Contracts\\Queue\\QueueableEntity' => $vendorDir . '/laravel/framework/src/Illuminate/Contracts/Queue/QueueableEntity.php', + 'Illuminate\\Contracts\\Queue\\ShouldQueue' => $vendorDir . '/laravel/framework/src/Illuminate/Contracts/Queue/ShouldQueue.php', + 'Illuminate\\Contracts\\Redis\\Factory' => $vendorDir . '/laravel/framework/src/Illuminate/Contracts/Redis/Factory.php', + 'Illuminate\\Contracts\\Redis\\LimiterTimeoutException' => $vendorDir . '/laravel/framework/src/Illuminate/Contracts/Redis/LimiterTimeoutException.php', + 'Illuminate\\Contracts\\Routing\\BindingRegistrar' => $vendorDir . '/laravel/framework/src/Illuminate/Contracts/Routing/BindingRegistrar.php', + 'Illuminate\\Contracts\\Routing\\Registrar' => $vendorDir . '/laravel/framework/src/Illuminate/Contracts/Routing/Registrar.php', + 'Illuminate\\Contracts\\Routing\\ResponseFactory' => $vendorDir . '/laravel/framework/src/Illuminate/Contracts/Routing/ResponseFactory.php', + 'Illuminate\\Contracts\\Routing\\UrlGenerator' => $vendorDir . '/laravel/framework/src/Illuminate/Contracts/Routing/UrlGenerator.php', + 'Illuminate\\Contracts\\Routing\\UrlRoutable' => $vendorDir . '/laravel/framework/src/Illuminate/Contracts/Routing/UrlRoutable.php', + 'Illuminate\\Contracts\\Session\\Session' => $vendorDir . '/laravel/framework/src/Illuminate/Contracts/Session/Session.php', + 'Illuminate\\Contracts\\Support\\Arrayable' => $vendorDir . '/laravel/framework/src/Illuminate/Contracts/Support/Arrayable.php', + 'Illuminate\\Contracts\\Support\\Htmlable' => $vendorDir . '/laravel/framework/src/Illuminate/Contracts/Support/Htmlable.php', + 'Illuminate\\Contracts\\Support\\Jsonable' => $vendorDir . '/laravel/framework/src/Illuminate/Contracts/Support/Jsonable.php', + 'Illuminate\\Contracts\\Support\\MessageBag' => $vendorDir . '/laravel/framework/src/Illuminate/Contracts/Support/MessageBag.php', + 'Illuminate\\Contracts\\Support\\MessageProvider' => $vendorDir . '/laravel/framework/src/Illuminate/Contracts/Support/MessageProvider.php', + 'Illuminate\\Contracts\\Support\\Renderable' => $vendorDir . '/laravel/framework/src/Illuminate/Contracts/Support/Renderable.php', + 'Illuminate\\Contracts\\Support\\Responsable' => $vendorDir . '/laravel/framework/src/Illuminate/Contracts/Support/Responsable.php', + 'Illuminate\\Contracts\\Translation\\Loader' => $vendorDir . '/laravel/framework/src/Illuminate/Contracts/Translation/Loader.php', + 'Illuminate\\Contracts\\Translation\\Translator' => $vendorDir . '/laravel/framework/src/Illuminate/Contracts/Translation/Translator.php', + 'Illuminate\\Contracts\\Validation\\Factory' => $vendorDir . '/laravel/framework/src/Illuminate/Contracts/Validation/Factory.php', + 'Illuminate\\Contracts\\Validation\\ImplicitRule' => $vendorDir . '/laravel/framework/src/Illuminate/Contracts/Validation/ImplicitRule.php', + 'Illuminate\\Contracts\\Validation\\Rule' => $vendorDir . '/laravel/framework/src/Illuminate/Contracts/Validation/Rule.php', + 'Illuminate\\Contracts\\Validation\\ValidatesWhenResolved' => $vendorDir . '/laravel/framework/src/Illuminate/Contracts/Validation/ValidatesWhenResolved.php', + 'Illuminate\\Contracts\\Validation\\Validator' => $vendorDir . '/laravel/framework/src/Illuminate/Contracts/Validation/Validator.php', + 'Illuminate\\Contracts\\View\\Engine' => $vendorDir . '/laravel/framework/src/Illuminate/Contracts/View/Engine.php', + 'Illuminate\\Contracts\\View\\Factory' => $vendorDir . '/laravel/framework/src/Illuminate/Contracts/View/Factory.php', + 'Illuminate\\Contracts\\View\\View' => $vendorDir . '/laravel/framework/src/Illuminate/Contracts/View/View.php', + 'Illuminate\\Cookie\\CookieJar' => $vendorDir . '/laravel/framework/src/Illuminate/Cookie/CookieJar.php', + 'Illuminate\\Cookie\\CookieServiceProvider' => $vendorDir . '/laravel/framework/src/Illuminate/Cookie/CookieServiceProvider.php', + 'Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse' => $vendorDir . '/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php', + 'Illuminate\\Cookie\\Middleware\\EncryptCookies' => $vendorDir . '/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php', + 'Illuminate\\Database\\Capsule\\Manager' => $vendorDir . '/laravel/framework/src/Illuminate/Database/Capsule/Manager.php', + 'Illuminate\\Database\\Concerns\\BuildsQueries' => $vendorDir . '/laravel/framework/src/Illuminate/Database/Concerns/BuildsQueries.php', + 'Illuminate\\Database\\Concerns\\ManagesTransactions' => $vendorDir . '/laravel/framework/src/Illuminate/Database/Concerns/ManagesTransactions.php', + 'Illuminate\\Database\\Connection' => $vendorDir . '/laravel/framework/src/Illuminate/Database/Connection.php', + 'Illuminate\\Database\\ConnectionInterface' => $vendorDir . '/laravel/framework/src/Illuminate/Database/ConnectionInterface.php', + 'Illuminate\\Database\\ConnectionResolver' => $vendorDir . '/laravel/framework/src/Illuminate/Database/ConnectionResolver.php', + 'Illuminate\\Database\\ConnectionResolverInterface' => $vendorDir . '/laravel/framework/src/Illuminate/Database/ConnectionResolverInterface.php', + 'Illuminate\\Database\\Connectors\\ConnectionFactory' => $vendorDir . '/laravel/framework/src/Illuminate/Database/Connectors/ConnectionFactory.php', + 'Illuminate\\Database\\Connectors\\Connector' => $vendorDir . '/laravel/framework/src/Illuminate/Database/Connectors/Connector.php', + 'Illuminate\\Database\\Connectors\\ConnectorInterface' => $vendorDir . '/laravel/framework/src/Illuminate/Database/Connectors/ConnectorInterface.php', + 'Illuminate\\Database\\Connectors\\MySqlConnector' => $vendorDir . '/laravel/framework/src/Illuminate/Database/Connectors/MySqlConnector.php', + 'Illuminate\\Database\\Connectors\\PostgresConnector' => $vendorDir . '/laravel/framework/src/Illuminate/Database/Connectors/PostgresConnector.php', + 'Illuminate\\Database\\Connectors\\SQLiteConnector' => $vendorDir . '/laravel/framework/src/Illuminate/Database/Connectors/SQLiteConnector.php', + 'Illuminate\\Database\\Connectors\\SqlServerConnector' => $vendorDir . '/laravel/framework/src/Illuminate/Database/Connectors/SqlServerConnector.php', + 'Illuminate\\Database\\Console\\Factories\\FactoryMakeCommand' => $vendorDir . '/laravel/framework/src/Illuminate/Database/Console/Factories/FactoryMakeCommand.php', + 'Illuminate\\Database\\Console\\Migrations\\BaseCommand' => $vendorDir . '/laravel/framework/src/Illuminate/Database/Console/Migrations/BaseCommand.php', + 'Illuminate\\Database\\Console\\Migrations\\FreshCommand' => $vendorDir . '/laravel/framework/src/Illuminate/Database/Console/Migrations/FreshCommand.php', + 'Illuminate\\Database\\Console\\Migrations\\InstallCommand' => $vendorDir . '/laravel/framework/src/Illuminate/Database/Console/Migrations/InstallCommand.php', + 'Illuminate\\Database\\Console\\Migrations\\MigrateCommand' => $vendorDir . '/laravel/framework/src/Illuminate/Database/Console/Migrations/MigrateCommand.php', + 'Illuminate\\Database\\Console\\Migrations\\MigrateMakeCommand' => $vendorDir . '/laravel/framework/src/Illuminate/Database/Console/Migrations/MigrateMakeCommand.php', + 'Illuminate\\Database\\Console\\Migrations\\RefreshCommand' => $vendorDir . '/laravel/framework/src/Illuminate/Database/Console/Migrations/RefreshCommand.php', + 'Illuminate\\Database\\Console\\Migrations\\ResetCommand' => $vendorDir . '/laravel/framework/src/Illuminate/Database/Console/Migrations/ResetCommand.php', + 'Illuminate\\Database\\Console\\Migrations\\RollbackCommand' => $vendorDir . '/laravel/framework/src/Illuminate/Database/Console/Migrations/RollbackCommand.php', + 'Illuminate\\Database\\Console\\Migrations\\StatusCommand' => $vendorDir . '/laravel/framework/src/Illuminate/Database/Console/Migrations/StatusCommand.php', + 'Illuminate\\Database\\Console\\Seeds\\SeedCommand' => $vendorDir . '/laravel/framework/src/Illuminate/Database/Console/Seeds/SeedCommand.php', + 'Illuminate\\Database\\Console\\Seeds\\SeederMakeCommand' => $vendorDir . '/laravel/framework/src/Illuminate/Database/Console/Seeds/SeederMakeCommand.php', + 'Illuminate\\Database\\DatabaseManager' => $vendorDir . '/laravel/framework/src/Illuminate/Database/DatabaseManager.php', + 'Illuminate\\Database\\DatabaseServiceProvider' => $vendorDir . '/laravel/framework/src/Illuminate/Database/DatabaseServiceProvider.php', + 'Illuminate\\Database\\DetectsDeadlocks' => $vendorDir . '/laravel/framework/src/Illuminate/Database/DetectsDeadlocks.php', + 'Illuminate\\Database\\DetectsLostConnections' => $vendorDir . '/laravel/framework/src/Illuminate/Database/DetectsLostConnections.php', + 'Illuminate\\Database\\Eloquent\\Builder' => $vendorDir . '/laravel/framework/src/Illuminate/Database/Eloquent/Builder.php', + 'Illuminate\\Database\\Eloquent\\Collection' => $vendorDir . '/laravel/framework/src/Illuminate/Database/Eloquent/Collection.php', + 'Illuminate\\Database\\Eloquent\\Concerns\\GuardsAttributes' => $vendorDir . '/laravel/framework/src/Illuminate/Database/Eloquent/Concerns/GuardsAttributes.php', + 'Illuminate\\Database\\Eloquent\\Concerns\\HasAttributes' => $vendorDir . '/laravel/framework/src/Illuminate/Database/Eloquent/Concerns/HasAttributes.php', + 'Illuminate\\Database\\Eloquent\\Concerns\\HasEvents' => $vendorDir . '/laravel/framework/src/Illuminate/Database/Eloquent/Concerns/HasEvents.php', + 'Illuminate\\Database\\Eloquent\\Concerns\\HasGlobalScopes' => $vendorDir . '/laravel/framework/src/Illuminate/Database/Eloquent/Concerns/HasGlobalScopes.php', + 'Illuminate\\Database\\Eloquent\\Concerns\\HasRelationships' => $vendorDir . '/laravel/framework/src/Illuminate/Database/Eloquent/Concerns/HasRelationships.php', + 'Illuminate\\Database\\Eloquent\\Concerns\\HasTimestamps' => $vendorDir . '/laravel/framework/src/Illuminate/Database/Eloquent/Concerns/HasTimestamps.php', + 'Illuminate\\Database\\Eloquent\\Concerns\\HidesAttributes' => $vendorDir . '/laravel/framework/src/Illuminate/Database/Eloquent/Concerns/HidesAttributes.php', + 'Illuminate\\Database\\Eloquent\\Concerns\\QueriesRelationships' => $vendorDir . '/laravel/framework/src/Illuminate/Database/Eloquent/Concerns/QueriesRelationships.php', + 'Illuminate\\Database\\Eloquent\\Factory' => $vendorDir . '/laravel/framework/src/Illuminate/Database/Eloquent/Factory.php', + 'Illuminate\\Database\\Eloquent\\FactoryBuilder' => $vendorDir . '/laravel/framework/src/Illuminate/Database/Eloquent/FactoryBuilder.php', + 'Illuminate\\Database\\Eloquent\\JsonEncodingException' => $vendorDir . '/laravel/framework/src/Illuminate/Database/Eloquent/JsonEncodingException.php', + 'Illuminate\\Database\\Eloquent\\MassAssignmentException' => $vendorDir . '/laravel/framework/src/Illuminate/Database/Eloquent/MassAssignmentException.php', + 'Illuminate\\Database\\Eloquent\\Model' => $vendorDir . '/laravel/framework/src/Illuminate/Database/Eloquent/Model.php', + 'Illuminate\\Database\\Eloquent\\ModelNotFoundException' => $vendorDir . '/laravel/framework/src/Illuminate/Database/Eloquent/ModelNotFoundException.php', + 'Illuminate\\Database\\Eloquent\\QueueEntityResolver' => $vendorDir . '/laravel/framework/src/Illuminate/Database/Eloquent/QueueEntityResolver.php', + 'Illuminate\\Database\\Eloquent\\RelationNotFoundException' => $vendorDir . '/laravel/framework/src/Illuminate/Database/Eloquent/RelationNotFoundException.php', + 'Illuminate\\Database\\Eloquent\\Relations\\BelongsTo' => $vendorDir . '/laravel/framework/src/Illuminate/Database/Eloquent/Relations/BelongsTo.php', + 'Illuminate\\Database\\Eloquent\\Relations\\BelongsToMany' => $vendorDir . '/laravel/framework/src/Illuminate/Database/Eloquent/Relations/BelongsToMany.php', + 'Illuminate\\Database\\Eloquent\\Relations\\Concerns\\InteractsWithPivotTable' => $vendorDir . '/laravel/framework/src/Illuminate/Database/Eloquent/Relations/Concerns/InteractsWithPivotTable.php', + 'Illuminate\\Database\\Eloquent\\Relations\\Concerns\\SupportsDefaultModels' => $vendorDir . '/laravel/framework/src/Illuminate/Database/Eloquent/Relations/Concerns/SupportsDefaultModels.php', + 'Illuminate\\Database\\Eloquent\\Relations\\HasMany' => $vendorDir . '/laravel/framework/src/Illuminate/Database/Eloquent/Relations/HasMany.php', + 'Illuminate\\Database\\Eloquent\\Relations\\HasManyThrough' => $vendorDir . '/laravel/framework/src/Illuminate/Database/Eloquent/Relations/HasManyThrough.php', + 'Illuminate\\Database\\Eloquent\\Relations\\HasOne' => $vendorDir . '/laravel/framework/src/Illuminate/Database/Eloquent/Relations/HasOne.php', + 'Illuminate\\Database\\Eloquent\\Relations\\HasOneOrMany' => $vendorDir . '/laravel/framework/src/Illuminate/Database/Eloquent/Relations/HasOneOrMany.php', + 'Illuminate\\Database\\Eloquent\\Relations\\MorphMany' => $vendorDir . '/laravel/framework/src/Illuminate/Database/Eloquent/Relations/MorphMany.php', + 'Illuminate\\Database\\Eloquent\\Relations\\MorphOne' => $vendorDir . '/laravel/framework/src/Illuminate/Database/Eloquent/Relations/MorphOne.php', + 'Illuminate\\Database\\Eloquent\\Relations\\MorphOneOrMany' => $vendorDir . '/laravel/framework/src/Illuminate/Database/Eloquent/Relations/MorphOneOrMany.php', + 'Illuminate\\Database\\Eloquent\\Relations\\MorphPivot' => $vendorDir . '/laravel/framework/src/Illuminate/Database/Eloquent/Relations/MorphPivot.php', + 'Illuminate\\Database\\Eloquent\\Relations\\MorphTo' => $vendorDir . '/laravel/framework/src/Illuminate/Database/Eloquent/Relations/MorphTo.php', + 'Illuminate\\Database\\Eloquent\\Relations\\MorphToMany' => $vendorDir . '/laravel/framework/src/Illuminate/Database/Eloquent/Relations/MorphToMany.php', + 'Illuminate\\Database\\Eloquent\\Relations\\Pivot' => $vendorDir . '/laravel/framework/src/Illuminate/Database/Eloquent/Relations/Pivot.php', + 'Illuminate\\Database\\Eloquent\\Relations\\Relation' => $vendorDir . '/laravel/framework/src/Illuminate/Database/Eloquent/Relations/Relation.php', + 'Illuminate\\Database\\Eloquent\\Scope' => $vendorDir . '/laravel/framework/src/Illuminate/Database/Eloquent/Scope.php', + 'Illuminate\\Database\\Eloquent\\SoftDeletes' => $vendorDir . '/laravel/framework/src/Illuminate/Database/Eloquent/SoftDeletes.php', + 'Illuminate\\Database\\Eloquent\\SoftDeletingScope' => $vendorDir . '/laravel/framework/src/Illuminate/Database/Eloquent/SoftDeletingScope.php', + 'Illuminate\\Database\\Events\\ConnectionEvent' => $vendorDir . '/laravel/framework/src/Illuminate/Database/Events/ConnectionEvent.php', + 'Illuminate\\Database\\Events\\QueryExecuted' => $vendorDir . '/laravel/framework/src/Illuminate/Database/Events/QueryExecuted.php', + 'Illuminate\\Database\\Events\\StatementPrepared' => $vendorDir . '/laravel/framework/src/Illuminate/Database/Events/StatementPrepared.php', + 'Illuminate\\Database\\Events\\TransactionBeginning' => $vendorDir . '/laravel/framework/src/Illuminate/Database/Events/TransactionBeginning.php', + 'Illuminate\\Database\\Events\\TransactionCommitted' => $vendorDir . '/laravel/framework/src/Illuminate/Database/Events/TransactionCommitted.php', + 'Illuminate\\Database\\Events\\TransactionRolledBack' => $vendorDir . '/laravel/framework/src/Illuminate/Database/Events/TransactionRolledBack.php', + 'Illuminate\\Database\\Grammar' => $vendorDir . '/laravel/framework/src/Illuminate/Database/Grammar.php', + 'Illuminate\\Database\\MigrationServiceProvider' => $vendorDir . '/laravel/framework/src/Illuminate/Database/MigrationServiceProvider.php', + 'Illuminate\\Database\\Migrations\\DatabaseMigrationRepository' => $vendorDir . '/laravel/framework/src/Illuminate/Database/Migrations/DatabaseMigrationRepository.php', + 'Illuminate\\Database\\Migrations\\Migration' => $vendorDir . '/laravel/framework/src/Illuminate/Database/Migrations/Migration.php', + 'Illuminate\\Database\\Migrations\\MigrationCreator' => $vendorDir . '/laravel/framework/src/Illuminate/Database/Migrations/MigrationCreator.php', + 'Illuminate\\Database\\Migrations\\MigrationRepositoryInterface' => $vendorDir . '/laravel/framework/src/Illuminate/Database/Migrations/MigrationRepositoryInterface.php', + 'Illuminate\\Database\\Migrations\\Migrator' => $vendorDir . '/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php', + 'Illuminate\\Database\\MySqlConnection' => $vendorDir . '/laravel/framework/src/Illuminate/Database/MySqlConnection.php', + 'Illuminate\\Database\\PostgresConnection' => $vendorDir . '/laravel/framework/src/Illuminate/Database/PostgresConnection.php', + 'Illuminate\\Database\\QueryException' => $vendorDir . '/laravel/framework/src/Illuminate/Database/QueryException.php', + 'Illuminate\\Database\\Query\\Builder' => $vendorDir . '/laravel/framework/src/Illuminate/Database/Query/Builder.php', + 'Illuminate\\Database\\Query\\Expression' => $vendorDir . '/laravel/framework/src/Illuminate/Database/Query/Expression.php', + 'Illuminate\\Database\\Query\\Grammars\\Grammar' => $vendorDir . '/laravel/framework/src/Illuminate/Database/Query/Grammars/Grammar.php', + 'Illuminate\\Database\\Query\\Grammars\\MySqlGrammar' => $vendorDir . '/laravel/framework/src/Illuminate/Database/Query/Grammars/MySqlGrammar.php', + 'Illuminate\\Database\\Query\\Grammars\\PostgresGrammar' => $vendorDir . '/laravel/framework/src/Illuminate/Database/Query/Grammars/PostgresGrammar.php', + 'Illuminate\\Database\\Query\\Grammars\\SQLiteGrammar' => $vendorDir . '/laravel/framework/src/Illuminate/Database/Query/Grammars/SQLiteGrammar.php', + 'Illuminate\\Database\\Query\\Grammars\\SqlServerGrammar' => $vendorDir . '/laravel/framework/src/Illuminate/Database/Query/Grammars/SqlServerGrammar.php', + 'Illuminate\\Database\\Query\\JoinClause' => $vendorDir . '/laravel/framework/src/Illuminate/Database/Query/JoinClause.php', + 'Illuminate\\Database\\Query\\JsonExpression' => $vendorDir . '/laravel/framework/src/Illuminate/Database/Query/JsonExpression.php', + 'Illuminate\\Database\\Query\\Processors\\MySqlProcessor' => $vendorDir . '/laravel/framework/src/Illuminate/Database/Query/Processors/MySqlProcessor.php', + 'Illuminate\\Database\\Query\\Processors\\PostgresProcessor' => $vendorDir . '/laravel/framework/src/Illuminate/Database/Query/Processors/PostgresProcessor.php', + 'Illuminate\\Database\\Query\\Processors\\Processor' => $vendorDir . '/laravel/framework/src/Illuminate/Database/Query/Processors/Processor.php', + 'Illuminate\\Database\\Query\\Processors\\SQLiteProcessor' => $vendorDir . '/laravel/framework/src/Illuminate/Database/Query/Processors/SQLiteProcessor.php', + 'Illuminate\\Database\\Query\\Processors\\SqlServerProcessor' => $vendorDir . '/laravel/framework/src/Illuminate/Database/Query/Processors/SqlServerProcessor.php', + 'Illuminate\\Database\\SQLiteConnection' => $vendorDir . '/laravel/framework/src/Illuminate/Database/SQLiteConnection.php', + 'Illuminate\\Database\\Schema\\Blueprint' => $vendorDir . '/laravel/framework/src/Illuminate/Database/Schema/Blueprint.php', + 'Illuminate\\Database\\Schema\\Builder' => $vendorDir . '/laravel/framework/src/Illuminate/Database/Schema/Builder.php', + 'Illuminate\\Database\\Schema\\Grammars\\ChangeColumn' => $vendorDir . '/laravel/framework/src/Illuminate/Database/Schema/Grammars/ChangeColumn.php', + 'Illuminate\\Database\\Schema\\Grammars\\Grammar' => $vendorDir . '/laravel/framework/src/Illuminate/Database/Schema/Grammars/Grammar.php', + 'Illuminate\\Database\\Schema\\Grammars\\MySqlGrammar' => $vendorDir . '/laravel/framework/src/Illuminate/Database/Schema/Grammars/MySqlGrammar.php', + 'Illuminate\\Database\\Schema\\Grammars\\PostgresGrammar' => $vendorDir . '/laravel/framework/src/Illuminate/Database/Schema/Grammars/PostgresGrammar.php', + 'Illuminate\\Database\\Schema\\Grammars\\RenameColumn' => $vendorDir . '/laravel/framework/src/Illuminate/Database/Schema/Grammars/RenameColumn.php', + 'Illuminate\\Database\\Schema\\Grammars\\SQLiteGrammar' => $vendorDir . '/laravel/framework/src/Illuminate/Database/Schema/Grammars/SQLiteGrammar.php', + 'Illuminate\\Database\\Schema\\Grammars\\SqlServerGrammar' => $vendorDir . '/laravel/framework/src/Illuminate/Database/Schema/Grammars/SqlServerGrammar.php', + 'Illuminate\\Database\\Schema\\MySqlBuilder' => $vendorDir . '/laravel/framework/src/Illuminate/Database/Schema/MySqlBuilder.php', + 'Illuminate\\Database\\Schema\\PostgresBuilder' => $vendorDir . '/laravel/framework/src/Illuminate/Database/Schema/PostgresBuilder.php', + 'Illuminate\\Database\\Schema\\SQLiteBuilder' => $vendorDir . '/laravel/framework/src/Illuminate/Database/Schema/SQLiteBuilder.php', + 'Illuminate\\Database\\Schema\\SqlServerBuilder' => $vendorDir . '/laravel/framework/src/Illuminate/Database/Schema/SqlServerBuilder.php', + 'Illuminate\\Database\\Seeder' => $vendorDir . '/laravel/framework/src/Illuminate/Database/Seeder.php', + 'Illuminate\\Database\\SqlServerConnection' => $vendorDir . '/laravel/framework/src/Illuminate/Database/SqlServerConnection.php', + 'Illuminate\\Encryption\\Encrypter' => $vendorDir . '/laravel/framework/src/Illuminate/Encryption/Encrypter.php', + 'Illuminate\\Encryption\\EncryptionServiceProvider' => $vendorDir . '/laravel/framework/src/Illuminate/Encryption/EncryptionServiceProvider.php', + 'Illuminate\\Events\\CallQueuedListener' => $vendorDir . '/laravel/framework/src/Illuminate/Events/CallQueuedListener.php', + 'Illuminate\\Events\\Dispatcher' => $vendorDir . '/laravel/framework/src/Illuminate/Events/Dispatcher.php', + 'Illuminate\\Events\\EventServiceProvider' => $vendorDir . '/laravel/framework/src/Illuminate/Events/EventServiceProvider.php', + 'Illuminate\\Filesystem\\Filesystem' => $vendorDir . '/laravel/framework/src/Illuminate/Filesystem/Filesystem.php', + 'Illuminate\\Filesystem\\FilesystemAdapter' => $vendorDir . '/laravel/framework/src/Illuminate/Filesystem/FilesystemAdapter.php', + 'Illuminate\\Filesystem\\FilesystemManager' => $vendorDir . '/laravel/framework/src/Illuminate/Filesystem/FilesystemManager.php', + 'Illuminate\\Filesystem\\FilesystemServiceProvider' => $vendorDir . '/laravel/framework/src/Illuminate/Filesystem/FilesystemServiceProvider.php', + 'Illuminate\\Foundation\\AliasLoader' => $vendorDir . '/laravel/framework/src/Illuminate/Foundation/AliasLoader.php', + 'Illuminate\\Foundation\\Application' => $vendorDir . '/laravel/framework/src/Illuminate/Foundation/Application.php', + 'Illuminate\\Foundation\\Auth\\Access\\Authorizable' => $vendorDir . '/laravel/framework/src/Illuminate/Foundation/Auth/Access/Authorizable.php', + 'Illuminate\\Foundation\\Auth\\Access\\AuthorizesRequests' => $vendorDir . '/laravel/framework/src/Illuminate/Foundation/Auth/Access/AuthorizesRequests.php', + 'Illuminate\\Foundation\\Auth\\AuthenticatesUsers' => $vendorDir . '/laravel/framework/src/Illuminate/Foundation/Auth/AuthenticatesUsers.php', + 'Illuminate\\Foundation\\Auth\\RedirectsUsers' => $vendorDir . '/laravel/framework/src/Illuminate/Foundation/Auth/RedirectsUsers.php', + 'Illuminate\\Foundation\\Auth\\RegistersUsers' => $vendorDir . '/laravel/framework/src/Illuminate/Foundation/Auth/RegistersUsers.php', + 'Illuminate\\Foundation\\Auth\\ResetsPasswords' => $vendorDir . '/laravel/framework/src/Illuminate/Foundation/Auth/ResetsPasswords.php', + 'Illuminate\\Foundation\\Auth\\SendsPasswordResetEmails' => $vendorDir . '/laravel/framework/src/Illuminate/Foundation/Auth/SendsPasswordResetEmails.php', + 'Illuminate\\Foundation\\Auth\\ThrottlesLogins' => $vendorDir . '/laravel/framework/src/Illuminate/Foundation/Auth/ThrottlesLogins.php', + 'Illuminate\\Foundation\\Auth\\User' => $vendorDir . '/laravel/framework/src/Illuminate/Foundation/Auth/User.php', + 'Illuminate\\Foundation\\Bootstrap\\BootProviders' => $vendorDir . '/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php', + 'Illuminate\\Foundation\\Bootstrap\\HandleExceptions' => $vendorDir . '/laravel/framework/src/Illuminate/Foundation/Bootstrap/HandleExceptions.php', + 'Illuminate\\Foundation\\Bootstrap\\LoadConfiguration' => $vendorDir . '/laravel/framework/src/Illuminate/Foundation/Bootstrap/LoadConfiguration.php', + 'Illuminate\\Foundation\\Bootstrap\\LoadEnvironmentVariables' => $vendorDir . '/laravel/framework/src/Illuminate/Foundation/Bootstrap/LoadEnvironmentVariables.php', + 'Illuminate\\Foundation\\Bootstrap\\RegisterFacades' => $vendorDir . '/laravel/framework/src/Illuminate/Foundation/Bootstrap/RegisterFacades.php', + 'Illuminate\\Foundation\\Bootstrap\\RegisterProviders' => $vendorDir . '/laravel/framework/src/Illuminate/Foundation/Bootstrap/RegisterProviders.php', + 'Illuminate\\Foundation\\Bootstrap\\SetRequestForConsole' => $vendorDir . '/laravel/framework/src/Illuminate/Foundation/Bootstrap/SetRequestForConsole.php', + 'Illuminate\\Foundation\\Bus\\Dispatchable' => $vendorDir . '/laravel/framework/src/Illuminate/Foundation/Bus/Dispatchable.php', + 'Illuminate\\Foundation\\Bus\\DispatchesJobs' => $vendorDir . '/laravel/framework/src/Illuminate/Foundation/Bus/DispatchesJobs.php', + 'Illuminate\\Foundation\\Bus\\PendingChain' => $vendorDir . '/laravel/framework/src/Illuminate/Foundation/Bus/PendingChain.php', + 'Illuminate\\Foundation\\Bus\\PendingDispatch' => $vendorDir . '/laravel/framework/src/Illuminate/Foundation/Bus/PendingDispatch.php', + 'Illuminate\\Foundation\\ComposerScripts' => $vendorDir . '/laravel/framework/src/Illuminate/Foundation/ComposerScripts.php', + 'Illuminate\\Foundation\\Console\\AppNameCommand' => $vendorDir . '/laravel/framework/src/Illuminate/Foundation/Console/AppNameCommand.php', + 'Illuminate\\Foundation\\Console\\ClearCompiledCommand' => $vendorDir . '/laravel/framework/src/Illuminate/Foundation/Console/ClearCompiledCommand.php', + 'Illuminate\\Foundation\\Console\\ClosureCommand' => $vendorDir . '/laravel/framework/src/Illuminate/Foundation/Console/ClosureCommand.php', + 'Illuminate\\Foundation\\Console\\ConfigCacheCommand' => $vendorDir . '/laravel/framework/src/Illuminate/Foundation/Console/ConfigCacheCommand.php', + 'Illuminate\\Foundation\\Console\\ConfigClearCommand' => $vendorDir . '/laravel/framework/src/Illuminate/Foundation/Console/ConfigClearCommand.php', + 'Illuminate\\Foundation\\Console\\ConsoleMakeCommand' => $vendorDir . '/laravel/framework/src/Illuminate/Foundation/Console/ConsoleMakeCommand.php', + 'Illuminate\\Foundation\\Console\\DownCommand' => $vendorDir . '/laravel/framework/src/Illuminate/Foundation/Console/DownCommand.php', + 'Illuminate\\Foundation\\Console\\EnvironmentCommand' => $vendorDir . '/laravel/framework/src/Illuminate/Foundation/Console/EnvironmentCommand.php', + 'Illuminate\\Foundation\\Console\\EventGenerateCommand' => $vendorDir . '/laravel/framework/src/Illuminate/Foundation/Console/EventGenerateCommand.php', + 'Illuminate\\Foundation\\Console\\EventMakeCommand' => $vendorDir . '/laravel/framework/src/Illuminate/Foundation/Console/EventMakeCommand.php', + 'Illuminate\\Foundation\\Console\\JobMakeCommand' => $vendorDir . '/laravel/framework/src/Illuminate/Foundation/Console/JobMakeCommand.php', + 'Illuminate\\Foundation\\Console\\Kernel' => $vendorDir . '/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php', + 'Illuminate\\Foundation\\Console\\KeyGenerateCommand' => $vendorDir . '/laravel/framework/src/Illuminate/Foundation/Console/KeyGenerateCommand.php', + 'Illuminate\\Foundation\\Console\\ListenerMakeCommand' => $vendorDir . '/laravel/framework/src/Illuminate/Foundation/Console/ListenerMakeCommand.php', + 'Illuminate\\Foundation\\Console\\MailMakeCommand' => $vendorDir . '/laravel/framework/src/Illuminate/Foundation/Console/MailMakeCommand.php', + 'Illuminate\\Foundation\\Console\\ModelMakeCommand' => $vendorDir . '/laravel/framework/src/Illuminate/Foundation/Console/ModelMakeCommand.php', + 'Illuminate\\Foundation\\Console\\NotificationMakeCommand' => $vendorDir . '/laravel/framework/src/Illuminate/Foundation/Console/NotificationMakeCommand.php', + 'Illuminate\\Foundation\\Console\\OptimizeCommand' => $vendorDir . '/laravel/framework/src/Illuminate/Foundation/Console/OptimizeCommand.php', + 'Illuminate\\Foundation\\Console\\PackageDiscoverCommand' => $vendorDir . '/laravel/framework/src/Illuminate/Foundation/Console/PackageDiscoverCommand.php', + 'Illuminate\\Foundation\\Console\\PolicyMakeCommand' => $vendorDir . '/laravel/framework/src/Illuminate/Foundation/Console/PolicyMakeCommand.php', + 'Illuminate\\Foundation\\Console\\PresetCommand' => $vendorDir . '/laravel/framework/src/Illuminate/Foundation/Console/PresetCommand.php', + 'Illuminate\\Foundation\\Console\\Presets\\Bootstrap' => $vendorDir . '/laravel/framework/src/Illuminate/Foundation/Console/Presets/Bootstrap.php', + 'Illuminate\\Foundation\\Console\\Presets\\None' => $vendorDir . '/laravel/framework/src/Illuminate/Foundation/Console/Presets/None.php', + 'Illuminate\\Foundation\\Console\\Presets\\Preset' => $vendorDir . '/laravel/framework/src/Illuminate/Foundation/Console/Presets/Preset.php', + 'Illuminate\\Foundation\\Console\\Presets\\React' => $vendorDir . '/laravel/framework/src/Illuminate/Foundation/Console/Presets/React.php', + 'Illuminate\\Foundation\\Console\\Presets\\Vue' => $vendorDir . '/laravel/framework/src/Illuminate/Foundation/Console/Presets/Vue.php', + 'Illuminate\\Foundation\\Console\\ProviderMakeCommand' => $vendorDir . '/laravel/framework/src/Illuminate/Foundation/Console/ProviderMakeCommand.php', + 'Illuminate\\Foundation\\Console\\QueuedCommand' => $vendorDir . '/laravel/framework/src/Illuminate/Foundation/Console/QueuedCommand.php', + 'Illuminate\\Foundation\\Console\\RequestMakeCommand' => $vendorDir . '/laravel/framework/src/Illuminate/Foundation/Console/RequestMakeCommand.php', + 'Illuminate\\Foundation\\Console\\ResourceMakeCommand' => $vendorDir . '/laravel/framework/src/Illuminate/Foundation/Console/ResourceMakeCommand.php', + 'Illuminate\\Foundation\\Console\\RouteCacheCommand' => $vendorDir . '/laravel/framework/src/Illuminate/Foundation/Console/RouteCacheCommand.php', + 'Illuminate\\Foundation\\Console\\RouteClearCommand' => $vendorDir . '/laravel/framework/src/Illuminate/Foundation/Console/RouteClearCommand.php', + 'Illuminate\\Foundation\\Console\\RouteListCommand' => $vendorDir . '/laravel/framework/src/Illuminate/Foundation/Console/RouteListCommand.php', + 'Illuminate\\Foundation\\Console\\RuleMakeCommand' => $vendorDir . '/laravel/framework/src/Illuminate/Foundation/Console/RuleMakeCommand.php', + 'Illuminate\\Foundation\\Console\\ServeCommand' => $vendorDir . '/laravel/framework/src/Illuminate/Foundation/Console/ServeCommand.php', + 'Illuminate\\Foundation\\Console\\StorageLinkCommand' => $vendorDir . '/laravel/framework/src/Illuminate/Foundation/Console/StorageLinkCommand.php', + 'Illuminate\\Foundation\\Console\\TestMakeCommand' => $vendorDir . '/laravel/framework/src/Illuminate/Foundation/Console/TestMakeCommand.php', + 'Illuminate\\Foundation\\Console\\UpCommand' => $vendorDir . '/laravel/framework/src/Illuminate/Foundation/Console/UpCommand.php', + 'Illuminate\\Foundation\\Console\\VendorPublishCommand' => $vendorDir . '/laravel/framework/src/Illuminate/Foundation/Console/VendorPublishCommand.php', + 'Illuminate\\Foundation\\Console\\ViewClearCommand' => $vendorDir . '/laravel/framework/src/Illuminate/Foundation/Console/ViewClearCommand.php', + 'Illuminate\\Foundation\\EnvironmentDetector' => $vendorDir . '/laravel/framework/src/Illuminate/Foundation/EnvironmentDetector.php', + 'Illuminate\\Foundation\\Events\\Dispatchable' => $vendorDir . '/laravel/framework/src/Illuminate/Foundation/Events/Dispatchable.php', + 'Illuminate\\Foundation\\Events\\LocaleUpdated' => $vendorDir . '/laravel/framework/src/Illuminate/Foundation/Events/LocaleUpdated.php', + 'Illuminate\\Foundation\\Exceptions\\Handler' => $vendorDir . '/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php', + 'Illuminate\\Foundation\\Http\\Events\\RequestHandled' => $vendorDir . '/laravel/framework/src/Illuminate/Foundation/Http/Events/RequestHandled.php', + 'Illuminate\\Foundation\\Http\\Exceptions\\MaintenanceModeException' => $vendorDir . '/laravel/framework/src/Illuminate/Foundation/Http/Exceptions/MaintenanceModeException.php', + 'Illuminate\\Foundation\\Http\\FormRequest' => $vendorDir . '/laravel/framework/src/Illuminate/Foundation/Http/FormRequest.php', + 'Illuminate\\Foundation\\Http\\Kernel' => $vendorDir . '/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php', + 'Illuminate\\Foundation\\Http\\Middleware\\CheckForMaintenanceMode' => $vendorDir . '/laravel/framework/src/Illuminate/Foundation/Http/Middleware/CheckForMaintenanceMode.php', + 'Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull' => $vendorDir . '/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php', + 'Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest' => $vendorDir . '/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php', + 'Illuminate\\Foundation\\Http\\Middleware\\TrimStrings' => $vendorDir . '/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php', + 'Illuminate\\Foundation\\Http\\Middleware\\ValidatePostSize' => $vendorDir . '/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ValidatePostSize.php', + 'Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken' => $vendorDir . '/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php', + 'Illuminate\\Foundation\\Inspiring' => $vendorDir . '/laravel/framework/src/Illuminate/Foundation/Inspiring.php', + 'Illuminate\\Foundation\\PackageManifest' => $vendorDir . '/laravel/framework/src/Illuminate/Foundation/PackageManifest.php', + 'Illuminate\\Foundation\\ProviderRepository' => $vendorDir . '/laravel/framework/src/Illuminate/Foundation/ProviderRepository.php', + 'Illuminate\\Foundation\\Providers\\ArtisanServiceProvider' => $vendorDir . '/laravel/framework/src/Illuminate/Foundation/Providers/ArtisanServiceProvider.php', + 'Illuminate\\Foundation\\Providers\\ComposerServiceProvider' => $vendorDir . '/laravel/framework/src/Illuminate/Foundation/Providers/ComposerServiceProvider.php', + 'Illuminate\\Foundation\\Providers\\ConsoleSupportServiceProvider' => $vendorDir . '/laravel/framework/src/Illuminate/Foundation/Providers/ConsoleSupportServiceProvider.php', + 'Illuminate\\Foundation\\Providers\\FormRequestServiceProvider' => $vendorDir . '/laravel/framework/src/Illuminate/Foundation/Providers/FormRequestServiceProvider.php', + 'Illuminate\\Foundation\\Providers\\FoundationServiceProvider' => $vendorDir . '/laravel/framework/src/Illuminate/Foundation/Providers/FoundationServiceProvider.php', + 'Illuminate\\Foundation\\Support\\Providers\\AuthServiceProvider' => $vendorDir . '/laravel/framework/src/Illuminate/Foundation/Support/Providers/AuthServiceProvider.php', + 'Illuminate\\Foundation\\Support\\Providers\\EventServiceProvider' => $vendorDir . '/laravel/framework/src/Illuminate/Foundation/Support/Providers/EventServiceProvider.php', + 'Illuminate\\Foundation\\Support\\Providers\\RouteServiceProvider' => $vendorDir . '/laravel/framework/src/Illuminate/Foundation/Support/Providers/RouteServiceProvider.php', + 'Illuminate\\Foundation\\Testing\\Concerns\\InteractsWithAuthentication' => $vendorDir . '/laravel/framework/src/Illuminate/Foundation/Testing/Concerns/InteractsWithAuthentication.php', + 'Illuminate\\Foundation\\Testing\\Concerns\\InteractsWithConsole' => $vendorDir . '/laravel/framework/src/Illuminate/Foundation/Testing/Concerns/InteractsWithConsole.php', + 'Illuminate\\Foundation\\Testing\\Concerns\\InteractsWithContainer' => $vendorDir . '/laravel/framework/src/Illuminate/Foundation/Testing/Concerns/InteractsWithContainer.php', + 'Illuminate\\Foundation\\Testing\\Concerns\\InteractsWithDatabase' => $vendorDir . '/laravel/framework/src/Illuminate/Foundation/Testing/Concerns/InteractsWithDatabase.php', + 'Illuminate\\Foundation\\Testing\\Concerns\\InteractsWithExceptionHandling' => $vendorDir . '/laravel/framework/src/Illuminate/Foundation/Testing/Concerns/InteractsWithExceptionHandling.php', + 'Illuminate\\Foundation\\Testing\\Concerns\\InteractsWithSession' => $vendorDir . '/laravel/framework/src/Illuminate/Foundation/Testing/Concerns/InteractsWithSession.php', + 'Illuminate\\Foundation\\Testing\\Concerns\\MakesHttpRequests' => $vendorDir . '/laravel/framework/src/Illuminate/Foundation/Testing/Concerns/MakesHttpRequests.php', + 'Illuminate\\Foundation\\Testing\\Concerns\\MocksApplicationServices' => $vendorDir . '/laravel/framework/src/Illuminate/Foundation/Testing/Concerns/MocksApplicationServices.php', + 'Illuminate\\Foundation\\Testing\\Constraints\\HasInDatabase' => $vendorDir . '/laravel/framework/src/Illuminate/Foundation/Testing/Constraints/HasInDatabase.php', + 'Illuminate\\Foundation\\Testing\\Constraints\\SoftDeletedInDatabase' => $vendorDir . '/laravel/framework/src/Illuminate/Foundation/Testing/Constraints/SoftDeletedInDatabase.php', + 'Illuminate\\Foundation\\Testing\\DatabaseMigrations' => $vendorDir . '/laravel/framework/src/Illuminate/Foundation/Testing/DatabaseMigrations.php', + 'Illuminate\\Foundation\\Testing\\DatabaseTransactions' => $vendorDir . '/laravel/framework/src/Illuminate/Foundation/Testing/DatabaseTransactions.php', + 'Illuminate\\Foundation\\Testing\\HttpException' => $vendorDir . '/laravel/framework/src/Illuminate/Foundation/Testing/HttpException.php', + 'Illuminate\\Foundation\\Testing\\RefreshDatabase' => $vendorDir . '/laravel/framework/src/Illuminate/Foundation/Testing/RefreshDatabase.php', + 'Illuminate\\Foundation\\Testing\\RefreshDatabaseState' => $vendorDir . '/laravel/framework/src/Illuminate/Foundation/Testing/RefreshDatabaseState.php', + 'Illuminate\\Foundation\\Testing\\TestCase' => $vendorDir . '/laravel/framework/src/Illuminate/Foundation/Testing/TestCase.php', + 'Illuminate\\Foundation\\Testing\\TestResponse' => $vendorDir . '/laravel/framework/src/Illuminate/Foundation/Testing/TestResponse.php', + 'Illuminate\\Foundation\\Testing\\WithoutEvents' => $vendorDir . '/laravel/framework/src/Illuminate/Foundation/Testing/WithoutEvents.php', + 'Illuminate\\Foundation\\Testing\\WithoutMiddleware' => $vendorDir . '/laravel/framework/src/Illuminate/Foundation/Testing/WithoutMiddleware.php', + 'Illuminate\\Foundation\\Validation\\ValidatesRequests' => $vendorDir . '/laravel/framework/src/Illuminate/Foundation/Validation/ValidatesRequests.php', + 'Illuminate\\Hashing\\BcryptHasher' => $vendorDir . '/laravel/framework/src/Illuminate/Hashing/BcryptHasher.php', + 'Illuminate\\Hashing\\HashServiceProvider' => $vendorDir . '/laravel/framework/src/Illuminate/Hashing/HashServiceProvider.php', + 'Illuminate\\Http\\Concerns\\InteractsWithContentTypes' => $vendorDir . '/laravel/framework/src/Illuminate/Http/Concerns/InteractsWithContentTypes.php', + 'Illuminate\\Http\\Concerns\\InteractsWithFlashData' => $vendorDir . '/laravel/framework/src/Illuminate/Http/Concerns/InteractsWithFlashData.php', + 'Illuminate\\Http\\Concerns\\InteractsWithInput' => $vendorDir . '/laravel/framework/src/Illuminate/Http/Concerns/InteractsWithInput.php', + 'Illuminate\\Http\\Exceptions\\HttpResponseException' => $vendorDir . '/laravel/framework/src/Illuminate/Http/Exceptions/HttpResponseException.php', + 'Illuminate\\Http\\Exceptions\\PostTooLargeException' => $vendorDir . '/laravel/framework/src/Illuminate/Http/Exceptions/PostTooLargeException.php', + 'Illuminate\\Http\\File' => $vendorDir . '/laravel/framework/src/Illuminate/Http/File.php', + 'Illuminate\\Http\\FileHelpers' => $vendorDir . '/laravel/framework/src/Illuminate/Http/FileHelpers.php', + 'Illuminate\\Http\\JsonResponse' => $vendorDir . '/laravel/framework/src/Illuminate/Http/JsonResponse.php', + 'Illuminate\\Http\\Middleware\\CheckResponseForModifications' => $vendorDir . '/laravel/framework/src/Illuminate/Http/Middleware/CheckResponseForModifications.php', + 'Illuminate\\Http\\Middleware\\FrameGuard' => $vendorDir . '/laravel/framework/src/Illuminate/Http/Middleware/FrameGuard.php', + 'Illuminate\\Http\\RedirectResponse' => $vendorDir . '/laravel/framework/src/Illuminate/Http/RedirectResponse.php', + 'Illuminate\\Http\\Request' => $vendorDir . '/laravel/framework/src/Illuminate/Http/Request.php', + 'Illuminate\\Http\\Resources\\CollectsResources' => $vendorDir . '/laravel/framework/src/Illuminate/Http/Resources/CollectsResources.php', + 'Illuminate\\Http\\Resources\\DelegatesToResource' => $vendorDir . '/laravel/framework/src/Illuminate/Http/Resources/DelegatesToResource.php', + 'Illuminate\\Http\\Resources\\Json\\PaginatedResourceResponse' => $vendorDir . '/laravel/framework/src/Illuminate/Http/Resources/Json/PaginatedResourceResponse.php', + 'Illuminate\\Http\\Resources\\Json\\Resource' => $vendorDir . '/laravel/framework/src/Illuminate/Http/Resources/Json/Resource.php', + 'Illuminate\\Http\\Resources\\Json\\ResourceCollection' => $vendorDir . '/laravel/framework/src/Illuminate/Http/Resources/Json/ResourceCollection.php', + 'Illuminate\\Http\\Resources\\Json\\ResourceResponse' => $vendorDir . '/laravel/framework/src/Illuminate/Http/Resources/Json/ResourceResponse.php', + 'Illuminate\\Http\\Resources\\MergeValue' => $vendorDir . '/laravel/framework/src/Illuminate/Http/Resources/MergeValue.php', + 'Illuminate\\Http\\Resources\\MissingValue' => $vendorDir . '/laravel/framework/src/Illuminate/Http/Resources/MissingValue.php', + 'Illuminate\\Http\\Response' => $vendorDir . '/laravel/framework/src/Illuminate/Http/Response.php', + 'Illuminate\\Http\\ResponseTrait' => $vendorDir . '/laravel/framework/src/Illuminate/Http/ResponseTrait.php', + 'Illuminate\\Http\\Testing\\File' => $vendorDir . '/laravel/framework/src/Illuminate/Http/Testing/File.php', + 'Illuminate\\Http\\Testing\\FileFactory' => $vendorDir . '/laravel/framework/src/Illuminate/Http/Testing/FileFactory.php', + 'Illuminate\\Http\\Testing\\MimeType' => $vendorDir . '/laravel/framework/src/Illuminate/Http/Testing/MimeType.php', + 'Illuminate\\Http\\UploadedFile' => $vendorDir . '/laravel/framework/src/Illuminate/Http/UploadedFile.php', + 'Illuminate\\Log\\Events\\MessageLogged' => $vendorDir . '/laravel/framework/src/Illuminate/Log/Events/MessageLogged.php', + 'Illuminate\\Log\\LogServiceProvider' => $vendorDir . '/laravel/framework/src/Illuminate/Log/LogServiceProvider.php', + 'Illuminate\\Log\\Writer' => $vendorDir . '/laravel/framework/src/Illuminate/Log/Writer.php', + 'Illuminate\\Mail\\Events\\MessageSending' => $vendorDir . '/laravel/framework/src/Illuminate/Mail/Events/MessageSending.php', + 'Illuminate\\Mail\\Events\\MessageSent' => $vendorDir . '/laravel/framework/src/Illuminate/Mail/Events/MessageSent.php', + 'Illuminate\\Mail\\MailServiceProvider' => $vendorDir . '/laravel/framework/src/Illuminate/Mail/MailServiceProvider.php', + 'Illuminate\\Mail\\Mailable' => $vendorDir . '/laravel/framework/src/Illuminate/Mail/Mailable.php', + 'Illuminate\\Mail\\Mailer' => $vendorDir . '/laravel/framework/src/Illuminate/Mail/Mailer.php', + 'Illuminate\\Mail\\Markdown' => $vendorDir . '/laravel/framework/src/Illuminate/Mail/Markdown.php', + 'Illuminate\\Mail\\Message' => $vendorDir . '/laravel/framework/src/Illuminate/Mail/Message.php', + 'Illuminate\\Mail\\PendingMail' => $vendorDir . '/laravel/framework/src/Illuminate/Mail/PendingMail.php', + 'Illuminate\\Mail\\SendQueuedMailable' => $vendorDir . '/laravel/framework/src/Illuminate/Mail/SendQueuedMailable.php', + 'Illuminate\\Mail\\TransportManager' => $vendorDir . '/laravel/framework/src/Illuminate/Mail/TransportManager.php', + 'Illuminate\\Mail\\Transport\\ArrayTransport' => $vendorDir . '/laravel/framework/src/Illuminate/Mail/Transport/ArrayTransport.php', + 'Illuminate\\Mail\\Transport\\LogTransport' => $vendorDir . '/laravel/framework/src/Illuminate/Mail/Transport/LogTransport.php', + 'Illuminate\\Mail\\Transport\\MailgunTransport' => $vendorDir . '/laravel/framework/src/Illuminate/Mail/Transport/MailgunTransport.php', + 'Illuminate\\Mail\\Transport\\MandrillTransport' => $vendorDir . '/laravel/framework/src/Illuminate/Mail/Transport/MandrillTransport.php', + 'Illuminate\\Mail\\Transport\\SesTransport' => $vendorDir . '/laravel/framework/src/Illuminate/Mail/Transport/SesTransport.php', + 'Illuminate\\Mail\\Transport\\SparkPostTransport' => $vendorDir . '/laravel/framework/src/Illuminate/Mail/Transport/SparkPostTransport.php', + 'Illuminate\\Mail\\Transport\\Transport' => $vendorDir . '/laravel/framework/src/Illuminate/Mail/Transport/Transport.php', + 'Illuminate\\Notifications\\Action' => $vendorDir . '/laravel/framework/src/Illuminate/Notifications/Action.php', + 'Illuminate\\Notifications\\AnonymousNotifiable' => $vendorDir . '/laravel/framework/src/Illuminate/Notifications/AnonymousNotifiable.php', + 'Illuminate\\Notifications\\ChannelManager' => $vendorDir . '/laravel/framework/src/Illuminate/Notifications/ChannelManager.php', + 'Illuminate\\Notifications\\Channels\\BroadcastChannel' => $vendorDir . '/laravel/framework/src/Illuminate/Notifications/Channels/BroadcastChannel.php', + 'Illuminate\\Notifications\\Channels\\DatabaseChannel' => $vendorDir . '/laravel/framework/src/Illuminate/Notifications/Channels/DatabaseChannel.php', + 'Illuminate\\Notifications\\Channels\\MailChannel' => $vendorDir . '/laravel/framework/src/Illuminate/Notifications/Channels/MailChannel.php', + 'Illuminate\\Notifications\\Channels\\NexmoSmsChannel' => $vendorDir . '/laravel/framework/src/Illuminate/Notifications/Channels/NexmoSmsChannel.php', + 'Illuminate\\Notifications\\Channels\\SlackWebhookChannel' => $vendorDir . '/laravel/framework/src/Illuminate/Notifications/Channels/SlackWebhookChannel.php', + 'Illuminate\\Notifications\\Console\\NotificationTableCommand' => $vendorDir . '/laravel/framework/src/Illuminate/Notifications/Console/NotificationTableCommand.php', + 'Illuminate\\Notifications\\DatabaseNotification' => $vendorDir . '/laravel/framework/src/Illuminate/Notifications/DatabaseNotification.php', + 'Illuminate\\Notifications\\DatabaseNotificationCollection' => $vendorDir . '/laravel/framework/src/Illuminate/Notifications/DatabaseNotificationCollection.php', + 'Illuminate\\Notifications\\Events\\BroadcastNotificationCreated' => $vendorDir . '/laravel/framework/src/Illuminate/Notifications/Events/BroadcastNotificationCreated.php', + 'Illuminate\\Notifications\\Events\\NotificationFailed' => $vendorDir . '/laravel/framework/src/Illuminate/Notifications/Events/NotificationFailed.php', + 'Illuminate\\Notifications\\Events\\NotificationSending' => $vendorDir . '/laravel/framework/src/Illuminate/Notifications/Events/NotificationSending.php', + 'Illuminate\\Notifications\\Events\\NotificationSent' => $vendorDir . '/laravel/framework/src/Illuminate/Notifications/Events/NotificationSent.php', + 'Illuminate\\Notifications\\HasDatabaseNotifications' => $vendorDir . '/laravel/framework/src/Illuminate/Notifications/HasDatabaseNotifications.php', + 'Illuminate\\Notifications\\Messages\\BroadcastMessage' => $vendorDir . '/laravel/framework/src/Illuminate/Notifications/Messages/BroadcastMessage.php', + 'Illuminate\\Notifications\\Messages\\DatabaseMessage' => $vendorDir . '/laravel/framework/src/Illuminate/Notifications/Messages/DatabaseMessage.php', + 'Illuminate\\Notifications\\Messages\\MailMessage' => $vendorDir . '/laravel/framework/src/Illuminate/Notifications/Messages/MailMessage.php', + 'Illuminate\\Notifications\\Messages\\NexmoMessage' => $vendorDir . '/laravel/framework/src/Illuminate/Notifications/Messages/NexmoMessage.php', + 'Illuminate\\Notifications\\Messages\\SimpleMessage' => $vendorDir . '/laravel/framework/src/Illuminate/Notifications/Messages/SimpleMessage.php', + 'Illuminate\\Notifications\\Messages\\SlackAttachment' => $vendorDir . '/laravel/framework/src/Illuminate/Notifications/Messages/SlackAttachment.php', + 'Illuminate\\Notifications\\Messages\\SlackAttachmentField' => $vendorDir . '/laravel/framework/src/Illuminate/Notifications/Messages/SlackAttachmentField.php', + 'Illuminate\\Notifications\\Messages\\SlackMessage' => $vendorDir . '/laravel/framework/src/Illuminate/Notifications/Messages/SlackMessage.php', + 'Illuminate\\Notifications\\Notifiable' => $vendorDir . '/laravel/framework/src/Illuminate/Notifications/Notifiable.php', + 'Illuminate\\Notifications\\Notification' => $vendorDir . '/laravel/framework/src/Illuminate/Notifications/Notification.php', + 'Illuminate\\Notifications\\NotificationSender' => $vendorDir . '/laravel/framework/src/Illuminate/Notifications/NotificationSender.php', + 'Illuminate\\Notifications\\NotificationServiceProvider' => $vendorDir . '/laravel/framework/src/Illuminate/Notifications/NotificationServiceProvider.php', + 'Illuminate\\Notifications\\RoutesNotifications' => $vendorDir . '/laravel/framework/src/Illuminate/Notifications/RoutesNotifications.php', + 'Illuminate\\Notifications\\SendQueuedNotifications' => $vendorDir . '/laravel/framework/src/Illuminate/Notifications/SendQueuedNotifications.php', + 'Illuminate\\Pagination\\AbstractPaginator' => $vendorDir . '/laravel/framework/src/Illuminate/Pagination/AbstractPaginator.php', + 'Illuminate\\Pagination\\LengthAwarePaginator' => $vendorDir . '/laravel/framework/src/Illuminate/Pagination/LengthAwarePaginator.php', + 'Illuminate\\Pagination\\PaginationServiceProvider' => $vendorDir . '/laravel/framework/src/Illuminate/Pagination/PaginationServiceProvider.php', + 'Illuminate\\Pagination\\Paginator' => $vendorDir . '/laravel/framework/src/Illuminate/Pagination/Paginator.php', + 'Illuminate\\Pagination\\UrlWindow' => $vendorDir . '/laravel/framework/src/Illuminate/Pagination/UrlWindow.php', + 'Illuminate\\Pipeline\\Hub' => $vendorDir . '/laravel/framework/src/Illuminate/Pipeline/Hub.php', + 'Illuminate\\Pipeline\\Pipeline' => $vendorDir . '/laravel/framework/src/Illuminate/Pipeline/Pipeline.php', + 'Illuminate\\Pipeline\\PipelineServiceProvider' => $vendorDir . '/laravel/framework/src/Illuminate/Pipeline/PipelineServiceProvider.php', + 'Illuminate\\Queue\\BeanstalkdQueue' => $vendorDir . '/laravel/framework/src/Illuminate/Queue/BeanstalkdQueue.php', + 'Illuminate\\Queue\\CallQueuedHandler' => $vendorDir . '/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php', + 'Illuminate\\Queue\\Capsule\\Manager' => $vendorDir . '/laravel/framework/src/Illuminate/Queue/Capsule/Manager.php', + 'Illuminate\\Queue\\Connectors\\BeanstalkdConnector' => $vendorDir . '/laravel/framework/src/Illuminate/Queue/Connectors/BeanstalkdConnector.php', + 'Illuminate\\Queue\\Connectors\\ConnectorInterface' => $vendorDir . '/laravel/framework/src/Illuminate/Queue/Connectors/ConnectorInterface.php', + 'Illuminate\\Queue\\Connectors\\DatabaseConnector' => $vendorDir . '/laravel/framework/src/Illuminate/Queue/Connectors/DatabaseConnector.php', + 'Illuminate\\Queue\\Connectors\\NullConnector' => $vendorDir . '/laravel/framework/src/Illuminate/Queue/Connectors/NullConnector.php', + 'Illuminate\\Queue\\Connectors\\RedisConnector' => $vendorDir . '/laravel/framework/src/Illuminate/Queue/Connectors/RedisConnector.php', + 'Illuminate\\Queue\\Connectors\\SqsConnector' => $vendorDir . '/laravel/framework/src/Illuminate/Queue/Connectors/SqsConnector.php', + 'Illuminate\\Queue\\Connectors\\SyncConnector' => $vendorDir . '/laravel/framework/src/Illuminate/Queue/Connectors/SyncConnector.php', + 'Illuminate\\Queue\\Console\\FailedTableCommand' => $vendorDir . '/laravel/framework/src/Illuminate/Queue/Console/FailedTableCommand.php', + 'Illuminate\\Queue\\Console\\FlushFailedCommand' => $vendorDir . '/laravel/framework/src/Illuminate/Queue/Console/FlushFailedCommand.php', + 'Illuminate\\Queue\\Console\\ForgetFailedCommand' => $vendorDir . '/laravel/framework/src/Illuminate/Queue/Console/ForgetFailedCommand.php', + 'Illuminate\\Queue\\Console\\ListFailedCommand' => $vendorDir . '/laravel/framework/src/Illuminate/Queue/Console/ListFailedCommand.php', + 'Illuminate\\Queue\\Console\\ListenCommand' => $vendorDir . '/laravel/framework/src/Illuminate/Queue/Console/ListenCommand.php', + 'Illuminate\\Queue\\Console\\RestartCommand' => $vendorDir . '/laravel/framework/src/Illuminate/Queue/Console/RestartCommand.php', + 'Illuminate\\Queue\\Console\\RetryCommand' => $vendorDir . '/laravel/framework/src/Illuminate/Queue/Console/RetryCommand.php', + 'Illuminate\\Queue\\Console\\TableCommand' => $vendorDir . '/laravel/framework/src/Illuminate/Queue/Console/TableCommand.php', + 'Illuminate\\Queue\\Console\\WorkCommand' => $vendorDir . '/laravel/framework/src/Illuminate/Queue/Console/WorkCommand.php', + 'Illuminate\\Queue\\DatabaseQueue' => $vendorDir . '/laravel/framework/src/Illuminate/Queue/DatabaseQueue.php', + 'Illuminate\\Queue\\Events\\JobExceptionOccurred' => $vendorDir . '/laravel/framework/src/Illuminate/Queue/Events/JobExceptionOccurred.php', + 'Illuminate\\Queue\\Events\\JobFailed' => $vendorDir . '/laravel/framework/src/Illuminate/Queue/Events/JobFailed.php', + 'Illuminate\\Queue\\Events\\JobProcessed' => $vendorDir . '/laravel/framework/src/Illuminate/Queue/Events/JobProcessed.php', + 'Illuminate\\Queue\\Events\\JobProcessing' => $vendorDir . '/laravel/framework/src/Illuminate/Queue/Events/JobProcessing.php', + 'Illuminate\\Queue\\Events\\Looping' => $vendorDir . '/laravel/framework/src/Illuminate/Queue/Events/Looping.php', + 'Illuminate\\Queue\\Events\\WorkerStopping' => $vendorDir . '/laravel/framework/src/Illuminate/Queue/Events/WorkerStopping.php', + 'Illuminate\\Queue\\Failed\\DatabaseFailedJobProvider' => $vendorDir . '/laravel/framework/src/Illuminate/Queue/Failed/DatabaseFailedJobProvider.php', + 'Illuminate\\Queue\\Failed\\FailedJobProviderInterface' => $vendorDir . '/laravel/framework/src/Illuminate/Queue/Failed/FailedJobProviderInterface.php', + 'Illuminate\\Queue\\Failed\\NullFailedJobProvider' => $vendorDir . '/laravel/framework/src/Illuminate/Queue/Failed/NullFailedJobProvider.php', + 'Illuminate\\Queue\\FailingJob' => $vendorDir . '/laravel/framework/src/Illuminate/Queue/FailingJob.php', + 'Illuminate\\Queue\\InteractsWithQueue' => $vendorDir . '/laravel/framework/src/Illuminate/Queue/InteractsWithQueue.php', + 'Illuminate\\Queue\\InvalidPayloadException' => $vendorDir . '/laravel/framework/src/Illuminate/Queue/InvalidPayloadException.php', + 'Illuminate\\Queue\\Jobs\\BeanstalkdJob' => $vendorDir . '/laravel/framework/src/Illuminate/Queue/Jobs/BeanstalkdJob.php', + 'Illuminate\\Queue\\Jobs\\DatabaseJob' => $vendorDir . '/laravel/framework/src/Illuminate/Queue/Jobs/DatabaseJob.php', + 'Illuminate\\Queue\\Jobs\\DatabaseJobRecord' => $vendorDir . '/laravel/framework/src/Illuminate/Queue/Jobs/DatabaseJobRecord.php', + 'Illuminate\\Queue\\Jobs\\Job' => $vendorDir . '/laravel/framework/src/Illuminate/Queue/Jobs/Job.php', + 'Illuminate\\Queue\\Jobs\\JobName' => $vendorDir . '/laravel/framework/src/Illuminate/Queue/Jobs/JobName.php', + 'Illuminate\\Queue\\Jobs\\RedisJob' => $vendorDir . '/laravel/framework/src/Illuminate/Queue/Jobs/RedisJob.php', + 'Illuminate\\Queue\\Jobs\\SqsJob' => $vendorDir . '/laravel/framework/src/Illuminate/Queue/Jobs/SqsJob.php', + 'Illuminate\\Queue\\Jobs\\SyncJob' => $vendorDir . '/laravel/framework/src/Illuminate/Queue/Jobs/SyncJob.php', + 'Illuminate\\Queue\\Listener' => $vendorDir . '/laravel/framework/src/Illuminate/Queue/Listener.php', + 'Illuminate\\Queue\\ListenerOptions' => $vendorDir . '/laravel/framework/src/Illuminate/Queue/ListenerOptions.php', + 'Illuminate\\Queue\\LuaScripts' => $vendorDir . '/laravel/framework/src/Illuminate/Queue/LuaScripts.php', + 'Illuminate\\Queue\\ManuallyFailedException' => $vendorDir . '/laravel/framework/src/Illuminate/Queue/ManuallyFailedException.php', + 'Illuminate\\Queue\\MaxAttemptsExceededException' => $vendorDir . '/laravel/framework/src/Illuminate/Queue/MaxAttemptsExceededException.php', + 'Illuminate\\Queue\\NullQueue' => $vendorDir . '/laravel/framework/src/Illuminate/Queue/NullQueue.php', + 'Illuminate\\Queue\\Queue' => $vendorDir . '/laravel/framework/src/Illuminate/Queue/Queue.php', + 'Illuminate\\Queue\\QueueManager' => $vendorDir . '/laravel/framework/src/Illuminate/Queue/QueueManager.php', + 'Illuminate\\Queue\\QueueServiceProvider' => $vendorDir . '/laravel/framework/src/Illuminate/Queue/QueueServiceProvider.php', + 'Illuminate\\Queue\\RedisQueue' => $vendorDir . '/laravel/framework/src/Illuminate/Queue/RedisQueue.php', + 'Illuminate\\Queue\\SerializesAndRestoresModelIdentifiers' => $vendorDir . '/laravel/framework/src/Illuminate/Queue/SerializesAndRestoresModelIdentifiers.php', + 'Illuminate\\Queue\\SerializesModels' => $vendorDir . '/laravel/framework/src/Illuminate/Queue/SerializesModels.php', + 'Illuminate\\Queue\\SqsQueue' => $vendorDir . '/laravel/framework/src/Illuminate/Queue/SqsQueue.php', + 'Illuminate\\Queue\\SyncQueue' => $vendorDir . '/laravel/framework/src/Illuminate/Queue/SyncQueue.php', + 'Illuminate\\Queue\\Worker' => $vendorDir . '/laravel/framework/src/Illuminate/Queue/Worker.php', + 'Illuminate\\Queue\\WorkerOptions' => $vendorDir . '/laravel/framework/src/Illuminate/Queue/WorkerOptions.php', + 'Illuminate\\Redis\\Connections\\Connection' => $vendorDir . '/laravel/framework/src/Illuminate/Redis/Connections/Connection.php', + 'Illuminate\\Redis\\Connections\\PhpRedisClusterConnection' => $vendorDir . '/laravel/framework/src/Illuminate/Redis/Connections/PhpRedisClusterConnection.php', + 'Illuminate\\Redis\\Connections\\PhpRedisConnection' => $vendorDir . '/laravel/framework/src/Illuminate/Redis/Connections/PhpRedisConnection.php', + 'Illuminate\\Redis\\Connections\\PredisClusterConnection' => $vendorDir . '/laravel/framework/src/Illuminate/Redis/Connections/PredisClusterConnection.php', + 'Illuminate\\Redis\\Connections\\PredisConnection' => $vendorDir . '/laravel/framework/src/Illuminate/Redis/Connections/PredisConnection.php', + 'Illuminate\\Redis\\Connectors\\PhpRedisConnector' => $vendorDir . '/laravel/framework/src/Illuminate/Redis/Connectors/PhpRedisConnector.php', + 'Illuminate\\Redis\\Connectors\\PredisConnector' => $vendorDir . '/laravel/framework/src/Illuminate/Redis/Connectors/PredisConnector.php', + 'Illuminate\\Redis\\Limiters\\ConcurrencyLimiter' => $vendorDir . '/laravel/framework/src/Illuminate/Redis/Limiters/ConcurrencyLimiter.php', + 'Illuminate\\Redis\\Limiters\\ConcurrencyLimiterBuilder' => $vendorDir . '/laravel/framework/src/Illuminate/Redis/Limiters/ConcurrencyLimiterBuilder.php', + 'Illuminate\\Redis\\Limiters\\DurationLimiter' => $vendorDir . '/laravel/framework/src/Illuminate/Redis/Limiters/DurationLimiter.php', + 'Illuminate\\Redis\\Limiters\\DurationLimiterBuilder' => $vendorDir . '/laravel/framework/src/Illuminate/Redis/Limiters/DurationLimiterBuilder.php', + 'Illuminate\\Redis\\RedisManager' => $vendorDir . '/laravel/framework/src/Illuminate/Redis/RedisManager.php', + 'Illuminate\\Redis\\RedisServiceProvider' => $vendorDir . '/laravel/framework/src/Illuminate/Redis/RedisServiceProvider.php', + 'Illuminate\\Routing\\Console\\ControllerMakeCommand' => $vendorDir . '/laravel/framework/src/Illuminate/Routing/Console/ControllerMakeCommand.php', + 'Illuminate\\Routing\\Console\\MiddlewareMakeCommand' => $vendorDir . '/laravel/framework/src/Illuminate/Routing/Console/MiddlewareMakeCommand.php', + 'Illuminate\\Routing\\Contracts\\ControllerDispatcher' => $vendorDir . '/laravel/framework/src/Illuminate/Routing/Contracts/ControllerDispatcher.php', + 'Illuminate\\Routing\\Controller' => $vendorDir . '/laravel/framework/src/Illuminate/Routing/Controller.php', + 'Illuminate\\Routing\\ControllerDispatcher' => $vendorDir . '/laravel/framework/src/Illuminate/Routing/ControllerDispatcher.php', + 'Illuminate\\Routing\\ControllerMiddlewareOptions' => $vendorDir . '/laravel/framework/src/Illuminate/Routing/ControllerMiddlewareOptions.php', + 'Illuminate\\Routing\\Events\\RouteMatched' => $vendorDir . '/laravel/framework/src/Illuminate/Routing/Events/RouteMatched.php', + 'Illuminate\\Routing\\Exceptions\\UrlGenerationException' => $vendorDir . '/laravel/framework/src/Illuminate/Routing/Exceptions/UrlGenerationException.php', + 'Illuminate\\Routing\\ImplicitRouteBinding' => $vendorDir . '/laravel/framework/src/Illuminate/Routing/ImplicitRouteBinding.php', + 'Illuminate\\Routing\\Matching\\HostValidator' => $vendorDir . '/laravel/framework/src/Illuminate/Routing/Matching/HostValidator.php', + 'Illuminate\\Routing\\Matching\\MethodValidator' => $vendorDir . '/laravel/framework/src/Illuminate/Routing/Matching/MethodValidator.php', + 'Illuminate\\Routing\\Matching\\SchemeValidator' => $vendorDir . '/laravel/framework/src/Illuminate/Routing/Matching/SchemeValidator.php', + 'Illuminate\\Routing\\Matching\\UriValidator' => $vendorDir . '/laravel/framework/src/Illuminate/Routing/Matching/UriValidator.php', + 'Illuminate\\Routing\\Matching\\ValidatorInterface' => $vendorDir . '/laravel/framework/src/Illuminate/Routing/Matching/ValidatorInterface.php', + 'Illuminate\\Routing\\MiddlewareNameResolver' => $vendorDir . '/laravel/framework/src/Illuminate/Routing/MiddlewareNameResolver.php', + 'Illuminate\\Routing\\Middleware\\SubstituteBindings' => $vendorDir . '/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php', + 'Illuminate\\Routing\\Middleware\\ThrottleRequests' => $vendorDir . '/laravel/framework/src/Illuminate/Routing/Middleware/ThrottleRequests.php', + 'Illuminate\\Routing\\Middleware\\ThrottleRequestsWithRedis' => $vendorDir . '/laravel/framework/src/Illuminate/Routing/Middleware/ThrottleRequestsWithRedis.php', + 'Illuminate\\Routing\\PendingResourceRegistration' => $vendorDir . '/laravel/framework/src/Illuminate/Routing/PendingResourceRegistration.php', + 'Illuminate\\Routing\\Pipeline' => $vendorDir . '/laravel/framework/src/Illuminate/Routing/Pipeline.php', + 'Illuminate\\Routing\\RedirectController' => $vendorDir . '/laravel/framework/src/Illuminate/Routing/RedirectController.php', + 'Illuminate\\Routing\\Redirector' => $vendorDir . '/laravel/framework/src/Illuminate/Routing/Redirector.php', + 'Illuminate\\Routing\\ResourceRegistrar' => $vendorDir . '/laravel/framework/src/Illuminate/Routing/ResourceRegistrar.php', + 'Illuminate\\Routing\\ResponseFactory' => $vendorDir . '/laravel/framework/src/Illuminate/Routing/ResponseFactory.php', + 'Illuminate\\Routing\\Route' => $vendorDir . '/laravel/framework/src/Illuminate/Routing/Route.php', + 'Illuminate\\Routing\\RouteAction' => $vendorDir . '/laravel/framework/src/Illuminate/Routing/RouteAction.php', + 'Illuminate\\Routing\\RouteBinding' => $vendorDir . '/laravel/framework/src/Illuminate/Routing/RouteBinding.php', + 'Illuminate\\Routing\\RouteCollection' => $vendorDir . '/laravel/framework/src/Illuminate/Routing/RouteCollection.php', + 'Illuminate\\Routing\\RouteCompiler' => $vendorDir . '/laravel/framework/src/Illuminate/Routing/RouteCompiler.php', + 'Illuminate\\Routing\\RouteDependencyResolverTrait' => $vendorDir . '/laravel/framework/src/Illuminate/Routing/RouteDependencyResolverTrait.php', + 'Illuminate\\Routing\\RouteGroup' => $vendorDir . '/laravel/framework/src/Illuminate/Routing/RouteGroup.php', + 'Illuminate\\Routing\\RouteParameterBinder' => $vendorDir . '/laravel/framework/src/Illuminate/Routing/RouteParameterBinder.php', + 'Illuminate\\Routing\\RouteRegistrar' => $vendorDir . '/laravel/framework/src/Illuminate/Routing/RouteRegistrar.php', + 'Illuminate\\Routing\\RouteSignatureParameters' => $vendorDir . '/laravel/framework/src/Illuminate/Routing/RouteSignatureParameters.php', + 'Illuminate\\Routing\\RouteUrlGenerator' => $vendorDir . '/laravel/framework/src/Illuminate/Routing/RouteUrlGenerator.php', + 'Illuminate\\Routing\\Router' => $vendorDir . '/laravel/framework/src/Illuminate/Routing/Router.php', + 'Illuminate\\Routing\\RoutingServiceProvider' => $vendorDir . '/laravel/framework/src/Illuminate/Routing/RoutingServiceProvider.php', + 'Illuminate\\Routing\\SortedMiddleware' => $vendorDir . '/laravel/framework/src/Illuminate/Routing/SortedMiddleware.php', + 'Illuminate\\Routing\\UrlGenerator' => $vendorDir . '/laravel/framework/src/Illuminate/Routing/UrlGenerator.php', + 'Illuminate\\Routing\\ViewController' => $vendorDir . '/laravel/framework/src/Illuminate/Routing/ViewController.php', + 'Illuminate\\Session\\CacheBasedSessionHandler' => $vendorDir . '/laravel/framework/src/Illuminate/Session/CacheBasedSessionHandler.php', + 'Illuminate\\Session\\Console\\SessionTableCommand' => $vendorDir . '/laravel/framework/src/Illuminate/Session/Console/SessionTableCommand.php', + 'Illuminate\\Session\\CookieSessionHandler' => $vendorDir . '/laravel/framework/src/Illuminate/Session/CookieSessionHandler.php', + 'Illuminate\\Session\\DatabaseSessionHandler' => $vendorDir . '/laravel/framework/src/Illuminate/Session/DatabaseSessionHandler.php', + 'Illuminate\\Session\\EncryptedStore' => $vendorDir . '/laravel/framework/src/Illuminate/Session/EncryptedStore.php', + 'Illuminate\\Session\\ExistenceAwareInterface' => $vendorDir . '/laravel/framework/src/Illuminate/Session/ExistenceAwareInterface.php', + 'Illuminate\\Session\\FileSessionHandler' => $vendorDir . '/laravel/framework/src/Illuminate/Session/FileSessionHandler.php', + 'Illuminate\\Session\\Middleware\\AuthenticateSession' => $vendorDir . '/laravel/framework/src/Illuminate/Session/Middleware/AuthenticateSession.php', + 'Illuminate\\Session\\Middleware\\StartSession' => $vendorDir . '/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php', + 'Illuminate\\Session\\SessionManager' => $vendorDir . '/laravel/framework/src/Illuminate/Session/SessionManager.php', + 'Illuminate\\Session\\SessionServiceProvider' => $vendorDir . '/laravel/framework/src/Illuminate/Session/SessionServiceProvider.php', + 'Illuminate\\Session\\Store' => $vendorDir . '/laravel/framework/src/Illuminate/Session/Store.php', + 'Illuminate\\Session\\TokenMismatchException' => $vendorDir . '/laravel/framework/src/Illuminate/Session/TokenMismatchException.php', + 'Illuminate\\Support\\AggregateServiceProvider' => $vendorDir . '/laravel/framework/src/Illuminate/Support/AggregateServiceProvider.php', + 'Illuminate\\Support\\Arr' => $vendorDir . '/laravel/framework/src/Illuminate/Support/Arr.php', + 'Illuminate\\Support\\Carbon' => $vendorDir . '/laravel/framework/src/Illuminate/Support/Carbon.php', + 'Illuminate\\Support\\Collection' => $vendorDir . '/laravel/framework/src/Illuminate/Support/Collection.php', + 'Illuminate\\Support\\Composer' => $vendorDir . '/laravel/framework/src/Illuminate/Support/Composer.php', + 'Illuminate\\Support\\Debug\\Dumper' => $vendorDir . '/laravel/framework/src/Illuminate/Support/Debug/Dumper.php', + 'Illuminate\\Support\\Debug\\HtmlDumper' => $vendorDir . '/laravel/framework/src/Illuminate/Support/Debug/HtmlDumper.php', + 'Illuminate\\Support\\Facades\\App' => $vendorDir . '/laravel/framework/src/Illuminate/Support/Facades/App.php', + 'Illuminate\\Support\\Facades\\Artisan' => $vendorDir . '/laravel/framework/src/Illuminate/Support/Facades/Artisan.php', + 'Illuminate\\Support\\Facades\\Auth' => $vendorDir . '/laravel/framework/src/Illuminate/Support/Facades/Auth.php', + 'Illuminate\\Support\\Facades\\Blade' => $vendorDir . '/laravel/framework/src/Illuminate/Support/Facades/Blade.php', + 'Illuminate\\Support\\Facades\\Broadcast' => $vendorDir . '/laravel/framework/src/Illuminate/Support/Facades/Broadcast.php', + 'Illuminate\\Support\\Facades\\Bus' => $vendorDir . '/laravel/framework/src/Illuminate/Support/Facades/Bus.php', + 'Illuminate\\Support\\Facades\\Cache' => $vendorDir . '/laravel/framework/src/Illuminate/Support/Facades/Cache.php', + 'Illuminate\\Support\\Facades\\Config' => $vendorDir . '/laravel/framework/src/Illuminate/Support/Facades/Config.php', + 'Illuminate\\Support\\Facades\\Cookie' => $vendorDir . '/laravel/framework/src/Illuminate/Support/Facades/Cookie.php', + 'Illuminate\\Support\\Facades\\Crypt' => $vendorDir . '/laravel/framework/src/Illuminate/Support/Facades/Crypt.php', + 'Illuminate\\Support\\Facades\\DB' => $vendorDir . '/laravel/framework/src/Illuminate/Support/Facades/DB.php', + 'Illuminate\\Support\\Facades\\Event' => $vendorDir . '/laravel/framework/src/Illuminate/Support/Facades/Event.php', + 'Illuminate\\Support\\Facades\\Facade' => $vendorDir . '/laravel/framework/src/Illuminate/Support/Facades/Facade.php', + 'Illuminate\\Support\\Facades\\File' => $vendorDir . '/laravel/framework/src/Illuminate/Support/Facades/File.php', + 'Illuminate\\Support\\Facades\\Gate' => $vendorDir . '/laravel/framework/src/Illuminate/Support/Facades/Gate.php', + 'Illuminate\\Support\\Facades\\Hash' => $vendorDir . '/laravel/framework/src/Illuminate/Support/Facades/Hash.php', + 'Illuminate\\Support\\Facades\\Input' => $vendorDir . '/laravel/framework/src/Illuminate/Support/Facades/Input.php', + 'Illuminate\\Support\\Facades\\Lang' => $vendorDir . '/laravel/framework/src/Illuminate/Support/Facades/Lang.php', + 'Illuminate\\Support\\Facades\\Log' => $vendorDir . '/laravel/framework/src/Illuminate/Support/Facades/Log.php', + 'Illuminate\\Support\\Facades\\Mail' => $vendorDir . '/laravel/framework/src/Illuminate/Support/Facades/Mail.php', + 'Illuminate\\Support\\Facades\\Notification' => $vendorDir . '/laravel/framework/src/Illuminate/Support/Facades/Notification.php', + 'Illuminate\\Support\\Facades\\Password' => $vendorDir . '/laravel/framework/src/Illuminate/Support/Facades/Password.php', + 'Illuminate\\Support\\Facades\\Queue' => $vendorDir . '/laravel/framework/src/Illuminate/Support/Facades/Queue.php', + 'Illuminate\\Support\\Facades\\Redirect' => $vendorDir . '/laravel/framework/src/Illuminate/Support/Facades/Redirect.php', + 'Illuminate\\Support\\Facades\\Redis' => $vendorDir . '/laravel/framework/src/Illuminate/Support/Facades/Redis.php', + 'Illuminate\\Support\\Facades\\Request' => $vendorDir . '/laravel/framework/src/Illuminate/Support/Facades/Request.php', + 'Illuminate\\Support\\Facades\\Response' => $vendorDir . '/laravel/framework/src/Illuminate/Support/Facades/Response.php', + 'Illuminate\\Support\\Facades\\Route' => $vendorDir . '/laravel/framework/src/Illuminate/Support/Facades/Route.php', + 'Illuminate\\Support\\Facades\\Schema' => $vendorDir . '/laravel/framework/src/Illuminate/Support/Facades/Schema.php', + 'Illuminate\\Support\\Facades\\Session' => $vendorDir . '/laravel/framework/src/Illuminate/Support/Facades/Session.php', + 'Illuminate\\Support\\Facades\\Storage' => $vendorDir . '/laravel/framework/src/Illuminate/Support/Facades/Storage.php', + 'Illuminate\\Support\\Facades\\URL' => $vendorDir . '/laravel/framework/src/Illuminate/Support/Facades/URL.php', + 'Illuminate\\Support\\Facades\\Validator' => $vendorDir . '/laravel/framework/src/Illuminate/Support/Facades/Validator.php', + 'Illuminate\\Support\\Facades\\View' => $vendorDir . '/laravel/framework/src/Illuminate/Support/Facades/View.php', + 'Illuminate\\Support\\Fluent' => $vendorDir . '/laravel/framework/src/Illuminate/Support/Fluent.php', + 'Illuminate\\Support\\HigherOrderCollectionProxy' => $vendorDir . '/laravel/framework/src/Illuminate/Support/HigherOrderCollectionProxy.php', + 'Illuminate\\Support\\HigherOrderTapProxy' => $vendorDir . '/laravel/framework/src/Illuminate/Support/HigherOrderTapProxy.php', + 'Illuminate\\Support\\HtmlString' => $vendorDir . '/laravel/framework/src/Illuminate/Support/HtmlString.php', + 'Illuminate\\Support\\InteractsWithTime' => $vendorDir . '/laravel/framework/src/Illuminate/Support/InteractsWithTime.php', + 'Illuminate\\Support\\Manager' => $vendorDir . '/laravel/framework/src/Illuminate/Support/Manager.php', + 'Illuminate\\Support\\MessageBag' => $vendorDir . '/laravel/framework/src/Illuminate/Support/MessageBag.php', + 'Illuminate\\Support\\NamespacedItemResolver' => $vendorDir . '/laravel/framework/src/Illuminate/Support/NamespacedItemResolver.php', + 'Illuminate\\Support\\Optional' => $vendorDir . '/laravel/framework/src/Illuminate/Support/Optional.php', + 'Illuminate\\Support\\Pluralizer' => $vendorDir . '/laravel/framework/src/Illuminate/Support/Pluralizer.php', + 'Illuminate\\Support\\ServiceProvider' => $vendorDir . '/laravel/framework/src/Illuminate/Support/ServiceProvider.php', + 'Illuminate\\Support\\Str' => $vendorDir . '/laravel/framework/src/Illuminate/Support/Str.php', + 'Illuminate\\Support\\Testing\\Fakes\\BusFake' => $vendorDir . '/laravel/framework/src/Illuminate/Support/Testing/Fakes/BusFake.php', + 'Illuminate\\Support\\Testing\\Fakes\\EventFake' => $vendorDir . '/laravel/framework/src/Illuminate/Support/Testing/Fakes/EventFake.php', + 'Illuminate\\Support\\Testing\\Fakes\\MailFake' => $vendorDir . '/laravel/framework/src/Illuminate/Support/Testing/Fakes/MailFake.php', + 'Illuminate\\Support\\Testing\\Fakes\\NotificationFake' => $vendorDir . '/laravel/framework/src/Illuminate/Support/Testing/Fakes/NotificationFake.php', + 'Illuminate\\Support\\Testing\\Fakes\\PendingMailFake' => $vendorDir . '/laravel/framework/src/Illuminate/Support/Testing/Fakes/PendingMailFake.php', + 'Illuminate\\Support\\Testing\\Fakes\\QueueFake' => $vendorDir . '/laravel/framework/src/Illuminate/Support/Testing/Fakes/QueueFake.php', + 'Illuminate\\Support\\Traits\\CapsuleManagerTrait' => $vendorDir . '/laravel/framework/src/Illuminate/Support/Traits/CapsuleManagerTrait.php', + 'Illuminate\\Support\\Traits\\Macroable' => $vendorDir . '/laravel/framework/src/Illuminate/Support/Traits/Macroable.php', + 'Illuminate\\Support\\ViewErrorBag' => $vendorDir . '/laravel/framework/src/Illuminate/Support/ViewErrorBag.php', + 'Illuminate\\Translation\\ArrayLoader' => $vendorDir . '/laravel/framework/src/Illuminate/Translation/ArrayLoader.php', + 'Illuminate\\Translation\\FileLoader' => $vendorDir . '/laravel/framework/src/Illuminate/Translation/FileLoader.php', + 'Illuminate\\Translation\\MessageSelector' => $vendorDir . '/laravel/framework/src/Illuminate/Translation/MessageSelector.php', + 'Illuminate\\Translation\\TranslationServiceProvider' => $vendorDir . '/laravel/framework/src/Illuminate/Translation/TranslationServiceProvider.php', + 'Illuminate\\Translation\\Translator' => $vendorDir . '/laravel/framework/src/Illuminate/Translation/Translator.php', + 'Illuminate\\Validation\\ClosureValidationRule' => $vendorDir . '/laravel/framework/src/Illuminate/Validation/ClosureValidationRule.php', + 'Illuminate\\Validation\\Concerns\\FormatsMessages' => $vendorDir . '/laravel/framework/src/Illuminate/Validation/Concerns/FormatsMessages.php', + 'Illuminate\\Validation\\Concerns\\ReplacesAttributes' => $vendorDir . '/laravel/framework/src/Illuminate/Validation/Concerns/ReplacesAttributes.php', + 'Illuminate\\Validation\\Concerns\\ValidatesAttributes' => $vendorDir . '/laravel/framework/src/Illuminate/Validation/Concerns/ValidatesAttributes.php', + 'Illuminate\\Validation\\DatabasePresenceVerifier' => $vendorDir . '/laravel/framework/src/Illuminate/Validation/DatabasePresenceVerifier.php', + 'Illuminate\\Validation\\Factory' => $vendorDir . '/laravel/framework/src/Illuminate/Validation/Factory.php', + 'Illuminate\\Validation\\PresenceVerifierInterface' => $vendorDir . '/laravel/framework/src/Illuminate/Validation/PresenceVerifierInterface.php', + 'Illuminate\\Validation\\Rule' => $vendorDir . '/laravel/framework/src/Illuminate/Validation/Rule.php', + 'Illuminate\\Validation\\Rules\\DatabaseRule' => $vendorDir . '/laravel/framework/src/Illuminate/Validation/Rules/DatabaseRule.php', + 'Illuminate\\Validation\\Rules\\Dimensions' => $vendorDir . '/laravel/framework/src/Illuminate/Validation/Rules/Dimensions.php', + 'Illuminate\\Validation\\Rules\\Exists' => $vendorDir . '/laravel/framework/src/Illuminate/Validation/Rules/Exists.php', + 'Illuminate\\Validation\\Rules\\In' => $vendorDir . '/laravel/framework/src/Illuminate/Validation/Rules/In.php', + 'Illuminate\\Validation\\Rules\\NotIn' => $vendorDir . '/laravel/framework/src/Illuminate/Validation/Rules/NotIn.php', + 'Illuminate\\Validation\\Rules\\Unique' => $vendorDir . '/laravel/framework/src/Illuminate/Validation/Rules/Unique.php', + 'Illuminate\\Validation\\UnauthorizedException' => $vendorDir . '/laravel/framework/src/Illuminate/Validation/UnauthorizedException.php', + 'Illuminate\\Validation\\ValidatesWhenResolvedTrait' => $vendorDir . '/laravel/framework/src/Illuminate/Validation/ValidatesWhenResolvedTrait.php', + 'Illuminate\\Validation\\ValidationData' => $vendorDir . '/laravel/framework/src/Illuminate/Validation/ValidationData.php', + 'Illuminate\\Validation\\ValidationException' => $vendorDir . '/laravel/framework/src/Illuminate/Validation/ValidationException.php', + 'Illuminate\\Validation\\ValidationRuleParser' => $vendorDir . '/laravel/framework/src/Illuminate/Validation/ValidationRuleParser.php', + 'Illuminate\\Validation\\ValidationServiceProvider' => $vendorDir . '/laravel/framework/src/Illuminate/Validation/ValidationServiceProvider.php', + 'Illuminate\\Validation\\Validator' => $vendorDir . '/laravel/framework/src/Illuminate/Validation/Validator.php', + 'Illuminate\\View\\Compilers\\BladeCompiler' => $vendorDir . '/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php', + 'Illuminate\\View\\Compilers\\Compiler' => $vendorDir . '/laravel/framework/src/Illuminate/View/Compilers/Compiler.php', + 'Illuminate\\View\\Compilers\\CompilerInterface' => $vendorDir . '/laravel/framework/src/Illuminate/View/Compilers/CompilerInterface.php', + 'Illuminate\\View\\Compilers\\Concerns\\CompilesAuthorizations' => $vendorDir . '/laravel/framework/src/Illuminate/View/Compilers/Concerns/CompilesAuthorizations.php', + 'Illuminate\\View\\Compilers\\Concerns\\CompilesComments' => $vendorDir . '/laravel/framework/src/Illuminate/View/Compilers/Concerns/CompilesComments.php', + 'Illuminate\\View\\Compilers\\Concerns\\CompilesComponents' => $vendorDir . '/laravel/framework/src/Illuminate/View/Compilers/Concerns/CompilesComponents.php', + 'Illuminate\\View\\Compilers\\Concerns\\CompilesConditionals' => $vendorDir . '/laravel/framework/src/Illuminate/View/Compilers/Concerns/CompilesConditionals.php', + 'Illuminate\\View\\Compilers\\Concerns\\CompilesEchos' => $vendorDir . '/laravel/framework/src/Illuminate/View/Compilers/Concerns/CompilesEchos.php', + 'Illuminate\\View\\Compilers\\Concerns\\CompilesIncludes' => $vendorDir . '/laravel/framework/src/Illuminate/View/Compilers/Concerns/CompilesIncludes.php', + 'Illuminate\\View\\Compilers\\Concerns\\CompilesInjections' => $vendorDir . '/laravel/framework/src/Illuminate/View/Compilers/Concerns/CompilesInjections.php', + 'Illuminate\\View\\Compilers\\Concerns\\CompilesJson' => $vendorDir . '/laravel/framework/src/Illuminate/View/Compilers/Concerns/CompilesJson.php', + 'Illuminate\\View\\Compilers\\Concerns\\CompilesLayouts' => $vendorDir . '/laravel/framework/src/Illuminate/View/Compilers/Concerns/CompilesLayouts.php', + 'Illuminate\\View\\Compilers\\Concerns\\CompilesLoops' => $vendorDir . '/laravel/framework/src/Illuminate/View/Compilers/Concerns/CompilesLoops.php', + 'Illuminate\\View\\Compilers\\Concerns\\CompilesRawPhp' => $vendorDir . '/laravel/framework/src/Illuminate/View/Compilers/Concerns/CompilesRawPhp.php', + 'Illuminate\\View\\Compilers\\Concerns\\CompilesStacks' => $vendorDir . '/laravel/framework/src/Illuminate/View/Compilers/Concerns/CompilesStacks.php', + 'Illuminate\\View\\Compilers\\Concerns\\CompilesTranslations' => $vendorDir . '/laravel/framework/src/Illuminate/View/Compilers/Concerns/CompilesTranslations.php', + 'Illuminate\\View\\Concerns\\ManagesComponents' => $vendorDir . '/laravel/framework/src/Illuminate/View/Concerns/ManagesComponents.php', + 'Illuminate\\View\\Concerns\\ManagesEvents' => $vendorDir . '/laravel/framework/src/Illuminate/View/Concerns/ManagesEvents.php', + 'Illuminate\\View\\Concerns\\ManagesLayouts' => $vendorDir . '/laravel/framework/src/Illuminate/View/Concerns/ManagesLayouts.php', + 'Illuminate\\View\\Concerns\\ManagesLoops' => $vendorDir . '/laravel/framework/src/Illuminate/View/Concerns/ManagesLoops.php', + 'Illuminate\\View\\Concerns\\ManagesStacks' => $vendorDir . '/laravel/framework/src/Illuminate/View/Concerns/ManagesStacks.php', + 'Illuminate\\View\\Concerns\\ManagesTranslations' => $vendorDir . '/laravel/framework/src/Illuminate/View/Concerns/ManagesTranslations.php', + 'Illuminate\\View\\Engines\\CompilerEngine' => $vendorDir . '/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php', + 'Illuminate\\View\\Engines\\Engine' => $vendorDir . '/laravel/framework/src/Illuminate/View/Engines/Engine.php', + 'Illuminate\\View\\Engines\\EngineResolver' => $vendorDir . '/laravel/framework/src/Illuminate/View/Engines/EngineResolver.php', + 'Illuminate\\View\\Engines\\FileEngine' => $vendorDir . '/laravel/framework/src/Illuminate/View/Engines/FileEngine.php', + 'Illuminate\\View\\Engines\\PhpEngine' => $vendorDir . '/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php', + 'Illuminate\\View\\Factory' => $vendorDir . '/laravel/framework/src/Illuminate/View/Factory.php', + 'Illuminate\\View\\FileViewFinder' => $vendorDir . '/laravel/framework/src/Illuminate/View/FileViewFinder.php', + 'Illuminate\\View\\Middleware\\ShareErrorsFromSession' => $vendorDir . '/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php', + 'Illuminate\\View\\View' => $vendorDir . '/laravel/framework/src/Illuminate/View/View.php', + 'Illuminate\\View\\ViewFinderInterface' => $vendorDir . '/laravel/framework/src/Illuminate/View/ViewFinderInterface.php', + 'Illuminate\\View\\ViewName' => $vendorDir . '/laravel/framework/src/Illuminate/View/ViewName.php', + 'Illuminate\\View\\ViewServiceProvider' => $vendorDir . '/laravel/framework/src/Illuminate/View/ViewServiceProvider.php', + 'JakubOnderka\\PhpConsoleColor\\ConsoleColor' => $vendorDir . '/jakub-onderka/php-console-color/src/JakubOnderka/PhpConsoleColor/ConsoleColor.php', + 'JakubOnderka\\PhpConsoleColor\\InvalidStyleException' => $vendorDir . '/jakub-onderka/php-console-color/src/JakubOnderka/PhpConsoleColor/InvalidStyleException.php', + 'JakubOnderka\\PhpConsoleHighlighter\\Highlighter' => $vendorDir . '/jakub-onderka/php-console-highlighter/src/JakubOnderka/PhpConsoleHighlighter/Highlighter.php', + 'Jenssegers\\Date\\Date' => $vendorDir . '/jenssegers/date/src/Date.php', + 'Jenssegers\\Date\\DateServiceProvider' => $vendorDir . '/jenssegers/date/src/DateServiceProvider.php', + 'Laravel\\Tinker\\ClassAliasAutoloader' => $vendorDir . '/laravel/tinker/src/ClassAliasAutoloader.php', + 'Laravel\\Tinker\\Console\\TinkerCommand' => $vendorDir . '/laravel/tinker/src/Console/TinkerCommand.php', + 'Laravel\\Tinker\\TinkerCaster' => $vendorDir . '/laravel/tinker/src/TinkerCaster.php', + 'Laravel\\Tinker\\TinkerServiceProvider' => $vendorDir . '/laravel/tinker/src/TinkerServiceProvider.php', + 'League\\Flysystem\\AdapterInterface' => $vendorDir . '/league/flysystem/src/AdapterInterface.php', + 'League\\Flysystem\\Adapter\\AbstractAdapter' => $vendorDir . '/league/flysystem/src/Adapter/AbstractAdapter.php', + 'League\\Flysystem\\Adapter\\AbstractFtpAdapter' => $vendorDir . '/league/flysystem/src/Adapter/AbstractFtpAdapter.php', + 'League\\Flysystem\\Adapter\\CanOverwriteFiles' => $vendorDir . '/league/flysystem/src/Adapter/CanOverwriteFiles.php', + 'League\\Flysystem\\Adapter\\Ftp' => $vendorDir . '/league/flysystem/src/Adapter/Ftp.php', + 'League\\Flysystem\\Adapter\\Ftpd' => $vendorDir . '/league/flysystem/src/Adapter/Ftpd.php', + 'League\\Flysystem\\Adapter\\Local' => $vendorDir . '/league/flysystem/src/Adapter/Local.php', + 'League\\Flysystem\\Adapter\\NullAdapter' => $vendorDir . '/league/flysystem/src/Adapter/NullAdapter.php', + 'League\\Flysystem\\Adapter\\Polyfill\\NotSupportingVisibilityTrait' => $vendorDir . '/league/flysystem/src/Adapter/Polyfill/NotSupportingVisibilityTrait.php', + 'League\\Flysystem\\Adapter\\Polyfill\\StreamedCopyTrait' => $vendorDir . '/league/flysystem/src/Adapter/Polyfill/StreamedCopyTrait.php', + 'League\\Flysystem\\Adapter\\Polyfill\\StreamedReadingTrait' => $vendorDir . '/league/flysystem/src/Adapter/Polyfill/StreamedReadingTrait.php', + 'League\\Flysystem\\Adapter\\Polyfill\\StreamedTrait' => $vendorDir . '/league/flysystem/src/Adapter/Polyfill/StreamedTrait.php', + 'League\\Flysystem\\Adapter\\Polyfill\\StreamedWritingTrait' => $vendorDir . '/league/flysystem/src/Adapter/Polyfill/StreamedWritingTrait.php', + 'League\\Flysystem\\Adapter\\SynologyFtp' => $vendorDir . '/league/flysystem/src/Adapter/SynologyFtp.php', + 'League\\Flysystem\\Config' => $vendorDir . '/league/flysystem/src/Config.php', + 'League\\Flysystem\\ConfigAwareTrait' => $vendorDir . '/league/flysystem/src/ConfigAwareTrait.php', + 'League\\Flysystem\\Directory' => $vendorDir . '/league/flysystem/src/Directory.php', + 'League\\Flysystem\\Exception' => $vendorDir . '/league/flysystem/src/Exception.php', + 'League\\Flysystem\\File' => $vendorDir . '/league/flysystem/src/File.php', + 'League\\Flysystem\\FileExistsException' => $vendorDir . '/league/flysystem/src/FileExistsException.php', + 'League\\Flysystem\\FileNotFoundException' => $vendorDir . '/league/flysystem/src/FileNotFoundException.php', + 'League\\Flysystem\\Filesystem' => $vendorDir . '/league/flysystem/src/Filesystem.php', + 'League\\Flysystem\\FilesystemInterface' => $vendorDir . '/league/flysystem/src/FilesystemInterface.php', + 'League\\Flysystem\\FilesystemNotFoundException' => $vendorDir . '/league/flysystem/src/FilesystemNotFoundException.php', + 'League\\Flysystem\\Handler' => $vendorDir . '/league/flysystem/src/Handler.php', + 'League\\Flysystem\\MountManager' => $vendorDir . '/league/flysystem/src/MountManager.php', + 'League\\Flysystem\\NotSupportedException' => $vendorDir . '/league/flysystem/src/NotSupportedException.php', + 'League\\Flysystem\\PluginInterface' => $vendorDir . '/league/flysystem/src/PluginInterface.php', + 'League\\Flysystem\\Plugin\\AbstractPlugin' => $vendorDir . '/league/flysystem/src/Plugin/AbstractPlugin.php', + 'League\\Flysystem\\Plugin\\EmptyDir' => $vendorDir . '/league/flysystem/src/Plugin/EmptyDir.php', + 'League\\Flysystem\\Plugin\\ForcedCopy' => $vendorDir . '/league/flysystem/src/Plugin/ForcedCopy.php', + 'League\\Flysystem\\Plugin\\ForcedRename' => $vendorDir . '/league/flysystem/src/Plugin/ForcedRename.php', + 'League\\Flysystem\\Plugin\\GetWithMetadata' => $vendorDir . '/league/flysystem/src/Plugin/GetWithMetadata.php', + 'League\\Flysystem\\Plugin\\ListFiles' => $vendorDir . '/league/flysystem/src/Plugin/ListFiles.php', + 'League\\Flysystem\\Plugin\\ListPaths' => $vendorDir . '/league/flysystem/src/Plugin/ListPaths.php', + 'League\\Flysystem\\Plugin\\ListWith' => $vendorDir . '/league/flysystem/src/Plugin/ListWith.php', + 'League\\Flysystem\\Plugin\\PluggableTrait' => $vendorDir . '/league/flysystem/src/Plugin/PluggableTrait.php', + 'League\\Flysystem\\Plugin\\PluginNotFoundException' => $vendorDir . '/league/flysystem/src/Plugin/PluginNotFoundException.php', + 'League\\Flysystem\\ReadInterface' => $vendorDir . '/league/flysystem/src/ReadInterface.php', + 'League\\Flysystem\\RootViolationException' => $vendorDir . '/league/flysystem/src/RootViolationException.php', + 'League\\Flysystem\\SafeStorage' => $vendorDir . '/league/flysystem/src/SafeStorage.php', + 'League\\Flysystem\\UnreadableFileException' => $vendorDir . '/league/flysystem/src/UnreadableFileException.php', + 'League\\Flysystem\\Util' => $vendorDir . '/league/flysystem/src/Util.php', + 'League\\Flysystem\\Util\\ContentListingFormatter' => $vendorDir . '/league/flysystem/src/Util/ContentListingFormatter.php', + 'League\\Flysystem\\Util\\MimeType' => $vendorDir . '/league/flysystem/src/Util/MimeType.php', + 'League\\Flysystem\\Util\\StreamHasher' => $vendorDir . '/league/flysystem/src/Util/StreamHasher.php', + 'Mockery' => $vendorDir . '/mockery/mockery/library/Mockery.php', + 'Mockery\\Adapter\\Phpunit\\MockeryPHPUnitIntegration' => $vendorDir . '/mockery/mockery/library/Mockery/Adapter/Phpunit/MockeryPHPUnitIntegration.php', + 'Mockery\\Adapter\\Phpunit\\MockeryTestCase' => $vendorDir . '/mockery/mockery/library/Mockery/Adapter/Phpunit/MockeryTestCase.php', + 'Mockery\\Adapter\\Phpunit\\TestListener' => $vendorDir . '/mockery/mockery/library/Mockery/Adapter/Phpunit/TestListener.php', + 'Mockery\\CompositeExpectation' => $vendorDir . '/mockery/mockery/library/Mockery/CompositeExpectation.php', + 'Mockery\\Configuration' => $vendorDir . '/mockery/mockery/library/Mockery/Configuration.php', + 'Mockery\\Container' => $vendorDir . '/mockery/mockery/library/Mockery/Container.php', + 'Mockery\\CountValidator\\AtLeast' => $vendorDir . '/mockery/mockery/library/Mockery/CountValidator/AtLeast.php', + 'Mockery\\CountValidator\\AtMost' => $vendorDir . '/mockery/mockery/library/Mockery/CountValidator/AtMost.php', + 'Mockery\\CountValidator\\CountValidatorAbstract' => $vendorDir . '/mockery/mockery/library/Mockery/CountValidator/CountValidatorAbstract.php', + 'Mockery\\CountValidator\\Exact' => $vendorDir . '/mockery/mockery/library/Mockery/CountValidator/Exact.php', + 'Mockery\\CountValidator\\Exception' => $vendorDir . '/mockery/mockery/library/Mockery/CountValidator/Exception.php', + 'Mockery\\Exception' => $vendorDir . '/mockery/mockery/library/Mockery/Exception.php', + 'Mockery\\Exception\\InvalidCountException' => $vendorDir . '/mockery/mockery/library/Mockery/Exception/InvalidCountException.php', + 'Mockery\\Exception\\InvalidOrderException' => $vendorDir . '/mockery/mockery/library/Mockery/Exception/InvalidOrderException.php', + 'Mockery\\Exception\\NoMatchingExpectationException' => $vendorDir . '/mockery/mockery/library/Mockery/Exception/NoMatchingExpectationException.php', + 'Mockery\\Exception\\RuntimeException' => $vendorDir . '/mockery/mockery/library/Mockery/Exception/RuntimeException.php', + 'Mockery\\Expectation' => $vendorDir . '/mockery/mockery/library/Mockery/Expectation.php', + 'Mockery\\ExpectationDirector' => $vendorDir . '/mockery/mockery/library/Mockery/ExpectationDirector.php', + 'Mockery\\ExpectationInterface' => $vendorDir . '/mockery/mockery/library/Mockery/ExpectationInterface.php', + 'Mockery\\Generator\\CachingGenerator' => $vendorDir . '/mockery/mockery/library/Mockery/Generator/CachingGenerator.php', + 'Mockery\\Generator\\DefinedTargetClass' => $vendorDir . '/mockery/mockery/library/Mockery/Generator/DefinedTargetClass.php', + 'Mockery\\Generator\\Generator' => $vendorDir . '/mockery/mockery/library/Mockery/Generator/Generator.php', + 'Mockery\\Generator\\Method' => $vendorDir . '/mockery/mockery/library/Mockery/Generator/Method.php', + 'Mockery\\Generator\\MockConfiguration' => $vendorDir . '/mockery/mockery/library/Mockery/Generator/MockConfiguration.php', + 'Mockery\\Generator\\MockConfigurationBuilder' => $vendorDir . '/mockery/mockery/library/Mockery/Generator/MockConfigurationBuilder.php', + 'Mockery\\Generator\\MockDefinition' => $vendorDir . '/mockery/mockery/library/Mockery/Generator/MockDefinition.php', + 'Mockery\\Generator\\Parameter' => $vendorDir . '/mockery/mockery/library/Mockery/Generator/Parameter.php', + 'Mockery\\Generator\\StringManipulationGenerator' => $vendorDir . '/mockery/mockery/library/Mockery/Generator/StringManipulationGenerator.php', + 'Mockery\\Generator\\StringManipulation\\Pass\\CallTypeHintPass' => $vendorDir . '/mockery/mockery/library/Mockery/Generator/StringManipulation/Pass/CallTypeHintPass.php', + 'Mockery\\Generator\\StringManipulation\\Pass\\ClassNamePass' => $vendorDir . '/mockery/mockery/library/Mockery/Generator/StringManipulation/Pass/ClassNamePass.php', + 'Mockery\\Generator\\StringManipulation\\Pass\\ClassPass' => $vendorDir . '/mockery/mockery/library/Mockery/Generator/StringManipulation/Pass/ClassPass.php', + 'Mockery\\Generator\\StringManipulation\\Pass\\InstanceMockPass' => $vendorDir . '/mockery/mockery/library/Mockery/Generator/StringManipulation/Pass/InstanceMockPass.php', + 'Mockery\\Generator\\StringManipulation\\Pass\\InterfacePass' => $vendorDir . '/mockery/mockery/library/Mockery/Generator/StringManipulation/Pass/InterfacePass.php', + 'Mockery\\Generator\\StringManipulation\\Pass\\MethodDefinitionPass' => $vendorDir . '/mockery/mockery/library/Mockery/Generator/StringManipulation/Pass/MethodDefinitionPass.php', + 'Mockery\\Generator\\StringManipulation\\Pass\\Pass' => $vendorDir . '/mockery/mockery/library/Mockery/Generator/StringManipulation/Pass/Pass.php', + 'Mockery\\Generator\\StringManipulation\\Pass\\RemoveBuiltinMethodsThatAreFinalPass' => $vendorDir . '/mockery/mockery/library/Mockery/Generator/StringManipulation/Pass/RemoveBuiltinMethodsThatAreFinalPass.php', + 'Mockery\\Generator\\StringManipulation\\Pass\\RemoveUnserializeForInternalSerializableClassesPass' => $vendorDir . '/mockery/mockery/library/Mockery/Generator/StringManipulation/Pass/RemoveUnserializeForInternalSerializableClassesPass.php', + 'Mockery\\Generator\\TargetClass' => $vendorDir . '/mockery/mockery/library/Mockery/Generator/TargetClass.php', + 'Mockery\\Generator\\UndefinedTargetClass' => $vendorDir . '/mockery/mockery/library/Mockery/Generator/UndefinedTargetClass.php', + 'Mockery\\Instantiator' => $vendorDir . '/mockery/mockery/library/Mockery/Instantiator.php', + 'Mockery\\Loader' => $vendorDir . '/mockery/mockery/library/Mockery/Loader.php', + 'Mockery\\Loader\\EvalLoader' => $vendorDir . '/mockery/mockery/library/Mockery/Loader/EvalLoader.php', + 'Mockery\\Loader\\Loader' => $vendorDir . '/mockery/mockery/library/Mockery/Loader/Loader.php', + 'Mockery\\Loader\\RequireLoader' => $vendorDir . '/mockery/mockery/library/Mockery/Loader/RequireLoader.php', + 'Mockery\\Matcher\\Any' => $vendorDir . '/mockery/mockery/library/Mockery/Matcher/Any.php', + 'Mockery\\Matcher\\AnyOf' => $vendorDir . '/mockery/mockery/library/Mockery/Matcher/AnyOf.php', + 'Mockery\\Matcher\\Closure' => $vendorDir . '/mockery/mockery/library/Mockery/Matcher/Closure.php', + 'Mockery\\Matcher\\Contains' => $vendorDir . '/mockery/mockery/library/Mockery/Matcher/Contains.php', + 'Mockery\\Matcher\\Ducktype' => $vendorDir . '/mockery/mockery/library/Mockery/Matcher/Ducktype.php', + 'Mockery\\Matcher\\HasKey' => $vendorDir . '/mockery/mockery/library/Mockery/Matcher/HasKey.php', + 'Mockery\\Matcher\\HasValue' => $vendorDir . '/mockery/mockery/library/Mockery/Matcher/HasValue.php', + 'Mockery\\Matcher\\MatcherAbstract' => $vendorDir . '/mockery/mockery/library/Mockery/Matcher/MatcherAbstract.php', + 'Mockery\\Matcher\\MustBe' => $vendorDir . '/mockery/mockery/library/Mockery/Matcher/MustBe.php', + 'Mockery\\Matcher\\Not' => $vendorDir . '/mockery/mockery/library/Mockery/Matcher/Not.php', + 'Mockery\\Matcher\\NotAnyOf' => $vendorDir . '/mockery/mockery/library/Mockery/Matcher/NotAnyOf.php', + 'Mockery\\Matcher\\Subset' => $vendorDir . '/mockery/mockery/library/Mockery/Matcher/Subset.php', + 'Mockery\\Matcher\\Type' => $vendorDir . '/mockery/mockery/library/Mockery/Matcher/Type.php', + 'Mockery\\MethodCall' => $vendorDir . '/mockery/mockery/library/Mockery/MethodCall.php', + 'Mockery\\Mock' => $vendorDir . '/mockery/mockery/library/Mockery/Mock.php', + 'Mockery\\MockInterface' => $vendorDir . '/mockery/mockery/library/Mockery/MockInterface.php', + 'Mockery\\ReceivedMethodCalls' => $vendorDir . '/mockery/mockery/library/Mockery/ReceivedMethodCalls.php', + 'Mockery\\Recorder' => $vendorDir . '/mockery/mockery/library/Mockery/Recorder.php', + 'Mockery\\Undefined' => $vendorDir . '/mockery/mockery/library/Mockery/Undefined.php', + 'Mockery\\VerificationDirector' => $vendorDir . '/mockery/mockery/library/Mockery/VerificationDirector.php', + 'Mockery\\VerificationExpectation' => $vendorDir . '/mockery/mockery/library/Mockery/VerificationExpectation.php', + 'Monolog\\ErrorHandler' => $vendorDir . '/monolog/monolog/src/Monolog/ErrorHandler.php', + 'Monolog\\Formatter\\ChromePHPFormatter' => $vendorDir . '/monolog/monolog/src/Monolog/Formatter/ChromePHPFormatter.php', + 'Monolog\\Formatter\\ElasticaFormatter' => $vendorDir . '/monolog/monolog/src/Monolog/Formatter/ElasticaFormatter.php', + 'Monolog\\Formatter\\FlowdockFormatter' => $vendorDir . '/monolog/monolog/src/Monolog/Formatter/FlowdockFormatter.php', + 'Monolog\\Formatter\\FluentdFormatter' => $vendorDir . '/monolog/monolog/src/Monolog/Formatter/FluentdFormatter.php', + 'Monolog\\Formatter\\FormatterInterface' => $vendorDir . '/monolog/monolog/src/Monolog/Formatter/FormatterInterface.php', + 'Monolog\\Formatter\\GelfMessageFormatter' => $vendorDir . '/monolog/monolog/src/Monolog/Formatter/GelfMessageFormatter.php', + 'Monolog\\Formatter\\HtmlFormatter' => $vendorDir . '/monolog/monolog/src/Monolog/Formatter/HtmlFormatter.php', + 'Monolog\\Formatter\\JsonFormatter' => $vendorDir . '/monolog/monolog/src/Monolog/Formatter/JsonFormatter.php', + 'Monolog\\Formatter\\LineFormatter' => $vendorDir . '/monolog/monolog/src/Monolog/Formatter/LineFormatter.php', + 'Monolog\\Formatter\\LogglyFormatter' => $vendorDir . '/monolog/monolog/src/Monolog/Formatter/LogglyFormatter.php', + 'Monolog\\Formatter\\LogstashFormatter' => $vendorDir . '/monolog/monolog/src/Monolog/Formatter/LogstashFormatter.php', + 'Monolog\\Formatter\\MongoDBFormatter' => $vendorDir . '/monolog/monolog/src/Monolog/Formatter/MongoDBFormatter.php', + 'Monolog\\Formatter\\NormalizerFormatter' => $vendorDir . '/monolog/monolog/src/Monolog/Formatter/NormalizerFormatter.php', + 'Monolog\\Formatter\\ScalarFormatter' => $vendorDir . '/monolog/monolog/src/Monolog/Formatter/ScalarFormatter.php', + 'Monolog\\Formatter\\WildfireFormatter' => $vendorDir . '/monolog/monolog/src/Monolog/Formatter/WildfireFormatter.php', + 'Monolog\\Handler\\AbstractHandler' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/AbstractHandler.php', + 'Monolog\\Handler\\AbstractProcessingHandler' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/AbstractProcessingHandler.php', + 'Monolog\\Handler\\AbstractSyslogHandler' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/AbstractSyslogHandler.php', + 'Monolog\\Handler\\AmqpHandler' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/AmqpHandler.php', + 'Monolog\\Handler\\BrowserConsoleHandler' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/BrowserConsoleHandler.php', + 'Monolog\\Handler\\BufferHandler' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/BufferHandler.php', + 'Monolog\\Handler\\ChromePHPHandler' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/ChromePHPHandler.php', + 'Monolog\\Handler\\CouchDBHandler' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/CouchDBHandler.php', + 'Monolog\\Handler\\CubeHandler' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/CubeHandler.php', + 'Monolog\\Handler\\Curl\\Util' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/Curl/Util.php', + 'Monolog\\Handler\\DeduplicationHandler' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/DeduplicationHandler.php', + 'Monolog\\Handler\\DoctrineCouchDBHandler' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/DoctrineCouchDBHandler.php', + 'Monolog\\Handler\\DynamoDbHandler' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/DynamoDbHandler.php', + 'Monolog\\Handler\\ElasticSearchHandler' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/ElasticSearchHandler.php', + 'Monolog\\Handler\\ErrorLogHandler' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/ErrorLogHandler.php', + 'Monolog\\Handler\\FilterHandler' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/FilterHandler.php', + 'Monolog\\Handler\\FingersCrossedHandler' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/FingersCrossedHandler.php', + 'Monolog\\Handler\\FingersCrossed\\ActivationStrategyInterface' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/FingersCrossed/ActivationStrategyInterface.php', + 'Monolog\\Handler\\FingersCrossed\\ChannelLevelActivationStrategy' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/FingersCrossed/ChannelLevelActivationStrategy.php', + 'Monolog\\Handler\\FingersCrossed\\ErrorLevelActivationStrategy' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/FingersCrossed/ErrorLevelActivationStrategy.php', + 'Monolog\\Handler\\FirePHPHandler' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/FirePHPHandler.php', + 'Monolog\\Handler\\FleepHookHandler' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/FleepHookHandler.php', + 'Monolog\\Handler\\FlowdockHandler' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/FlowdockHandler.php', + 'Monolog\\Handler\\GelfHandler' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/GelfHandler.php', + 'Monolog\\Handler\\GroupHandler' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/GroupHandler.php', + 'Monolog\\Handler\\HandlerInterface' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/HandlerInterface.php', + 'Monolog\\Handler\\HandlerWrapper' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/HandlerWrapper.php', + 'Monolog\\Handler\\HipChatHandler' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/HipChatHandler.php', + 'Monolog\\Handler\\IFTTTHandler' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/IFTTTHandler.php', + 'Monolog\\Handler\\LogEntriesHandler' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/LogEntriesHandler.php', + 'Monolog\\Handler\\LogglyHandler' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/LogglyHandler.php', + 'Monolog\\Handler\\MailHandler' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/MailHandler.php', + 'Monolog\\Handler\\MandrillHandler' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/MandrillHandler.php', + 'Monolog\\Handler\\MissingExtensionException' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/MissingExtensionException.php', + 'Monolog\\Handler\\MongoDBHandler' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/MongoDBHandler.php', + 'Monolog\\Handler\\NativeMailerHandler' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/NativeMailerHandler.php', + 'Monolog\\Handler\\NewRelicHandler' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/NewRelicHandler.php', + 'Monolog\\Handler\\NullHandler' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/NullHandler.php', + 'Monolog\\Handler\\PHPConsoleHandler' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/PHPConsoleHandler.php', + 'Monolog\\Handler\\PsrHandler' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/PsrHandler.php', + 'Monolog\\Handler\\PushoverHandler' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/PushoverHandler.php', + 'Monolog\\Handler\\RavenHandler' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/RavenHandler.php', + 'Monolog\\Handler\\RedisHandler' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/RedisHandler.php', + 'Monolog\\Handler\\RollbarHandler' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/RollbarHandler.php', + 'Monolog\\Handler\\RotatingFileHandler' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/RotatingFileHandler.php', + 'Monolog\\Handler\\SamplingHandler' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/SamplingHandler.php', + 'Monolog\\Handler\\SlackHandler' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/SlackHandler.php', + 'Monolog\\Handler\\SlackWebhookHandler' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/SlackWebhookHandler.php', + 'Monolog\\Handler\\Slack\\SlackRecord' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/Slack/SlackRecord.php', + 'Monolog\\Handler\\SlackbotHandler' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/SlackbotHandler.php', + 'Monolog\\Handler\\SocketHandler' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/SocketHandler.php', + 'Monolog\\Handler\\StreamHandler' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/StreamHandler.php', + 'Monolog\\Handler\\SwiftMailerHandler' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/SwiftMailerHandler.php', + 'Monolog\\Handler\\SyslogHandler' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/SyslogHandler.php', + 'Monolog\\Handler\\SyslogUdpHandler' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/SyslogUdpHandler.php', + 'Monolog\\Handler\\SyslogUdp\\UdpSocket' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/SyslogUdp/UdpSocket.php', + 'Monolog\\Handler\\TestHandler' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/TestHandler.php', + 'Monolog\\Handler\\WhatFailureGroupHandler' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/WhatFailureGroupHandler.php', + 'Monolog\\Handler\\ZendMonitorHandler' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/ZendMonitorHandler.php', + 'Monolog\\Logger' => $vendorDir . '/monolog/monolog/src/Monolog/Logger.php', + 'Monolog\\Processor\\GitProcessor' => $vendorDir . '/monolog/monolog/src/Monolog/Processor/GitProcessor.php', + 'Monolog\\Processor\\IntrospectionProcessor' => $vendorDir . '/monolog/monolog/src/Monolog/Processor/IntrospectionProcessor.php', + 'Monolog\\Processor\\MemoryPeakUsageProcessor' => $vendorDir . '/monolog/monolog/src/Monolog/Processor/MemoryPeakUsageProcessor.php', + 'Monolog\\Processor\\MemoryProcessor' => $vendorDir . '/monolog/monolog/src/Monolog/Processor/MemoryProcessor.php', + 'Monolog\\Processor\\MemoryUsageProcessor' => $vendorDir . '/monolog/monolog/src/Monolog/Processor/MemoryUsageProcessor.php', + 'Monolog\\Processor\\MercurialProcessor' => $vendorDir . '/monolog/monolog/src/Monolog/Processor/MercurialProcessor.php', + 'Monolog\\Processor\\ProcessIdProcessor' => $vendorDir . '/monolog/monolog/src/Monolog/Processor/ProcessIdProcessor.php', + 'Monolog\\Processor\\PsrLogMessageProcessor' => $vendorDir . '/monolog/monolog/src/Monolog/Processor/PsrLogMessageProcessor.php', + 'Monolog\\Processor\\TagProcessor' => $vendorDir . '/monolog/monolog/src/Monolog/Processor/TagProcessor.php', + 'Monolog\\Processor\\UidProcessor' => $vendorDir . '/monolog/monolog/src/Monolog/Processor/UidProcessor.php', + 'Monolog\\Processor\\WebProcessor' => $vendorDir . '/monolog/monolog/src/Monolog/Processor/WebProcessor.php', + 'Monolog\\Registry' => $vendorDir . '/monolog/monolog/src/Monolog/Registry.php', 'PHPUnit\\Exception' => $vendorDir . '/phpunit/phpunit/src/Exception.php', 'PHPUnit\\Framework\\Assert' => $vendorDir . '/phpunit/phpunit/src/Framework/Assert.php', 'PHPUnit\\Framework\\AssertionFailedError' => $vendorDir . '/phpunit/phpunit/src/Framework/AssertionFailedError.php', @@ -445,6 +1991,7 @@ return array( 'PHP_Token_XOR_EQUAL' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', 'PHP_Token_YIELD' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', 'PHP_Token_YIELD_FROM' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'Parsedown' => $vendorDir . '/erusev/parsedown/Parsedown.php', 'PharIo\\Manifest\\Application' => $vendorDir . '/phar-io/manifest/src/values/Application.php', 'PharIo\\Manifest\\ApplicationName' => $vendorDir . '/phar-io/manifest/src/values/ApplicationName.php', 'PharIo\\Manifest\\Author' => $vendorDir . '/phar-io/manifest/src/values/Author.php', @@ -511,6 +2058,483 @@ return array( 'PharIo\\Version\\VersionConstraintParser' => $vendorDir . '/phar-io/version/src/VersionConstraintParser.php', 'PharIo\\Version\\VersionConstraintValue' => $vendorDir . '/phar-io/version/src/VersionConstraintValue.php', 'PharIo\\Version\\VersionNumber' => $vendorDir . '/phar-io/version/src/VersionNumber.php', + 'PhpParser\\Autoloader' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Autoloader.php', + 'PhpParser\\Builder' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Builder.php', + 'PhpParser\\BuilderAbstract' => $vendorDir . '/nikic/php-parser/lib/PhpParser/BuilderAbstract.php', + 'PhpParser\\BuilderFactory' => $vendorDir . '/nikic/php-parser/lib/PhpParser/BuilderFactory.php', + 'PhpParser\\Builder\\Class_' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Builder/Class_.php', + 'PhpParser\\Builder\\Declaration' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Builder/Declaration.php', + 'PhpParser\\Builder\\FunctionLike' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Builder/FunctionLike.php', + 'PhpParser\\Builder\\Function_' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Builder/Function_.php', + 'PhpParser\\Builder\\Interface_' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Builder/Interface_.php', + 'PhpParser\\Builder\\Method' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Builder/Method.php', + 'PhpParser\\Builder\\Namespace_' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Builder/Namespace_.php', + 'PhpParser\\Builder\\Param' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Builder/Param.php', + 'PhpParser\\Builder\\Property' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Builder/Property.php', + 'PhpParser\\Builder\\Trait_' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Builder/Trait_.php', + 'PhpParser\\Builder\\Use_' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Builder/Use_.php', + 'PhpParser\\Comment' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Comment.php', + 'PhpParser\\Comment\\Doc' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Comment/Doc.php', + 'PhpParser\\Error' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Error.php', + 'PhpParser\\ErrorHandler' => $vendorDir . '/nikic/php-parser/lib/PhpParser/ErrorHandler.php', + 'PhpParser\\ErrorHandler\\Collecting' => $vendorDir . '/nikic/php-parser/lib/PhpParser/ErrorHandler/Collecting.php', + 'PhpParser\\ErrorHandler\\Throwing' => $vendorDir . '/nikic/php-parser/lib/PhpParser/ErrorHandler/Throwing.php', + 'PhpParser\\Lexer' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Lexer.php', + 'PhpParser\\Lexer\\Emulative' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Lexer/Emulative.php', + 'PhpParser\\Node' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node.php', + 'PhpParser\\NodeAbstract' => $vendorDir . '/nikic/php-parser/lib/PhpParser/NodeAbstract.php', + 'PhpParser\\NodeDumper' => $vendorDir . '/nikic/php-parser/lib/PhpParser/NodeDumper.php', + 'PhpParser\\NodeTraverser' => $vendorDir . '/nikic/php-parser/lib/PhpParser/NodeTraverser.php', + 'PhpParser\\NodeTraverserInterface' => $vendorDir . '/nikic/php-parser/lib/PhpParser/NodeTraverserInterface.php', + 'PhpParser\\NodeVisitor' => $vendorDir . '/nikic/php-parser/lib/PhpParser/NodeVisitor.php', + 'PhpParser\\NodeVisitorAbstract' => $vendorDir . '/nikic/php-parser/lib/PhpParser/NodeVisitorAbstract.php', + 'PhpParser\\NodeVisitor\\NameResolver' => $vendorDir . '/nikic/php-parser/lib/PhpParser/NodeVisitor/NameResolver.php', + 'PhpParser\\Node\\Arg' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Arg.php', + 'PhpParser\\Node\\Const_' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Const_.php', + 'PhpParser\\Node\\Expr' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Expr.php', + 'PhpParser\\Node\\Expr\\ArrayDimFetch' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Expr/ArrayDimFetch.php', + 'PhpParser\\Node\\Expr\\ArrayItem' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Expr/ArrayItem.php', + 'PhpParser\\Node\\Expr\\Array_' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Expr/Array_.php', + 'PhpParser\\Node\\Expr\\Assign' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Expr/Assign.php', + 'PhpParser\\Node\\Expr\\AssignOp' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Expr/AssignOp.php', + 'PhpParser\\Node\\Expr\\AssignOp\\BitwiseAnd' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Expr/AssignOp/BitwiseAnd.php', + 'PhpParser\\Node\\Expr\\AssignOp\\BitwiseOr' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Expr/AssignOp/BitwiseOr.php', + 'PhpParser\\Node\\Expr\\AssignOp\\BitwiseXor' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Expr/AssignOp/BitwiseXor.php', + 'PhpParser\\Node\\Expr\\AssignOp\\Concat' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Expr/AssignOp/Concat.php', + 'PhpParser\\Node\\Expr\\AssignOp\\Div' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Expr/AssignOp/Div.php', + 'PhpParser\\Node\\Expr\\AssignOp\\Minus' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Expr/AssignOp/Minus.php', + 'PhpParser\\Node\\Expr\\AssignOp\\Mod' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Expr/AssignOp/Mod.php', + 'PhpParser\\Node\\Expr\\AssignOp\\Mul' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Expr/AssignOp/Mul.php', + 'PhpParser\\Node\\Expr\\AssignOp\\Plus' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Expr/AssignOp/Plus.php', + 'PhpParser\\Node\\Expr\\AssignOp\\Pow' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Expr/AssignOp/Pow.php', + 'PhpParser\\Node\\Expr\\AssignOp\\ShiftLeft' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Expr/AssignOp/ShiftLeft.php', + 'PhpParser\\Node\\Expr\\AssignOp\\ShiftRight' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Expr/AssignOp/ShiftRight.php', + 'PhpParser\\Node\\Expr\\AssignRef' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Expr/AssignRef.php', + 'PhpParser\\Node\\Expr\\BinaryOp' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp.php', + 'PhpParser\\Node\\Expr\\BinaryOp\\BitwiseAnd' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/BitwiseAnd.php', + 'PhpParser\\Node\\Expr\\BinaryOp\\BitwiseOr' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/BitwiseOr.php', + 'PhpParser\\Node\\Expr\\BinaryOp\\BitwiseXor' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/BitwiseXor.php', + 'PhpParser\\Node\\Expr\\BinaryOp\\BooleanAnd' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/BooleanAnd.php', + 'PhpParser\\Node\\Expr\\BinaryOp\\BooleanOr' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/BooleanOr.php', + 'PhpParser\\Node\\Expr\\BinaryOp\\Coalesce' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/Coalesce.php', + 'PhpParser\\Node\\Expr\\BinaryOp\\Concat' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/Concat.php', + 'PhpParser\\Node\\Expr\\BinaryOp\\Div' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/Div.php', + 'PhpParser\\Node\\Expr\\BinaryOp\\Equal' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/Equal.php', + 'PhpParser\\Node\\Expr\\BinaryOp\\Greater' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/Greater.php', + 'PhpParser\\Node\\Expr\\BinaryOp\\GreaterOrEqual' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/GreaterOrEqual.php', + 'PhpParser\\Node\\Expr\\BinaryOp\\Identical' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/Identical.php', + 'PhpParser\\Node\\Expr\\BinaryOp\\LogicalAnd' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/LogicalAnd.php', + 'PhpParser\\Node\\Expr\\BinaryOp\\LogicalOr' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/LogicalOr.php', + 'PhpParser\\Node\\Expr\\BinaryOp\\LogicalXor' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/LogicalXor.php', + 'PhpParser\\Node\\Expr\\BinaryOp\\Minus' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/Minus.php', + 'PhpParser\\Node\\Expr\\BinaryOp\\Mod' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/Mod.php', + 'PhpParser\\Node\\Expr\\BinaryOp\\Mul' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/Mul.php', + 'PhpParser\\Node\\Expr\\BinaryOp\\NotEqual' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/NotEqual.php', + 'PhpParser\\Node\\Expr\\BinaryOp\\NotIdentical' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/NotIdentical.php', + 'PhpParser\\Node\\Expr\\BinaryOp\\Plus' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/Plus.php', + 'PhpParser\\Node\\Expr\\BinaryOp\\Pow' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/Pow.php', + 'PhpParser\\Node\\Expr\\BinaryOp\\ShiftLeft' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/ShiftLeft.php', + 'PhpParser\\Node\\Expr\\BinaryOp\\ShiftRight' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/ShiftRight.php', + 'PhpParser\\Node\\Expr\\BinaryOp\\Smaller' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/Smaller.php', + 'PhpParser\\Node\\Expr\\BinaryOp\\SmallerOrEqual' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/SmallerOrEqual.php', + 'PhpParser\\Node\\Expr\\BinaryOp\\Spaceship' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/Spaceship.php', + 'PhpParser\\Node\\Expr\\BitwiseNot' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Expr/BitwiseNot.php', + 'PhpParser\\Node\\Expr\\BooleanNot' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Expr/BooleanNot.php', + 'PhpParser\\Node\\Expr\\Cast' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Expr/Cast.php', + 'PhpParser\\Node\\Expr\\Cast\\Array_' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Expr/Cast/Array_.php', + 'PhpParser\\Node\\Expr\\Cast\\Bool_' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Expr/Cast/Bool_.php', + 'PhpParser\\Node\\Expr\\Cast\\Double' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Expr/Cast/Double.php', + 'PhpParser\\Node\\Expr\\Cast\\Int_' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Expr/Cast/Int_.php', + 'PhpParser\\Node\\Expr\\Cast\\Object_' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Expr/Cast/Object_.php', + 'PhpParser\\Node\\Expr\\Cast\\String_' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Expr/Cast/String_.php', + 'PhpParser\\Node\\Expr\\Cast\\Unset_' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Expr/Cast/Unset_.php', + 'PhpParser\\Node\\Expr\\ClassConstFetch' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Expr/ClassConstFetch.php', + 'PhpParser\\Node\\Expr\\Clone_' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Expr/Clone_.php', + 'PhpParser\\Node\\Expr\\Closure' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Expr/Closure.php', + 'PhpParser\\Node\\Expr\\ClosureUse' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Expr/ClosureUse.php', + 'PhpParser\\Node\\Expr\\ConstFetch' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Expr/ConstFetch.php', + 'PhpParser\\Node\\Expr\\Empty_' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Expr/Empty_.php', + 'PhpParser\\Node\\Expr\\Error' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Expr/Error.php', + 'PhpParser\\Node\\Expr\\ErrorSuppress' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Expr/ErrorSuppress.php', + 'PhpParser\\Node\\Expr\\Eval_' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Expr/Eval_.php', + 'PhpParser\\Node\\Expr\\Exit_' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Expr/Exit_.php', + 'PhpParser\\Node\\Expr\\FuncCall' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Expr/FuncCall.php', + 'PhpParser\\Node\\Expr\\Include_' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Expr/Include_.php', + 'PhpParser\\Node\\Expr\\Instanceof_' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Expr/Instanceof_.php', + 'PhpParser\\Node\\Expr\\Isset_' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Expr/Isset_.php', + 'PhpParser\\Node\\Expr\\List_' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Expr/List_.php', + 'PhpParser\\Node\\Expr\\MethodCall' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Expr/MethodCall.php', + 'PhpParser\\Node\\Expr\\New_' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Expr/New_.php', + 'PhpParser\\Node\\Expr\\PostDec' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Expr/PostDec.php', + 'PhpParser\\Node\\Expr\\PostInc' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Expr/PostInc.php', + 'PhpParser\\Node\\Expr\\PreDec' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Expr/PreDec.php', + 'PhpParser\\Node\\Expr\\PreInc' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Expr/PreInc.php', + 'PhpParser\\Node\\Expr\\Print_' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Expr/Print_.php', + 'PhpParser\\Node\\Expr\\PropertyFetch' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Expr/PropertyFetch.php', + 'PhpParser\\Node\\Expr\\ShellExec' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Expr/ShellExec.php', + 'PhpParser\\Node\\Expr\\StaticCall' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Expr/StaticCall.php', + 'PhpParser\\Node\\Expr\\StaticPropertyFetch' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Expr/StaticPropertyFetch.php', + 'PhpParser\\Node\\Expr\\Ternary' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Expr/Ternary.php', + 'PhpParser\\Node\\Expr\\UnaryMinus' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Expr/UnaryMinus.php', + 'PhpParser\\Node\\Expr\\UnaryPlus' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Expr/UnaryPlus.php', + 'PhpParser\\Node\\Expr\\Variable' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Expr/Variable.php', + 'PhpParser\\Node\\Expr\\YieldFrom' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Expr/YieldFrom.php', + 'PhpParser\\Node\\Expr\\Yield_' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Expr/Yield_.php', + 'PhpParser\\Node\\FunctionLike' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/FunctionLike.php', + 'PhpParser\\Node\\Name' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Name.php', + 'PhpParser\\Node\\Name\\FullyQualified' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Name/FullyQualified.php', + 'PhpParser\\Node\\Name\\Relative' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Name/Relative.php', + 'PhpParser\\Node\\NullableType' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/NullableType.php', + 'PhpParser\\Node\\Param' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Param.php', + 'PhpParser\\Node\\Scalar' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Scalar.php', + 'PhpParser\\Node\\Scalar\\DNumber' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Scalar/DNumber.php', + 'PhpParser\\Node\\Scalar\\Encapsed' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Scalar/Encapsed.php', + 'PhpParser\\Node\\Scalar\\EncapsedStringPart' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Scalar/EncapsedStringPart.php', + 'PhpParser\\Node\\Scalar\\LNumber' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Scalar/LNumber.php', + 'PhpParser\\Node\\Scalar\\MagicConst' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Scalar/MagicConst.php', + 'PhpParser\\Node\\Scalar\\MagicConst\\Class_' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Scalar/MagicConst/Class_.php', + 'PhpParser\\Node\\Scalar\\MagicConst\\Dir' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Scalar/MagicConst/Dir.php', + 'PhpParser\\Node\\Scalar\\MagicConst\\File' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Scalar/MagicConst/File.php', + 'PhpParser\\Node\\Scalar\\MagicConst\\Function_' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Scalar/MagicConst/Function_.php', + 'PhpParser\\Node\\Scalar\\MagicConst\\Line' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Scalar/MagicConst/Line.php', + 'PhpParser\\Node\\Scalar\\MagicConst\\Method' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Scalar/MagicConst/Method.php', + 'PhpParser\\Node\\Scalar\\MagicConst\\Namespace_' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Scalar/MagicConst/Namespace_.php', + 'PhpParser\\Node\\Scalar\\MagicConst\\Trait_' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Scalar/MagicConst/Trait_.php', + 'PhpParser\\Node\\Scalar\\String_' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Scalar/String_.php', + 'PhpParser\\Node\\Stmt' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Stmt.php', + 'PhpParser\\Node\\Stmt\\Break_' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Stmt/Break_.php', + 'PhpParser\\Node\\Stmt\\Case_' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Stmt/Case_.php', + 'PhpParser\\Node\\Stmt\\Catch_' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Stmt/Catch_.php', + 'PhpParser\\Node\\Stmt\\ClassConst' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Stmt/ClassConst.php', + 'PhpParser\\Node\\Stmt\\ClassLike' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Stmt/ClassLike.php', + 'PhpParser\\Node\\Stmt\\ClassMethod' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Stmt/ClassMethod.php', + 'PhpParser\\Node\\Stmt\\Class_' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Stmt/Class_.php', + 'PhpParser\\Node\\Stmt\\Const_' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Stmt/Const_.php', + 'PhpParser\\Node\\Stmt\\Continue_' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Stmt/Continue_.php', + 'PhpParser\\Node\\Stmt\\DeclareDeclare' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Stmt/DeclareDeclare.php', + 'PhpParser\\Node\\Stmt\\Declare_' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Stmt/Declare_.php', + 'PhpParser\\Node\\Stmt\\Do_' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Stmt/Do_.php', + 'PhpParser\\Node\\Stmt\\Echo_' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Stmt/Echo_.php', + 'PhpParser\\Node\\Stmt\\ElseIf_' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Stmt/ElseIf_.php', + 'PhpParser\\Node\\Stmt\\Else_' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Stmt/Else_.php', + 'PhpParser\\Node\\Stmt\\Finally_' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Stmt/Finally_.php', + 'PhpParser\\Node\\Stmt\\For_' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Stmt/For_.php', + 'PhpParser\\Node\\Stmt\\Foreach_' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Stmt/Foreach_.php', + 'PhpParser\\Node\\Stmt\\Function_' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Stmt/Function_.php', + 'PhpParser\\Node\\Stmt\\Global_' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Stmt/Global_.php', + 'PhpParser\\Node\\Stmt\\Goto_' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Stmt/Goto_.php', + 'PhpParser\\Node\\Stmt\\GroupUse' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Stmt/GroupUse.php', + 'PhpParser\\Node\\Stmt\\HaltCompiler' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Stmt/HaltCompiler.php', + 'PhpParser\\Node\\Stmt\\If_' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Stmt/If_.php', + 'PhpParser\\Node\\Stmt\\InlineHTML' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Stmt/InlineHTML.php', + 'PhpParser\\Node\\Stmt\\Interface_' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Stmt/Interface_.php', + 'PhpParser\\Node\\Stmt\\Label' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Stmt/Label.php', + 'PhpParser\\Node\\Stmt\\Namespace_' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Stmt/Namespace_.php', + 'PhpParser\\Node\\Stmt\\Nop' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Stmt/Nop.php', + 'PhpParser\\Node\\Stmt\\Property' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Stmt/Property.php', + 'PhpParser\\Node\\Stmt\\PropertyProperty' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Stmt/PropertyProperty.php', + 'PhpParser\\Node\\Stmt\\Return_' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Stmt/Return_.php', + 'PhpParser\\Node\\Stmt\\StaticVar' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Stmt/StaticVar.php', + 'PhpParser\\Node\\Stmt\\Static_' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Stmt/Static_.php', + 'PhpParser\\Node\\Stmt\\Switch_' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Stmt/Switch_.php', + 'PhpParser\\Node\\Stmt\\Throw_' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Stmt/Throw_.php', + 'PhpParser\\Node\\Stmt\\TraitUse' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Stmt/TraitUse.php', + 'PhpParser\\Node\\Stmt\\TraitUseAdaptation' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Stmt/TraitUseAdaptation.php', + 'PhpParser\\Node\\Stmt\\TraitUseAdaptation\\Alias' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Stmt/TraitUseAdaptation/Alias.php', + 'PhpParser\\Node\\Stmt\\TraitUseAdaptation\\Precedence' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Stmt/TraitUseAdaptation/Precedence.php', + 'PhpParser\\Node\\Stmt\\Trait_' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Stmt/Trait_.php', + 'PhpParser\\Node\\Stmt\\TryCatch' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Stmt/TryCatch.php', + 'PhpParser\\Node\\Stmt\\Unset_' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Stmt/Unset_.php', + 'PhpParser\\Node\\Stmt\\UseUse' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Stmt/UseUse.php', + 'PhpParser\\Node\\Stmt\\Use_' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Stmt/Use_.php', + 'PhpParser\\Node\\Stmt\\While_' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Stmt/While_.php', + 'PhpParser\\Parser' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Parser.php', + 'PhpParser\\ParserAbstract' => $vendorDir . '/nikic/php-parser/lib/PhpParser/ParserAbstract.php', + 'PhpParser\\ParserFactory' => $vendorDir . '/nikic/php-parser/lib/PhpParser/ParserFactory.php', + 'PhpParser\\Parser\\Multiple' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Parser/Multiple.php', + 'PhpParser\\Parser\\Php5' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Parser/Php5.php', + 'PhpParser\\Parser\\Php7' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Parser/Php7.php', + 'PhpParser\\Parser\\Tokens' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Parser/Tokens.php', + 'PhpParser\\PrettyPrinterAbstract' => $vendorDir . '/nikic/php-parser/lib/PhpParser/PrettyPrinterAbstract.php', + 'PhpParser\\PrettyPrinter\\Standard' => $vendorDir . '/nikic/php-parser/lib/PhpParser/PrettyPrinter/Standard.php', + 'PhpParser\\Serializer' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Serializer.php', + 'PhpParser\\Serializer\\XML' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Serializer/XML.php', + 'PhpParser\\Unserializer' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Unserializer.php', + 'PhpParser\\Unserializer\\XML' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Unserializer/XML.php', + 'Prophecy\\Argument' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Argument.php', + 'Prophecy\\Argument\\ArgumentsWildcard' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Argument/ArgumentsWildcard.php', + 'Prophecy\\Argument\\Token\\AnyValueToken' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Argument/Token/AnyValueToken.php', + 'Prophecy\\Argument\\Token\\AnyValuesToken' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Argument/Token/AnyValuesToken.php', + 'Prophecy\\Argument\\Token\\ApproximateValueToken' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Argument/Token/ApproximateValueToken.php', + 'Prophecy\\Argument\\Token\\ArrayCountToken' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Argument/Token/ArrayCountToken.php', + 'Prophecy\\Argument\\Token\\ArrayEntryToken' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Argument/Token/ArrayEntryToken.php', + 'Prophecy\\Argument\\Token\\ArrayEveryEntryToken' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Argument/Token/ArrayEveryEntryToken.php', + 'Prophecy\\Argument\\Token\\CallbackToken' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Argument/Token/CallbackToken.php', + 'Prophecy\\Argument\\Token\\ExactValueToken' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Argument/Token/ExactValueToken.php', + 'Prophecy\\Argument\\Token\\IdenticalValueToken' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Argument/Token/IdenticalValueToken.php', + 'Prophecy\\Argument\\Token\\LogicalAndToken' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Argument/Token/LogicalAndToken.php', + 'Prophecy\\Argument\\Token\\LogicalNotToken' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Argument/Token/LogicalNotToken.php', + 'Prophecy\\Argument\\Token\\ObjectStateToken' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Argument/Token/ObjectStateToken.php', + 'Prophecy\\Argument\\Token\\StringContainsToken' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Argument/Token/StringContainsToken.php', + 'Prophecy\\Argument\\Token\\TokenInterface' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Argument/Token/TokenInterface.php', + 'Prophecy\\Argument\\Token\\TypeToken' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Argument/Token/TypeToken.php', + 'Prophecy\\Call\\Call' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Call/Call.php', + 'Prophecy\\Call\\CallCenter' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Call/CallCenter.php', + 'Prophecy\\Comparator\\ClosureComparator' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Comparator/ClosureComparator.php', + 'Prophecy\\Comparator\\Factory' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Comparator/Factory.php', + 'Prophecy\\Comparator\\ProphecyComparator' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Comparator/ProphecyComparator.php', + 'Prophecy\\Doubler\\CachedDoubler' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Doubler/CachedDoubler.php', + 'Prophecy\\Doubler\\ClassPatch\\ClassPatchInterface' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Doubler/ClassPatch/ClassPatchInterface.php', + 'Prophecy\\Doubler\\ClassPatch\\DisableConstructorPatch' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Doubler/ClassPatch/DisableConstructorPatch.php', + 'Prophecy\\Doubler\\ClassPatch\\HhvmExceptionPatch' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Doubler/ClassPatch/HhvmExceptionPatch.php', + 'Prophecy\\Doubler\\ClassPatch\\KeywordPatch' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Doubler/ClassPatch/KeywordPatch.php', + 'Prophecy\\Doubler\\ClassPatch\\MagicCallPatch' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Doubler/ClassPatch/MagicCallPatch.php', + 'Prophecy\\Doubler\\ClassPatch\\ProphecySubjectPatch' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Doubler/ClassPatch/ProphecySubjectPatch.php', + 'Prophecy\\Doubler\\ClassPatch\\ReflectionClassNewInstancePatch' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Doubler/ClassPatch/ReflectionClassNewInstancePatch.php', + 'Prophecy\\Doubler\\ClassPatch\\SplFileInfoPatch' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Doubler/ClassPatch/SplFileInfoPatch.php', + 'Prophecy\\Doubler\\ClassPatch\\TraversablePatch' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Doubler/ClassPatch/TraversablePatch.php', + 'Prophecy\\Doubler\\DoubleInterface' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Doubler/DoubleInterface.php', + 'Prophecy\\Doubler\\Doubler' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Doubler/Doubler.php', + 'Prophecy\\Doubler\\Generator\\ClassCodeGenerator' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Doubler/Generator/ClassCodeGenerator.php', + 'Prophecy\\Doubler\\Generator\\ClassCreator' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Doubler/Generator/ClassCreator.php', + 'Prophecy\\Doubler\\Generator\\ClassMirror' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Doubler/Generator/ClassMirror.php', + 'Prophecy\\Doubler\\Generator\\Node\\ArgumentNode' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Doubler/Generator/Node/ArgumentNode.php', + 'Prophecy\\Doubler\\Generator\\Node\\ClassNode' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Doubler/Generator/Node/ClassNode.php', + 'Prophecy\\Doubler\\Generator\\Node\\MethodNode' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Doubler/Generator/Node/MethodNode.php', + 'Prophecy\\Doubler\\Generator\\ReflectionInterface' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Doubler/Generator/ReflectionInterface.php', + 'Prophecy\\Doubler\\LazyDouble' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Doubler/LazyDouble.php', + 'Prophecy\\Doubler\\NameGenerator' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Doubler/NameGenerator.php', + 'Prophecy\\Exception\\Call\\UnexpectedCallException' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Exception/Call/UnexpectedCallException.php', + 'Prophecy\\Exception\\Doubler\\ClassCreatorException' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Exception/Doubler/ClassCreatorException.php', + 'Prophecy\\Exception\\Doubler\\ClassMirrorException' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Exception/Doubler/ClassMirrorException.php', + 'Prophecy\\Exception\\Doubler\\ClassNotFoundException' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Exception/Doubler/ClassNotFoundException.php', + 'Prophecy\\Exception\\Doubler\\DoubleException' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Exception/Doubler/DoubleException.php', + 'Prophecy\\Exception\\Doubler\\DoublerException' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Exception/Doubler/DoublerException.php', + 'Prophecy\\Exception\\Doubler\\InterfaceNotFoundException' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Exception/Doubler/InterfaceNotFoundException.php', + 'Prophecy\\Exception\\Doubler\\MethodNotExtendableException' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Exception/Doubler/MethodNotExtendableException.php', + 'Prophecy\\Exception\\Doubler\\MethodNotFoundException' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Exception/Doubler/MethodNotFoundException.php', + 'Prophecy\\Exception\\Doubler\\ReturnByReferenceException' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Exception/Doubler/ReturnByReferenceException.php', + 'Prophecy\\Exception\\Exception' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Exception/Exception.php', + 'Prophecy\\Exception\\InvalidArgumentException' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Exception/InvalidArgumentException.php', + 'Prophecy\\Exception\\Prediction\\AggregateException' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Exception/Prediction/AggregateException.php', + 'Prophecy\\Exception\\Prediction\\FailedPredictionException' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Exception/Prediction/FailedPredictionException.php', + 'Prophecy\\Exception\\Prediction\\NoCallsException' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Exception/Prediction/NoCallsException.php', + 'Prophecy\\Exception\\Prediction\\PredictionException' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Exception/Prediction/PredictionException.php', + 'Prophecy\\Exception\\Prediction\\UnexpectedCallsCountException' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Exception/Prediction/UnexpectedCallsCountException.php', + 'Prophecy\\Exception\\Prediction\\UnexpectedCallsException' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Exception/Prediction/UnexpectedCallsException.php', + 'Prophecy\\Exception\\Prophecy\\MethodProphecyException' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Exception/Prophecy/MethodProphecyException.php', + 'Prophecy\\Exception\\Prophecy\\ObjectProphecyException' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Exception/Prophecy/ObjectProphecyException.php', + 'Prophecy\\Exception\\Prophecy\\ProphecyException' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Exception/Prophecy/ProphecyException.php', + 'Prophecy\\PhpDocumentor\\ClassAndInterfaceTagRetriever' => $vendorDir . '/phpspec/prophecy/src/Prophecy/PhpDocumentor/ClassAndInterfaceTagRetriever.php', + 'Prophecy\\PhpDocumentor\\ClassTagRetriever' => $vendorDir . '/phpspec/prophecy/src/Prophecy/PhpDocumentor/ClassTagRetriever.php', + 'Prophecy\\PhpDocumentor\\LegacyClassTagRetriever' => $vendorDir . '/phpspec/prophecy/src/Prophecy/PhpDocumentor/LegacyClassTagRetriever.php', + 'Prophecy\\PhpDocumentor\\MethodTagRetrieverInterface' => $vendorDir . '/phpspec/prophecy/src/Prophecy/PhpDocumentor/MethodTagRetrieverInterface.php', + 'Prophecy\\Prediction\\CallPrediction' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Prediction/CallPrediction.php', + 'Prophecy\\Prediction\\CallTimesPrediction' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Prediction/CallTimesPrediction.php', + 'Prophecy\\Prediction\\CallbackPrediction' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Prediction/CallbackPrediction.php', + 'Prophecy\\Prediction\\NoCallsPrediction' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Prediction/NoCallsPrediction.php', + 'Prophecy\\Prediction\\PredictionInterface' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Prediction/PredictionInterface.php', + 'Prophecy\\Promise\\CallbackPromise' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Promise/CallbackPromise.php', + 'Prophecy\\Promise\\PromiseInterface' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Promise/PromiseInterface.php', + 'Prophecy\\Promise\\ReturnArgumentPromise' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Promise/ReturnArgumentPromise.php', + 'Prophecy\\Promise\\ReturnPromise' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Promise/ReturnPromise.php', + 'Prophecy\\Promise\\ThrowPromise' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Promise/ThrowPromise.php', + 'Prophecy\\Prophecy\\MethodProphecy' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Prophecy/MethodProphecy.php', + 'Prophecy\\Prophecy\\ObjectProphecy' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Prophecy/ObjectProphecy.php', + 'Prophecy\\Prophecy\\ProphecyInterface' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Prophecy/ProphecyInterface.php', + 'Prophecy\\Prophecy\\ProphecySubjectInterface' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Prophecy/ProphecySubjectInterface.php', + 'Prophecy\\Prophecy\\Revealer' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Prophecy/Revealer.php', + 'Prophecy\\Prophecy\\RevealerInterface' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Prophecy/RevealerInterface.php', + 'Prophecy\\Prophet' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Prophet.php', + 'Prophecy\\Util\\ExportUtil' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Util/ExportUtil.php', + 'Prophecy\\Util\\StringUtil' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Util/StringUtil.php', + 'Psr\\Container\\ContainerExceptionInterface' => $vendorDir . '/psr/container/src/ContainerExceptionInterface.php', + 'Psr\\Container\\ContainerInterface' => $vendorDir . '/psr/container/src/ContainerInterface.php', + 'Psr\\Container\\NotFoundExceptionInterface' => $vendorDir . '/psr/container/src/NotFoundExceptionInterface.php', + 'Psr\\Log\\AbstractLogger' => $vendorDir . '/psr/log/Psr/Log/AbstractLogger.php', + 'Psr\\Log\\InvalidArgumentException' => $vendorDir . '/psr/log/Psr/Log/InvalidArgumentException.php', + 'Psr\\Log\\LogLevel' => $vendorDir . '/psr/log/Psr/Log/LogLevel.php', + 'Psr\\Log\\LoggerAwareInterface' => $vendorDir . '/psr/log/Psr/Log/LoggerAwareInterface.php', + 'Psr\\Log\\LoggerAwareTrait' => $vendorDir . '/psr/log/Psr/Log/LoggerAwareTrait.php', + 'Psr\\Log\\LoggerInterface' => $vendorDir . '/psr/log/Psr/Log/LoggerInterface.php', + 'Psr\\Log\\LoggerTrait' => $vendorDir . '/psr/log/Psr/Log/LoggerTrait.php', + 'Psr\\Log\\NullLogger' => $vendorDir . '/psr/log/Psr/Log/NullLogger.php', + 'Psr\\Log\\Test\\DummyTest' => $vendorDir . '/psr/log/Psr/Log/Test/LoggerInterfaceTest.php', + 'Psr\\Log\\Test\\LoggerInterfaceTest' => $vendorDir . '/psr/log/Psr/Log/Test/LoggerInterfaceTest.php', + 'Psr\\SimpleCache\\CacheException' => $vendorDir . '/psr/simple-cache/src/CacheException.php', + 'Psr\\SimpleCache\\CacheInterface' => $vendorDir . '/psr/simple-cache/src/CacheInterface.php', + 'Psr\\SimpleCache\\InvalidArgumentException' => $vendorDir . '/psr/simple-cache/src/InvalidArgumentException.php', + 'Psy\\Autoloader' => $vendorDir . '/psy/psysh/src/Psy/Autoloader.php', + 'Psy\\CodeCleaner' => $vendorDir . '/psy/psysh/src/Psy/CodeCleaner.php', + 'Psy\\CodeCleaner\\AbstractClassPass' => $vendorDir . '/psy/psysh/src/Psy/CodeCleaner/AbstractClassPass.php', + 'Psy\\CodeCleaner\\AssignThisVariablePass' => $vendorDir . '/psy/psysh/src/Psy/CodeCleaner/AssignThisVariablePass.php', + 'Psy\\CodeCleaner\\CallTimePassByReferencePass' => $vendorDir . '/psy/psysh/src/Psy/CodeCleaner/CallTimePassByReferencePass.php', + 'Psy\\CodeCleaner\\CalledClassPass' => $vendorDir . '/psy/psysh/src/Psy/CodeCleaner/CalledClassPass.php', + 'Psy\\CodeCleaner\\CodeCleanerPass' => $vendorDir . '/psy/psysh/src/Psy/CodeCleaner/CodeCleanerPass.php', + 'Psy\\CodeCleaner\\ExitPass' => $vendorDir . '/psy/psysh/src/Psy/CodeCleaner/ExitPass.php', + 'Psy\\CodeCleaner\\FinalClassPass' => $vendorDir . '/psy/psysh/src/Psy/CodeCleaner/FinalClassPass.php', + 'Psy\\CodeCleaner\\FunctionContextPass' => $vendorDir . '/psy/psysh/src/Psy/CodeCleaner/FunctionContextPass.php', + 'Psy\\CodeCleaner\\FunctionReturnInWriteContextPass' => $vendorDir . '/psy/psysh/src/Psy/CodeCleaner/FunctionReturnInWriteContextPass.php', + 'Psy\\CodeCleaner\\ImplicitReturnPass' => $vendorDir . '/psy/psysh/src/Psy/CodeCleaner/ImplicitReturnPass.php', + 'Psy\\CodeCleaner\\InstanceOfPass' => $vendorDir . '/psy/psysh/src/Psy/CodeCleaner/InstanceOfPass.php', + 'Psy\\CodeCleaner\\LeavePsyshAlonePass' => $vendorDir . '/psy/psysh/src/Psy/CodeCleaner/LeavePsyshAlonePass.php', + 'Psy\\CodeCleaner\\LegacyEmptyPass' => $vendorDir . '/psy/psysh/src/Psy/CodeCleaner/LegacyEmptyPass.php', + 'Psy\\CodeCleaner\\LoopContextPass' => $vendorDir . '/psy/psysh/src/Psy/CodeCleaner/LoopContextPass.php', + 'Psy\\CodeCleaner\\MagicConstantsPass' => $vendorDir . '/psy/psysh/src/Psy/CodeCleaner/MagicConstantsPass.php', + 'Psy\\CodeCleaner\\NamespaceAwarePass' => $vendorDir . '/psy/psysh/src/Psy/CodeCleaner/NamespaceAwarePass.php', + 'Psy\\CodeCleaner\\NamespacePass' => $vendorDir . '/psy/psysh/src/Psy/CodeCleaner/NamespacePass.php', + 'Psy\\CodeCleaner\\NoReturnValue' => $vendorDir . '/psy/psysh/src/Psy/CodeCleaner/NoReturnValue.php', + 'Psy\\CodeCleaner\\PassableByReferencePass' => $vendorDir . '/psy/psysh/src/Psy/CodeCleaner/PassableByReferencePass.php', + 'Psy\\CodeCleaner\\RequirePass' => $vendorDir . '/psy/psysh/src/Psy/CodeCleaner/RequirePass.php', + 'Psy\\CodeCleaner\\StaticConstructorPass' => $vendorDir . '/psy/psysh/src/Psy/CodeCleaner/StaticConstructorPass.php', + 'Psy\\CodeCleaner\\StrictTypesPass' => $vendorDir . '/psy/psysh/src/Psy/CodeCleaner/StrictTypesPass.php', + 'Psy\\CodeCleaner\\UseStatementPass' => $vendorDir . '/psy/psysh/src/Psy/CodeCleaner/UseStatementPass.php', + 'Psy\\CodeCleaner\\ValidClassNamePass' => $vendorDir . '/psy/psysh/src/Psy/CodeCleaner/ValidClassNamePass.php', + 'Psy\\CodeCleaner\\ValidConstantPass' => $vendorDir . '/psy/psysh/src/Psy/CodeCleaner/ValidConstantPass.php', + 'Psy\\CodeCleaner\\ValidFunctionNamePass' => $vendorDir . '/psy/psysh/src/Psy/CodeCleaner/ValidFunctionNamePass.php', + 'Psy\\Command\\BufferCommand' => $vendorDir . '/psy/psysh/src/Psy/Command/BufferCommand.php', + 'Psy\\Command\\ClearCommand' => $vendorDir . '/psy/psysh/src/Psy/Command/ClearCommand.php', + 'Psy\\Command\\Command' => $vendorDir . '/psy/psysh/src/Psy/Command/Command.php', + 'Psy\\Command\\DocCommand' => $vendorDir . '/psy/psysh/src/Psy/Command/DocCommand.php', + 'Psy\\Command\\DumpCommand' => $vendorDir . '/psy/psysh/src/Psy/Command/DumpCommand.php', + 'Psy\\Command\\ExitCommand' => $vendorDir . '/psy/psysh/src/Psy/Command/ExitCommand.php', + 'Psy\\Command\\HelpCommand' => $vendorDir . '/psy/psysh/src/Psy/Command/HelpCommand.php', + 'Psy\\Command\\HistoryCommand' => $vendorDir . '/psy/psysh/src/Psy/Command/HistoryCommand.php', + 'Psy\\Command\\ListCommand' => $vendorDir . '/psy/psysh/src/Psy/Command/ListCommand.php', + 'Psy\\Command\\ListCommand\\ClassConstantEnumerator' => $vendorDir . '/psy/psysh/src/Psy/Command/ListCommand/ClassConstantEnumerator.php', + 'Psy\\Command\\ListCommand\\ClassEnumerator' => $vendorDir . '/psy/psysh/src/Psy/Command/ListCommand/ClassEnumerator.php', + 'Psy\\Command\\ListCommand\\ConstantEnumerator' => $vendorDir . '/psy/psysh/src/Psy/Command/ListCommand/ConstantEnumerator.php', + 'Psy\\Command\\ListCommand\\Enumerator' => $vendorDir . '/psy/psysh/src/Psy/Command/ListCommand/Enumerator.php', + 'Psy\\Command\\ListCommand\\FunctionEnumerator' => $vendorDir . '/psy/psysh/src/Psy/Command/ListCommand/FunctionEnumerator.php', + 'Psy\\Command\\ListCommand\\GlobalVariableEnumerator' => $vendorDir . '/psy/psysh/src/Psy/Command/ListCommand/GlobalVariableEnumerator.php', + 'Psy\\Command\\ListCommand\\InterfaceEnumerator' => $vendorDir . '/psy/psysh/src/Psy/Command/ListCommand/InterfaceEnumerator.php', + 'Psy\\Command\\ListCommand\\MethodEnumerator' => $vendorDir . '/psy/psysh/src/Psy/Command/ListCommand/MethodEnumerator.php', + 'Psy\\Command\\ListCommand\\PropertyEnumerator' => $vendorDir . '/psy/psysh/src/Psy/Command/ListCommand/PropertyEnumerator.php', + 'Psy\\Command\\ListCommand\\TraitEnumerator' => $vendorDir . '/psy/psysh/src/Psy/Command/ListCommand/TraitEnumerator.php', + 'Psy\\Command\\ListCommand\\VariableEnumerator' => $vendorDir . '/psy/psysh/src/Psy/Command/ListCommand/VariableEnumerator.php', + 'Psy\\Command\\ParseCommand' => $vendorDir . '/psy/psysh/src/Psy/Command/ParseCommand.php', + 'Psy\\Command\\PsyVersionCommand' => $vendorDir . '/psy/psysh/src/Psy/Command/PsyVersionCommand.php', + 'Psy\\Command\\ReflectingCommand' => $vendorDir . '/psy/psysh/src/Psy/Command/ReflectingCommand.php', + 'Psy\\Command\\ShowCommand' => $vendorDir . '/psy/psysh/src/Psy/Command/ShowCommand.php', + 'Psy\\Command\\SudoCommand' => $vendorDir . '/psy/psysh/src/Psy/Command/SudoCommand.php', + 'Psy\\Command\\ThrowUpCommand' => $vendorDir . '/psy/psysh/src/Psy/Command/ThrowUpCommand.php', + 'Psy\\Command\\TraceCommand' => $vendorDir . '/psy/psysh/src/Psy/Command/TraceCommand.php', + 'Psy\\Command\\WhereamiCommand' => $vendorDir . '/psy/psysh/src/Psy/Command/WhereamiCommand.php', + 'Psy\\Command\\WtfCommand' => $vendorDir . '/psy/psysh/src/Psy/Command/WtfCommand.php', + 'Psy\\Compiler' => $vendorDir . '/psy/psysh/src/Psy/Compiler.php', + 'Psy\\ConfigPaths' => $vendorDir . '/psy/psysh/src/Psy/ConfigPaths.php', + 'Psy\\Configuration' => $vendorDir . '/psy/psysh/src/Psy/Configuration.php', + 'Psy\\ConsoleColorFactory' => $vendorDir . '/psy/psysh/src/Psy/ConsoleColorFactory.php', + 'Psy\\Context' => $vendorDir . '/psy/psysh/src/Psy/Context.php', + 'Psy\\ContextAware' => $vendorDir . '/psy/psysh/src/Psy/ContextAware.php', + 'Psy\\Exception\\BreakException' => $vendorDir . '/psy/psysh/src/Psy/Exception/BreakException.php', + 'Psy\\Exception\\DeprecatedException' => $vendorDir . '/psy/psysh/src/Psy/Exception/DeprecatedException.php', + 'Psy\\Exception\\ErrorException' => $vendorDir . '/psy/psysh/src/Psy/Exception/ErrorException.php', + 'Psy\\Exception\\Exception' => $vendorDir . '/psy/psysh/src/Psy/Exception/Exception.php', + 'Psy\\Exception\\FatalErrorException' => $vendorDir . '/psy/psysh/src/Psy/Exception/FatalErrorException.php', + 'Psy\\Exception\\ParseErrorException' => $vendorDir . '/psy/psysh/src/Psy/Exception/ParseErrorException.php', + 'Psy\\Exception\\RuntimeException' => $vendorDir . '/psy/psysh/src/Psy/Exception/RuntimeException.php', + 'Psy\\Exception\\ThrowUpException' => $vendorDir . '/psy/psysh/src/Psy/Exception/ThrowUpException.php', + 'Psy\\Exception\\TypeErrorException' => $vendorDir . '/psy/psysh/src/Psy/Exception/TypeErrorException.php', + 'Psy\\ExecutionLoop\\ForkingLoop' => $vendorDir . '/psy/psysh/src/Psy/ExecutionLoop/ForkingLoop.php', + 'Psy\\ExecutionLoop\\Loop' => $vendorDir . '/psy/psysh/src/Psy/ExecutionLoop/Loop.php', + 'Psy\\Formatter\\CodeFormatter' => $vendorDir . '/psy/psysh/src/Psy/Formatter/CodeFormatter.php', + 'Psy\\Formatter\\DocblockFormatter' => $vendorDir . '/psy/psysh/src/Psy/Formatter/DocblockFormatter.php', + 'Psy\\Formatter\\Formatter' => $vendorDir . '/psy/psysh/src/Psy/Formatter/Formatter.php', + 'Psy\\Formatter\\SignatureFormatter' => $vendorDir . '/psy/psysh/src/Psy/Formatter/SignatureFormatter.php', + 'Psy\\Input\\CodeArgument' => $vendorDir . '/psy/psysh/src/Psy/Input/CodeArgument.php', + 'Psy\\Input\\FilterOptions' => $vendorDir . '/psy/psysh/src/Psy/Input/FilterOptions.php', + 'Psy\\Input\\ShellInput' => $vendorDir . '/psy/psysh/src/Psy/Input/ShellInput.php', + 'Psy\\Input\\SilentInput' => $vendorDir . '/psy/psysh/src/Psy/Input/SilentInput.php', + 'Psy\\Output\\OutputPager' => $vendorDir . '/psy/psysh/src/Psy/Output/OutputPager.php', + 'Psy\\Output\\PassthruPager' => $vendorDir . '/psy/psysh/src/Psy/Output/PassthruPager.php', + 'Psy\\Output\\ProcOutputPager' => $vendorDir . '/psy/psysh/src/Psy/Output/ProcOutputPager.php', + 'Psy\\Output\\ShellOutput' => $vendorDir . '/psy/psysh/src/Psy/Output/ShellOutput.php', + 'Psy\\ParserFactory' => $vendorDir . '/psy/psysh/src/Psy/ParserFactory.php', + 'Psy\\Readline\\GNUReadline' => $vendorDir . '/psy/psysh/src/Psy/Readline/GNUReadline.php', + 'Psy\\Readline\\HoaConsole' => $vendorDir . '/psy/psysh/src/Psy/Readline/HoaConsole.php', + 'Psy\\Readline\\Libedit' => $vendorDir . '/psy/psysh/src/Psy/Readline/Libedit.php', + 'Psy\\Readline\\Readline' => $vendorDir . '/psy/psysh/src/Psy/Readline/Readline.php', + 'Psy\\Readline\\Transient' => $vendorDir . '/psy/psysh/src/Psy/Readline/Transient.php', + 'Psy\\Reflection\\ReflectionConstant' => $vendorDir . '/psy/psysh/src/Psy/Reflection/ReflectionConstant.php', + 'Psy\\Reflection\\ReflectionLanguageConstruct' => $vendorDir . '/psy/psysh/src/Psy/Reflection/ReflectionLanguageConstruct.php', + 'Psy\\Reflection\\ReflectionLanguageConstructParameter' => $vendorDir . '/psy/psysh/src/Psy/Reflection/ReflectionLanguageConstructParameter.php', + 'Psy\\Shell' => $vendorDir . '/psy/psysh/src/Psy/Shell.php', + 'Psy\\Sudo' => $vendorDir . '/psy/psysh/src/Psy/Sudo.php', + 'Psy\\Sudo\\SudoVisitor' => $vendorDir . '/psy/psysh/src/Psy/Sudo/SudoVisitor.php', + 'Psy\\TabCompletion\\AutoCompleter' => $vendorDir . '/psy/psysh/src/Psy/TabCompletion/AutoCompleter.php', + 'Psy\\TabCompletion\\Matcher\\AbstractContextAwareMatcher' => $vendorDir . '/psy/psysh/src/Psy/TabCompletion/Matcher/AbstractContextAwareMatcher.php', + 'Psy\\TabCompletion\\Matcher\\AbstractMatcher' => $vendorDir . '/psy/psysh/src/Psy/TabCompletion/Matcher/AbstractMatcher.php', + 'Psy\\TabCompletion\\Matcher\\ClassAttributesMatcher' => $vendorDir . '/psy/psysh/src/Psy/TabCompletion/Matcher/ClassAttributesMatcher.php', + 'Psy\\TabCompletion\\Matcher\\ClassMethodsMatcher' => $vendorDir . '/psy/psysh/src/Psy/TabCompletion/Matcher/ClassMethodsMatcher.php', + 'Psy\\TabCompletion\\Matcher\\ClassNamesMatcher' => $vendorDir . '/psy/psysh/src/Psy/TabCompletion/Matcher/ClassNamesMatcher.php', + 'Psy\\TabCompletion\\Matcher\\CommandsMatcher' => $vendorDir . '/psy/psysh/src/Psy/TabCompletion/Matcher/CommandsMatcher.php', + 'Psy\\TabCompletion\\Matcher\\ConstantsMatcher' => $vendorDir . '/psy/psysh/src/Psy/TabCompletion/Matcher/ConstantsMatcher.php', + 'Psy\\TabCompletion\\Matcher\\FunctionsMatcher' => $vendorDir . '/psy/psysh/src/Psy/TabCompletion/Matcher/FunctionsMatcher.php', + 'Psy\\TabCompletion\\Matcher\\KeywordsMatcher' => $vendorDir . '/psy/psysh/src/Psy/TabCompletion/Matcher/KeywordsMatcher.php', + 'Psy\\TabCompletion\\Matcher\\MongoClientMatcher' => $vendorDir . '/psy/psysh/src/Psy/TabCompletion/Matcher/MongoClientMatcher.php', + 'Psy\\TabCompletion\\Matcher\\MongoDatabaseMatcher' => $vendorDir . '/psy/psysh/src/Psy/TabCompletion/Matcher/MongoDatabaseMatcher.php', + 'Psy\\TabCompletion\\Matcher\\ObjectAttributesMatcher' => $vendorDir . '/psy/psysh/src/Psy/TabCompletion/Matcher/ObjectAttributesMatcher.php', + 'Psy\\TabCompletion\\Matcher\\ObjectMethodsMatcher' => $vendorDir . '/psy/psysh/src/Psy/TabCompletion/Matcher/ObjectMethodsMatcher.php', + 'Psy\\TabCompletion\\Matcher\\VariablesMatcher' => $vendorDir . '/psy/psysh/src/Psy/TabCompletion/Matcher/VariablesMatcher.php', + 'Psy\\Util\\Docblock' => $vendorDir . '/psy/psysh/src/Psy/Util/Docblock.php', + 'Psy\\Util\\Json' => $vendorDir . '/psy/psysh/src/Psy/Util/Json.php', + 'Psy\\Util\\Mirror' => $vendorDir . '/psy/psysh/src/Psy/Util/Mirror.php', + 'Psy\\Util\\Str' => $vendorDir . '/psy/psysh/src/Psy/Util/Str.php', + 'Psy\\VarDumper\\Cloner' => $vendorDir . '/psy/psysh/src/Psy/VarDumper/Cloner.php', + 'Psy\\VarDumper\\Dumper' => $vendorDir . '/psy/psysh/src/Psy/VarDumper/Dumper.php', + 'Psy\\VarDumper\\Presenter' => $vendorDir . '/psy/psysh/src/Psy/VarDumper/Presenter.php', + 'Psy\\VarDumper\\PresenterAware' => $vendorDir . '/psy/psysh/src/Psy/VarDumper/PresenterAware.php', + 'Psy\\VersionUpdater\\Checker' => $vendorDir . '/psy/psysh/src/Psy/VersionUpdater/Checker.php', + 'Psy\\VersionUpdater\\GitHubChecker' => $vendorDir . '/psy/psysh/src/Psy/VersionUpdater/GitHubChecker.php', + 'Psy\\VersionUpdater\\IntervalChecker' => $vendorDir . '/psy/psysh/src/Psy/VersionUpdater/IntervalChecker.php', + 'Psy\\VersionUpdater\\NoopChecker' => $vendorDir . '/psy/psysh/src/Psy/VersionUpdater/NoopChecker.php', + 'Ramsey\\Uuid\\BinaryUtils' => $vendorDir . '/ramsey/uuid/src/BinaryUtils.php', + 'Ramsey\\Uuid\\Builder\\DefaultUuidBuilder' => $vendorDir . '/ramsey/uuid/src/Builder/DefaultUuidBuilder.php', + 'Ramsey\\Uuid\\Builder\\DegradedUuidBuilder' => $vendorDir . '/ramsey/uuid/src/Builder/DegradedUuidBuilder.php', + 'Ramsey\\Uuid\\Builder\\UuidBuilderInterface' => $vendorDir . '/ramsey/uuid/src/Builder/UuidBuilderInterface.php', + 'Ramsey\\Uuid\\Codec\\CodecInterface' => $vendorDir . '/ramsey/uuid/src/Codec/CodecInterface.php', + 'Ramsey\\Uuid\\Codec\\GuidStringCodec' => $vendorDir . '/ramsey/uuid/src/Codec/GuidStringCodec.php', + 'Ramsey\\Uuid\\Codec\\OrderedTimeCodec' => $vendorDir . '/ramsey/uuid/src/Codec/OrderedTimeCodec.php', + 'Ramsey\\Uuid\\Codec\\StringCodec' => $vendorDir . '/ramsey/uuid/src/Codec/StringCodec.php', + 'Ramsey\\Uuid\\Codec\\TimestampFirstCombCodec' => $vendorDir . '/ramsey/uuid/src/Codec/TimestampFirstCombCodec.php', + 'Ramsey\\Uuid\\Codec\\TimestampLastCombCodec' => $vendorDir . '/ramsey/uuid/src/Codec/TimestampLastCombCodec.php', + 'Ramsey\\Uuid\\Converter\\NumberConverterInterface' => $vendorDir . '/ramsey/uuid/src/Converter/NumberConverterInterface.php', + 'Ramsey\\Uuid\\Converter\\Number\\BigNumberConverter' => $vendorDir . '/ramsey/uuid/src/Converter/Number/BigNumberConverter.php', + 'Ramsey\\Uuid\\Converter\\Number\\DegradedNumberConverter' => $vendorDir . '/ramsey/uuid/src/Converter/Number/DegradedNumberConverter.php', + 'Ramsey\\Uuid\\Converter\\TimeConverterInterface' => $vendorDir . '/ramsey/uuid/src/Converter/TimeConverterInterface.php', + 'Ramsey\\Uuid\\Converter\\Time\\BigNumberTimeConverter' => $vendorDir . '/ramsey/uuid/src/Converter/Time/BigNumberTimeConverter.php', + 'Ramsey\\Uuid\\Converter\\Time\\DegradedTimeConverter' => $vendorDir . '/ramsey/uuid/src/Converter/Time/DegradedTimeConverter.php', + 'Ramsey\\Uuid\\Converter\\Time\\PhpTimeConverter' => $vendorDir . '/ramsey/uuid/src/Converter/Time/PhpTimeConverter.php', + 'Ramsey\\Uuid\\DegradedUuid' => $vendorDir . '/ramsey/uuid/src/DegradedUuid.php', + 'Ramsey\\Uuid\\Exception\\InvalidUuidStringException' => $vendorDir . '/ramsey/uuid/src/Exception/InvalidUuidStringException.php', + 'Ramsey\\Uuid\\Exception\\UnsatisfiedDependencyException' => $vendorDir . '/ramsey/uuid/src/Exception/UnsatisfiedDependencyException.php', + 'Ramsey\\Uuid\\Exception\\UnsupportedOperationException' => $vendorDir . '/ramsey/uuid/src/Exception/UnsupportedOperationException.php', + 'Ramsey\\Uuid\\FeatureSet' => $vendorDir . '/ramsey/uuid/src/FeatureSet.php', + 'Ramsey\\Uuid\\Generator\\CombGenerator' => $vendorDir . '/ramsey/uuid/src/Generator/CombGenerator.php', + 'Ramsey\\Uuid\\Generator\\DefaultTimeGenerator' => $vendorDir . '/ramsey/uuid/src/Generator/DefaultTimeGenerator.php', + 'Ramsey\\Uuid\\Generator\\MtRandGenerator' => $vendorDir . '/ramsey/uuid/src/Generator/MtRandGenerator.php', + 'Ramsey\\Uuid\\Generator\\OpenSslGenerator' => $vendorDir . '/ramsey/uuid/src/Generator/OpenSslGenerator.php', + 'Ramsey\\Uuid\\Generator\\PeclUuidRandomGenerator' => $vendorDir . '/ramsey/uuid/src/Generator/PeclUuidRandomGenerator.php', + 'Ramsey\\Uuid\\Generator\\PeclUuidTimeGenerator' => $vendorDir . '/ramsey/uuid/src/Generator/PeclUuidTimeGenerator.php', + 'Ramsey\\Uuid\\Generator\\RandomBytesGenerator' => $vendorDir . '/ramsey/uuid/src/Generator/RandomBytesGenerator.php', + 'Ramsey\\Uuid\\Generator\\RandomGeneratorFactory' => $vendorDir . '/ramsey/uuid/src/Generator/RandomGeneratorFactory.php', + 'Ramsey\\Uuid\\Generator\\RandomGeneratorInterface' => $vendorDir . '/ramsey/uuid/src/Generator/RandomGeneratorInterface.php', + 'Ramsey\\Uuid\\Generator\\RandomLibAdapter' => $vendorDir . '/ramsey/uuid/src/Generator/RandomLibAdapter.php', + 'Ramsey\\Uuid\\Generator\\SodiumRandomGenerator' => $vendorDir . '/ramsey/uuid/src/Generator/SodiumRandomGenerator.php', + 'Ramsey\\Uuid\\Generator\\TimeGeneratorFactory' => $vendorDir . '/ramsey/uuid/src/Generator/TimeGeneratorFactory.php', + 'Ramsey\\Uuid\\Generator\\TimeGeneratorInterface' => $vendorDir . '/ramsey/uuid/src/Generator/TimeGeneratorInterface.php', + 'Ramsey\\Uuid\\Provider\\NodeProviderInterface' => $vendorDir . '/ramsey/uuid/src/Provider/NodeProviderInterface.php', + 'Ramsey\\Uuid\\Provider\\Node\\FallbackNodeProvider' => $vendorDir . '/ramsey/uuid/src/Provider/Node/FallbackNodeProvider.php', + 'Ramsey\\Uuid\\Provider\\Node\\RandomNodeProvider' => $vendorDir . '/ramsey/uuid/src/Provider/Node/RandomNodeProvider.php', + 'Ramsey\\Uuid\\Provider\\Node\\SystemNodeProvider' => $vendorDir . '/ramsey/uuid/src/Provider/Node/SystemNodeProvider.php', + 'Ramsey\\Uuid\\Provider\\TimeProviderInterface' => $vendorDir . '/ramsey/uuid/src/Provider/TimeProviderInterface.php', + 'Ramsey\\Uuid\\Provider\\Time\\FixedTimeProvider' => $vendorDir . '/ramsey/uuid/src/Provider/Time/FixedTimeProvider.php', + 'Ramsey\\Uuid\\Provider\\Time\\SystemTimeProvider' => $vendorDir . '/ramsey/uuid/src/Provider/Time/SystemTimeProvider.php', + 'Ramsey\\Uuid\\Uuid' => $vendorDir . '/ramsey/uuid/src/Uuid.php', + 'Ramsey\\Uuid\\UuidFactory' => $vendorDir . '/ramsey/uuid/src/UuidFactory.php', + 'Ramsey\\Uuid\\UuidFactoryInterface' => $vendorDir . '/ramsey/uuid/src/UuidFactoryInterface.php', + 'Ramsey\\Uuid\\UuidInterface' => $vendorDir . '/ramsey/uuid/src/UuidInterface.php', 'SebastianBergmann\\CodeCoverage\\CodeCoverage' => $vendorDir . '/phpunit/php-code-coverage/src/CodeCoverage.php', 'SebastianBergmann\\CodeCoverage\\CoveredCodeNotExecutedException' => $vendorDir . '/phpunit/php-code-coverage/src/Exception/CoveredCodeNotExecutedException.php', 'SebastianBergmann\\CodeCoverage\\Driver\\Driver' => $vendorDir . '/phpunit/php-code-coverage/src/Driver/Driver.php', @@ -603,6 +2627,534 @@ return array( 'SebastianBergmann\\RecursionContext\\InvalidArgumentException' => $vendorDir . '/sebastian/recursion-context/src/InvalidArgumentException.php', 'SebastianBergmann\\ResourceOperations\\ResourceOperations' => $vendorDir . '/sebastian/resource-operations/src/ResourceOperations.php', 'SebastianBergmann\\Version' => $vendorDir . '/sebastian/version/src/Version.php', + 'Symfony\\Component\\Console\\Application' => $vendorDir . '/symfony/console/Application.php', + 'Symfony\\Component\\Console\\Command\\Command' => $vendorDir . '/symfony/console/Command/Command.php', + 'Symfony\\Component\\Console\\Command\\HelpCommand' => $vendorDir . '/symfony/console/Command/HelpCommand.php', + 'Symfony\\Component\\Console\\Command\\ListCommand' => $vendorDir . '/symfony/console/Command/ListCommand.php', + 'Symfony\\Component\\Console\\Command\\LockableTrait' => $vendorDir . '/symfony/console/Command/LockableTrait.php', + 'Symfony\\Component\\Console\\ConsoleEvents' => $vendorDir . '/symfony/console/ConsoleEvents.php', + 'Symfony\\Component\\Console\\DependencyInjection\\AddConsoleCommandPass' => $vendorDir . '/symfony/console/DependencyInjection/AddConsoleCommandPass.php', + 'Symfony\\Component\\Console\\Descriptor\\ApplicationDescription' => $vendorDir . '/symfony/console/Descriptor/ApplicationDescription.php', + 'Symfony\\Component\\Console\\Descriptor\\Descriptor' => $vendorDir . '/symfony/console/Descriptor/Descriptor.php', + 'Symfony\\Component\\Console\\Descriptor\\DescriptorInterface' => $vendorDir . '/symfony/console/Descriptor/DescriptorInterface.php', + 'Symfony\\Component\\Console\\Descriptor\\JsonDescriptor' => $vendorDir . '/symfony/console/Descriptor/JsonDescriptor.php', + 'Symfony\\Component\\Console\\Descriptor\\MarkdownDescriptor' => $vendorDir . '/symfony/console/Descriptor/MarkdownDescriptor.php', + 'Symfony\\Component\\Console\\Descriptor\\TextDescriptor' => $vendorDir . '/symfony/console/Descriptor/TextDescriptor.php', + 'Symfony\\Component\\Console\\Descriptor\\XmlDescriptor' => $vendorDir . '/symfony/console/Descriptor/XmlDescriptor.php', + 'Symfony\\Component\\Console\\EventListener\\ErrorListener' => $vendorDir . '/symfony/console/EventListener/ErrorListener.php', + 'Symfony\\Component\\Console\\Event\\ConsoleCommandEvent' => $vendorDir . '/symfony/console/Event/ConsoleCommandEvent.php', + 'Symfony\\Component\\Console\\Event\\ConsoleErrorEvent' => $vendorDir . '/symfony/console/Event/ConsoleErrorEvent.php', + 'Symfony\\Component\\Console\\Event\\ConsoleEvent' => $vendorDir . '/symfony/console/Event/ConsoleEvent.php', + 'Symfony\\Component\\Console\\Event\\ConsoleExceptionEvent' => $vendorDir . '/symfony/console/Event/ConsoleExceptionEvent.php', + 'Symfony\\Component\\Console\\Event\\ConsoleTerminateEvent' => $vendorDir . '/symfony/console/Event/ConsoleTerminateEvent.php', + 'Symfony\\Component\\Console\\Exception\\CommandNotFoundException' => $vendorDir . '/symfony/console/Exception/CommandNotFoundException.php', + 'Symfony\\Component\\Console\\Exception\\ExceptionInterface' => $vendorDir . '/symfony/console/Exception/ExceptionInterface.php', + 'Symfony\\Component\\Console\\Exception\\InvalidArgumentException' => $vendorDir . '/symfony/console/Exception/InvalidArgumentException.php', + 'Symfony\\Component\\Console\\Exception\\InvalidOptionException' => $vendorDir . '/symfony/console/Exception/InvalidOptionException.php', + 'Symfony\\Component\\Console\\Exception\\LogicException' => $vendorDir . '/symfony/console/Exception/LogicException.php', + 'Symfony\\Component\\Console\\Exception\\RuntimeException' => $vendorDir . '/symfony/console/Exception/RuntimeException.php', + 'Symfony\\Component\\Console\\Formatter\\OutputFormatter' => $vendorDir . '/symfony/console/Formatter/OutputFormatter.php', + 'Symfony\\Component\\Console\\Formatter\\OutputFormatterInterface' => $vendorDir . '/symfony/console/Formatter/OutputFormatterInterface.php', + 'Symfony\\Component\\Console\\Formatter\\OutputFormatterStyle' => $vendorDir . '/symfony/console/Formatter/OutputFormatterStyle.php', + 'Symfony\\Component\\Console\\Formatter\\OutputFormatterStyleInterface' => $vendorDir . '/symfony/console/Formatter/OutputFormatterStyleInterface.php', + 'Symfony\\Component\\Console\\Formatter\\OutputFormatterStyleStack' => $vendorDir . '/symfony/console/Formatter/OutputFormatterStyleStack.php', + 'Symfony\\Component\\Console\\Helper\\DebugFormatterHelper' => $vendorDir . '/symfony/console/Helper/DebugFormatterHelper.php', + 'Symfony\\Component\\Console\\Helper\\DescriptorHelper' => $vendorDir . '/symfony/console/Helper/DescriptorHelper.php', + 'Symfony\\Component\\Console\\Helper\\FormatterHelper' => $vendorDir . '/symfony/console/Helper/FormatterHelper.php', + 'Symfony\\Component\\Console\\Helper\\Helper' => $vendorDir . '/symfony/console/Helper/Helper.php', + 'Symfony\\Component\\Console\\Helper\\HelperInterface' => $vendorDir . '/symfony/console/Helper/HelperInterface.php', + 'Symfony\\Component\\Console\\Helper\\HelperSet' => $vendorDir . '/symfony/console/Helper/HelperSet.php', + 'Symfony\\Component\\Console\\Helper\\InputAwareHelper' => $vendorDir . '/symfony/console/Helper/InputAwareHelper.php', + 'Symfony\\Component\\Console\\Helper\\ProcessHelper' => $vendorDir . '/symfony/console/Helper/ProcessHelper.php', + 'Symfony\\Component\\Console\\Helper\\ProgressBar' => $vendorDir . '/symfony/console/Helper/ProgressBar.php', + 'Symfony\\Component\\Console\\Helper\\ProgressIndicator' => $vendorDir . '/symfony/console/Helper/ProgressIndicator.php', + 'Symfony\\Component\\Console\\Helper\\QuestionHelper' => $vendorDir . '/symfony/console/Helper/QuestionHelper.php', + 'Symfony\\Component\\Console\\Helper\\SymfonyQuestionHelper' => $vendorDir . '/symfony/console/Helper/SymfonyQuestionHelper.php', + 'Symfony\\Component\\Console\\Helper\\Table' => $vendorDir . '/symfony/console/Helper/Table.php', + 'Symfony\\Component\\Console\\Helper\\TableCell' => $vendorDir . '/symfony/console/Helper/TableCell.php', + 'Symfony\\Component\\Console\\Helper\\TableSeparator' => $vendorDir . '/symfony/console/Helper/TableSeparator.php', + 'Symfony\\Component\\Console\\Helper\\TableStyle' => $vendorDir . '/symfony/console/Helper/TableStyle.php', + 'Symfony\\Component\\Console\\Input\\ArgvInput' => $vendorDir . '/symfony/console/Input/ArgvInput.php', + 'Symfony\\Component\\Console\\Input\\ArrayInput' => $vendorDir . '/symfony/console/Input/ArrayInput.php', + 'Symfony\\Component\\Console\\Input\\Input' => $vendorDir . '/symfony/console/Input/Input.php', + 'Symfony\\Component\\Console\\Input\\InputArgument' => $vendorDir . '/symfony/console/Input/InputArgument.php', + 'Symfony\\Component\\Console\\Input\\InputAwareInterface' => $vendorDir . '/symfony/console/Input/InputAwareInterface.php', + 'Symfony\\Component\\Console\\Input\\InputDefinition' => $vendorDir . '/symfony/console/Input/InputDefinition.php', + 'Symfony\\Component\\Console\\Input\\InputInterface' => $vendorDir . '/symfony/console/Input/InputInterface.php', + 'Symfony\\Component\\Console\\Input\\InputOption' => $vendorDir . '/symfony/console/Input/InputOption.php', + 'Symfony\\Component\\Console\\Input\\StreamableInputInterface' => $vendorDir . '/symfony/console/Input/StreamableInputInterface.php', + 'Symfony\\Component\\Console\\Input\\StringInput' => $vendorDir . '/symfony/console/Input/StringInput.php', + 'Symfony\\Component\\Console\\Logger\\ConsoleLogger' => $vendorDir . '/symfony/console/Logger/ConsoleLogger.php', + 'Symfony\\Component\\Console\\Output\\BufferedOutput' => $vendorDir . '/symfony/console/Output/BufferedOutput.php', + 'Symfony\\Component\\Console\\Output\\ConsoleOutput' => $vendorDir . '/symfony/console/Output/ConsoleOutput.php', + 'Symfony\\Component\\Console\\Output\\ConsoleOutputInterface' => $vendorDir . '/symfony/console/Output/ConsoleOutputInterface.php', + 'Symfony\\Component\\Console\\Output\\NullOutput' => $vendorDir . '/symfony/console/Output/NullOutput.php', + 'Symfony\\Component\\Console\\Output\\Output' => $vendorDir . '/symfony/console/Output/Output.php', + 'Symfony\\Component\\Console\\Output\\OutputInterface' => $vendorDir . '/symfony/console/Output/OutputInterface.php', + 'Symfony\\Component\\Console\\Output\\StreamOutput' => $vendorDir . '/symfony/console/Output/StreamOutput.php', + 'Symfony\\Component\\Console\\Question\\ChoiceQuestion' => $vendorDir . '/symfony/console/Question/ChoiceQuestion.php', + 'Symfony\\Component\\Console\\Question\\ConfirmationQuestion' => $vendorDir . '/symfony/console/Question/ConfirmationQuestion.php', + 'Symfony\\Component\\Console\\Question\\Question' => $vendorDir . '/symfony/console/Question/Question.php', + 'Symfony\\Component\\Console\\Style\\OutputStyle' => $vendorDir . '/symfony/console/Style/OutputStyle.php', + 'Symfony\\Component\\Console\\Style\\StyleInterface' => $vendorDir . '/symfony/console/Style/StyleInterface.php', + 'Symfony\\Component\\Console\\Style\\SymfonyStyle' => $vendorDir . '/symfony/console/Style/SymfonyStyle.php', + 'Symfony\\Component\\Console\\Terminal' => $vendorDir . '/symfony/console/Terminal.php', + 'Symfony\\Component\\Console\\Tester\\ApplicationTester' => $vendorDir . '/symfony/console/Tester/ApplicationTester.php', + 'Symfony\\Component\\Console\\Tester\\CommandTester' => $vendorDir . '/symfony/console/Tester/CommandTester.php', + 'Symfony\\Component\\CssSelector\\CssSelectorConverter' => $vendorDir . '/symfony/css-selector/CssSelectorConverter.php', + 'Symfony\\Component\\CssSelector\\Exception\\ExceptionInterface' => $vendorDir . '/symfony/css-selector/Exception/ExceptionInterface.php', + 'Symfony\\Component\\CssSelector\\Exception\\ExpressionErrorException' => $vendorDir . '/symfony/css-selector/Exception/ExpressionErrorException.php', + 'Symfony\\Component\\CssSelector\\Exception\\InternalErrorException' => $vendorDir . '/symfony/css-selector/Exception/InternalErrorException.php', + 'Symfony\\Component\\CssSelector\\Exception\\ParseException' => $vendorDir . '/symfony/css-selector/Exception/ParseException.php', + 'Symfony\\Component\\CssSelector\\Exception\\SyntaxErrorException' => $vendorDir . '/symfony/css-selector/Exception/SyntaxErrorException.php', + 'Symfony\\Component\\CssSelector\\Node\\AbstractNode' => $vendorDir . '/symfony/css-selector/Node/AbstractNode.php', + 'Symfony\\Component\\CssSelector\\Node\\AttributeNode' => $vendorDir . '/symfony/css-selector/Node/AttributeNode.php', + 'Symfony\\Component\\CssSelector\\Node\\ClassNode' => $vendorDir . '/symfony/css-selector/Node/ClassNode.php', + 'Symfony\\Component\\CssSelector\\Node\\CombinedSelectorNode' => $vendorDir . '/symfony/css-selector/Node/CombinedSelectorNode.php', + 'Symfony\\Component\\CssSelector\\Node\\ElementNode' => $vendorDir . '/symfony/css-selector/Node/ElementNode.php', + 'Symfony\\Component\\CssSelector\\Node\\FunctionNode' => $vendorDir . '/symfony/css-selector/Node/FunctionNode.php', + 'Symfony\\Component\\CssSelector\\Node\\HashNode' => $vendorDir . '/symfony/css-selector/Node/HashNode.php', + 'Symfony\\Component\\CssSelector\\Node\\NegationNode' => $vendorDir . '/symfony/css-selector/Node/NegationNode.php', + 'Symfony\\Component\\CssSelector\\Node\\NodeInterface' => $vendorDir . '/symfony/css-selector/Node/NodeInterface.php', + 'Symfony\\Component\\CssSelector\\Node\\PseudoNode' => $vendorDir . '/symfony/css-selector/Node/PseudoNode.php', + 'Symfony\\Component\\CssSelector\\Node\\SelectorNode' => $vendorDir . '/symfony/css-selector/Node/SelectorNode.php', + 'Symfony\\Component\\CssSelector\\Node\\Specificity' => $vendorDir . '/symfony/css-selector/Node/Specificity.php', + 'Symfony\\Component\\CssSelector\\Parser\\Handler\\CommentHandler' => $vendorDir . '/symfony/css-selector/Parser/Handler/CommentHandler.php', + 'Symfony\\Component\\CssSelector\\Parser\\Handler\\HandlerInterface' => $vendorDir . '/symfony/css-selector/Parser/Handler/HandlerInterface.php', + 'Symfony\\Component\\CssSelector\\Parser\\Handler\\HashHandler' => $vendorDir . '/symfony/css-selector/Parser/Handler/HashHandler.php', + 'Symfony\\Component\\CssSelector\\Parser\\Handler\\IdentifierHandler' => $vendorDir . '/symfony/css-selector/Parser/Handler/IdentifierHandler.php', + 'Symfony\\Component\\CssSelector\\Parser\\Handler\\NumberHandler' => $vendorDir . '/symfony/css-selector/Parser/Handler/NumberHandler.php', + 'Symfony\\Component\\CssSelector\\Parser\\Handler\\StringHandler' => $vendorDir . '/symfony/css-selector/Parser/Handler/StringHandler.php', + 'Symfony\\Component\\CssSelector\\Parser\\Handler\\WhitespaceHandler' => $vendorDir . '/symfony/css-selector/Parser/Handler/WhitespaceHandler.php', + 'Symfony\\Component\\CssSelector\\Parser\\Parser' => $vendorDir . '/symfony/css-selector/Parser/Parser.php', + 'Symfony\\Component\\CssSelector\\Parser\\ParserInterface' => $vendorDir . '/symfony/css-selector/Parser/ParserInterface.php', + 'Symfony\\Component\\CssSelector\\Parser\\Reader' => $vendorDir . '/symfony/css-selector/Parser/Reader.php', + 'Symfony\\Component\\CssSelector\\Parser\\Shortcut\\ClassParser' => $vendorDir . '/symfony/css-selector/Parser/Shortcut/ClassParser.php', + 'Symfony\\Component\\CssSelector\\Parser\\Shortcut\\ElementParser' => $vendorDir . '/symfony/css-selector/Parser/Shortcut/ElementParser.php', + 'Symfony\\Component\\CssSelector\\Parser\\Shortcut\\EmptyStringParser' => $vendorDir . '/symfony/css-selector/Parser/Shortcut/EmptyStringParser.php', + 'Symfony\\Component\\CssSelector\\Parser\\Shortcut\\HashParser' => $vendorDir . '/symfony/css-selector/Parser/Shortcut/HashParser.php', + 'Symfony\\Component\\CssSelector\\Parser\\Token' => $vendorDir . '/symfony/css-selector/Parser/Token.php', + 'Symfony\\Component\\CssSelector\\Parser\\TokenStream' => $vendorDir . '/symfony/css-selector/Parser/TokenStream.php', + 'Symfony\\Component\\CssSelector\\Parser\\Tokenizer\\Tokenizer' => $vendorDir . '/symfony/css-selector/Parser/Tokenizer/Tokenizer.php', + 'Symfony\\Component\\CssSelector\\Parser\\Tokenizer\\TokenizerEscaping' => $vendorDir . '/symfony/css-selector/Parser/Tokenizer/TokenizerEscaping.php', + 'Symfony\\Component\\CssSelector\\Parser\\Tokenizer\\TokenizerPatterns' => $vendorDir . '/symfony/css-selector/Parser/Tokenizer/TokenizerPatterns.php', + 'Symfony\\Component\\CssSelector\\XPath\\Extension\\AbstractExtension' => $vendorDir . '/symfony/css-selector/XPath/Extension/AbstractExtension.php', + 'Symfony\\Component\\CssSelector\\XPath\\Extension\\AttributeMatchingExtension' => $vendorDir . '/symfony/css-selector/XPath/Extension/AttributeMatchingExtension.php', + 'Symfony\\Component\\CssSelector\\XPath\\Extension\\CombinationExtension' => $vendorDir . '/symfony/css-selector/XPath/Extension/CombinationExtension.php', + 'Symfony\\Component\\CssSelector\\XPath\\Extension\\ExtensionInterface' => $vendorDir . '/symfony/css-selector/XPath/Extension/ExtensionInterface.php', + 'Symfony\\Component\\CssSelector\\XPath\\Extension\\FunctionExtension' => $vendorDir . '/symfony/css-selector/XPath/Extension/FunctionExtension.php', + 'Symfony\\Component\\CssSelector\\XPath\\Extension\\HtmlExtension' => $vendorDir . '/symfony/css-selector/XPath/Extension/HtmlExtension.php', + 'Symfony\\Component\\CssSelector\\XPath\\Extension\\NodeExtension' => $vendorDir . '/symfony/css-selector/XPath/Extension/NodeExtension.php', + 'Symfony\\Component\\CssSelector\\XPath\\Extension\\PseudoClassExtension' => $vendorDir . '/symfony/css-selector/XPath/Extension/PseudoClassExtension.php', + 'Symfony\\Component\\CssSelector\\XPath\\Translator' => $vendorDir . '/symfony/css-selector/XPath/Translator.php', + 'Symfony\\Component\\CssSelector\\XPath\\TranslatorInterface' => $vendorDir . '/symfony/css-selector/XPath/TranslatorInterface.php', + 'Symfony\\Component\\CssSelector\\XPath\\XPathExpr' => $vendorDir . '/symfony/css-selector/XPath/XPathExpr.php', + 'Symfony\\Component\\Debug\\BufferingLogger' => $vendorDir . '/symfony/debug/BufferingLogger.php', + 'Symfony\\Component\\Debug\\Debug' => $vendorDir . '/symfony/debug/Debug.php', + 'Symfony\\Component\\Debug\\DebugClassLoader' => $vendorDir . '/symfony/debug/DebugClassLoader.php', + 'Symfony\\Component\\Debug\\ErrorHandler' => $vendorDir . '/symfony/debug/ErrorHandler.php', + 'Symfony\\Component\\Debug\\ExceptionHandler' => $vendorDir . '/symfony/debug/ExceptionHandler.php', + 'Symfony\\Component\\Debug\\Exception\\ClassNotFoundException' => $vendorDir . '/symfony/debug/Exception/ClassNotFoundException.php', + 'Symfony\\Component\\Debug\\Exception\\ContextErrorException' => $vendorDir . '/symfony/debug/Exception/ContextErrorException.php', + 'Symfony\\Component\\Debug\\Exception\\FatalErrorException' => $vendorDir . '/symfony/debug/Exception/FatalErrorException.php', + 'Symfony\\Component\\Debug\\Exception\\FatalThrowableError' => $vendorDir . '/symfony/debug/Exception/FatalThrowableError.php', + 'Symfony\\Component\\Debug\\Exception\\FlattenException' => $vendorDir . '/symfony/debug/Exception/FlattenException.php', + 'Symfony\\Component\\Debug\\Exception\\OutOfMemoryException' => $vendorDir . '/symfony/debug/Exception/OutOfMemoryException.php', + 'Symfony\\Component\\Debug\\Exception\\SilencedErrorContext' => $vendorDir . '/symfony/debug/Exception/SilencedErrorContext.php', + 'Symfony\\Component\\Debug\\Exception\\UndefinedFunctionException' => $vendorDir . '/symfony/debug/Exception/UndefinedFunctionException.php', + 'Symfony\\Component\\Debug\\Exception\\UndefinedMethodException' => $vendorDir . '/symfony/debug/Exception/UndefinedMethodException.php', + 'Symfony\\Component\\Debug\\FatalErrorHandler\\ClassNotFoundFatalErrorHandler' => $vendorDir . '/symfony/debug/FatalErrorHandler/ClassNotFoundFatalErrorHandler.php', + 'Symfony\\Component\\Debug\\FatalErrorHandler\\FatalErrorHandlerInterface' => $vendorDir . '/symfony/debug/FatalErrorHandler/FatalErrorHandlerInterface.php', + 'Symfony\\Component\\Debug\\FatalErrorHandler\\UndefinedFunctionFatalErrorHandler' => $vendorDir . '/symfony/debug/FatalErrorHandler/UndefinedFunctionFatalErrorHandler.php', + 'Symfony\\Component\\Debug\\FatalErrorHandler\\UndefinedMethodFatalErrorHandler' => $vendorDir . '/symfony/debug/FatalErrorHandler/UndefinedMethodFatalErrorHandler.php', + 'Symfony\\Component\\EventDispatcher\\ContainerAwareEventDispatcher' => $vendorDir . '/symfony/event-dispatcher/ContainerAwareEventDispatcher.php', + 'Symfony\\Component\\EventDispatcher\\Debug\\TraceableEventDispatcher' => $vendorDir . '/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php', + 'Symfony\\Component\\EventDispatcher\\Debug\\TraceableEventDispatcherInterface' => $vendorDir . '/symfony/event-dispatcher/Debug/TraceableEventDispatcherInterface.php', + 'Symfony\\Component\\EventDispatcher\\Debug\\WrappedListener' => $vendorDir . '/symfony/event-dispatcher/Debug/WrappedListener.php', + 'Symfony\\Component\\EventDispatcher\\DependencyInjection\\ExtractingEventDispatcher' => $vendorDir . '/symfony/event-dispatcher/DependencyInjection/RegisterListenersPass.php', + 'Symfony\\Component\\EventDispatcher\\DependencyInjection\\RegisterListenersPass' => $vendorDir . '/symfony/event-dispatcher/DependencyInjection/RegisterListenersPass.php', + 'Symfony\\Component\\EventDispatcher\\Event' => $vendorDir . '/symfony/event-dispatcher/Event.php', + 'Symfony\\Component\\EventDispatcher\\EventDispatcher' => $vendorDir . '/symfony/event-dispatcher/EventDispatcher.php', + 'Symfony\\Component\\EventDispatcher\\EventDispatcherInterface' => $vendorDir . '/symfony/event-dispatcher/EventDispatcherInterface.php', + 'Symfony\\Component\\EventDispatcher\\EventSubscriberInterface' => $vendorDir . '/symfony/event-dispatcher/EventSubscriberInterface.php', + 'Symfony\\Component\\EventDispatcher\\GenericEvent' => $vendorDir . '/symfony/event-dispatcher/GenericEvent.php', + 'Symfony\\Component\\EventDispatcher\\ImmutableEventDispatcher' => $vendorDir . '/symfony/event-dispatcher/ImmutableEventDispatcher.php', + 'Symfony\\Component\\Finder\\Comparator\\Comparator' => $vendorDir . '/symfony/finder/Comparator/Comparator.php', + 'Symfony\\Component\\Finder\\Comparator\\DateComparator' => $vendorDir . '/symfony/finder/Comparator/DateComparator.php', + 'Symfony\\Component\\Finder\\Comparator\\NumberComparator' => $vendorDir . '/symfony/finder/Comparator/NumberComparator.php', + 'Symfony\\Component\\Finder\\Exception\\AccessDeniedException' => $vendorDir . '/symfony/finder/Exception/AccessDeniedException.php', + 'Symfony\\Component\\Finder\\Exception\\ExceptionInterface' => $vendorDir . '/symfony/finder/Exception/ExceptionInterface.php', + 'Symfony\\Component\\Finder\\Finder' => $vendorDir . '/symfony/finder/Finder.php', + 'Symfony\\Component\\Finder\\Glob' => $vendorDir . '/symfony/finder/Glob.php', + 'Symfony\\Component\\Finder\\Iterator\\CustomFilterIterator' => $vendorDir . '/symfony/finder/Iterator/CustomFilterIterator.php', + 'Symfony\\Component\\Finder\\Iterator\\DateRangeFilterIterator' => $vendorDir . '/symfony/finder/Iterator/DateRangeFilterIterator.php', + 'Symfony\\Component\\Finder\\Iterator\\DepthRangeFilterIterator' => $vendorDir . '/symfony/finder/Iterator/DepthRangeFilterIterator.php', + 'Symfony\\Component\\Finder\\Iterator\\ExcludeDirectoryFilterIterator' => $vendorDir . '/symfony/finder/Iterator/ExcludeDirectoryFilterIterator.php', + 'Symfony\\Component\\Finder\\Iterator\\FileTypeFilterIterator' => $vendorDir . '/symfony/finder/Iterator/FileTypeFilterIterator.php', + 'Symfony\\Component\\Finder\\Iterator\\FilecontentFilterIterator' => $vendorDir . '/symfony/finder/Iterator/FilecontentFilterIterator.php', + 'Symfony\\Component\\Finder\\Iterator\\FilenameFilterIterator' => $vendorDir . '/symfony/finder/Iterator/FilenameFilterIterator.php', + 'Symfony\\Component\\Finder\\Iterator\\FilterIterator' => $vendorDir . '/symfony/finder/Iterator/FilterIterator.php', + 'Symfony\\Component\\Finder\\Iterator\\MultiplePcreFilterIterator' => $vendorDir . '/symfony/finder/Iterator/MultiplePcreFilterIterator.php', + 'Symfony\\Component\\Finder\\Iterator\\PathFilterIterator' => $vendorDir . '/symfony/finder/Iterator/PathFilterIterator.php', + 'Symfony\\Component\\Finder\\Iterator\\RecursiveDirectoryIterator' => $vendorDir . '/symfony/finder/Iterator/RecursiveDirectoryIterator.php', + 'Symfony\\Component\\Finder\\Iterator\\SizeRangeFilterIterator' => $vendorDir . '/symfony/finder/Iterator/SizeRangeFilterIterator.php', + 'Symfony\\Component\\Finder\\Iterator\\SortableIterator' => $vendorDir . '/symfony/finder/Iterator/SortableIterator.php', + 'Symfony\\Component\\Finder\\SplFileInfo' => $vendorDir . '/symfony/finder/SplFileInfo.php', + 'Symfony\\Component\\HttpFoundation\\AcceptHeader' => $vendorDir . '/symfony/http-foundation/AcceptHeader.php', + 'Symfony\\Component\\HttpFoundation\\AcceptHeaderItem' => $vendorDir . '/symfony/http-foundation/AcceptHeaderItem.php', + 'Symfony\\Component\\HttpFoundation\\ApacheRequest' => $vendorDir . '/symfony/http-foundation/ApacheRequest.php', + 'Symfony\\Component\\HttpFoundation\\BinaryFileResponse' => $vendorDir . '/symfony/http-foundation/BinaryFileResponse.php', + 'Symfony\\Component\\HttpFoundation\\Cookie' => $vendorDir . '/symfony/http-foundation/Cookie.php', + 'Symfony\\Component\\HttpFoundation\\Exception\\ConflictingHeadersException' => $vendorDir . '/symfony/http-foundation/Exception/ConflictingHeadersException.php', + 'Symfony\\Component\\HttpFoundation\\Exception\\RequestExceptionInterface' => $vendorDir . '/symfony/http-foundation/Exception/RequestExceptionInterface.php', + 'Symfony\\Component\\HttpFoundation\\Exception\\SuspiciousOperationException' => $vendorDir . '/symfony/http-foundation/Exception/SuspiciousOperationException.php', + 'Symfony\\Component\\HttpFoundation\\ExpressionRequestMatcher' => $vendorDir . '/symfony/http-foundation/ExpressionRequestMatcher.php', + 'Symfony\\Component\\HttpFoundation\\FileBag' => $vendorDir . '/symfony/http-foundation/FileBag.php', + 'Symfony\\Component\\HttpFoundation\\File\\Exception\\AccessDeniedException' => $vendorDir . '/symfony/http-foundation/File/Exception/AccessDeniedException.php', + 'Symfony\\Component\\HttpFoundation\\File\\Exception\\FileException' => $vendorDir . '/symfony/http-foundation/File/Exception/FileException.php', + 'Symfony\\Component\\HttpFoundation\\File\\Exception\\FileNotFoundException' => $vendorDir . '/symfony/http-foundation/File/Exception/FileNotFoundException.php', + 'Symfony\\Component\\HttpFoundation\\File\\Exception\\UnexpectedTypeException' => $vendorDir . '/symfony/http-foundation/File/Exception/UnexpectedTypeException.php', + 'Symfony\\Component\\HttpFoundation\\File\\Exception\\UploadException' => $vendorDir . '/symfony/http-foundation/File/Exception/UploadException.php', + 'Symfony\\Component\\HttpFoundation\\File\\File' => $vendorDir . '/symfony/http-foundation/File/File.php', + 'Symfony\\Component\\HttpFoundation\\File\\MimeType\\ExtensionGuesser' => $vendorDir . '/symfony/http-foundation/File/MimeType/ExtensionGuesser.php', + 'Symfony\\Component\\HttpFoundation\\File\\MimeType\\ExtensionGuesserInterface' => $vendorDir . '/symfony/http-foundation/File/MimeType/ExtensionGuesserInterface.php', + 'Symfony\\Component\\HttpFoundation\\File\\MimeType\\FileBinaryMimeTypeGuesser' => $vendorDir . '/symfony/http-foundation/File/MimeType/FileBinaryMimeTypeGuesser.php', + 'Symfony\\Component\\HttpFoundation\\File\\MimeType\\FileinfoMimeTypeGuesser' => $vendorDir . '/symfony/http-foundation/File/MimeType/FileinfoMimeTypeGuesser.php', + 'Symfony\\Component\\HttpFoundation\\File\\MimeType\\MimeTypeExtensionGuesser' => $vendorDir . '/symfony/http-foundation/File/MimeType/MimeTypeExtensionGuesser.php', + 'Symfony\\Component\\HttpFoundation\\File\\MimeType\\MimeTypeGuesser' => $vendorDir . '/symfony/http-foundation/File/MimeType/MimeTypeGuesser.php', + 'Symfony\\Component\\HttpFoundation\\File\\MimeType\\MimeTypeGuesserInterface' => $vendorDir . '/symfony/http-foundation/File/MimeType/MimeTypeGuesserInterface.php', + 'Symfony\\Component\\HttpFoundation\\File\\Stream' => $vendorDir . '/symfony/http-foundation/File/Stream.php', + 'Symfony\\Component\\HttpFoundation\\File\\UploadedFile' => $vendorDir . '/symfony/http-foundation/File/UploadedFile.php', + 'Symfony\\Component\\HttpFoundation\\HeaderBag' => $vendorDir . '/symfony/http-foundation/HeaderBag.php', + 'Symfony\\Component\\HttpFoundation\\IpUtils' => $vendorDir . '/symfony/http-foundation/IpUtils.php', + 'Symfony\\Component\\HttpFoundation\\JsonResponse' => $vendorDir . '/symfony/http-foundation/JsonResponse.php', + 'Symfony\\Component\\HttpFoundation\\ParameterBag' => $vendorDir . '/symfony/http-foundation/ParameterBag.php', + 'Symfony\\Component\\HttpFoundation\\RedirectResponse' => $vendorDir . '/symfony/http-foundation/RedirectResponse.php', + 'Symfony\\Component\\HttpFoundation\\Request' => $vendorDir . '/symfony/http-foundation/Request.php', + 'Symfony\\Component\\HttpFoundation\\RequestMatcher' => $vendorDir . '/symfony/http-foundation/RequestMatcher.php', + 'Symfony\\Component\\HttpFoundation\\RequestMatcherInterface' => $vendorDir . '/symfony/http-foundation/RequestMatcherInterface.php', + 'Symfony\\Component\\HttpFoundation\\RequestStack' => $vendorDir . '/symfony/http-foundation/RequestStack.php', + 'Symfony\\Component\\HttpFoundation\\Response' => $vendorDir . '/symfony/http-foundation/Response.php', + 'Symfony\\Component\\HttpFoundation\\ResponseHeaderBag' => $vendorDir . '/symfony/http-foundation/ResponseHeaderBag.php', + 'Symfony\\Component\\HttpFoundation\\ServerBag' => $vendorDir . '/symfony/http-foundation/ServerBag.php', + 'Symfony\\Component\\HttpFoundation\\Session\\Attribute\\AttributeBag' => $vendorDir . '/symfony/http-foundation/Session/Attribute/AttributeBag.php', + 'Symfony\\Component\\HttpFoundation\\Session\\Attribute\\AttributeBagInterface' => $vendorDir . '/symfony/http-foundation/Session/Attribute/AttributeBagInterface.php', + 'Symfony\\Component\\HttpFoundation\\Session\\Attribute\\NamespacedAttributeBag' => $vendorDir . '/symfony/http-foundation/Session/Attribute/NamespacedAttributeBag.php', + 'Symfony\\Component\\HttpFoundation\\Session\\Flash\\AutoExpireFlashBag' => $vendorDir . '/symfony/http-foundation/Session/Flash/AutoExpireFlashBag.php', + 'Symfony\\Component\\HttpFoundation\\Session\\Flash\\FlashBag' => $vendorDir . '/symfony/http-foundation/Session/Flash/FlashBag.php', + 'Symfony\\Component\\HttpFoundation\\Session\\Flash\\FlashBagInterface' => $vendorDir . '/symfony/http-foundation/Session/Flash/FlashBagInterface.php', + 'Symfony\\Component\\HttpFoundation\\Session\\Session' => $vendorDir . '/symfony/http-foundation/Session/Session.php', + 'Symfony\\Component\\HttpFoundation\\Session\\SessionBagInterface' => $vendorDir . '/symfony/http-foundation/Session/SessionBagInterface.php', + 'Symfony\\Component\\HttpFoundation\\Session\\SessionInterface' => $vendorDir . '/symfony/http-foundation/Session/SessionInterface.php', + 'Symfony\\Component\\HttpFoundation\\Session\\Storage\\Handler\\MemcacheSessionHandler' => $vendorDir . '/symfony/http-foundation/Session/Storage/Handler/MemcacheSessionHandler.php', + 'Symfony\\Component\\HttpFoundation\\Session\\Storage\\Handler\\MemcachedSessionHandler' => $vendorDir . '/symfony/http-foundation/Session/Storage/Handler/MemcachedSessionHandler.php', + 'Symfony\\Component\\HttpFoundation\\Session\\Storage\\Handler\\MongoDbSessionHandler' => $vendorDir . '/symfony/http-foundation/Session/Storage/Handler/MongoDbSessionHandler.php', + 'Symfony\\Component\\HttpFoundation\\Session\\Storage\\Handler\\NativeFileSessionHandler' => $vendorDir . '/symfony/http-foundation/Session/Storage/Handler/NativeFileSessionHandler.php', + 'Symfony\\Component\\HttpFoundation\\Session\\Storage\\Handler\\NativeSessionHandler' => $vendorDir . '/symfony/http-foundation/Session/Storage/Handler/NativeSessionHandler.php', + 'Symfony\\Component\\HttpFoundation\\Session\\Storage\\Handler\\NullSessionHandler' => $vendorDir . '/symfony/http-foundation/Session/Storage/Handler/NullSessionHandler.php', + 'Symfony\\Component\\HttpFoundation\\Session\\Storage\\Handler\\PdoSessionHandler' => $vendorDir . '/symfony/http-foundation/Session/Storage/Handler/PdoSessionHandler.php', + 'Symfony\\Component\\HttpFoundation\\Session\\Storage\\Handler\\WriteCheckSessionHandler' => $vendorDir . '/symfony/http-foundation/Session/Storage/Handler/WriteCheckSessionHandler.php', + 'Symfony\\Component\\HttpFoundation\\Session\\Storage\\MetadataBag' => $vendorDir . '/symfony/http-foundation/Session/Storage/MetadataBag.php', + 'Symfony\\Component\\HttpFoundation\\Session\\Storage\\MockArraySessionStorage' => $vendorDir . '/symfony/http-foundation/Session/Storage/MockArraySessionStorage.php', + 'Symfony\\Component\\HttpFoundation\\Session\\Storage\\MockFileSessionStorage' => $vendorDir . '/symfony/http-foundation/Session/Storage/MockFileSessionStorage.php', + 'Symfony\\Component\\HttpFoundation\\Session\\Storage\\NativeSessionStorage' => $vendorDir . '/symfony/http-foundation/Session/Storage/NativeSessionStorage.php', + 'Symfony\\Component\\HttpFoundation\\Session\\Storage\\PhpBridgeSessionStorage' => $vendorDir . '/symfony/http-foundation/Session/Storage/PhpBridgeSessionStorage.php', + 'Symfony\\Component\\HttpFoundation\\Session\\Storage\\Proxy\\AbstractProxy' => $vendorDir . '/symfony/http-foundation/Session/Storage/Proxy/AbstractProxy.php', + 'Symfony\\Component\\HttpFoundation\\Session\\Storage\\Proxy\\NativeProxy' => $vendorDir . '/symfony/http-foundation/Session/Storage/Proxy/NativeProxy.php', + 'Symfony\\Component\\HttpFoundation\\Session\\Storage\\Proxy\\SessionHandlerProxy' => $vendorDir . '/symfony/http-foundation/Session/Storage/Proxy/SessionHandlerProxy.php', + 'Symfony\\Component\\HttpFoundation\\Session\\Storage\\SessionStorageInterface' => $vendorDir . '/symfony/http-foundation/Session/Storage/SessionStorageInterface.php', + 'Symfony\\Component\\HttpFoundation\\StreamedResponse' => $vendorDir . '/symfony/http-foundation/StreamedResponse.php', + 'Symfony\\Component\\HttpKernel\\Bundle\\Bundle' => $vendorDir . '/symfony/http-kernel/Bundle/Bundle.php', + 'Symfony\\Component\\HttpKernel\\Bundle\\BundleInterface' => $vendorDir . '/symfony/http-kernel/Bundle/BundleInterface.php', + 'Symfony\\Component\\HttpKernel\\CacheClearer\\CacheClearerInterface' => $vendorDir . '/symfony/http-kernel/CacheClearer/CacheClearerInterface.php', + 'Symfony\\Component\\HttpKernel\\CacheClearer\\ChainCacheClearer' => $vendorDir . '/symfony/http-kernel/CacheClearer/ChainCacheClearer.php', + 'Symfony\\Component\\HttpKernel\\CacheClearer\\Psr6CacheClearer' => $vendorDir . '/symfony/http-kernel/CacheClearer/Psr6CacheClearer.php', + 'Symfony\\Component\\HttpKernel\\CacheWarmer\\CacheWarmer' => $vendorDir . '/symfony/http-kernel/CacheWarmer/CacheWarmer.php', + 'Symfony\\Component\\HttpKernel\\CacheWarmer\\CacheWarmerAggregate' => $vendorDir . '/symfony/http-kernel/CacheWarmer/CacheWarmerAggregate.php', + 'Symfony\\Component\\HttpKernel\\CacheWarmer\\CacheWarmerInterface' => $vendorDir . '/symfony/http-kernel/CacheWarmer/CacheWarmerInterface.php', + 'Symfony\\Component\\HttpKernel\\CacheWarmer\\WarmableInterface' => $vendorDir . '/symfony/http-kernel/CacheWarmer/WarmableInterface.php', + 'Symfony\\Component\\HttpKernel\\Client' => $vendorDir . '/symfony/http-kernel/Client.php', + 'Symfony\\Component\\HttpKernel\\Config\\EnvParametersResource' => $vendorDir . '/symfony/http-kernel/Config/EnvParametersResource.php', + 'Symfony\\Component\\HttpKernel\\Config\\FileLocator' => $vendorDir . '/symfony/http-kernel/Config/FileLocator.php', + 'Symfony\\Component\\HttpKernel\\ControllerMetadata\\ArgumentMetadata' => $vendorDir . '/symfony/http-kernel/ControllerMetadata/ArgumentMetadata.php', + 'Symfony\\Component\\HttpKernel\\ControllerMetadata\\ArgumentMetadataFactory' => $vendorDir . '/symfony/http-kernel/ControllerMetadata/ArgumentMetadataFactory.php', + 'Symfony\\Component\\HttpKernel\\ControllerMetadata\\ArgumentMetadataFactoryInterface' => $vendorDir . '/symfony/http-kernel/ControllerMetadata/ArgumentMetadataFactoryInterface.php', + 'Symfony\\Component\\HttpKernel\\Controller\\ArgumentResolver' => $vendorDir . '/symfony/http-kernel/Controller/ArgumentResolver.php', + 'Symfony\\Component\\HttpKernel\\Controller\\ArgumentResolverInterface' => $vendorDir . '/symfony/http-kernel/Controller/ArgumentResolverInterface.php', + 'Symfony\\Component\\HttpKernel\\Controller\\ArgumentResolver\\DefaultValueResolver' => $vendorDir . '/symfony/http-kernel/Controller/ArgumentResolver/DefaultValueResolver.php', + 'Symfony\\Component\\HttpKernel\\Controller\\ArgumentResolver\\RequestAttributeValueResolver' => $vendorDir . '/symfony/http-kernel/Controller/ArgumentResolver/RequestAttributeValueResolver.php', + 'Symfony\\Component\\HttpKernel\\Controller\\ArgumentResolver\\RequestValueResolver' => $vendorDir . '/symfony/http-kernel/Controller/ArgumentResolver/RequestValueResolver.php', + 'Symfony\\Component\\HttpKernel\\Controller\\ArgumentResolver\\ServiceValueResolver' => $vendorDir . '/symfony/http-kernel/Controller/ArgumentResolver/ServiceValueResolver.php', + 'Symfony\\Component\\HttpKernel\\Controller\\ArgumentResolver\\SessionValueResolver' => $vendorDir . '/symfony/http-kernel/Controller/ArgumentResolver/SessionValueResolver.php', + 'Symfony\\Component\\HttpKernel\\Controller\\ArgumentResolver\\VariadicValueResolver' => $vendorDir . '/symfony/http-kernel/Controller/ArgumentResolver/VariadicValueResolver.php', + 'Symfony\\Component\\HttpKernel\\Controller\\ArgumentValueResolverInterface' => $vendorDir . '/symfony/http-kernel/Controller/ArgumentValueResolverInterface.php', + 'Symfony\\Component\\HttpKernel\\Controller\\ContainerControllerResolver' => $vendorDir . '/symfony/http-kernel/Controller/ContainerControllerResolver.php', + 'Symfony\\Component\\HttpKernel\\Controller\\ControllerReference' => $vendorDir . '/symfony/http-kernel/Controller/ControllerReference.php', + 'Symfony\\Component\\HttpKernel\\Controller\\ControllerResolver' => $vendorDir . '/symfony/http-kernel/Controller/ControllerResolver.php', + 'Symfony\\Component\\HttpKernel\\Controller\\ControllerResolverInterface' => $vendorDir . '/symfony/http-kernel/Controller/ControllerResolverInterface.php', + 'Symfony\\Component\\HttpKernel\\Controller\\TraceableArgumentResolver' => $vendorDir . '/symfony/http-kernel/Controller/TraceableArgumentResolver.php', + 'Symfony\\Component\\HttpKernel\\Controller\\TraceableControllerResolver' => $vendorDir . '/symfony/http-kernel/Controller/TraceableControllerResolver.php', + 'Symfony\\Component\\HttpKernel\\DataCollector\\AjaxDataCollector' => $vendorDir . '/symfony/http-kernel/DataCollector/AjaxDataCollector.php', + 'Symfony\\Component\\HttpKernel\\DataCollector\\ConfigDataCollector' => $vendorDir . '/symfony/http-kernel/DataCollector/ConfigDataCollector.php', + 'Symfony\\Component\\HttpKernel\\DataCollector\\DataCollector' => $vendorDir . '/symfony/http-kernel/DataCollector/DataCollector.php', + 'Symfony\\Component\\HttpKernel\\DataCollector\\DataCollectorInterface' => $vendorDir . '/symfony/http-kernel/DataCollector/DataCollectorInterface.php', + 'Symfony\\Component\\HttpKernel\\DataCollector\\DumpDataCollector' => $vendorDir . '/symfony/http-kernel/DataCollector/DumpDataCollector.php', + 'Symfony\\Component\\HttpKernel\\DataCollector\\EventDataCollector' => $vendorDir . '/symfony/http-kernel/DataCollector/EventDataCollector.php', + 'Symfony\\Component\\HttpKernel\\DataCollector\\ExceptionDataCollector' => $vendorDir . '/symfony/http-kernel/DataCollector/ExceptionDataCollector.php', + 'Symfony\\Component\\HttpKernel\\DataCollector\\LateDataCollectorInterface' => $vendorDir . '/symfony/http-kernel/DataCollector/LateDataCollectorInterface.php', + 'Symfony\\Component\\HttpKernel\\DataCollector\\LoggerDataCollector' => $vendorDir . '/symfony/http-kernel/DataCollector/LoggerDataCollector.php', + 'Symfony\\Component\\HttpKernel\\DataCollector\\MemoryDataCollector' => $vendorDir . '/symfony/http-kernel/DataCollector/MemoryDataCollector.php', + 'Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector' => $vendorDir . '/symfony/http-kernel/DataCollector/RequestDataCollector.php', + 'Symfony\\Component\\HttpKernel\\DataCollector\\RouterDataCollector' => $vendorDir . '/symfony/http-kernel/DataCollector/RouterDataCollector.php', + 'Symfony\\Component\\HttpKernel\\DataCollector\\TimeDataCollector' => $vendorDir . '/symfony/http-kernel/DataCollector/TimeDataCollector.php', + 'Symfony\\Component\\HttpKernel\\DataCollector\\Util\\ValueExporter' => $vendorDir . '/symfony/http-kernel/DataCollector/Util/ValueExporter.php', + 'Symfony\\Component\\HttpKernel\\Debug\\FileLinkFormatter' => $vendorDir . '/symfony/http-kernel/Debug/FileLinkFormatter.php', + 'Symfony\\Component\\HttpKernel\\Debug\\TraceableEventDispatcher' => $vendorDir . '/symfony/http-kernel/Debug/TraceableEventDispatcher.php', + 'Symfony\\Component\\HttpKernel\\DependencyInjection\\AddAnnotatedClassesToCachePass' => $vendorDir . '/symfony/http-kernel/DependencyInjection/AddAnnotatedClassesToCachePass.php', + 'Symfony\\Component\\HttpKernel\\DependencyInjection\\AddClassesToCachePass' => $vendorDir . '/symfony/http-kernel/DependencyInjection/AddClassesToCachePass.php', + 'Symfony\\Component\\HttpKernel\\DependencyInjection\\ConfigurableExtension' => $vendorDir . '/symfony/http-kernel/DependencyInjection/ConfigurableExtension.php', + 'Symfony\\Component\\HttpKernel\\DependencyInjection\\ControllerArgumentValueResolverPass' => $vendorDir . '/symfony/http-kernel/DependencyInjection/ControllerArgumentValueResolverPass.php', + 'Symfony\\Component\\HttpKernel\\DependencyInjection\\Extension' => $vendorDir . '/symfony/http-kernel/DependencyInjection/Extension.php', + 'Symfony\\Component\\HttpKernel\\DependencyInjection\\FragmentRendererPass' => $vendorDir . '/symfony/http-kernel/DependencyInjection/FragmentRendererPass.php', + 'Symfony\\Component\\HttpKernel\\DependencyInjection\\LazyLoadingFragmentHandler' => $vendorDir . '/symfony/http-kernel/DependencyInjection/LazyLoadingFragmentHandler.php', + 'Symfony\\Component\\HttpKernel\\DependencyInjection\\MergeExtensionConfigurationPass' => $vendorDir . '/symfony/http-kernel/DependencyInjection/MergeExtensionConfigurationPass.php', + 'Symfony\\Component\\HttpKernel\\DependencyInjection\\RegisterControllerArgumentLocatorsPass' => $vendorDir . '/symfony/http-kernel/DependencyInjection/RegisterControllerArgumentLocatorsPass.php', + 'Symfony\\Component\\HttpKernel\\DependencyInjection\\RemoveEmptyControllerArgumentLocatorsPass' => $vendorDir . '/symfony/http-kernel/DependencyInjection/RemoveEmptyControllerArgumentLocatorsPass.php', + 'Symfony\\Component\\HttpKernel\\EventListener\\AbstractSessionListener' => $vendorDir . '/symfony/http-kernel/EventListener/AbstractSessionListener.php', + 'Symfony\\Component\\HttpKernel\\EventListener\\AbstractTestSessionListener' => $vendorDir . '/symfony/http-kernel/EventListener/AbstractTestSessionListener.php', + 'Symfony\\Component\\HttpKernel\\EventListener\\AddRequestFormatsListener' => $vendorDir . '/symfony/http-kernel/EventListener/AddRequestFormatsListener.php', + 'Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener' => $vendorDir . '/symfony/http-kernel/EventListener/DebugHandlersListener.php', + 'Symfony\\Component\\HttpKernel\\EventListener\\DumpListener' => $vendorDir . '/symfony/http-kernel/EventListener/DumpListener.php', + 'Symfony\\Component\\HttpKernel\\EventListener\\ExceptionListener' => $vendorDir . '/symfony/http-kernel/EventListener/ExceptionListener.php', + 'Symfony\\Component\\HttpKernel\\EventListener\\FragmentListener' => $vendorDir . '/symfony/http-kernel/EventListener/FragmentListener.php', + 'Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener' => $vendorDir . '/symfony/http-kernel/EventListener/LocaleListener.php', + 'Symfony\\Component\\HttpKernel\\EventListener\\ProfilerListener' => $vendorDir . '/symfony/http-kernel/EventListener/ProfilerListener.php', + 'Symfony\\Component\\HttpKernel\\EventListener\\ResponseListener' => $vendorDir . '/symfony/http-kernel/EventListener/ResponseListener.php', + 'Symfony\\Component\\HttpKernel\\EventListener\\RouterListener' => $vendorDir . '/symfony/http-kernel/EventListener/RouterListener.php', + 'Symfony\\Component\\HttpKernel\\EventListener\\SaveSessionListener' => $vendorDir . '/symfony/http-kernel/EventListener/SaveSessionListener.php', + 'Symfony\\Component\\HttpKernel\\EventListener\\SessionListener' => $vendorDir . '/symfony/http-kernel/EventListener/SessionListener.php', + 'Symfony\\Component\\HttpKernel\\EventListener\\StreamedResponseListener' => $vendorDir . '/symfony/http-kernel/EventListener/StreamedResponseListener.php', + 'Symfony\\Component\\HttpKernel\\EventListener\\SurrogateListener' => $vendorDir . '/symfony/http-kernel/EventListener/SurrogateListener.php', + 'Symfony\\Component\\HttpKernel\\EventListener\\TestSessionListener' => $vendorDir . '/symfony/http-kernel/EventListener/TestSessionListener.php', + 'Symfony\\Component\\HttpKernel\\EventListener\\TranslatorListener' => $vendorDir . '/symfony/http-kernel/EventListener/TranslatorListener.php', + 'Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener' => $vendorDir . '/symfony/http-kernel/EventListener/ValidateRequestListener.php', + 'Symfony\\Component\\HttpKernel\\Event\\FilterControllerArgumentsEvent' => $vendorDir . '/symfony/http-kernel/Event/FilterControllerArgumentsEvent.php', + 'Symfony\\Component\\HttpKernel\\Event\\FilterControllerEvent' => $vendorDir . '/symfony/http-kernel/Event/FilterControllerEvent.php', + 'Symfony\\Component\\HttpKernel\\Event\\FilterResponseEvent' => $vendorDir . '/symfony/http-kernel/Event/FilterResponseEvent.php', + 'Symfony\\Component\\HttpKernel\\Event\\FinishRequestEvent' => $vendorDir . '/symfony/http-kernel/Event/FinishRequestEvent.php', + 'Symfony\\Component\\HttpKernel\\Event\\GetResponseEvent' => $vendorDir . '/symfony/http-kernel/Event/GetResponseEvent.php', + 'Symfony\\Component\\HttpKernel\\Event\\GetResponseForControllerResultEvent' => $vendorDir . '/symfony/http-kernel/Event/GetResponseForControllerResultEvent.php', + 'Symfony\\Component\\HttpKernel\\Event\\GetResponseForExceptionEvent' => $vendorDir . '/symfony/http-kernel/Event/GetResponseForExceptionEvent.php', + 'Symfony\\Component\\HttpKernel\\Event\\KernelEvent' => $vendorDir . '/symfony/http-kernel/Event/KernelEvent.php', + 'Symfony\\Component\\HttpKernel\\Event\\PostResponseEvent' => $vendorDir . '/symfony/http-kernel/Event/PostResponseEvent.php', + 'Symfony\\Component\\HttpKernel\\Exception\\AccessDeniedHttpException' => $vendorDir . '/symfony/http-kernel/Exception/AccessDeniedHttpException.php', + 'Symfony\\Component\\HttpKernel\\Exception\\BadRequestHttpException' => $vendorDir . '/symfony/http-kernel/Exception/BadRequestHttpException.php', + 'Symfony\\Component\\HttpKernel\\Exception\\ConflictHttpException' => $vendorDir . '/symfony/http-kernel/Exception/ConflictHttpException.php', + 'Symfony\\Component\\HttpKernel\\Exception\\GoneHttpException' => $vendorDir . '/symfony/http-kernel/Exception/GoneHttpException.php', + 'Symfony\\Component\\HttpKernel\\Exception\\HttpException' => $vendorDir . '/symfony/http-kernel/Exception/HttpException.php', + 'Symfony\\Component\\HttpKernel\\Exception\\HttpExceptionInterface' => $vendorDir . '/symfony/http-kernel/Exception/HttpExceptionInterface.php', + 'Symfony\\Component\\HttpKernel\\Exception\\LengthRequiredHttpException' => $vendorDir . '/symfony/http-kernel/Exception/LengthRequiredHttpException.php', + 'Symfony\\Component\\HttpKernel\\Exception\\MethodNotAllowedHttpException' => $vendorDir . '/symfony/http-kernel/Exception/MethodNotAllowedHttpException.php', + 'Symfony\\Component\\HttpKernel\\Exception\\NotAcceptableHttpException' => $vendorDir . '/symfony/http-kernel/Exception/NotAcceptableHttpException.php', + 'Symfony\\Component\\HttpKernel\\Exception\\NotFoundHttpException' => $vendorDir . '/symfony/http-kernel/Exception/NotFoundHttpException.php', + 'Symfony\\Component\\HttpKernel\\Exception\\PreconditionFailedHttpException' => $vendorDir . '/symfony/http-kernel/Exception/PreconditionFailedHttpException.php', + 'Symfony\\Component\\HttpKernel\\Exception\\PreconditionRequiredHttpException' => $vendorDir . '/symfony/http-kernel/Exception/PreconditionRequiredHttpException.php', + 'Symfony\\Component\\HttpKernel\\Exception\\ServiceUnavailableHttpException' => $vendorDir . '/symfony/http-kernel/Exception/ServiceUnavailableHttpException.php', + 'Symfony\\Component\\HttpKernel\\Exception\\TooManyRequestsHttpException' => $vendorDir . '/symfony/http-kernel/Exception/TooManyRequestsHttpException.php', + 'Symfony\\Component\\HttpKernel\\Exception\\UnauthorizedHttpException' => $vendorDir . '/symfony/http-kernel/Exception/UnauthorizedHttpException.php', + 'Symfony\\Component\\HttpKernel\\Exception\\UnprocessableEntityHttpException' => $vendorDir . '/symfony/http-kernel/Exception/UnprocessableEntityHttpException.php', + 'Symfony\\Component\\HttpKernel\\Exception\\UnsupportedMediaTypeHttpException' => $vendorDir . '/symfony/http-kernel/Exception/UnsupportedMediaTypeHttpException.php', + 'Symfony\\Component\\HttpKernel\\Fragment\\AbstractSurrogateFragmentRenderer' => $vendorDir . '/symfony/http-kernel/Fragment/AbstractSurrogateFragmentRenderer.php', + 'Symfony\\Component\\HttpKernel\\Fragment\\EsiFragmentRenderer' => $vendorDir . '/symfony/http-kernel/Fragment/EsiFragmentRenderer.php', + 'Symfony\\Component\\HttpKernel\\Fragment\\FragmentHandler' => $vendorDir . '/symfony/http-kernel/Fragment/FragmentHandler.php', + 'Symfony\\Component\\HttpKernel\\Fragment\\FragmentRendererInterface' => $vendorDir . '/symfony/http-kernel/Fragment/FragmentRendererInterface.php', + 'Symfony\\Component\\HttpKernel\\Fragment\\HIncludeFragmentRenderer' => $vendorDir . '/symfony/http-kernel/Fragment/HIncludeFragmentRenderer.php', + 'Symfony\\Component\\HttpKernel\\Fragment\\InlineFragmentRenderer' => $vendorDir . '/symfony/http-kernel/Fragment/InlineFragmentRenderer.php', + 'Symfony\\Component\\HttpKernel\\Fragment\\RoutableFragmentRenderer' => $vendorDir . '/symfony/http-kernel/Fragment/RoutableFragmentRenderer.php', + 'Symfony\\Component\\HttpKernel\\Fragment\\SsiFragmentRenderer' => $vendorDir . '/symfony/http-kernel/Fragment/SsiFragmentRenderer.php', + 'Symfony\\Component\\HttpKernel\\HttpCache\\AbstractSurrogate' => $vendorDir . '/symfony/http-kernel/HttpCache/AbstractSurrogate.php', + 'Symfony\\Component\\HttpKernel\\HttpCache\\Esi' => $vendorDir . '/symfony/http-kernel/HttpCache/Esi.php', + 'Symfony\\Component\\HttpKernel\\HttpCache\\HttpCache' => $vendorDir . '/symfony/http-kernel/HttpCache/HttpCache.php', + 'Symfony\\Component\\HttpKernel\\HttpCache\\ResponseCacheStrategy' => $vendorDir . '/symfony/http-kernel/HttpCache/ResponseCacheStrategy.php', + 'Symfony\\Component\\HttpKernel\\HttpCache\\ResponseCacheStrategyInterface' => $vendorDir . '/symfony/http-kernel/HttpCache/ResponseCacheStrategyInterface.php', + 'Symfony\\Component\\HttpKernel\\HttpCache\\Ssi' => $vendorDir . '/symfony/http-kernel/HttpCache/Ssi.php', + 'Symfony\\Component\\HttpKernel\\HttpCache\\Store' => $vendorDir . '/symfony/http-kernel/HttpCache/Store.php', + 'Symfony\\Component\\HttpKernel\\HttpCache\\StoreInterface' => $vendorDir . '/symfony/http-kernel/HttpCache/StoreInterface.php', + 'Symfony\\Component\\HttpKernel\\HttpCache\\SurrogateInterface' => $vendorDir . '/symfony/http-kernel/HttpCache/SurrogateInterface.php', + 'Symfony\\Component\\HttpKernel\\HttpKernel' => $vendorDir . '/symfony/http-kernel/HttpKernel.php', + 'Symfony\\Component\\HttpKernel\\HttpKernelInterface' => $vendorDir . '/symfony/http-kernel/HttpKernelInterface.php', + 'Symfony\\Component\\HttpKernel\\Kernel' => $vendorDir . '/symfony/http-kernel/Kernel.php', + 'Symfony\\Component\\HttpKernel\\KernelEvents' => $vendorDir . '/symfony/http-kernel/KernelEvents.php', + 'Symfony\\Component\\HttpKernel\\KernelInterface' => $vendorDir . '/symfony/http-kernel/KernelInterface.php', + 'Symfony\\Component\\HttpKernel\\Log\\DebugLoggerInterface' => $vendorDir . '/symfony/http-kernel/Log/DebugLoggerInterface.php', + 'Symfony\\Component\\HttpKernel\\Profiler\\FileProfilerStorage' => $vendorDir . '/symfony/http-kernel/Profiler/FileProfilerStorage.php', + 'Symfony\\Component\\HttpKernel\\Profiler\\Profile' => $vendorDir . '/symfony/http-kernel/Profiler/Profile.php', + 'Symfony\\Component\\HttpKernel\\Profiler\\Profiler' => $vendorDir . '/symfony/http-kernel/Profiler/Profiler.php', + 'Symfony\\Component\\HttpKernel\\Profiler\\ProfilerStorageInterface' => $vendorDir . '/symfony/http-kernel/Profiler/ProfilerStorageInterface.php', + 'Symfony\\Component\\HttpKernel\\TerminableInterface' => $vendorDir . '/symfony/http-kernel/TerminableInterface.php', + 'Symfony\\Component\\HttpKernel\\UriSigner' => $vendorDir . '/symfony/http-kernel/UriSigner.php', + 'Symfony\\Component\\Process\\Exception\\ExceptionInterface' => $vendorDir . '/symfony/process/Exception/ExceptionInterface.php', + 'Symfony\\Component\\Process\\Exception\\InvalidArgumentException' => $vendorDir . '/symfony/process/Exception/InvalidArgumentException.php', + 'Symfony\\Component\\Process\\Exception\\LogicException' => $vendorDir . '/symfony/process/Exception/LogicException.php', + 'Symfony\\Component\\Process\\Exception\\ProcessFailedException' => $vendorDir . '/symfony/process/Exception/ProcessFailedException.php', + 'Symfony\\Component\\Process\\Exception\\ProcessTimedOutException' => $vendorDir . '/symfony/process/Exception/ProcessTimedOutException.php', + 'Symfony\\Component\\Process\\Exception\\RuntimeException' => $vendorDir . '/symfony/process/Exception/RuntimeException.php', + 'Symfony\\Component\\Process\\ExecutableFinder' => $vendorDir . '/symfony/process/ExecutableFinder.php', + 'Symfony\\Component\\Process\\InputStream' => $vendorDir . '/symfony/process/InputStream.php', + 'Symfony\\Component\\Process\\PhpExecutableFinder' => $vendorDir . '/symfony/process/PhpExecutableFinder.php', + 'Symfony\\Component\\Process\\PhpProcess' => $vendorDir . '/symfony/process/PhpProcess.php', + 'Symfony\\Component\\Process\\Pipes\\AbstractPipes' => $vendorDir . '/symfony/process/Pipes/AbstractPipes.php', + 'Symfony\\Component\\Process\\Pipes\\PipesInterface' => $vendorDir . '/symfony/process/Pipes/PipesInterface.php', + 'Symfony\\Component\\Process\\Pipes\\UnixPipes' => $vendorDir . '/symfony/process/Pipes/UnixPipes.php', + 'Symfony\\Component\\Process\\Pipes\\WindowsPipes' => $vendorDir . '/symfony/process/Pipes/WindowsPipes.php', + 'Symfony\\Component\\Process\\Process' => $vendorDir . '/symfony/process/Process.php', + 'Symfony\\Component\\Process\\ProcessBuilder' => $vendorDir . '/symfony/process/ProcessBuilder.php', + 'Symfony\\Component\\Process\\ProcessUtils' => $vendorDir . '/symfony/process/ProcessUtils.php', + 'Symfony\\Component\\Routing\\Annotation\\Route' => $vendorDir . '/symfony/routing/Annotation/Route.php', + 'Symfony\\Component\\Routing\\CompiledRoute' => $vendorDir . '/symfony/routing/CompiledRoute.php', + 'Symfony\\Component\\Routing\\DependencyInjection\\RoutingResolverPass' => $vendorDir . '/symfony/routing/DependencyInjection/RoutingResolverPass.php', + 'Symfony\\Component\\Routing\\Exception\\ExceptionInterface' => $vendorDir . '/symfony/routing/Exception/ExceptionInterface.php', + 'Symfony\\Component\\Routing\\Exception\\InvalidParameterException' => $vendorDir . '/symfony/routing/Exception/InvalidParameterException.php', + 'Symfony\\Component\\Routing\\Exception\\MethodNotAllowedException' => $vendorDir . '/symfony/routing/Exception/MethodNotAllowedException.php', + 'Symfony\\Component\\Routing\\Exception\\MissingMandatoryParametersException' => $vendorDir . '/symfony/routing/Exception/MissingMandatoryParametersException.php', + 'Symfony\\Component\\Routing\\Exception\\ResourceNotFoundException' => $vendorDir . '/symfony/routing/Exception/ResourceNotFoundException.php', + 'Symfony\\Component\\Routing\\Exception\\RouteNotFoundException' => $vendorDir . '/symfony/routing/Exception/RouteNotFoundException.php', + 'Symfony\\Component\\Routing\\Generator\\ConfigurableRequirementsInterface' => $vendorDir . '/symfony/routing/Generator/ConfigurableRequirementsInterface.php', + 'Symfony\\Component\\Routing\\Generator\\Dumper\\GeneratorDumper' => $vendorDir . '/symfony/routing/Generator/Dumper/GeneratorDumper.php', + 'Symfony\\Component\\Routing\\Generator\\Dumper\\GeneratorDumperInterface' => $vendorDir . '/symfony/routing/Generator/Dumper/GeneratorDumperInterface.php', + 'Symfony\\Component\\Routing\\Generator\\Dumper\\PhpGeneratorDumper' => $vendorDir . '/symfony/routing/Generator/Dumper/PhpGeneratorDumper.php', + 'Symfony\\Component\\Routing\\Generator\\UrlGenerator' => $vendorDir . '/symfony/routing/Generator/UrlGenerator.php', + 'Symfony\\Component\\Routing\\Generator\\UrlGeneratorInterface' => $vendorDir . '/symfony/routing/Generator/UrlGeneratorInterface.php', + 'Symfony\\Component\\Routing\\Loader\\AnnotationClassLoader' => $vendorDir . '/symfony/routing/Loader/AnnotationClassLoader.php', + 'Symfony\\Component\\Routing\\Loader\\AnnotationDirectoryLoader' => $vendorDir . '/symfony/routing/Loader/AnnotationDirectoryLoader.php', + 'Symfony\\Component\\Routing\\Loader\\AnnotationFileLoader' => $vendorDir . '/symfony/routing/Loader/AnnotationFileLoader.php', + 'Symfony\\Component\\Routing\\Loader\\ClosureLoader' => $vendorDir . '/symfony/routing/Loader/ClosureLoader.php', + 'Symfony\\Component\\Routing\\Loader\\DependencyInjection\\ServiceRouterLoader' => $vendorDir . '/symfony/routing/Loader/DependencyInjection/ServiceRouterLoader.php', + 'Symfony\\Component\\Routing\\Loader\\DirectoryLoader' => $vendorDir . '/symfony/routing/Loader/DirectoryLoader.php', + 'Symfony\\Component\\Routing\\Loader\\ObjectRouteLoader' => $vendorDir . '/symfony/routing/Loader/ObjectRouteLoader.php', + 'Symfony\\Component\\Routing\\Loader\\PhpFileLoader' => $vendorDir . '/symfony/routing/Loader/PhpFileLoader.php', + 'Symfony\\Component\\Routing\\Loader\\XmlFileLoader' => $vendorDir . '/symfony/routing/Loader/XmlFileLoader.php', + 'Symfony\\Component\\Routing\\Loader\\YamlFileLoader' => $vendorDir . '/symfony/routing/Loader/YamlFileLoader.php', + 'Symfony\\Component\\Routing\\Matcher\\Dumper\\DumperCollection' => $vendorDir . '/symfony/routing/Matcher/Dumper/DumperCollection.php', + 'Symfony\\Component\\Routing\\Matcher\\Dumper\\DumperRoute' => $vendorDir . '/symfony/routing/Matcher/Dumper/DumperRoute.php', + 'Symfony\\Component\\Routing\\Matcher\\Dumper\\MatcherDumper' => $vendorDir . '/symfony/routing/Matcher/Dumper/MatcherDumper.php', + 'Symfony\\Component\\Routing\\Matcher\\Dumper\\MatcherDumperInterface' => $vendorDir . '/symfony/routing/Matcher/Dumper/MatcherDumperInterface.php', + 'Symfony\\Component\\Routing\\Matcher\\Dumper\\PhpMatcherDumper' => $vendorDir . '/symfony/routing/Matcher/Dumper/PhpMatcherDumper.php', + 'Symfony\\Component\\Routing\\Matcher\\Dumper\\StaticPrefixCollection' => $vendorDir . '/symfony/routing/Matcher/Dumper/StaticPrefixCollection.php', + 'Symfony\\Component\\Routing\\Matcher\\RedirectableUrlMatcher' => $vendorDir . '/symfony/routing/Matcher/RedirectableUrlMatcher.php', + 'Symfony\\Component\\Routing\\Matcher\\RedirectableUrlMatcherInterface' => $vendorDir . '/symfony/routing/Matcher/RedirectableUrlMatcherInterface.php', + 'Symfony\\Component\\Routing\\Matcher\\RequestMatcherInterface' => $vendorDir . '/symfony/routing/Matcher/RequestMatcherInterface.php', + 'Symfony\\Component\\Routing\\Matcher\\TraceableUrlMatcher' => $vendorDir . '/symfony/routing/Matcher/TraceableUrlMatcher.php', + 'Symfony\\Component\\Routing\\Matcher\\UrlMatcher' => $vendorDir . '/symfony/routing/Matcher/UrlMatcher.php', + 'Symfony\\Component\\Routing\\Matcher\\UrlMatcherInterface' => $vendorDir . '/symfony/routing/Matcher/UrlMatcherInterface.php', + 'Symfony\\Component\\Routing\\RequestContext' => $vendorDir . '/symfony/routing/RequestContext.php', + 'Symfony\\Component\\Routing\\RequestContextAwareInterface' => $vendorDir . '/symfony/routing/RequestContextAwareInterface.php', + 'Symfony\\Component\\Routing\\Route' => $vendorDir . '/symfony/routing/Route.php', + 'Symfony\\Component\\Routing\\RouteCollection' => $vendorDir . '/symfony/routing/RouteCollection.php', + 'Symfony\\Component\\Routing\\RouteCollectionBuilder' => $vendorDir . '/symfony/routing/RouteCollectionBuilder.php', + 'Symfony\\Component\\Routing\\RouteCompiler' => $vendorDir . '/symfony/routing/RouteCompiler.php', + 'Symfony\\Component\\Routing\\RouteCompilerInterface' => $vendorDir . '/symfony/routing/RouteCompilerInterface.php', + 'Symfony\\Component\\Routing\\Router' => $vendorDir . '/symfony/routing/Router.php', + 'Symfony\\Component\\Routing\\RouterInterface' => $vendorDir . '/symfony/routing/RouterInterface.php', + 'Symfony\\Component\\Translation\\Catalogue\\AbstractOperation' => $vendorDir . '/symfony/translation/Catalogue/AbstractOperation.php', + 'Symfony\\Component\\Translation\\Catalogue\\MergeOperation' => $vendorDir . '/symfony/translation/Catalogue/MergeOperation.php', + 'Symfony\\Component\\Translation\\Catalogue\\OperationInterface' => $vendorDir . '/symfony/translation/Catalogue/OperationInterface.php', + 'Symfony\\Component\\Translation\\Catalogue\\TargetOperation' => $vendorDir . '/symfony/translation/Catalogue/TargetOperation.php', + 'Symfony\\Component\\Translation\\Command\\XliffLintCommand' => $vendorDir . '/symfony/translation/Command/XliffLintCommand.php', + 'Symfony\\Component\\Translation\\DataCollectorTranslator' => $vendorDir . '/symfony/translation/DataCollectorTranslator.php', + 'Symfony\\Component\\Translation\\DataCollector\\TranslationDataCollector' => $vendorDir . '/symfony/translation/DataCollector/TranslationDataCollector.php', + 'Symfony\\Component\\Translation\\Dumper\\CsvFileDumper' => $vendorDir . '/symfony/translation/Dumper/CsvFileDumper.php', + 'Symfony\\Component\\Translation\\Dumper\\DumperInterface' => $vendorDir . '/symfony/translation/Dumper/DumperInterface.php', + 'Symfony\\Component\\Translation\\Dumper\\FileDumper' => $vendorDir . '/symfony/translation/Dumper/FileDumper.php', + 'Symfony\\Component\\Translation\\Dumper\\IcuResFileDumper' => $vendorDir . '/symfony/translation/Dumper/IcuResFileDumper.php', + 'Symfony\\Component\\Translation\\Dumper\\IniFileDumper' => $vendorDir . '/symfony/translation/Dumper/IniFileDumper.php', + 'Symfony\\Component\\Translation\\Dumper\\JsonFileDumper' => $vendorDir . '/symfony/translation/Dumper/JsonFileDumper.php', + 'Symfony\\Component\\Translation\\Dumper\\MoFileDumper' => $vendorDir . '/symfony/translation/Dumper/MoFileDumper.php', + 'Symfony\\Component\\Translation\\Dumper\\PhpFileDumper' => $vendorDir . '/symfony/translation/Dumper/PhpFileDumper.php', + 'Symfony\\Component\\Translation\\Dumper\\PoFileDumper' => $vendorDir . '/symfony/translation/Dumper/PoFileDumper.php', + 'Symfony\\Component\\Translation\\Dumper\\QtFileDumper' => $vendorDir . '/symfony/translation/Dumper/QtFileDumper.php', + 'Symfony\\Component\\Translation\\Dumper\\XliffFileDumper' => $vendorDir . '/symfony/translation/Dumper/XliffFileDumper.php', + 'Symfony\\Component\\Translation\\Dumper\\YamlFileDumper' => $vendorDir . '/symfony/translation/Dumper/YamlFileDumper.php', + 'Symfony\\Component\\Translation\\Exception\\ExceptionInterface' => $vendorDir . '/symfony/translation/Exception/ExceptionInterface.php', + 'Symfony\\Component\\Translation\\Exception\\InvalidArgumentException' => $vendorDir . '/symfony/translation/Exception/InvalidArgumentException.php', + 'Symfony\\Component\\Translation\\Exception\\InvalidResourceException' => $vendorDir . '/symfony/translation/Exception/InvalidResourceException.php', + 'Symfony\\Component\\Translation\\Exception\\LogicException' => $vendorDir . '/symfony/translation/Exception/LogicException.php', + 'Symfony\\Component\\Translation\\Exception\\NotFoundResourceException' => $vendorDir . '/symfony/translation/Exception/NotFoundResourceException.php', + 'Symfony\\Component\\Translation\\Exception\\RuntimeException' => $vendorDir . '/symfony/translation/Exception/RuntimeException.php', + 'Symfony\\Component\\Translation\\Extractor\\AbstractFileExtractor' => $vendorDir . '/symfony/translation/Extractor/AbstractFileExtractor.php', + 'Symfony\\Component\\Translation\\Extractor\\ChainExtractor' => $vendorDir . '/symfony/translation/Extractor/ChainExtractor.php', + 'Symfony\\Component\\Translation\\Extractor\\ExtractorInterface' => $vendorDir . '/symfony/translation/Extractor/ExtractorInterface.php', + 'Symfony\\Component\\Translation\\IdentityTranslator' => $vendorDir . '/symfony/translation/IdentityTranslator.php', + 'Symfony\\Component\\Translation\\Interval' => $vendorDir . '/symfony/translation/Interval.php', + 'Symfony\\Component\\Translation\\Loader\\ArrayLoader' => $vendorDir . '/symfony/translation/Loader/ArrayLoader.php', + 'Symfony\\Component\\Translation\\Loader\\CsvFileLoader' => $vendorDir . '/symfony/translation/Loader/CsvFileLoader.php', + 'Symfony\\Component\\Translation\\Loader\\FileLoader' => $vendorDir . '/symfony/translation/Loader/FileLoader.php', + 'Symfony\\Component\\Translation\\Loader\\IcuDatFileLoader' => $vendorDir . '/symfony/translation/Loader/IcuDatFileLoader.php', + 'Symfony\\Component\\Translation\\Loader\\IcuResFileLoader' => $vendorDir . '/symfony/translation/Loader/IcuResFileLoader.php', + 'Symfony\\Component\\Translation\\Loader\\IniFileLoader' => $vendorDir . '/symfony/translation/Loader/IniFileLoader.php', + 'Symfony\\Component\\Translation\\Loader\\JsonFileLoader' => $vendorDir . '/symfony/translation/Loader/JsonFileLoader.php', + 'Symfony\\Component\\Translation\\Loader\\LoaderInterface' => $vendorDir . '/symfony/translation/Loader/LoaderInterface.php', + 'Symfony\\Component\\Translation\\Loader\\MoFileLoader' => $vendorDir . '/symfony/translation/Loader/MoFileLoader.php', + 'Symfony\\Component\\Translation\\Loader\\PhpFileLoader' => $vendorDir . '/symfony/translation/Loader/PhpFileLoader.php', + 'Symfony\\Component\\Translation\\Loader\\PoFileLoader' => $vendorDir . '/symfony/translation/Loader/PoFileLoader.php', + 'Symfony\\Component\\Translation\\Loader\\QtFileLoader' => $vendorDir . '/symfony/translation/Loader/QtFileLoader.php', + 'Symfony\\Component\\Translation\\Loader\\XliffFileLoader' => $vendorDir . '/symfony/translation/Loader/XliffFileLoader.php', + 'Symfony\\Component\\Translation\\Loader\\YamlFileLoader' => $vendorDir . '/symfony/translation/Loader/YamlFileLoader.php', + 'Symfony\\Component\\Translation\\LoggingTranslator' => $vendorDir . '/symfony/translation/LoggingTranslator.php', + 'Symfony\\Component\\Translation\\MessageCatalogue' => $vendorDir . '/symfony/translation/MessageCatalogue.php', + 'Symfony\\Component\\Translation\\MessageCatalogueInterface' => $vendorDir . '/symfony/translation/MessageCatalogueInterface.php', + 'Symfony\\Component\\Translation\\MessageSelector' => $vendorDir . '/symfony/translation/MessageSelector.php', + 'Symfony\\Component\\Translation\\MetadataAwareInterface' => $vendorDir . '/symfony/translation/MetadataAwareInterface.php', + 'Symfony\\Component\\Translation\\PluralizationRules' => $vendorDir . '/symfony/translation/PluralizationRules.php', + 'Symfony\\Component\\Translation\\Translator' => $vendorDir . '/symfony/translation/Translator.php', + 'Symfony\\Component\\Translation\\TranslatorBagInterface' => $vendorDir . '/symfony/translation/TranslatorBagInterface.php', + 'Symfony\\Component\\Translation\\TranslatorInterface' => $vendorDir . '/symfony/translation/TranslatorInterface.php', + 'Symfony\\Component\\Translation\\Util\\ArrayConverter' => $vendorDir . '/symfony/translation/Util/ArrayConverter.php', + 'Symfony\\Component\\Translation\\Writer\\TranslationWriter' => $vendorDir . '/symfony/translation/Writer/TranslationWriter.php', + 'Symfony\\Component\\VarDumper\\Caster\\AmqpCaster' => $vendorDir . '/symfony/var-dumper/Caster/AmqpCaster.php', + 'Symfony\\Component\\VarDumper\\Caster\\ArgsStub' => $vendorDir . '/symfony/var-dumper/Caster/ArgsStub.php', + 'Symfony\\Component\\VarDumper\\Caster\\Caster' => $vendorDir . '/symfony/var-dumper/Caster/Caster.php', + 'Symfony\\Component\\VarDumper\\Caster\\ClassStub' => $vendorDir . '/symfony/var-dumper/Caster/ClassStub.php', + 'Symfony\\Component\\VarDumper\\Caster\\ConstStub' => $vendorDir . '/symfony/var-dumper/Caster/ConstStub.php', + 'Symfony\\Component\\VarDumper\\Caster\\CutArrayStub' => $vendorDir . '/symfony/var-dumper/Caster/CutArrayStub.php', + 'Symfony\\Component\\VarDumper\\Caster\\CutStub' => $vendorDir . '/symfony/var-dumper/Caster/CutStub.php', + 'Symfony\\Component\\VarDumper\\Caster\\DOMCaster' => $vendorDir . '/symfony/var-dumper/Caster/DOMCaster.php', + 'Symfony\\Component\\VarDumper\\Caster\\DoctrineCaster' => $vendorDir . '/symfony/var-dumper/Caster/DoctrineCaster.php', + 'Symfony\\Component\\VarDumper\\Caster\\EnumStub' => $vendorDir . '/symfony/var-dumper/Caster/EnumStub.php', + 'Symfony\\Component\\VarDumper\\Caster\\ExceptionCaster' => $vendorDir . '/symfony/var-dumper/Caster/ExceptionCaster.php', + 'Symfony\\Component\\VarDumper\\Caster\\FrameStub' => $vendorDir . '/symfony/var-dumper/Caster/FrameStub.php', + 'Symfony\\Component\\VarDumper\\Caster\\LinkStub' => $vendorDir . '/symfony/var-dumper/Caster/LinkStub.php', + 'Symfony\\Component\\VarDumper\\Caster\\MongoCaster' => $vendorDir . '/symfony/var-dumper/Caster/MongoCaster.php', + 'Symfony\\Component\\VarDumper\\Caster\\PdoCaster' => $vendorDir . '/symfony/var-dumper/Caster/PdoCaster.php', + 'Symfony\\Component\\VarDumper\\Caster\\PgSqlCaster' => $vendorDir . '/symfony/var-dumper/Caster/PgSqlCaster.php', + 'Symfony\\Component\\VarDumper\\Caster\\RedisCaster' => $vendorDir . '/symfony/var-dumper/Caster/RedisCaster.php', + 'Symfony\\Component\\VarDumper\\Caster\\ReflectionCaster' => $vendorDir . '/symfony/var-dumper/Caster/ReflectionCaster.php', + 'Symfony\\Component\\VarDumper\\Caster\\ResourceCaster' => $vendorDir . '/symfony/var-dumper/Caster/ResourceCaster.php', + 'Symfony\\Component\\VarDumper\\Caster\\SplCaster' => $vendorDir . '/symfony/var-dumper/Caster/SplCaster.php', + 'Symfony\\Component\\VarDumper\\Caster\\StubCaster' => $vendorDir . '/symfony/var-dumper/Caster/StubCaster.php', + 'Symfony\\Component\\VarDumper\\Caster\\SymfonyCaster' => $vendorDir . '/symfony/var-dumper/Caster/SymfonyCaster.php', + 'Symfony\\Component\\VarDumper\\Caster\\TraceStub' => $vendorDir . '/symfony/var-dumper/Caster/TraceStub.php', + 'Symfony\\Component\\VarDumper\\Caster\\XmlReaderCaster' => $vendorDir . '/symfony/var-dumper/Caster/XmlReaderCaster.php', + 'Symfony\\Component\\VarDumper\\Caster\\XmlResourceCaster' => $vendorDir . '/symfony/var-dumper/Caster/XmlResourceCaster.php', + 'Symfony\\Component\\VarDumper\\Cloner\\AbstractCloner' => $vendorDir . '/symfony/var-dumper/Cloner/AbstractCloner.php', + 'Symfony\\Component\\VarDumper\\Cloner\\ClonerInterface' => $vendorDir . '/symfony/var-dumper/Cloner/ClonerInterface.php', + 'Symfony\\Component\\VarDumper\\Cloner\\Cursor' => $vendorDir . '/symfony/var-dumper/Cloner/Cursor.php', + 'Symfony\\Component\\VarDumper\\Cloner\\Data' => $vendorDir . '/symfony/var-dumper/Cloner/Data.php', + 'Symfony\\Component\\VarDumper\\Cloner\\DumperInterface' => $vendorDir . '/symfony/var-dumper/Cloner/DumperInterface.php', + 'Symfony\\Component\\VarDumper\\Cloner\\Stub' => $vendorDir . '/symfony/var-dumper/Cloner/Stub.php', + 'Symfony\\Component\\VarDumper\\Cloner\\VarCloner' => $vendorDir . '/symfony/var-dumper/Cloner/VarCloner.php', + 'Symfony\\Component\\VarDumper\\Dumper\\AbstractDumper' => $vendorDir . '/symfony/var-dumper/Dumper/AbstractDumper.php', + 'Symfony\\Component\\VarDumper\\Dumper\\CliDumper' => $vendorDir . '/symfony/var-dumper/Dumper/CliDumper.php', + 'Symfony\\Component\\VarDumper\\Dumper\\DataDumperInterface' => $vendorDir . '/symfony/var-dumper/Dumper/DataDumperInterface.php', + 'Symfony\\Component\\VarDumper\\Dumper\\HtmlDumper' => $vendorDir . '/symfony/var-dumper/Dumper/HtmlDumper.php', + 'Symfony\\Component\\VarDumper\\Exception\\ThrowingCasterException' => $vendorDir . '/symfony/var-dumper/Exception/ThrowingCasterException.php', + 'Symfony\\Component\\VarDumper\\Test\\VarDumperTestTrait' => $vendorDir . '/symfony/var-dumper/Test/VarDumperTestTrait.php', + 'Symfony\\Component\\VarDumper\\VarDumper' => $vendorDir . '/symfony/var-dumper/VarDumper.php', + 'Symfony\\Polyfill\\Mbstring\\Mbstring' => $vendorDir . '/symfony/polyfill-mbstring/Mbstring.php', + 'Tests\\CreatesApplication' => $baseDir . '/tests/CreatesApplication.php', + 'Tests\\Feature\\ExampleTest' => $baseDir . '/tests/Feature/ExampleTest.php', + 'Tests\\TestCase' => $baseDir . '/tests/TestCase.php', + 'Tests\\Unit\\ExampleTest' => $baseDir . '/tests/Unit/ExampleTest.php', 'Text_Template' => $vendorDir . '/phpunit/php-text-template/src/Template.php', 'TheSeer\\Tokenizer\\Exception' => $vendorDir . '/theseer/tokenizer/src/Exception.php', 'TheSeer\\Tokenizer\\NamespaceUri' => $vendorDir . '/theseer/tokenizer/src/NamespaceUri.php', @@ -612,4 +3164,105 @@ return array( 'TheSeer\\Tokenizer\\TokenCollectionException' => $vendorDir . '/theseer/tokenizer/src/TokenCollectionException.php', 'TheSeer\\Tokenizer\\Tokenizer' => $vendorDir . '/theseer/tokenizer/src/Tokenizer.php', 'TheSeer\\Tokenizer\\XMLSerializer' => $vendorDir . '/theseer/tokenizer/src/XMLSerializer.php', + 'TijsVerkoyen\\CssToInlineStyles\\CssToInlineStyles' => $vendorDir . '/tijsverkoyen/css-to-inline-styles/src/CssToInlineStyles.php', + 'TijsVerkoyen\\CssToInlineStyles\\Css\\Processor' => $vendorDir . '/tijsverkoyen/css-to-inline-styles/src/Css/Processor.php', + 'TijsVerkoyen\\CssToInlineStyles\\Css\\Property\\Processor' => $vendorDir . '/tijsverkoyen/css-to-inline-styles/src/Css/Property/Processor.php', + 'TijsVerkoyen\\CssToInlineStyles\\Css\\Property\\Property' => $vendorDir . '/tijsverkoyen/css-to-inline-styles/src/Css/Property/Property.php', + 'TijsVerkoyen\\CssToInlineStyles\\Css\\Rule\\Processor' => $vendorDir . '/tijsverkoyen/css-to-inline-styles/src/Css/Rule/Processor.php', + 'TijsVerkoyen\\CssToInlineStyles\\Css\\Rule\\Rule' => $vendorDir . '/tijsverkoyen/css-to-inline-styles/src/Css/Rule/Rule.php', + 'Webmozart\\Assert\\Assert' => $vendorDir . '/webmozart/assert/src/Assert.php', + 'Whoops\\Exception\\ErrorException' => $vendorDir . '/filp/whoops/src/Whoops/Exception/ErrorException.php', + 'Whoops\\Exception\\Formatter' => $vendorDir . '/filp/whoops/src/Whoops/Exception/Formatter.php', + 'Whoops\\Exception\\Frame' => $vendorDir . '/filp/whoops/src/Whoops/Exception/Frame.php', + 'Whoops\\Exception\\FrameCollection' => $vendorDir . '/filp/whoops/src/Whoops/Exception/FrameCollection.php', + 'Whoops\\Exception\\Inspector' => $vendorDir . '/filp/whoops/src/Whoops/Exception/Inspector.php', + 'Whoops\\Handler\\CallbackHandler' => $vendorDir . '/filp/whoops/src/Whoops/Handler/CallbackHandler.php', + 'Whoops\\Handler\\Handler' => $vendorDir . '/filp/whoops/src/Whoops/Handler/Handler.php', + 'Whoops\\Handler\\HandlerInterface' => $vendorDir . '/filp/whoops/src/Whoops/Handler/HandlerInterface.php', + 'Whoops\\Handler\\JsonResponseHandler' => $vendorDir . '/filp/whoops/src/Whoops/Handler/JsonResponseHandler.php', + 'Whoops\\Handler\\PlainTextHandler' => $vendorDir . '/filp/whoops/src/Whoops/Handler/PlainTextHandler.php', + 'Whoops\\Handler\\PrettyPageHandler' => $vendorDir . '/filp/whoops/src/Whoops/Handler/PrettyPageHandler.php', + 'Whoops\\Handler\\XmlResponseHandler' => $vendorDir . '/filp/whoops/src/Whoops/Handler/XmlResponseHandler.php', + 'Whoops\\Run' => $vendorDir . '/filp/whoops/src/Whoops/Run.php', + 'Whoops\\RunInterface' => $vendorDir . '/filp/whoops/src/Whoops/RunInterface.php', + 'Whoops\\Util\\HtmlDumperOutput' => $vendorDir . '/filp/whoops/src/Whoops/Util/HtmlDumperOutput.php', + 'Whoops\\Util\\Misc' => $vendorDir . '/filp/whoops/src/Whoops/Util/Misc.php', + 'Whoops\\Util\\SystemFacade' => $vendorDir . '/filp/whoops/src/Whoops/Util/SystemFacade.php', + 'Whoops\\Util\\TemplateHelper' => $vendorDir . '/filp/whoops/src/Whoops/Util/TemplateHelper.php', + 'XdgBaseDir\\Xdg' => $vendorDir . '/dnoegel/php-xdg-base-dir/src/Xdg.php', + 'jlawrence\\eos\\AdvancedFunctions' => $vendorDir . '/jlawrence/eos/src/AdvancedFunctions.php', + 'jlawrence\\eos\\Graph' => $vendorDir . '/jlawrence/eos/src/Graph.php', + 'jlawrence\\eos\\Math' => $vendorDir . '/jlawrence/eos/src/Math.php', + 'jlawrence\\eos\\Matrix' => $vendorDir . '/jlawrence/eos/src/Matrix.php', + 'jlawrence\\eos\\Parser' => $vendorDir . '/jlawrence/eos/src/Parser.php', + 'jlawrence\\eos\\Stack' => $vendorDir . '/jlawrence/eos/src/Stack.php', + 'jlawrence\\eos\\Trig' => $vendorDir . '/jlawrence/eos/src/Trig.php', + 'phpDocumentor\\Reflection\\DocBlock' => $vendorDir . '/phpdocumentor/reflection-docblock/src/DocBlock.php', + 'phpDocumentor\\Reflection\\DocBlockFactory' => $vendorDir . '/phpdocumentor/reflection-docblock/src/DocBlockFactory.php', + 'phpDocumentor\\Reflection\\DocBlockFactoryInterface' => $vendorDir . '/phpdocumentor/reflection-docblock/src/DocBlockFactoryInterface.php', + 'phpDocumentor\\Reflection\\DocBlock\\Description' => $vendorDir . '/phpdocumentor/reflection-docblock/src/DocBlock/Description.php', + 'phpDocumentor\\Reflection\\DocBlock\\DescriptionFactory' => $vendorDir . '/phpdocumentor/reflection-docblock/src/DocBlock/DescriptionFactory.php', + 'phpDocumentor\\Reflection\\DocBlock\\ExampleFinder' => $vendorDir . '/phpdocumentor/reflection-docblock/src/DocBlock/ExampleFinder.php', + 'phpDocumentor\\Reflection\\DocBlock\\Serializer' => $vendorDir . '/phpdocumentor/reflection-docblock/src/DocBlock/Serializer.php', + 'phpDocumentor\\Reflection\\DocBlock\\StandardTagFactory' => $vendorDir . '/phpdocumentor/reflection-docblock/src/DocBlock/StandardTagFactory.php', + 'phpDocumentor\\Reflection\\DocBlock\\Tag' => $vendorDir . '/phpdocumentor/reflection-docblock/src/DocBlock/Tag.php', + 'phpDocumentor\\Reflection\\DocBlock\\TagFactory' => $vendorDir . '/phpdocumentor/reflection-docblock/src/DocBlock/TagFactory.php', + 'phpDocumentor\\Reflection\\DocBlock\\Tags\\Author' => $vendorDir . '/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Author.php', + 'phpDocumentor\\Reflection\\DocBlock\\Tags\\BaseTag' => $vendorDir . '/phpdocumentor/reflection-docblock/src/DocBlock/Tags/BaseTag.php', + 'phpDocumentor\\Reflection\\DocBlock\\Tags\\Covers' => $vendorDir . '/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Covers.php', + 'phpDocumentor\\Reflection\\DocBlock\\Tags\\Deprecated' => $vendorDir . '/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Deprecated.php', + 'phpDocumentor\\Reflection\\DocBlock\\Tags\\Example' => $vendorDir . '/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Example.php', + 'phpDocumentor\\Reflection\\DocBlock\\Tags\\Factory\\StaticMethod' => $vendorDir . '/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Factory/StaticMethod.php', + 'phpDocumentor\\Reflection\\DocBlock\\Tags\\Factory\\Strategy' => $vendorDir . '/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Factory/Strategy.php', + 'phpDocumentor\\Reflection\\DocBlock\\Tags\\Formatter' => $vendorDir . '/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Formatter.php', + 'phpDocumentor\\Reflection\\DocBlock\\Tags\\Formatter\\AlignFormatter' => $vendorDir . '/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Formatter/AlignFormatter.php', + 'phpDocumentor\\Reflection\\DocBlock\\Tags\\Formatter\\PassthroughFormatter' => $vendorDir . '/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Formatter/PassthroughFormatter.php', + 'phpDocumentor\\Reflection\\DocBlock\\Tags\\Generic' => $vendorDir . '/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Generic.php', + 'phpDocumentor\\Reflection\\DocBlock\\Tags\\Link' => $vendorDir . '/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Link.php', + 'phpDocumentor\\Reflection\\DocBlock\\Tags\\Method' => $vendorDir . '/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Method.php', + 'phpDocumentor\\Reflection\\DocBlock\\Tags\\Param' => $vendorDir . '/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Param.php', + 'phpDocumentor\\Reflection\\DocBlock\\Tags\\Property' => $vendorDir . '/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Property.php', + 'phpDocumentor\\Reflection\\DocBlock\\Tags\\PropertyRead' => $vendorDir . '/phpdocumentor/reflection-docblock/src/DocBlock/Tags/PropertyRead.php', + 'phpDocumentor\\Reflection\\DocBlock\\Tags\\PropertyWrite' => $vendorDir . '/phpdocumentor/reflection-docblock/src/DocBlock/Tags/PropertyWrite.php', + 'phpDocumentor\\Reflection\\DocBlock\\Tags\\Reference\\Fqsen' => $vendorDir . '/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Reference/Fqsen.php', + 'phpDocumentor\\Reflection\\DocBlock\\Tags\\Reference\\Reference' => $vendorDir . '/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Reference/Reference.php', + 'phpDocumentor\\Reflection\\DocBlock\\Tags\\Reference\\Url' => $vendorDir . '/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Reference/Url.php', + 'phpDocumentor\\Reflection\\DocBlock\\Tags\\Return_' => $vendorDir . '/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Return_.php', + 'phpDocumentor\\Reflection\\DocBlock\\Tags\\See' => $vendorDir . '/phpdocumentor/reflection-docblock/src/DocBlock/Tags/See.php', + 'phpDocumentor\\Reflection\\DocBlock\\Tags\\Since' => $vendorDir . '/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Since.php', + 'phpDocumentor\\Reflection\\DocBlock\\Tags\\Source' => $vendorDir . '/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Source.php', + 'phpDocumentor\\Reflection\\DocBlock\\Tags\\Throws' => $vendorDir . '/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Throws.php', + 'phpDocumentor\\Reflection\\DocBlock\\Tags\\Uses' => $vendorDir . '/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Uses.php', + 'phpDocumentor\\Reflection\\DocBlock\\Tags\\Var_' => $vendorDir . '/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Var_.php', + 'phpDocumentor\\Reflection\\DocBlock\\Tags\\Version' => $vendorDir . '/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Version.php', + 'phpDocumentor\\Reflection\\Element' => $vendorDir . '/phpdocumentor/reflection-common/src/Element.php', + 'phpDocumentor\\Reflection\\File' => $vendorDir . '/phpdocumentor/reflection-common/src/File.php', + 'phpDocumentor\\Reflection\\Fqsen' => $vendorDir . '/phpdocumentor/reflection-common/src/Fqsen.php', + 'phpDocumentor\\Reflection\\FqsenResolver' => $vendorDir . '/phpdocumentor/type-resolver/src/FqsenResolver.php', + 'phpDocumentor\\Reflection\\Location' => $vendorDir . '/phpdocumentor/reflection-common/src/Location.php', + 'phpDocumentor\\Reflection\\Project' => $vendorDir . '/phpdocumentor/reflection-common/src/Project.php', + 'phpDocumentor\\Reflection\\ProjectFactory' => $vendorDir . '/phpdocumentor/reflection-common/src/ProjectFactory.php', + 'phpDocumentor\\Reflection\\Type' => $vendorDir . '/phpdocumentor/type-resolver/src/Type.php', + 'phpDocumentor\\Reflection\\TypeResolver' => $vendorDir . '/phpdocumentor/type-resolver/src/TypeResolver.php', + 'phpDocumentor\\Reflection\\Types\\Array_' => $vendorDir . '/phpdocumentor/type-resolver/src/Types/Array_.php', + 'phpDocumentor\\Reflection\\Types\\Boolean' => $vendorDir . '/phpdocumentor/type-resolver/src/Types/Boolean.php', + 'phpDocumentor\\Reflection\\Types\\Callable_' => $vendorDir . '/phpdocumentor/type-resolver/src/Types/Callable_.php', + 'phpDocumentor\\Reflection\\Types\\Compound' => $vendorDir . '/phpdocumentor/type-resolver/src/Types/Compound.php', + 'phpDocumentor\\Reflection\\Types\\Context' => $vendorDir . '/phpdocumentor/type-resolver/src/Types/Context.php', + 'phpDocumentor\\Reflection\\Types\\ContextFactory' => $vendorDir . '/phpdocumentor/type-resolver/src/Types/ContextFactory.php', + 'phpDocumentor\\Reflection\\Types\\Float_' => $vendorDir . '/phpdocumentor/type-resolver/src/Types/Float_.php', + 'phpDocumentor\\Reflection\\Types\\Integer' => $vendorDir . '/phpdocumentor/type-resolver/src/Types/Integer.php', + 'phpDocumentor\\Reflection\\Types\\Iterable_' => $vendorDir . '/phpdocumentor/type-resolver/src/Types/Iterable_.php', + 'phpDocumentor\\Reflection\\Types\\Mixed_' => $vendorDir . '/phpdocumentor/type-resolver/src/Types/Mixed_.php', + 'phpDocumentor\\Reflection\\Types\\Null_' => $vendorDir . '/phpdocumentor/type-resolver/src/Types/Null_.php', + 'phpDocumentor\\Reflection\\Types\\Nullable' => $vendorDir . '/phpdocumentor/type-resolver/src/Types/Nullable.php', + 'phpDocumentor\\Reflection\\Types\\Object_' => $vendorDir . '/phpdocumentor/type-resolver/src/Types/Object_.php', + 'phpDocumentor\\Reflection\\Types\\Parent_' => $vendorDir . '/phpdocumentor/type-resolver/src/Types/Parent_.php', + 'phpDocumentor\\Reflection\\Types\\Resource_' => $vendorDir . '/phpdocumentor/type-resolver/src/Types/Resource_.php', + 'phpDocumentor\\Reflection\\Types\\Scalar' => $vendorDir . '/phpdocumentor/type-resolver/src/Types/Scalar.php', + 'phpDocumentor\\Reflection\\Types\\Self_' => $vendorDir . '/phpdocumentor/type-resolver/src/Types/Self_.php', + 'phpDocumentor\\Reflection\\Types\\Static_' => $vendorDir . '/phpdocumentor/type-resolver/src/Types/Static_.php', + 'phpDocumentor\\Reflection\\Types\\String_' => $vendorDir . '/phpdocumentor/type-resolver/src/Types/String_.php', + 'phpDocumentor\\Reflection\\Types\\This' => $vendorDir . '/phpdocumentor/type-resolver/src/Types/This.php', + 'phpDocumentor\\Reflection\\Types\\Void_' => $vendorDir . '/phpdocumentor/type-resolver/src/Types/Void_.php', ); diff --git a/Laravel/vendor/composer/autoload_psr4.php b/Laravel/vendor/composer/autoload_psr4.php index 8d0effe..95ee894 100644 --- a/Laravel/vendor/composer/autoload_psr4.php +++ b/Laravel/vendor/composer/autoload_psr4.php @@ -7,6 +7,7 @@ $baseDir = dirname($vendorDir); return array( 'phpDocumentor\\Reflection\\' => array($vendorDir . '/phpdocumentor/reflection-common/src', $vendorDir . '/phpdocumentor/type-resolver/src', $vendorDir . '/phpdocumentor/reflection-docblock/src'), + 'jlawrence\\eos\\' => array($vendorDir . '/jlawrence/eos/src'), 'XdgBaseDir\\' => array($vendorDir . '/dnoegel/php-xdg-base-dir/src'), 'Whoops\\' => array($vendorDir . '/filp/whoops/src/Whoops'), 'Webmozart\\Assert\\' => array($vendorDir . '/webmozart/assert/src'), @@ -33,6 +34,7 @@ return array( 'Monolog\\' => array($vendorDir . '/monolog/monolog/src/Monolog'), 'League\\Flysystem\\' => array($vendorDir . '/league/flysystem/src'), 'Laravel\\Tinker\\' => array($vendorDir . '/laravel/tinker/src'), + 'Jenssegers\\Date\\' => array($vendorDir . '/jenssegers/date/src'), 'Illuminate\\' => array($vendorDir . '/laravel/framework/src/Illuminate'), 'Fideloper\\Proxy\\' => array($vendorDir . '/fideloper/proxy/src'), 'Faker\\' => array($vendorDir . '/fzaninotto/faker/src/Faker'), @@ -42,6 +44,7 @@ return array( 'Doctrine\\Common\\Inflector\\' => array($vendorDir . '/doctrine/inflector/lib/Doctrine/Common/Inflector'), 'DeepCopy\\' => array($vendorDir . '/myclabs/deep-copy/src/DeepCopy'), 'Cron\\' => array($vendorDir . '/mtdowling/cron-expression/src/Cron'), + 'ConsoleTVs\\Charts\\' => array($vendorDir . '/consoletvs/charts/src'), 'Carbon\\' => array($vendorDir . '/nesbot/carbon/src/Carbon'), 'App\\' => array($baseDir . '/app'), ); diff --git a/Laravel/vendor/composer/autoload_static.php b/Laravel/vendor/composer/autoload_static.php index 21e9da8..37d044b 100644 --- a/Laravel/vendor/composer/autoload_static.php +++ b/Laravel/vendor/composer/autoload_static.php @@ -22,6 +22,10 @@ class ComposerStaticInit0ef7b7c57b5051a6692d56ad58e04e79 array ( 'phpDocumentor\\Reflection\\' => 25, ), + 'j' => + array ( + 'jlawrence\\eos\\' => 14, + ), 'X' => array ( 'XdgBaseDir\\' => 11, @@ -72,6 +76,10 @@ class ComposerStaticInit0ef7b7c57b5051a6692d56ad58e04e79 'League\\Flysystem\\' => 17, 'Laravel\\Tinker\\' => 15, ), + 'J' => + array ( + 'Jenssegers\\Date\\' => 16, + ), 'I' => array ( 'Illuminate\\' => 11, @@ -95,6 +103,7 @@ class ComposerStaticInit0ef7b7c57b5051a6692d56ad58e04e79 'C' => array ( 'Cron\\' => 5, + 'ConsoleTVs\\Charts\\' => 18, 'Carbon\\' => 7, ), 'A' => @@ -110,6 +119,10 @@ class ComposerStaticInit0ef7b7c57b5051a6692d56ad58e04e79 1 => __DIR__ . '/..' . '/phpdocumentor/type-resolver/src', 2 => __DIR__ . '/..' . '/phpdocumentor/reflection-docblock/src', ), + 'jlawrence\\eos\\' => + array ( + 0 => __DIR__ . '/..' . '/jlawrence/eos/src', + ), 'XdgBaseDir\\' => array ( 0 => __DIR__ . '/..' . '/dnoegel/php-xdg-base-dir/src', @@ -214,6 +227,10 @@ class ComposerStaticInit0ef7b7c57b5051a6692d56ad58e04e79 array ( 0 => __DIR__ . '/..' . '/laravel/tinker/src', ), + 'Jenssegers\\Date\\' => + array ( + 0 => __DIR__ . '/..' . '/jenssegers/date/src', + ), 'Illuminate\\' => array ( 0 => __DIR__ . '/..' . '/laravel/framework/src/Illuminate', @@ -250,6 +267,10 @@ class ComposerStaticInit0ef7b7c57b5051a6692d56ad58e04e79 array ( 0 => __DIR__ . '/..' . '/mtdowling/cron-expression/src/Cron', ), + 'ConsoleTVs\\Charts\\' => + array ( + 0 => __DIR__ . '/..' . '/consoletvs/charts/src', + ), 'Carbon\\' => array ( 0 => __DIR__ . '/..' . '/nesbot/carbon/src/Carbon', @@ -300,7 +321,584 @@ class ComposerStaticInit0ef7b7c57b5051a6692d56ad58e04e79 ); public static $classMap = array ( + 'App\\Console\\Kernel' => __DIR__ . '/../..' . '/app/Console/Kernel.php', + 'App\\Exceptions\\Handler' => __DIR__ . '/../..' . '/app/Exceptions/Handler.php', + 'App\\Http\\Controllers\\Auth\\ForgotPasswordController' => __DIR__ . '/../..' . '/app/Http/Controllers/Auth/ForgotPasswordController.php', + 'App\\Http\\Controllers\\Auth\\LoginController' => __DIR__ . '/../..' . '/app/Http/Controllers/Auth/LoginController.php', + 'App\\Http\\Controllers\\Auth\\RegisterController' => __DIR__ . '/../..' . '/app/Http/Controllers/Auth/RegisterController.php', + 'App\\Http\\Controllers\\Auth\\ResetPasswordController' => __DIR__ . '/../..' . '/app/Http/Controllers/Auth/ResetPasswordController.php', + 'App\\Http\\Controllers\\Controller' => __DIR__ . '/../..' . '/app/Http/Controllers/Controller.php', + 'App\\Http\\Controllers\\PagesController' => __DIR__ . '/../..' . '/app/Http/Controllers/PagesController.php', + 'App\\Http\\Kernel' => __DIR__ . '/../..' . '/app/Http/Kernel.php', + 'App\\Http\\Middleware\\EncryptCookies' => __DIR__ . '/../..' . '/app/Http/Middleware/EncryptCookies.php', + 'App\\Http\\Middleware\\RedirectIfAuthenticated' => __DIR__ . '/../..' . '/app/Http/Middleware/RedirectIfAuthenticated.php', + 'App\\Http\\Middleware\\TrimStrings' => __DIR__ . '/../..' . '/app/Http/Middleware/TrimStrings.php', + 'App\\Http\\Middleware\\TrustProxies' => __DIR__ . '/../..' . '/app/Http/Middleware/TrustProxies.php', + 'App\\Http\\Middleware\\VerifyCsrfToken' => __DIR__ . '/../..' . '/app/Http/Middleware/VerifyCsrfToken.php', + 'App\\Providers\\AppServiceProvider' => __DIR__ . '/../..' . '/app/Providers/AppServiceProvider.php', + 'App\\Providers\\AuthServiceProvider' => __DIR__ . '/../..' . '/app/Providers/AuthServiceProvider.php', + 'App\\Providers\\BroadcastServiceProvider' => __DIR__ . '/../..' . '/app/Providers/BroadcastServiceProvider.php', + 'App\\Providers\\EventServiceProvider' => __DIR__ . '/../..' . '/app/Providers/EventServiceProvider.php', + 'App\\Providers\\RouteServiceProvider' => __DIR__ . '/../..' . '/app/Providers/RouteServiceProvider.php', + 'App\\User' => __DIR__ . '/../..' . '/app/User.php', + 'Carbon\\Carbon' => __DIR__ . '/..' . '/nesbot/carbon/src/Carbon/Carbon.php', + 'Carbon\\CarbonInterval' => __DIR__ . '/..' . '/nesbot/carbon/src/Carbon/CarbonInterval.php', + 'Carbon\\Exceptions\\InvalidDateException' => __DIR__ . '/..' . '/nesbot/carbon/src/Carbon/Exceptions/InvalidDateException.php', + 'ConsoleTVs\\Charts\\Builder' => __DIR__ . '/..' . '/consoletvs/charts/src/Builder.php', + 'ConsoleTVs\\Charts\\Builder\\Chart' => __DIR__ . '/..' . '/consoletvs/charts/src/Builder/Chart.php', + 'ConsoleTVs\\Charts\\Builder\\Database' => __DIR__ . '/..' . '/consoletvs/charts/src/Builder/Database.php', + 'ConsoleTVs\\Charts\\Builder\\Math' => __DIR__ . '/..' . '/consoletvs/charts/src/Builder/Math.php', + 'ConsoleTVs\\Charts\\Builder\\Multi' => __DIR__ . '/..' . '/consoletvs/charts/src/Builder/Multi.php', + 'ConsoleTVs\\Charts\\Builder\\MultiDatabase' => __DIR__ . '/..' . '/consoletvs/charts/src/Builder/MultiDatabase.php', + 'ConsoleTVs\\Charts\\Builder\\Realtime' => __DIR__ . '/..' . '/consoletvs/charts/src/Builder/Realtime.php', + 'ConsoleTVs\\Charts\\ChartsServiceProvider' => __DIR__ . '/..' . '/consoletvs/charts/src/ChartsServiceProvider.php', + 'ConsoleTVs\\Charts\\Facades\\Charts' => __DIR__ . '/..' . '/consoletvs/charts/src/Facades/Charts.php', + 'ConsoleTVs\\Charts\\Traits\\Setters' => __DIR__ . '/..' . '/consoletvs/charts/src/Traits/Setters.php', + 'Cron\\AbstractField' => __DIR__ . '/..' . '/mtdowling/cron-expression/src/Cron/AbstractField.php', + 'Cron\\CronExpression' => __DIR__ . '/..' . '/mtdowling/cron-expression/src/Cron/CronExpression.php', + 'Cron\\DayOfMonthField' => __DIR__ . '/..' . '/mtdowling/cron-expression/src/Cron/DayOfMonthField.php', + 'Cron\\DayOfWeekField' => __DIR__ . '/..' . '/mtdowling/cron-expression/src/Cron/DayOfWeekField.php', + 'Cron\\FieldFactory' => __DIR__ . '/..' . '/mtdowling/cron-expression/src/Cron/FieldFactory.php', + 'Cron\\FieldInterface' => __DIR__ . '/..' . '/mtdowling/cron-expression/src/Cron/FieldInterface.php', + 'Cron\\HoursField' => __DIR__ . '/..' . '/mtdowling/cron-expression/src/Cron/HoursField.php', + 'Cron\\MinutesField' => __DIR__ . '/..' . '/mtdowling/cron-expression/src/Cron/MinutesField.php', + 'Cron\\MonthField' => __DIR__ . '/..' . '/mtdowling/cron-expression/src/Cron/MonthField.php', + 'Cron\\YearField' => __DIR__ . '/..' . '/mtdowling/cron-expression/src/Cron/YearField.php', 'DatabaseSeeder' => __DIR__ . '/../..' . '/database/seeds/DatabaseSeeder.php', + 'DeepCopy\\DeepCopy' => __DIR__ . '/..' . '/myclabs/deep-copy/src/DeepCopy/DeepCopy.php', + 'DeepCopy\\Exception\\CloneException' => __DIR__ . '/..' . '/myclabs/deep-copy/src/DeepCopy/Exception/CloneException.php', + 'DeepCopy\\Filter\\Doctrine\\DoctrineCollectionFilter' => __DIR__ . '/..' . '/myclabs/deep-copy/src/DeepCopy/Filter/Doctrine/DoctrineCollectionFilter.php', + 'DeepCopy\\Filter\\Doctrine\\DoctrineEmptyCollectionFilter' => __DIR__ . '/..' . '/myclabs/deep-copy/src/DeepCopy/Filter/Doctrine/DoctrineEmptyCollectionFilter.php', + 'DeepCopy\\Filter\\Doctrine\\DoctrineProxyFilter' => __DIR__ . '/..' . '/myclabs/deep-copy/src/DeepCopy/Filter/Doctrine/DoctrineProxyFilter.php', + 'DeepCopy\\Filter\\Filter' => __DIR__ . '/..' . '/myclabs/deep-copy/src/DeepCopy/Filter/Filter.php', + 'DeepCopy\\Filter\\KeepFilter' => __DIR__ . '/..' . '/myclabs/deep-copy/src/DeepCopy/Filter/KeepFilter.php', + 'DeepCopy\\Filter\\ReplaceFilter' => __DIR__ . '/..' . '/myclabs/deep-copy/src/DeepCopy/Filter/ReplaceFilter.php', + 'DeepCopy\\Filter\\SetNullFilter' => __DIR__ . '/..' . '/myclabs/deep-copy/src/DeepCopy/Filter/SetNullFilter.php', + 'DeepCopy\\Matcher\\Doctrine\\DoctrineProxyMatcher' => __DIR__ . '/..' . '/myclabs/deep-copy/src/DeepCopy/Matcher/Doctrine/DoctrineProxyMatcher.php', + 'DeepCopy\\Matcher\\Matcher' => __DIR__ . '/..' . '/myclabs/deep-copy/src/DeepCopy/Matcher/Matcher.php', + 'DeepCopy\\Matcher\\PropertyMatcher' => __DIR__ . '/..' . '/myclabs/deep-copy/src/DeepCopy/Matcher/PropertyMatcher.php', + 'DeepCopy\\Matcher\\PropertyNameMatcher' => __DIR__ . '/..' . '/myclabs/deep-copy/src/DeepCopy/Matcher/PropertyNameMatcher.php', + 'DeepCopy\\Matcher\\PropertyTypeMatcher' => __DIR__ . '/..' . '/myclabs/deep-copy/src/DeepCopy/Matcher/PropertyTypeMatcher.php', + 'DeepCopy\\Reflection\\ReflectionHelper' => __DIR__ . '/..' . '/myclabs/deep-copy/src/DeepCopy/Reflection/ReflectionHelper.php', + 'DeepCopy\\TypeFilter\\ReplaceFilter' => __DIR__ . '/..' . '/myclabs/deep-copy/src/DeepCopy/TypeFilter/ReplaceFilter.php', + 'DeepCopy\\TypeFilter\\ShallowCopyFilter' => __DIR__ . '/..' . '/myclabs/deep-copy/src/DeepCopy/TypeFilter/ShallowCopyFilter.php', + 'DeepCopy\\TypeFilter\\Spl\\SplDoublyLinkedList' => __DIR__ . '/..' . '/myclabs/deep-copy/src/DeepCopy/TypeFilter/Spl/SplDoublyLinkedList.php', + 'DeepCopy\\TypeFilter\\TypeFilter' => __DIR__ . '/..' . '/myclabs/deep-copy/src/DeepCopy/TypeFilter/TypeFilter.php', + 'DeepCopy\\TypeMatcher\\TypeMatcher' => __DIR__ . '/..' . '/myclabs/deep-copy/src/DeepCopy/TypeMatcher/TypeMatcher.php', + 'Doctrine\\Common\\Inflector\\Inflector' => __DIR__ . '/..' . '/doctrine/inflector/lib/Doctrine/Common/Inflector/Inflector.php', + 'Doctrine\\Common\\Lexer\\AbstractLexer' => __DIR__ . '/..' . '/doctrine/lexer/lib/Doctrine/Common/Lexer/AbstractLexer.php', + 'Doctrine\\Instantiator\\Exception\\ExceptionInterface' => __DIR__ . '/..' . '/doctrine/instantiator/src/Doctrine/Instantiator/Exception/ExceptionInterface.php', + 'Doctrine\\Instantiator\\Exception\\InvalidArgumentException' => __DIR__ . '/..' . '/doctrine/instantiator/src/Doctrine/Instantiator/Exception/InvalidArgumentException.php', + 'Doctrine\\Instantiator\\Exception\\UnexpectedValueException' => __DIR__ . '/..' . '/doctrine/instantiator/src/Doctrine/Instantiator/Exception/UnexpectedValueException.php', + 'Doctrine\\Instantiator\\Instantiator' => __DIR__ . '/..' . '/doctrine/instantiator/src/Doctrine/Instantiator/Instantiator.php', + 'Doctrine\\Instantiator\\InstantiatorInterface' => __DIR__ . '/..' . '/doctrine/instantiator/src/Doctrine/Instantiator/InstantiatorInterface.php', + 'Dotenv\\Dotenv' => __DIR__ . '/..' . '/vlucas/phpdotenv/src/Dotenv.php', + 'Dotenv\\Exception\\ExceptionInterface' => __DIR__ . '/..' . '/vlucas/phpdotenv/src/Exception/ExceptionInterface.php', + 'Dotenv\\Exception\\InvalidCallbackException' => __DIR__ . '/..' . '/vlucas/phpdotenv/src/Exception/InvalidCallbackException.php', + 'Dotenv\\Exception\\InvalidFileException' => __DIR__ . '/..' . '/vlucas/phpdotenv/src/Exception/InvalidFileException.php', + 'Dotenv\\Exception\\InvalidPathException' => __DIR__ . '/..' . '/vlucas/phpdotenv/src/Exception/InvalidPathException.php', + 'Dotenv\\Exception\\ValidationException' => __DIR__ . '/..' . '/vlucas/phpdotenv/src/Exception/ValidationException.php', + 'Dotenv\\Loader' => __DIR__ . '/..' . '/vlucas/phpdotenv/src/Loader.php', + 'Dotenv\\Validator' => __DIR__ . '/..' . '/vlucas/phpdotenv/src/Validator.php', + 'Egulias\\EmailValidator\\EmailLexer' => __DIR__ . '/..' . '/egulias/email-validator/EmailValidator/EmailLexer.php', + 'Egulias\\EmailValidator\\EmailParser' => __DIR__ . '/..' . '/egulias/email-validator/EmailValidator/EmailParser.php', + 'Egulias\\EmailValidator\\EmailValidator' => __DIR__ . '/..' . '/egulias/email-validator/EmailValidator/EmailValidator.php', + 'Egulias\\EmailValidator\\Exception\\AtextAfterCFWS' => __DIR__ . '/..' . '/egulias/email-validator/EmailValidator/Exception/AtextAfterCFWS.php', + 'Egulias\\EmailValidator\\Exception\\CRLFAtTheEnd' => __DIR__ . '/..' . '/egulias/email-validator/EmailValidator/Exception/CRLFAtTheEnd.php', + 'Egulias\\EmailValidator\\Exception\\CRLFX2' => __DIR__ . '/..' . '/egulias/email-validator/EmailValidator/Exception/CRLFX2.php', + 'Egulias\\EmailValidator\\Exception\\CRNoLF' => __DIR__ . '/..' . '/egulias/email-validator/EmailValidator/Exception/CRNoLF.php', + 'Egulias\\EmailValidator\\Exception\\CharNotAllowed' => __DIR__ . '/..' . '/egulias/email-validator/EmailValidator/Exception/CharNotAllowed.php', + 'Egulias\\EmailValidator\\Exception\\CommaInDomain' => __DIR__ . '/..' . '/egulias/email-validator/EmailValidator/Exception/CommaInDomain.php', + 'Egulias\\EmailValidator\\Exception\\ConsecutiveAt' => __DIR__ . '/..' . '/egulias/email-validator/EmailValidator/Exception/ConsecutiveAt.php', + 'Egulias\\EmailValidator\\Exception\\ConsecutiveDot' => __DIR__ . '/..' . '/egulias/email-validator/EmailValidator/Exception/ConsecutiveDot.php', + 'Egulias\\EmailValidator\\Exception\\DomainHyphened' => __DIR__ . '/..' . '/egulias/email-validator/EmailValidator/Exception/DomainHyphened.php', + 'Egulias\\EmailValidator\\Exception\\DotAtEnd' => __DIR__ . '/..' . '/egulias/email-validator/EmailValidator/Exception/DotAtEnd.php', + 'Egulias\\EmailValidator\\Exception\\DotAtStart' => __DIR__ . '/..' . '/egulias/email-validator/EmailValidator/Exception/DotAtStart.php', + 'Egulias\\EmailValidator\\Exception\\ExpectedQPair' => __DIR__ . '/..' . '/egulias/email-validator/EmailValidator/Exception/ExpectingQPair.php', + 'Egulias\\EmailValidator\\Exception\\ExpectingAT' => __DIR__ . '/..' . '/egulias/email-validator/EmailValidator/Exception/ExpectingAT.php', + 'Egulias\\EmailValidator\\Exception\\ExpectingATEXT' => __DIR__ . '/..' . '/egulias/email-validator/EmailValidator/Exception/ExpectingATEXT.php', + 'Egulias\\EmailValidator\\Exception\\ExpectingCTEXT' => __DIR__ . '/..' . '/egulias/email-validator/EmailValidator/Exception/ExpectingCTEXT.php', + 'Egulias\\EmailValidator\\Exception\\ExpectingDTEXT' => __DIR__ . '/..' . '/egulias/email-validator/EmailValidator/Exception/ExpectingDTEXT.php', + 'Egulias\\EmailValidator\\Exception\\ExpectingDomainLiteralClose' => __DIR__ . '/..' . '/egulias/email-validator/EmailValidator/Exception/ExpectingDomainLiteralClose.php', + 'Egulias\\EmailValidator\\Exception\\InvalidEmail' => __DIR__ . '/..' . '/egulias/email-validator/EmailValidator/Exception/InvalidEmail.php', + 'Egulias\\EmailValidator\\Exception\\NoDNSRecord' => __DIR__ . '/..' . '/egulias/email-validator/EmailValidator/Exception/NoDNSRecord.php', + 'Egulias\\EmailValidator\\Exception\\NoDomainPart' => __DIR__ . '/..' . '/egulias/email-validator/EmailValidator/Exception/NoDomainPart.php', + 'Egulias\\EmailValidator\\Exception\\NoLocalPart' => __DIR__ . '/..' . '/egulias/email-validator/EmailValidator/Exception/NoLocalPart.php', + 'Egulias\\EmailValidator\\Exception\\UnclosedComment' => __DIR__ . '/..' . '/egulias/email-validator/EmailValidator/Exception/UnclosedComment.php', + 'Egulias\\EmailValidator\\Exception\\UnclosedQuotedString' => __DIR__ . '/..' . '/egulias/email-validator/EmailValidator/Exception/UnclosedQuotedString.php', + 'Egulias\\EmailValidator\\Exception\\UnopenedComment' => __DIR__ . '/..' . '/egulias/email-validator/EmailValidator/Exception/UnopenedComment.php', + 'Egulias\\EmailValidator\\Parser\\DomainPart' => __DIR__ . '/..' . '/egulias/email-validator/EmailValidator/Parser/DomainPart.php', + 'Egulias\\EmailValidator\\Parser\\LocalPart' => __DIR__ . '/..' . '/egulias/email-validator/EmailValidator/Parser/LocalPart.php', + 'Egulias\\EmailValidator\\Parser\\Parser' => __DIR__ . '/..' . '/egulias/email-validator/EmailValidator/Parser/Parser.php', + 'Egulias\\EmailValidator\\Validation\\DNSCheckValidation' => __DIR__ . '/..' . '/egulias/email-validator/EmailValidator/Validation/DNSCheckValidation.php', + 'Egulias\\EmailValidator\\Validation\\EmailValidation' => __DIR__ . '/..' . '/egulias/email-validator/EmailValidator/Validation/EmailValidation.php', + 'Egulias\\EmailValidator\\Validation\\Error\\RFCWarnings' => __DIR__ . '/..' . '/egulias/email-validator/EmailValidator/Validation/Error/RFCWarnings.php', + 'Egulias\\EmailValidator\\Validation\\Error\\SpoofEmail' => __DIR__ . '/..' . '/egulias/email-validator/EmailValidator/Validation/Error/SpoofEmail.php', + 'Egulias\\EmailValidator\\Validation\\Exception\\EmptyValidationList' => __DIR__ . '/..' . '/egulias/email-validator/EmailValidator/Validation/Exception/EmptyValidationList.php', + 'Egulias\\EmailValidator\\Validation\\MultipleErrors' => __DIR__ . '/..' . '/egulias/email-validator/EmailValidator/Validation/MultipleErrors.php', + 'Egulias\\EmailValidator\\Validation\\MultipleValidationWithAnd' => __DIR__ . '/..' . '/egulias/email-validator/EmailValidator/Validation/MultipleValidationWithAnd.php', + 'Egulias\\EmailValidator\\Validation\\NoRFCWarningsValidation' => __DIR__ . '/..' . '/egulias/email-validator/EmailValidator/Validation/NoRFCWarningsValidation.php', + 'Egulias\\EmailValidator\\Validation\\RFCValidation' => __DIR__ . '/..' . '/egulias/email-validator/EmailValidator/Validation/RFCValidation.php', + 'Egulias\\EmailValidator\\Validation\\SpoofCheckValidation' => __DIR__ . '/..' . '/egulias/email-validator/EmailValidator/Validation/SpoofCheckValidation.php', + 'Egulias\\EmailValidator\\Warning\\AddressLiteral' => __DIR__ . '/..' . '/egulias/email-validator/EmailValidator/Warning/AddressLiteral.php', + 'Egulias\\EmailValidator\\Warning\\CFWSNearAt' => __DIR__ . '/..' . '/egulias/email-validator/EmailValidator/Warning/CFWSNearAt.php', + 'Egulias\\EmailValidator\\Warning\\CFWSWithFWS' => __DIR__ . '/..' . '/egulias/email-validator/EmailValidator/Warning/CFWSWithFWS.php', + 'Egulias\\EmailValidator\\Warning\\Comment' => __DIR__ . '/..' . '/egulias/email-validator/EmailValidator/Warning/Comment.php', + 'Egulias\\EmailValidator\\Warning\\DeprecatedComment' => __DIR__ . '/..' . '/egulias/email-validator/EmailValidator/Warning/DeprecatedComment.php', + 'Egulias\\EmailValidator\\Warning\\DomainLiteral' => __DIR__ . '/..' . '/egulias/email-validator/EmailValidator/Warning/DomainLiteral.php', + 'Egulias\\EmailValidator\\Warning\\DomainTooLong' => __DIR__ . '/..' . '/egulias/email-validator/EmailValidator/Warning/DomainTooLong.php', + 'Egulias\\EmailValidator\\Warning\\EmailTooLong' => __DIR__ . '/..' . '/egulias/email-validator/EmailValidator/Warning/EmailTooLong.php', + 'Egulias\\EmailValidator\\Warning\\IPV6BadChar' => __DIR__ . '/..' . '/egulias/email-validator/EmailValidator/Warning/IPV6BadChar.php', + 'Egulias\\EmailValidator\\Warning\\IPV6ColonEnd' => __DIR__ . '/..' . '/egulias/email-validator/EmailValidator/Warning/IPV6ColonEnd.php', + 'Egulias\\EmailValidator\\Warning\\IPV6ColonStart' => __DIR__ . '/..' . '/egulias/email-validator/EmailValidator/Warning/IPV6ColonStart.php', + 'Egulias\\EmailValidator\\Warning\\IPV6Deprecated' => __DIR__ . '/..' . '/egulias/email-validator/EmailValidator/Warning/IPV6Deprecated.php', + 'Egulias\\EmailValidator\\Warning\\IPV6DoubleColon' => __DIR__ . '/..' . '/egulias/email-validator/EmailValidator/Warning/IPV6DoubleColon.php', + 'Egulias\\EmailValidator\\Warning\\IPV6GroupCount' => __DIR__ . '/..' . '/egulias/email-validator/EmailValidator/Warning/IPV6GroupCount.php', + 'Egulias\\EmailValidator\\Warning\\IPV6MaxGroups' => __DIR__ . '/..' . '/egulias/email-validator/EmailValidator/Warning/IPV6MaxGroups.php', + 'Egulias\\EmailValidator\\Warning\\LabelTooLong' => __DIR__ . '/..' . '/egulias/email-validator/EmailValidator/Warning/LabelTooLong.php', + 'Egulias\\EmailValidator\\Warning\\LocalTooLong' => __DIR__ . '/..' . '/egulias/email-validator/EmailValidator/Warning/LocalTooLong.php', + 'Egulias\\EmailValidator\\Warning\\NoDNSMXRecord' => __DIR__ . '/..' . '/egulias/email-validator/EmailValidator/Warning/NoDNSMXRecord.php', + 'Egulias\\EmailValidator\\Warning\\ObsoleteDTEXT' => __DIR__ . '/..' . '/egulias/email-validator/EmailValidator/Warning/ObsoleteDTEXT.php', + 'Egulias\\EmailValidator\\Warning\\QuotedPart' => __DIR__ . '/..' . '/egulias/email-validator/EmailValidator/Warning/QuotedPart.php', + 'Egulias\\EmailValidator\\Warning\\QuotedString' => __DIR__ . '/..' . '/egulias/email-validator/EmailValidator/Warning/QuotedString.php', + 'Egulias\\EmailValidator\\Warning\\TLD' => __DIR__ . '/..' . '/egulias/email-validator/EmailValidator/Warning/TLD.php', + 'Egulias\\EmailValidator\\Warning\\Warning' => __DIR__ . '/..' . '/egulias/email-validator/EmailValidator/Warning/Warning.php', + 'Faker\\Calculator\\Iban' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Calculator/Iban.php', + 'Faker\\Calculator\\Inn' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Calculator/Inn.php', + 'Faker\\Calculator\\Luhn' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Calculator/Luhn.php', + 'Faker\\DefaultGenerator' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/DefaultGenerator.php', + 'Faker\\Documentor' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Documentor.php', + 'Faker\\Factory' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Factory.php', + 'Faker\\Generator' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Generator.php', + 'Faker\\Guesser\\Name' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Guesser/Name.php', + 'Faker\\ORM\\CakePHP\\ColumnTypeGuesser' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/ORM/CakePHP/ColumnTypeGuesser.php', + 'Faker\\ORM\\CakePHP\\EntityPopulator' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/ORM/CakePHP/EntityPopulator.php', + 'Faker\\ORM\\CakePHP\\Populator' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/ORM/CakePHP/Populator.php', + 'Faker\\ORM\\Doctrine\\ColumnTypeGuesser' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/ORM/Doctrine/ColumnTypeGuesser.php', + 'Faker\\ORM\\Doctrine\\EntityPopulator' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/ORM/Doctrine/EntityPopulator.php', + 'Faker\\ORM\\Doctrine\\Populator' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/ORM/Doctrine/Populator.php', + 'Faker\\ORM\\Mandango\\ColumnTypeGuesser' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/ORM/Mandango/ColumnTypeGuesser.php', + 'Faker\\ORM\\Mandango\\EntityPopulator' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/ORM/Mandango/EntityPopulator.php', + 'Faker\\ORM\\Mandango\\Populator' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/ORM/Mandango/Populator.php', + 'Faker\\ORM\\Propel2\\ColumnTypeGuesser' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/ORM/Propel2/ColumnTypeGuesser.php', + 'Faker\\ORM\\Propel2\\EntityPopulator' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/ORM/Propel2/EntityPopulator.php', + 'Faker\\ORM\\Propel2\\Populator' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/ORM/Propel2/Populator.php', + 'Faker\\ORM\\Propel\\ColumnTypeGuesser' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/ORM/Propel/ColumnTypeGuesser.php', + 'Faker\\ORM\\Propel\\EntityPopulator' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/ORM/Propel/EntityPopulator.php', + 'Faker\\ORM\\Propel\\Populator' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/ORM/Propel/Populator.php', + 'Faker\\ORM\\Spot\\ColumnTypeGuesser' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/ORM/Spot/ColumnTypeGuesser.php', + 'Faker\\ORM\\Spot\\EntityPopulator' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/ORM/Spot/EntityPopulator.php', + 'Faker\\ORM\\Spot\\Populator' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/ORM/Spot/Populator.php', + 'Faker\\Provider\\Address' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/Address.php', + 'Faker\\Provider\\Barcode' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/Barcode.php', + 'Faker\\Provider\\Base' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/Base.php', + 'Faker\\Provider\\Biased' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/Biased.php', + 'Faker\\Provider\\Color' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/Color.php', + 'Faker\\Provider\\Company' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/Company.php', + 'Faker\\Provider\\DateTime' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/DateTime.php', + 'Faker\\Provider\\File' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/File.php', + 'Faker\\Provider\\HtmlLorem' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/HtmlLorem.php', + 'Faker\\Provider\\Image' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/Image.php', + 'Faker\\Provider\\Internet' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/Internet.php', + 'Faker\\Provider\\Lorem' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/Lorem.php', + 'Faker\\Provider\\Miscellaneous' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/Miscellaneous.php', + 'Faker\\Provider\\Payment' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/Payment.php', + 'Faker\\Provider\\Person' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/Person.php', + 'Faker\\Provider\\PhoneNumber' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/PhoneNumber.php', + 'Faker\\Provider\\Text' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/Text.php', + 'Faker\\Provider\\UserAgent' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/UserAgent.php', + 'Faker\\Provider\\Uuid' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/Uuid.php', + 'Faker\\Provider\\ar_JO\\Address' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/ar_JO/Address.php', + 'Faker\\Provider\\ar_JO\\Company' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/ar_JO/Company.php', + 'Faker\\Provider\\ar_JO\\Internet' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/ar_JO/Internet.php', + 'Faker\\Provider\\ar_JO\\Person' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/ar_JO/Person.php', + 'Faker\\Provider\\ar_JO\\Text' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/ar_JO/Text.php', + 'Faker\\Provider\\ar_SA\\Address' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/ar_SA/Address.php', + 'Faker\\Provider\\ar_SA\\Color' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/ar_SA/Color.php', + 'Faker\\Provider\\ar_SA\\Company' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/ar_SA/Company.php', + 'Faker\\Provider\\ar_SA\\Internet' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/ar_SA/Internet.php', + 'Faker\\Provider\\ar_SA\\Payment' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/ar_SA/Payment.php', + 'Faker\\Provider\\ar_SA\\Person' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/ar_SA/Person.php', + 'Faker\\Provider\\ar_SA\\Text' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/ar_SA/Text.php', + 'Faker\\Provider\\at_AT\\Payment' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/at_AT/Payment.php', + 'Faker\\Provider\\bg_BG\\Internet' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/bg_BG/Internet.php', + 'Faker\\Provider\\bg_BG\\Payment' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/bg_BG/Payment.php', + 'Faker\\Provider\\bg_BG\\Person' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/bg_BG/Person.php', + 'Faker\\Provider\\bg_BG\\PhoneNumber' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/bg_BG/PhoneNumber.php', + 'Faker\\Provider\\bn_BD\\Address' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/bn_BD/Address.php', + 'Faker\\Provider\\bn_BD\\Company' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/bn_BD/Company.php', + 'Faker\\Provider\\bn_BD\\Person' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/bn_BD/Person.php', + 'Faker\\Provider\\bn_BD\\PhoneNumber' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/bn_BD/PhoneNumber.php', + 'Faker\\Provider\\bn_BD\\Utils' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/bn_BD/Utils.php', + 'Faker\\Provider\\cs_CZ\\Address' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/cs_CZ/Address.php', + 'Faker\\Provider\\cs_CZ\\Company' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/cs_CZ/Company.php', + 'Faker\\Provider\\cs_CZ\\DateTime' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/cs_CZ/DateTime.php', + 'Faker\\Provider\\cs_CZ\\Internet' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/cs_CZ/Internet.php', + 'Faker\\Provider\\cs_CZ\\Payment' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/cs_CZ/Payment.php', + 'Faker\\Provider\\cs_CZ\\Person' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/cs_CZ/Person.php', + 'Faker\\Provider\\cs_CZ\\PhoneNumber' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/cs_CZ/PhoneNumber.php', + 'Faker\\Provider\\cs_CZ\\Text' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/cs_CZ/Text.php', + 'Faker\\Provider\\da_DK\\Address' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/da_DK/Address.php', + 'Faker\\Provider\\da_DK\\Company' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/da_DK/Company.php', + 'Faker\\Provider\\da_DK\\Internet' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/da_DK/Internet.php', + 'Faker\\Provider\\da_DK\\Payment' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/da_DK/Payment.php', + 'Faker\\Provider\\da_DK\\Person' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/da_DK/Person.php', + 'Faker\\Provider\\da_DK\\PhoneNumber' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/da_DK/PhoneNumber.php', + 'Faker\\Provider\\de_AT\\Address' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/de_AT/Address.php', + 'Faker\\Provider\\de_AT\\Company' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/de_AT/Company.php', + 'Faker\\Provider\\de_AT\\Internet' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/de_AT/Internet.php', + 'Faker\\Provider\\de_AT\\Payment' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/de_AT/Payment.php', + 'Faker\\Provider\\de_AT\\Person' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/de_AT/Person.php', + 'Faker\\Provider\\de_AT\\PhoneNumber' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/de_AT/PhoneNumber.php', + 'Faker\\Provider\\de_AT\\Text' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/de_AT/Text.php', + 'Faker\\Provider\\de_CH\\Address' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/de_CH/Address.php', + 'Faker\\Provider\\de_CH\\Company' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/de_CH/Company.php', + 'Faker\\Provider\\de_CH\\Internet' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/de_CH/Internet.php', + 'Faker\\Provider\\de_CH\\Payment' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/de_CH/Payment.php', + 'Faker\\Provider\\de_CH\\Person' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/de_CH/Person.php', + 'Faker\\Provider\\de_CH\\PhoneNumber' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/de_CH/PhoneNumber.php', + 'Faker\\Provider\\de_CH\\Text' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/de_CH/Text.php', + 'Faker\\Provider\\de_DE\\Address' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/de_DE/Address.php', + 'Faker\\Provider\\de_DE\\Company' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/de_DE/Company.php', + 'Faker\\Provider\\de_DE\\Internet' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/de_DE/Internet.php', + 'Faker\\Provider\\de_DE\\Payment' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/de_DE/Payment.php', + 'Faker\\Provider\\de_DE\\Person' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/de_DE/Person.php', + 'Faker\\Provider\\de_DE\\PhoneNumber' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/de_DE/PhoneNumber.php', + 'Faker\\Provider\\de_DE\\Text' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/de_DE/Text.php', + 'Faker\\Provider\\el_CY\\Address' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/el_CY/Address.php', + 'Faker\\Provider\\el_CY\\Company' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/el_CY/Company.php', + 'Faker\\Provider\\el_CY\\Internet' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/el_CY/Internet.php', + 'Faker\\Provider\\el_CY\\Payment' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/el_CY/Payment.php', + 'Faker\\Provider\\el_CY\\Person' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/el_CY/Person.php', + 'Faker\\Provider\\el_CY\\PhoneNumber' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/el_CY/PhoneNumber.php', + 'Faker\\Provider\\el_GR\\Address' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/el_GR/Address.php', + 'Faker\\Provider\\el_GR\\Company' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/el_GR/Company.php', + 'Faker\\Provider\\el_GR\\Payment' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/el_GR/Payment.php', + 'Faker\\Provider\\el_GR\\Person' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/el_GR/Person.php', + 'Faker\\Provider\\el_GR\\PhoneNumber' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/el_GR/PhoneNumber.php', + 'Faker\\Provider\\el_GR\\Text' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/el_GR/Text.php', + 'Faker\\Provider\\en_AU\\Address' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/en_AU/Address.php', + 'Faker\\Provider\\en_AU\\Internet' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/en_AU/Internet.php', + 'Faker\\Provider\\en_AU\\PhoneNumber' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/en_AU/PhoneNumber.php', + 'Faker\\Provider\\en_CA\\Address' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/en_CA/Address.php', + 'Faker\\Provider\\en_CA\\PhoneNumber' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/en_CA/PhoneNumber.php', + 'Faker\\Provider\\en_GB\\Address' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/en_GB/Address.php', + 'Faker\\Provider\\en_GB\\Internet' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/en_GB/Internet.php', + 'Faker\\Provider\\en_GB\\Payment' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/en_GB/Payment.php', + 'Faker\\Provider\\en_GB\\Person' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/en_GB/Person.php', + 'Faker\\Provider\\en_GB\\PhoneNumber' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/en_GB/PhoneNumber.php', + 'Faker\\Provider\\en_HK\\Address' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/en_HK/Address.php', + 'Faker\\Provider\\en_HK\\Internet' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/en_HK/Internet.php', + 'Faker\\Provider\\en_HK\\PhoneNumber' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/en_HK/PhoneNumber.php', + 'Faker\\Provider\\en_IN\\Address' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/en_IN/Address.php', + 'Faker\\Provider\\en_IN\\Internet' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/en_IN/Internet.php', + 'Faker\\Provider\\en_IN\\Person' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/en_IN/Person.php', + 'Faker\\Provider\\en_IN\\PhoneNumber' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/en_IN/PhoneNumber.php', + 'Faker\\Provider\\en_NG\\Address' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/en_NG/Address.php', + 'Faker\\Provider\\en_NG\\Internet' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/en_NG/Internet.php', + 'Faker\\Provider\\en_NG\\Person' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/en_NG/Person.php', + 'Faker\\Provider\\en_NG\\PhoneNumber' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/en_NG/PhoneNumber.php', + 'Faker\\Provider\\en_NZ\\Address' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/en_NZ/Address.php', + 'Faker\\Provider\\en_NZ\\Internet' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/en_NZ/Internet.php', + 'Faker\\Provider\\en_NZ\\PhoneNumber' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/en_NZ/PhoneNumber.php', + 'Faker\\Provider\\en_PH\\Address' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/en_PH/Address.php', + 'Faker\\Provider\\en_PH\\PhoneNumber' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/en_PH/PhoneNumber.php', + 'Faker\\Provider\\en_SG\\Address' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/en_SG/Address.php', + 'Faker\\Provider\\en_SG\\PhoneNumber' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/en_SG/PhoneNumber.php', + 'Faker\\Provider\\en_UG\\Address' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/en_UG/Address.php', + 'Faker\\Provider\\en_UG\\Internet' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/en_UG/Internet.php', + 'Faker\\Provider\\en_UG\\Person' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/en_UG/Person.php', + 'Faker\\Provider\\en_UG\\PhoneNumber' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/en_UG/PhoneNumber.php', + 'Faker\\Provider\\en_US\\Address' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/en_US/Address.php', + 'Faker\\Provider\\en_US\\Company' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/en_US/Company.php', + 'Faker\\Provider\\en_US\\Payment' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/en_US/Payment.php', + 'Faker\\Provider\\en_US\\Person' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/en_US/Person.php', + 'Faker\\Provider\\en_US\\PhoneNumber' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/en_US/PhoneNumber.php', + 'Faker\\Provider\\en_US\\Text' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/en_US/Text.php', + 'Faker\\Provider\\en_ZA\\Address' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/en_ZA/Address.php', + 'Faker\\Provider\\en_ZA\\Company' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/en_ZA/Company.php', + 'Faker\\Provider\\en_ZA\\Internet' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/en_ZA/Internet.php', + 'Faker\\Provider\\en_ZA\\Person' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/en_ZA/Person.php', + 'Faker\\Provider\\en_ZA\\PhoneNumber' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/en_ZA/PhoneNumber.php', + 'Faker\\Provider\\es_AR\\Address' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/es_AR/Address.php', + 'Faker\\Provider\\es_AR\\Company' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/es_AR/Company.php', + 'Faker\\Provider\\es_AR\\Person' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/es_AR/Person.php', + 'Faker\\Provider\\es_AR\\PhoneNumber' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/es_AR/PhoneNumber.php', + 'Faker\\Provider\\es_ES\\Address' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/es_ES/Address.php', + 'Faker\\Provider\\es_ES\\Company' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/es_ES/Company.php', + 'Faker\\Provider\\es_ES\\Internet' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/es_ES/Internet.php', + 'Faker\\Provider\\es_ES\\Payment' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/es_ES/Payment.php', + 'Faker\\Provider\\es_ES\\Person' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/es_ES/Person.php', + 'Faker\\Provider\\es_ES\\PhoneNumber' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/es_ES/PhoneNumber.php', + 'Faker\\Provider\\es_ES\\Text' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/es_ES/Text.php', + 'Faker\\Provider\\es_PE\\Address' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/es_PE/Address.php', + 'Faker\\Provider\\es_PE\\Company' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/es_PE/Company.php', + 'Faker\\Provider\\es_PE\\Person' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/es_PE/Person.php', + 'Faker\\Provider\\es_PE\\PhoneNumber' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/es_PE/PhoneNumber.php', + 'Faker\\Provider\\es_VE\\Address' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/es_VE/Address.php', + 'Faker\\Provider\\es_VE\\Company' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/es_VE/Company.php', + 'Faker\\Provider\\es_VE\\Internet' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/es_VE/Internet.php', + 'Faker\\Provider\\es_VE\\Person' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/es_VE/Person.php', + 'Faker\\Provider\\es_VE\\PhoneNumber' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/es_VE/PhoneNumber.php', + 'Faker\\Provider\\fa_IR\\Address' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/fa_IR/Address.php', + 'Faker\\Provider\\fa_IR\\Company' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/fa_IR/Company.php', + 'Faker\\Provider\\fa_IR\\Internet' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/fa_IR/Internet.php', + 'Faker\\Provider\\fa_IR\\Person' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/fa_IR/Person.php', + 'Faker\\Provider\\fa_IR\\PhoneNumber' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/fa_IR/PhoneNumber.php', + 'Faker\\Provider\\fa_IR\\Text' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/fa_IR/Text.php', + 'Faker\\Provider\\fi_FI\\Address' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/fi_FI/Address.php', + 'Faker\\Provider\\fi_FI\\Company' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/fi_FI/Company.php', + 'Faker\\Provider\\fi_FI\\Internet' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/fi_FI/Internet.php', + 'Faker\\Provider\\fi_FI\\Payment' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/fi_FI/Payment.php', + 'Faker\\Provider\\fi_FI\\Person' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/fi_FI/Person.php', + 'Faker\\Provider\\fi_FI\\PhoneNumber' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/fi_FI/PhoneNumber.php', + 'Faker\\Provider\\fr_BE\\Address' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/fr_BE/Address.php', + 'Faker\\Provider\\fr_BE\\Company' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/fr_BE/Company.php', + 'Faker\\Provider\\fr_BE\\Internet' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/fr_BE/Internet.php', + 'Faker\\Provider\\fr_BE\\Payment' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/fr_BE/Payment.php', + 'Faker\\Provider\\fr_BE\\Person' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/fr_BE/Person.php', + 'Faker\\Provider\\fr_BE\\PhoneNumber' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/fr_BE/PhoneNumber.php', + 'Faker\\Provider\\fr_CA\\Address' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/fr_CA/Address.php', + 'Faker\\Provider\\fr_CA\\Company' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/fr_CA/Company.php', + 'Faker\\Provider\\fr_CA\\Person' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/fr_CA/Person.php', + 'Faker\\Provider\\fr_CH\\Address' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/fr_CH/Address.php', + 'Faker\\Provider\\fr_CH\\Company' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/fr_CH/Company.php', + 'Faker\\Provider\\fr_CH\\Internet' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/fr_CH/Internet.php', + 'Faker\\Provider\\fr_CH\\Payment' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/fr_CH/Payment.php', + 'Faker\\Provider\\fr_CH\\Person' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/fr_CH/Person.php', + 'Faker\\Provider\\fr_CH\\PhoneNumber' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/fr_CH/PhoneNumber.php', + 'Faker\\Provider\\fr_CH\\Text' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/fr_CH/Text.php', + 'Faker\\Provider\\fr_FR\\Address' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/fr_FR/Address.php', + 'Faker\\Provider\\fr_FR\\Company' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/fr_FR/Company.php', + 'Faker\\Provider\\fr_FR\\Internet' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/fr_FR/Internet.php', + 'Faker\\Provider\\fr_FR\\Payment' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/fr_FR/Payment.php', + 'Faker\\Provider\\fr_FR\\Person' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/fr_FR/Person.php', + 'Faker\\Provider\\fr_FR\\PhoneNumber' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/fr_FR/PhoneNumber.php', + 'Faker\\Provider\\fr_FR\\Text' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/fr_FR/Text.php', + 'Faker\\Provider\\he_IL\\Address' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/he_IL/Address.php', + 'Faker\\Provider\\he_IL\\Company' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/he_IL/Company.php', + 'Faker\\Provider\\he_IL\\Payment' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/he_IL/Payment.php', + 'Faker\\Provider\\he_IL\\Person' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/he_IL/Person.php', + 'Faker\\Provider\\he_IL\\PhoneNumber' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/he_IL/PhoneNumber.php', + 'Faker\\Provider\\hr_HR\\Address' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/hr_HR/Address.php', + 'Faker\\Provider\\hr_HR\\Company' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/hr_HR/Company.php', + 'Faker\\Provider\\hr_HR\\Payment' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/hr_HR/Payment.php', + 'Faker\\Provider\\hr_HR\\Person' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/hr_HR/Person.php', + 'Faker\\Provider\\hr_HR\\PhoneNumber' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/hr_HR/PhoneNumber.php', + 'Faker\\Provider\\hu_HU\\Address' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/hu_HU/Address.php', + 'Faker\\Provider\\hu_HU\\Company' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/hu_HU/Company.php', + 'Faker\\Provider\\hu_HU\\Payment' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/hu_HU/Payment.php', + 'Faker\\Provider\\hu_HU\\Person' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/hu_HU/Person.php', + 'Faker\\Provider\\hu_HU\\PhoneNumber' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/hu_HU/PhoneNumber.php', + 'Faker\\Provider\\hu_HU\\Text' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/hu_HU/Text.php', + 'Faker\\Provider\\hy_AM\\Address' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/hy_AM/Address.php', + 'Faker\\Provider\\hy_AM\\Color' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/hy_AM/Color.php', + 'Faker\\Provider\\hy_AM\\Company' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/hy_AM/Company.php', + 'Faker\\Provider\\hy_AM\\Internet' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/hy_AM/Internet.php', + 'Faker\\Provider\\hy_AM\\Person' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/hy_AM/Person.php', + 'Faker\\Provider\\hy_AM\\PhoneNumber' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/hy_AM/PhoneNumber.php', + 'Faker\\Provider\\id_ID\\Address' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/id_ID/Address.php', + 'Faker\\Provider\\id_ID\\Company' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/id_ID/Company.php', + 'Faker\\Provider\\id_ID\\Internet' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/id_ID/Internet.php', + 'Faker\\Provider\\id_ID\\Person' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/id_ID/Person.php', + 'Faker\\Provider\\id_ID\\PhoneNumber' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/id_ID/PhoneNumber.php', + 'Faker\\Provider\\is_IS\\Address' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/is_IS/Address.php', + 'Faker\\Provider\\is_IS\\Company' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/is_IS/Company.php', + 'Faker\\Provider\\is_IS\\Internet' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/is_IS/Internet.php', + 'Faker\\Provider\\is_IS\\Payment' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/is_IS/Payment.php', + 'Faker\\Provider\\is_IS\\Person' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/is_IS/Person.php', + 'Faker\\Provider\\is_IS\\PhoneNumber' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/is_IS/PhoneNumber.php', + 'Faker\\Provider\\it_CH\\Address' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/it_CH/Address.php', + 'Faker\\Provider\\it_CH\\Company' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/it_CH/Company.php', + 'Faker\\Provider\\it_CH\\Internet' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/it_CH/Internet.php', + 'Faker\\Provider\\it_CH\\Payment' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/it_CH/Payment.php', + 'Faker\\Provider\\it_CH\\Person' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/it_CH/Person.php', + 'Faker\\Provider\\it_CH\\PhoneNumber' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/it_CH/PhoneNumber.php', + 'Faker\\Provider\\it_CH\\Text' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/it_CH/Text.php', + 'Faker\\Provider\\it_IT\\Address' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/it_IT/Address.php', + 'Faker\\Provider\\it_IT\\Company' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/it_IT/Company.php', + 'Faker\\Provider\\it_IT\\Internet' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/it_IT/Internet.php', + 'Faker\\Provider\\it_IT\\Payment' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/it_IT/Payment.php', + 'Faker\\Provider\\it_IT\\Person' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/it_IT/Person.php', + 'Faker\\Provider\\it_IT\\PhoneNumber' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/it_IT/PhoneNumber.php', + 'Faker\\Provider\\it_IT\\Text' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/it_IT/Text.php', + 'Faker\\Provider\\ja_JP\\Address' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/ja_JP/Address.php', + 'Faker\\Provider\\ja_JP\\Company' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/ja_JP/Company.php', + 'Faker\\Provider\\ja_JP\\Internet' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/ja_JP/Internet.php', + 'Faker\\Provider\\ja_JP\\Person' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/ja_JP/Person.php', + 'Faker\\Provider\\ja_JP\\PhoneNumber' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/ja_JP/PhoneNumber.php', + 'Faker\\Provider\\ja_JP\\Text' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/ja_JP/Text.php', + 'Faker\\Provider\\ka_GE\\Address' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/ka_GE/Address.php', + 'Faker\\Provider\\ka_GE\\Color' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/ka_GE/Color.php', + 'Faker\\Provider\\ka_GE\\Company' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/ka_GE/Company.php', + 'Faker\\Provider\\ka_GE\\DateTime' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/ka_GE/DateTime.php', + 'Faker\\Provider\\ka_GE\\Internet' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/ka_GE/Internet.php', + 'Faker\\Provider\\ka_GE\\Payment' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/ka_GE/Payment.php', + 'Faker\\Provider\\ka_GE\\Person' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/ka_GE/Person.php', + 'Faker\\Provider\\ka_GE\\PhoneNumber' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/ka_GE/PhoneNumber.php', + 'Faker\\Provider\\ka_GE\\Text' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/ka_GE/Text.php', + 'Faker\\Provider\\kk_KZ\\Address' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/kk_KZ/Address.php', + 'Faker\\Provider\\kk_KZ\\Color' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/kk_KZ/Color.php', + 'Faker\\Provider\\kk_KZ\\Company' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/kk_KZ/Company.php', + 'Faker\\Provider\\kk_KZ\\Internet' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/kk_KZ/Internet.php', + 'Faker\\Provider\\kk_KZ\\Payment' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/kk_KZ/Payment.php', + 'Faker\\Provider\\kk_KZ\\Person' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/kk_KZ/Person.php', + 'Faker\\Provider\\kk_KZ\\PhoneNumber' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/kk_KZ/PhoneNumber.php', + 'Faker\\Provider\\kk_KZ\\Text' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/kk_KZ/Text.php', + 'Faker\\Provider\\ko_KR\\Address' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/ko_KR/Address.php', + 'Faker\\Provider\\ko_KR\\Company' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/ko_KR/Company.php', + 'Faker\\Provider\\ko_KR\\Internet' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/ko_KR/Internet.php', + 'Faker\\Provider\\ko_KR\\Person' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/ko_KR/Person.php', + 'Faker\\Provider\\ko_KR\\PhoneNumber' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/ko_KR/PhoneNumber.php', + 'Faker\\Provider\\ko_KR\\Text' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/ko_KR/Text.php', + 'Faker\\Provider\\lt_LT\\Address' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/lt_LT/Address.php', + 'Faker\\Provider\\lt_LT\\Company' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/lt_LT/Company.php', + 'Faker\\Provider\\lt_LT\\Internet' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/lt_LT/Internet.php', + 'Faker\\Provider\\lt_LT\\Payment' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/lt_LT/Payment.php', + 'Faker\\Provider\\lt_LT\\Person' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/lt_LT/Person.php', + 'Faker\\Provider\\lt_LT\\PhoneNumber' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/lt_LT/PhoneNumber.php', + 'Faker\\Provider\\lv_LV\\Address' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/lv_LV/Address.php', + 'Faker\\Provider\\lv_LV\\Color' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/lv_LV/Color.php', + 'Faker\\Provider\\lv_LV\\Internet' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/lv_LV/Internet.php', + 'Faker\\Provider\\lv_LV\\Payment' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/lv_LV/Payment.php', + 'Faker\\Provider\\lv_LV\\Person' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/lv_LV/Person.php', + 'Faker\\Provider\\lv_LV\\PhoneNumber' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/lv_LV/PhoneNumber.php', + 'Faker\\Provider\\me_ME\\Address' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/me_ME/Address.php', + 'Faker\\Provider\\me_ME\\Company' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/me_ME/Company.php', + 'Faker\\Provider\\me_ME\\Payment' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/me_ME/Payment.php', + 'Faker\\Provider\\me_ME\\Person' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/me_ME/Person.php', + 'Faker\\Provider\\me_ME\\PhoneNumber' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/me_ME/PhoneNumber.php', + 'Faker\\Provider\\mn_MN\\Person' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/mn_MN/Person.php', + 'Faker\\Provider\\mn_MN\\PhoneNumber' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/mn_MN/PhoneNumber.php', + 'Faker\\Provider\\nb_NO\\Address' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/nb_NO/Address.php', + 'Faker\\Provider\\nb_NO\\Company' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/nb_NO/Company.php', + 'Faker\\Provider\\nb_NO\\Payment' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/nb_NO/Payment.php', + 'Faker\\Provider\\nb_NO\\Person' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/nb_NO/Person.php', + 'Faker\\Provider\\nb_NO\\PhoneNumber' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/nb_NO/PhoneNumber.php', + 'Faker\\Provider\\ne_NP\\Address' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/ne_NP/Address.php', + 'Faker\\Provider\\ne_NP\\Internet' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/ne_NP/Internet.php', + 'Faker\\Provider\\ne_NP\\Person' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/ne_NP/Person.php', + 'Faker\\Provider\\ne_NP\\PhoneNumber' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/ne_NP/PhoneNumber.php', + 'Faker\\Provider\\nl_BE\\Address' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/nl_BE/Address.php', + 'Faker\\Provider\\nl_BE\\Company' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/nl_BE/Company.php', + 'Faker\\Provider\\nl_BE\\Internet' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/nl_BE/Internet.php', + 'Faker\\Provider\\nl_BE\\Payment' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/nl_BE/Payment.php', + 'Faker\\Provider\\nl_BE\\Person' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/nl_BE/Person.php', + 'Faker\\Provider\\nl_BE\\PhoneNumber' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/nl_BE/PhoneNumber.php', + 'Faker\\Provider\\nl_NL\\Address' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/nl_NL/Address.php', + 'Faker\\Provider\\nl_NL\\Color' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/nl_NL/Color.php', + 'Faker\\Provider\\nl_NL\\Company' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/nl_NL/Company.php', + 'Faker\\Provider\\nl_NL\\Internet' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/nl_NL/Internet.php', + 'Faker\\Provider\\nl_NL\\Payment' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/nl_NL/Payment.php', + 'Faker\\Provider\\nl_NL\\Person' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/nl_NL/Person.php', + 'Faker\\Provider\\nl_NL\\PhoneNumber' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/nl_NL/PhoneNumber.php', + 'Faker\\Provider\\nl_NL\\Text' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/nl_NL/Text.php', + 'Faker\\Provider\\pl_PL\\Address' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/pl_PL/Address.php', + 'Faker\\Provider\\pl_PL\\Company' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/pl_PL/Company.php', + 'Faker\\Provider\\pl_PL\\Internet' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/pl_PL/Internet.php', + 'Faker\\Provider\\pl_PL\\Payment' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/pl_PL/Payment.php', + 'Faker\\Provider\\pl_PL\\Person' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/pl_PL/Person.php', + 'Faker\\Provider\\pl_PL\\PhoneNumber' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/pl_PL/PhoneNumber.php', + 'Faker\\Provider\\pl_PL\\Text' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/pl_PL/Text.php', + 'Faker\\Provider\\pt_BR\\Address' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/pt_BR/Address.php', + 'Faker\\Provider\\pt_BR\\Company' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/pt_BR/Company.php', + 'Faker\\Provider\\pt_BR\\Internet' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/pt_BR/Internet.php', + 'Faker\\Provider\\pt_BR\\Payment' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/pt_BR/Payment.php', + 'Faker\\Provider\\pt_BR\\Person' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/pt_BR/Person.php', + 'Faker\\Provider\\pt_BR\\PhoneNumber' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/pt_BR/PhoneNumber.php', + 'Faker\\Provider\\pt_PT\\Address' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/pt_PT/Address.php', + 'Faker\\Provider\\pt_PT\\Payment' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/pt_PT/Payment.php', + 'Faker\\Provider\\pt_PT\\Person' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/pt_PT/Person.php', + 'Faker\\Provider\\pt_PT\\PhoneNumber' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/pt_PT/PhoneNumber.php', + 'Faker\\Provider\\ro_MD\\Address' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/ro_MD/Address.php', + 'Faker\\Provider\\ro_MD\\Payment' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/ro_MD/Payment.php', + 'Faker\\Provider\\ro_MD\\Person' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/ro_MD/Person.php', + 'Faker\\Provider\\ro_MD\\PhoneNumber' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/ro_MD/PhoneNumber.php', + 'Faker\\Provider\\ro_MD\\Text' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/ro_MD/Text.php', + 'Faker\\Provider\\ro_RO\\Address' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/ro_RO/Address.php', + 'Faker\\Provider\\ro_RO\\Payment' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/ro_RO/Payment.php', + 'Faker\\Provider\\ro_RO\\Person' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/ro_RO/Person.php', + 'Faker\\Provider\\ro_RO\\PhoneNumber' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/ro_RO/PhoneNumber.php', + 'Faker\\Provider\\ro_RO\\Text' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/ro_RO/Text.php', + 'Faker\\Provider\\ru_RU\\Address' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/ru_RU/Address.php', + 'Faker\\Provider\\ru_RU\\Color' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/ru_RU/Color.php', + 'Faker\\Provider\\ru_RU\\Company' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/ru_RU/Company.php', + 'Faker\\Provider\\ru_RU\\Internet' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/ru_RU/Internet.php', + 'Faker\\Provider\\ru_RU\\Payment' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/ru_RU/Payment.php', + 'Faker\\Provider\\ru_RU\\Person' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/ru_RU/Person.php', + 'Faker\\Provider\\ru_RU\\PhoneNumber' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/ru_RU/PhoneNumber.php', + 'Faker\\Provider\\ru_RU\\Text' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/ru_RU/Text.php', + 'Faker\\Provider\\sk_SK\\Address' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/sk_SK/Address.php', + 'Faker\\Provider\\sk_SK\\Company' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/sk_SK/Company.php', + 'Faker\\Provider\\sk_SK\\Internet' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/sk_SK/Internet.php', + 'Faker\\Provider\\sk_SK\\Payment' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/sk_SK/Payment.php', + 'Faker\\Provider\\sk_SK\\Person' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/sk_SK/Person.php', + 'Faker\\Provider\\sk_SK\\PhoneNumber' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/sk_SK/PhoneNumber.php', + 'Faker\\Provider\\sl_SI\\Address' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/sl_SI/Address.php', + 'Faker\\Provider\\sl_SI\\Internet' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/sl_SI/Internet.php', + 'Faker\\Provider\\sl_SI\\Payment' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/sl_SI/Payment.php', + 'Faker\\Provider\\sl_SI\\Person' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/sl_SI/Person.php', + 'Faker\\Provider\\sl_SI\\PhoneNumber' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/sl_SI/PhoneNumber.php', + 'Faker\\Provider\\sr_Cyrl_RS\\Address' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/sr_Cyrl_RS/Address.php', + 'Faker\\Provider\\sr_Cyrl_RS\\Payment' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/sr_Cyrl_RS/Payment.php', + 'Faker\\Provider\\sr_Cyrl_RS\\Person' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/sr_Cyrl_RS/Person.php', + 'Faker\\Provider\\sr_Latn_RS\\Address' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/sr_Latn_RS/Address.php', + 'Faker\\Provider\\sr_Latn_RS\\Payment' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/sr_Latn_RS/Payment.php', + 'Faker\\Provider\\sr_Latn_RS\\Person' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/sr_Latn_RS/Person.php', + 'Faker\\Provider\\sr_RS\\Address' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/sr_RS/Address.php', + 'Faker\\Provider\\sr_RS\\Payment' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/sr_RS/Payment.php', + 'Faker\\Provider\\sr_RS\\Person' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/sr_RS/Person.php', + 'Faker\\Provider\\sv_SE\\Address' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/sv_SE/Address.php', + 'Faker\\Provider\\sv_SE\\Company' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/sv_SE/Company.php', + 'Faker\\Provider\\sv_SE\\Payment' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/sv_SE/Payment.php', + 'Faker\\Provider\\sv_SE\\Person' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/sv_SE/Person.php', + 'Faker\\Provider\\sv_SE\\PhoneNumber' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/sv_SE/PhoneNumber.php', + 'Faker\\Provider\\th_TH\\Address' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/th_TH/Address.php', + 'Faker\\Provider\\th_TH\\Company' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/th_TH/Company.php', + 'Faker\\Provider\\th_TH\\Internet' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/th_TH/Internet.php', + 'Faker\\Provider\\th_TH\\Payment' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/th_TH/Payment.php', + 'Faker\\Provider\\th_TH\\PhoneNumber' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/th_TH/PhoneNumber.php', + 'Faker\\Provider\\tr_TR\\Address' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/tr_TR/Address.php', + 'Faker\\Provider\\tr_TR\\Color' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/tr_TR/Color.php', + 'Faker\\Provider\\tr_TR\\DateTime' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/tr_TR/DateTime.php', + 'Faker\\Provider\\tr_TR\\Internet' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/tr_TR/Internet.php', + 'Faker\\Provider\\tr_TR\\Payment' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/tr_TR/Payment.php', + 'Faker\\Provider\\tr_TR\\Person' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/tr_TR/Person.php', + 'Faker\\Provider\\tr_TR\\PhoneNumber' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/tr_TR/PhoneNumber.php', + 'Faker\\Provider\\uk_UA\\Address' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/uk_UA/Address.php', + 'Faker\\Provider\\uk_UA\\Color' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/uk_UA/Color.php', + 'Faker\\Provider\\uk_UA\\Company' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/uk_UA/Company.php', + 'Faker\\Provider\\uk_UA\\Internet' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/uk_UA/Internet.php', + 'Faker\\Provider\\uk_UA\\Person' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/uk_UA/Person.php', + 'Faker\\Provider\\uk_UA\\PhoneNumber' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/uk_UA/PhoneNumber.php', + 'Faker\\Provider\\uk_UA\\Text' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/uk_UA/Text.php', + 'Faker\\Provider\\uk_Ua\\Payment' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/uk_UA/Payment.php', + 'Faker\\Provider\\vi_VN\\Address' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/vi_VN/Address.php', + 'Faker\\Provider\\vi_VN\\Color' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/vi_VN/Color.php', + 'Faker\\Provider\\vi_VN\\Internet' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/vi_VN/Internet.php', + 'Faker\\Provider\\vi_VN\\Person' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/vi_VN/Person.php', + 'Faker\\Provider\\vi_VN\\PhoneNumber' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/vi_VN/PhoneNumber.php', + 'Faker\\Provider\\zh_CN\\Address' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/zh_CN/Address.php', + 'Faker\\Provider\\zh_CN\\Color' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/zh_CN/Color.php', + 'Faker\\Provider\\zh_CN\\Company' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/zh_CN/Company.php', + 'Faker\\Provider\\zh_CN\\DateTime' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/zh_CN/DateTime.php', + 'Faker\\Provider\\zh_CN\\Internet' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/zh_CN/Internet.php', + 'Faker\\Provider\\zh_CN\\Payment' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/zh_CN/Payment.php', + 'Faker\\Provider\\zh_CN\\Person' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/zh_CN/Person.php', + 'Faker\\Provider\\zh_CN\\PhoneNumber' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/zh_CN/PhoneNumber.php', + 'Faker\\Provider\\zh_TW\\Address' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/zh_TW/Address.php', + 'Faker\\Provider\\zh_TW\\Color' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/zh_TW/Color.php', + 'Faker\\Provider\\zh_TW\\Company' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/zh_TW/Company.php', + 'Faker\\Provider\\zh_TW\\DateTime' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/zh_TW/DateTime.php', + 'Faker\\Provider\\zh_TW\\Internet' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/zh_TW/Internet.php', + 'Faker\\Provider\\zh_TW\\Payment' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/zh_TW/Payment.php', + 'Faker\\Provider\\zh_TW\\Person' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/zh_TW/Person.php', + 'Faker\\Provider\\zh_TW\\PhoneNumber' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/zh_TW/PhoneNumber.php', + 'Faker\\Provider\\zh_TW\\Text' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/Provider/zh_TW/Text.php', + 'Faker\\UniqueGenerator' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/UniqueGenerator.php', + 'Faker\\ValidGenerator' => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker/ValidGenerator.php', + 'Fideloper\\Proxy\\TrustProxies' => __DIR__ . '/..' . '/fideloper/proxy/src/TrustProxies.php', + 'Fideloper\\Proxy\\TrustedProxyServiceProvider' => __DIR__ . '/..' . '/fideloper/proxy/src/TrustedProxyServiceProvider.php', 'File_Iterator' => __DIR__ . '/..' . '/phpunit/php-file-iterator/src/Iterator.php', 'File_Iterator_Facade' => __DIR__ . '/..' . '/phpunit/php-file-iterator/src/Facade.php', 'File_Iterator_Factory' => __DIR__ . '/..' . '/phpunit/php-file-iterator/src/Factory.php', @@ -372,6 +970,975 @@ class ComposerStaticInit0ef7b7c57b5051a6692d56ad58e04e79 'Hamcrest\\Type\\IsString' => __DIR__ . '/..' . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/Type/IsString.php', 'Hamcrest\\Util' => __DIR__ . '/..' . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/Util.php', 'Hamcrest\\Xml\\HasXPath' => __DIR__ . '/..' . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/Xml/HasXPath.php', + 'Illuminate\\Auth\\Access\\AuthorizationException' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Auth/Access/AuthorizationException.php', + 'Illuminate\\Auth\\Access\\Gate' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Auth/Access/Gate.php', + 'Illuminate\\Auth\\Access\\HandlesAuthorization' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Auth/Access/HandlesAuthorization.php', + 'Illuminate\\Auth\\Access\\Response' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Auth/Access/Response.php', + 'Illuminate\\Auth\\AuthManager' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Auth/AuthManager.php', + 'Illuminate\\Auth\\AuthServiceProvider' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Auth/AuthServiceProvider.php', + 'Illuminate\\Auth\\Authenticatable' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Auth/Authenticatable.php', + 'Illuminate\\Auth\\AuthenticationException' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Auth/AuthenticationException.php', + 'Illuminate\\Auth\\Console\\AuthMakeCommand' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Auth/Console/AuthMakeCommand.php', + 'Illuminate\\Auth\\Console\\ClearResetsCommand' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Auth/Console/ClearResetsCommand.php', + 'Illuminate\\Auth\\CreatesUserProviders' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Auth/CreatesUserProviders.php', + 'Illuminate\\Auth\\DatabaseUserProvider' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Auth/DatabaseUserProvider.php', + 'Illuminate\\Auth\\EloquentUserProvider' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Auth/EloquentUserProvider.php', + 'Illuminate\\Auth\\Events\\Attempting' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Auth/Events/Attempting.php', + 'Illuminate\\Auth\\Events\\Authenticated' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Auth/Events/Authenticated.php', + 'Illuminate\\Auth\\Events\\Failed' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Auth/Events/Failed.php', + 'Illuminate\\Auth\\Events\\Lockout' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Auth/Events/Lockout.php', + 'Illuminate\\Auth\\Events\\Login' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Auth/Events/Login.php', + 'Illuminate\\Auth\\Events\\Logout' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Auth/Events/Logout.php', + 'Illuminate\\Auth\\Events\\PasswordReset' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Auth/Events/PasswordReset.php', + 'Illuminate\\Auth\\Events\\Registered' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Auth/Events/Registered.php', + 'Illuminate\\Auth\\GenericUser' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Auth/GenericUser.php', + 'Illuminate\\Auth\\GuardHelpers' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Auth/GuardHelpers.php', + 'Illuminate\\Auth\\Middleware\\Authenticate' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Auth/Middleware/Authenticate.php', + 'Illuminate\\Auth\\Middleware\\AuthenticateWithBasicAuth' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Auth/Middleware/AuthenticateWithBasicAuth.php', + 'Illuminate\\Auth\\Middleware\\Authorize' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Auth/Middleware/Authorize.php', + 'Illuminate\\Auth\\Notifications\\ResetPassword' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Auth/Notifications/ResetPassword.php', + 'Illuminate\\Auth\\Passwords\\CanResetPassword' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Auth/Passwords/CanResetPassword.php', + 'Illuminate\\Auth\\Passwords\\DatabaseTokenRepository' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Auth/Passwords/DatabaseTokenRepository.php', + 'Illuminate\\Auth\\Passwords\\PasswordBroker' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Auth/Passwords/PasswordBroker.php', + 'Illuminate\\Auth\\Passwords\\PasswordBrokerManager' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Auth/Passwords/PasswordBrokerManager.php', + 'Illuminate\\Auth\\Passwords\\PasswordResetServiceProvider' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Auth/Passwords/PasswordResetServiceProvider.php', + 'Illuminate\\Auth\\Passwords\\TokenRepositoryInterface' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Auth/Passwords/TokenRepositoryInterface.php', + 'Illuminate\\Auth\\Recaller' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Auth/Recaller.php', + 'Illuminate\\Auth\\RequestGuard' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Auth/RequestGuard.php', + 'Illuminate\\Auth\\SessionGuard' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Auth/SessionGuard.php', + 'Illuminate\\Auth\\TokenGuard' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Auth/TokenGuard.php', + 'Illuminate\\Broadcasting\\BroadcastController' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Broadcasting/BroadcastController.php', + 'Illuminate\\Broadcasting\\BroadcastEvent' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Broadcasting/BroadcastEvent.php', + 'Illuminate\\Broadcasting\\BroadcastException' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Broadcasting/BroadcastException.php', + 'Illuminate\\Broadcasting\\BroadcastManager' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Broadcasting/BroadcastManager.php', + 'Illuminate\\Broadcasting\\BroadcastServiceProvider' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Broadcasting/BroadcastServiceProvider.php', + 'Illuminate\\Broadcasting\\Broadcasters\\Broadcaster' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Broadcasting/Broadcasters/Broadcaster.php', + 'Illuminate\\Broadcasting\\Broadcasters\\LogBroadcaster' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Broadcasting/Broadcasters/LogBroadcaster.php', + 'Illuminate\\Broadcasting\\Broadcasters\\NullBroadcaster' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Broadcasting/Broadcasters/NullBroadcaster.php', + 'Illuminate\\Broadcasting\\Broadcasters\\PusherBroadcaster' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Broadcasting/Broadcasters/PusherBroadcaster.php', + 'Illuminate\\Broadcasting\\Broadcasters\\RedisBroadcaster' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Broadcasting/Broadcasters/RedisBroadcaster.php', + 'Illuminate\\Broadcasting\\Channel' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Broadcasting/Channel.php', + 'Illuminate\\Broadcasting\\InteractsWithSockets' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Broadcasting/InteractsWithSockets.php', + 'Illuminate\\Broadcasting\\PendingBroadcast' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Broadcasting/PendingBroadcast.php', + 'Illuminate\\Broadcasting\\PresenceChannel' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Broadcasting/PresenceChannel.php', + 'Illuminate\\Broadcasting\\PrivateChannel' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Broadcasting/PrivateChannel.php', + 'Illuminate\\Bus\\BusServiceProvider' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Bus/BusServiceProvider.php', + 'Illuminate\\Bus\\Dispatcher' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Bus/Dispatcher.php', + 'Illuminate\\Bus\\Queueable' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Bus/Queueable.php', + 'Illuminate\\Cache\\ApcStore' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Cache/ApcStore.php', + 'Illuminate\\Cache\\ApcWrapper' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Cache/ApcWrapper.php', + 'Illuminate\\Cache\\ArrayStore' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Cache/ArrayStore.php', + 'Illuminate\\Cache\\CacheManager' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Cache/CacheManager.php', + 'Illuminate\\Cache\\CacheServiceProvider' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Cache/CacheServiceProvider.php', + 'Illuminate\\Cache\\Console\\CacheTableCommand' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Cache/Console/CacheTableCommand.php', + 'Illuminate\\Cache\\Console\\ClearCommand' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Cache/Console/ClearCommand.php', + 'Illuminate\\Cache\\Console\\ForgetCommand' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Cache/Console/ForgetCommand.php', + 'Illuminate\\Cache\\DatabaseStore' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Cache/DatabaseStore.php', + 'Illuminate\\Cache\\Events\\CacheEvent' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Cache/Events/CacheEvent.php', + 'Illuminate\\Cache\\Events\\CacheHit' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Cache/Events/CacheHit.php', + 'Illuminate\\Cache\\Events\\CacheMissed' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Cache/Events/CacheMissed.php', + 'Illuminate\\Cache\\Events\\KeyForgotten' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Cache/Events/KeyForgotten.php', + 'Illuminate\\Cache\\Events\\KeyWritten' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Cache/Events/KeyWritten.php', + 'Illuminate\\Cache\\FileStore' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Cache/FileStore.php', + 'Illuminate\\Cache\\Lock' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Cache/Lock.php', + 'Illuminate\\Cache\\MemcachedConnector' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Cache/MemcachedConnector.php', + 'Illuminate\\Cache\\MemcachedLock' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Cache/MemcachedLock.php', + 'Illuminate\\Cache\\MemcachedStore' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Cache/MemcachedStore.php', + 'Illuminate\\Cache\\NullStore' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Cache/NullStore.php', + 'Illuminate\\Cache\\RateLimiter' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Cache/RateLimiter.php', + 'Illuminate\\Cache\\RedisLock' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Cache/RedisLock.php', + 'Illuminate\\Cache\\RedisStore' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Cache/RedisStore.php', + 'Illuminate\\Cache\\RedisTaggedCache' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Cache/RedisTaggedCache.php', + 'Illuminate\\Cache\\Repository' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Cache/Repository.php', + 'Illuminate\\Cache\\RetrievesMultipleKeys' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Cache/RetrievesMultipleKeys.php', + 'Illuminate\\Cache\\TagSet' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Cache/TagSet.php', + 'Illuminate\\Cache\\TaggableStore' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Cache/TaggableStore.php', + 'Illuminate\\Cache\\TaggedCache' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Cache/TaggedCache.php', + 'Illuminate\\Config\\Repository' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Config/Repository.php', + 'Illuminate\\Console\\Application' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Console/Application.php', + 'Illuminate\\Console\\Command' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Console/Command.php', + 'Illuminate\\Console\\ConfirmableTrait' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Console/ConfirmableTrait.php', + 'Illuminate\\Console\\DetectsApplicationNamespace' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Console/DetectsApplicationNamespace.php', + 'Illuminate\\Console\\Events\\ArtisanStarting' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Console/Events/ArtisanStarting.php', + 'Illuminate\\Console\\Events\\CommandFinished' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Console/Events/CommandFinished.php', + 'Illuminate\\Console\\Events\\CommandStarting' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Console/Events/CommandStarting.php', + 'Illuminate\\Console\\GeneratorCommand' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Console/GeneratorCommand.php', + 'Illuminate\\Console\\OutputStyle' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Console/OutputStyle.php', + 'Illuminate\\Console\\Parser' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Console/Parser.php', + 'Illuminate\\Console\\Scheduling\\CacheMutex' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Console/Scheduling/CacheMutex.php', + 'Illuminate\\Console\\Scheduling\\CallbackEvent' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Console/Scheduling/CallbackEvent.php', + 'Illuminate\\Console\\Scheduling\\CommandBuilder' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Console/Scheduling/CommandBuilder.php', + 'Illuminate\\Console\\Scheduling\\Event' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Console/Scheduling/Event.php', + 'Illuminate\\Console\\Scheduling\\ManagesFrequencies' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Console/Scheduling/ManagesFrequencies.php', + 'Illuminate\\Console\\Scheduling\\Mutex' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Console/Scheduling/Mutex.php', + 'Illuminate\\Console\\Scheduling\\Schedule' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Console/Scheduling/Schedule.php', + 'Illuminate\\Console\\Scheduling\\ScheduleFinishCommand' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Console/Scheduling/ScheduleFinishCommand.php', + 'Illuminate\\Console\\Scheduling\\ScheduleRunCommand' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Console/Scheduling/ScheduleRunCommand.php', + 'Illuminate\\Container\\BoundMethod' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Container/BoundMethod.php', + 'Illuminate\\Container\\Container' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Container/Container.php', + 'Illuminate\\Container\\ContextualBindingBuilder' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Container/ContextualBindingBuilder.php', + 'Illuminate\\Container\\EntryNotFoundException' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Container/EntryNotFoundException.php', + 'Illuminate\\Contracts\\Auth\\Access\\Authorizable' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Contracts/Auth/Access/Authorizable.php', + 'Illuminate\\Contracts\\Auth\\Access\\Gate' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Contracts/Auth/Access/Gate.php', + 'Illuminate\\Contracts\\Auth\\Authenticatable' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Contracts/Auth/Authenticatable.php', + 'Illuminate\\Contracts\\Auth\\CanResetPassword' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Contracts/Auth/CanResetPassword.php', + 'Illuminate\\Contracts\\Auth\\Factory' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Contracts/Auth/Factory.php', + 'Illuminate\\Contracts\\Auth\\Guard' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Contracts/Auth/Guard.php', + 'Illuminate\\Contracts\\Auth\\PasswordBroker' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Contracts/Auth/PasswordBroker.php', + 'Illuminate\\Contracts\\Auth\\PasswordBrokerFactory' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Contracts/Auth/PasswordBrokerFactory.php', + 'Illuminate\\Contracts\\Auth\\StatefulGuard' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Contracts/Auth/StatefulGuard.php', + 'Illuminate\\Contracts\\Auth\\SupportsBasicAuth' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Contracts/Auth/SupportsBasicAuth.php', + 'Illuminate\\Contracts\\Auth\\UserProvider' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Contracts/Auth/UserProvider.php', + 'Illuminate\\Contracts\\Broadcasting\\Broadcaster' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Contracts/Broadcasting/Broadcaster.php', + 'Illuminate\\Contracts\\Broadcasting\\Factory' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Contracts/Broadcasting/Factory.php', + 'Illuminate\\Contracts\\Broadcasting\\ShouldBroadcast' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Contracts/Broadcasting/ShouldBroadcast.php', + 'Illuminate\\Contracts\\Broadcasting\\ShouldBroadcastNow' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Contracts/Broadcasting/ShouldBroadcastNow.php', + 'Illuminate\\Contracts\\Bus\\Dispatcher' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Contracts/Bus/Dispatcher.php', + 'Illuminate\\Contracts\\Bus\\QueueingDispatcher' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Contracts/Bus/QueueingDispatcher.php', + 'Illuminate\\Contracts\\Cache\\Factory' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Contracts/Cache/Factory.php', + 'Illuminate\\Contracts\\Cache\\Lock' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Contracts/Cache/Lock.php', + 'Illuminate\\Contracts\\Cache\\LockProvider' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Contracts/Cache/LockProvider.php', + 'Illuminate\\Contracts\\Cache\\LockTimeoutException' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Contracts/Cache/LockTimeoutException.php', + 'Illuminate\\Contracts\\Cache\\Repository' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Contracts/Cache/Repository.php', + 'Illuminate\\Contracts\\Cache\\Store' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Contracts/Cache/Store.php', + 'Illuminate\\Contracts\\Config\\Repository' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Contracts/Config/Repository.php', + 'Illuminate\\Contracts\\Console\\Application' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Contracts/Console/Application.php', + 'Illuminate\\Contracts\\Console\\Kernel' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Contracts/Console/Kernel.php', + 'Illuminate\\Contracts\\Container\\BindingResolutionException' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Contracts/Container/BindingResolutionException.php', + 'Illuminate\\Contracts\\Container\\Container' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Contracts/Container/Container.php', + 'Illuminate\\Contracts\\Container\\ContextualBindingBuilder' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Contracts/Container/ContextualBindingBuilder.php', + 'Illuminate\\Contracts\\Cookie\\Factory' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Contracts/Cookie/Factory.php', + 'Illuminate\\Contracts\\Cookie\\QueueingFactory' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Contracts/Cookie/QueueingFactory.php', + 'Illuminate\\Contracts\\Database\\ModelIdentifier' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Contracts/Database/ModelIdentifier.php', + 'Illuminate\\Contracts\\Debug\\ExceptionHandler' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Contracts/Debug/ExceptionHandler.php', + 'Illuminate\\Contracts\\Encryption\\DecryptException' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Contracts/Encryption/DecryptException.php', + 'Illuminate\\Contracts\\Encryption\\EncryptException' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Contracts/Encryption/EncryptException.php', + 'Illuminate\\Contracts\\Encryption\\Encrypter' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Contracts/Encryption/Encrypter.php', + 'Illuminate\\Contracts\\Events\\Dispatcher' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Contracts/Events/Dispatcher.php', + 'Illuminate\\Contracts\\Filesystem\\Cloud' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Contracts/Filesystem/Cloud.php', + 'Illuminate\\Contracts\\Filesystem\\Factory' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Contracts/Filesystem/Factory.php', + 'Illuminate\\Contracts\\Filesystem\\FileNotFoundException' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Contracts/Filesystem/FileNotFoundException.php', + 'Illuminate\\Contracts\\Filesystem\\Filesystem' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Contracts/Filesystem/Filesystem.php', + 'Illuminate\\Contracts\\Foundation\\Application' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Contracts/Foundation/Application.php', + 'Illuminate\\Contracts\\Hashing\\Hasher' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Contracts/Hashing/Hasher.php', + 'Illuminate\\Contracts\\Http\\Kernel' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Contracts/Http/Kernel.php', + 'Illuminate\\Contracts\\Logging\\Log' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Contracts/Logging/Log.php', + 'Illuminate\\Contracts\\Mail\\MailQueue' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Contracts/Mail/MailQueue.php', + 'Illuminate\\Contracts\\Mail\\Mailable' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Contracts/Mail/Mailable.php', + 'Illuminate\\Contracts\\Mail\\Mailer' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Contracts/Mail/Mailer.php', + 'Illuminate\\Contracts\\Notifications\\Dispatcher' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Contracts/Notifications/Dispatcher.php', + 'Illuminate\\Contracts\\Notifications\\Factory' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Contracts/Notifications/Factory.php', + 'Illuminate\\Contracts\\Pagination\\LengthAwarePaginator' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Contracts/Pagination/LengthAwarePaginator.php', + 'Illuminate\\Contracts\\Pagination\\Paginator' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Contracts/Pagination/Paginator.php', + 'Illuminate\\Contracts\\Pipeline\\Hub' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Contracts/Pipeline/Hub.php', + 'Illuminate\\Contracts\\Pipeline\\Pipeline' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Contracts/Pipeline/Pipeline.php', + 'Illuminate\\Contracts\\Queue\\EntityNotFoundException' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Contracts/Queue/EntityNotFoundException.php', + 'Illuminate\\Contracts\\Queue\\EntityResolver' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Contracts/Queue/EntityResolver.php', + 'Illuminate\\Contracts\\Queue\\Factory' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Contracts/Queue/Factory.php', + 'Illuminate\\Contracts\\Queue\\Job' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Contracts/Queue/Job.php', + 'Illuminate\\Contracts\\Queue\\Monitor' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Contracts/Queue/Monitor.php', + 'Illuminate\\Contracts\\Queue\\Queue' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Contracts/Queue/Queue.php', + 'Illuminate\\Contracts\\Queue\\QueueableCollection' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Contracts/Queue/QueueableCollection.php', + 'Illuminate\\Contracts\\Queue\\QueueableEntity' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Contracts/Queue/QueueableEntity.php', + 'Illuminate\\Contracts\\Queue\\ShouldQueue' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Contracts/Queue/ShouldQueue.php', + 'Illuminate\\Contracts\\Redis\\Factory' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Contracts/Redis/Factory.php', + 'Illuminate\\Contracts\\Redis\\LimiterTimeoutException' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Contracts/Redis/LimiterTimeoutException.php', + 'Illuminate\\Contracts\\Routing\\BindingRegistrar' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Contracts/Routing/BindingRegistrar.php', + 'Illuminate\\Contracts\\Routing\\Registrar' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Contracts/Routing/Registrar.php', + 'Illuminate\\Contracts\\Routing\\ResponseFactory' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Contracts/Routing/ResponseFactory.php', + 'Illuminate\\Contracts\\Routing\\UrlGenerator' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Contracts/Routing/UrlGenerator.php', + 'Illuminate\\Contracts\\Routing\\UrlRoutable' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Contracts/Routing/UrlRoutable.php', + 'Illuminate\\Contracts\\Session\\Session' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Contracts/Session/Session.php', + 'Illuminate\\Contracts\\Support\\Arrayable' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Contracts/Support/Arrayable.php', + 'Illuminate\\Contracts\\Support\\Htmlable' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Contracts/Support/Htmlable.php', + 'Illuminate\\Contracts\\Support\\Jsonable' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Contracts/Support/Jsonable.php', + 'Illuminate\\Contracts\\Support\\MessageBag' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Contracts/Support/MessageBag.php', + 'Illuminate\\Contracts\\Support\\MessageProvider' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Contracts/Support/MessageProvider.php', + 'Illuminate\\Contracts\\Support\\Renderable' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Contracts/Support/Renderable.php', + 'Illuminate\\Contracts\\Support\\Responsable' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Contracts/Support/Responsable.php', + 'Illuminate\\Contracts\\Translation\\Loader' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Contracts/Translation/Loader.php', + 'Illuminate\\Contracts\\Translation\\Translator' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Contracts/Translation/Translator.php', + 'Illuminate\\Contracts\\Validation\\Factory' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Contracts/Validation/Factory.php', + 'Illuminate\\Contracts\\Validation\\ImplicitRule' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Contracts/Validation/ImplicitRule.php', + 'Illuminate\\Contracts\\Validation\\Rule' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Contracts/Validation/Rule.php', + 'Illuminate\\Contracts\\Validation\\ValidatesWhenResolved' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Contracts/Validation/ValidatesWhenResolved.php', + 'Illuminate\\Contracts\\Validation\\Validator' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Contracts/Validation/Validator.php', + 'Illuminate\\Contracts\\View\\Engine' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Contracts/View/Engine.php', + 'Illuminate\\Contracts\\View\\Factory' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Contracts/View/Factory.php', + 'Illuminate\\Contracts\\View\\View' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Contracts/View/View.php', + 'Illuminate\\Cookie\\CookieJar' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Cookie/CookieJar.php', + 'Illuminate\\Cookie\\CookieServiceProvider' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Cookie/CookieServiceProvider.php', + 'Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php', + 'Illuminate\\Cookie\\Middleware\\EncryptCookies' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php', + 'Illuminate\\Database\\Capsule\\Manager' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Database/Capsule/Manager.php', + 'Illuminate\\Database\\Concerns\\BuildsQueries' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Database/Concerns/BuildsQueries.php', + 'Illuminate\\Database\\Concerns\\ManagesTransactions' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Database/Concerns/ManagesTransactions.php', + 'Illuminate\\Database\\Connection' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Database/Connection.php', + 'Illuminate\\Database\\ConnectionInterface' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Database/ConnectionInterface.php', + 'Illuminate\\Database\\ConnectionResolver' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Database/ConnectionResolver.php', + 'Illuminate\\Database\\ConnectionResolverInterface' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Database/ConnectionResolverInterface.php', + 'Illuminate\\Database\\Connectors\\ConnectionFactory' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Database/Connectors/ConnectionFactory.php', + 'Illuminate\\Database\\Connectors\\Connector' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Database/Connectors/Connector.php', + 'Illuminate\\Database\\Connectors\\ConnectorInterface' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Database/Connectors/ConnectorInterface.php', + 'Illuminate\\Database\\Connectors\\MySqlConnector' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Database/Connectors/MySqlConnector.php', + 'Illuminate\\Database\\Connectors\\PostgresConnector' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Database/Connectors/PostgresConnector.php', + 'Illuminate\\Database\\Connectors\\SQLiteConnector' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Database/Connectors/SQLiteConnector.php', + 'Illuminate\\Database\\Connectors\\SqlServerConnector' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Database/Connectors/SqlServerConnector.php', + 'Illuminate\\Database\\Console\\Factories\\FactoryMakeCommand' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Database/Console/Factories/FactoryMakeCommand.php', + 'Illuminate\\Database\\Console\\Migrations\\BaseCommand' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Database/Console/Migrations/BaseCommand.php', + 'Illuminate\\Database\\Console\\Migrations\\FreshCommand' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Database/Console/Migrations/FreshCommand.php', + 'Illuminate\\Database\\Console\\Migrations\\InstallCommand' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Database/Console/Migrations/InstallCommand.php', + 'Illuminate\\Database\\Console\\Migrations\\MigrateCommand' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Database/Console/Migrations/MigrateCommand.php', + 'Illuminate\\Database\\Console\\Migrations\\MigrateMakeCommand' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Database/Console/Migrations/MigrateMakeCommand.php', + 'Illuminate\\Database\\Console\\Migrations\\RefreshCommand' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Database/Console/Migrations/RefreshCommand.php', + 'Illuminate\\Database\\Console\\Migrations\\ResetCommand' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Database/Console/Migrations/ResetCommand.php', + 'Illuminate\\Database\\Console\\Migrations\\RollbackCommand' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Database/Console/Migrations/RollbackCommand.php', + 'Illuminate\\Database\\Console\\Migrations\\StatusCommand' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Database/Console/Migrations/StatusCommand.php', + 'Illuminate\\Database\\Console\\Seeds\\SeedCommand' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Database/Console/Seeds/SeedCommand.php', + 'Illuminate\\Database\\Console\\Seeds\\SeederMakeCommand' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Database/Console/Seeds/SeederMakeCommand.php', + 'Illuminate\\Database\\DatabaseManager' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Database/DatabaseManager.php', + 'Illuminate\\Database\\DatabaseServiceProvider' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Database/DatabaseServiceProvider.php', + 'Illuminate\\Database\\DetectsDeadlocks' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Database/DetectsDeadlocks.php', + 'Illuminate\\Database\\DetectsLostConnections' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Database/DetectsLostConnections.php', + 'Illuminate\\Database\\Eloquent\\Builder' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Database/Eloquent/Builder.php', + 'Illuminate\\Database\\Eloquent\\Collection' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Database/Eloquent/Collection.php', + 'Illuminate\\Database\\Eloquent\\Concerns\\GuardsAttributes' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Database/Eloquent/Concerns/GuardsAttributes.php', + 'Illuminate\\Database\\Eloquent\\Concerns\\HasAttributes' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Database/Eloquent/Concerns/HasAttributes.php', + 'Illuminate\\Database\\Eloquent\\Concerns\\HasEvents' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Database/Eloquent/Concerns/HasEvents.php', + 'Illuminate\\Database\\Eloquent\\Concerns\\HasGlobalScopes' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Database/Eloquent/Concerns/HasGlobalScopes.php', + 'Illuminate\\Database\\Eloquent\\Concerns\\HasRelationships' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Database/Eloquent/Concerns/HasRelationships.php', + 'Illuminate\\Database\\Eloquent\\Concerns\\HasTimestamps' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Database/Eloquent/Concerns/HasTimestamps.php', + 'Illuminate\\Database\\Eloquent\\Concerns\\HidesAttributes' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Database/Eloquent/Concerns/HidesAttributes.php', + 'Illuminate\\Database\\Eloquent\\Concerns\\QueriesRelationships' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Database/Eloquent/Concerns/QueriesRelationships.php', + 'Illuminate\\Database\\Eloquent\\Factory' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Database/Eloquent/Factory.php', + 'Illuminate\\Database\\Eloquent\\FactoryBuilder' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Database/Eloquent/FactoryBuilder.php', + 'Illuminate\\Database\\Eloquent\\JsonEncodingException' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Database/Eloquent/JsonEncodingException.php', + 'Illuminate\\Database\\Eloquent\\MassAssignmentException' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Database/Eloquent/MassAssignmentException.php', + 'Illuminate\\Database\\Eloquent\\Model' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Database/Eloquent/Model.php', + 'Illuminate\\Database\\Eloquent\\ModelNotFoundException' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Database/Eloquent/ModelNotFoundException.php', + 'Illuminate\\Database\\Eloquent\\QueueEntityResolver' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Database/Eloquent/QueueEntityResolver.php', + 'Illuminate\\Database\\Eloquent\\RelationNotFoundException' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Database/Eloquent/RelationNotFoundException.php', + 'Illuminate\\Database\\Eloquent\\Relations\\BelongsTo' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Database/Eloquent/Relations/BelongsTo.php', + 'Illuminate\\Database\\Eloquent\\Relations\\BelongsToMany' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Database/Eloquent/Relations/BelongsToMany.php', + 'Illuminate\\Database\\Eloquent\\Relations\\Concerns\\InteractsWithPivotTable' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Database/Eloquent/Relations/Concerns/InteractsWithPivotTable.php', + 'Illuminate\\Database\\Eloquent\\Relations\\Concerns\\SupportsDefaultModels' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Database/Eloquent/Relations/Concerns/SupportsDefaultModels.php', + 'Illuminate\\Database\\Eloquent\\Relations\\HasMany' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Database/Eloquent/Relations/HasMany.php', + 'Illuminate\\Database\\Eloquent\\Relations\\HasManyThrough' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Database/Eloquent/Relations/HasManyThrough.php', + 'Illuminate\\Database\\Eloquent\\Relations\\HasOne' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Database/Eloquent/Relations/HasOne.php', + 'Illuminate\\Database\\Eloquent\\Relations\\HasOneOrMany' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Database/Eloquent/Relations/HasOneOrMany.php', + 'Illuminate\\Database\\Eloquent\\Relations\\MorphMany' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Database/Eloquent/Relations/MorphMany.php', + 'Illuminate\\Database\\Eloquent\\Relations\\MorphOne' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Database/Eloquent/Relations/MorphOne.php', + 'Illuminate\\Database\\Eloquent\\Relations\\MorphOneOrMany' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Database/Eloquent/Relations/MorphOneOrMany.php', + 'Illuminate\\Database\\Eloquent\\Relations\\MorphPivot' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Database/Eloquent/Relations/MorphPivot.php', + 'Illuminate\\Database\\Eloquent\\Relations\\MorphTo' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Database/Eloquent/Relations/MorphTo.php', + 'Illuminate\\Database\\Eloquent\\Relations\\MorphToMany' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Database/Eloquent/Relations/MorphToMany.php', + 'Illuminate\\Database\\Eloquent\\Relations\\Pivot' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Database/Eloquent/Relations/Pivot.php', + 'Illuminate\\Database\\Eloquent\\Relations\\Relation' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Database/Eloquent/Relations/Relation.php', + 'Illuminate\\Database\\Eloquent\\Scope' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Database/Eloquent/Scope.php', + 'Illuminate\\Database\\Eloquent\\SoftDeletes' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Database/Eloquent/SoftDeletes.php', + 'Illuminate\\Database\\Eloquent\\SoftDeletingScope' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Database/Eloquent/SoftDeletingScope.php', + 'Illuminate\\Database\\Events\\ConnectionEvent' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Database/Events/ConnectionEvent.php', + 'Illuminate\\Database\\Events\\QueryExecuted' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Database/Events/QueryExecuted.php', + 'Illuminate\\Database\\Events\\StatementPrepared' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Database/Events/StatementPrepared.php', + 'Illuminate\\Database\\Events\\TransactionBeginning' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Database/Events/TransactionBeginning.php', + 'Illuminate\\Database\\Events\\TransactionCommitted' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Database/Events/TransactionCommitted.php', + 'Illuminate\\Database\\Events\\TransactionRolledBack' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Database/Events/TransactionRolledBack.php', + 'Illuminate\\Database\\Grammar' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Database/Grammar.php', + 'Illuminate\\Database\\MigrationServiceProvider' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Database/MigrationServiceProvider.php', + 'Illuminate\\Database\\Migrations\\DatabaseMigrationRepository' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Database/Migrations/DatabaseMigrationRepository.php', + 'Illuminate\\Database\\Migrations\\Migration' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Database/Migrations/Migration.php', + 'Illuminate\\Database\\Migrations\\MigrationCreator' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Database/Migrations/MigrationCreator.php', + 'Illuminate\\Database\\Migrations\\MigrationRepositoryInterface' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Database/Migrations/MigrationRepositoryInterface.php', + 'Illuminate\\Database\\Migrations\\Migrator' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php', + 'Illuminate\\Database\\MySqlConnection' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Database/MySqlConnection.php', + 'Illuminate\\Database\\PostgresConnection' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Database/PostgresConnection.php', + 'Illuminate\\Database\\QueryException' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Database/QueryException.php', + 'Illuminate\\Database\\Query\\Builder' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Database/Query/Builder.php', + 'Illuminate\\Database\\Query\\Expression' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Database/Query/Expression.php', + 'Illuminate\\Database\\Query\\Grammars\\Grammar' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Database/Query/Grammars/Grammar.php', + 'Illuminate\\Database\\Query\\Grammars\\MySqlGrammar' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Database/Query/Grammars/MySqlGrammar.php', + 'Illuminate\\Database\\Query\\Grammars\\PostgresGrammar' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Database/Query/Grammars/PostgresGrammar.php', + 'Illuminate\\Database\\Query\\Grammars\\SQLiteGrammar' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Database/Query/Grammars/SQLiteGrammar.php', + 'Illuminate\\Database\\Query\\Grammars\\SqlServerGrammar' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Database/Query/Grammars/SqlServerGrammar.php', + 'Illuminate\\Database\\Query\\JoinClause' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Database/Query/JoinClause.php', + 'Illuminate\\Database\\Query\\JsonExpression' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Database/Query/JsonExpression.php', + 'Illuminate\\Database\\Query\\Processors\\MySqlProcessor' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Database/Query/Processors/MySqlProcessor.php', + 'Illuminate\\Database\\Query\\Processors\\PostgresProcessor' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Database/Query/Processors/PostgresProcessor.php', + 'Illuminate\\Database\\Query\\Processors\\Processor' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Database/Query/Processors/Processor.php', + 'Illuminate\\Database\\Query\\Processors\\SQLiteProcessor' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Database/Query/Processors/SQLiteProcessor.php', + 'Illuminate\\Database\\Query\\Processors\\SqlServerProcessor' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Database/Query/Processors/SqlServerProcessor.php', + 'Illuminate\\Database\\SQLiteConnection' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Database/SQLiteConnection.php', + 'Illuminate\\Database\\Schema\\Blueprint' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Database/Schema/Blueprint.php', + 'Illuminate\\Database\\Schema\\Builder' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Database/Schema/Builder.php', + 'Illuminate\\Database\\Schema\\Grammars\\ChangeColumn' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Database/Schema/Grammars/ChangeColumn.php', + 'Illuminate\\Database\\Schema\\Grammars\\Grammar' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Database/Schema/Grammars/Grammar.php', + 'Illuminate\\Database\\Schema\\Grammars\\MySqlGrammar' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Database/Schema/Grammars/MySqlGrammar.php', + 'Illuminate\\Database\\Schema\\Grammars\\PostgresGrammar' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Database/Schema/Grammars/PostgresGrammar.php', + 'Illuminate\\Database\\Schema\\Grammars\\RenameColumn' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Database/Schema/Grammars/RenameColumn.php', + 'Illuminate\\Database\\Schema\\Grammars\\SQLiteGrammar' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Database/Schema/Grammars/SQLiteGrammar.php', + 'Illuminate\\Database\\Schema\\Grammars\\SqlServerGrammar' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Database/Schema/Grammars/SqlServerGrammar.php', + 'Illuminate\\Database\\Schema\\MySqlBuilder' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Database/Schema/MySqlBuilder.php', + 'Illuminate\\Database\\Schema\\PostgresBuilder' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Database/Schema/PostgresBuilder.php', + 'Illuminate\\Database\\Schema\\SQLiteBuilder' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Database/Schema/SQLiteBuilder.php', + 'Illuminate\\Database\\Schema\\SqlServerBuilder' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Database/Schema/SqlServerBuilder.php', + 'Illuminate\\Database\\Seeder' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Database/Seeder.php', + 'Illuminate\\Database\\SqlServerConnection' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Database/SqlServerConnection.php', + 'Illuminate\\Encryption\\Encrypter' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Encryption/Encrypter.php', + 'Illuminate\\Encryption\\EncryptionServiceProvider' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Encryption/EncryptionServiceProvider.php', + 'Illuminate\\Events\\CallQueuedListener' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Events/CallQueuedListener.php', + 'Illuminate\\Events\\Dispatcher' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Events/Dispatcher.php', + 'Illuminate\\Events\\EventServiceProvider' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Events/EventServiceProvider.php', + 'Illuminate\\Filesystem\\Filesystem' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Filesystem/Filesystem.php', + 'Illuminate\\Filesystem\\FilesystemAdapter' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Filesystem/FilesystemAdapter.php', + 'Illuminate\\Filesystem\\FilesystemManager' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Filesystem/FilesystemManager.php', + 'Illuminate\\Filesystem\\FilesystemServiceProvider' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Filesystem/FilesystemServiceProvider.php', + 'Illuminate\\Foundation\\AliasLoader' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Foundation/AliasLoader.php', + 'Illuminate\\Foundation\\Application' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Foundation/Application.php', + 'Illuminate\\Foundation\\Auth\\Access\\Authorizable' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Foundation/Auth/Access/Authorizable.php', + 'Illuminate\\Foundation\\Auth\\Access\\AuthorizesRequests' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Foundation/Auth/Access/AuthorizesRequests.php', + 'Illuminate\\Foundation\\Auth\\AuthenticatesUsers' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Foundation/Auth/AuthenticatesUsers.php', + 'Illuminate\\Foundation\\Auth\\RedirectsUsers' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Foundation/Auth/RedirectsUsers.php', + 'Illuminate\\Foundation\\Auth\\RegistersUsers' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Foundation/Auth/RegistersUsers.php', + 'Illuminate\\Foundation\\Auth\\ResetsPasswords' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Foundation/Auth/ResetsPasswords.php', + 'Illuminate\\Foundation\\Auth\\SendsPasswordResetEmails' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Foundation/Auth/SendsPasswordResetEmails.php', + 'Illuminate\\Foundation\\Auth\\ThrottlesLogins' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Foundation/Auth/ThrottlesLogins.php', + 'Illuminate\\Foundation\\Auth\\User' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Foundation/Auth/User.php', + 'Illuminate\\Foundation\\Bootstrap\\BootProviders' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php', + 'Illuminate\\Foundation\\Bootstrap\\HandleExceptions' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Foundation/Bootstrap/HandleExceptions.php', + 'Illuminate\\Foundation\\Bootstrap\\LoadConfiguration' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Foundation/Bootstrap/LoadConfiguration.php', + 'Illuminate\\Foundation\\Bootstrap\\LoadEnvironmentVariables' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Foundation/Bootstrap/LoadEnvironmentVariables.php', + 'Illuminate\\Foundation\\Bootstrap\\RegisterFacades' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Foundation/Bootstrap/RegisterFacades.php', + 'Illuminate\\Foundation\\Bootstrap\\RegisterProviders' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Foundation/Bootstrap/RegisterProviders.php', + 'Illuminate\\Foundation\\Bootstrap\\SetRequestForConsole' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Foundation/Bootstrap/SetRequestForConsole.php', + 'Illuminate\\Foundation\\Bus\\Dispatchable' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Foundation/Bus/Dispatchable.php', + 'Illuminate\\Foundation\\Bus\\DispatchesJobs' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Foundation/Bus/DispatchesJobs.php', + 'Illuminate\\Foundation\\Bus\\PendingChain' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Foundation/Bus/PendingChain.php', + 'Illuminate\\Foundation\\Bus\\PendingDispatch' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Foundation/Bus/PendingDispatch.php', + 'Illuminate\\Foundation\\ComposerScripts' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Foundation/ComposerScripts.php', + 'Illuminate\\Foundation\\Console\\AppNameCommand' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Foundation/Console/AppNameCommand.php', + 'Illuminate\\Foundation\\Console\\ClearCompiledCommand' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Foundation/Console/ClearCompiledCommand.php', + 'Illuminate\\Foundation\\Console\\ClosureCommand' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Foundation/Console/ClosureCommand.php', + 'Illuminate\\Foundation\\Console\\ConfigCacheCommand' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Foundation/Console/ConfigCacheCommand.php', + 'Illuminate\\Foundation\\Console\\ConfigClearCommand' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Foundation/Console/ConfigClearCommand.php', + 'Illuminate\\Foundation\\Console\\ConsoleMakeCommand' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Foundation/Console/ConsoleMakeCommand.php', + 'Illuminate\\Foundation\\Console\\DownCommand' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Foundation/Console/DownCommand.php', + 'Illuminate\\Foundation\\Console\\EnvironmentCommand' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Foundation/Console/EnvironmentCommand.php', + 'Illuminate\\Foundation\\Console\\EventGenerateCommand' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Foundation/Console/EventGenerateCommand.php', + 'Illuminate\\Foundation\\Console\\EventMakeCommand' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Foundation/Console/EventMakeCommand.php', + 'Illuminate\\Foundation\\Console\\JobMakeCommand' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Foundation/Console/JobMakeCommand.php', + 'Illuminate\\Foundation\\Console\\Kernel' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php', + 'Illuminate\\Foundation\\Console\\KeyGenerateCommand' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Foundation/Console/KeyGenerateCommand.php', + 'Illuminate\\Foundation\\Console\\ListenerMakeCommand' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Foundation/Console/ListenerMakeCommand.php', + 'Illuminate\\Foundation\\Console\\MailMakeCommand' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Foundation/Console/MailMakeCommand.php', + 'Illuminate\\Foundation\\Console\\ModelMakeCommand' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Foundation/Console/ModelMakeCommand.php', + 'Illuminate\\Foundation\\Console\\NotificationMakeCommand' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Foundation/Console/NotificationMakeCommand.php', + 'Illuminate\\Foundation\\Console\\OptimizeCommand' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Foundation/Console/OptimizeCommand.php', + 'Illuminate\\Foundation\\Console\\PackageDiscoverCommand' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Foundation/Console/PackageDiscoverCommand.php', + 'Illuminate\\Foundation\\Console\\PolicyMakeCommand' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Foundation/Console/PolicyMakeCommand.php', + 'Illuminate\\Foundation\\Console\\PresetCommand' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Foundation/Console/PresetCommand.php', + 'Illuminate\\Foundation\\Console\\Presets\\Bootstrap' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Foundation/Console/Presets/Bootstrap.php', + 'Illuminate\\Foundation\\Console\\Presets\\None' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Foundation/Console/Presets/None.php', + 'Illuminate\\Foundation\\Console\\Presets\\Preset' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Foundation/Console/Presets/Preset.php', + 'Illuminate\\Foundation\\Console\\Presets\\React' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Foundation/Console/Presets/React.php', + 'Illuminate\\Foundation\\Console\\Presets\\Vue' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Foundation/Console/Presets/Vue.php', + 'Illuminate\\Foundation\\Console\\ProviderMakeCommand' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Foundation/Console/ProviderMakeCommand.php', + 'Illuminate\\Foundation\\Console\\QueuedCommand' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Foundation/Console/QueuedCommand.php', + 'Illuminate\\Foundation\\Console\\RequestMakeCommand' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Foundation/Console/RequestMakeCommand.php', + 'Illuminate\\Foundation\\Console\\ResourceMakeCommand' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Foundation/Console/ResourceMakeCommand.php', + 'Illuminate\\Foundation\\Console\\RouteCacheCommand' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Foundation/Console/RouteCacheCommand.php', + 'Illuminate\\Foundation\\Console\\RouteClearCommand' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Foundation/Console/RouteClearCommand.php', + 'Illuminate\\Foundation\\Console\\RouteListCommand' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Foundation/Console/RouteListCommand.php', + 'Illuminate\\Foundation\\Console\\RuleMakeCommand' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Foundation/Console/RuleMakeCommand.php', + 'Illuminate\\Foundation\\Console\\ServeCommand' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Foundation/Console/ServeCommand.php', + 'Illuminate\\Foundation\\Console\\StorageLinkCommand' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Foundation/Console/StorageLinkCommand.php', + 'Illuminate\\Foundation\\Console\\TestMakeCommand' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Foundation/Console/TestMakeCommand.php', + 'Illuminate\\Foundation\\Console\\UpCommand' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Foundation/Console/UpCommand.php', + 'Illuminate\\Foundation\\Console\\VendorPublishCommand' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Foundation/Console/VendorPublishCommand.php', + 'Illuminate\\Foundation\\Console\\ViewClearCommand' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Foundation/Console/ViewClearCommand.php', + 'Illuminate\\Foundation\\EnvironmentDetector' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Foundation/EnvironmentDetector.php', + 'Illuminate\\Foundation\\Events\\Dispatchable' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Foundation/Events/Dispatchable.php', + 'Illuminate\\Foundation\\Events\\LocaleUpdated' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Foundation/Events/LocaleUpdated.php', + 'Illuminate\\Foundation\\Exceptions\\Handler' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php', + 'Illuminate\\Foundation\\Http\\Events\\RequestHandled' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Foundation/Http/Events/RequestHandled.php', + 'Illuminate\\Foundation\\Http\\Exceptions\\MaintenanceModeException' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Foundation/Http/Exceptions/MaintenanceModeException.php', + 'Illuminate\\Foundation\\Http\\FormRequest' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Foundation/Http/FormRequest.php', + 'Illuminate\\Foundation\\Http\\Kernel' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php', + 'Illuminate\\Foundation\\Http\\Middleware\\CheckForMaintenanceMode' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Foundation/Http/Middleware/CheckForMaintenanceMode.php', + 'Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php', + 'Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php', + 'Illuminate\\Foundation\\Http\\Middleware\\TrimStrings' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php', + 'Illuminate\\Foundation\\Http\\Middleware\\ValidatePostSize' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ValidatePostSize.php', + 'Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php', + 'Illuminate\\Foundation\\Inspiring' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Foundation/Inspiring.php', + 'Illuminate\\Foundation\\PackageManifest' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Foundation/PackageManifest.php', + 'Illuminate\\Foundation\\ProviderRepository' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Foundation/ProviderRepository.php', + 'Illuminate\\Foundation\\Providers\\ArtisanServiceProvider' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Foundation/Providers/ArtisanServiceProvider.php', + 'Illuminate\\Foundation\\Providers\\ComposerServiceProvider' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Foundation/Providers/ComposerServiceProvider.php', + 'Illuminate\\Foundation\\Providers\\ConsoleSupportServiceProvider' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Foundation/Providers/ConsoleSupportServiceProvider.php', + 'Illuminate\\Foundation\\Providers\\FormRequestServiceProvider' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Foundation/Providers/FormRequestServiceProvider.php', + 'Illuminate\\Foundation\\Providers\\FoundationServiceProvider' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Foundation/Providers/FoundationServiceProvider.php', + 'Illuminate\\Foundation\\Support\\Providers\\AuthServiceProvider' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Foundation/Support/Providers/AuthServiceProvider.php', + 'Illuminate\\Foundation\\Support\\Providers\\EventServiceProvider' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Foundation/Support/Providers/EventServiceProvider.php', + 'Illuminate\\Foundation\\Support\\Providers\\RouteServiceProvider' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Foundation/Support/Providers/RouteServiceProvider.php', + 'Illuminate\\Foundation\\Testing\\Concerns\\InteractsWithAuthentication' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Foundation/Testing/Concerns/InteractsWithAuthentication.php', + 'Illuminate\\Foundation\\Testing\\Concerns\\InteractsWithConsole' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Foundation/Testing/Concerns/InteractsWithConsole.php', + 'Illuminate\\Foundation\\Testing\\Concerns\\InteractsWithContainer' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Foundation/Testing/Concerns/InteractsWithContainer.php', + 'Illuminate\\Foundation\\Testing\\Concerns\\InteractsWithDatabase' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Foundation/Testing/Concerns/InteractsWithDatabase.php', + 'Illuminate\\Foundation\\Testing\\Concerns\\InteractsWithExceptionHandling' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Foundation/Testing/Concerns/InteractsWithExceptionHandling.php', + 'Illuminate\\Foundation\\Testing\\Concerns\\InteractsWithSession' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Foundation/Testing/Concerns/InteractsWithSession.php', + 'Illuminate\\Foundation\\Testing\\Concerns\\MakesHttpRequests' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Foundation/Testing/Concerns/MakesHttpRequests.php', + 'Illuminate\\Foundation\\Testing\\Concerns\\MocksApplicationServices' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Foundation/Testing/Concerns/MocksApplicationServices.php', + 'Illuminate\\Foundation\\Testing\\Constraints\\HasInDatabase' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Foundation/Testing/Constraints/HasInDatabase.php', + 'Illuminate\\Foundation\\Testing\\Constraints\\SoftDeletedInDatabase' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Foundation/Testing/Constraints/SoftDeletedInDatabase.php', + 'Illuminate\\Foundation\\Testing\\DatabaseMigrations' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Foundation/Testing/DatabaseMigrations.php', + 'Illuminate\\Foundation\\Testing\\DatabaseTransactions' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Foundation/Testing/DatabaseTransactions.php', + 'Illuminate\\Foundation\\Testing\\HttpException' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Foundation/Testing/HttpException.php', + 'Illuminate\\Foundation\\Testing\\RefreshDatabase' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Foundation/Testing/RefreshDatabase.php', + 'Illuminate\\Foundation\\Testing\\RefreshDatabaseState' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Foundation/Testing/RefreshDatabaseState.php', + 'Illuminate\\Foundation\\Testing\\TestCase' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Foundation/Testing/TestCase.php', + 'Illuminate\\Foundation\\Testing\\TestResponse' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Foundation/Testing/TestResponse.php', + 'Illuminate\\Foundation\\Testing\\WithoutEvents' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Foundation/Testing/WithoutEvents.php', + 'Illuminate\\Foundation\\Testing\\WithoutMiddleware' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Foundation/Testing/WithoutMiddleware.php', + 'Illuminate\\Foundation\\Validation\\ValidatesRequests' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Foundation/Validation/ValidatesRequests.php', + 'Illuminate\\Hashing\\BcryptHasher' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Hashing/BcryptHasher.php', + 'Illuminate\\Hashing\\HashServiceProvider' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Hashing/HashServiceProvider.php', + 'Illuminate\\Http\\Concerns\\InteractsWithContentTypes' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Http/Concerns/InteractsWithContentTypes.php', + 'Illuminate\\Http\\Concerns\\InteractsWithFlashData' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Http/Concerns/InteractsWithFlashData.php', + 'Illuminate\\Http\\Concerns\\InteractsWithInput' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Http/Concerns/InteractsWithInput.php', + 'Illuminate\\Http\\Exceptions\\HttpResponseException' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Http/Exceptions/HttpResponseException.php', + 'Illuminate\\Http\\Exceptions\\PostTooLargeException' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Http/Exceptions/PostTooLargeException.php', + 'Illuminate\\Http\\File' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Http/File.php', + 'Illuminate\\Http\\FileHelpers' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Http/FileHelpers.php', + 'Illuminate\\Http\\JsonResponse' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Http/JsonResponse.php', + 'Illuminate\\Http\\Middleware\\CheckResponseForModifications' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Http/Middleware/CheckResponseForModifications.php', + 'Illuminate\\Http\\Middleware\\FrameGuard' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Http/Middleware/FrameGuard.php', + 'Illuminate\\Http\\RedirectResponse' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Http/RedirectResponse.php', + 'Illuminate\\Http\\Request' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Http/Request.php', + 'Illuminate\\Http\\Resources\\CollectsResources' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Http/Resources/CollectsResources.php', + 'Illuminate\\Http\\Resources\\DelegatesToResource' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Http/Resources/DelegatesToResource.php', + 'Illuminate\\Http\\Resources\\Json\\PaginatedResourceResponse' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Http/Resources/Json/PaginatedResourceResponse.php', + 'Illuminate\\Http\\Resources\\Json\\Resource' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Http/Resources/Json/Resource.php', + 'Illuminate\\Http\\Resources\\Json\\ResourceCollection' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Http/Resources/Json/ResourceCollection.php', + 'Illuminate\\Http\\Resources\\Json\\ResourceResponse' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Http/Resources/Json/ResourceResponse.php', + 'Illuminate\\Http\\Resources\\MergeValue' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Http/Resources/MergeValue.php', + 'Illuminate\\Http\\Resources\\MissingValue' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Http/Resources/MissingValue.php', + 'Illuminate\\Http\\Response' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Http/Response.php', + 'Illuminate\\Http\\ResponseTrait' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Http/ResponseTrait.php', + 'Illuminate\\Http\\Testing\\File' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Http/Testing/File.php', + 'Illuminate\\Http\\Testing\\FileFactory' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Http/Testing/FileFactory.php', + 'Illuminate\\Http\\Testing\\MimeType' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Http/Testing/MimeType.php', + 'Illuminate\\Http\\UploadedFile' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Http/UploadedFile.php', + 'Illuminate\\Log\\Events\\MessageLogged' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Log/Events/MessageLogged.php', + 'Illuminate\\Log\\LogServiceProvider' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Log/LogServiceProvider.php', + 'Illuminate\\Log\\Writer' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Log/Writer.php', + 'Illuminate\\Mail\\Events\\MessageSending' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Mail/Events/MessageSending.php', + 'Illuminate\\Mail\\Events\\MessageSent' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Mail/Events/MessageSent.php', + 'Illuminate\\Mail\\MailServiceProvider' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Mail/MailServiceProvider.php', + 'Illuminate\\Mail\\Mailable' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Mail/Mailable.php', + 'Illuminate\\Mail\\Mailer' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Mail/Mailer.php', + 'Illuminate\\Mail\\Markdown' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Mail/Markdown.php', + 'Illuminate\\Mail\\Message' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Mail/Message.php', + 'Illuminate\\Mail\\PendingMail' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Mail/PendingMail.php', + 'Illuminate\\Mail\\SendQueuedMailable' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Mail/SendQueuedMailable.php', + 'Illuminate\\Mail\\TransportManager' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Mail/TransportManager.php', + 'Illuminate\\Mail\\Transport\\ArrayTransport' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Mail/Transport/ArrayTransport.php', + 'Illuminate\\Mail\\Transport\\LogTransport' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Mail/Transport/LogTransport.php', + 'Illuminate\\Mail\\Transport\\MailgunTransport' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Mail/Transport/MailgunTransport.php', + 'Illuminate\\Mail\\Transport\\MandrillTransport' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Mail/Transport/MandrillTransport.php', + 'Illuminate\\Mail\\Transport\\SesTransport' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Mail/Transport/SesTransport.php', + 'Illuminate\\Mail\\Transport\\SparkPostTransport' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Mail/Transport/SparkPostTransport.php', + 'Illuminate\\Mail\\Transport\\Transport' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Mail/Transport/Transport.php', + 'Illuminate\\Notifications\\Action' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Notifications/Action.php', + 'Illuminate\\Notifications\\AnonymousNotifiable' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Notifications/AnonymousNotifiable.php', + 'Illuminate\\Notifications\\ChannelManager' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Notifications/ChannelManager.php', + 'Illuminate\\Notifications\\Channels\\BroadcastChannel' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Notifications/Channels/BroadcastChannel.php', + 'Illuminate\\Notifications\\Channels\\DatabaseChannel' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Notifications/Channels/DatabaseChannel.php', + 'Illuminate\\Notifications\\Channels\\MailChannel' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Notifications/Channels/MailChannel.php', + 'Illuminate\\Notifications\\Channels\\NexmoSmsChannel' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Notifications/Channels/NexmoSmsChannel.php', + 'Illuminate\\Notifications\\Channels\\SlackWebhookChannel' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Notifications/Channels/SlackWebhookChannel.php', + 'Illuminate\\Notifications\\Console\\NotificationTableCommand' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Notifications/Console/NotificationTableCommand.php', + 'Illuminate\\Notifications\\DatabaseNotification' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Notifications/DatabaseNotification.php', + 'Illuminate\\Notifications\\DatabaseNotificationCollection' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Notifications/DatabaseNotificationCollection.php', + 'Illuminate\\Notifications\\Events\\BroadcastNotificationCreated' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Notifications/Events/BroadcastNotificationCreated.php', + 'Illuminate\\Notifications\\Events\\NotificationFailed' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Notifications/Events/NotificationFailed.php', + 'Illuminate\\Notifications\\Events\\NotificationSending' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Notifications/Events/NotificationSending.php', + 'Illuminate\\Notifications\\Events\\NotificationSent' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Notifications/Events/NotificationSent.php', + 'Illuminate\\Notifications\\HasDatabaseNotifications' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Notifications/HasDatabaseNotifications.php', + 'Illuminate\\Notifications\\Messages\\BroadcastMessage' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Notifications/Messages/BroadcastMessage.php', + 'Illuminate\\Notifications\\Messages\\DatabaseMessage' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Notifications/Messages/DatabaseMessage.php', + 'Illuminate\\Notifications\\Messages\\MailMessage' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Notifications/Messages/MailMessage.php', + 'Illuminate\\Notifications\\Messages\\NexmoMessage' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Notifications/Messages/NexmoMessage.php', + 'Illuminate\\Notifications\\Messages\\SimpleMessage' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Notifications/Messages/SimpleMessage.php', + 'Illuminate\\Notifications\\Messages\\SlackAttachment' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Notifications/Messages/SlackAttachment.php', + 'Illuminate\\Notifications\\Messages\\SlackAttachmentField' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Notifications/Messages/SlackAttachmentField.php', + 'Illuminate\\Notifications\\Messages\\SlackMessage' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Notifications/Messages/SlackMessage.php', + 'Illuminate\\Notifications\\Notifiable' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Notifications/Notifiable.php', + 'Illuminate\\Notifications\\Notification' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Notifications/Notification.php', + 'Illuminate\\Notifications\\NotificationSender' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Notifications/NotificationSender.php', + 'Illuminate\\Notifications\\NotificationServiceProvider' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Notifications/NotificationServiceProvider.php', + 'Illuminate\\Notifications\\RoutesNotifications' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Notifications/RoutesNotifications.php', + 'Illuminate\\Notifications\\SendQueuedNotifications' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Notifications/SendQueuedNotifications.php', + 'Illuminate\\Pagination\\AbstractPaginator' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Pagination/AbstractPaginator.php', + 'Illuminate\\Pagination\\LengthAwarePaginator' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Pagination/LengthAwarePaginator.php', + 'Illuminate\\Pagination\\PaginationServiceProvider' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Pagination/PaginationServiceProvider.php', + 'Illuminate\\Pagination\\Paginator' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Pagination/Paginator.php', + 'Illuminate\\Pagination\\UrlWindow' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Pagination/UrlWindow.php', + 'Illuminate\\Pipeline\\Hub' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Pipeline/Hub.php', + 'Illuminate\\Pipeline\\Pipeline' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Pipeline/Pipeline.php', + 'Illuminate\\Pipeline\\PipelineServiceProvider' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Pipeline/PipelineServiceProvider.php', + 'Illuminate\\Queue\\BeanstalkdQueue' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Queue/BeanstalkdQueue.php', + 'Illuminate\\Queue\\CallQueuedHandler' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php', + 'Illuminate\\Queue\\Capsule\\Manager' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Queue/Capsule/Manager.php', + 'Illuminate\\Queue\\Connectors\\BeanstalkdConnector' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Queue/Connectors/BeanstalkdConnector.php', + 'Illuminate\\Queue\\Connectors\\ConnectorInterface' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Queue/Connectors/ConnectorInterface.php', + 'Illuminate\\Queue\\Connectors\\DatabaseConnector' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Queue/Connectors/DatabaseConnector.php', + 'Illuminate\\Queue\\Connectors\\NullConnector' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Queue/Connectors/NullConnector.php', + 'Illuminate\\Queue\\Connectors\\RedisConnector' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Queue/Connectors/RedisConnector.php', + 'Illuminate\\Queue\\Connectors\\SqsConnector' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Queue/Connectors/SqsConnector.php', + 'Illuminate\\Queue\\Connectors\\SyncConnector' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Queue/Connectors/SyncConnector.php', + 'Illuminate\\Queue\\Console\\FailedTableCommand' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Queue/Console/FailedTableCommand.php', + 'Illuminate\\Queue\\Console\\FlushFailedCommand' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Queue/Console/FlushFailedCommand.php', + 'Illuminate\\Queue\\Console\\ForgetFailedCommand' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Queue/Console/ForgetFailedCommand.php', + 'Illuminate\\Queue\\Console\\ListFailedCommand' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Queue/Console/ListFailedCommand.php', + 'Illuminate\\Queue\\Console\\ListenCommand' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Queue/Console/ListenCommand.php', + 'Illuminate\\Queue\\Console\\RestartCommand' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Queue/Console/RestartCommand.php', + 'Illuminate\\Queue\\Console\\RetryCommand' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Queue/Console/RetryCommand.php', + 'Illuminate\\Queue\\Console\\TableCommand' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Queue/Console/TableCommand.php', + 'Illuminate\\Queue\\Console\\WorkCommand' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Queue/Console/WorkCommand.php', + 'Illuminate\\Queue\\DatabaseQueue' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Queue/DatabaseQueue.php', + 'Illuminate\\Queue\\Events\\JobExceptionOccurred' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Queue/Events/JobExceptionOccurred.php', + 'Illuminate\\Queue\\Events\\JobFailed' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Queue/Events/JobFailed.php', + 'Illuminate\\Queue\\Events\\JobProcessed' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Queue/Events/JobProcessed.php', + 'Illuminate\\Queue\\Events\\JobProcessing' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Queue/Events/JobProcessing.php', + 'Illuminate\\Queue\\Events\\Looping' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Queue/Events/Looping.php', + 'Illuminate\\Queue\\Events\\WorkerStopping' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Queue/Events/WorkerStopping.php', + 'Illuminate\\Queue\\Failed\\DatabaseFailedJobProvider' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Queue/Failed/DatabaseFailedJobProvider.php', + 'Illuminate\\Queue\\Failed\\FailedJobProviderInterface' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Queue/Failed/FailedJobProviderInterface.php', + 'Illuminate\\Queue\\Failed\\NullFailedJobProvider' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Queue/Failed/NullFailedJobProvider.php', + 'Illuminate\\Queue\\FailingJob' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Queue/FailingJob.php', + 'Illuminate\\Queue\\InteractsWithQueue' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Queue/InteractsWithQueue.php', + 'Illuminate\\Queue\\InvalidPayloadException' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Queue/InvalidPayloadException.php', + 'Illuminate\\Queue\\Jobs\\BeanstalkdJob' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Queue/Jobs/BeanstalkdJob.php', + 'Illuminate\\Queue\\Jobs\\DatabaseJob' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Queue/Jobs/DatabaseJob.php', + 'Illuminate\\Queue\\Jobs\\DatabaseJobRecord' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Queue/Jobs/DatabaseJobRecord.php', + 'Illuminate\\Queue\\Jobs\\Job' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Queue/Jobs/Job.php', + 'Illuminate\\Queue\\Jobs\\JobName' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Queue/Jobs/JobName.php', + 'Illuminate\\Queue\\Jobs\\RedisJob' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Queue/Jobs/RedisJob.php', + 'Illuminate\\Queue\\Jobs\\SqsJob' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Queue/Jobs/SqsJob.php', + 'Illuminate\\Queue\\Jobs\\SyncJob' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Queue/Jobs/SyncJob.php', + 'Illuminate\\Queue\\Listener' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Queue/Listener.php', + 'Illuminate\\Queue\\ListenerOptions' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Queue/ListenerOptions.php', + 'Illuminate\\Queue\\LuaScripts' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Queue/LuaScripts.php', + 'Illuminate\\Queue\\ManuallyFailedException' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Queue/ManuallyFailedException.php', + 'Illuminate\\Queue\\MaxAttemptsExceededException' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Queue/MaxAttemptsExceededException.php', + 'Illuminate\\Queue\\NullQueue' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Queue/NullQueue.php', + 'Illuminate\\Queue\\Queue' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Queue/Queue.php', + 'Illuminate\\Queue\\QueueManager' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Queue/QueueManager.php', + 'Illuminate\\Queue\\QueueServiceProvider' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Queue/QueueServiceProvider.php', + 'Illuminate\\Queue\\RedisQueue' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Queue/RedisQueue.php', + 'Illuminate\\Queue\\SerializesAndRestoresModelIdentifiers' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Queue/SerializesAndRestoresModelIdentifiers.php', + 'Illuminate\\Queue\\SerializesModels' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Queue/SerializesModels.php', + 'Illuminate\\Queue\\SqsQueue' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Queue/SqsQueue.php', + 'Illuminate\\Queue\\SyncQueue' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Queue/SyncQueue.php', + 'Illuminate\\Queue\\Worker' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Queue/Worker.php', + 'Illuminate\\Queue\\WorkerOptions' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Queue/WorkerOptions.php', + 'Illuminate\\Redis\\Connections\\Connection' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Redis/Connections/Connection.php', + 'Illuminate\\Redis\\Connections\\PhpRedisClusterConnection' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Redis/Connections/PhpRedisClusterConnection.php', + 'Illuminate\\Redis\\Connections\\PhpRedisConnection' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Redis/Connections/PhpRedisConnection.php', + 'Illuminate\\Redis\\Connections\\PredisClusterConnection' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Redis/Connections/PredisClusterConnection.php', + 'Illuminate\\Redis\\Connections\\PredisConnection' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Redis/Connections/PredisConnection.php', + 'Illuminate\\Redis\\Connectors\\PhpRedisConnector' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Redis/Connectors/PhpRedisConnector.php', + 'Illuminate\\Redis\\Connectors\\PredisConnector' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Redis/Connectors/PredisConnector.php', + 'Illuminate\\Redis\\Limiters\\ConcurrencyLimiter' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Redis/Limiters/ConcurrencyLimiter.php', + 'Illuminate\\Redis\\Limiters\\ConcurrencyLimiterBuilder' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Redis/Limiters/ConcurrencyLimiterBuilder.php', + 'Illuminate\\Redis\\Limiters\\DurationLimiter' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Redis/Limiters/DurationLimiter.php', + 'Illuminate\\Redis\\Limiters\\DurationLimiterBuilder' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Redis/Limiters/DurationLimiterBuilder.php', + 'Illuminate\\Redis\\RedisManager' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Redis/RedisManager.php', + 'Illuminate\\Redis\\RedisServiceProvider' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Redis/RedisServiceProvider.php', + 'Illuminate\\Routing\\Console\\ControllerMakeCommand' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Routing/Console/ControllerMakeCommand.php', + 'Illuminate\\Routing\\Console\\MiddlewareMakeCommand' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Routing/Console/MiddlewareMakeCommand.php', + 'Illuminate\\Routing\\Contracts\\ControllerDispatcher' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Routing/Contracts/ControllerDispatcher.php', + 'Illuminate\\Routing\\Controller' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Routing/Controller.php', + 'Illuminate\\Routing\\ControllerDispatcher' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Routing/ControllerDispatcher.php', + 'Illuminate\\Routing\\ControllerMiddlewareOptions' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Routing/ControllerMiddlewareOptions.php', + 'Illuminate\\Routing\\Events\\RouteMatched' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Routing/Events/RouteMatched.php', + 'Illuminate\\Routing\\Exceptions\\UrlGenerationException' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Routing/Exceptions/UrlGenerationException.php', + 'Illuminate\\Routing\\ImplicitRouteBinding' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Routing/ImplicitRouteBinding.php', + 'Illuminate\\Routing\\Matching\\HostValidator' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Routing/Matching/HostValidator.php', + 'Illuminate\\Routing\\Matching\\MethodValidator' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Routing/Matching/MethodValidator.php', + 'Illuminate\\Routing\\Matching\\SchemeValidator' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Routing/Matching/SchemeValidator.php', + 'Illuminate\\Routing\\Matching\\UriValidator' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Routing/Matching/UriValidator.php', + 'Illuminate\\Routing\\Matching\\ValidatorInterface' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Routing/Matching/ValidatorInterface.php', + 'Illuminate\\Routing\\MiddlewareNameResolver' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Routing/MiddlewareNameResolver.php', + 'Illuminate\\Routing\\Middleware\\SubstituteBindings' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php', + 'Illuminate\\Routing\\Middleware\\ThrottleRequests' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Routing/Middleware/ThrottleRequests.php', + 'Illuminate\\Routing\\Middleware\\ThrottleRequestsWithRedis' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Routing/Middleware/ThrottleRequestsWithRedis.php', + 'Illuminate\\Routing\\PendingResourceRegistration' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Routing/PendingResourceRegistration.php', + 'Illuminate\\Routing\\Pipeline' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Routing/Pipeline.php', + 'Illuminate\\Routing\\RedirectController' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Routing/RedirectController.php', + 'Illuminate\\Routing\\Redirector' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Routing/Redirector.php', + 'Illuminate\\Routing\\ResourceRegistrar' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Routing/ResourceRegistrar.php', + 'Illuminate\\Routing\\ResponseFactory' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Routing/ResponseFactory.php', + 'Illuminate\\Routing\\Route' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Routing/Route.php', + 'Illuminate\\Routing\\RouteAction' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Routing/RouteAction.php', + 'Illuminate\\Routing\\RouteBinding' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Routing/RouteBinding.php', + 'Illuminate\\Routing\\RouteCollection' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Routing/RouteCollection.php', + 'Illuminate\\Routing\\RouteCompiler' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Routing/RouteCompiler.php', + 'Illuminate\\Routing\\RouteDependencyResolverTrait' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Routing/RouteDependencyResolverTrait.php', + 'Illuminate\\Routing\\RouteGroup' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Routing/RouteGroup.php', + 'Illuminate\\Routing\\RouteParameterBinder' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Routing/RouteParameterBinder.php', + 'Illuminate\\Routing\\RouteRegistrar' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Routing/RouteRegistrar.php', + 'Illuminate\\Routing\\RouteSignatureParameters' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Routing/RouteSignatureParameters.php', + 'Illuminate\\Routing\\RouteUrlGenerator' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Routing/RouteUrlGenerator.php', + 'Illuminate\\Routing\\Router' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Routing/Router.php', + 'Illuminate\\Routing\\RoutingServiceProvider' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Routing/RoutingServiceProvider.php', + 'Illuminate\\Routing\\SortedMiddleware' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Routing/SortedMiddleware.php', + 'Illuminate\\Routing\\UrlGenerator' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Routing/UrlGenerator.php', + 'Illuminate\\Routing\\ViewController' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Routing/ViewController.php', + 'Illuminate\\Session\\CacheBasedSessionHandler' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Session/CacheBasedSessionHandler.php', + 'Illuminate\\Session\\Console\\SessionTableCommand' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Session/Console/SessionTableCommand.php', + 'Illuminate\\Session\\CookieSessionHandler' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Session/CookieSessionHandler.php', + 'Illuminate\\Session\\DatabaseSessionHandler' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Session/DatabaseSessionHandler.php', + 'Illuminate\\Session\\EncryptedStore' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Session/EncryptedStore.php', + 'Illuminate\\Session\\ExistenceAwareInterface' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Session/ExistenceAwareInterface.php', + 'Illuminate\\Session\\FileSessionHandler' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Session/FileSessionHandler.php', + 'Illuminate\\Session\\Middleware\\AuthenticateSession' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Session/Middleware/AuthenticateSession.php', + 'Illuminate\\Session\\Middleware\\StartSession' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php', + 'Illuminate\\Session\\SessionManager' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Session/SessionManager.php', + 'Illuminate\\Session\\SessionServiceProvider' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Session/SessionServiceProvider.php', + 'Illuminate\\Session\\Store' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Session/Store.php', + 'Illuminate\\Session\\TokenMismatchException' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Session/TokenMismatchException.php', + 'Illuminate\\Support\\AggregateServiceProvider' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Support/AggregateServiceProvider.php', + 'Illuminate\\Support\\Arr' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Support/Arr.php', + 'Illuminate\\Support\\Carbon' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Support/Carbon.php', + 'Illuminate\\Support\\Collection' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Support/Collection.php', + 'Illuminate\\Support\\Composer' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Support/Composer.php', + 'Illuminate\\Support\\Debug\\Dumper' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Support/Debug/Dumper.php', + 'Illuminate\\Support\\Debug\\HtmlDumper' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Support/Debug/HtmlDumper.php', + 'Illuminate\\Support\\Facades\\App' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Support/Facades/App.php', + 'Illuminate\\Support\\Facades\\Artisan' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Support/Facades/Artisan.php', + 'Illuminate\\Support\\Facades\\Auth' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Support/Facades/Auth.php', + 'Illuminate\\Support\\Facades\\Blade' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Support/Facades/Blade.php', + 'Illuminate\\Support\\Facades\\Broadcast' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Support/Facades/Broadcast.php', + 'Illuminate\\Support\\Facades\\Bus' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Support/Facades/Bus.php', + 'Illuminate\\Support\\Facades\\Cache' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Support/Facades/Cache.php', + 'Illuminate\\Support\\Facades\\Config' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Support/Facades/Config.php', + 'Illuminate\\Support\\Facades\\Cookie' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Support/Facades/Cookie.php', + 'Illuminate\\Support\\Facades\\Crypt' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Support/Facades/Crypt.php', + 'Illuminate\\Support\\Facades\\DB' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Support/Facades/DB.php', + 'Illuminate\\Support\\Facades\\Event' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Support/Facades/Event.php', + 'Illuminate\\Support\\Facades\\Facade' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Support/Facades/Facade.php', + 'Illuminate\\Support\\Facades\\File' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Support/Facades/File.php', + 'Illuminate\\Support\\Facades\\Gate' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Support/Facades/Gate.php', + 'Illuminate\\Support\\Facades\\Hash' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Support/Facades/Hash.php', + 'Illuminate\\Support\\Facades\\Input' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Support/Facades/Input.php', + 'Illuminate\\Support\\Facades\\Lang' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Support/Facades/Lang.php', + 'Illuminate\\Support\\Facades\\Log' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Support/Facades/Log.php', + 'Illuminate\\Support\\Facades\\Mail' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Support/Facades/Mail.php', + 'Illuminate\\Support\\Facades\\Notification' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Support/Facades/Notification.php', + 'Illuminate\\Support\\Facades\\Password' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Support/Facades/Password.php', + 'Illuminate\\Support\\Facades\\Queue' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Support/Facades/Queue.php', + 'Illuminate\\Support\\Facades\\Redirect' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Support/Facades/Redirect.php', + 'Illuminate\\Support\\Facades\\Redis' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Support/Facades/Redis.php', + 'Illuminate\\Support\\Facades\\Request' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Support/Facades/Request.php', + 'Illuminate\\Support\\Facades\\Response' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Support/Facades/Response.php', + 'Illuminate\\Support\\Facades\\Route' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Support/Facades/Route.php', + 'Illuminate\\Support\\Facades\\Schema' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Support/Facades/Schema.php', + 'Illuminate\\Support\\Facades\\Session' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Support/Facades/Session.php', + 'Illuminate\\Support\\Facades\\Storage' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Support/Facades/Storage.php', + 'Illuminate\\Support\\Facades\\URL' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Support/Facades/URL.php', + 'Illuminate\\Support\\Facades\\Validator' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Support/Facades/Validator.php', + 'Illuminate\\Support\\Facades\\View' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Support/Facades/View.php', + 'Illuminate\\Support\\Fluent' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Support/Fluent.php', + 'Illuminate\\Support\\HigherOrderCollectionProxy' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Support/HigherOrderCollectionProxy.php', + 'Illuminate\\Support\\HigherOrderTapProxy' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Support/HigherOrderTapProxy.php', + 'Illuminate\\Support\\HtmlString' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Support/HtmlString.php', + 'Illuminate\\Support\\InteractsWithTime' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Support/InteractsWithTime.php', + 'Illuminate\\Support\\Manager' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Support/Manager.php', + 'Illuminate\\Support\\MessageBag' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Support/MessageBag.php', + 'Illuminate\\Support\\NamespacedItemResolver' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Support/NamespacedItemResolver.php', + 'Illuminate\\Support\\Optional' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Support/Optional.php', + 'Illuminate\\Support\\Pluralizer' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Support/Pluralizer.php', + 'Illuminate\\Support\\ServiceProvider' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Support/ServiceProvider.php', + 'Illuminate\\Support\\Str' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Support/Str.php', + 'Illuminate\\Support\\Testing\\Fakes\\BusFake' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Support/Testing/Fakes/BusFake.php', + 'Illuminate\\Support\\Testing\\Fakes\\EventFake' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Support/Testing/Fakes/EventFake.php', + 'Illuminate\\Support\\Testing\\Fakes\\MailFake' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Support/Testing/Fakes/MailFake.php', + 'Illuminate\\Support\\Testing\\Fakes\\NotificationFake' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Support/Testing/Fakes/NotificationFake.php', + 'Illuminate\\Support\\Testing\\Fakes\\PendingMailFake' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Support/Testing/Fakes/PendingMailFake.php', + 'Illuminate\\Support\\Testing\\Fakes\\QueueFake' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Support/Testing/Fakes/QueueFake.php', + 'Illuminate\\Support\\Traits\\CapsuleManagerTrait' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Support/Traits/CapsuleManagerTrait.php', + 'Illuminate\\Support\\Traits\\Macroable' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Support/Traits/Macroable.php', + 'Illuminate\\Support\\ViewErrorBag' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Support/ViewErrorBag.php', + 'Illuminate\\Translation\\ArrayLoader' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Translation/ArrayLoader.php', + 'Illuminate\\Translation\\FileLoader' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Translation/FileLoader.php', + 'Illuminate\\Translation\\MessageSelector' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Translation/MessageSelector.php', + 'Illuminate\\Translation\\TranslationServiceProvider' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Translation/TranslationServiceProvider.php', + 'Illuminate\\Translation\\Translator' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Translation/Translator.php', + 'Illuminate\\Validation\\ClosureValidationRule' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Validation/ClosureValidationRule.php', + 'Illuminate\\Validation\\Concerns\\FormatsMessages' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Validation/Concerns/FormatsMessages.php', + 'Illuminate\\Validation\\Concerns\\ReplacesAttributes' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Validation/Concerns/ReplacesAttributes.php', + 'Illuminate\\Validation\\Concerns\\ValidatesAttributes' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Validation/Concerns/ValidatesAttributes.php', + 'Illuminate\\Validation\\DatabasePresenceVerifier' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Validation/DatabasePresenceVerifier.php', + 'Illuminate\\Validation\\Factory' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Validation/Factory.php', + 'Illuminate\\Validation\\PresenceVerifierInterface' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Validation/PresenceVerifierInterface.php', + 'Illuminate\\Validation\\Rule' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Validation/Rule.php', + 'Illuminate\\Validation\\Rules\\DatabaseRule' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Validation/Rules/DatabaseRule.php', + 'Illuminate\\Validation\\Rules\\Dimensions' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Validation/Rules/Dimensions.php', + 'Illuminate\\Validation\\Rules\\Exists' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Validation/Rules/Exists.php', + 'Illuminate\\Validation\\Rules\\In' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Validation/Rules/In.php', + 'Illuminate\\Validation\\Rules\\NotIn' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Validation/Rules/NotIn.php', + 'Illuminate\\Validation\\Rules\\Unique' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Validation/Rules/Unique.php', + 'Illuminate\\Validation\\UnauthorizedException' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Validation/UnauthorizedException.php', + 'Illuminate\\Validation\\ValidatesWhenResolvedTrait' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Validation/ValidatesWhenResolvedTrait.php', + 'Illuminate\\Validation\\ValidationData' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Validation/ValidationData.php', + 'Illuminate\\Validation\\ValidationException' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Validation/ValidationException.php', + 'Illuminate\\Validation\\ValidationRuleParser' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Validation/ValidationRuleParser.php', + 'Illuminate\\Validation\\ValidationServiceProvider' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Validation/ValidationServiceProvider.php', + 'Illuminate\\Validation\\Validator' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Validation/Validator.php', + 'Illuminate\\View\\Compilers\\BladeCompiler' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php', + 'Illuminate\\View\\Compilers\\Compiler' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/View/Compilers/Compiler.php', + 'Illuminate\\View\\Compilers\\CompilerInterface' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/View/Compilers/CompilerInterface.php', + 'Illuminate\\View\\Compilers\\Concerns\\CompilesAuthorizations' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/View/Compilers/Concerns/CompilesAuthorizations.php', + 'Illuminate\\View\\Compilers\\Concerns\\CompilesComments' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/View/Compilers/Concerns/CompilesComments.php', + 'Illuminate\\View\\Compilers\\Concerns\\CompilesComponents' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/View/Compilers/Concerns/CompilesComponents.php', + 'Illuminate\\View\\Compilers\\Concerns\\CompilesConditionals' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/View/Compilers/Concerns/CompilesConditionals.php', + 'Illuminate\\View\\Compilers\\Concerns\\CompilesEchos' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/View/Compilers/Concerns/CompilesEchos.php', + 'Illuminate\\View\\Compilers\\Concerns\\CompilesIncludes' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/View/Compilers/Concerns/CompilesIncludes.php', + 'Illuminate\\View\\Compilers\\Concerns\\CompilesInjections' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/View/Compilers/Concerns/CompilesInjections.php', + 'Illuminate\\View\\Compilers\\Concerns\\CompilesJson' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/View/Compilers/Concerns/CompilesJson.php', + 'Illuminate\\View\\Compilers\\Concerns\\CompilesLayouts' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/View/Compilers/Concerns/CompilesLayouts.php', + 'Illuminate\\View\\Compilers\\Concerns\\CompilesLoops' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/View/Compilers/Concerns/CompilesLoops.php', + 'Illuminate\\View\\Compilers\\Concerns\\CompilesRawPhp' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/View/Compilers/Concerns/CompilesRawPhp.php', + 'Illuminate\\View\\Compilers\\Concerns\\CompilesStacks' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/View/Compilers/Concerns/CompilesStacks.php', + 'Illuminate\\View\\Compilers\\Concerns\\CompilesTranslations' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/View/Compilers/Concerns/CompilesTranslations.php', + 'Illuminate\\View\\Concerns\\ManagesComponents' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/View/Concerns/ManagesComponents.php', + 'Illuminate\\View\\Concerns\\ManagesEvents' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/View/Concerns/ManagesEvents.php', + 'Illuminate\\View\\Concerns\\ManagesLayouts' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/View/Concerns/ManagesLayouts.php', + 'Illuminate\\View\\Concerns\\ManagesLoops' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/View/Concerns/ManagesLoops.php', + 'Illuminate\\View\\Concerns\\ManagesStacks' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/View/Concerns/ManagesStacks.php', + 'Illuminate\\View\\Concerns\\ManagesTranslations' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/View/Concerns/ManagesTranslations.php', + 'Illuminate\\View\\Engines\\CompilerEngine' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php', + 'Illuminate\\View\\Engines\\Engine' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/View/Engines/Engine.php', + 'Illuminate\\View\\Engines\\EngineResolver' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/View/Engines/EngineResolver.php', + 'Illuminate\\View\\Engines\\FileEngine' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/View/Engines/FileEngine.php', + 'Illuminate\\View\\Engines\\PhpEngine' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php', + 'Illuminate\\View\\Factory' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/View/Factory.php', + 'Illuminate\\View\\FileViewFinder' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/View/FileViewFinder.php', + 'Illuminate\\View\\Middleware\\ShareErrorsFromSession' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php', + 'Illuminate\\View\\View' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/View/View.php', + 'Illuminate\\View\\ViewFinderInterface' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/View/ViewFinderInterface.php', + 'Illuminate\\View\\ViewName' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/View/ViewName.php', + 'Illuminate\\View\\ViewServiceProvider' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/View/ViewServiceProvider.php', + 'JakubOnderka\\PhpConsoleColor\\ConsoleColor' => __DIR__ . '/..' . '/jakub-onderka/php-console-color/src/JakubOnderka/PhpConsoleColor/ConsoleColor.php', + 'JakubOnderka\\PhpConsoleColor\\InvalidStyleException' => __DIR__ . '/..' . '/jakub-onderka/php-console-color/src/JakubOnderka/PhpConsoleColor/InvalidStyleException.php', + 'JakubOnderka\\PhpConsoleHighlighter\\Highlighter' => __DIR__ . '/..' . '/jakub-onderka/php-console-highlighter/src/JakubOnderka/PhpConsoleHighlighter/Highlighter.php', + 'Jenssegers\\Date\\Date' => __DIR__ . '/..' . '/jenssegers/date/src/Date.php', + 'Jenssegers\\Date\\DateServiceProvider' => __DIR__ . '/..' . '/jenssegers/date/src/DateServiceProvider.php', + 'Laravel\\Tinker\\ClassAliasAutoloader' => __DIR__ . '/..' . '/laravel/tinker/src/ClassAliasAutoloader.php', + 'Laravel\\Tinker\\Console\\TinkerCommand' => __DIR__ . '/..' . '/laravel/tinker/src/Console/TinkerCommand.php', + 'Laravel\\Tinker\\TinkerCaster' => __DIR__ . '/..' . '/laravel/tinker/src/TinkerCaster.php', + 'Laravel\\Tinker\\TinkerServiceProvider' => __DIR__ . '/..' . '/laravel/tinker/src/TinkerServiceProvider.php', + 'League\\Flysystem\\AdapterInterface' => __DIR__ . '/..' . '/league/flysystem/src/AdapterInterface.php', + 'League\\Flysystem\\Adapter\\AbstractAdapter' => __DIR__ . '/..' . '/league/flysystem/src/Adapter/AbstractAdapter.php', + 'League\\Flysystem\\Adapter\\AbstractFtpAdapter' => __DIR__ . '/..' . '/league/flysystem/src/Adapter/AbstractFtpAdapter.php', + 'League\\Flysystem\\Adapter\\CanOverwriteFiles' => __DIR__ . '/..' . '/league/flysystem/src/Adapter/CanOverwriteFiles.php', + 'League\\Flysystem\\Adapter\\Ftp' => __DIR__ . '/..' . '/league/flysystem/src/Adapter/Ftp.php', + 'League\\Flysystem\\Adapter\\Ftpd' => __DIR__ . '/..' . '/league/flysystem/src/Adapter/Ftpd.php', + 'League\\Flysystem\\Adapter\\Local' => __DIR__ . '/..' . '/league/flysystem/src/Adapter/Local.php', + 'League\\Flysystem\\Adapter\\NullAdapter' => __DIR__ . '/..' . '/league/flysystem/src/Adapter/NullAdapter.php', + 'League\\Flysystem\\Adapter\\Polyfill\\NotSupportingVisibilityTrait' => __DIR__ . '/..' . '/league/flysystem/src/Adapter/Polyfill/NotSupportingVisibilityTrait.php', + 'League\\Flysystem\\Adapter\\Polyfill\\StreamedCopyTrait' => __DIR__ . '/..' . '/league/flysystem/src/Adapter/Polyfill/StreamedCopyTrait.php', + 'League\\Flysystem\\Adapter\\Polyfill\\StreamedReadingTrait' => __DIR__ . '/..' . '/league/flysystem/src/Adapter/Polyfill/StreamedReadingTrait.php', + 'League\\Flysystem\\Adapter\\Polyfill\\StreamedTrait' => __DIR__ . '/..' . '/league/flysystem/src/Adapter/Polyfill/StreamedTrait.php', + 'League\\Flysystem\\Adapter\\Polyfill\\StreamedWritingTrait' => __DIR__ . '/..' . '/league/flysystem/src/Adapter/Polyfill/StreamedWritingTrait.php', + 'League\\Flysystem\\Adapter\\SynologyFtp' => __DIR__ . '/..' . '/league/flysystem/src/Adapter/SynologyFtp.php', + 'League\\Flysystem\\Config' => __DIR__ . '/..' . '/league/flysystem/src/Config.php', + 'League\\Flysystem\\ConfigAwareTrait' => __DIR__ . '/..' . '/league/flysystem/src/ConfigAwareTrait.php', + 'League\\Flysystem\\Directory' => __DIR__ . '/..' . '/league/flysystem/src/Directory.php', + 'League\\Flysystem\\Exception' => __DIR__ . '/..' . '/league/flysystem/src/Exception.php', + 'League\\Flysystem\\File' => __DIR__ . '/..' . '/league/flysystem/src/File.php', + 'League\\Flysystem\\FileExistsException' => __DIR__ . '/..' . '/league/flysystem/src/FileExistsException.php', + 'League\\Flysystem\\FileNotFoundException' => __DIR__ . '/..' . '/league/flysystem/src/FileNotFoundException.php', + 'League\\Flysystem\\Filesystem' => __DIR__ . '/..' . '/league/flysystem/src/Filesystem.php', + 'League\\Flysystem\\FilesystemInterface' => __DIR__ . '/..' . '/league/flysystem/src/FilesystemInterface.php', + 'League\\Flysystem\\FilesystemNotFoundException' => __DIR__ . '/..' . '/league/flysystem/src/FilesystemNotFoundException.php', + 'League\\Flysystem\\Handler' => __DIR__ . '/..' . '/league/flysystem/src/Handler.php', + 'League\\Flysystem\\MountManager' => __DIR__ . '/..' . '/league/flysystem/src/MountManager.php', + 'League\\Flysystem\\NotSupportedException' => __DIR__ . '/..' . '/league/flysystem/src/NotSupportedException.php', + 'League\\Flysystem\\PluginInterface' => __DIR__ . '/..' . '/league/flysystem/src/PluginInterface.php', + 'League\\Flysystem\\Plugin\\AbstractPlugin' => __DIR__ . '/..' . '/league/flysystem/src/Plugin/AbstractPlugin.php', + 'League\\Flysystem\\Plugin\\EmptyDir' => __DIR__ . '/..' . '/league/flysystem/src/Plugin/EmptyDir.php', + 'League\\Flysystem\\Plugin\\ForcedCopy' => __DIR__ . '/..' . '/league/flysystem/src/Plugin/ForcedCopy.php', + 'League\\Flysystem\\Plugin\\ForcedRename' => __DIR__ . '/..' . '/league/flysystem/src/Plugin/ForcedRename.php', + 'League\\Flysystem\\Plugin\\GetWithMetadata' => __DIR__ . '/..' . '/league/flysystem/src/Plugin/GetWithMetadata.php', + 'League\\Flysystem\\Plugin\\ListFiles' => __DIR__ . '/..' . '/league/flysystem/src/Plugin/ListFiles.php', + 'League\\Flysystem\\Plugin\\ListPaths' => __DIR__ . '/..' . '/league/flysystem/src/Plugin/ListPaths.php', + 'League\\Flysystem\\Plugin\\ListWith' => __DIR__ . '/..' . '/league/flysystem/src/Plugin/ListWith.php', + 'League\\Flysystem\\Plugin\\PluggableTrait' => __DIR__ . '/..' . '/league/flysystem/src/Plugin/PluggableTrait.php', + 'League\\Flysystem\\Plugin\\PluginNotFoundException' => __DIR__ . '/..' . '/league/flysystem/src/Plugin/PluginNotFoundException.php', + 'League\\Flysystem\\ReadInterface' => __DIR__ . '/..' . '/league/flysystem/src/ReadInterface.php', + 'League\\Flysystem\\RootViolationException' => __DIR__ . '/..' . '/league/flysystem/src/RootViolationException.php', + 'League\\Flysystem\\SafeStorage' => __DIR__ . '/..' . '/league/flysystem/src/SafeStorage.php', + 'League\\Flysystem\\UnreadableFileException' => __DIR__ . '/..' . '/league/flysystem/src/UnreadableFileException.php', + 'League\\Flysystem\\Util' => __DIR__ . '/..' . '/league/flysystem/src/Util.php', + 'League\\Flysystem\\Util\\ContentListingFormatter' => __DIR__ . '/..' . '/league/flysystem/src/Util/ContentListingFormatter.php', + 'League\\Flysystem\\Util\\MimeType' => __DIR__ . '/..' . '/league/flysystem/src/Util/MimeType.php', + 'League\\Flysystem\\Util\\StreamHasher' => __DIR__ . '/..' . '/league/flysystem/src/Util/StreamHasher.php', + 'Mockery' => __DIR__ . '/..' . '/mockery/mockery/library/Mockery.php', + 'Mockery\\Adapter\\Phpunit\\MockeryPHPUnitIntegration' => __DIR__ . '/..' . '/mockery/mockery/library/Mockery/Adapter/Phpunit/MockeryPHPUnitIntegration.php', + 'Mockery\\Adapter\\Phpunit\\MockeryTestCase' => __DIR__ . '/..' . '/mockery/mockery/library/Mockery/Adapter/Phpunit/MockeryTestCase.php', + 'Mockery\\Adapter\\Phpunit\\TestListener' => __DIR__ . '/..' . '/mockery/mockery/library/Mockery/Adapter/Phpunit/TestListener.php', + 'Mockery\\CompositeExpectation' => __DIR__ . '/..' . '/mockery/mockery/library/Mockery/CompositeExpectation.php', + 'Mockery\\Configuration' => __DIR__ . '/..' . '/mockery/mockery/library/Mockery/Configuration.php', + 'Mockery\\Container' => __DIR__ . '/..' . '/mockery/mockery/library/Mockery/Container.php', + 'Mockery\\CountValidator\\AtLeast' => __DIR__ . '/..' . '/mockery/mockery/library/Mockery/CountValidator/AtLeast.php', + 'Mockery\\CountValidator\\AtMost' => __DIR__ . '/..' . '/mockery/mockery/library/Mockery/CountValidator/AtMost.php', + 'Mockery\\CountValidator\\CountValidatorAbstract' => __DIR__ . '/..' . '/mockery/mockery/library/Mockery/CountValidator/CountValidatorAbstract.php', + 'Mockery\\CountValidator\\Exact' => __DIR__ . '/..' . '/mockery/mockery/library/Mockery/CountValidator/Exact.php', + 'Mockery\\CountValidator\\Exception' => __DIR__ . '/..' . '/mockery/mockery/library/Mockery/CountValidator/Exception.php', + 'Mockery\\Exception' => __DIR__ . '/..' . '/mockery/mockery/library/Mockery/Exception.php', + 'Mockery\\Exception\\InvalidCountException' => __DIR__ . '/..' . '/mockery/mockery/library/Mockery/Exception/InvalidCountException.php', + 'Mockery\\Exception\\InvalidOrderException' => __DIR__ . '/..' . '/mockery/mockery/library/Mockery/Exception/InvalidOrderException.php', + 'Mockery\\Exception\\NoMatchingExpectationException' => __DIR__ . '/..' . '/mockery/mockery/library/Mockery/Exception/NoMatchingExpectationException.php', + 'Mockery\\Exception\\RuntimeException' => __DIR__ . '/..' . '/mockery/mockery/library/Mockery/Exception/RuntimeException.php', + 'Mockery\\Expectation' => __DIR__ . '/..' . '/mockery/mockery/library/Mockery/Expectation.php', + 'Mockery\\ExpectationDirector' => __DIR__ . '/..' . '/mockery/mockery/library/Mockery/ExpectationDirector.php', + 'Mockery\\ExpectationInterface' => __DIR__ . '/..' . '/mockery/mockery/library/Mockery/ExpectationInterface.php', + 'Mockery\\Generator\\CachingGenerator' => __DIR__ . '/..' . '/mockery/mockery/library/Mockery/Generator/CachingGenerator.php', + 'Mockery\\Generator\\DefinedTargetClass' => __DIR__ . '/..' . '/mockery/mockery/library/Mockery/Generator/DefinedTargetClass.php', + 'Mockery\\Generator\\Generator' => __DIR__ . '/..' . '/mockery/mockery/library/Mockery/Generator/Generator.php', + 'Mockery\\Generator\\Method' => __DIR__ . '/..' . '/mockery/mockery/library/Mockery/Generator/Method.php', + 'Mockery\\Generator\\MockConfiguration' => __DIR__ . '/..' . '/mockery/mockery/library/Mockery/Generator/MockConfiguration.php', + 'Mockery\\Generator\\MockConfigurationBuilder' => __DIR__ . '/..' . '/mockery/mockery/library/Mockery/Generator/MockConfigurationBuilder.php', + 'Mockery\\Generator\\MockDefinition' => __DIR__ . '/..' . '/mockery/mockery/library/Mockery/Generator/MockDefinition.php', + 'Mockery\\Generator\\Parameter' => __DIR__ . '/..' . '/mockery/mockery/library/Mockery/Generator/Parameter.php', + 'Mockery\\Generator\\StringManipulationGenerator' => __DIR__ . '/..' . '/mockery/mockery/library/Mockery/Generator/StringManipulationGenerator.php', + 'Mockery\\Generator\\StringManipulation\\Pass\\CallTypeHintPass' => __DIR__ . '/..' . '/mockery/mockery/library/Mockery/Generator/StringManipulation/Pass/CallTypeHintPass.php', + 'Mockery\\Generator\\StringManipulation\\Pass\\ClassNamePass' => __DIR__ . '/..' . '/mockery/mockery/library/Mockery/Generator/StringManipulation/Pass/ClassNamePass.php', + 'Mockery\\Generator\\StringManipulation\\Pass\\ClassPass' => __DIR__ . '/..' . '/mockery/mockery/library/Mockery/Generator/StringManipulation/Pass/ClassPass.php', + 'Mockery\\Generator\\StringManipulation\\Pass\\InstanceMockPass' => __DIR__ . '/..' . '/mockery/mockery/library/Mockery/Generator/StringManipulation/Pass/InstanceMockPass.php', + 'Mockery\\Generator\\StringManipulation\\Pass\\InterfacePass' => __DIR__ . '/..' . '/mockery/mockery/library/Mockery/Generator/StringManipulation/Pass/InterfacePass.php', + 'Mockery\\Generator\\StringManipulation\\Pass\\MethodDefinitionPass' => __DIR__ . '/..' . '/mockery/mockery/library/Mockery/Generator/StringManipulation/Pass/MethodDefinitionPass.php', + 'Mockery\\Generator\\StringManipulation\\Pass\\Pass' => __DIR__ . '/..' . '/mockery/mockery/library/Mockery/Generator/StringManipulation/Pass/Pass.php', + 'Mockery\\Generator\\StringManipulation\\Pass\\RemoveBuiltinMethodsThatAreFinalPass' => __DIR__ . '/..' . '/mockery/mockery/library/Mockery/Generator/StringManipulation/Pass/RemoveBuiltinMethodsThatAreFinalPass.php', + 'Mockery\\Generator\\StringManipulation\\Pass\\RemoveUnserializeForInternalSerializableClassesPass' => __DIR__ . '/..' . '/mockery/mockery/library/Mockery/Generator/StringManipulation/Pass/RemoveUnserializeForInternalSerializableClassesPass.php', + 'Mockery\\Generator\\TargetClass' => __DIR__ . '/..' . '/mockery/mockery/library/Mockery/Generator/TargetClass.php', + 'Mockery\\Generator\\UndefinedTargetClass' => __DIR__ . '/..' . '/mockery/mockery/library/Mockery/Generator/UndefinedTargetClass.php', + 'Mockery\\Instantiator' => __DIR__ . '/..' . '/mockery/mockery/library/Mockery/Instantiator.php', + 'Mockery\\Loader' => __DIR__ . '/..' . '/mockery/mockery/library/Mockery/Loader.php', + 'Mockery\\Loader\\EvalLoader' => __DIR__ . '/..' . '/mockery/mockery/library/Mockery/Loader/EvalLoader.php', + 'Mockery\\Loader\\Loader' => __DIR__ . '/..' . '/mockery/mockery/library/Mockery/Loader/Loader.php', + 'Mockery\\Loader\\RequireLoader' => __DIR__ . '/..' . '/mockery/mockery/library/Mockery/Loader/RequireLoader.php', + 'Mockery\\Matcher\\Any' => __DIR__ . '/..' . '/mockery/mockery/library/Mockery/Matcher/Any.php', + 'Mockery\\Matcher\\AnyOf' => __DIR__ . '/..' . '/mockery/mockery/library/Mockery/Matcher/AnyOf.php', + 'Mockery\\Matcher\\Closure' => __DIR__ . '/..' . '/mockery/mockery/library/Mockery/Matcher/Closure.php', + 'Mockery\\Matcher\\Contains' => __DIR__ . '/..' . '/mockery/mockery/library/Mockery/Matcher/Contains.php', + 'Mockery\\Matcher\\Ducktype' => __DIR__ . '/..' . '/mockery/mockery/library/Mockery/Matcher/Ducktype.php', + 'Mockery\\Matcher\\HasKey' => __DIR__ . '/..' . '/mockery/mockery/library/Mockery/Matcher/HasKey.php', + 'Mockery\\Matcher\\HasValue' => __DIR__ . '/..' . '/mockery/mockery/library/Mockery/Matcher/HasValue.php', + 'Mockery\\Matcher\\MatcherAbstract' => __DIR__ . '/..' . '/mockery/mockery/library/Mockery/Matcher/MatcherAbstract.php', + 'Mockery\\Matcher\\MustBe' => __DIR__ . '/..' . '/mockery/mockery/library/Mockery/Matcher/MustBe.php', + 'Mockery\\Matcher\\Not' => __DIR__ . '/..' . '/mockery/mockery/library/Mockery/Matcher/Not.php', + 'Mockery\\Matcher\\NotAnyOf' => __DIR__ . '/..' . '/mockery/mockery/library/Mockery/Matcher/NotAnyOf.php', + 'Mockery\\Matcher\\Subset' => __DIR__ . '/..' . '/mockery/mockery/library/Mockery/Matcher/Subset.php', + 'Mockery\\Matcher\\Type' => __DIR__ . '/..' . '/mockery/mockery/library/Mockery/Matcher/Type.php', + 'Mockery\\MethodCall' => __DIR__ . '/..' . '/mockery/mockery/library/Mockery/MethodCall.php', + 'Mockery\\Mock' => __DIR__ . '/..' . '/mockery/mockery/library/Mockery/Mock.php', + 'Mockery\\MockInterface' => __DIR__ . '/..' . '/mockery/mockery/library/Mockery/MockInterface.php', + 'Mockery\\ReceivedMethodCalls' => __DIR__ . '/..' . '/mockery/mockery/library/Mockery/ReceivedMethodCalls.php', + 'Mockery\\Recorder' => __DIR__ . '/..' . '/mockery/mockery/library/Mockery/Recorder.php', + 'Mockery\\Undefined' => __DIR__ . '/..' . '/mockery/mockery/library/Mockery/Undefined.php', + 'Mockery\\VerificationDirector' => __DIR__ . '/..' . '/mockery/mockery/library/Mockery/VerificationDirector.php', + 'Mockery\\VerificationExpectation' => __DIR__ . '/..' . '/mockery/mockery/library/Mockery/VerificationExpectation.php', + 'Monolog\\ErrorHandler' => __DIR__ . '/..' . '/monolog/monolog/src/Monolog/ErrorHandler.php', + 'Monolog\\Formatter\\ChromePHPFormatter' => __DIR__ . '/..' . '/monolog/monolog/src/Monolog/Formatter/ChromePHPFormatter.php', + 'Monolog\\Formatter\\ElasticaFormatter' => __DIR__ . '/..' . '/monolog/monolog/src/Monolog/Formatter/ElasticaFormatter.php', + 'Monolog\\Formatter\\FlowdockFormatter' => __DIR__ . '/..' . '/monolog/monolog/src/Monolog/Formatter/FlowdockFormatter.php', + 'Monolog\\Formatter\\FluentdFormatter' => __DIR__ . '/..' . '/monolog/monolog/src/Monolog/Formatter/FluentdFormatter.php', + 'Monolog\\Formatter\\FormatterInterface' => __DIR__ . '/..' . '/monolog/monolog/src/Monolog/Formatter/FormatterInterface.php', + 'Monolog\\Formatter\\GelfMessageFormatter' => __DIR__ . '/..' . '/monolog/monolog/src/Monolog/Formatter/GelfMessageFormatter.php', + 'Monolog\\Formatter\\HtmlFormatter' => __DIR__ . '/..' . '/monolog/monolog/src/Monolog/Formatter/HtmlFormatter.php', + 'Monolog\\Formatter\\JsonFormatter' => __DIR__ . '/..' . '/monolog/monolog/src/Monolog/Formatter/JsonFormatter.php', + 'Monolog\\Formatter\\LineFormatter' => __DIR__ . '/..' . '/monolog/monolog/src/Monolog/Formatter/LineFormatter.php', + 'Monolog\\Formatter\\LogglyFormatter' => __DIR__ . '/..' . '/monolog/monolog/src/Monolog/Formatter/LogglyFormatter.php', + 'Monolog\\Formatter\\LogstashFormatter' => __DIR__ . '/..' . '/monolog/monolog/src/Monolog/Formatter/LogstashFormatter.php', + 'Monolog\\Formatter\\MongoDBFormatter' => __DIR__ . '/..' . '/monolog/monolog/src/Monolog/Formatter/MongoDBFormatter.php', + 'Monolog\\Formatter\\NormalizerFormatter' => __DIR__ . '/..' . '/monolog/monolog/src/Monolog/Formatter/NormalizerFormatter.php', + 'Monolog\\Formatter\\ScalarFormatter' => __DIR__ . '/..' . '/monolog/monolog/src/Monolog/Formatter/ScalarFormatter.php', + 'Monolog\\Formatter\\WildfireFormatter' => __DIR__ . '/..' . '/monolog/monolog/src/Monolog/Formatter/WildfireFormatter.php', + 'Monolog\\Handler\\AbstractHandler' => __DIR__ . '/..' . '/monolog/monolog/src/Monolog/Handler/AbstractHandler.php', + 'Monolog\\Handler\\AbstractProcessingHandler' => __DIR__ . '/..' . '/monolog/monolog/src/Monolog/Handler/AbstractProcessingHandler.php', + 'Monolog\\Handler\\AbstractSyslogHandler' => __DIR__ . '/..' . '/monolog/monolog/src/Monolog/Handler/AbstractSyslogHandler.php', + 'Monolog\\Handler\\AmqpHandler' => __DIR__ . '/..' . '/monolog/monolog/src/Monolog/Handler/AmqpHandler.php', + 'Monolog\\Handler\\BrowserConsoleHandler' => __DIR__ . '/..' . '/monolog/monolog/src/Monolog/Handler/BrowserConsoleHandler.php', + 'Monolog\\Handler\\BufferHandler' => __DIR__ . '/..' . '/monolog/monolog/src/Monolog/Handler/BufferHandler.php', + 'Monolog\\Handler\\ChromePHPHandler' => __DIR__ . '/..' . '/monolog/monolog/src/Monolog/Handler/ChromePHPHandler.php', + 'Monolog\\Handler\\CouchDBHandler' => __DIR__ . '/..' . '/monolog/monolog/src/Monolog/Handler/CouchDBHandler.php', + 'Monolog\\Handler\\CubeHandler' => __DIR__ . '/..' . '/monolog/monolog/src/Monolog/Handler/CubeHandler.php', + 'Monolog\\Handler\\Curl\\Util' => __DIR__ . '/..' . '/monolog/monolog/src/Monolog/Handler/Curl/Util.php', + 'Monolog\\Handler\\DeduplicationHandler' => __DIR__ . '/..' . '/monolog/monolog/src/Monolog/Handler/DeduplicationHandler.php', + 'Monolog\\Handler\\DoctrineCouchDBHandler' => __DIR__ . '/..' . '/monolog/monolog/src/Monolog/Handler/DoctrineCouchDBHandler.php', + 'Monolog\\Handler\\DynamoDbHandler' => __DIR__ . '/..' . '/monolog/monolog/src/Monolog/Handler/DynamoDbHandler.php', + 'Monolog\\Handler\\ElasticSearchHandler' => __DIR__ . '/..' . '/monolog/monolog/src/Monolog/Handler/ElasticSearchHandler.php', + 'Monolog\\Handler\\ErrorLogHandler' => __DIR__ . '/..' . '/monolog/monolog/src/Monolog/Handler/ErrorLogHandler.php', + 'Monolog\\Handler\\FilterHandler' => __DIR__ . '/..' . '/monolog/monolog/src/Monolog/Handler/FilterHandler.php', + 'Monolog\\Handler\\FingersCrossedHandler' => __DIR__ . '/..' . '/monolog/monolog/src/Monolog/Handler/FingersCrossedHandler.php', + 'Monolog\\Handler\\FingersCrossed\\ActivationStrategyInterface' => __DIR__ . '/..' . '/monolog/monolog/src/Monolog/Handler/FingersCrossed/ActivationStrategyInterface.php', + 'Monolog\\Handler\\FingersCrossed\\ChannelLevelActivationStrategy' => __DIR__ . '/..' . '/monolog/monolog/src/Monolog/Handler/FingersCrossed/ChannelLevelActivationStrategy.php', + 'Monolog\\Handler\\FingersCrossed\\ErrorLevelActivationStrategy' => __DIR__ . '/..' . '/monolog/monolog/src/Monolog/Handler/FingersCrossed/ErrorLevelActivationStrategy.php', + 'Monolog\\Handler\\FirePHPHandler' => __DIR__ . '/..' . '/monolog/monolog/src/Monolog/Handler/FirePHPHandler.php', + 'Monolog\\Handler\\FleepHookHandler' => __DIR__ . '/..' . '/monolog/monolog/src/Monolog/Handler/FleepHookHandler.php', + 'Monolog\\Handler\\FlowdockHandler' => __DIR__ . '/..' . '/monolog/monolog/src/Monolog/Handler/FlowdockHandler.php', + 'Monolog\\Handler\\GelfHandler' => __DIR__ . '/..' . '/monolog/monolog/src/Monolog/Handler/GelfHandler.php', + 'Monolog\\Handler\\GroupHandler' => __DIR__ . '/..' . '/monolog/monolog/src/Monolog/Handler/GroupHandler.php', + 'Monolog\\Handler\\HandlerInterface' => __DIR__ . '/..' . '/monolog/monolog/src/Monolog/Handler/HandlerInterface.php', + 'Monolog\\Handler\\HandlerWrapper' => __DIR__ . '/..' . '/monolog/monolog/src/Monolog/Handler/HandlerWrapper.php', + 'Monolog\\Handler\\HipChatHandler' => __DIR__ . '/..' . '/monolog/monolog/src/Monolog/Handler/HipChatHandler.php', + 'Monolog\\Handler\\IFTTTHandler' => __DIR__ . '/..' . '/monolog/monolog/src/Monolog/Handler/IFTTTHandler.php', + 'Monolog\\Handler\\LogEntriesHandler' => __DIR__ . '/..' . '/monolog/monolog/src/Monolog/Handler/LogEntriesHandler.php', + 'Monolog\\Handler\\LogglyHandler' => __DIR__ . '/..' . '/monolog/monolog/src/Monolog/Handler/LogglyHandler.php', + 'Monolog\\Handler\\MailHandler' => __DIR__ . '/..' . '/monolog/monolog/src/Monolog/Handler/MailHandler.php', + 'Monolog\\Handler\\MandrillHandler' => __DIR__ . '/..' . '/monolog/monolog/src/Monolog/Handler/MandrillHandler.php', + 'Monolog\\Handler\\MissingExtensionException' => __DIR__ . '/..' . '/monolog/monolog/src/Monolog/Handler/MissingExtensionException.php', + 'Monolog\\Handler\\MongoDBHandler' => __DIR__ . '/..' . '/monolog/monolog/src/Monolog/Handler/MongoDBHandler.php', + 'Monolog\\Handler\\NativeMailerHandler' => __DIR__ . '/..' . '/monolog/monolog/src/Monolog/Handler/NativeMailerHandler.php', + 'Monolog\\Handler\\NewRelicHandler' => __DIR__ . '/..' . '/monolog/monolog/src/Monolog/Handler/NewRelicHandler.php', + 'Monolog\\Handler\\NullHandler' => __DIR__ . '/..' . '/monolog/monolog/src/Monolog/Handler/NullHandler.php', + 'Monolog\\Handler\\PHPConsoleHandler' => __DIR__ . '/..' . '/monolog/monolog/src/Monolog/Handler/PHPConsoleHandler.php', + 'Monolog\\Handler\\PsrHandler' => __DIR__ . '/..' . '/monolog/monolog/src/Monolog/Handler/PsrHandler.php', + 'Monolog\\Handler\\PushoverHandler' => __DIR__ . '/..' . '/monolog/monolog/src/Monolog/Handler/PushoverHandler.php', + 'Monolog\\Handler\\RavenHandler' => __DIR__ . '/..' . '/monolog/monolog/src/Monolog/Handler/RavenHandler.php', + 'Monolog\\Handler\\RedisHandler' => __DIR__ . '/..' . '/monolog/monolog/src/Monolog/Handler/RedisHandler.php', + 'Monolog\\Handler\\RollbarHandler' => __DIR__ . '/..' . '/monolog/monolog/src/Monolog/Handler/RollbarHandler.php', + 'Monolog\\Handler\\RotatingFileHandler' => __DIR__ . '/..' . '/monolog/monolog/src/Monolog/Handler/RotatingFileHandler.php', + 'Monolog\\Handler\\SamplingHandler' => __DIR__ . '/..' . '/monolog/monolog/src/Monolog/Handler/SamplingHandler.php', + 'Monolog\\Handler\\SlackHandler' => __DIR__ . '/..' . '/monolog/monolog/src/Monolog/Handler/SlackHandler.php', + 'Monolog\\Handler\\SlackWebhookHandler' => __DIR__ . '/..' . '/monolog/monolog/src/Monolog/Handler/SlackWebhookHandler.php', + 'Monolog\\Handler\\Slack\\SlackRecord' => __DIR__ . '/..' . '/monolog/monolog/src/Monolog/Handler/Slack/SlackRecord.php', + 'Monolog\\Handler\\SlackbotHandler' => __DIR__ . '/..' . '/monolog/monolog/src/Monolog/Handler/SlackbotHandler.php', + 'Monolog\\Handler\\SocketHandler' => __DIR__ . '/..' . '/monolog/monolog/src/Monolog/Handler/SocketHandler.php', + 'Monolog\\Handler\\StreamHandler' => __DIR__ . '/..' . '/monolog/monolog/src/Monolog/Handler/StreamHandler.php', + 'Monolog\\Handler\\SwiftMailerHandler' => __DIR__ . '/..' . '/monolog/monolog/src/Monolog/Handler/SwiftMailerHandler.php', + 'Monolog\\Handler\\SyslogHandler' => __DIR__ . '/..' . '/monolog/monolog/src/Monolog/Handler/SyslogHandler.php', + 'Monolog\\Handler\\SyslogUdpHandler' => __DIR__ . '/..' . '/monolog/monolog/src/Monolog/Handler/SyslogUdpHandler.php', + 'Monolog\\Handler\\SyslogUdp\\UdpSocket' => __DIR__ . '/..' . '/monolog/monolog/src/Monolog/Handler/SyslogUdp/UdpSocket.php', + 'Monolog\\Handler\\TestHandler' => __DIR__ . '/..' . '/monolog/monolog/src/Monolog/Handler/TestHandler.php', + 'Monolog\\Handler\\WhatFailureGroupHandler' => __DIR__ . '/..' . '/monolog/monolog/src/Monolog/Handler/WhatFailureGroupHandler.php', + 'Monolog\\Handler\\ZendMonitorHandler' => __DIR__ . '/..' . '/monolog/monolog/src/Monolog/Handler/ZendMonitorHandler.php', + 'Monolog\\Logger' => __DIR__ . '/..' . '/monolog/monolog/src/Monolog/Logger.php', + 'Monolog\\Processor\\GitProcessor' => __DIR__ . '/..' . '/monolog/monolog/src/Monolog/Processor/GitProcessor.php', + 'Monolog\\Processor\\IntrospectionProcessor' => __DIR__ . '/..' . '/monolog/monolog/src/Monolog/Processor/IntrospectionProcessor.php', + 'Monolog\\Processor\\MemoryPeakUsageProcessor' => __DIR__ . '/..' . '/monolog/monolog/src/Monolog/Processor/MemoryPeakUsageProcessor.php', + 'Monolog\\Processor\\MemoryProcessor' => __DIR__ . '/..' . '/monolog/monolog/src/Monolog/Processor/MemoryProcessor.php', + 'Monolog\\Processor\\MemoryUsageProcessor' => __DIR__ . '/..' . '/monolog/monolog/src/Monolog/Processor/MemoryUsageProcessor.php', + 'Monolog\\Processor\\MercurialProcessor' => __DIR__ . '/..' . '/monolog/monolog/src/Monolog/Processor/MercurialProcessor.php', + 'Monolog\\Processor\\ProcessIdProcessor' => __DIR__ . '/..' . '/monolog/monolog/src/Monolog/Processor/ProcessIdProcessor.php', + 'Monolog\\Processor\\PsrLogMessageProcessor' => __DIR__ . '/..' . '/monolog/monolog/src/Monolog/Processor/PsrLogMessageProcessor.php', + 'Monolog\\Processor\\TagProcessor' => __DIR__ . '/..' . '/monolog/monolog/src/Monolog/Processor/TagProcessor.php', + 'Monolog\\Processor\\UidProcessor' => __DIR__ . '/..' . '/monolog/monolog/src/Monolog/Processor/UidProcessor.php', + 'Monolog\\Processor\\WebProcessor' => __DIR__ . '/..' . '/monolog/monolog/src/Monolog/Processor/WebProcessor.php', + 'Monolog\\Registry' => __DIR__ . '/..' . '/monolog/monolog/src/Monolog/Registry.php', 'PHPUnit\\Exception' => __DIR__ . '/..' . '/phpunit/phpunit/src/Exception.php', 'PHPUnit\\Framework\\Assert' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Assert.php', 'PHPUnit\\Framework\\AssertionFailedError' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/AssertionFailedError.php', @@ -739,6 +2306,7 @@ class ComposerStaticInit0ef7b7c57b5051a6692d56ad58e04e79 'PHP_Token_XOR_EQUAL' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', 'PHP_Token_YIELD' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', 'PHP_Token_YIELD_FROM' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'Parsedown' => __DIR__ . '/..' . '/erusev/parsedown/Parsedown.php', 'PharIo\\Manifest\\Application' => __DIR__ . '/..' . '/phar-io/manifest/src/values/Application.php', 'PharIo\\Manifest\\ApplicationName' => __DIR__ . '/..' . '/phar-io/manifest/src/values/ApplicationName.php', 'PharIo\\Manifest\\Author' => __DIR__ . '/..' . '/phar-io/manifest/src/values/Author.php', @@ -805,6 +2373,483 @@ class ComposerStaticInit0ef7b7c57b5051a6692d56ad58e04e79 'PharIo\\Version\\VersionConstraintParser' => __DIR__ . '/..' . '/phar-io/version/src/VersionConstraintParser.php', 'PharIo\\Version\\VersionConstraintValue' => __DIR__ . '/..' . '/phar-io/version/src/VersionConstraintValue.php', 'PharIo\\Version\\VersionNumber' => __DIR__ . '/..' . '/phar-io/version/src/VersionNumber.php', + 'PhpParser\\Autoloader' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Autoloader.php', + 'PhpParser\\Builder' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Builder.php', + 'PhpParser\\BuilderAbstract' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/BuilderAbstract.php', + 'PhpParser\\BuilderFactory' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/BuilderFactory.php', + 'PhpParser\\Builder\\Class_' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Builder/Class_.php', + 'PhpParser\\Builder\\Declaration' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Builder/Declaration.php', + 'PhpParser\\Builder\\FunctionLike' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Builder/FunctionLike.php', + 'PhpParser\\Builder\\Function_' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Builder/Function_.php', + 'PhpParser\\Builder\\Interface_' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Builder/Interface_.php', + 'PhpParser\\Builder\\Method' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Builder/Method.php', + 'PhpParser\\Builder\\Namespace_' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Builder/Namespace_.php', + 'PhpParser\\Builder\\Param' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Builder/Param.php', + 'PhpParser\\Builder\\Property' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Builder/Property.php', + 'PhpParser\\Builder\\Trait_' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Builder/Trait_.php', + 'PhpParser\\Builder\\Use_' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Builder/Use_.php', + 'PhpParser\\Comment' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Comment.php', + 'PhpParser\\Comment\\Doc' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Comment/Doc.php', + 'PhpParser\\Error' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Error.php', + 'PhpParser\\ErrorHandler' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/ErrorHandler.php', + 'PhpParser\\ErrorHandler\\Collecting' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/ErrorHandler/Collecting.php', + 'PhpParser\\ErrorHandler\\Throwing' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/ErrorHandler/Throwing.php', + 'PhpParser\\Lexer' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Lexer.php', + 'PhpParser\\Lexer\\Emulative' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Lexer/Emulative.php', + 'PhpParser\\Node' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node.php', + 'PhpParser\\NodeAbstract' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/NodeAbstract.php', + 'PhpParser\\NodeDumper' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/NodeDumper.php', + 'PhpParser\\NodeTraverser' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/NodeTraverser.php', + 'PhpParser\\NodeTraverserInterface' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/NodeTraverserInterface.php', + 'PhpParser\\NodeVisitor' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/NodeVisitor.php', + 'PhpParser\\NodeVisitorAbstract' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/NodeVisitorAbstract.php', + 'PhpParser\\NodeVisitor\\NameResolver' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/NodeVisitor/NameResolver.php', + 'PhpParser\\Node\\Arg' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Arg.php', + 'PhpParser\\Node\\Const_' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Const_.php', + 'PhpParser\\Node\\Expr' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Expr.php', + 'PhpParser\\Node\\Expr\\ArrayDimFetch' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Expr/ArrayDimFetch.php', + 'PhpParser\\Node\\Expr\\ArrayItem' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Expr/ArrayItem.php', + 'PhpParser\\Node\\Expr\\Array_' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Expr/Array_.php', + 'PhpParser\\Node\\Expr\\Assign' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Expr/Assign.php', + 'PhpParser\\Node\\Expr\\AssignOp' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Expr/AssignOp.php', + 'PhpParser\\Node\\Expr\\AssignOp\\BitwiseAnd' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Expr/AssignOp/BitwiseAnd.php', + 'PhpParser\\Node\\Expr\\AssignOp\\BitwiseOr' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Expr/AssignOp/BitwiseOr.php', + 'PhpParser\\Node\\Expr\\AssignOp\\BitwiseXor' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Expr/AssignOp/BitwiseXor.php', + 'PhpParser\\Node\\Expr\\AssignOp\\Concat' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Expr/AssignOp/Concat.php', + 'PhpParser\\Node\\Expr\\AssignOp\\Div' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Expr/AssignOp/Div.php', + 'PhpParser\\Node\\Expr\\AssignOp\\Minus' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Expr/AssignOp/Minus.php', + 'PhpParser\\Node\\Expr\\AssignOp\\Mod' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Expr/AssignOp/Mod.php', + 'PhpParser\\Node\\Expr\\AssignOp\\Mul' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Expr/AssignOp/Mul.php', + 'PhpParser\\Node\\Expr\\AssignOp\\Plus' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Expr/AssignOp/Plus.php', + 'PhpParser\\Node\\Expr\\AssignOp\\Pow' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Expr/AssignOp/Pow.php', + 'PhpParser\\Node\\Expr\\AssignOp\\ShiftLeft' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Expr/AssignOp/ShiftLeft.php', + 'PhpParser\\Node\\Expr\\AssignOp\\ShiftRight' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Expr/AssignOp/ShiftRight.php', + 'PhpParser\\Node\\Expr\\AssignRef' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Expr/AssignRef.php', + 'PhpParser\\Node\\Expr\\BinaryOp' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp.php', + 'PhpParser\\Node\\Expr\\BinaryOp\\BitwiseAnd' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/BitwiseAnd.php', + 'PhpParser\\Node\\Expr\\BinaryOp\\BitwiseOr' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/BitwiseOr.php', + 'PhpParser\\Node\\Expr\\BinaryOp\\BitwiseXor' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/BitwiseXor.php', + 'PhpParser\\Node\\Expr\\BinaryOp\\BooleanAnd' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/BooleanAnd.php', + 'PhpParser\\Node\\Expr\\BinaryOp\\BooleanOr' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/BooleanOr.php', + 'PhpParser\\Node\\Expr\\BinaryOp\\Coalesce' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/Coalesce.php', + 'PhpParser\\Node\\Expr\\BinaryOp\\Concat' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/Concat.php', + 'PhpParser\\Node\\Expr\\BinaryOp\\Div' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/Div.php', + 'PhpParser\\Node\\Expr\\BinaryOp\\Equal' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/Equal.php', + 'PhpParser\\Node\\Expr\\BinaryOp\\Greater' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/Greater.php', + 'PhpParser\\Node\\Expr\\BinaryOp\\GreaterOrEqual' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/GreaterOrEqual.php', + 'PhpParser\\Node\\Expr\\BinaryOp\\Identical' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/Identical.php', + 'PhpParser\\Node\\Expr\\BinaryOp\\LogicalAnd' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/LogicalAnd.php', + 'PhpParser\\Node\\Expr\\BinaryOp\\LogicalOr' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/LogicalOr.php', + 'PhpParser\\Node\\Expr\\BinaryOp\\LogicalXor' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/LogicalXor.php', + 'PhpParser\\Node\\Expr\\BinaryOp\\Minus' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/Minus.php', + 'PhpParser\\Node\\Expr\\BinaryOp\\Mod' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/Mod.php', + 'PhpParser\\Node\\Expr\\BinaryOp\\Mul' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/Mul.php', + 'PhpParser\\Node\\Expr\\BinaryOp\\NotEqual' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/NotEqual.php', + 'PhpParser\\Node\\Expr\\BinaryOp\\NotIdentical' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/NotIdentical.php', + 'PhpParser\\Node\\Expr\\BinaryOp\\Plus' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/Plus.php', + 'PhpParser\\Node\\Expr\\BinaryOp\\Pow' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/Pow.php', + 'PhpParser\\Node\\Expr\\BinaryOp\\ShiftLeft' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/ShiftLeft.php', + 'PhpParser\\Node\\Expr\\BinaryOp\\ShiftRight' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/ShiftRight.php', + 'PhpParser\\Node\\Expr\\BinaryOp\\Smaller' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/Smaller.php', + 'PhpParser\\Node\\Expr\\BinaryOp\\SmallerOrEqual' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/SmallerOrEqual.php', + 'PhpParser\\Node\\Expr\\BinaryOp\\Spaceship' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/Spaceship.php', + 'PhpParser\\Node\\Expr\\BitwiseNot' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Expr/BitwiseNot.php', + 'PhpParser\\Node\\Expr\\BooleanNot' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Expr/BooleanNot.php', + 'PhpParser\\Node\\Expr\\Cast' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Expr/Cast.php', + 'PhpParser\\Node\\Expr\\Cast\\Array_' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Expr/Cast/Array_.php', + 'PhpParser\\Node\\Expr\\Cast\\Bool_' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Expr/Cast/Bool_.php', + 'PhpParser\\Node\\Expr\\Cast\\Double' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Expr/Cast/Double.php', + 'PhpParser\\Node\\Expr\\Cast\\Int_' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Expr/Cast/Int_.php', + 'PhpParser\\Node\\Expr\\Cast\\Object_' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Expr/Cast/Object_.php', + 'PhpParser\\Node\\Expr\\Cast\\String_' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Expr/Cast/String_.php', + 'PhpParser\\Node\\Expr\\Cast\\Unset_' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Expr/Cast/Unset_.php', + 'PhpParser\\Node\\Expr\\ClassConstFetch' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Expr/ClassConstFetch.php', + 'PhpParser\\Node\\Expr\\Clone_' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Expr/Clone_.php', + 'PhpParser\\Node\\Expr\\Closure' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Expr/Closure.php', + 'PhpParser\\Node\\Expr\\ClosureUse' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Expr/ClosureUse.php', + 'PhpParser\\Node\\Expr\\ConstFetch' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Expr/ConstFetch.php', + 'PhpParser\\Node\\Expr\\Empty_' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Expr/Empty_.php', + 'PhpParser\\Node\\Expr\\Error' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Expr/Error.php', + 'PhpParser\\Node\\Expr\\ErrorSuppress' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Expr/ErrorSuppress.php', + 'PhpParser\\Node\\Expr\\Eval_' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Expr/Eval_.php', + 'PhpParser\\Node\\Expr\\Exit_' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Expr/Exit_.php', + 'PhpParser\\Node\\Expr\\FuncCall' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Expr/FuncCall.php', + 'PhpParser\\Node\\Expr\\Include_' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Expr/Include_.php', + 'PhpParser\\Node\\Expr\\Instanceof_' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Expr/Instanceof_.php', + 'PhpParser\\Node\\Expr\\Isset_' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Expr/Isset_.php', + 'PhpParser\\Node\\Expr\\List_' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Expr/List_.php', + 'PhpParser\\Node\\Expr\\MethodCall' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Expr/MethodCall.php', + 'PhpParser\\Node\\Expr\\New_' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Expr/New_.php', + 'PhpParser\\Node\\Expr\\PostDec' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Expr/PostDec.php', + 'PhpParser\\Node\\Expr\\PostInc' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Expr/PostInc.php', + 'PhpParser\\Node\\Expr\\PreDec' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Expr/PreDec.php', + 'PhpParser\\Node\\Expr\\PreInc' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Expr/PreInc.php', + 'PhpParser\\Node\\Expr\\Print_' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Expr/Print_.php', + 'PhpParser\\Node\\Expr\\PropertyFetch' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Expr/PropertyFetch.php', + 'PhpParser\\Node\\Expr\\ShellExec' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Expr/ShellExec.php', + 'PhpParser\\Node\\Expr\\StaticCall' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Expr/StaticCall.php', + 'PhpParser\\Node\\Expr\\StaticPropertyFetch' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Expr/StaticPropertyFetch.php', + 'PhpParser\\Node\\Expr\\Ternary' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Expr/Ternary.php', + 'PhpParser\\Node\\Expr\\UnaryMinus' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Expr/UnaryMinus.php', + 'PhpParser\\Node\\Expr\\UnaryPlus' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Expr/UnaryPlus.php', + 'PhpParser\\Node\\Expr\\Variable' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Expr/Variable.php', + 'PhpParser\\Node\\Expr\\YieldFrom' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Expr/YieldFrom.php', + 'PhpParser\\Node\\Expr\\Yield_' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Expr/Yield_.php', + 'PhpParser\\Node\\FunctionLike' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/FunctionLike.php', + 'PhpParser\\Node\\Name' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Name.php', + 'PhpParser\\Node\\Name\\FullyQualified' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Name/FullyQualified.php', + 'PhpParser\\Node\\Name\\Relative' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Name/Relative.php', + 'PhpParser\\Node\\NullableType' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/NullableType.php', + 'PhpParser\\Node\\Param' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Param.php', + 'PhpParser\\Node\\Scalar' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Scalar.php', + 'PhpParser\\Node\\Scalar\\DNumber' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Scalar/DNumber.php', + 'PhpParser\\Node\\Scalar\\Encapsed' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Scalar/Encapsed.php', + 'PhpParser\\Node\\Scalar\\EncapsedStringPart' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Scalar/EncapsedStringPart.php', + 'PhpParser\\Node\\Scalar\\LNumber' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Scalar/LNumber.php', + 'PhpParser\\Node\\Scalar\\MagicConst' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Scalar/MagicConst.php', + 'PhpParser\\Node\\Scalar\\MagicConst\\Class_' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Scalar/MagicConst/Class_.php', + 'PhpParser\\Node\\Scalar\\MagicConst\\Dir' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Scalar/MagicConst/Dir.php', + 'PhpParser\\Node\\Scalar\\MagicConst\\File' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Scalar/MagicConst/File.php', + 'PhpParser\\Node\\Scalar\\MagicConst\\Function_' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Scalar/MagicConst/Function_.php', + 'PhpParser\\Node\\Scalar\\MagicConst\\Line' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Scalar/MagicConst/Line.php', + 'PhpParser\\Node\\Scalar\\MagicConst\\Method' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Scalar/MagicConst/Method.php', + 'PhpParser\\Node\\Scalar\\MagicConst\\Namespace_' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Scalar/MagicConst/Namespace_.php', + 'PhpParser\\Node\\Scalar\\MagicConst\\Trait_' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Scalar/MagicConst/Trait_.php', + 'PhpParser\\Node\\Scalar\\String_' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Scalar/String_.php', + 'PhpParser\\Node\\Stmt' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Stmt.php', + 'PhpParser\\Node\\Stmt\\Break_' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Stmt/Break_.php', + 'PhpParser\\Node\\Stmt\\Case_' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Stmt/Case_.php', + 'PhpParser\\Node\\Stmt\\Catch_' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Stmt/Catch_.php', + 'PhpParser\\Node\\Stmt\\ClassConst' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Stmt/ClassConst.php', + 'PhpParser\\Node\\Stmt\\ClassLike' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Stmt/ClassLike.php', + 'PhpParser\\Node\\Stmt\\ClassMethod' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Stmt/ClassMethod.php', + 'PhpParser\\Node\\Stmt\\Class_' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Stmt/Class_.php', + 'PhpParser\\Node\\Stmt\\Const_' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Stmt/Const_.php', + 'PhpParser\\Node\\Stmt\\Continue_' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Stmt/Continue_.php', + 'PhpParser\\Node\\Stmt\\DeclareDeclare' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Stmt/DeclareDeclare.php', + 'PhpParser\\Node\\Stmt\\Declare_' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Stmt/Declare_.php', + 'PhpParser\\Node\\Stmt\\Do_' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Stmt/Do_.php', + 'PhpParser\\Node\\Stmt\\Echo_' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Stmt/Echo_.php', + 'PhpParser\\Node\\Stmt\\ElseIf_' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Stmt/ElseIf_.php', + 'PhpParser\\Node\\Stmt\\Else_' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Stmt/Else_.php', + 'PhpParser\\Node\\Stmt\\Finally_' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Stmt/Finally_.php', + 'PhpParser\\Node\\Stmt\\For_' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Stmt/For_.php', + 'PhpParser\\Node\\Stmt\\Foreach_' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Stmt/Foreach_.php', + 'PhpParser\\Node\\Stmt\\Function_' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Stmt/Function_.php', + 'PhpParser\\Node\\Stmt\\Global_' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Stmt/Global_.php', + 'PhpParser\\Node\\Stmt\\Goto_' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Stmt/Goto_.php', + 'PhpParser\\Node\\Stmt\\GroupUse' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Stmt/GroupUse.php', + 'PhpParser\\Node\\Stmt\\HaltCompiler' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Stmt/HaltCompiler.php', + 'PhpParser\\Node\\Stmt\\If_' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Stmt/If_.php', + 'PhpParser\\Node\\Stmt\\InlineHTML' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Stmt/InlineHTML.php', + 'PhpParser\\Node\\Stmt\\Interface_' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Stmt/Interface_.php', + 'PhpParser\\Node\\Stmt\\Label' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Stmt/Label.php', + 'PhpParser\\Node\\Stmt\\Namespace_' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Stmt/Namespace_.php', + 'PhpParser\\Node\\Stmt\\Nop' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Stmt/Nop.php', + 'PhpParser\\Node\\Stmt\\Property' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Stmt/Property.php', + 'PhpParser\\Node\\Stmt\\PropertyProperty' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Stmt/PropertyProperty.php', + 'PhpParser\\Node\\Stmt\\Return_' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Stmt/Return_.php', + 'PhpParser\\Node\\Stmt\\StaticVar' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Stmt/StaticVar.php', + 'PhpParser\\Node\\Stmt\\Static_' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Stmt/Static_.php', + 'PhpParser\\Node\\Stmt\\Switch_' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Stmt/Switch_.php', + 'PhpParser\\Node\\Stmt\\Throw_' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Stmt/Throw_.php', + 'PhpParser\\Node\\Stmt\\TraitUse' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Stmt/TraitUse.php', + 'PhpParser\\Node\\Stmt\\TraitUseAdaptation' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Stmt/TraitUseAdaptation.php', + 'PhpParser\\Node\\Stmt\\TraitUseAdaptation\\Alias' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Stmt/TraitUseAdaptation/Alias.php', + 'PhpParser\\Node\\Stmt\\TraitUseAdaptation\\Precedence' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Stmt/TraitUseAdaptation/Precedence.php', + 'PhpParser\\Node\\Stmt\\Trait_' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Stmt/Trait_.php', + 'PhpParser\\Node\\Stmt\\TryCatch' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Stmt/TryCatch.php', + 'PhpParser\\Node\\Stmt\\Unset_' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Stmt/Unset_.php', + 'PhpParser\\Node\\Stmt\\UseUse' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Stmt/UseUse.php', + 'PhpParser\\Node\\Stmt\\Use_' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Stmt/Use_.php', + 'PhpParser\\Node\\Stmt\\While_' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Stmt/While_.php', + 'PhpParser\\Parser' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Parser.php', + 'PhpParser\\ParserAbstract' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/ParserAbstract.php', + 'PhpParser\\ParserFactory' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/ParserFactory.php', + 'PhpParser\\Parser\\Multiple' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Parser/Multiple.php', + 'PhpParser\\Parser\\Php5' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Parser/Php5.php', + 'PhpParser\\Parser\\Php7' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Parser/Php7.php', + 'PhpParser\\Parser\\Tokens' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Parser/Tokens.php', + 'PhpParser\\PrettyPrinterAbstract' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/PrettyPrinterAbstract.php', + 'PhpParser\\PrettyPrinter\\Standard' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/PrettyPrinter/Standard.php', + 'PhpParser\\Serializer' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Serializer.php', + 'PhpParser\\Serializer\\XML' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Serializer/XML.php', + 'PhpParser\\Unserializer' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Unserializer.php', + 'PhpParser\\Unserializer\\XML' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Unserializer/XML.php', + 'Prophecy\\Argument' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Argument.php', + 'Prophecy\\Argument\\ArgumentsWildcard' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Argument/ArgumentsWildcard.php', + 'Prophecy\\Argument\\Token\\AnyValueToken' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Argument/Token/AnyValueToken.php', + 'Prophecy\\Argument\\Token\\AnyValuesToken' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Argument/Token/AnyValuesToken.php', + 'Prophecy\\Argument\\Token\\ApproximateValueToken' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Argument/Token/ApproximateValueToken.php', + 'Prophecy\\Argument\\Token\\ArrayCountToken' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Argument/Token/ArrayCountToken.php', + 'Prophecy\\Argument\\Token\\ArrayEntryToken' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Argument/Token/ArrayEntryToken.php', + 'Prophecy\\Argument\\Token\\ArrayEveryEntryToken' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Argument/Token/ArrayEveryEntryToken.php', + 'Prophecy\\Argument\\Token\\CallbackToken' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Argument/Token/CallbackToken.php', + 'Prophecy\\Argument\\Token\\ExactValueToken' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Argument/Token/ExactValueToken.php', + 'Prophecy\\Argument\\Token\\IdenticalValueToken' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Argument/Token/IdenticalValueToken.php', + 'Prophecy\\Argument\\Token\\LogicalAndToken' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Argument/Token/LogicalAndToken.php', + 'Prophecy\\Argument\\Token\\LogicalNotToken' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Argument/Token/LogicalNotToken.php', + 'Prophecy\\Argument\\Token\\ObjectStateToken' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Argument/Token/ObjectStateToken.php', + 'Prophecy\\Argument\\Token\\StringContainsToken' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Argument/Token/StringContainsToken.php', + 'Prophecy\\Argument\\Token\\TokenInterface' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Argument/Token/TokenInterface.php', + 'Prophecy\\Argument\\Token\\TypeToken' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Argument/Token/TypeToken.php', + 'Prophecy\\Call\\Call' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Call/Call.php', + 'Prophecy\\Call\\CallCenter' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Call/CallCenter.php', + 'Prophecy\\Comparator\\ClosureComparator' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Comparator/ClosureComparator.php', + 'Prophecy\\Comparator\\Factory' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Comparator/Factory.php', + 'Prophecy\\Comparator\\ProphecyComparator' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Comparator/ProphecyComparator.php', + 'Prophecy\\Doubler\\CachedDoubler' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Doubler/CachedDoubler.php', + 'Prophecy\\Doubler\\ClassPatch\\ClassPatchInterface' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Doubler/ClassPatch/ClassPatchInterface.php', + 'Prophecy\\Doubler\\ClassPatch\\DisableConstructorPatch' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Doubler/ClassPatch/DisableConstructorPatch.php', + 'Prophecy\\Doubler\\ClassPatch\\HhvmExceptionPatch' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Doubler/ClassPatch/HhvmExceptionPatch.php', + 'Prophecy\\Doubler\\ClassPatch\\KeywordPatch' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Doubler/ClassPatch/KeywordPatch.php', + 'Prophecy\\Doubler\\ClassPatch\\MagicCallPatch' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Doubler/ClassPatch/MagicCallPatch.php', + 'Prophecy\\Doubler\\ClassPatch\\ProphecySubjectPatch' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Doubler/ClassPatch/ProphecySubjectPatch.php', + 'Prophecy\\Doubler\\ClassPatch\\ReflectionClassNewInstancePatch' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Doubler/ClassPatch/ReflectionClassNewInstancePatch.php', + 'Prophecy\\Doubler\\ClassPatch\\SplFileInfoPatch' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Doubler/ClassPatch/SplFileInfoPatch.php', + 'Prophecy\\Doubler\\ClassPatch\\TraversablePatch' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Doubler/ClassPatch/TraversablePatch.php', + 'Prophecy\\Doubler\\DoubleInterface' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Doubler/DoubleInterface.php', + 'Prophecy\\Doubler\\Doubler' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Doubler/Doubler.php', + 'Prophecy\\Doubler\\Generator\\ClassCodeGenerator' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Doubler/Generator/ClassCodeGenerator.php', + 'Prophecy\\Doubler\\Generator\\ClassCreator' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Doubler/Generator/ClassCreator.php', + 'Prophecy\\Doubler\\Generator\\ClassMirror' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Doubler/Generator/ClassMirror.php', + 'Prophecy\\Doubler\\Generator\\Node\\ArgumentNode' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Doubler/Generator/Node/ArgumentNode.php', + 'Prophecy\\Doubler\\Generator\\Node\\ClassNode' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Doubler/Generator/Node/ClassNode.php', + 'Prophecy\\Doubler\\Generator\\Node\\MethodNode' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Doubler/Generator/Node/MethodNode.php', + 'Prophecy\\Doubler\\Generator\\ReflectionInterface' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Doubler/Generator/ReflectionInterface.php', + 'Prophecy\\Doubler\\LazyDouble' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Doubler/LazyDouble.php', + 'Prophecy\\Doubler\\NameGenerator' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Doubler/NameGenerator.php', + 'Prophecy\\Exception\\Call\\UnexpectedCallException' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Exception/Call/UnexpectedCallException.php', + 'Prophecy\\Exception\\Doubler\\ClassCreatorException' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Exception/Doubler/ClassCreatorException.php', + 'Prophecy\\Exception\\Doubler\\ClassMirrorException' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Exception/Doubler/ClassMirrorException.php', + 'Prophecy\\Exception\\Doubler\\ClassNotFoundException' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Exception/Doubler/ClassNotFoundException.php', + 'Prophecy\\Exception\\Doubler\\DoubleException' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Exception/Doubler/DoubleException.php', + 'Prophecy\\Exception\\Doubler\\DoublerException' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Exception/Doubler/DoublerException.php', + 'Prophecy\\Exception\\Doubler\\InterfaceNotFoundException' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Exception/Doubler/InterfaceNotFoundException.php', + 'Prophecy\\Exception\\Doubler\\MethodNotExtendableException' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Exception/Doubler/MethodNotExtendableException.php', + 'Prophecy\\Exception\\Doubler\\MethodNotFoundException' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Exception/Doubler/MethodNotFoundException.php', + 'Prophecy\\Exception\\Doubler\\ReturnByReferenceException' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Exception/Doubler/ReturnByReferenceException.php', + 'Prophecy\\Exception\\Exception' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Exception/Exception.php', + 'Prophecy\\Exception\\InvalidArgumentException' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Exception/InvalidArgumentException.php', + 'Prophecy\\Exception\\Prediction\\AggregateException' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Exception/Prediction/AggregateException.php', + 'Prophecy\\Exception\\Prediction\\FailedPredictionException' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Exception/Prediction/FailedPredictionException.php', + 'Prophecy\\Exception\\Prediction\\NoCallsException' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Exception/Prediction/NoCallsException.php', + 'Prophecy\\Exception\\Prediction\\PredictionException' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Exception/Prediction/PredictionException.php', + 'Prophecy\\Exception\\Prediction\\UnexpectedCallsCountException' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Exception/Prediction/UnexpectedCallsCountException.php', + 'Prophecy\\Exception\\Prediction\\UnexpectedCallsException' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Exception/Prediction/UnexpectedCallsException.php', + 'Prophecy\\Exception\\Prophecy\\MethodProphecyException' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Exception/Prophecy/MethodProphecyException.php', + 'Prophecy\\Exception\\Prophecy\\ObjectProphecyException' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Exception/Prophecy/ObjectProphecyException.php', + 'Prophecy\\Exception\\Prophecy\\ProphecyException' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Exception/Prophecy/ProphecyException.php', + 'Prophecy\\PhpDocumentor\\ClassAndInterfaceTagRetriever' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/PhpDocumentor/ClassAndInterfaceTagRetriever.php', + 'Prophecy\\PhpDocumentor\\ClassTagRetriever' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/PhpDocumentor/ClassTagRetriever.php', + 'Prophecy\\PhpDocumentor\\LegacyClassTagRetriever' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/PhpDocumentor/LegacyClassTagRetriever.php', + 'Prophecy\\PhpDocumentor\\MethodTagRetrieverInterface' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/PhpDocumentor/MethodTagRetrieverInterface.php', + 'Prophecy\\Prediction\\CallPrediction' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Prediction/CallPrediction.php', + 'Prophecy\\Prediction\\CallTimesPrediction' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Prediction/CallTimesPrediction.php', + 'Prophecy\\Prediction\\CallbackPrediction' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Prediction/CallbackPrediction.php', + 'Prophecy\\Prediction\\NoCallsPrediction' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Prediction/NoCallsPrediction.php', + 'Prophecy\\Prediction\\PredictionInterface' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Prediction/PredictionInterface.php', + 'Prophecy\\Promise\\CallbackPromise' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Promise/CallbackPromise.php', + 'Prophecy\\Promise\\PromiseInterface' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Promise/PromiseInterface.php', + 'Prophecy\\Promise\\ReturnArgumentPromise' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Promise/ReturnArgumentPromise.php', + 'Prophecy\\Promise\\ReturnPromise' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Promise/ReturnPromise.php', + 'Prophecy\\Promise\\ThrowPromise' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Promise/ThrowPromise.php', + 'Prophecy\\Prophecy\\MethodProphecy' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Prophecy/MethodProphecy.php', + 'Prophecy\\Prophecy\\ObjectProphecy' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Prophecy/ObjectProphecy.php', + 'Prophecy\\Prophecy\\ProphecyInterface' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Prophecy/ProphecyInterface.php', + 'Prophecy\\Prophecy\\ProphecySubjectInterface' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Prophecy/ProphecySubjectInterface.php', + 'Prophecy\\Prophecy\\Revealer' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Prophecy/Revealer.php', + 'Prophecy\\Prophecy\\RevealerInterface' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Prophecy/RevealerInterface.php', + 'Prophecy\\Prophet' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Prophet.php', + 'Prophecy\\Util\\ExportUtil' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Util/ExportUtil.php', + 'Prophecy\\Util\\StringUtil' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Util/StringUtil.php', + 'Psr\\Container\\ContainerExceptionInterface' => __DIR__ . '/..' . '/psr/container/src/ContainerExceptionInterface.php', + 'Psr\\Container\\ContainerInterface' => __DIR__ . '/..' . '/psr/container/src/ContainerInterface.php', + 'Psr\\Container\\NotFoundExceptionInterface' => __DIR__ . '/..' . '/psr/container/src/NotFoundExceptionInterface.php', + 'Psr\\Log\\AbstractLogger' => __DIR__ . '/..' . '/psr/log/Psr/Log/AbstractLogger.php', + 'Psr\\Log\\InvalidArgumentException' => __DIR__ . '/..' . '/psr/log/Psr/Log/InvalidArgumentException.php', + 'Psr\\Log\\LogLevel' => __DIR__ . '/..' . '/psr/log/Psr/Log/LogLevel.php', + 'Psr\\Log\\LoggerAwareInterface' => __DIR__ . '/..' . '/psr/log/Psr/Log/LoggerAwareInterface.php', + 'Psr\\Log\\LoggerAwareTrait' => __DIR__ . '/..' . '/psr/log/Psr/Log/LoggerAwareTrait.php', + 'Psr\\Log\\LoggerInterface' => __DIR__ . '/..' . '/psr/log/Psr/Log/LoggerInterface.php', + 'Psr\\Log\\LoggerTrait' => __DIR__ . '/..' . '/psr/log/Psr/Log/LoggerTrait.php', + 'Psr\\Log\\NullLogger' => __DIR__ . '/..' . '/psr/log/Psr/Log/NullLogger.php', + 'Psr\\Log\\Test\\DummyTest' => __DIR__ . '/..' . '/psr/log/Psr/Log/Test/LoggerInterfaceTest.php', + 'Psr\\Log\\Test\\LoggerInterfaceTest' => __DIR__ . '/..' . '/psr/log/Psr/Log/Test/LoggerInterfaceTest.php', + 'Psr\\SimpleCache\\CacheException' => __DIR__ . '/..' . '/psr/simple-cache/src/CacheException.php', + 'Psr\\SimpleCache\\CacheInterface' => __DIR__ . '/..' . '/psr/simple-cache/src/CacheInterface.php', + 'Psr\\SimpleCache\\InvalidArgumentException' => __DIR__ . '/..' . '/psr/simple-cache/src/InvalidArgumentException.php', + 'Psy\\Autoloader' => __DIR__ . '/..' . '/psy/psysh/src/Psy/Autoloader.php', + 'Psy\\CodeCleaner' => __DIR__ . '/..' . '/psy/psysh/src/Psy/CodeCleaner.php', + 'Psy\\CodeCleaner\\AbstractClassPass' => __DIR__ . '/..' . '/psy/psysh/src/Psy/CodeCleaner/AbstractClassPass.php', + 'Psy\\CodeCleaner\\AssignThisVariablePass' => __DIR__ . '/..' . '/psy/psysh/src/Psy/CodeCleaner/AssignThisVariablePass.php', + 'Psy\\CodeCleaner\\CallTimePassByReferencePass' => __DIR__ . '/..' . '/psy/psysh/src/Psy/CodeCleaner/CallTimePassByReferencePass.php', + 'Psy\\CodeCleaner\\CalledClassPass' => __DIR__ . '/..' . '/psy/psysh/src/Psy/CodeCleaner/CalledClassPass.php', + 'Psy\\CodeCleaner\\CodeCleanerPass' => __DIR__ . '/..' . '/psy/psysh/src/Psy/CodeCleaner/CodeCleanerPass.php', + 'Psy\\CodeCleaner\\ExitPass' => __DIR__ . '/..' . '/psy/psysh/src/Psy/CodeCleaner/ExitPass.php', + 'Psy\\CodeCleaner\\FinalClassPass' => __DIR__ . '/..' . '/psy/psysh/src/Psy/CodeCleaner/FinalClassPass.php', + 'Psy\\CodeCleaner\\FunctionContextPass' => __DIR__ . '/..' . '/psy/psysh/src/Psy/CodeCleaner/FunctionContextPass.php', + 'Psy\\CodeCleaner\\FunctionReturnInWriteContextPass' => __DIR__ . '/..' . '/psy/psysh/src/Psy/CodeCleaner/FunctionReturnInWriteContextPass.php', + 'Psy\\CodeCleaner\\ImplicitReturnPass' => __DIR__ . '/..' . '/psy/psysh/src/Psy/CodeCleaner/ImplicitReturnPass.php', + 'Psy\\CodeCleaner\\InstanceOfPass' => __DIR__ . '/..' . '/psy/psysh/src/Psy/CodeCleaner/InstanceOfPass.php', + 'Psy\\CodeCleaner\\LeavePsyshAlonePass' => __DIR__ . '/..' . '/psy/psysh/src/Psy/CodeCleaner/LeavePsyshAlonePass.php', + 'Psy\\CodeCleaner\\LegacyEmptyPass' => __DIR__ . '/..' . '/psy/psysh/src/Psy/CodeCleaner/LegacyEmptyPass.php', + 'Psy\\CodeCleaner\\LoopContextPass' => __DIR__ . '/..' . '/psy/psysh/src/Psy/CodeCleaner/LoopContextPass.php', + 'Psy\\CodeCleaner\\MagicConstantsPass' => __DIR__ . '/..' . '/psy/psysh/src/Psy/CodeCleaner/MagicConstantsPass.php', + 'Psy\\CodeCleaner\\NamespaceAwarePass' => __DIR__ . '/..' . '/psy/psysh/src/Psy/CodeCleaner/NamespaceAwarePass.php', + 'Psy\\CodeCleaner\\NamespacePass' => __DIR__ . '/..' . '/psy/psysh/src/Psy/CodeCleaner/NamespacePass.php', + 'Psy\\CodeCleaner\\NoReturnValue' => __DIR__ . '/..' . '/psy/psysh/src/Psy/CodeCleaner/NoReturnValue.php', + 'Psy\\CodeCleaner\\PassableByReferencePass' => __DIR__ . '/..' . '/psy/psysh/src/Psy/CodeCleaner/PassableByReferencePass.php', + 'Psy\\CodeCleaner\\RequirePass' => __DIR__ . '/..' . '/psy/psysh/src/Psy/CodeCleaner/RequirePass.php', + 'Psy\\CodeCleaner\\StaticConstructorPass' => __DIR__ . '/..' . '/psy/psysh/src/Psy/CodeCleaner/StaticConstructorPass.php', + 'Psy\\CodeCleaner\\StrictTypesPass' => __DIR__ . '/..' . '/psy/psysh/src/Psy/CodeCleaner/StrictTypesPass.php', + 'Psy\\CodeCleaner\\UseStatementPass' => __DIR__ . '/..' . '/psy/psysh/src/Psy/CodeCleaner/UseStatementPass.php', + 'Psy\\CodeCleaner\\ValidClassNamePass' => __DIR__ . '/..' . '/psy/psysh/src/Psy/CodeCleaner/ValidClassNamePass.php', + 'Psy\\CodeCleaner\\ValidConstantPass' => __DIR__ . '/..' . '/psy/psysh/src/Psy/CodeCleaner/ValidConstantPass.php', + 'Psy\\CodeCleaner\\ValidFunctionNamePass' => __DIR__ . '/..' . '/psy/psysh/src/Psy/CodeCleaner/ValidFunctionNamePass.php', + 'Psy\\Command\\BufferCommand' => __DIR__ . '/..' . '/psy/psysh/src/Psy/Command/BufferCommand.php', + 'Psy\\Command\\ClearCommand' => __DIR__ . '/..' . '/psy/psysh/src/Psy/Command/ClearCommand.php', + 'Psy\\Command\\Command' => __DIR__ . '/..' . '/psy/psysh/src/Psy/Command/Command.php', + 'Psy\\Command\\DocCommand' => __DIR__ . '/..' . '/psy/psysh/src/Psy/Command/DocCommand.php', + 'Psy\\Command\\DumpCommand' => __DIR__ . '/..' . '/psy/psysh/src/Psy/Command/DumpCommand.php', + 'Psy\\Command\\ExitCommand' => __DIR__ . '/..' . '/psy/psysh/src/Psy/Command/ExitCommand.php', + 'Psy\\Command\\HelpCommand' => __DIR__ . '/..' . '/psy/psysh/src/Psy/Command/HelpCommand.php', + 'Psy\\Command\\HistoryCommand' => __DIR__ . '/..' . '/psy/psysh/src/Psy/Command/HistoryCommand.php', + 'Psy\\Command\\ListCommand' => __DIR__ . '/..' . '/psy/psysh/src/Psy/Command/ListCommand.php', + 'Psy\\Command\\ListCommand\\ClassConstantEnumerator' => __DIR__ . '/..' . '/psy/psysh/src/Psy/Command/ListCommand/ClassConstantEnumerator.php', + 'Psy\\Command\\ListCommand\\ClassEnumerator' => __DIR__ . '/..' . '/psy/psysh/src/Psy/Command/ListCommand/ClassEnumerator.php', + 'Psy\\Command\\ListCommand\\ConstantEnumerator' => __DIR__ . '/..' . '/psy/psysh/src/Psy/Command/ListCommand/ConstantEnumerator.php', + 'Psy\\Command\\ListCommand\\Enumerator' => __DIR__ . '/..' . '/psy/psysh/src/Psy/Command/ListCommand/Enumerator.php', + 'Psy\\Command\\ListCommand\\FunctionEnumerator' => __DIR__ . '/..' . '/psy/psysh/src/Psy/Command/ListCommand/FunctionEnumerator.php', + 'Psy\\Command\\ListCommand\\GlobalVariableEnumerator' => __DIR__ . '/..' . '/psy/psysh/src/Psy/Command/ListCommand/GlobalVariableEnumerator.php', + 'Psy\\Command\\ListCommand\\InterfaceEnumerator' => __DIR__ . '/..' . '/psy/psysh/src/Psy/Command/ListCommand/InterfaceEnumerator.php', + 'Psy\\Command\\ListCommand\\MethodEnumerator' => __DIR__ . '/..' . '/psy/psysh/src/Psy/Command/ListCommand/MethodEnumerator.php', + 'Psy\\Command\\ListCommand\\PropertyEnumerator' => __DIR__ . '/..' . '/psy/psysh/src/Psy/Command/ListCommand/PropertyEnumerator.php', + 'Psy\\Command\\ListCommand\\TraitEnumerator' => __DIR__ . '/..' . '/psy/psysh/src/Psy/Command/ListCommand/TraitEnumerator.php', + 'Psy\\Command\\ListCommand\\VariableEnumerator' => __DIR__ . '/..' . '/psy/psysh/src/Psy/Command/ListCommand/VariableEnumerator.php', + 'Psy\\Command\\ParseCommand' => __DIR__ . '/..' . '/psy/psysh/src/Psy/Command/ParseCommand.php', + 'Psy\\Command\\PsyVersionCommand' => __DIR__ . '/..' . '/psy/psysh/src/Psy/Command/PsyVersionCommand.php', + 'Psy\\Command\\ReflectingCommand' => __DIR__ . '/..' . '/psy/psysh/src/Psy/Command/ReflectingCommand.php', + 'Psy\\Command\\ShowCommand' => __DIR__ . '/..' . '/psy/psysh/src/Psy/Command/ShowCommand.php', + 'Psy\\Command\\SudoCommand' => __DIR__ . '/..' . '/psy/psysh/src/Psy/Command/SudoCommand.php', + 'Psy\\Command\\ThrowUpCommand' => __DIR__ . '/..' . '/psy/psysh/src/Psy/Command/ThrowUpCommand.php', + 'Psy\\Command\\TraceCommand' => __DIR__ . '/..' . '/psy/psysh/src/Psy/Command/TraceCommand.php', + 'Psy\\Command\\WhereamiCommand' => __DIR__ . '/..' . '/psy/psysh/src/Psy/Command/WhereamiCommand.php', + 'Psy\\Command\\WtfCommand' => __DIR__ . '/..' . '/psy/psysh/src/Psy/Command/WtfCommand.php', + 'Psy\\Compiler' => __DIR__ . '/..' . '/psy/psysh/src/Psy/Compiler.php', + 'Psy\\ConfigPaths' => __DIR__ . '/..' . '/psy/psysh/src/Psy/ConfigPaths.php', + 'Psy\\Configuration' => __DIR__ . '/..' . '/psy/psysh/src/Psy/Configuration.php', + 'Psy\\ConsoleColorFactory' => __DIR__ . '/..' . '/psy/psysh/src/Psy/ConsoleColorFactory.php', + 'Psy\\Context' => __DIR__ . '/..' . '/psy/psysh/src/Psy/Context.php', + 'Psy\\ContextAware' => __DIR__ . '/..' . '/psy/psysh/src/Psy/ContextAware.php', + 'Psy\\Exception\\BreakException' => __DIR__ . '/..' . '/psy/psysh/src/Psy/Exception/BreakException.php', + 'Psy\\Exception\\DeprecatedException' => __DIR__ . '/..' . '/psy/psysh/src/Psy/Exception/DeprecatedException.php', + 'Psy\\Exception\\ErrorException' => __DIR__ . '/..' . '/psy/psysh/src/Psy/Exception/ErrorException.php', + 'Psy\\Exception\\Exception' => __DIR__ . '/..' . '/psy/psysh/src/Psy/Exception/Exception.php', + 'Psy\\Exception\\FatalErrorException' => __DIR__ . '/..' . '/psy/psysh/src/Psy/Exception/FatalErrorException.php', + 'Psy\\Exception\\ParseErrorException' => __DIR__ . '/..' . '/psy/psysh/src/Psy/Exception/ParseErrorException.php', + 'Psy\\Exception\\RuntimeException' => __DIR__ . '/..' . '/psy/psysh/src/Psy/Exception/RuntimeException.php', + 'Psy\\Exception\\ThrowUpException' => __DIR__ . '/..' . '/psy/psysh/src/Psy/Exception/ThrowUpException.php', + 'Psy\\Exception\\TypeErrorException' => __DIR__ . '/..' . '/psy/psysh/src/Psy/Exception/TypeErrorException.php', + 'Psy\\ExecutionLoop\\ForkingLoop' => __DIR__ . '/..' . '/psy/psysh/src/Psy/ExecutionLoop/ForkingLoop.php', + 'Psy\\ExecutionLoop\\Loop' => __DIR__ . '/..' . '/psy/psysh/src/Psy/ExecutionLoop/Loop.php', + 'Psy\\Formatter\\CodeFormatter' => __DIR__ . '/..' . '/psy/psysh/src/Psy/Formatter/CodeFormatter.php', + 'Psy\\Formatter\\DocblockFormatter' => __DIR__ . '/..' . '/psy/psysh/src/Psy/Formatter/DocblockFormatter.php', + 'Psy\\Formatter\\Formatter' => __DIR__ . '/..' . '/psy/psysh/src/Psy/Formatter/Formatter.php', + 'Psy\\Formatter\\SignatureFormatter' => __DIR__ . '/..' . '/psy/psysh/src/Psy/Formatter/SignatureFormatter.php', + 'Psy\\Input\\CodeArgument' => __DIR__ . '/..' . '/psy/psysh/src/Psy/Input/CodeArgument.php', + 'Psy\\Input\\FilterOptions' => __DIR__ . '/..' . '/psy/psysh/src/Psy/Input/FilterOptions.php', + 'Psy\\Input\\ShellInput' => __DIR__ . '/..' . '/psy/psysh/src/Psy/Input/ShellInput.php', + 'Psy\\Input\\SilentInput' => __DIR__ . '/..' . '/psy/psysh/src/Psy/Input/SilentInput.php', + 'Psy\\Output\\OutputPager' => __DIR__ . '/..' . '/psy/psysh/src/Psy/Output/OutputPager.php', + 'Psy\\Output\\PassthruPager' => __DIR__ . '/..' . '/psy/psysh/src/Psy/Output/PassthruPager.php', + 'Psy\\Output\\ProcOutputPager' => __DIR__ . '/..' . '/psy/psysh/src/Psy/Output/ProcOutputPager.php', + 'Psy\\Output\\ShellOutput' => __DIR__ . '/..' . '/psy/psysh/src/Psy/Output/ShellOutput.php', + 'Psy\\ParserFactory' => __DIR__ . '/..' . '/psy/psysh/src/Psy/ParserFactory.php', + 'Psy\\Readline\\GNUReadline' => __DIR__ . '/..' . '/psy/psysh/src/Psy/Readline/GNUReadline.php', + 'Psy\\Readline\\HoaConsole' => __DIR__ . '/..' . '/psy/psysh/src/Psy/Readline/HoaConsole.php', + 'Psy\\Readline\\Libedit' => __DIR__ . '/..' . '/psy/psysh/src/Psy/Readline/Libedit.php', + 'Psy\\Readline\\Readline' => __DIR__ . '/..' . '/psy/psysh/src/Psy/Readline/Readline.php', + 'Psy\\Readline\\Transient' => __DIR__ . '/..' . '/psy/psysh/src/Psy/Readline/Transient.php', + 'Psy\\Reflection\\ReflectionConstant' => __DIR__ . '/..' . '/psy/psysh/src/Psy/Reflection/ReflectionConstant.php', + 'Psy\\Reflection\\ReflectionLanguageConstruct' => __DIR__ . '/..' . '/psy/psysh/src/Psy/Reflection/ReflectionLanguageConstruct.php', + 'Psy\\Reflection\\ReflectionLanguageConstructParameter' => __DIR__ . '/..' . '/psy/psysh/src/Psy/Reflection/ReflectionLanguageConstructParameter.php', + 'Psy\\Shell' => __DIR__ . '/..' . '/psy/psysh/src/Psy/Shell.php', + 'Psy\\Sudo' => __DIR__ . '/..' . '/psy/psysh/src/Psy/Sudo.php', + 'Psy\\Sudo\\SudoVisitor' => __DIR__ . '/..' . '/psy/psysh/src/Psy/Sudo/SudoVisitor.php', + 'Psy\\TabCompletion\\AutoCompleter' => __DIR__ . '/..' . '/psy/psysh/src/Psy/TabCompletion/AutoCompleter.php', + 'Psy\\TabCompletion\\Matcher\\AbstractContextAwareMatcher' => __DIR__ . '/..' . '/psy/psysh/src/Psy/TabCompletion/Matcher/AbstractContextAwareMatcher.php', + 'Psy\\TabCompletion\\Matcher\\AbstractMatcher' => __DIR__ . '/..' . '/psy/psysh/src/Psy/TabCompletion/Matcher/AbstractMatcher.php', + 'Psy\\TabCompletion\\Matcher\\ClassAttributesMatcher' => __DIR__ . '/..' . '/psy/psysh/src/Psy/TabCompletion/Matcher/ClassAttributesMatcher.php', + 'Psy\\TabCompletion\\Matcher\\ClassMethodsMatcher' => __DIR__ . '/..' . '/psy/psysh/src/Psy/TabCompletion/Matcher/ClassMethodsMatcher.php', + 'Psy\\TabCompletion\\Matcher\\ClassNamesMatcher' => __DIR__ . '/..' . '/psy/psysh/src/Psy/TabCompletion/Matcher/ClassNamesMatcher.php', + 'Psy\\TabCompletion\\Matcher\\CommandsMatcher' => __DIR__ . '/..' . '/psy/psysh/src/Psy/TabCompletion/Matcher/CommandsMatcher.php', + 'Psy\\TabCompletion\\Matcher\\ConstantsMatcher' => __DIR__ . '/..' . '/psy/psysh/src/Psy/TabCompletion/Matcher/ConstantsMatcher.php', + 'Psy\\TabCompletion\\Matcher\\FunctionsMatcher' => __DIR__ . '/..' . '/psy/psysh/src/Psy/TabCompletion/Matcher/FunctionsMatcher.php', + 'Psy\\TabCompletion\\Matcher\\KeywordsMatcher' => __DIR__ . '/..' . '/psy/psysh/src/Psy/TabCompletion/Matcher/KeywordsMatcher.php', + 'Psy\\TabCompletion\\Matcher\\MongoClientMatcher' => __DIR__ . '/..' . '/psy/psysh/src/Psy/TabCompletion/Matcher/MongoClientMatcher.php', + 'Psy\\TabCompletion\\Matcher\\MongoDatabaseMatcher' => __DIR__ . '/..' . '/psy/psysh/src/Psy/TabCompletion/Matcher/MongoDatabaseMatcher.php', + 'Psy\\TabCompletion\\Matcher\\ObjectAttributesMatcher' => __DIR__ . '/..' . '/psy/psysh/src/Psy/TabCompletion/Matcher/ObjectAttributesMatcher.php', + 'Psy\\TabCompletion\\Matcher\\ObjectMethodsMatcher' => __DIR__ . '/..' . '/psy/psysh/src/Psy/TabCompletion/Matcher/ObjectMethodsMatcher.php', + 'Psy\\TabCompletion\\Matcher\\VariablesMatcher' => __DIR__ . '/..' . '/psy/psysh/src/Psy/TabCompletion/Matcher/VariablesMatcher.php', + 'Psy\\Util\\Docblock' => __DIR__ . '/..' . '/psy/psysh/src/Psy/Util/Docblock.php', + 'Psy\\Util\\Json' => __DIR__ . '/..' . '/psy/psysh/src/Psy/Util/Json.php', + 'Psy\\Util\\Mirror' => __DIR__ . '/..' . '/psy/psysh/src/Psy/Util/Mirror.php', + 'Psy\\Util\\Str' => __DIR__ . '/..' . '/psy/psysh/src/Psy/Util/Str.php', + 'Psy\\VarDumper\\Cloner' => __DIR__ . '/..' . '/psy/psysh/src/Psy/VarDumper/Cloner.php', + 'Psy\\VarDumper\\Dumper' => __DIR__ . '/..' . '/psy/psysh/src/Psy/VarDumper/Dumper.php', + 'Psy\\VarDumper\\Presenter' => __DIR__ . '/..' . '/psy/psysh/src/Psy/VarDumper/Presenter.php', + 'Psy\\VarDumper\\PresenterAware' => __DIR__ . '/..' . '/psy/psysh/src/Psy/VarDumper/PresenterAware.php', + 'Psy\\VersionUpdater\\Checker' => __DIR__ . '/..' . '/psy/psysh/src/Psy/VersionUpdater/Checker.php', + 'Psy\\VersionUpdater\\GitHubChecker' => __DIR__ . '/..' . '/psy/psysh/src/Psy/VersionUpdater/GitHubChecker.php', + 'Psy\\VersionUpdater\\IntervalChecker' => __DIR__ . '/..' . '/psy/psysh/src/Psy/VersionUpdater/IntervalChecker.php', + 'Psy\\VersionUpdater\\NoopChecker' => __DIR__ . '/..' . '/psy/psysh/src/Psy/VersionUpdater/NoopChecker.php', + 'Ramsey\\Uuid\\BinaryUtils' => __DIR__ . '/..' . '/ramsey/uuid/src/BinaryUtils.php', + 'Ramsey\\Uuid\\Builder\\DefaultUuidBuilder' => __DIR__ . '/..' . '/ramsey/uuid/src/Builder/DefaultUuidBuilder.php', + 'Ramsey\\Uuid\\Builder\\DegradedUuidBuilder' => __DIR__ . '/..' . '/ramsey/uuid/src/Builder/DegradedUuidBuilder.php', + 'Ramsey\\Uuid\\Builder\\UuidBuilderInterface' => __DIR__ . '/..' . '/ramsey/uuid/src/Builder/UuidBuilderInterface.php', + 'Ramsey\\Uuid\\Codec\\CodecInterface' => __DIR__ . '/..' . '/ramsey/uuid/src/Codec/CodecInterface.php', + 'Ramsey\\Uuid\\Codec\\GuidStringCodec' => __DIR__ . '/..' . '/ramsey/uuid/src/Codec/GuidStringCodec.php', + 'Ramsey\\Uuid\\Codec\\OrderedTimeCodec' => __DIR__ . '/..' . '/ramsey/uuid/src/Codec/OrderedTimeCodec.php', + 'Ramsey\\Uuid\\Codec\\StringCodec' => __DIR__ . '/..' . '/ramsey/uuid/src/Codec/StringCodec.php', + 'Ramsey\\Uuid\\Codec\\TimestampFirstCombCodec' => __DIR__ . '/..' . '/ramsey/uuid/src/Codec/TimestampFirstCombCodec.php', + 'Ramsey\\Uuid\\Codec\\TimestampLastCombCodec' => __DIR__ . '/..' . '/ramsey/uuid/src/Codec/TimestampLastCombCodec.php', + 'Ramsey\\Uuid\\Converter\\NumberConverterInterface' => __DIR__ . '/..' . '/ramsey/uuid/src/Converter/NumberConverterInterface.php', + 'Ramsey\\Uuid\\Converter\\Number\\BigNumberConverter' => __DIR__ . '/..' . '/ramsey/uuid/src/Converter/Number/BigNumberConverter.php', + 'Ramsey\\Uuid\\Converter\\Number\\DegradedNumberConverter' => __DIR__ . '/..' . '/ramsey/uuid/src/Converter/Number/DegradedNumberConverter.php', + 'Ramsey\\Uuid\\Converter\\TimeConverterInterface' => __DIR__ . '/..' . '/ramsey/uuid/src/Converter/TimeConverterInterface.php', + 'Ramsey\\Uuid\\Converter\\Time\\BigNumberTimeConverter' => __DIR__ . '/..' . '/ramsey/uuid/src/Converter/Time/BigNumberTimeConverter.php', + 'Ramsey\\Uuid\\Converter\\Time\\DegradedTimeConverter' => __DIR__ . '/..' . '/ramsey/uuid/src/Converter/Time/DegradedTimeConverter.php', + 'Ramsey\\Uuid\\Converter\\Time\\PhpTimeConverter' => __DIR__ . '/..' . '/ramsey/uuid/src/Converter/Time/PhpTimeConverter.php', + 'Ramsey\\Uuid\\DegradedUuid' => __DIR__ . '/..' . '/ramsey/uuid/src/DegradedUuid.php', + 'Ramsey\\Uuid\\Exception\\InvalidUuidStringException' => __DIR__ . '/..' . '/ramsey/uuid/src/Exception/InvalidUuidStringException.php', + 'Ramsey\\Uuid\\Exception\\UnsatisfiedDependencyException' => __DIR__ . '/..' . '/ramsey/uuid/src/Exception/UnsatisfiedDependencyException.php', + 'Ramsey\\Uuid\\Exception\\UnsupportedOperationException' => __DIR__ . '/..' . '/ramsey/uuid/src/Exception/UnsupportedOperationException.php', + 'Ramsey\\Uuid\\FeatureSet' => __DIR__ . '/..' . '/ramsey/uuid/src/FeatureSet.php', + 'Ramsey\\Uuid\\Generator\\CombGenerator' => __DIR__ . '/..' . '/ramsey/uuid/src/Generator/CombGenerator.php', + 'Ramsey\\Uuid\\Generator\\DefaultTimeGenerator' => __DIR__ . '/..' . '/ramsey/uuid/src/Generator/DefaultTimeGenerator.php', + 'Ramsey\\Uuid\\Generator\\MtRandGenerator' => __DIR__ . '/..' . '/ramsey/uuid/src/Generator/MtRandGenerator.php', + 'Ramsey\\Uuid\\Generator\\OpenSslGenerator' => __DIR__ . '/..' . '/ramsey/uuid/src/Generator/OpenSslGenerator.php', + 'Ramsey\\Uuid\\Generator\\PeclUuidRandomGenerator' => __DIR__ . '/..' . '/ramsey/uuid/src/Generator/PeclUuidRandomGenerator.php', + 'Ramsey\\Uuid\\Generator\\PeclUuidTimeGenerator' => __DIR__ . '/..' . '/ramsey/uuid/src/Generator/PeclUuidTimeGenerator.php', + 'Ramsey\\Uuid\\Generator\\RandomBytesGenerator' => __DIR__ . '/..' . '/ramsey/uuid/src/Generator/RandomBytesGenerator.php', + 'Ramsey\\Uuid\\Generator\\RandomGeneratorFactory' => __DIR__ . '/..' . '/ramsey/uuid/src/Generator/RandomGeneratorFactory.php', + 'Ramsey\\Uuid\\Generator\\RandomGeneratorInterface' => __DIR__ . '/..' . '/ramsey/uuid/src/Generator/RandomGeneratorInterface.php', + 'Ramsey\\Uuid\\Generator\\RandomLibAdapter' => __DIR__ . '/..' . '/ramsey/uuid/src/Generator/RandomLibAdapter.php', + 'Ramsey\\Uuid\\Generator\\SodiumRandomGenerator' => __DIR__ . '/..' . '/ramsey/uuid/src/Generator/SodiumRandomGenerator.php', + 'Ramsey\\Uuid\\Generator\\TimeGeneratorFactory' => __DIR__ . '/..' . '/ramsey/uuid/src/Generator/TimeGeneratorFactory.php', + 'Ramsey\\Uuid\\Generator\\TimeGeneratorInterface' => __DIR__ . '/..' . '/ramsey/uuid/src/Generator/TimeGeneratorInterface.php', + 'Ramsey\\Uuid\\Provider\\NodeProviderInterface' => __DIR__ . '/..' . '/ramsey/uuid/src/Provider/NodeProviderInterface.php', + 'Ramsey\\Uuid\\Provider\\Node\\FallbackNodeProvider' => __DIR__ . '/..' . '/ramsey/uuid/src/Provider/Node/FallbackNodeProvider.php', + 'Ramsey\\Uuid\\Provider\\Node\\RandomNodeProvider' => __DIR__ . '/..' . '/ramsey/uuid/src/Provider/Node/RandomNodeProvider.php', + 'Ramsey\\Uuid\\Provider\\Node\\SystemNodeProvider' => __DIR__ . '/..' . '/ramsey/uuid/src/Provider/Node/SystemNodeProvider.php', + 'Ramsey\\Uuid\\Provider\\TimeProviderInterface' => __DIR__ . '/..' . '/ramsey/uuid/src/Provider/TimeProviderInterface.php', + 'Ramsey\\Uuid\\Provider\\Time\\FixedTimeProvider' => __DIR__ . '/..' . '/ramsey/uuid/src/Provider/Time/FixedTimeProvider.php', + 'Ramsey\\Uuid\\Provider\\Time\\SystemTimeProvider' => __DIR__ . '/..' . '/ramsey/uuid/src/Provider/Time/SystemTimeProvider.php', + 'Ramsey\\Uuid\\Uuid' => __DIR__ . '/..' . '/ramsey/uuid/src/Uuid.php', + 'Ramsey\\Uuid\\UuidFactory' => __DIR__ . '/..' . '/ramsey/uuid/src/UuidFactory.php', + 'Ramsey\\Uuid\\UuidFactoryInterface' => __DIR__ . '/..' . '/ramsey/uuid/src/UuidFactoryInterface.php', + 'Ramsey\\Uuid\\UuidInterface' => __DIR__ . '/..' . '/ramsey/uuid/src/UuidInterface.php', 'SebastianBergmann\\CodeCoverage\\CodeCoverage' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/CodeCoverage.php', 'SebastianBergmann\\CodeCoverage\\CoveredCodeNotExecutedException' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Exception/CoveredCodeNotExecutedException.php', 'SebastianBergmann\\CodeCoverage\\Driver\\Driver' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Driver/Driver.php', @@ -897,6 +2942,534 @@ class ComposerStaticInit0ef7b7c57b5051a6692d56ad58e04e79 'SebastianBergmann\\RecursionContext\\InvalidArgumentException' => __DIR__ . '/..' . '/sebastian/recursion-context/src/InvalidArgumentException.php', 'SebastianBergmann\\ResourceOperations\\ResourceOperations' => __DIR__ . '/..' . '/sebastian/resource-operations/src/ResourceOperations.php', 'SebastianBergmann\\Version' => __DIR__ . '/..' . '/sebastian/version/src/Version.php', + 'Symfony\\Component\\Console\\Application' => __DIR__ . '/..' . '/symfony/console/Application.php', + 'Symfony\\Component\\Console\\Command\\Command' => __DIR__ . '/..' . '/symfony/console/Command/Command.php', + 'Symfony\\Component\\Console\\Command\\HelpCommand' => __DIR__ . '/..' . '/symfony/console/Command/HelpCommand.php', + 'Symfony\\Component\\Console\\Command\\ListCommand' => __DIR__ . '/..' . '/symfony/console/Command/ListCommand.php', + 'Symfony\\Component\\Console\\Command\\LockableTrait' => __DIR__ . '/..' . '/symfony/console/Command/LockableTrait.php', + 'Symfony\\Component\\Console\\ConsoleEvents' => __DIR__ . '/..' . '/symfony/console/ConsoleEvents.php', + 'Symfony\\Component\\Console\\DependencyInjection\\AddConsoleCommandPass' => __DIR__ . '/..' . '/symfony/console/DependencyInjection/AddConsoleCommandPass.php', + 'Symfony\\Component\\Console\\Descriptor\\ApplicationDescription' => __DIR__ . '/..' . '/symfony/console/Descriptor/ApplicationDescription.php', + 'Symfony\\Component\\Console\\Descriptor\\Descriptor' => __DIR__ . '/..' . '/symfony/console/Descriptor/Descriptor.php', + 'Symfony\\Component\\Console\\Descriptor\\DescriptorInterface' => __DIR__ . '/..' . '/symfony/console/Descriptor/DescriptorInterface.php', + 'Symfony\\Component\\Console\\Descriptor\\JsonDescriptor' => __DIR__ . '/..' . '/symfony/console/Descriptor/JsonDescriptor.php', + 'Symfony\\Component\\Console\\Descriptor\\MarkdownDescriptor' => __DIR__ . '/..' . '/symfony/console/Descriptor/MarkdownDescriptor.php', + 'Symfony\\Component\\Console\\Descriptor\\TextDescriptor' => __DIR__ . '/..' . '/symfony/console/Descriptor/TextDescriptor.php', + 'Symfony\\Component\\Console\\Descriptor\\XmlDescriptor' => __DIR__ . '/..' . '/symfony/console/Descriptor/XmlDescriptor.php', + 'Symfony\\Component\\Console\\EventListener\\ErrorListener' => __DIR__ . '/..' . '/symfony/console/EventListener/ErrorListener.php', + 'Symfony\\Component\\Console\\Event\\ConsoleCommandEvent' => __DIR__ . '/..' . '/symfony/console/Event/ConsoleCommandEvent.php', + 'Symfony\\Component\\Console\\Event\\ConsoleErrorEvent' => __DIR__ . '/..' . '/symfony/console/Event/ConsoleErrorEvent.php', + 'Symfony\\Component\\Console\\Event\\ConsoleEvent' => __DIR__ . '/..' . '/symfony/console/Event/ConsoleEvent.php', + 'Symfony\\Component\\Console\\Event\\ConsoleExceptionEvent' => __DIR__ . '/..' . '/symfony/console/Event/ConsoleExceptionEvent.php', + 'Symfony\\Component\\Console\\Event\\ConsoleTerminateEvent' => __DIR__ . '/..' . '/symfony/console/Event/ConsoleTerminateEvent.php', + 'Symfony\\Component\\Console\\Exception\\CommandNotFoundException' => __DIR__ . '/..' . '/symfony/console/Exception/CommandNotFoundException.php', + 'Symfony\\Component\\Console\\Exception\\ExceptionInterface' => __DIR__ . '/..' . '/symfony/console/Exception/ExceptionInterface.php', + 'Symfony\\Component\\Console\\Exception\\InvalidArgumentException' => __DIR__ . '/..' . '/symfony/console/Exception/InvalidArgumentException.php', + 'Symfony\\Component\\Console\\Exception\\InvalidOptionException' => __DIR__ . '/..' . '/symfony/console/Exception/InvalidOptionException.php', + 'Symfony\\Component\\Console\\Exception\\LogicException' => __DIR__ . '/..' . '/symfony/console/Exception/LogicException.php', + 'Symfony\\Component\\Console\\Exception\\RuntimeException' => __DIR__ . '/..' . '/symfony/console/Exception/RuntimeException.php', + 'Symfony\\Component\\Console\\Formatter\\OutputFormatter' => __DIR__ . '/..' . '/symfony/console/Formatter/OutputFormatter.php', + 'Symfony\\Component\\Console\\Formatter\\OutputFormatterInterface' => __DIR__ . '/..' . '/symfony/console/Formatter/OutputFormatterInterface.php', + 'Symfony\\Component\\Console\\Formatter\\OutputFormatterStyle' => __DIR__ . '/..' . '/symfony/console/Formatter/OutputFormatterStyle.php', + 'Symfony\\Component\\Console\\Formatter\\OutputFormatterStyleInterface' => __DIR__ . '/..' . '/symfony/console/Formatter/OutputFormatterStyleInterface.php', + 'Symfony\\Component\\Console\\Formatter\\OutputFormatterStyleStack' => __DIR__ . '/..' . '/symfony/console/Formatter/OutputFormatterStyleStack.php', + 'Symfony\\Component\\Console\\Helper\\DebugFormatterHelper' => __DIR__ . '/..' . '/symfony/console/Helper/DebugFormatterHelper.php', + 'Symfony\\Component\\Console\\Helper\\DescriptorHelper' => __DIR__ . '/..' . '/symfony/console/Helper/DescriptorHelper.php', + 'Symfony\\Component\\Console\\Helper\\FormatterHelper' => __DIR__ . '/..' . '/symfony/console/Helper/FormatterHelper.php', + 'Symfony\\Component\\Console\\Helper\\Helper' => __DIR__ . '/..' . '/symfony/console/Helper/Helper.php', + 'Symfony\\Component\\Console\\Helper\\HelperInterface' => __DIR__ . '/..' . '/symfony/console/Helper/HelperInterface.php', + 'Symfony\\Component\\Console\\Helper\\HelperSet' => __DIR__ . '/..' . '/symfony/console/Helper/HelperSet.php', + 'Symfony\\Component\\Console\\Helper\\InputAwareHelper' => __DIR__ . '/..' . '/symfony/console/Helper/InputAwareHelper.php', + 'Symfony\\Component\\Console\\Helper\\ProcessHelper' => __DIR__ . '/..' . '/symfony/console/Helper/ProcessHelper.php', + 'Symfony\\Component\\Console\\Helper\\ProgressBar' => __DIR__ . '/..' . '/symfony/console/Helper/ProgressBar.php', + 'Symfony\\Component\\Console\\Helper\\ProgressIndicator' => __DIR__ . '/..' . '/symfony/console/Helper/ProgressIndicator.php', + 'Symfony\\Component\\Console\\Helper\\QuestionHelper' => __DIR__ . '/..' . '/symfony/console/Helper/QuestionHelper.php', + 'Symfony\\Component\\Console\\Helper\\SymfonyQuestionHelper' => __DIR__ . '/..' . '/symfony/console/Helper/SymfonyQuestionHelper.php', + 'Symfony\\Component\\Console\\Helper\\Table' => __DIR__ . '/..' . '/symfony/console/Helper/Table.php', + 'Symfony\\Component\\Console\\Helper\\TableCell' => __DIR__ . '/..' . '/symfony/console/Helper/TableCell.php', + 'Symfony\\Component\\Console\\Helper\\TableSeparator' => __DIR__ . '/..' . '/symfony/console/Helper/TableSeparator.php', + 'Symfony\\Component\\Console\\Helper\\TableStyle' => __DIR__ . '/..' . '/symfony/console/Helper/TableStyle.php', + 'Symfony\\Component\\Console\\Input\\ArgvInput' => __DIR__ . '/..' . '/symfony/console/Input/ArgvInput.php', + 'Symfony\\Component\\Console\\Input\\ArrayInput' => __DIR__ . '/..' . '/symfony/console/Input/ArrayInput.php', + 'Symfony\\Component\\Console\\Input\\Input' => __DIR__ . '/..' . '/symfony/console/Input/Input.php', + 'Symfony\\Component\\Console\\Input\\InputArgument' => __DIR__ . '/..' . '/symfony/console/Input/InputArgument.php', + 'Symfony\\Component\\Console\\Input\\InputAwareInterface' => __DIR__ . '/..' . '/symfony/console/Input/InputAwareInterface.php', + 'Symfony\\Component\\Console\\Input\\InputDefinition' => __DIR__ . '/..' . '/symfony/console/Input/InputDefinition.php', + 'Symfony\\Component\\Console\\Input\\InputInterface' => __DIR__ . '/..' . '/symfony/console/Input/InputInterface.php', + 'Symfony\\Component\\Console\\Input\\InputOption' => __DIR__ . '/..' . '/symfony/console/Input/InputOption.php', + 'Symfony\\Component\\Console\\Input\\StreamableInputInterface' => __DIR__ . '/..' . '/symfony/console/Input/StreamableInputInterface.php', + 'Symfony\\Component\\Console\\Input\\StringInput' => __DIR__ . '/..' . '/symfony/console/Input/StringInput.php', + 'Symfony\\Component\\Console\\Logger\\ConsoleLogger' => __DIR__ . '/..' . '/symfony/console/Logger/ConsoleLogger.php', + 'Symfony\\Component\\Console\\Output\\BufferedOutput' => __DIR__ . '/..' . '/symfony/console/Output/BufferedOutput.php', + 'Symfony\\Component\\Console\\Output\\ConsoleOutput' => __DIR__ . '/..' . '/symfony/console/Output/ConsoleOutput.php', + 'Symfony\\Component\\Console\\Output\\ConsoleOutputInterface' => __DIR__ . '/..' . '/symfony/console/Output/ConsoleOutputInterface.php', + 'Symfony\\Component\\Console\\Output\\NullOutput' => __DIR__ . '/..' . '/symfony/console/Output/NullOutput.php', + 'Symfony\\Component\\Console\\Output\\Output' => __DIR__ . '/..' . '/symfony/console/Output/Output.php', + 'Symfony\\Component\\Console\\Output\\OutputInterface' => __DIR__ . '/..' . '/symfony/console/Output/OutputInterface.php', + 'Symfony\\Component\\Console\\Output\\StreamOutput' => __DIR__ . '/..' . '/symfony/console/Output/StreamOutput.php', + 'Symfony\\Component\\Console\\Question\\ChoiceQuestion' => __DIR__ . '/..' . '/symfony/console/Question/ChoiceQuestion.php', + 'Symfony\\Component\\Console\\Question\\ConfirmationQuestion' => __DIR__ . '/..' . '/symfony/console/Question/ConfirmationQuestion.php', + 'Symfony\\Component\\Console\\Question\\Question' => __DIR__ . '/..' . '/symfony/console/Question/Question.php', + 'Symfony\\Component\\Console\\Style\\OutputStyle' => __DIR__ . '/..' . '/symfony/console/Style/OutputStyle.php', + 'Symfony\\Component\\Console\\Style\\StyleInterface' => __DIR__ . '/..' . '/symfony/console/Style/StyleInterface.php', + 'Symfony\\Component\\Console\\Style\\SymfonyStyle' => __DIR__ . '/..' . '/symfony/console/Style/SymfonyStyle.php', + 'Symfony\\Component\\Console\\Terminal' => __DIR__ . '/..' . '/symfony/console/Terminal.php', + 'Symfony\\Component\\Console\\Tester\\ApplicationTester' => __DIR__ . '/..' . '/symfony/console/Tester/ApplicationTester.php', + 'Symfony\\Component\\Console\\Tester\\CommandTester' => __DIR__ . '/..' . '/symfony/console/Tester/CommandTester.php', + 'Symfony\\Component\\CssSelector\\CssSelectorConverter' => __DIR__ . '/..' . '/symfony/css-selector/CssSelectorConverter.php', + 'Symfony\\Component\\CssSelector\\Exception\\ExceptionInterface' => __DIR__ . '/..' . '/symfony/css-selector/Exception/ExceptionInterface.php', + 'Symfony\\Component\\CssSelector\\Exception\\ExpressionErrorException' => __DIR__ . '/..' . '/symfony/css-selector/Exception/ExpressionErrorException.php', + 'Symfony\\Component\\CssSelector\\Exception\\InternalErrorException' => __DIR__ . '/..' . '/symfony/css-selector/Exception/InternalErrorException.php', + 'Symfony\\Component\\CssSelector\\Exception\\ParseException' => __DIR__ . '/..' . '/symfony/css-selector/Exception/ParseException.php', + 'Symfony\\Component\\CssSelector\\Exception\\SyntaxErrorException' => __DIR__ . '/..' . '/symfony/css-selector/Exception/SyntaxErrorException.php', + 'Symfony\\Component\\CssSelector\\Node\\AbstractNode' => __DIR__ . '/..' . '/symfony/css-selector/Node/AbstractNode.php', + 'Symfony\\Component\\CssSelector\\Node\\AttributeNode' => __DIR__ . '/..' . '/symfony/css-selector/Node/AttributeNode.php', + 'Symfony\\Component\\CssSelector\\Node\\ClassNode' => __DIR__ . '/..' . '/symfony/css-selector/Node/ClassNode.php', + 'Symfony\\Component\\CssSelector\\Node\\CombinedSelectorNode' => __DIR__ . '/..' . '/symfony/css-selector/Node/CombinedSelectorNode.php', + 'Symfony\\Component\\CssSelector\\Node\\ElementNode' => __DIR__ . '/..' . '/symfony/css-selector/Node/ElementNode.php', + 'Symfony\\Component\\CssSelector\\Node\\FunctionNode' => __DIR__ . '/..' . '/symfony/css-selector/Node/FunctionNode.php', + 'Symfony\\Component\\CssSelector\\Node\\HashNode' => __DIR__ . '/..' . '/symfony/css-selector/Node/HashNode.php', + 'Symfony\\Component\\CssSelector\\Node\\NegationNode' => __DIR__ . '/..' . '/symfony/css-selector/Node/NegationNode.php', + 'Symfony\\Component\\CssSelector\\Node\\NodeInterface' => __DIR__ . '/..' . '/symfony/css-selector/Node/NodeInterface.php', + 'Symfony\\Component\\CssSelector\\Node\\PseudoNode' => __DIR__ . '/..' . '/symfony/css-selector/Node/PseudoNode.php', + 'Symfony\\Component\\CssSelector\\Node\\SelectorNode' => __DIR__ . '/..' . '/symfony/css-selector/Node/SelectorNode.php', + 'Symfony\\Component\\CssSelector\\Node\\Specificity' => __DIR__ . '/..' . '/symfony/css-selector/Node/Specificity.php', + 'Symfony\\Component\\CssSelector\\Parser\\Handler\\CommentHandler' => __DIR__ . '/..' . '/symfony/css-selector/Parser/Handler/CommentHandler.php', + 'Symfony\\Component\\CssSelector\\Parser\\Handler\\HandlerInterface' => __DIR__ . '/..' . '/symfony/css-selector/Parser/Handler/HandlerInterface.php', + 'Symfony\\Component\\CssSelector\\Parser\\Handler\\HashHandler' => __DIR__ . '/..' . '/symfony/css-selector/Parser/Handler/HashHandler.php', + 'Symfony\\Component\\CssSelector\\Parser\\Handler\\IdentifierHandler' => __DIR__ . '/..' . '/symfony/css-selector/Parser/Handler/IdentifierHandler.php', + 'Symfony\\Component\\CssSelector\\Parser\\Handler\\NumberHandler' => __DIR__ . '/..' . '/symfony/css-selector/Parser/Handler/NumberHandler.php', + 'Symfony\\Component\\CssSelector\\Parser\\Handler\\StringHandler' => __DIR__ . '/..' . '/symfony/css-selector/Parser/Handler/StringHandler.php', + 'Symfony\\Component\\CssSelector\\Parser\\Handler\\WhitespaceHandler' => __DIR__ . '/..' . '/symfony/css-selector/Parser/Handler/WhitespaceHandler.php', + 'Symfony\\Component\\CssSelector\\Parser\\Parser' => __DIR__ . '/..' . '/symfony/css-selector/Parser/Parser.php', + 'Symfony\\Component\\CssSelector\\Parser\\ParserInterface' => __DIR__ . '/..' . '/symfony/css-selector/Parser/ParserInterface.php', + 'Symfony\\Component\\CssSelector\\Parser\\Reader' => __DIR__ . '/..' . '/symfony/css-selector/Parser/Reader.php', + 'Symfony\\Component\\CssSelector\\Parser\\Shortcut\\ClassParser' => __DIR__ . '/..' . '/symfony/css-selector/Parser/Shortcut/ClassParser.php', + 'Symfony\\Component\\CssSelector\\Parser\\Shortcut\\ElementParser' => __DIR__ . '/..' . '/symfony/css-selector/Parser/Shortcut/ElementParser.php', + 'Symfony\\Component\\CssSelector\\Parser\\Shortcut\\EmptyStringParser' => __DIR__ . '/..' . '/symfony/css-selector/Parser/Shortcut/EmptyStringParser.php', + 'Symfony\\Component\\CssSelector\\Parser\\Shortcut\\HashParser' => __DIR__ . '/..' . '/symfony/css-selector/Parser/Shortcut/HashParser.php', + 'Symfony\\Component\\CssSelector\\Parser\\Token' => __DIR__ . '/..' . '/symfony/css-selector/Parser/Token.php', + 'Symfony\\Component\\CssSelector\\Parser\\TokenStream' => __DIR__ . '/..' . '/symfony/css-selector/Parser/TokenStream.php', + 'Symfony\\Component\\CssSelector\\Parser\\Tokenizer\\Tokenizer' => __DIR__ . '/..' . '/symfony/css-selector/Parser/Tokenizer/Tokenizer.php', + 'Symfony\\Component\\CssSelector\\Parser\\Tokenizer\\TokenizerEscaping' => __DIR__ . '/..' . '/symfony/css-selector/Parser/Tokenizer/TokenizerEscaping.php', + 'Symfony\\Component\\CssSelector\\Parser\\Tokenizer\\TokenizerPatterns' => __DIR__ . '/..' . '/symfony/css-selector/Parser/Tokenizer/TokenizerPatterns.php', + 'Symfony\\Component\\CssSelector\\XPath\\Extension\\AbstractExtension' => __DIR__ . '/..' . '/symfony/css-selector/XPath/Extension/AbstractExtension.php', + 'Symfony\\Component\\CssSelector\\XPath\\Extension\\AttributeMatchingExtension' => __DIR__ . '/..' . '/symfony/css-selector/XPath/Extension/AttributeMatchingExtension.php', + 'Symfony\\Component\\CssSelector\\XPath\\Extension\\CombinationExtension' => __DIR__ . '/..' . '/symfony/css-selector/XPath/Extension/CombinationExtension.php', + 'Symfony\\Component\\CssSelector\\XPath\\Extension\\ExtensionInterface' => __DIR__ . '/..' . '/symfony/css-selector/XPath/Extension/ExtensionInterface.php', + 'Symfony\\Component\\CssSelector\\XPath\\Extension\\FunctionExtension' => __DIR__ . '/..' . '/symfony/css-selector/XPath/Extension/FunctionExtension.php', + 'Symfony\\Component\\CssSelector\\XPath\\Extension\\HtmlExtension' => __DIR__ . '/..' . '/symfony/css-selector/XPath/Extension/HtmlExtension.php', + 'Symfony\\Component\\CssSelector\\XPath\\Extension\\NodeExtension' => __DIR__ . '/..' . '/symfony/css-selector/XPath/Extension/NodeExtension.php', + 'Symfony\\Component\\CssSelector\\XPath\\Extension\\PseudoClassExtension' => __DIR__ . '/..' . '/symfony/css-selector/XPath/Extension/PseudoClassExtension.php', + 'Symfony\\Component\\CssSelector\\XPath\\Translator' => __DIR__ . '/..' . '/symfony/css-selector/XPath/Translator.php', + 'Symfony\\Component\\CssSelector\\XPath\\TranslatorInterface' => __DIR__ . '/..' . '/symfony/css-selector/XPath/TranslatorInterface.php', + 'Symfony\\Component\\CssSelector\\XPath\\XPathExpr' => __DIR__ . '/..' . '/symfony/css-selector/XPath/XPathExpr.php', + 'Symfony\\Component\\Debug\\BufferingLogger' => __DIR__ . '/..' . '/symfony/debug/BufferingLogger.php', + 'Symfony\\Component\\Debug\\Debug' => __DIR__ . '/..' . '/symfony/debug/Debug.php', + 'Symfony\\Component\\Debug\\DebugClassLoader' => __DIR__ . '/..' . '/symfony/debug/DebugClassLoader.php', + 'Symfony\\Component\\Debug\\ErrorHandler' => __DIR__ . '/..' . '/symfony/debug/ErrorHandler.php', + 'Symfony\\Component\\Debug\\ExceptionHandler' => __DIR__ . '/..' . '/symfony/debug/ExceptionHandler.php', + 'Symfony\\Component\\Debug\\Exception\\ClassNotFoundException' => __DIR__ . '/..' . '/symfony/debug/Exception/ClassNotFoundException.php', + 'Symfony\\Component\\Debug\\Exception\\ContextErrorException' => __DIR__ . '/..' . '/symfony/debug/Exception/ContextErrorException.php', + 'Symfony\\Component\\Debug\\Exception\\FatalErrorException' => __DIR__ . '/..' . '/symfony/debug/Exception/FatalErrorException.php', + 'Symfony\\Component\\Debug\\Exception\\FatalThrowableError' => __DIR__ . '/..' . '/symfony/debug/Exception/FatalThrowableError.php', + 'Symfony\\Component\\Debug\\Exception\\FlattenException' => __DIR__ . '/..' . '/symfony/debug/Exception/FlattenException.php', + 'Symfony\\Component\\Debug\\Exception\\OutOfMemoryException' => __DIR__ . '/..' . '/symfony/debug/Exception/OutOfMemoryException.php', + 'Symfony\\Component\\Debug\\Exception\\SilencedErrorContext' => __DIR__ . '/..' . '/symfony/debug/Exception/SilencedErrorContext.php', + 'Symfony\\Component\\Debug\\Exception\\UndefinedFunctionException' => __DIR__ . '/..' . '/symfony/debug/Exception/UndefinedFunctionException.php', + 'Symfony\\Component\\Debug\\Exception\\UndefinedMethodException' => __DIR__ . '/..' . '/symfony/debug/Exception/UndefinedMethodException.php', + 'Symfony\\Component\\Debug\\FatalErrorHandler\\ClassNotFoundFatalErrorHandler' => __DIR__ . '/..' . '/symfony/debug/FatalErrorHandler/ClassNotFoundFatalErrorHandler.php', + 'Symfony\\Component\\Debug\\FatalErrorHandler\\FatalErrorHandlerInterface' => __DIR__ . '/..' . '/symfony/debug/FatalErrorHandler/FatalErrorHandlerInterface.php', + 'Symfony\\Component\\Debug\\FatalErrorHandler\\UndefinedFunctionFatalErrorHandler' => __DIR__ . '/..' . '/symfony/debug/FatalErrorHandler/UndefinedFunctionFatalErrorHandler.php', + 'Symfony\\Component\\Debug\\FatalErrorHandler\\UndefinedMethodFatalErrorHandler' => __DIR__ . '/..' . '/symfony/debug/FatalErrorHandler/UndefinedMethodFatalErrorHandler.php', + 'Symfony\\Component\\EventDispatcher\\ContainerAwareEventDispatcher' => __DIR__ . '/..' . '/symfony/event-dispatcher/ContainerAwareEventDispatcher.php', + 'Symfony\\Component\\EventDispatcher\\Debug\\TraceableEventDispatcher' => __DIR__ . '/..' . '/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php', + 'Symfony\\Component\\EventDispatcher\\Debug\\TraceableEventDispatcherInterface' => __DIR__ . '/..' . '/symfony/event-dispatcher/Debug/TraceableEventDispatcherInterface.php', + 'Symfony\\Component\\EventDispatcher\\Debug\\WrappedListener' => __DIR__ . '/..' . '/symfony/event-dispatcher/Debug/WrappedListener.php', + 'Symfony\\Component\\EventDispatcher\\DependencyInjection\\ExtractingEventDispatcher' => __DIR__ . '/..' . '/symfony/event-dispatcher/DependencyInjection/RegisterListenersPass.php', + 'Symfony\\Component\\EventDispatcher\\DependencyInjection\\RegisterListenersPass' => __DIR__ . '/..' . '/symfony/event-dispatcher/DependencyInjection/RegisterListenersPass.php', + 'Symfony\\Component\\EventDispatcher\\Event' => __DIR__ . '/..' . '/symfony/event-dispatcher/Event.php', + 'Symfony\\Component\\EventDispatcher\\EventDispatcher' => __DIR__ . '/..' . '/symfony/event-dispatcher/EventDispatcher.php', + 'Symfony\\Component\\EventDispatcher\\EventDispatcherInterface' => __DIR__ . '/..' . '/symfony/event-dispatcher/EventDispatcherInterface.php', + 'Symfony\\Component\\EventDispatcher\\EventSubscriberInterface' => __DIR__ . '/..' . '/symfony/event-dispatcher/EventSubscriberInterface.php', + 'Symfony\\Component\\EventDispatcher\\GenericEvent' => __DIR__ . '/..' . '/symfony/event-dispatcher/GenericEvent.php', + 'Symfony\\Component\\EventDispatcher\\ImmutableEventDispatcher' => __DIR__ . '/..' . '/symfony/event-dispatcher/ImmutableEventDispatcher.php', + 'Symfony\\Component\\Finder\\Comparator\\Comparator' => __DIR__ . '/..' . '/symfony/finder/Comparator/Comparator.php', + 'Symfony\\Component\\Finder\\Comparator\\DateComparator' => __DIR__ . '/..' . '/symfony/finder/Comparator/DateComparator.php', + 'Symfony\\Component\\Finder\\Comparator\\NumberComparator' => __DIR__ . '/..' . '/symfony/finder/Comparator/NumberComparator.php', + 'Symfony\\Component\\Finder\\Exception\\AccessDeniedException' => __DIR__ . '/..' . '/symfony/finder/Exception/AccessDeniedException.php', + 'Symfony\\Component\\Finder\\Exception\\ExceptionInterface' => __DIR__ . '/..' . '/symfony/finder/Exception/ExceptionInterface.php', + 'Symfony\\Component\\Finder\\Finder' => __DIR__ . '/..' . '/symfony/finder/Finder.php', + 'Symfony\\Component\\Finder\\Glob' => __DIR__ . '/..' . '/symfony/finder/Glob.php', + 'Symfony\\Component\\Finder\\Iterator\\CustomFilterIterator' => __DIR__ . '/..' . '/symfony/finder/Iterator/CustomFilterIterator.php', + 'Symfony\\Component\\Finder\\Iterator\\DateRangeFilterIterator' => __DIR__ . '/..' . '/symfony/finder/Iterator/DateRangeFilterIterator.php', + 'Symfony\\Component\\Finder\\Iterator\\DepthRangeFilterIterator' => __DIR__ . '/..' . '/symfony/finder/Iterator/DepthRangeFilterIterator.php', + 'Symfony\\Component\\Finder\\Iterator\\ExcludeDirectoryFilterIterator' => __DIR__ . '/..' . '/symfony/finder/Iterator/ExcludeDirectoryFilterIterator.php', + 'Symfony\\Component\\Finder\\Iterator\\FileTypeFilterIterator' => __DIR__ . '/..' . '/symfony/finder/Iterator/FileTypeFilterIterator.php', + 'Symfony\\Component\\Finder\\Iterator\\FilecontentFilterIterator' => __DIR__ . '/..' . '/symfony/finder/Iterator/FilecontentFilterIterator.php', + 'Symfony\\Component\\Finder\\Iterator\\FilenameFilterIterator' => __DIR__ . '/..' . '/symfony/finder/Iterator/FilenameFilterIterator.php', + 'Symfony\\Component\\Finder\\Iterator\\FilterIterator' => __DIR__ . '/..' . '/symfony/finder/Iterator/FilterIterator.php', + 'Symfony\\Component\\Finder\\Iterator\\MultiplePcreFilterIterator' => __DIR__ . '/..' . '/symfony/finder/Iterator/MultiplePcreFilterIterator.php', + 'Symfony\\Component\\Finder\\Iterator\\PathFilterIterator' => __DIR__ . '/..' . '/symfony/finder/Iterator/PathFilterIterator.php', + 'Symfony\\Component\\Finder\\Iterator\\RecursiveDirectoryIterator' => __DIR__ . '/..' . '/symfony/finder/Iterator/RecursiveDirectoryIterator.php', + 'Symfony\\Component\\Finder\\Iterator\\SizeRangeFilterIterator' => __DIR__ . '/..' . '/symfony/finder/Iterator/SizeRangeFilterIterator.php', + 'Symfony\\Component\\Finder\\Iterator\\SortableIterator' => __DIR__ . '/..' . '/symfony/finder/Iterator/SortableIterator.php', + 'Symfony\\Component\\Finder\\SplFileInfo' => __DIR__ . '/..' . '/symfony/finder/SplFileInfo.php', + 'Symfony\\Component\\HttpFoundation\\AcceptHeader' => __DIR__ . '/..' . '/symfony/http-foundation/AcceptHeader.php', + 'Symfony\\Component\\HttpFoundation\\AcceptHeaderItem' => __DIR__ . '/..' . '/symfony/http-foundation/AcceptHeaderItem.php', + 'Symfony\\Component\\HttpFoundation\\ApacheRequest' => __DIR__ . '/..' . '/symfony/http-foundation/ApacheRequest.php', + 'Symfony\\Component\\HttpFoundation\\BinaryFileResponse' => __DIR__ . '/..' . '/symfony/http-foundation/BinaryFileResponse.php', + 'Symfony\\Component\\HttpFoundation\\Cookie' => __DIR__ . '/..' . '/symfony/http-foundation/Cookie.php', + 'Symfony\\Component\\HttpFoundation\\Exception\\ConflictingHeadersException' => __DIR__ . '/..' . '/symfony/http-foundation/Exception/ConflictingHeadersException.php', + 'Symfony\\Component\\HttpFoundation\\Exception\\RequestExceptionInterface' => __DIR__ . '/..' . '/symfony/http-foundation/Exception/RequestExceptionInterface.php', + 'Symfony\\Component\\HttpFoundation\\Exception\\SuspiciousOperationException' => __DIR__ . '/..' . '/symfony/http-foundation/Exception/SuspiciousOperationException.php', + 'Symfony\\Component\\HttpFoundation\\ExpressionRequestMatcher' => __DIR__ . '/..' . '/symfony/http-foundation/ExpressionRequestMatcher.php', + 'Symfony\\Component\\HttpFoundation\\FileBag' => __DIR__ . '/..' . '/symfony/http-foundation/FileBag.php', + 'Symfony\\Component\\HttpFoundation\\File\\Exception\\AccessDeniedException' => __DIR__ . '/..' . '/symfony/http-foundation/File/Exception/AccessDeniedException.php', + 'Symfony\\Component\\HttpFoundation\\File\\Exception\\FileException' => __DIR__ . '/..' . '/symfony/http-foundation/File/Exception/FileException.php', + 'Symfony\\Component\\HttpFoundation\\File\\Exception\\FileNotFoundException' => __DIR__ . '/..' . '/symfony/http-foundation/File/Exception/FileNotFoundException.php', + 'Symfony\\Component\\HttpFoundation\\File\\Exception\\UnexpectedTypeException' => __DIR__ . '/..' . '/symfony/http-foundation/File/Exception/UnexpectedTypeException.php', + 'Symfony\\Component\\HttpFoundation\\File\\Exception\\UploadException' => __DIR__ . '/..' . '/symfony/http-foundation/File/Exception/UploadException.php', + 'Symfony\\Component\\HttpFoundation\\File\\File' => __DIR__ . '/..' . '/symfony/http-foundation/File/File.php', + 'Symfony\\Component\\HttpFoundation\\File\\MimeType\\ExtensionGuesser' => __DIR__ . '/..' . '/symfony/http-foundation/File/MimeType/ExtensionGuesser.php', + 'Symfony\\Component\\HttpFoundation\\File\\MimeType\\ExtensionGuesserInterface' => __DIR__ . '/..' . '/symfony/http-foundation/File/MimeType/ExtensionGuesserInterface.php', + 'Symfony\\Component\\HttpFoundation\\File\\MimeType\\FileBinaryMimeTypeGuesser' => __DIR__ . '/..' . '/symfony/http-foundation/File/MimeType/FileBinaryMimeTypeGuesser.php', + 'Symfony\\Component\\HttpFoundation\\File\\MimeType\\FileinfoMimeTypeGuesser' => __DIR__ . '/..' . '/symfony/http-foundation/File/MimeType/FileinfoMimeTypeGuesser.php', + 'Symfony\\Component\\HttpFoundation\\File\\MimeType\\MimeTypeExtensionGuesser' => __DIR__ . '/..' . '/symfony/http-foundation/File/MimeType/MimeTypeExtensionGuesser.php', + 'Symfony\\Component\\HttpFoundation\\File\\MimeType\\MimeTypeGuesser' => __DIR__ . '/..' . '/symfony/http-foundation/File/MimeType/MimeTypeGuesser.php', + 'Symfony\\Component\\HttpFoundation\\File\\MimeType\\MimeTypeGuesserInterface' => __DIR__ . '/..' . '/symfony/http-foundation/File/MimeType/MimeTypeGuesserInterface.php', + 'Symfony\\Component\\HttpFoundation\\File\\Stream' => __DIR__ . '/..' . '/symfony/http-foundation/File/Stream.php', + 'Symfony\\Component\\HttpFoundation\\File\\UploadedFile' => __DIR__ . '/..' . '/symfony/http-foundation/File/UploadedFile.php', + 'Symfony\\Component\\HttpFoundation\\HeaderBag' => __DIR__ . '/..' . '/symfony/http-foundation/HeaderBag.php', + 'Symfony\\Component\\HttpFoundation\\IpUtils' => __DIR__ . '/..' . '/symfony/http-foundation/IpUtils.php', + 'Symfony\\Component\\HttpFoundation\\JsonResponse' => __DIR__ . '/..' . '/symfony/http-foundation/JsonResponse.php', + 'Symfony\\Component\\HttpFoundation\\ParameterBag' => __DIR__ . '/..' . '/symfony/http-foundation/ParameterBag.php', + 'Symfony\\Component\\HttpFoundation\\RedirectResponse' => __DIR__ . '/..' . '/symfony/http-foundation/RedirectResponse.php', + 'Symfony\\Component\\HttpFoundation\\Request' => __DIR__ . '/..' . '/symfony/http-foundation/Request.php', + 'Symfony\\Component\\HttpFoundation\\RequestMatcher' => __DIR__ . '/..' . '/symfony/http-foundation/RequestMatcher.php', + 'Symfony\\Component\\HttpFoundation\\RequestMatcherInterface' => __DIR__ . '/..' . '/symfony/http-foundation/RequestMatcherInterface.php', + 'Symfony\\Component\\HttpFoundation\\RequestStack' => __DIR__ . '/..' . '/symfony/http-foundation/RequestStack.php', + 'Symfony\\Component\\HttpFoundation\\Response' => __DIR__ . '/..' . '/symfony/http-foundation/Response.php', + 'Symfony\\Component\\HttpFoundation\\ResponseHeaderBag' => __DIR__ . '/..' . '/symfony/http-foundation/ResponseHeaderBag.php', + 'Symfony\\Component\\HttpFoundation\\ServerBag' => __DIR__ . '/..' . '/symfony/http-foundation/ServerBag.php', + 'Symfony\\Component\\HttpFoundation\\Session\\Attribute\\AttributeBag' => __DIR__ . '/..' . '/symfony/http-foundation/Session/Attribute/AttributeBag.php', + 'Symfony\\Component\\HttpFoundation\\Session\\Attribute\\AttributeBagInterface' => __DIR__ . '/..' . '/symfony/http-foundation/Session/Attribute/AttributeBagInterface.php', + 'Symfony\\Component\\HttpFoundation\\Session\\Attribute\\NamespacedAttributeBag' => __DIR__ . '/..' . '/symfony/http-foundation/Session/Attribute/NamespacedAttributeBag.php', + 'Symfony\\Component\\HttpFoundation\\Session\\Flash\\AutoExpireFlashBag' => __DIR__ . '/..' . '/symfony/http-foundation/Session/Flash/AutoExpireFlashBag.php', + 'Symfony\\Component\\HttpFoundation\\Session\\Flash\\FlashBag' => __DIR__ . '/..' . '/symfony/http-foundation/Session/Flash/FlashBag.php', + 'Symfony\\Component\\HttpFoundation\\Session\\Flash\\FlashBagInterface' => __DIR__ . '/..' . '/symfony/http-foundation/Session/Flash/FlashBagInterface.php', + 'Symfony\\Component\\HttpFoundation\\Session\\Session' => __DIR__ . '/..' . '/symfony/http-foundation/Session/Session.php', + 'Symfony\\Component\\HttpFoundation\\Session\\SessionBagInterface' => __DIR__ . '/..' . '/symfony/http-foundation/Session/SessionBagInterface.php', + 'Symfony\\Component\\HttpFoundation\\Session\\SessionInterface' => __DIR__ . '/..' . '/symfony/http-foundation/Session/SessionInterface.php', + 'Symfony\\Component\\HttpFoundation\\Session\\Storage\\Handler\\MemcacheSessionHandler' => __DIR__ . '/..' . '/symfony/http-foundation/Session/Storage/Handler/MemcacheSessionHandler.php', + 'Symfony\\Component\\HttpFoundation\\Session\\Storage\\Handler\\MemcachedSessionHandler' => __DIR__ . '/..' . '/symfony/http-foundation/Session/Storage/Handler/MemcachedSessionHandler.php', + 'Symfony\\Component\\HttpFoundation\\Session\\Storage\\Handler\\MongoDbSessionHandler' => __DIR__ . '/..' . '/symfony/http-foundation/Session/Storage/Handler/MongoDbSessionHandler.php', + 'Symfony\\Component\\HttpFoundation\\Session\\Storage\\Handler\\NativeFileSessionHandler' => __DIR__ . '/..' . '/symfony/http-foundation/Session/Storage/Handler/NativeFileSessionHandler.php', + 'Symfony\\Component\\HttpFoundation\\Session\\Storage\\Handler\\NativeSessionHandler' => __DIR__ . '/..' . '/symfony/http-foundation/Session/Storage/Handler/NativeSessionHandler.php', + 'Symfony\\Component\\HttpFoundation\\Session\\Storage\\Handler\\NullSessionHandler' => __DIR__ . '/..' . '/symfony/http-foundation/Session/Storage/Handler/NullSessionHandler.php', + 'Symfony\\Component\\HttpFoundation\\Session\\Storage\\Handler\\PdoSessionHandler' => __DIR__ . '/..' . '/symfony/http-foundation/Session/Storage/Handler/PdoSessionHandler.php', + 'Symfony\\Component\\HttpFoundation\\Session\\Storage\\Handler\\WriteCheckSessionHandler' => __DIR__ . '/..' . '/symfony/http-foundation/Session/Storage/Handler/WriteCheckSessionHandler.php', + 'Symfony\\Component\\HttpFoundation\\Session\\Storage\\MetadataBag' => __DIR__ . '/..' . '/symfony/http-foundation/Session/Storage/MetadataBag.php', + 'Symfony\\Component\\HttpFoundation\\Session\\Storage\\MockArraySessionStorage' => __DIR__ . '/..' . '/symfony/http-foundation/Session/Storage/MockArraySessionStorage.php', + 'Symfony\\Component\\HttpFoundation\\Session\\Storage\\MockFileSessionStorage' => __DIR__ . '/..' . '/symfony/http-foundation/Session/Storage/MockFileSessionStorage.php', + 'Symfony\\Component\\HttpFoundation\\Session\\Storage\\NativeSessionStorage' => __DIR__ . '/..' . '/symfony/http-foundation/Session/Storage/NativeSessionStorage.php', + 'Symfony\\Component\\HttpFoundation\\Session\\Storage\\PhpBridgeSessionStorage' => __DIR__ . '/..' . '/symfony/http-foundation/Session/Storage/PhpBridgeSessionStorage.php', + 'Symfony\\Component\\HttpFoundation\\Session\\Storage\\Proxy\\AbstractProxy' => __DIR__ . '/..' . '/symfony/http-foundation/Session/Storage/Proxy/AbstractProxy.php', + 'Symfony\\Component\\HttpFoundation\\Session\\Storage\\Proxy\\NativeProxy' => __DIR__ . '/..' . '/symfony/http-foundation/Session/Storage/Proxy/NativeProxy.php', + 'Symfony\\Component\\HttpFoundation\\Session\\Storage\\Proxy\\SessionHandlerProxy' => __DIR__ . '/..' . '/symfony/http-foundation/Session/Storage/Proxy/SessionHandlerProxy.php', + 'Symfony\\Component\\HttpFoundation\\Session\\Storage\\SessionStorageInterface' => __DIR__ . '/..' . '/symfony/http-foundation/Session/Storage/SessionStorageInterface.php', + 'Symfony\\Component\\HttpFoundation\\StreamedResponse' => __DIR__ . '/..' . '/symfony/http-foundation/StreamedResponse.php', + 'Symfony\\Component\\HttpKernel\\Bundle\\Bundle' => __DIR__ . '/..' . '/symfony/http-kernel/Bundle/Bundle.php', + 'Symfony\\Component\\HttpKernel\\Bundle\\BundleInterface' => __DIR__ . '/..' . '/symfony/http-kernel/Bundle/BundleInterface.php', + 'Symfony\\Component\\HttpKernel\\CacheClearer\\CacheClearerInterface' => __DIR__ . '/..' . '/symfony/http-kernel/CacheClearer/CacheClearerInterface.php', + 'Symfony\\Component\\HttpKernel\\CacheClearer\\ChainCacheClearer' => __DIR__ . '/..' . '/symfony/http-kernel/CacheClearer/ChainCacheClearer.php', + 'Symfony\\Component\\HttpKernel\\CacheClearer\\Psr6CacheClearer' => __DIR__ . '/..' . '/symfony/http-kernel/CacheClearer/Psr6CacheClearer.php', + 'Symfony\\Component\\HttpKernel\\CacheWarmer\\CacheWarmer' => __DIR__ . '/..' . '/symfony/http-kernel/CacheWarmer/CacheWarmer.php', + 'Symfony\\Component\\HttpKernel\\CacheWarmer\\CacheWarmerAggregate' => __DIR__ . '/..' . '/symfony/http-kernel/CacheWarmer/CacheWarmerAggregate.php', + 'Symfony\\Component\\HttpKernel\\CacheWarmer\\CacheWarmerInterface' => __DIR__ . '/..' . '/symfony/http-kernel/CacheWarmer/CacheWarmerInterface.php', + 'Symfony\\Component\\HttpKernel\\CacheWarmer\\WarmableInterface' => __DIR__ . '/..' . '/symfony/http-kernel/CacheWarmer/WarmableInterface.php', + 'Symfony\\Component\\HttpKernel\\Client' => __DIR__ . '/..' . '/symfony/http-kernel/Client.php', + 'Symfony\\Component\\HttpKernel\\Config\\EnvParametersResource' => __DIR__ . '/..' . '/symfony/http-kernel/Config/EnvParametersResource.php', + 'Symfony\\Component\\HttpKernel\\Config\\FileLocator' => __DIR__ . '/..' . '/symfony/http-kernel/Config/FileLocator.php', + 'Symfony\\Component\\HttpKernel\\ControllerMetadata\\ArgumentMetadata' => __DIR__ . '/..' . '/symfony/http-kernel/ControllerMetadata/ArgumentMetadata.php', + 'Symfony\\Component\\HttpKernel\\ControllerMetadata\\ArgumentMetadataFactory' => __DIR__ . '/..' . '/symfony/http-kernel/ControllerMetadata/ArgumentMetadataFactory.php', + 'Symfony\\Component\\HttpKernel\\ControllerMetadata\\ArgumentMetadataFactoryInterface' => __DIR__ . '/..' . '/symfony/http-kernel/ControllerMetadata/ArgumentMetadataFactoryInterface.php', + 'Symfony\\Component\\HttpKernel\\Controller\\ArgumentResolver' => __DIR__ . '/..' . '/symfony/http-kernel/Controller/ArgumentResolver.php', + 'Symfony\\Component\\HttpKernel\\Controller\\ArgumentResolverInterface' => __DIR__ . '/..' . '/symfony/http-kernel/Controller/ArgumentResolverInterface.php', + 'Symfony\\Component\\HttpKernel\\Controller\\ArgumentResolver\\DefaultValueResolver' => __DIR__ . '/..' . '/symfony/http-kernel/Controller/ArgumentResolver/DefaultValueResolver.php', + 'Symfony\\Component\\HttpKernel\\Controller\\ArgumentResolver\\RequestAttributeValueResolver' => __DIR__ . '/..' . '/symfony/http-kernel/Controller/ArgumentResolver/RequestAttributeValueResolver.php', + 'Symfony\\Component\\HttpKernel\\Controller\\ArgumentResolver\\RequestValueResolver' => __DIR__ . '/..' . '/symfony/http-kernel/Controller/ArgumentResolver/RequestValueResolver.php', + 'Symfony\\Component\\HttpKernel\\Controller\\ArgumentResolver\\ServiceValueResolver' => __DIR__ . '/..' . '/symfony/http-kernel/Controller/ArgumentResolver/ServiceValueResolver.php', + 'Symfony\\Component\\HttpKernel\\Controller\\ArgumentResolver\\SessionValueResolver' => __DIR__ . '/..' . '/symfony/http-kernel/Controller/ArgumentResolver/SessionValueResolver.php', + 'Symfony\\Component\\HttpKernel\\Controller\\ArgumentResolver\\VariadicValueResolver' => __DIR__ . '/..' . '/symfony/http-kernel/Controller/ArgumentResolver/VariadicValueResolver.php', + 'Symfony\\Component\\HttpKernel\\Controller\\ArgumentValueResolverInterface' => __DIR__ . '/..' . '/symfony/http-kernel/Controller/ArgumentValueResolverInterface.php', + 'Symfony\\Component\\HttpKernel\\Controller\\ContainerControllerResolver' => __DIR__ . '/..' . '/symfony/http-kernel/Controller/ContainerControllerResolver.php', + 'Symfony\\Component\\HttpKernel\\Controller\\ControllerReference' => __DIR__ . '/..' . '/symfony/http-kernel/Controller/ControllerReference.php', + 'Symfony\\Component\\HttpKernel\\Controller\\ControllerResolver' => __DIR__ . '/..' . '/symfony/http-kernel/Controller/ControllerResolver.php', + 'Symfony\\Component\\HttpKernel\\Controller\\ControllerResolverInterface' => __DIR__ . '/..' . '/symfony/http-kernel/Controller/ControllerResolverInterface.php', + 'Symfony\\Component\\HttpKernel\\Controller\\TraceableArgumentResolver' => __DIR__ . '/..' . '/symfony/http-kernel/Controller/TraceableArgumentResolver.php', + 'Symfony\\Component\\HttpKernel\\Controller\\TraceableControllerResolver' => __DIR__ . '/..' . '/symfony/http-kernel/Controller/TraceableControllerResolver.php', + 'Symfony\\Component\\HttpKernel\\DataCollector\\AjaxDataCollector' => __DIR__ . '/..' . '/symfony/http-kernel/DataCollector/AjaxDataCollector.php', + 'Symfony\\Component\\HttpKernel\\DataCollector\\ConfigDataCollector' => __DIR__ . '/..' . '/symfony/http-kernel/DataCollector/ConfigDataCollector.php', + 'Symfony\\Component\\HttpKernel\\DataCollector\\DataCollector' => __DIR__ . '/..' . '/symfony/http-kernel/DataCollector/DataCollector.php', + 'Symfony\\Component\\HttpKernel\\DataCollector\\DataCollectorInterface' => __DIR__ . '/..' . '/symfony/http-kernel/DataCollector/DataCollectorInterface.php', + 'Symfony\\Component\\HttpKernel\\DataCollector\\DumpDataCollector' => __DIR__ . '/..' . '/symfony/http-kernel/DataCollector/DumpDataCollector.php', + 'Symfony\\Component\\HttpKernel\\DataCollector\\EventDataCollector' => __DIR__ . '/..' . '/symfony/http-kernel/DataCollector/EventDataCollector.php', + 'Symfony\\Component\\HttpKernel\\DataCollector\\ExceptionDataCollector' => __DIR__ . '/..' . '/symfony/http-kernel/DataCollector/ExceptionDataCollector.php', + 'Symfony\\Component\\HttpKernel\\DataCollector\\LateDataCollectorInterface' => __DIR__ . '/..' . '/symfony/http-kernel/DataCollector/LateDataCollectorInterface.php', + 'Symfony\\Component\\HttpKernel\\DataCollector\\LoggerDataCollector' => __DIR__ . '/..' . '/symfony/http-kernel/DataCollector/LoggerDataCollector.php', + 'Symfony\\Component\\HttpKernel\\DataCollector\\MemoryDataCollector' => __DIR__ . '/..' . '/symfony/http-kernel/DataCollector/MemoryDataCollector.php', + 'Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector' => __DIR__ . '/..' . '/symfony/http-kernel/DataCollector/RequestDataCollector.php', + 'Symfony\\Component\\HttpKernel\\DataCollector\\RouterDataCollector' => __DIR__ . '/..' . '/symfony/http-kernel/DataCollector/RouterDataCollector.php', + 'Symfony\\Component\\HttpKernel\\DataCollector\\TimeDataCollector' => __DIR__ . '/..' . '/symfony/http-kernel/DataCollector/TimeDataCollector.php', + 'Symfony\\Component\\HttpKernel\\DataCollector\\Util\\ValueExporter' => __DIR__ . '/..' . '/symfony/http-kernel/DataCollector/Util/ValueExporter.php', + 'Symfony\\Component\\HttpKernel\\Debug\\FileLinkFormatter' => __DIR__ . '/..' . '/symfony/http-kernel/Debug/FileLinkFormatter.php', + 'Symfony\\Component\\HttpKernel\\Debug\\TraceableEventDispatcher' => __DIR__ . '/..' . '/symfony/http-kernel/Debug/TraceableEventDispatcher.php', + 'Symfony\\Component\\HttpKernel\\DependencyInjection\\AddAnnotatedClassesToCachePass' => __DIR__ . '/..' . '/symfony/http-kernel/DependencyInjection/AddAnnotatedClassesToCachePass.php', + 'Symfony\\Component\\HttpKernel\\DependencyInjection\\AddClassesToCachePass' => __DIR__ . '/..' . '/symfony/http-kernel/DependencyInjection/AddClassesToCachePass.php', + 'Symfony\\Component\\HttpKernel\\DependencyInjection\\ConfigurableExtension' => __DIR__ . '/..' . '/symfony/http-kernel/DependencyInjection/ConfigurableExtension.php', + 'Symfony\\Component\\HttpKernel\\DependencyInjection\\ControllerArgumentValueResolverPass' => __DIR__ . '/..' . '/symfony/http-kernel/DependencyInjection/ControllerArgumentValueResolverPass.php', + 'Symfony\\Component\\HttpKernel\\DependencyInjection\\Extension' => __DIR__ . '/..' . '/symfony/http-kernel/DependencyInjection/Extension.php', + 'Symfony\\Component\\HttpKernel\\DependencyInjection\\FragmentRendererPass' => __DIR__ . '/..' . '/symfony/http-kernel/DependencyInjection/FragmentRendererPass.php', + 'Symfony\\Component\\HttpKernel\\DependencyInjection\\LazyLoadingFragmentHandler' => __DIR__ . '/..' . '/symfony/http-kernel/DependencyInjection/LazyLoadingFragmentHandler.php', + 'Symfony\\Component\\HttpKernel\\DependencyInjection\\MergeExtensionConfigurationPass' => __DIR__ . '/..' . '/symfony/http-kernel/DependencyInjection/MergeExtensionConfigurationPass.php', + 'Symfony\\Component\\HttpKernel\\DependencyInjection\\RegisterControllerArgumentLocatorsPass' => __DIR__ . '/..' . '/symfony/http-kernel/DependencyInjection/RegisterControllerArgumentLocatorsPass.php', + 'Symfony\\Component\\HttpKernel\\DependencyInjection\\RemoveEmptyControllerArgumentLocatorsPass' => __DIR__ . '/..' . '/symfony/http-kernel/DependencyInjection/RemoveEmptyControllerArgumentLocatorsPass.php', + 'Symfony\\Component\\HttpKernel\\EventListener\\AbstractSessionListener' => __DIR__ . '/..' . '/symfony/http-kernel/EventListener/AbstractSessionListener.php', + 'Symfony\\Component\\HttpKernel\\EventListener\\AbstractTestSessionListener' => __DIR__ . '/..' . '/symfony/http-kernel/EventListener/AbstractTestSessionListener.php', + 'Symfony\\Component\\HttpKernel\\EventListener\\AddRequestFormatsListener' => __DIR__ . '/..' . '/symfony/http-kernel/EventListener/AddRequestFormatsListener.php', + 'Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener' => __DIR__ . '/..' . '/symfony/http-kernel/EventListener/DebugHandlersListener.php', + 'Symfony\\Component\\HttpKernel\\EventListener\\DumpListener' => __DIR__ . '/..' . '/symfony/http-kernel/EventListener/DumpListener.php', + 'Symfony\\Component\\HttpKernel\\EventListener\\ExceptionListener' => __DIR__ . '/..' . '/symfony/http-kernel/EventListener/ExceptionListener.php', + 'Symfony\\Component\\HttpKernel\\EventListener\\FragmentListener' => __DIR__ . '/..' . '/symfony/http-kernel/EventListener/FragmentListener.php', + 'Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener' => __DIR__ . '/..' . '/symfony/http-kernel/EventListener/LocaleListener.php', + 'Symfony\\Component\\HttpKernel\\EventListener\\ProfilerListener' => __DIR__ . '/..' . '/symfony/http-kernel/EventListener/ProfilerListener.php', + 'Symfony\\Component\\HttpKernel\\EventListener\\ResponseListener' => __DIR__ . '/..' . '/symfony/http-kernel/EventListener/ResponseListener.php', + 'Symfony\\Component\\HttpKernel\\EventListener\\RouterListener' => __DIR__ . '/..' . '/symfony/http-kernel/EventListener/RouterListener.php', + 'Symfony\\Component\\HttpKernel\\EventListener\\SaveSessionListener' => __DIR__ . '/..' . '/symfony/http-kernel/EventListener/SaveSessionListener.php', + 'Symfony\\Component\\HttpKernel\\EventListener\\SessionListener' => __DIR__ . '/..' . '/symfony/http-kernel/EventListener/SessionListener.php', + 'Symfony\\Component\\HttpKernel\\EventListener\\StreamedResponseListener' => __DIR__ . '/..' . '/symfony/http-kernel/EventListener/StreamedResponseListener.php', + 'Symfony\\Component\\HttpKernel\\EventListener\\SurrogateListener' => __DIR__ . '/..' . '/symfony/http-kernel/EventListener/SurrogateListener.php', + 'Symfony\\Component\\HttpKernel\\EventListener\\TestSessionListener' => __DIR__ . '/..' . '/symfony/http-kernel/EventListener/TestSessionListener.php', + 'Symfony\\Component\\HttpKernel\\EventListener\\TranslatorListener' => __DIR__ . '/..' . '/symfony/http-kernel/EventListener/TranslatorListener.php', + 'Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener' => __DIR__ . '/..' . '/symfony/http-kernel/EventListener/ValidateRequestListener.php', + 'Symfony\\Component\\HttpKernel\\Event\\FilterControllerArgumentsEvent' => __DIR__ . '/..' . '/symfony/http-kernel/Event/FilterControllerArgumentsEvent.php', + 'Symfony\\Component\\HttpKernel\\Event\\FilterControllerEvent' => __DIR__ . '/..' . '/symfony/http-kernel/Event/FilterControllerEvent.php', + 'Symfony\\Component\\HttpKernel\\Event\\FilterResponseEvent' => __DIR__ . '/..' . '/symfony/http-kernel/Event/FilterResponseEvent.php', + 'Symfony\\Component\\HttpKernel\\Event\\FinishRequestEvent' => __DIR__ . '/..' . '/symfony/http-kernel/Event/FinishRequestEvent.php', + 'Symfony\\Component\\HttpKernel\\Event\\GetResponseEvent' => __DIR__ . '/..' . '/symfony/http-kernel/Event/GetResponseEvent.php', + 'Symfony\\Component\\HttpKernel\\Event\\GetResponseForControllerResultEvent' => __DIR__ . '/..' . '/symfony/http-kernel/Event/GetResponseForControllerResultEvent.php', + 'Symfony\\Component\\HttpKernel\\Event\\GetResponseForExceptionEvent' => __DIR__ . '/..' . '/symfony/http-kernel/Event/GetResponseForExceptionEvent.php', + 'Symfony\\Component\\HttpKernel\\Event\\KernelEvent' => __DIR__ . '/..' . '/symfony/http-kernel/Event/KernelEvent.php', + 'Symfony\\Component\\HttpKernel\\Event\\PostResponseEvent' => __DIR__ . '/..' . '/symfony/http-kernel/Event/PostResponseEvent.php', + 'Symfony\\Component\\HttpKernel\\Exception\\AccessDeniedHttpException' => __DIR__ . '/..' . '/symfony/http-kernel/Exception/AccessDeniedHttpException.php', + 'Symfony\\Component\\HttpKernel\\Exception\\BadRequestHttpException' => __DIR__ . '/..' . '/symfony/http-kernel/Exception/BadRequestHttpException.php', + 'Symfony\\Component\\HttpKernel\\Exception\\ConflictHttpException' => __DIR__ . '/..' . '/symfony/http-kernel/Exception/ConflictHttpException.php', + 'Symfony\\Component\\HttpKernel\\Exception\\GoneHttpException' => __DIR__ . '/..' . '/symfony/http-kernel/Exception/GoneHttpException.php', + 'Symfony\\Component\\HttpKernel\\Exception\\HttpException' => __DIR__ . '/..' . '/symfony/http-kernel/Exception/HttpException.php', + 'Symfony\\Component\\HttpKernel\\Exception\\HttpExceptionInterface' => __DIR__ . '/..' . '/symfony/http-kernel/Exception/HttpExceptionInterface.php', + 'Symfony\\Component\\HttpKernel\\Exception\\LengthRequiredHttpException' => __DIR__ . '/..' . '/symfony/http-kernel/Exception/LengthRequiredHttpException.php', + 'Symfony\\Component\\HttpKernel\\Exception\\MethodNotAllowedHttpException' => __DIR__ . '/..' . '/symfony/http-kernel/Exception/MethodNotAllowedHttpException.php', + 'Symfony\\Component\\HttpKernel\\Exception\\NotAcceptableHttpException' => __DIR__ . '/..' . '/symfony/http-kernel/Exception/NotAcceptableHttpException.php', + 'Symfony\\Component\\HttpKernel\\Exception\\NotFoundHttpException' => __DIR__ . '/..' . '/symfony/http-kernel/Exception/NotFoundHttpException.php', + 'Symfony\\Component\\HttpKernel\\Exception\\PreconditionFailedHttpException' => __DIR__ . '/..' . '/symfony/http-kernel/Exception/PreconditionFailedHttpException.php', + 'Symfony\\Component\\HttpKernel\\Exception\\PreconditionRequiredHttpException' => __DIR__ . '/..' . '/symfony/http-kernel/Exception/PreconditionRequiredHttpException.php', + 'Symfony\\Component\\HttpKernel\\Exception\\ServiceUnavailableHttpException' => __DIR__ . '/..' . '/symfony/http-kernel/Exception/ServiceUnavailableHttpException.php', + 'Symfony\\Component\\HttpKernel\\Exception\\TooManyRequestsHttpException' => __DIR__ . '/..' . '/symfony/http-kernel/Exception/TooManyRequestsHttpException.php', + 'Symfony\\Component\\HttpKernel\\Exception\\UnauthorizedHttpException' => __DIR__ . '/..' . '/symfony/http-kernel/Exception/UnauthorizedHttpException.php', + 'Symfony\\Component\\HttpKernel\\Exception\\UnprocessableEntityHttpException' => __DIR__ . '/..' . '/symfony/http-kernel/Exception/UnprocessableEntityHttpException.php', + 'Symfony\\Component\\HttpKernel\\Exception\\UnsupportedMediaTypeHttpException' => __DIR__ . '/..' . '/symfony/http-kernel/Exception/UnsupportedMediaTypeHttpException.php', + 'Symfony\\Component\\HttpKernel\\Fragment\\AbstractSurrogateFragmentRenderer' => __DIR__ . '/..' . '/symfony/http-kernel/Fragment/AbstractSurrogateFragmentRenderer.php', + 'Symfony\\Component\\HttpKernel\\Fragment\\EsiFragmentRenderer' => __DIR__ . '/..' . '/symfony/http-kernel/Fragment/EsiFragmentRenderer.php', + 'Symfony\\Component\\HttpKernel\\Fragment\\FragmentHandler' => __DIR__ . '/..' . '/symfony/http-kernel/Fragment/FragmentHandler.php', + 'Symfony\\Component\\HttpKernel\\Fragment\\FragmentRendererInterface' => __DIR__ . '/..' . '/symfony/http-kernel/Fragment/FragmentRendererInterface.php', + 'Symfony\\Component\\HttpKernel\\Fragment\\HIncludeFragmentRenderer' => __DIR__ . '/..' . '/symfony/http-kernel/Fragment/HIncludeFragmentRenderer.php', + 'Symfony\\Component\\HttpKernel\\Fragment\\InlineFragmentRenderer' => __DIR__ . '/..' . '/symfony/http-kernel/Fragment/InlineFragmentRenderer.php', + 'Symfony\\Component\\HttpKernel\\Fragment\\RoutableFragmentRenderer' => __DIR__ . '/..' . '/symfony/http-kernel/Fragment/RoutableFragmentRenderer.php', + 'Symfony\\Component\\HttpKernel\\Fragment\\SsiFragmentRenderer' => __DIR__ . '/..' . '/symfony/http-kernel/Fragment/SsiFragmentRenderer.php', + 'Symfony\\Component\\HttpKernel\\HttpCache\\AbstractSurrogate' => __DIR__ . '/..' . '/symfony/http-kernel/HttpCache/AbstractSurrogate.php', + 'Symfony\\Component\\HttpKernel\\HttpCache\\Esi' => __DIR__ . '/..' . '/symfony/http-kernel/HttpCache/Esi.php', + 'Symfony\\Component\\HttpKernel\\HttpCache\\HttpCache' => __DIR__ . '/..' . '/symfony/http-kernel/HttpCache/HttpCache.php', + 'Symfony\\Component\\HttpKernel\\HttpCache\\ResponseCacheStrategy' => __DIR__ . '/..' . '/symfony/http-kernel/HttpCache/ResponseCacheStrategy.php', + 'Symfony\\Component\\HttpKernel\\HttpCache\\ResponseCacheStrategyInterface' => __DIR__ . '/..' . '/symfony/http-kernel/HttpCache/ResponseCacheStrategyInterface.php', + 'Symfony\\Component\\HttpKernel\\HttpCache\\Ssi' => __DIR__ . '/..' . '/symfony/http-kernel/HttpCache/Ssi.php', + 'Symfony\\Component\\HttpKernel\\HttpCache\\Store' => __DIR__ . '/..' . '/symfony/http-kernel/HttpCache/Store.php', + 'Symfony\\Component\\HttpKernel\\HttpCache\\StoreInterface' => __DIR__ . '/..' . '/symfony/http-kernel/HttpCache/StoreInterface.php', + 'Symfony\\Component\\HttpKernel\\HttpCache\\SurrogateInterface' => __DIR__ . '/..' . '/symfony/http-kernel/HttpCache/SurrogateInterface.php', + 'Symfony\\Component\\HttpKernel\\HttpKernel' => __DIR__ . '/..' . '/symfony/http-kernel/HttpKernel.php', + 'Symfony\\Component\\HttpKernel\\HttpKernelInterface' => __DIR__ . '/..' . '/symfony/http-kernel/HttpKernelInterface.php', + 'Symfony\\Component\\HttpKernel\\Kernel' => __DIR__ . '/..' . '/symfony/http-kernel/Kernel.php', + 'Symfony\\Component\\HttpKernel\\KernelEvents' => __DIR__ . '/..' . '/symfony/http-kernel/KernelEvents.php', + 'Symfony\\Component\\HttpKernel\\KernelInterface' => __DIR__ . '/..' . '/symfony/http-kernel/KernelInterface.php', + 'Symfony\\Component\\HttpKernel\\Log\\DebugLoggerInterface' => __DIR__ . '/..' . '/symfony/http-kernel/Log/DebugLoggerInterface.php', + 'Symfony\\Component\\HttpKernel\\Profiler\\FileProfilerStorage' => __DIR__ . '/..' . '/symfony/http-kernel/Profiler/FileProfilerStorage.php', + 'Symfony\\Component\\HttpKernel\\Profiler\\Profile' => __DIR__ . '/..' . '/symfony/http-kernel/Profiler/Profile.php', + 'Symfony\\Component\\HttpKernel\\Profiler\\Profiler' => __DIR__ . '/..' . '/symfony/http-kernel/Profiler/Profiler.php', + 'Symfony\\Component\\HttpKernel\\Profiler\\ProfilerStorageInterface' => __DIR__ . '/..' . '/symfony/http-kernel/Profiler/ProfilerStorageInterface.php', + 'Symfony\\Component\\HttpKernel\\TerminableInterface' => __DIR__ . '/..' . '/symfony/http-kernel/TerminableInterface.php', + 'Symfony\\Component\\HttpKernel\\UriSigner' => __DIR__ . '/..' . '/symfony/http-kernel/UriSigner.php', + 'Symfony\\Component\\Process\\Exception\\ExceptionInterface' => __DIR__ . '/..' . '/symfony/process/Exception/ExceptionInterface.php', + 'Symfony\\Component\\Process\\Exception\\InvalidArgumentException' => __DIR__ . '/..' . '/symfony/process/Exception/InvalidArgumentException.php', + 'Symfony\\Component\\Process\\Exception\\LogicException' => __DIR__ . '/..' . '/symfony/process/Exception/LogicException.php', + 'Symfony\\Component\\Process\\Exception\\ProcessFailedException' => __DIR__ . '/..' . '/symfony/process/Exception/ProcessFailedException.php', + 'Symfony\\Component\\Process\\Exception\\ProcessTimedOutException' => __DIR__ . '/..' . '/symfony/process/Exception/ProcessTimedOutException.php', + 'Symfony\\Component\\Process\\Exception\\RuntimeException' => __DIR__ . '/..' . '/symfony/process/Exception/RuntimeException.php', + 'Symfony\\Component\\Process\\ExecutableFinder' => __DIR__ . '/..' . '/symfony/process/ExecutableFinder.php', + 'Symfony\\Component\\Process\\InputStream' => __DIR__ . '/..' . '/symfony/process/InputStream.php', + 'Symfony\\Component\\Process\\PhpExecutableFinder' => __DIR__ . '/..' . '/symfony/process/PhpExecutableFinder.php', + 'Symfony\\Component\\Process\\PhpProcess' => __DIR__ . '/..' . '/symfony/process/PhpProcess.php', + 'Symfony\\Component\\Process\\Pipes\\AbstractPipes' => __DIR__ . '/..' . '/symfony/process/Pipes/AbstractPipes.php', + 'Symfony\\Component\\Process\\Pipes\\PipesInterface' => __DIR__ . '/..' . '/symfony/process/Pipes/PipesInterface.php', + 'Symfony\\Component\\Process\\Pipes\\UnixPipes' => __DIR__ . '/..' . '/symfony/process/Pipes/UnixPipes.php', + 'Symfony\\Component\\Process\\Pipes\\WindowsPipes' => __DIR__ . '/..' . '/symfony/process/Pipes/WindowsPipes.php', + 'Symfony\\Component\\Process\\Process' => __DIR__ . '/..' . '/symfony/process/Process.php', + 'Symfony\\Component\\Process\\ProcessBuilder' => __DIR__ . '/..' . '/symfony/process/ProcessBuilder.php', + 'Symfony\\Component\\Process\\ProcessUtils' => __DIR__ . '/..' . '/symfony/process/ProcessUtils.php', + 'Symfony\\Component\\Routing\\Annotation\\Route' => __DIR__ . '/..' . '/symfony/routing/Annotation/Route.php', + 'Symfony\\Component\\Routing\\CompiledRoute' => __DIR__ . '/..' . '/symfony/routing/CompiledRoute.php', + 'Symfony\\Component\\Routing\\DependencyInjection\\RoutingResolverPass' => __DIR__ . '/..' . '/symfony/routing/DependencyInjection/RoutingResolverPass.php', + 'Symfony\\Component\\Routing\\Exception\\ExceptionInterface' => __DIR__ . '/..' . '/symfony/routing/Exception/ExceptionInterface.php', + 'Symfony\\Component\\Routing\\Exception\\InvalidParameterException' => __DIR__ . '/..' . '/symfony/routing/Exception/InvalidParameterException.php', + 'Symfony\\Component\\Routing\\Exception\\MethodNotAllowedException' => __DIR__ . '/..' . '/symfony/routing/Exception/MethodNotAllowedException.php', + 'Symfony\\Component\\Routing\\Exception\\MissingMandatoryParametersException' => __DIR__ . '/..' . '/symfony/routing/Exception/MissingMandatoryParametersException.php', + 'Symfony\\Component\\Routing\\Exception\\ResourceNotFoundException' => __DIR__ . '/..' . '/symfony/routing/Exception/ResourceNotFoundException.php', + 'Symfony\\Component\\Routing\\Exception\\RouteNotFoundException' => __DIR__ . '/..' . '/symfony/routing/Exception/RouteNotFoundException.php', + 'Symfony\\Component\\Routing\\Generator\\ConfigurableRequirementsInterface' => __DIR__ . '/..' . '/symfony/routing/Generator/ConfigurableRequirementsInterface.php', + 'Symfony\\Component\\Routing\\Generator\\Dumper\\GeneratorDumper' => __DIR__ . '/..' . '/symfony/routing/Generator/Dumper/GeneratorDumper.php', + 'Symfony\\Component\\Routing\\Generator\\Dumper\\GeneratorDumperInterface' => __DIR__ . '/..' . '/symfony/routing/Generator/Dumper/GeneratorDumperInterface.php', + 'Symfony\\Component\\Routing\\Generator\\Dumper\\PhpGeneratorDumper' => __DIR__ . '/..' . '/symfony/routing/Generator/Dumper/PhpGeneratorDumper.php', + 'Symfony\\Component\\Routing\\Generator\\UrlGenerator' => __DIR__ . '/..' . '/symfony/routing/Generator/UrlGenerator.php', + 'Symfony\\Component\\Routing\\Generator\\UrlGeneratorInterface' => __DIR__ . '/..' . '/symfony/routing/Generator/UrlGeneratorInterface.php', + 'Symfony\\Component\\Routing\\Loader\\AnnotationClassLoader' => __DIR__ . '/..' . '/symfony/routing/Loader/AnnotationClassLoader.php', + 'Symfony\\Component\\Routing\\Loader\\AnnotationDirectoryLoader' => __DIR__ . '/..' . '/symfony/routing/Loader/AnnotationDirectoryLoader.php', + 'Symfony\\Component\\Routing\\Loader\\AnnotationFileLoader' => __DIR__ . '/..' . '/symfony/routing/Loader/AnnotationFileLoader.php', + 'Symfony\\Component\\Routing\\Loader\\ClosureLoader' => __DIR__ . '/..' . '/symfony/routing/Loader/ClosureLoader.php', + 'Symfony\\Component\\Routing\\Loader\\DependencyInjection\\ServiceRouterLoader' => __DIR__ . '/..' . '/symfony/routing/Loader/DependencyInjection/ServiceRouterLoader.php', + 'Symfony\\Component\\Routing\\Loader\\DirectoryLoader' => __DIR__ . '/..' . '/symfony/routing/Loader/DirectoryLoader.php', + 'Symfony\\Component\\Routing\\Loader\\ObjectRouteLoader' => __DIR__ . '/..' . '/symfony/routing/Loader/ObjectRouteLoader.php', + 'Symfony\\Component\\Routing\\Loader\\PhpFileLoader' => __DIR__ . '/..' . '/symfony/routing/Loader/PhpFileLoader.php', + 'Symfony\\Component\\Routing\\Loader\\XmlFileLoader' => __DIR__ . '/..' . '/symfony/routing/Loader/XmlFileLoader.php', + 'Symfony\\Component\\Routing\\Loader\\YamlFileLoader' => __DIR__ . '/..' . '/symfony/routing/Loader/YamlFileLoader.php', + 'Symfony\\Component\\Routing\\Matcher\\Dumper\\DumperCollection' => __DIR__ . '/..' . '/symfony/routing/Matcher/Dumper/DumperCollection.php', + 'Symfony\\Component\\Routing\\Matcher\\Dumper\\DumperRoute' => __DIR__ . '/..' . '/symfony/routing/Matcher/Dumper/DumperRoute.php', + 'Symfony\\Component\\Routing\\Matcher\\Dumper\\MatcherDumper' => __DIR__ . '/..' . '/symfony/routing/Matcher/Dumper/MatcherDumper.php', + 'Symfony\\Component\\Routing\\Matcher\\Dumper\\MatcherDumperInterface' => __DIR__ . '/..' . '/symfony/routing/Matcher/Dumper/MatcherDumperInterface.php', + 'Symfony\\Component\\Routing\\Matcher\\Dumper\\PhpMatcherDumper' => __DIR__ . '/..' . '/symfony/routing/Matcher/Dumper/PhpMatcherDumper.php', + 'Symfony\\Component\\Routing\\Matcher\\Dumper\\StaticPrefixCollection' => __DIR__ . '/..' . '/symfony/routing/Matcher/Dumper/StaticPrefixCollection.php', + 'Symfony\\Component\\Routing\\Matcher\\RedirectableUrlMatcher' => __DIR__ . '/..' . '/symfony/routing/Matcher/RedirectableUrlMatcher.php', + 'Symfony\\Component\\Routing\\Matcher\\RedirectableUrlMatcherInterface' => __DIR__ . '/..' . '/symfony/routing/Matcher/RedirectableUrlMatcherInterface.php', + 'Symfony\\Component\\Routing\\Matcher\\RequestMatcherInterface' => __DIR__ . '/..' . '/symfony/routing/Matcher/RequestMatcherInterface.php', + 'Symfony\\Component\\Routing\\Matcher\\TraceableUrlMatcher' => __DIR__ . '/..' . '/symfony/routing/Matcher/TraceableUrlMatcher.php', + 'Symfony\\Component\\Routing\\Matcher\\UrlMatcher' => __DIR__ . '/..' . '/symfony/routing/Matcher/UrlMatcher.php', + 'Symfony\\Component\\Routing\\Matcher\\UrlMatcherInterface' => __DIR__ . '/..' . '/symfony/routing/Matcher/UrlMatcherInterface.php', + 'Symfony\\Component\\Routing\\RequestContext' => __DIR__ . '/..' . '/symfony/routing/RequestContext.php', + 'Symfony\\Component\\Routing\\RequestContextAwareInterface' => __DIR__ . '/..' . '/symfony/routing/RequestContextAwareInterface.php', + 'Symfony\\Component\\Routing\\Route' => __DIR__ . '/..' . '/symfony/routing/Route.php', + 'Symfony\\Component\\Routing\\RouteCollection' => __DIR__ . '/..' . '/symfony/routing/RouteCollection.php', + 'Symfony\\Component\\Routing\\RouteCollectionBuilder' => __DIR__ . '/..' . '/symfony/routing/RouteCollectionBuilder.php', + 'Symfony\\Component\\Routing\\RouteCompiler' => __DIR__ . '/..' . '/symfony/routing/RouteCompiler.php', + 'Symfony\\Component\\Routing\\RouteCompilerInterface' => __DIR__ . '/..' . '/symfony/routing/RouteCompilerInterface.php', + 'Symfony\\Component\\Routing\\Router' => __DIR__ . '/..' . '/symfony/routing/Router.php', + 'Symfony\\Component\\Routing\\RouterInterface' => __DIR__ . '/..' . '/symfony/routing/RouterInterface.php', + 'Symfony\\Component\\Translation\\Catalogue\\AbstractOperation' => __DIR__ . '/..' . '/symfony/translation/Catalogue/AbstractOperation.php', + 'Symfony\\Component\\Translation\\Catalogue\\MergeOperation' => __DIR__ . '/..' . '/symfony/translation/Catalogue/MergeOperation.php', + 'Symfony\\Component\\Translation\\Catalogue\\OperationInterface' => __DIR__ . '/..' . '/symfony/translation/Catalogue/OperationInterface.php', + 'Symfony\\Component\\Translation\\Catalogue\\TargetOperation' => __DIR__ . '/..' . '/symfony/translation/Catalogue/TargetOperation.php', + 'Symfony\\Component\\Translation\\Command\\XliffLintCommand' => __DIR__ . '/..' . '/symfony/translation/Command/XliffLintCommand.php', + 'Symfony\\Component\\Translation\\DataCollectorTranslator' => __DIR__ . '/..' . '/symfony/translation/DataCollectorTranslator.php', + 'Symfony\\Component\\Translation\\DataCollector\\TranslationDataCollector' => __DIR__ . '/..' . '/symfony/translation/DataCollector/TranslationDataCollector.php', + 'Symfony\\Component\\Translation\\Dumper\\CsvFileDumper' => __DIR__ . '/..' . '/symfony/translation/Dumper/CsvFileDumper.php', + 'Symfony\\Component\\Translation\\Dumper\\DumperInterface' => __DIR__ . '/..' . '/symfony/translation/Dumper/DumperInterface.php', + 'Symfony\\Component\\Translation\\Dumper\\FileDumper' => __DIR__ . '/..' . '/symfony/translation/Dumper/FileDumper.php', + 'Symfony\\Component\\Translation\\Dumper\\IcuResFileDumper' => __DIR__ . '/..' . '/symfony/translation/Dumper/IcuResFileDumper.php', + 'Symfony\\Component\\Translation\\Dumper\\IniFileDumper' => __DIR__ . '/..' . '/symfony/translation/Dumper/IniFileDumper.php', + 'Symfony\\Component\\Translation\\Dumper\\JsonFileDumper' => __DIR__ . '/..' . '/symfony/translation/Dumper/JsonFileDumper.php', + 'Symfony\\Component\\Translation\\Dumper\\MoFileDumper' => __DIR__ . '/..' . '/symfony/translation/Dumper/MoFileDumper.php', + 'Symfony\\Component\\Translation\\Dumper\\PhpFileDumper' => __DIR__ . '/..' . '/symfony/translation/Dumper/PhpFileDumper.php', + 'Symfony\\Component\\Translation\\Dumper\\PoFileDumper' => __DIR__ . '/..' . '/symfony/translation/Dumper/PoFileDumper.php', + 'Symfony\\Component\\Translation\\Dumper\\QtFileDumper' => __DIR__ . '/..' . '/symfony/translation/Dumper/QtFileDumper.php', + 'Symfony\\Component\\Translation\\Dumper\\XliffFileDumper' => __DIR__ . '/..' . '/symfony/translation/Dumper/XliffFileDumper.php', + 'Symfony\\Component\\Translation\\Dumper\\YamlFileDumper' => __DIR__ . '/..' . '/symfony/translation/Dumper/YamlFileDumper.php', + 'Symfony\\Component\\Translation\\Exception\\ExceptionInterface' => __DIR__ . '/..' . '/symfony/translation/Exception/ExceptionInterface.php', + 'Symfony\\Component\\Translation\\Exception\\InvalidArgumentException' => __DIR__ . '/..' . '/symfony/translation/Exception/InvalidArgumentException.php', + 'Symfony\\Component\\Translation\\Exception\\InvalidResourceException' => __DIR__ . '/..' . '/symfony/translation/Exception/InvalidResourceException.php', + 'Symfony\\Component\\Translation\\Exception\\LogicException' => __DIR__ . '/..' . '/symfony/translation/Exception/LogicException.php', + 'Symfony\\Component\\Translation\\Exception\\NotFoundResourceException' => __DIR__ . '/..' . '/symfony/translation/Exception/NotFoundResourceException.php', + 'Symfony\\Component\\Translation\\Exception\\RuntimeException' => __DIR__ . '/..' . '/symfony/translation/Exception/RuntimeException.php', + 'Symfony\\Component\\Translation\\Extractor\\AbstractFileExtractor' => __DIR__ . '/..' . '/symfony/translation/Extractor/AbstractFileExtractor.php', + 'Symfony\\Component\\Translation\\Extractor\\ChainExtractor' => __DIR__ . '/..' . '/symfony/translation/Extractor/ChainExtractor.php', + 'Symfony\\Component\\Translation\\Extractor\\ExtractorInterface' => __DIR__ . '/..' . '/symfony/translation/Extractor/ExtractorInterface.php', + 'Symfony\\Component\\Translation\\IdentityTranslator' => __DIR__ . '/..' . '/symfony/translation/IdentityTranslator.php', + 'Symfony\\Component\\Translation\\Interval' => __DIR__ . '/..' . '/symfony/translation/Interval.php', + 'Symfony\\Component\\Translation\\Loader\\ArrayLoader' => __DIR__ . '/..' . '/symfony/translation/Loader/ArrayLoader.php', + 'Symfony\\Component\\Translation\\Loader\\CsvFileLoader' => __DIR__ . '/..' . '/symfony/translation/Loader/CsvFileLoader.php', + 'Symfony\\Component\\Translation\\Loader\\FileLoader' => __DIR__ . '/..' . '/symfony/translation/Loader/FileLoader.php', + 'Symfony\\Component\\Translation\\Loader\\IcuDatFileLoader' => __DIR__ . '/..' . '/symfony/translation/Loader/IcuDatFileLoader.php', + 'Symfony\\Component\\Translation\\Loader\\IcuResFileLoader' => __DIR__ . '/..' . '/symfony/translation/Loader/IcuResFileLoader.php', + 'Symfony\\Component\\Translation\\Loader\\IniFileLoader' => __DIR__ . '/..' . '/symfony/translation/Loader/IniFileLoader.php', + 'Symfony\\Component\\Translation\\Loader\\JsonFileLoader' => __DIR__ . '/..' . '/symfony/translation/Loader/JsonFileLoader.php', + 'Symfony\\Component\\Translation\\Loader\\LoaderInterface' => __DIR__ . '/..' . '/symfony/translation/Loader/LoaderInterface.php', + 'Symfony\\Component\\Translation\\Loader\\MoFileLoader' => __DIR__ . '/..' . '/symfony/translation/Loader/MoFileLoader.php', + 'Symfony\\Component\\Translation\\Loader\\PhpFileLoader' => __DIR__ . '/..' . '/symfony/translation/Loader/PhpFileLoader.php', + 'Symfony\\Component\\Translation\\Loader\\PoFileLoader' => __DIR__ . '/..' . '/symfony/translation/Loader/PoFileLoader.php', + 'Symfony\\Component\\Translation\\Loader\\QtFileLoader' => __DIR__ . '/..' . '/symfony/translation/Loader/QtFileLoader.php', + 'Symfony\\Component\\Translation\\Loader\\XliffFileLoader' => __DIR__ . '/..' . '/symfony/translation/Loader/XliffFileLoader.php', + 'Symfony\\Component\\Translation\\Loader\\YamlFileLoader' => __DIR__ . '/..' . '/symfony/translation/Loader/YamlFileLoader.php', + 'Symfony\\Component\\Translation\\LoggingTranslator' => __DIR__ . '/..' . '/symfony/translation/LoggingTranslator.php', + 'Symfony\\Component\\Translation\\MessageCatalogue' => __DIR__ . '/..' . '/symfony/translation/MessageCatalogue.php', + 'Symfony\\Component\\Translation\\MessageCatalogueInterface' => __DIR__ . '/..' . '/symfony/translation/MessageCatalogueInterface.php', + 'Symfony\\Component\\Translation\\MessageSelector' => __DIR__ . '/..' . '/symfony/translation/MessageSelector.php', + 'Symfony\\Component\\Translation\\MetadataAwareInterface' => __DIR__ . '/..' . '/symfony/translation/MetadataAwareInterface.php', + 'Symfony\\Component\\Translation\\PluralizationRules' => __DIR__ . '/..' . '/symfony/translation/PluralizationRules.php', + 'Symfony\\Component\\Translation\\Translator' => __DIR__ . '/..' . '/symfony/translation/Translator.php', + 'Symfony\\Component\\Translation\\TranslatorBagInterface' => __DIR__ . '/..' . '/symfony/translation/TranslatorBagInterface.php', + 'Symfony\\Component\\Translation\\TranslatorInterface' => __DIR__ . '/..' . '/symfony/translation/TranslatorInterface.php', + 'Symfony\\Component\\Translation\\Util\\ArrayConverter' => __DIR__ . '/..' . '/symfony/translation/Util/ArrayConverter.php', + 'Symfony\\Component\\Translation\\Writer\\TranslationWriter' => __DIR__ . '/..' . '/symfony/translation/Writer/TranslationWriter.php', + 'Symfony\\Component\\VarDumper\\Caster\\AmqpCaster' => __DIR__ . '/..' . '/symfony/var-dumper/Caster/AmqpCaster.php', + 'Symfony\\Component\\VarDumper\\Caster\\ArgsStub' => __DIR__ . '/..' . '/symfony/var-dumper/Caster/ArgsStub.php', + 'Symfony\\Component\\VarDumper\\Caster\\Caster' => __DIR__ . '/..' . '/symfony/var-dumper/Caster/Caster.php', + 'Symfony\\Component\\VarDumper\\Caster\\ClassStub' => __DIR__ . '/..' . '/symfony/var-dumper/Caster/ClassStub.php', + 'Symfony\\Component\\VarDumper\\Caster\\ConstStub' => __DIR__ . '/..' . '/symfony/var-dumper/Caster/ConstStub.php', + 'Symfony\\Component\\VarDumper\\Caster\\CutArrayStub' => __DIR__ . '/..' . '/symfony/var-dumper/Caster/CutArrayStub.php', + 'Symfony\\Component\\VarDumper\\Caster\\CutStub' => __DIR__ . '/..' . '/symfony/var-dumper/Caster/CutStub.php', + 'Symfony\\Component\\VarDumper\\Caster\\DOMCaster' => __DIR__ . '/..' . '/symfony/var-dumper/Caster/DOMCaster.php', + 'Symfony\\Component\\VarDumper\\Caster\\DoctrineCaster' => __DIR__ . '/..' . '/symfony/var-dumper/Caster/DoctrineCaster.php', + 'Symfony\\Component\\VarDumper\\Caster\\EnumStub' => __DIR__ . '/..' . '/symfony/var-dumper/Caster/EnumStub.php', + 'Symfony\\Component\\VarDumper\\Caster\\ExceptionCaster' => __DIR__ . '/..' . '/symfony/var-dumper/Caster/ExceptionCaster.php', + 'Symfony\\Component\\VarDumper\\Caster\\FrameStub' => __DIR__ . '/..' . '/symfony/var-dumper/Caster/FrameStub.php', + 'Symfony\\Component\\VarDumper\\Caster\\LinkStub' => __DIR__ . '/..' . '/symfony/var-dumper/Caster/LinkStub.php', + 'Symfony\\Component\\VarDumper\\Caster\\MongoCaster' => __DIR__ . '/..' . '/symfony/var-dumper/Caster/MongoCaster.php', + 'Symfony\\Component\\VarDumper\\Caster\\PdoCaster' => __DIR__ . '/..' . '/symfony/var-dumper/Caster/PdoCaster.php', + 'Symfony\\Component\\VarDumper\\Caster\\PgSqlCaster' => __DIR__ . '/..' . '/symfony/var-dumper/Caster/PgSqlCaster.php', + 'Symfony\\Component\\VarDumper\\Caster\\RedisCaster' => __DIR__ . '/..' . '/symfony/var-dumper/Caster/RedisCaster.php', + 'Symfony\\Component\\VarDumper\\Caster\\ReflectionCaster' => __DIR__ . '/..' . '/symfony/var-dumper/Caster/ReflectionCaster.php', + 'Symfony\\Component\\VarDumper\\Caster\\ResourceCaster' => __DIR__ . '/..' . '/symfony/var-dumper/Caster/ResourceCaster.php', + 'Symfony\\Component\\VarDumper\\Caster\\SplCaster' => __DIR__ . '/..' . '/symfony/var-dumper/Caster/SplCaster.php', + 'Symfony\\Component\\VarDumper\\Caster\\StubCaster' => __DIR__ . '/..' . '/symfony/var-dumper/Caster/StubCaster.php', + 'Symfony\\Component\\VarDumper\\Caster\\SymfonyCaster' => __DIR__ . '/..' . '/symfony/var-dumper/Caster/SymfonyCaster.php', + 'Symfony\\Component\\VarDumper\\Caster\\TraceStub' => __DIR__ . '/..' . '/symfony/var-dumper/Caster/TraceStub.php', + 'Symfony\\Component\\VarDumper\\Caster\\XmlReaderCaster' => __DIR__ . '/..' . '/symfony/var-dumper/Caster/XmlReaderCaster.php', + 'Symfony\\Component\\VarDumper\\Caster\\XmlResourceCaster' => __DIR__ . '/..' . '/symfony/var-dumper/Caster/XmlResourceCaster.php', + 'Symfony\\Component\\VarDumper\\Cloner\\AbstractCloner' => __DIR__ . '/..' . '/symfony/var-dumper/Cloner/AbstractCloner.php', + 'Symfony\\Component\\VarDumper\\Cloner\\ClonerInterface' => __DIR__ . '/..' . '/symfony/var-dumper/Cloner/ClonerInterface.php', + 'Symfony\\Component\\VarDumper\\Cloner\\Cursor' => __DIR__ . '/..' . '/symfony/var-dumper/Cloner/Cursor.php', + 'Symfony\\Component\\VarDumper\\Cloner\\Data' => __DIR__ . '/..' . '/symfony/var-dumper/Cloner/Data.php', + 'Symfony\\Component\\VarDumper\\Cloner\\DumperInterface' => __DIR__ . '/..' . '/symfony/var-dumper/Cloner/DumperInterface.php', + 'Symfony\\Component\\VarDumper\\Cloner\\Stub' => __DIR__ . '/..' . '/symfony/var-dumper/Cloner/Stub.php', + 'Symfony\\Component\\VarDumper\\Cloner\\VarCloner' => __DIR__ . '/..' . '/symfony/var-dumper/Cloner/VarCloner.php', + 'Symfony\\Component\\VarDumper\\Dumper\\AbstractDumper' => __DIR__ . '/..' . '/symfony/var-dumper/Dumper/AbstractDumper.php', + 'Symfony\\Component\\VarDumper\\Dumper\\CliDumper' => __DIR__ . '/..' . '/symfony/var-dumper/Dumper/CliDumper.php', + 'Symfony\\Component\\VarDumper\\Dumper\\DataDumperInterface' => __DIR__ . '/..' . '/symfony/var-dumper/Dumper/DataDumperInterface.php', + 'Symfony\\Component\\VarDumper\\Dumper\\HtmlDumper' => __DIR__ . '/..' . '/symfony/var-dumper/Dumper/HtmlDumper.php', + 'Symfony\\Component\\VarDumper\\Exception\\ThrowingCasterException' => __DIR__ . '/..' . '/symfony/var-dumper/Exception/ThrowingCasterException.php', + 'Symfony\\Component\\VarDumper\\Test\\VarDumperTestTrait' => __DIR__ . '/..' . '/symfony/var-dumper/Test/VarDumperTestTrait.php', + 'Symfony\\Component\\VarDumper\\VarDumper' => __DIR__ . '/..' . '/symfony/var-dumper/VarDumper.php', + 'Symfony\\Polyfill\\Mbstring\\Mbstring' => __DIR__ . '/..' . '/symfony/polyfill-mbstring/Mbstring.php', + 'Tests\\CreatesApplication' => __DIR__ . '/../..' . '/tests/CreatesApplication.php', + 'Tests\\Feature\\ExampleTest' => __DIR__ . '/../..' . '/tests/Feature/ExampleTest.php', + 'Tests\\TestCase' => __DIR__ . '/../..' . '/tests/TestCase.php', + 'Tests\\Unit\\ExampleTest' => __DIR__ . '/../..' . '/tests/Unit/ExampleTest.php', 'Text_Template' => __DIR__ . '/..' . '/phpunit/php-text-template/src/Template.php', 'TheSeer\\Tokenizer\\Exception' => __DIR__ . '/..' . '/theseer/tokenizer/src/Exception.php', 'TheSeer\\Tokenizer\\NamespaceUri' => __DIR__ . '/..' . '/theseer/tokenizer/src/NamespaceUri.php', @@ -906,6 +3479,107 @@ class ComposerStaticInit0ef7b7c57b5051a6692d56ad58e04e79 'TheSeer\\Tokenizer\\TokenCollectionException' => __DIR__ . '/..' . '/theseer/tokenizer/src/TokenCollectionException.php', 'TheSeer\\Tokenizer\\Tokenizer' => __DIR__ . '/..' . '/theseer/tokenizer/src/Tokenizer.php', 'TheSeer\\Tokenizer\\XMLSerializer' => __DIR__ . '/..' . '/theseer/tokenizer/src/XMLSerializer.php', + 'TijsVerkoyen\\CssToInlineStyles\\CssToInlineStyles' => __DIR__ . '/..' . '/tijsverkoyen/css-to-inline-styles/src/CssToInlineStyles.php', + 'TijsVerkoyen\\CssToInlineStyles\\Css\\Processor' => __DIR__ . '/..' . '/tijsverkoyen/css-to-inline-styles/src/Css/Processor.php', + 'TijsVerkoyen\\CssToInlineStyles\\Css\\Property\\Processor' => __DIR__ . '/..' . '/tijsverkoyen/css-to-inline-styles/src/Css/Property/Processor.php', + 'TijsVerkoyen\\CssToInlineStyles\\Css\\Property\\Property' => __DIR__ . '/..' . '/tijsverkoyen/css-to-inline-styles/src/Css/Property/Property.php', + 'TijsVerkoyen\\CssToInlineStyles\\Css\\Rule\\Processor' => __DIR__ . '/..' . '/tijsverkoyen/css-to-inline-styles/src/Css/Rule/Processor.php', + 'TijsVerkoyen\\CssToInlineStyles\\Css\\Rule\\Rule' => __DIR__ . '/..' . '/tijsverkoyen/css-to-inline-styles/src/Css/Rule/Rule.php', + 'Webmozart\\Assert\\Assert' => __DIR__ . '/..' . '/webmozart/assert/src/Assert.php', + 'Whoops\\Exception\\ErrorException' => __DIR__ . '/..' . '/filp/whoops/src/Whoops/Exception/ErrorException.php', + 'Whoops\\Exception\\Formatter' => __DIR__ . '/..' . '/filp/whoops/src/Whoops/Exception/Formatter.php', + 'Whoops\\Exception\\Frame' => __DIR__ . '/..' . '/filp/whoops/src/Whoops/Exception/Frame.php', + 'Whoops\\Exception\\FrameCollection' => __DIR__ . '/..' . '/filp/whoops/src/Whoops/Exception/FrameCollection.php', + 'Whoops\\Exception\\Inspector' => __DIR__ . '/..' . '/filp/whoops/src/Whoops/Exception/Inspector.php', + 'Whoops\\Handler\\CallbackHandler' => __DIR__ . '/..' . '/filp/whoops/src/Whoops/Handler/CallbackHandler.php', + 'Whoops\\Handler\\Handler' => __DIR__ . '/..' . '/filp/whoops/src/Whoops/Handler/Handler.php', + 'Whoops\\Handler\\HandlerInterface' => __DIR__ . '/..' . '/filp/whoops/src/Whoops/Handler/HandlerInterface.php', + 'Whoops\\Handler\\JsonResponseHandler' => __DIR__ . '/..' . '/filp/whoops/src/Whoops/Handler/JsonResponseHandler.php', + 'Whoops\\Handler\\PlainTextHandler' => __DIR__ . '/..' . '/filp/whoops/src/Whoops/Handler/PlainTextHandler.php', + 'Whoops\\Handler\\PrettyPageHandler' => __DIR__ . '/..' . '/filp/whoops/src/Whoops/Handler/PrettyPageHandler.php', + 'Whoops\\Handler\\XmlResponseHandler' => __DIR__ . '/..' . '/filp/whoops/src/Whoops/Handler/XmlResponseHandler.php', + 'Whoops\\Run' => __DIR__ . '/..' . '/filp/whoops/src/Whoops/Run.php', + 'Whoops\\RunInterface' => __DIR__ . '/..' . '/filp/whoops/src/Whoops/RunInterface.php', + 'Whoops\\Util\\HtmlDumperOutput' => __DIR__ . '/..' . '/filp/whoops/src/Whoops/Util/HtmlDumperOutput.php', + 'Whoops\\Util\\Misc' => __DIR__ . '/..' . '/filp/whoops/src/Whoops/Util/Misc.php', + 'Whoops\\Util\\SystemFacade' => __DIR__ . '/..' . '/filp/whoops/src/Whoops/Util/SystemFacade.php', + 'Whoops\\Util\\TemplateHelper' => __DIR__ . '/..' . '/filp/whoops/src/Whoops/Util/TemplateHelper.php', + 'XdgBaseDir\\Xdg' => __DIR__ . '/..' . '/dnoegel/php-xdg-base-dir/src/Xdg.php', + 'jlawrence\\eos\\AdvancedFunctions' => __DIR__ . '/..' . '/jlawrence/eos/src/AdvancedFunctions.php', + 'jlawrence\\eos\\Graph' => __DIR__ . '/..' . '/jlawrence/eos/src/Graph.php', + 'jlawrence\\eos\\Math' => __DIR__ . '/..' . '/jlawrence/eos/src/Math.php', + 'jlawrence\\eos\\Matrix' => __DIR__ . '/..' . '/jlawrence/eos/src/Matrix.php', + 'jlawrence\\eos\\Parser' => __DIR__ . '/..' . '/jlawrence/eos/src/Parser.php', + 'jlawrence\\eos\\Stack' => __DIR__ . '/..' . '/jlawrence/eos/src/Stack.php', + 'jlawrence\\eos\\Trig' => __DIR__ . '/..' . '/jlawrence/eos/src/Trig.php', + 'phpDocumentor\\Reflection\\DocBlock' => __DIR__ . '/..' . '/phpdocumentor/reflection-docblock/src/DocBlock.php', + 'phpDocumentor\\Reflection\\DocBlockFactory' => __DIR__ . '/..' . '/phpdocumentor/reflection-docblock/src/DocBlockFactory.php', + 'phpDocumentor\\Reflection\\DocBlockFactoryInterface' => __DIR__ . '/..' . '/phpdocumentor/reflection-docblock/src/DocBlockFactoryInterface.php', + 'phpDocumentor\\Reflection\\DocBlock\\Description' => __DIR__ . '/..' . '/phpdocumentor/reflection-docblock/src/DocBlock/Description.php', + 'phpDocumentor\\Reflection\\DocBlock\\DescriptionFactory' => __DIR__ . '/..' . '/phpdocumentor/reflection-docblock/src/DocBlock/DescriptionFactory.php', + 'phpDocumentor\\Reflection\\DocBlock\\ExampleFinder' => __DIR__ . '/..' . '/phpdocumentor/reflection-docblock/src/DocBlock/ExampleFinder.php', + 'phpDocumentor\\Reflection\\DocBlock\\Serializer' => __DIR__ . '/..' . '/phpdocumentor/reflection-docblock/src/DocBlock/Serializer.php', + 'phpDocumentor\\Reflection\\DocBlock\\StandardTagFactory' => __DIR__ . '/..' . '/phpdocumentor/reflection-docblock/src/DocBlock/StandardTagFactory.php', + 'phpDocumentor\\Reflection\\DocBlock\\Tag' => __DIR__ . '/..' . '/phpdocumentor/reflection-docblock/src/DocBlock/Tag.php', + 'phpDocumentor\\Reflection\\DocBlock\\TagFactory' => __DIR__ . '/..' . '/phpdocumentor/reflection-docblock/src/DocBlock/TagFactory.php', + 'phpDocumentor\\Reflection\\DocBlock\\Tags\\Author' => __DIR__ . '/..' . '/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Author.php', + 'phpDocumentor\\Reflection\\DocBlock\\Tags\\BaseTag' => __DIR__ . '/..' . '/phpdocumentor/reflection-docblock/src/DocBlock/Tags/BaseTag.php', + 'phpDocumentor\\Reflection\\DocBlock\\Tags\\Covers' => __DIR__ . '/..' . '/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Covers.php', + 'phpDocumentor\\Reflection\\DocBlock\\Tags\\Deprecated' => __DIR__ . '/..' . '/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Deprecated.php', + 'phpDocumentor\\Reflection\\DocBlock\\Tags\\Example' => __DIR__ . '/..' . '/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Example.php', + 'phpDocumentor\\Reflection\\DocBlock\\Tags\\Factory\\StaticMethod' => __DIR__ . '/..' . '/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Factory/StaticMethod.php', + 'phpDocumentor\\Reflection\\DocBlock\\Tags\\Factory\\Strategy' => __DIR__ . '/..' . '/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Factory/Strategy.php', + 'phpDocumentor\\Reflection\\DocBlock\\Tags\\Formatter' => __DIR__ . '/..' . '/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Formatter.php', + 'phpDocumentor\\Reflection\\DocBlock\\Tags\\Formatter\\AlignFormatter' => __DIR__ . '/..' . '/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Formatter/AlignFormatter.php', + 'phpDocumentor\\Reflection\\DocBlock\\Tags\\Formatter\\PassthroughFormatter' => __DIR__ . '/..' . '/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Formatter/PassthroughFormatter.php', + 'phpDocumentor\\Reflection\\DocBlock\\Tags\\Generic' => __DIR__ . '/..' . '/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Generic.php', + 'phpDocumentor\\Reflection\\DocBlock\\Tags\\Link' => __DIR__ . '/..' . '/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Link.php', + 'phpDocumentor\\Reflection\\DocBlock\\Tags\\Method' => __DIR__ . '/..' . '/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Method.php', + 'phpDocumentor\\Reflection\\DocBlock\\Tags\\Param' => __DIR__ . '/..' . '/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Param.php', + 'phpDocumentor\\Reflection\\DocBlock\\Tags\\Property' => __DIR__ . '/..' . '/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Property.php', + 'phpDocumentor\\Reflection\\DocBlock\\Tags\\PropertyRead' => __DIR__ . '/..' . '/phpdocumentor/reflection-docblock/src/DocBlock/Tags/PropertyRead.php', + 'phpDocumentor\\Reflection\\DocBlock\\Tags\\PropertyWrite' => __DIR__ . '/..' . '/phpdocumentor/reflection-docblock/src/DocBlock/Tags/PropertyWrite.php', + 'phpDocumentor\\Reflection\\DocBlock\\Tags\\Reference\\Fqsen' => __DIR__ . '/..' . '/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Reference/Fqsen.php', + 'phpDocumentor\\Reflection\\DocBlock\\Tags\\Reference\\Reference' => __DIR__ . '/..' . '/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Reference/Reference.php', + 'phpDocumentor\\Reflection\\DocBlock\\Tags\\Reference\\Url' => __DIR__ . '/..' . '/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Reference/Url.php', + 'phpDocumentor\\Reflection\\DocBlock\\Tags\\Return_' => __DIR__ . '/..' . '/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Return_.php', + 'phpDocumentor\\Reflection\\DocBlock\\Tags\\See' => __DIR__ . '/..' . '/phpdocumentor/reflection-docblock/src/DocBlock/Tags/See.php', + 'phpDocumentor\\Reflection\\DocBlock\\Tags\\Since' => __DIR__ . '/..' . '/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Since.php', + 'phpDocumentor\\Reflection\\DocBlock\\Tags\\Source' => __DIR__ . '/..' . '/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Source.php', + 'phpDocumentor\\Reflection\\DocBlock\\Tags\\Throws' => __DIR__ . '/..' . '/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Throws.php', + 'phpDocumentor\\Reflection\\DocBlock\\Tags\\Uses' => __DIR__ . '/..' . '/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Uses.php', + 'phpDocumentor\\Reflection\\DocBlock\\Tags\\Var_' => __DIR__ . '/..' . '/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Var_.php', + 'phpDocumentor\\Reflection\\DocBlock\\Tags\\Version' => __DIR__ . '/..' . '/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Version.php', + 'phpDocumentor\\Reflection\\Element' => __DIR__ . '/..' . '/phpdocumentor/reflection-common/src/Element.php', + 'phpDocumentor\\Reflection\\File' => __DIR__ . '/..' . '/phpdocumentor/reflection-common/src/File.php', + 'phpDocumentor\\Reflection\\Fqsen' => __DIR__ . '/..' . '/phpdocumentor/reflection-common/src/Fqsen.php', + 'phpDocumentor\\Reflection\\FqsenResolver' => __DIR__ . '/..' . '/phpdocumentor/type-resolver/src/FqsenResolver.php', + 'phpDocumentor\\Reflection\\Location' => __DIR__ . '/..' . '/phpdocumentor/reflection-common/src/Location.php', + 'phpDocumentor\\Reflection\\Project' => __DIR__ . '/..' . '/phpdocumentor/reflection-common/src/Project.php', + 'phpDocumentor\\Reflection\\ProjectFactory' => __DIR__ . '/..' . '/phpdocumentor/reflection-common/src/ProjectFactory.php', + 'phpDocumentor\\Reflection\\Type' => __DIR__ . '/..' . '/phpdocumentor/type-resolver/src/Type.php', + 'phpDocumentor\\Reflection\\TypeResolver' => __DIR__ . '/..' . '/phpdocumentor/type-resolver/src/TypeResolver.php', + 'phpDocumentor\\Reflection\\Types\\Array_' => __DIR__ . '/..' . '/phpdocumentor/type-resolver/src/Types/Array_.php', + 'phpDocumentor\\Reflection\\Types\\Boolean' => __DIR__ . '/..' . '/phpdocumentor/type-resolver/src/Types/Boolean.php', + 'phpDocumentor\\Reflection\\Types\\Callable_' => __DIR__ . '/..' . '/phpdocumentor/type-resolver/src/Types/Callable_.php', + 'phpDocumentor\\Reflection\\Types\\Compound' => __DIR__ . '/..' . '/phpdocumentor/type-resolver/src/Types/Compound.php', + 'phpDocumentor\\Reflection\\Types\\Context' => __DIR__ . '/..' . '/phpdocumentor/type-resolver/src/Types/Context.php', + 'phpDocumentor\\Reflection\\Types\\ContextFactory' => __DIR__ . '/..' . '/phpdocumentor/type-resolver/src/Types/ContextFactory.php', + 'phpDocumentor\\Reflection\\Types\\Float_' => __DIR__ . '/..' . '/phpdocumentor/type-resolver/src/Types/Float_.php', + 'phpDocumentor\\Reflection\\Types\\Integer' => __DIR__ . '/..' . '/phpdocumentor/type-resolver/src/Types/Integer.php', + 'phpDocumentor\\Reflection\\Types\\Iterable_' => __DIR__ . '/..' . '/phpdocumentor/type-resolver/src/Types/Iterable_.php', + 'phpDocumentor\\Reflection\\Types\\Mixed_' => __DIR__ . '/..' . '/phpdocumentor/type-resolver/src/Types/Mixed_.php', + 'phpDocumentor\\Reflection\\Types\\Null_' => __DIR__ . '/..' . '/phpdocumentor/type-resolver/src/Types/Null_.php', + 'phpDocumentor\\Reflection\\Types\\Nullable' => __DIR__ . '/..' . '/phpdocumentor/type-resolver/src/Types/Nullable.php', + 'phpDocumentor\\Reflection\\Types\\Object_' => __DIR__ . '/..' . '/phpdocumentor/type-resolver/src/Types/Object_.php', + 'phpDocumentor\\Reflection\\Types\\Parent_' => __DIR__ . '/..' . '/phpdocumentor/type-resolver/src/Types/Parent_.php', + 'phpDocumentor\\Reflection\\Types\\Resource_' => __DIR__ . '/..' . '/phpdocumentor/type-resolver/src/Types/Resource_.php', + 'phpDocumentor\\Reflection\\Types\\Scalar' => __DIR__ . '/..' . '/phpdocumentor/type-resolver/src/Types/Scalar.php', + 'phpDocumentor\\Reflection\\Types\\Self_' => __DIR__ . '/..' . '/phpdocumentor/type-resolver/src/Types/Self_.php', + 'phpDocumentor\\Reflection\\Types\\Static_' => __DIR__ . '/..' . '/phpdocumentor/type-resolver/src/Types/Static_.php', + 'phpDocumentor\\Reflection\\Types\\String_' => __DIR__ . '/..' . '/phpdocumentor/type-resolver/src/Types/String_.php', + 'phpDocumentor\\Reflection\\Types\\This' => __DIR__ . '/..' . '/phpdocumentor/type-resolver/src/Types/This.php', + 'phpDocumentor\\Reflection\\Types\\Void_' => __DIR__ . '/..' . '/phpdocumentor/type-resolver/src/Types/Void_.php', ); public static function getInitializer(ClassLoader $loader) diff --git a/Laravel/vendor/composer/installed.json b/Laravel/vendor/composer/installed.json index fbd05f7..403e512 100644 --- a/Laravel/vendor/composer/installed.json +++ b/Laravel/vendor/composer/installed.json @@ -3951,5 +3951,168 @@ "testing", "xunit" ] + }, + { + "name": "jenssegers/date", + "version": "v3.2.12", + "version_normalized": "3.2.12.0", + "source": { + "type": "git", + "url": "https://github.com/jenssegers/date.git", + "reference": "1db4d580d1d45085a48fd4a332697619b9a3851c" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/jenssegers/date/zipball/1db4d580d1d45085a48fd4a332697619b9a3851c", + "reference": "1db4d580d1d45085a48fd4a332697619b9a3851c", + "shasum": "" + }, + "require": { + "nesbot/carbon": "^1.0", + "php": ">=5.4", + "symfony/translation": "^2.7|^3.0" + }, + "require-dev": { + "phpunit/phpunit": "^4.0|^5.0|^6.0", + "satooshi/php-coveralls": "^1.0" + }, + "time": "2017-06-30T11:51:03+00:00", + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "3.1-dev" + }, + "laravel": { + "providers": [ + "Jenssegers\\Date\\DateServiceProvider" + ], + "aliases": { + "Date": "Jenssegers\\Date\\Date" + } + } + }, + "installation-source": "dist", + "autoload": { + "psr-4": { + "Jenssegers\\Date\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Jens Segers", + "homepage": "https://jenssegers.com" + } + ], + "description": "A date library to help you work with dates in different languages", + "homepage": "https://github.com/jenssegers/date", + "keywords": [ + "carbon", + "date", + "datetime", + "i18n", + "laravel", + "time", + "translation" + ] + }, + { + "name": "jlawrence/eos", + "version": "v3.2.2", + "version_normalized": "3.2.2.0", + "source": { + "type": "git", + "url": "https://github.com/jlawrence11/eos.git", + "reference": "25e3d0f2316cb4636000f452a8e7dcc83725a32a" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/jlawrence11/eos/zipball/25e3d0f2316cb4636000f452a8e7dcc83725a32a", + "reference": "25e3d0f2316cb4636000f452a8e7dcc83725a32a", + "shasum": "" + }, + "require-dev": { + "codeclimate/php-test-reporter": "dev-master", + "phpunit/phpunit": "4.*" + }, + "time": "2016-03-02T22:35:41+00:00", + "type": "library", + "installation-source": "dist", + "autoload": { + "psr-4": { + "jlawrence\\eos\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "LGPL-2.1+" + ], + "authors": [ + { + "name": "Jon Lawrence", + "email": "jon@jon-lawrence.com" + } + ], + "description": "Parse and solve math equations without using 'eval()'.", + "keywords": [ + "eos", + "equations", + "math", + "solve" + ] + }, + { + "name": "consoletvs/charts", + "version": "5.0.2", + "version_normalized": "5.0.2.0", + "source": { + "type": "git", + "url": "https://github.com/ConsoleTVs/Charts.git", + "reference": "954e969c974ad9cd53a6afd263824b33dcdb8540" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/ConsoleTVs/Charts/zipball/954e969c974ad9cd53a6afd263824b33dcdb8540", + "reference": "954e969c974ad9cd53a6afd263824b33dcdb8540", + "shasum": "" + }, + "require": { + "illuminate/support": "5.*", + "jenssegers/date": "v3.*", + "jlawrence/eos": "3.*", + "php": ">=5.6.4" + }, + "time": "2017-08-14T11:10:46+00:00", + "type": "library", + "extra": { + "laravel": { + "providers": [ + "ConsoleTVs\\Charts\\ChartsServiceProvider" + ], + "aliases": { + "Charts": "ConsoleTVs\\Charts\\Facades\\Charts" + } + } + }, + "installation-source": "dist", + "autoload": { + "psr-4": { + "ConsoleTVs\\Charts\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Erik Campobadal", + "email": "soc@erik.cat" + } + ], + "description": "Create charts for laravel using diferent charts libraries" } ] diff --git a/Laravel/vendor/consoletvs/charts/.editorconfig b/Laravel/vendor/consoletvs/charts/.editorconfig new file mode 100644 index 0000000..e62c748 --- /dev/null +++ b/Laravel/vendor/consoletvs/charts/.editorconfig @@ -0,0 +1,19 @@ +; This file is for unifying the coding style for different editors and IDEs. +; More information at http://editorconfig.org + +root = true + +[*] +charset = utf-8 +end_of_line = lf +insert_final_newline = true +indent_style = space +indent_size = 4 +trim_trailing_whitespace = true + +[*.md] +trim_trailing_whitespace = false + +[*.yml] +indent_style = space +indent_size = 2 diff --git a/Laravel/vendor/consoletvs/charts/.gitattributes b/Laravel/vendor/consoletvs/charts/.gitattributes new file mode 100644 index 0000000..bdb0cab --- /dev/null +++ b/Laravel/vendor/consoletvs/charts/.gitattributes @@ -0,0 +1,17 @@ +# Auto detect text files and perform LF normalization +* text=auto + +# Custom for Visual Studio +*.cs diff=csharp + +# Standard to msysgit +*.doc diff=astextplain +*.DOC diff=astextplain +*.docx diff=astextplain +*.DOCX diff=astextplain +*.dot diff=astextplain +*.DOT diff=astextplain +*.pdf diff=astextplain +*.PDF diff=astextplain +*.rtf diff=astextplain +*.RTF diff=astextplain diff --git a/Laravel/vendor/consoletvs/charts/.styleci.yml b/Laravel/vendor/consoletvs/charts/.styleci.yml new file mode 100644 index 0000000..916d27e --- /dev/null +++ b/Laravel/vendor/consoletvs/charts/.styleci.yml @@ -0,0 +1,3 @@ +preset: laravel + +linting: true diff --git a/Laravel/vendor/consoletvs/charts/CODE_OF_CONDUCT.md b/Laravel/vendor/consoletvs/charts/CODE_OF_CONDUCT.md new file mode 100644 index 0000000..55403ab --- /dev/null +++ b/Laravel/vendor/consoletvs/charts/CODE_OF_CONDUCT.md @@ -0,0 +1,46 @@ +# Contributor Covenant Code of Conduct + +## Our Pledge + +In the interest of fostering an open and welcoming environment, we as contributors and maintainers pledge to making participation in our project and our community a harassment-free experience for everyone, regardless of age, body size, disability, ethnicity, gender identity and expression, level of experience, nationality, personal appearance, race, religion, or sexual identity and orientation. + +## Our Standards + +Examples of behavior that contributes to creating a positive environment include: + +* Using welcoming and inclusive language +* Being respectful of differing viewpoints and experiences +* Gracefully accepting constructive criticism +* Focusing on what is best for the community +* Showing empathy towards other community members + +Examples of unacceptable behavior by participants include: + +* The use of sexualized language or imagery and unwelcome sexual attention or advances +* Trolling, insulting/derogatory comments, and personal or political attacks +* Public or private harassment +* Publishing others' private information, such as a physical or electronic address, without explicit permission +* Other conduct which could reasonably be considered inappropriate in a professional setting + +## Our Responsibilities + +Project maintainers are responsible for clarifying the standards of acceptable behavior and are expected to take appropriate and fair corrective action in response to any instances of unacceptable behavior. + +Project maintainers have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct, or to ban temporarily or permanently any contributor for other behaviors that they deem inappropriate, threatening, offensive, or harmful. + +## Scope + +This Code of Conduct applies both within project spaces and in public spaces when an individual is representing the project or its community. Examples of representing a project or community include using an official project e-mail address, posting via an official social media account, or acting as an appointed representative at an online or offline event. Representation of a project may be further defined and clarified by project maintainers. + +## Enforcement + +Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by contacting the project team at soc@erik.cat. The project team will review and investigate all complaints, and will respond in a way that it deems appropriate to the circumstances. The project team is obligated to maintain confidentiality with regard to the reporter of an incident. Further details of specific enforcement policies may be posted separately. + +Project maintainers who do not follow or enforce the Code of Conduct in good faith may face temporary or permanent repercussions as determined by other members of the project's leadership. + +## Attribution + +This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4, available at [http://contributor-covenant.org/version/1/4][version] + +[homepage]: http://contributor-covenant.org +[version]: http://contributor-covenant.org/version/1/4/ diff --git a/Laravel/vendor/consoletvs/charts/CONTRIBUTING.md b/Laravel/vendor/consoletvs/charts/CONTRIBUTING.md new file mode 100644 index 0000000..6aaeb30 --- /dev/null +++ b/Laravel/vendor/consoletvs/charts/CONTRIBUTING.md @@ -0,0 +1,11 @@ +## Issue description + +Describe your issue here + +## How to reproduce it + +Tell us how to reproduce the issue so we can fix it + +## Libraries & types involved + +Tell us the libraries and types involved in the issue diff --git a/Laravel/vendor/consoletvs/charts/LICENSE b/Laravel/vendor/consoletvs/charts/LICENSE new file mode 100644 index 0000000..ebb8c85 --- /dev/null +++ b/Laravel/vendor/consoletvs/charts/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2016 Erik Campobadal + +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/Laravel/vendor/consoletvs/charts/README.md b/Laravel/vendor/consoletvs/charts/README.md new file mode 100644 index 0000000..b70bb48 --- /dev/null +++ b/Laravel/vendor/consoletvs/charts/README.md @@ -0,0 +1,73 @@ +

+ +

+StyleCI Status +Build For Laravel +Total Downloads +Latest Stable Version +License +

+ +## What is Charts? + +Charts is a multi-library chart package to create interactive charts using laravel. It Gives you access to +tons of different charts. Over +100 different charts and +13 different chart libraries to choose from. With this package +you can forget writing all the javascript manually and focus on your laravel project, while keeping an insane customizable chart coded in PHP. And last but not least, we support different types of charts, mathematical charts, multi-charts, they can even be +created using your eloquent models! And hey... We do support realtime stuff as well ;) + +## Sample Chart + +This chart is a multi bar chart using the material library. + +![Charts Logo](https://i.gyazo.com/2f50ac060f699cc323741403174cec66.png) + +```php +$chart = Charts::multi('bar', 'material') + // Setup the chart settings + ->title("My Cool Chart") + // A dimension of 0 means it will take 100% of the space + ->dimensions(0, 400) // Width x Height + // This defines a preset of colors already done:) + ->template("material") + // You could always set them manually + // ->colors(['#2196F3', '#F44336', '#FFC107']) + // Setup the diferent datasets (this is a multi chart) + ->dataset('Element 1', [5,20,100]) + ->dataset('Element 2', [15,30,80]) + ->dataset('Element 3', [25,10,40]) + // Setup what the values mean + ->labels(['One', 'Two', 'Three']); +``` + +## Documentation + +

+ +

+ +## License + +``` +MIT License + +Copyright (c) 2016 Erik Campobadal + +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/Laravel/vendor/consoletvs/charts/composer.json b/Laravel/vendor/consoletvs/charts/composer.json new file mode 100644 index 0000000..453230c --- /dev/null +++ b/Laravel/vendor/consoletvs/charts/composer.json @@ -0,0 +1,33 @@ +{ + "name": "consoletvs/charts", + "description": "Create charts for laravel using diferent charts libraries", + "license": "MIT", + "authors": [ + { + "name": "Erik Campobadal", + "email": "soc@erik.cat" + } + ], + "require": { + "php": ">=5.6.4", + "illuminate/support": "5.*", + "jlawrence/eos": "3.*", + "jenssegers/date": "v3.*" + }, + "autoload": { + "psr-4": { + "ConsoleTVs\\Charts\\": "src/" + } + }, + "extra": { + "laravel": { + "providers": [ + "ConsoleTVs\\Charts\\ChartsServiceProvider" + ], + "aliases": { + "Charts": "ConsoleTVs\\Charts\\Facades\\Charts" + } + } + }, + "minimum-stability": "dev" +} diff --git a/Laravel/vendor/consoletvs/charts/config/charts.php b/Laravel/vendor/consoletvs/charts/config/charts.php new file mode 100644 index 0000000..5fa47c0 --- /dev/null +++ b/Laravel/vendor/consoletvs/charts/config/charts.php @@ -0,0 +1,191 @@ + [ + 'type' => 'line', // The default chart type. + 'library' => 'material', // The default chart library. + 'element_label' => 'Element', // The default chart element label. + 'empty_dataset_label' => 'No Data Set', + 'empty_dataset_value' => 0, + 'title' => 'My Cool Chart', // Default chart title. + 'height' => 400, // 0 Means it will take 100% of the division height. + 'width' => 0, // 0 Means it will take 100% of the division width. + 'responsive' => false, // Not recommended since all libraries have diferent sizes. + 'background_color' => 'inherit', // The chart division background color. + 'colors' => [], // Default chart colors if using no template is set. + 'one_color' => false, // Only use the first color in all values. + 'template' => 'material', // The default chart color template. + 'legend' => true, // Whether to enable the chart legend (where applicable). + 'x_axis_title' => false, // The title of the x-axis + 'y_axis_title' => null, // The title of the y-axis (When set to null will use element_label value). + 'loader' => [ + 'active' => true, // Determines the if loader is active by default. + 'duration' => 500, // In milliseconds. + 'color' => '#000000', // Determines the default loader color. + ], + ], + + /* + |-------------------------------------------------------------------------- + | All the color templates available for the charts. + |-------------------------------------------------------------------------- + */ + 'templates' => [ + 'material' => [ + '#2196F3', '#F44336', '#FFC107', + ], + 'red-material' => [ + '#B71C1C', '#F44336', '#E57373', + ], + 'indigo-material' => [ + '#1A237E', '#3F51B5', '#7986CB', + ], + 'blue-material' => [ + '#0D47A1', '#2196F3', '#64B5F6', + ], + 'teal-material' => [ + '#004D40', '#009688', '#4DB6AC', + ], + 'green-material' => [ + '#1B5E20', '#4CAF50', '#81C784', + ], + 'yellow-material' => [ + '#F57F17', '#FFEB3B', '#FFF176', + ], + 'orange-material' => [ + '#E65100', '#FF9800', '#FFB74D', + ], + ], + + /* + |-------------------------------------------------------------------------- + | Assets required by the libraries. + |-------------------------------------------------------------------------- + */ + + 'assets' => [ + 'global' => [ + 'scripts' => [ + 'https://cdnjs.cloudflare.com/ajax/libs/jquery/3.1.1/jquery.min.js', + ], + ], + + 'canvas-gauges' => [ + 'scripts' => [ + 'https://cdn.rawgit.com/Mikhus/canvas-gauges/gh-pages/download/2.1.2/all/gauge.min.js', + ], + ], + + 'chartist' => [ + 'scripts' => [ + 'https://cdnjs.cloudflare.com/ajax/libs/chartist/0.10.1/chartist.min.js', + ], + 'styles' => [ + 'https://cdnjs.cloudflare.com/ajax/libs/chartist/0.10.1/chartist.min.css', + ], + ], + + 'chartjs' => [ + 'scripts' => [ + 'https://cdnjs.cloudflare.com/ajax/libs/Chart.js/2.4.0/Chart.min.js', + ], + ], + + 'fusioncharts' => [ + 'scripts' => [ + 'https://static.fusioncharts.com/code/latest/fusioncharts.js', + 'https://static.fusioncharts.com/code/latest/themes/fusioncharts.theme.fint.js', + ], + ], + + 'google' => [ + 'scripts' => [ + 'https://www.google.com/jsapi', + 'https://www.gstatic.com/charts/loader.js', + "google.charts.load('current', {'packages':['corechart', 'gauge', 'geochart', 'bar', 'line']})", + ], + ], + + 'highcharts' => [ + 'styles' => [ + // The following CSS is not added due to color compatibility errors. + // 'https://cdnjs.cloudflare.com/ajax/libs/highcharts/5.0.7/css/highcharts.css', + ], + 'scripts' => [ + 'https://cdnjs.cloudflare.com/ajax/libs/highcharts/5.0.7/highcharts.js', + 'https://cdnjs.cloudflare.com/ajax/libs/highcharts/5.0.7/js/modules/offline-exporting.js', + 'https://cdnjs.cloudflare.com/ajax/libs/highmaps/5.0.7/js/modules/map.js', + 'https://cdnjs.cloudflare.com/ajax/libs/highmaps/5.0.7/js/modules/data.js', + 'https://code.highcharts.com/mapdata/custom/world.js', + ], + ], + + 'justgage' => [ + 'scripts' => [ + 'https://cdnjs.cloudflare.com/ajax/libs/raphael/2.2.6/raphael.min.js', + 'https://cdnjs.cloudflare.com/ajax/libs/justgage/1.2.2/justgage.min.js', + ], + ], + + 'morris' => [ + 'styles' => [ + 'https://cdnjs.cloudflare.com/ajax/libs/morris.js/0.5.1/morris.css', + ], + 'scripts' => [ + 'https://cdnjs.cloudflare.com/ajax/libs/raphael/2.2.6/raphael.min.js', + 'https://cdnjs.cloudflare.com/ajax/libs/morris.js/0.5.1/morris.min.js', + ], + ], + + 'plottablejs' => [ + 'scripts' => [ + 'https://cdnjs.cloudflare.com/ajax/libs/d3/3.5.5/d3.min.js', + 'https://cdnjs.cloudflare.com/ajax/libs/plottable.js/2.8.0/plottable.min.js', + ], + 'styles' => [ + 'https://cdnjs.cloudflare.com/ajax/libs/plottable.js/2.2.0/plottable.css', + ], + ], + + 'progressbarjs' => [ + 'scripts' => [ + 'https://cdnjs.cloudflare.com/ajax/libs/progressbar.js/1.0.1/progressbar.min.js', + ], + ], + + 'c3' => [ + 'scripts' => [ + 'https://cdnjs.cloudflare.com/ajax/libs/d3/3.5.5/d3.min.js', + 'https://cdnjs.cloudflare.com/ajax/libs/c3/0.4.11/c3.min.js', + ], + 'styles' => [ + 'https://cdnjs.cloudflare.com/ajax/libs/c3/0.4.11/c3.min.css', + ], + ], + + 'echarts' => [ + 'scripts' => [ + 'https://cdnjs.cloudflare.com/ajax/libs/echarts/3.6.2/echarts.min.js', + ], + ], + + 'amcharts' => [ + 'scripts' => [ + 'https://cdnjs.cloudflare.com/ajax/libs/amcharts/3.21.2/amcharts.js', + 'https://cdnjs.cloudflare.com/ajax/libs/amcharts/3.21.2/serial.js', + 'https://cdnjs.cloudflare.com/ajax/libs/amcharts/3.21.2/plugins/export/export.min.js', + 'https://cdnjs.cloudflare.com/ajax/libs/amcharts/3.21.2/themes/light.js', + ], + 'styles' => [ + 'https://cdnjs.cloudflare.com/ajax/libs/amcharts/3.21.2/plugins/export/export.css', + ], + ], + ], +]; diff --git a/Laravel/vendor/consoletvs/charts/docs/2/readme.md b/Laravel/vendor/consoletvs/charts/docs/2/readme.md new file mode 100644 index 0000000..3e35f9f --- /dev/null +++ b/Laravel/vendor/consoletvs/charts/docs/2/readme.md @@ -0,0 +1,932 @@ +# Charts 2.0.2 Docs + +### Charts is a multi-library chart package to create interactive charts using laravel. + +[![StyleCI](https://styleci.io/repos/69124179/shield?branch=master)](https://styleci.io/repos/69124179) +![StyleCI](https://img.shields.io/badge/Built_for-Laravel-green.svg?style=flat-square) +![StyleCI](https://img.shields.io/github/license/consoletvs/charts.svg?style=flat-square) + +![Charts Logo](http://i.imgur.com/zylVNhI.png) + + +## Important Notice + +Yes, charts 3.0 is comming this week, I'm currently fixing TONS of bugs that appeared upon the recent pull requests done. While I +fix all this stuff, please avoid creating new pull requests as they will be mostly closed. Please take into consideration we're trying +to make it as stable as posible, so this might take some time for us to try all the charts. + +## Table Of Contents + +- [Installation](#installation) + - [Video Tutorial](#video-tutorial) +- [Default Settings](#default-settings) +- [Example Usage](#example-usage) +- [Create Charts](#create-charts) +- [Multi Datasets Chart](#multi-datasets-charts) +- [Database Charts](#database-charts) +- [Realtime Charts](#realtime-charts) +- [Math Functions Charts](#math-functions-charts) +- [Charts Functions](#charts-functions) +- [Available Chart Settings](#available-chart-settings) +- [Chart Examples](#chart-examples) +- [Extend your way](#extend-your-way) + + +## Installation + +### Video Tutorial + +[![Video Tutorial](https://img.youtube.com/vi/KrAvrU2XYuY/0.jpg)](https://www.youtube.com/watch?v=KrAvrU2XYuY) + +To install charts use composer + +### Download + +``` +composer require consoletvs/charts +``` + +### Add service provider & alias + +Add the following service provider to the array in: ```config/app.php``` + +```php +ConsoleTVs\Charts\ChartsServiceProvider::class, +``` + +Add the following alias to the array in: ```config/app.php``` + +```php +'Charts' => ConsoleTVs\Charts\Charts::class, +``` +### Publish the assets + +``` +php artisan vendor:publish --tag=charts_config +php artisan vendor:publish --tag=charts_assets --force +``` + +## Default Settings + +The file in: ```config/charts.php``` contains an array of settings, you can find the default settings in there. + +## Example Usage + +Example Controller: + +```php +setView('custom.line.chart.view') // Use this if you want to use your own template + ->setTitle('My nice chart') + ->setLabels(['First', 'Second', 'Third']) + ->setValues([5,10,20]) + ->setDimensions(1000,500) + ->setResponsive(false); + return view('test', ['chart' => $chart]); + } +} +``` + +Example View: + +```html + + + + + + + + My Charts + + {!! Charts::assets() !!} + + + +
+ {!! $chart->render() !!} +
+ + + +``` + +## Create Charts + +| Create Charts | line | area | bar | pie | donut | geo | gauge | temp | percentage | progressbar | +|---------------|------|------|-----|-----|-------|-----|-------|------|------------|-------------| +| chartjs | x | x | x | x | x | - | - | - | - | - | +| highcharts | x | x | x | x | x | x | - | - | - | - | +| google | x | x | x | x | x | x | x | - | - | - | +| material | x | - | x | - | - | - | - | - | - | - | +| chartist | x | x | x | x | x | - | - | - | - | - | +| fusioncharts | x | x | x | x | x | - | - | - | - | - | +| morris | x | x | x | - | x | - | - | - | - | - | +| plottablejs | x | x | x | x | x | - | - | - | - | - | +| minimalist | x | x | x | x | x | - | - | - | - | - | +| canvas-gauges | - | - | - | - | - | - | x | x | - | - | +| justgage | - | - | - | - | - | - | x | - | x | - | +| progressbarjs | - | - | - | - | - | - | - | - | x | x | + +The first argument of the create method is the chart type, and the second is the library + +```php +Charts::create('line', 'highcharts') + ->setTitle('My nice chart') + ->setLabels(['First', 'Second', 'Third']) + ->setValues([5,10,20]) + ->setDimensions(1000,500) + ->setResponsive(false); +``` + +## Multi Datasets Charts + +| Multi Dataset Charts | line | area | bar | pie | donut | geo | gauge | temp | percentage | progressbar | +|----------------------|------|------|-----|-----|-------|-----|-------|------|------------|-------------| +| chartjs | x | x | x | - | - | - | - | - | - | - | +| highcharts | x | x | x | - | - | - | - | - | - | - | +| google | x | x | x | - | - | - | - | - | - | - | +| material | x | - | x | - | - | - | - | - | - | - | +| chartist | x | x | x | - | - | - | - | - | - | - | +| fusioncharts | x | x | x | - | - | - | - | - | - | - | +| morris | x | x | x | - | - | - | - | - | - | - | +| plottablejs | x | x | x | - | - | - | - | - | - | - | +| minimalist | x | x | x | - | - | - | - | - | - | - | +| canvas-gauges | - | - | - | - | - | - | - | - | - | - | +| justgage | - | - | - | - | - | - | - | - | - | - | +| progressbarjs | - | - | - | - | - | - | - | - | - | - | + +To create multi-dataset charts simply add the values using the ```setDataset()``` function! + +```php +Charts::multi('line', 'highcharts') + ->setColors(['#ff0000', '#00ff00', '#0000ff']) + ->setLabels(['One', 'Two', 'Three']) + ->setDataset('Test 1', [1,2,3]) + ->setDataset('Test 2', [0,6,0]) + ->setDataset('Test 3', [3,4,1]); +``` + +- setDataset(required string $element_label, required array $values) + + ```php + Charts::multi('bar', 'minimalist') + ->setResponsive(false) + ->setDimensions(0, 500) + ->setColors(['#ff0000', '#00ff00', '#0000ff']) + ->setLabels(['One', 'Two', 'Three']) + ->setDataset('Test 1', [1,2,3]) + ->setDataset('Test 2', [0,6,0]) + ->setDataset('Test 3', [3,4,1]); + ``` + +## Database Charts + +You can also generate database charts with simple setup! + +```php +$chart = Charts::database(User::all(), 'bar', 'highcharts'); +``` + +Example data: +![Example Data](https://i.gyazo.com/e41f0117845230edc5189cd7b5821933.png) + +**Note:** You are required to use a specific group method before rendering the chart! + +*Important:* To work with the *GroupByYear, GroupByMonth, GroupByDay, lastByYear, lastByMonth & lastByDay* you'll need the column ```created_at``` in the data rows. + +The available methods are: + +- setData(required mixed $data) + + Setup the data again. + + ```php + $chart = Charts::database(User::all(), 'bar', 'highcharts')->setData(Role::all()); + ``` + +- setDateColumn(required string $column) + + Set the column to group the data. + + *Default:* ```created_at``` + + ```php + $chart = Charts::database(User::all(), 'bar', 'highcharts')->setDateColumn('my_date_column'); + ``` + +- setDateFormat(required string $format) + + Set the fancy date format for `groupByDay()` and `lastByDay()` function if `$fancy` set to true, must be called before those function. + + *Default:* ```l dS M, Y``` + + ```php + $chart = Charts::database(User::all(), 'bar', 'highcharts')->setDateFormat('j F y'); + ``` + +- setMonthFormat(required string $format) + + Set the fancy date format for `groupByMonth()` and `lastByMonth()` function if `$fancy` set to true, must be called before those function. + + *Default:* ```F, Y``` + + ```php + $chart = Charts::database(User::all(), 'bar', 'highcharts')->setDateFormat('F Y'); + ``` + +- groupBy(required string $column) + + Groups the data based on a column. + + ```php + $chart = Charts::database(User::all(), 'bar', 'highcharts') + ->setElementLabel("Total") + ->setDimensions(1000, 500) + ->setResponsive(false) + ->groupBy('game'); + ``` + + ![Example GroupBy](https://i.gyazo.com/30183fa75f6bee6848898c4dbe487491.png) + +- groupByYear(optional int $years) + + Groups the data based in years. + + *Default:* ```$years = 4``` + + ```php + $chart = Charts::database(User::all(), 'bar', 'highcharts') + ->setElementLabel("Total") + ->setDimensions(1000, 500) + ->setResponsive(false) + ->groupByYear(); + + // to display a number of years behind, pass a int parameter. For example to display the last 10 years: + $chart = Charts::database(User::all(), 'bar', 'highcharts') + ->setElementLabel("Total") + ->setDimensions(1000, 500) + ->setResponsive(false) + ->groupByYear(10); + ``` + + ![Example GroupByYear](https://i.gyazo.com/5d992b6ce858fee8ed455c61e3bec546.png) + +- groupByMonth(optional string $year, optional boolean $fancy) + + Groups the data in months (if no year set, the current one will be used). + + *Default:* ```$year = 7, $fancy = false``` + + ```php + $chart = Charts::database(User::all(), 'bar', 'highcharts') + ->setElementLabel("Total") + ->setDimensions(1000, 500) + ->setResponsive(false) + ->groupByMonth(); + + // to display a specific year, pass the parameter. For example to display the months of 2016 and display a fancy output label: + $chart = Charts::database(User::all(), 'bar', 'highcharts') + ->setElementLabel("Total") + ->setDimensions(1000, 500) + ->setResponsive(false) + ->groupByMonth('2016', true); + ``` + + ![Example GroupByYear](https://i.gyazo.com/8d93b2f74857047339317d54b5082868.png) + +- groupByDay(optional string $month, optional string $year, optional boolean $fancy) + + Groups the data in days (if no year/month set, the current one will be used). + + *Default:* ```$month = date('m'), $year = date('Y'), $fancy = false``` + + ```php + $chart = Charts::database(User::all(), 'bar', 'highcharts') + ->setElementLabel("Total") + ->setDimensions(1000, 500) + ->setResponsive(false) + ->groupByDay(); + + // to display a specific month and/or year, pass the parameters. For example to display the days of september 2016 and display a fancy output label: + $chart = Charts::database(User::all(), 'bar', 'highcharts') + ->setElementLabel("Total") + ->setDimensions(1000, 500) + ->setResponsive(false) + ->groupByDay('09', '2016', true); + ``` + + ![Example GroupByYear](https://i.gyazo.com/b461f29f41a0a5ac046f1cea79083dcc.png) + +- lastByYear(optional int $number) + + Alias for groupByYear() method. Does the same. + + *Default:* ```$number = 4``` + + ```php + $chart = Charts::database(User::all(), 'bar', 'highcharts') + ->setElementLabel("Total") + ->setDimensions(1000, 500) + ->setResponsive(false) + ->lastByYear(); + + // to display a number of years behind, pass a int parameter. For example to display the last 3 years: + $chart = Charts::database(User::all(), 'bar', 'highcharts') + ->setElementLabel("Total") + ->setDimensions(1000, 500) + ->setResponsive(false) + ->lastByYear(3); + ``` + + ![Example LastByYear](https://i.gyazo.com/7f85bec0fb49f5729608aa87b8657fc1.png) + +- lastByMonth(optional int $number, optional boolean $fancy) + + Display the numbers of months behind (relative to the current date). + + *Default:* ```$number = 6, $fancy = false``` + + ```php + $chart = Charts::database(User::all(), 'bar', 'highcharts') + ->setElementLabel("Total") + ->setDimensions(1000, 500) + ->setResponsive(false) + ->lastByMonth(); + + // to display a number of months behind, pass a int parameter. For example to display the last 6 months and use a fancy output: + $chart = Charts::database(User::all(), 'bar', 'highcharts') + ->setElementLabel("Total") + ->setDimensions(1000, 500) + ->setResponsive(false) + ->lastByMonth(6, true); + ``` + + ![Example LastByMonth](https://i.gyazo.com/7c7df6503749fda8d96807d6bc2861aa.png) + +- lastByDay(optional int $number, optional boolean $fancy) + + Display the numbers of days behind (relative to the current date). + + *Default:* ```$number = 7, $fancy = false``` + + ```php + $chart = Charts::database(User::all(), 'bar', 'highcharts') + ->setElementLabel("Total") + ->setDimensions(1000, 500) + ->setResponsive(false) + ->lastByDay(); + + // to display a number of days behind, pass a int parameter. For example to display the last 14 days and use a fancy output: + $chart = Charts::database(User::all(), 'bar', 'highcharts') + ->setElementLabel("Total") + ->setDimensions(1000, 500) + ->setResponsive(false) + ->lastByDay(14, true); + ``` + + ![Example LastByDay](https://i.gyazo.com/eeac8c7551ed681ef3728454ba4be9f0.png) + +## Realtime Charts + +![Realtime Chart Example](https://i.gyazo.com/77a9365e9270cb16a28c6acf11abadc3.gif) + +| Realtime Charts | line | area | bar | pie | donut | geo | gauge | temp | percentage | progressbar | +|-----------------|------|------|-----|-----|-------|-----|-------|------|------------|-------------| +| chartjs | - | - | - | - | - | - | - | - | - | - | +| highcharts | x | x | x | - | - | - | - | - | - | - | +| google | - | - | - | - | - | - | x | - | - | - | +| material | - | - | - | - | - | - | - | - | - | - | +| chartist | - | - | - | - | - | - | - | - | - | - | +| fusioncharts | - | - | - | - | - | - | - | - | - | - | +| morris | - | - | - | - | - | - | - | - | - | - | +| plottablejs | - | - | - | - | - | - | - | - | - | - | +| minimalist | - | - | - | - | - | - | - | - | - | - | +| canvas-gauges | - | - | - | - | - | - | x | x | - | - | +| justgage | - | - | - | - | - | - | x | - | x | - | +| progressbarjs | - | - | - | - | - | - | - | - | x | x | + +You can create realtime charts. + +Example json: + +```json +{"value":31} +``` + +'value' can be changed to different index name with ```setValueName($string)``` + +```php +$chart = Charts::realtime(url('/path/to/json'), 2000, 'gauge', 'google') + ->setValues([65, 0, 100]) + ->setLabels(['First', 'Second', 'Third']) + ->setResponsive(false) + ->setHeight(300) + ->setWidth(0) + ->setTitle("Permissions Chart") + ->setValueName('value'); //This determines the json index for the value +``` + +**Note:** The interval is set in ms + +The available methods are: + +- setValueName(required string $string) + + Sets the value json index. + + *Default:* ```value``` + + ```php + $chart = Charts::realtime(url('/path/to/json'), 2000, 'gauge', 'google') + ->setValues([65, 0, 100]) + ->setLabels(['First', 'Second', 'Third']) + ->setResponsive(false) + ->setHeight(300) + ->setWidth(0) + ->setTitle("Permissions Chart") + ->setValueName('value'); //This determines the json index for the value + ``` + +- setUrl(required string $url) + + Sets the url after chart object creation. + + ```php + $chart = Charts::realtime(url('/path/to/json'), 2000, 'gauge', 'google') + ->setValues([65, 0, 100]) + ->setLabels(['First', 'Second', 'Third']) + ->setResponsive(false) + ->setHeight(300) + ->setWidth(0) + ->setTitle("Permissions Chart") + ->setUrl(url('/new/json')); + ``` + +- setInterval(required int $interval) + + Sets the interval after chart object creation (ms). + + ```php + $chart = Charts::realtime(url('/path/to/json'), 2000, 'gauge', 'google') + ->setValues([65, 0, 100]) + ->setLabels(['First', 'Second', 'Third']) + ->setResponsive(false) + ->setHeight(300) + ->setWidth(0) + ->setTitle("Permissions Chart") + ->setInterval(3000); // in ms + ``` + +- setMaxValues(required int $number) + + Sets the max amount of values to be seen before removing the first one. + + ```php + $chart = Charts::realtime(url('/path/to/json'), 1000, 'area', 'highcharts') + ->setResponsive(false) + ->setHeight(300) + ->setWidth(0) + ->setTitle("Permissions Chart") + ->setMaxValues(10); + ``` + +## Math Functions Charts + +You can create math function charts. + +![Math Functions Example](https://i.gyazo.com/0dc9c2bd8ce55f16ff2c217afc9614dd.png) + +```php +Charts::math('sin(x)', [0, 10], 0.2, 'line', 'highcharts'); +``` + +The function is ```sin(x)```, the interval is ```[0, 10]``` and the ```x``` amplitude is ```0.2``` + +- setFunction(required string $function) + + Sets the function. + + ```php + Charts::math('sin(x)', [0, 10], 0.2, 'line', 'highcharts')->setFunction('x+1'); + ``` + +- setInterval(required array $interval) + + Sets the function / chart interval. + + ```php + Charts::math('sin(x)', [0, 10], 0.2, 'line', 'highcharts')->setInterval([2, 8]); + ``` + +- setAmplitude(required int $amplitude) + + Sets the function amplitude between x points. + + ```php + Charts::math('sin(x)', [0, 10], 0.2, 'line', 'highcharts')->setAmplitude(0.5); + ``` + +- calculate() + + Calculates the values / labels for the chart. + + **Note:** This function is called every time a modification is made in the chart function, interval or amplitude + so you don't need to call it every time you change the values. It's just an auxiliary function. + + ```php + Charts::math('sin(x)', [0, 10], 0.2, 'line', 'highcharts')->calculate(); + ``` + +## Charts Functions + +- create(optional string $type, optional string $library) + + Returns a new chart instance, if no library is specified, the default one will be used. + + ```php + Charts::create('line'); + Charts::create('line', 'highcharts'); + ``` + + + +- database(required mixed $object, optional string $type, optional string $library) + + Returns a new database chart instance that extends the base one. + + ```php + Charts::database(User::all()); + Charts::create(User::all(), 'line', 'highcharts'); + ``` + +- realtime(required string $url, required int $interval, optional string $type, optional string $library) + + Returns a new database chart instance that extends the base one. + + ```php + Charts::realtime(url('/json/data'), 2000, 'gauge', 'google') + ``` + +- realtime(required string $function, required array $interval, required int $amplitude, optional string $type, optional string $library) + + Returns a new math function chart instance that extends the base one. + + ```php + Charts::math('sin(x)', [0, 10], 0.2, 'line', 'highcharts'); + ``` + +- assets(optional array $libraries) + + Returns all the assets to generate the graphs. + + To output only certain libraries, add an array to it with the libraries you want + + ```php + + + // Using blade + {!! Charts::assets() !!} + + // Only certain libraries + {!! Charts::assets(['google', 'chartjs']) !!} + ``` + + +- libraries(optional string $type) + + Returns an array of all the libraries available (can be filtered). + + ```php + // Return all the libraries available + print_r(Charts::libraries()); + + // Return all the libraries available for the line chart + print_r(Charts::libraries('line')); + ``` + +- types(optional string $library) + + Returns an array of all the chart types available (can be filtered). + + ```php + // Return all the chart types available + print_r(Charts::types()); + + // Return all the chart types available for the highcharts library + print_r(Charts::types('highcharts')); + ``` + +## Available Chart Settings: + +- setGaugeStyle(required string $style) + + Set the gauge style + + *Default:* ```left``` + + *Available options:* ```left``` ```right``` ```center``` + + ```php + Charts::create('gauge', 'google')->setGaugeStyle('right'); + ``` + +- setType(required string $type) + + Set the chart type after creation (Example: from line to pie). + + ```php + Charts::create('line', 'highcharts')->setType('pie'); + ``` + +- setLibrary(required string $library) + + Set the chart library after creation (Example: from highcharts to google). + + ```php + Charts::create('line', 'highcharts')->setLibrary('google'); + ``` + +- setLabels(required array $labels) + + The labels of the chart. + + ```php + Charts::create('line', 'highcharts')->setLabels(['First', 'Second', 'Third']); + ``` + +- setValues(required array $values) + + The values of the chart respectively. + + ```php + Charts::create('line', 'highcharts')->setValues([10, 50, 100]); + ``` + +- setElementLabel(required string $element_label) + + The element label for line / bar / geo charts. + + ```php + Charts::create('line', 'highcharts')->setElementLabel('Total Views'); + ``` + +- setTitle(required string $title) + + The chart title. + + ```php + Charts::create('line', 'highcharts')->setTitle('My Chart'); + ``` + +- setColors(required array $colors) + + The colors of the charts respectively. + + ```php + Charts::create('line', 'highcharts')->setColors(['#ff0000', '#00ff00', '#0000ff']); + ``` + +- setWidth(required int $width) + + The chart width if non-responsive. 0 = responsive width. + + ```php + Charts::create('line', 'highcharts')->setWidth(1000); + ``` + +- setHeight(required int $height) + + The chart height if non-responsive. 0 = responsive height. + + ```php + Charts::create('line', 'highcharts')->setHeight(500); + ``` + +- setDimensions(required int $width, required int $height) + + The chart dimensions (shortcut to set width, height with one function). + + ```php + Charts::create('line', 'highcharts')->setHeight(1000, 500); + ``` + +- setResponsive(required boolean $responsive) + + Set if the chart is responsive or not. If not, the chart dimensions will be used. + + ```php + Charts::create('line', 'highcharts')->setResponsive(false); + ``` + +- settings() + + Return the chart settings. + + ```php + print_r(Charts::create('line', 'highcharts')->settings()); + ``` + +- render() + + Render the chart. + + ```php + echo Charts::create('line', 'highcharts')->setLabels(['One', 'Two'])->setValues([10, 20])->render(); + ``` + + ## Chart Examples + + ### Pie + + Note: ```highcharts``` can't change the color of this chart. Well it can but it's complicated, so I leave it here. + + ```php + Charts::create('pie', 'highcharts') + ->setTitle('My nice chart') + ->setLabels(['First', 'Second', 'Third']) + ->setValues([5,10,20]) + ->setDimensions(1000,500) + ->setResponsive(false); + ``` + + ![Example Pie](https://i.gyazo.com/b61a0a5786a8f70daf61398d256366b8.png) + + ### Donut / Doughnut + + Note: ```highcharts``` and ```chartist``` can't change the color of this chart. Well they can but it's complicated, so I leave it here. + + ```php + Charts::create('donut', 'highcharts') + ->setTitle('My nice chart') + ->setLabels(['First', 'Second', 'Third']) + ->setValues([5,10,20]) + ->setDimensions(1000,500) + ->setResponsive(false); + ``` + + ![Example Donut](https://i.gyazo.com/fecef4a102cb348d0f7f3681120a600f.png) + + + ### Line + + ```php + Charts::create('line', 'highcharts') + ->setTitle('My nice chart') + ->setElementLabel('My nice label') + ->setLabels(['First', 'Second', 'Third']) + ->setValues([5,10,20]) + ->setDimensions(1000,500) + ->setResponsive(false); + ``` + + ![Example Line](https://i.gyazo.com/121736e3b8aa7f22ad17a7c0ceecac02.png) + + ### Area + + ```php + Charts::create('area', 'highcharts') + ->setTitle('My nice chart') + ->setElementLabel('My nice label') + ->setLabels(['First', 'Second', 'Third']) + ->setValues([5,10,20]) + ->setDimensions(1000,500) + ->setResponsive(false); + ``` + + ![Example Area](https://i.gyazo.com/f6c500cf9bfc2e449d64ee19b7bb809c.png) + + + ### Bar + + Note: ```highcharts``` can't change the color of this chart. Well it can but it's complicated, so I leave it here. + + ```php + Charts::create('bar', 'highcharts') + ->setTitle('My nice chart') + ->setElementLabel('My nice label') + ->setLabels(['First', 'Second', 'Third']) + ->setValues([5,10,20]) + ->setDimensions(1000,500) + ->setResponsive(false); + ``` + + ![Example Bar](https://i.gyazo.com/94ada1aac091ef3cbc84433a3425a9aa.png) + + ### Geo + + Note: The labels must have the country codes, not the name. + + Note 2: To add color to the chart, you'll need to provide an array of at least 2 colors. The first is the min and the second the max. + + ```php + Charts::create('geo', 'highcharts') + ->setTitle('My nice chart') + ->setElementLabel('My nice label') + ->setLabels(['ES', 'FR', 'RU']) + ->setColors(['#C5CAE9', '#283593']) + ->setValues([5,10,20]) + ->setDimensions(1000,500) + ->setResponsive(false); + ``` + + ![Example Geo](https://i.gyazo.com/f7a76582e80912864c6cfb23f688e43e.png) + + ### Gauge + + Note: You either need 1 value or 3 following this standard: ```[actualValue, minValue, maxValue]``` + + ```php + Charts::create('gauge', 'canvas-gauges') + ->setTitle('My nice chart') + ->setElementLabel('My nice label') + ->setValues([65,0,100]) + ->setResponsive(false) + ->setHeight(300) + ->setWidth(0); + ``` + + ![Example Gauge](https://i.gyazo.com/a9bc88c6550d39a15b5a686ea66df0ea.png) + + ### Temperature + + Note: You either need 1 value or 3 following this standard: ```[actualValue, minValue, maxValue]``` + + ```php + Charts::create('temp', 'canvas-gauges') + ->setTitle('My nice chart') + ->setElementLabel('My nice label') + ->setValues([65,0,100]) + ->setResponsive(false) + ->setHeight(300) + ->setWidth(0); + ``` + + ![Example Temperature](https://i.gyazo.com/1a8f264ffd9746da06d67c3624eaac81.png) + + ### Percentage + + Note: You either need 1 value or 3 following this standard: ```[actualValue, minValue, maxValue]``` + + ```php + Charts::create('percentage', 'justgage') + ->setTitle('My nice chart') + ->setElementLabel('My nice label') + ->setValues([65,0,100]) + ->setResponsive(false) + ->setHeight(300) + ->setWidth(0); + ``` + + ![Example Percentage](https://i.gyazo.com/d39af8739c12eae6558046aa2031e6c0.png) + + ### Progressbar + + Note: You either need 1 value or 3 following this standard: ```[actualValue, minValue, maxValue]``` + + ```php + Charts::create('progressbar', 'progressbarjs') + ->setValues([65,0,100]) + ->setResponsive(false) + ->setHeight(50) + ->setWidth(0); + ``` + + ![Example Progressbar](https://i.gyazo.com/ecd6a20344939ab75767739d32780104.png) + + +## Extend your way! + +You can create your own Charts by forking this repository. The ```src/Templates``` folder contains all the current charts, but you can +add yours like this: + +### Create a new file + +Create a new file, the syntax is: ```library.type.php``` + +if your chart library is called: ```mylib``` +and your template is for the line chart: ```line``` +Then you create a file like this: ```mylib.line.php``` + +To call it later, just use: + +```php +$chart = Charts::create('line', 'mylib'); +``` + +You will need to add the CSS / JS to the includes.php file found in the ```/src``` folder. + +You have plenty of examples to see how to put the data so just take a closer look at all the included templates before doing yours! diff --git a/Laravel/vendor/consoletvs/charts/docs/3/readme.md b/Laravel/vendor/consoletvs/charts/docs/3/readme.md new file mode 100644 index 0000000..f5b95d4 --- /dev/null +++ b/Laravel/vendor/consoletvs/charts/docs/3/readme.md @@ -0,0 +1,1152 @@ +# Charts 3.0 documentation + +### Charts is a multi-library chart package to create interactive charts using laravel. + +[![StyleCI](https://styleci.io/repos/69124179/shield?branch=master)](https://styleci.io/repos/69124179) +![StyleCI](https://img.shields.io/badge/Built_for-Laravel-green.svg?style=flat-square) +![StyleCI](https://img.shields.io/github/license/consoletvs/charts.svg?style=flat-square) + +![Charts Logo](http://i.imgur.com/zylVNhI.png) + + +## Table Of Contents + +- [Installation](#installation) +- [Default Settings](#default-settings) +- [Example Usage](#example-usage) +- [Create Charts](#create-charts) +- [Multi Datasets Chart](#multi-datasets-charts) +- [Database Charts](#database-charts) +- [Realtime Charts](#realtime-charts) +- [Math Functions Charts](#math-functions-charts) +- [Charts Functions](#charts-functions) +- [Available Chart Settings](#available-chart-settings) +- [Chart Examples](#chart-examples) +- [Charts in tabs](#charts-in-tabs) +- [Extend your way](#extend-your-way) + + +## Installation + +### Download + +``` +composer require consoletvs/charts:3.* +``` + +### Add service provider & alias + +Add the following service provider to the array in: ```config/app.php``` + +```php +ConsoleTVs\Charts\ChartsServiceProvider::class, +``` + +Add the following alias to the array in: ```config/app.php``` + +```php +'Charts' => ConsoleTVs\Charts\Facades\Charts::class, +``` +### Publish the assets + +``` +php artisan vendor:publish --tag=charts_config +``` + +## Default Settings + +The file in: ```config/charts.php``` contains an array of settings, you can find the default settings in there. + +## Example Usage + +Example Controller: + +```php +view('custom.line.chart.view') // Use this if you want to use your own template + ->title('My nice chart') + ->labels(['First', 'Second', 'Third']) + ->values([5,10,20]) + ->dimensions(1000,500) + ->responsive(false); + return view('test', ['chart' => $chart]); + } +} +``` + +Example View: + +```html + + + + + + + + My Charts + + {!! Charts::assets() !!} + + + +
+ {!! $chart->render() !!} +
+ + + +``` + +## Create Charts + +| Create Charts | line | area | bar | pie | donut | geo | gauge | temp | percentage | progressbar | areaspline | +|---------------|------|------|-----|-----|-------|-----|-------|------|------------|-------------|------------| +| chartjs | x | x | x | x | x | - | - | - | - | - | - | +| highcharts | x | x | x | x | x | x | - | - | - | - | x | +| google | x | x | x | x | x | x | x | - | - | - | - | +| material | x | - | x | - | - | - | - | - | - | - | - | +| chartist | x | x | x | x | x | - | - | - | - | - | - | +| fusioncharts | x | x | x | x | x | - | - | - | - | - | - | +| morris | x | x | x | - | x | - | - | - | - | - | - | +| plottablejs | x | x | x | x | x | - | - | - | - | - | - | +| minimalist | x | x | x | x | x | - | - | - | - | - | - | +| c3 | x | x | x | x | x | - | x | - | - | - | - | +| canvas-gauges | - | - | - | - | - | - | x | x | - | - | - | +| justgage | - | - | - | - | - | - | x | - | x | - | - | +| progressbarjs | - | - | - | - | - | - | - | - | x | x | - | + +The first argument of the create method is the chart type, and the second is the library + +```php +Charts::create('line', 'highcharts') + ->title('My nice chart') + ->labels(['First', 'Second', 'Third']) + ->values([5,10,20]) + ->dimensions(1000,500) + ->responsive(false); +``` + +## Multi Datasets Charts + +| Multi Dataset Charts | line | area | bar | pie | donut | geo | gauge | temp | percentage | progressbar | areaspline | +|----------------------|------|------|-----|-----|-------|-----|-------|------|------------|-------------|-------------| +| chartjs | x | x | x | - | - | - | - | - | - | - | - | +| highcharts | x | x | x | - | - | - | - | - | - | - | x | +| google | x | x | x | - | - | - | - | - | - | - | - | +| material | x | - | x | - | - | - | - | - | - | - | - | +| chartist | x | x | x | - | - | - | - | - | - | - | - | +| fusioncharts | x | x | x | - | - | - | - | - | - | - | - | +| morris | x | x | x | - | - | - | - | - | - | - | - | +| plottablejs | x | x | x | - | - | - | - | - | - | - | - | +| minimalist | x | x | x | - | - | - | - | - | - | - | - | +| c3 | x | x | x | - | - | - | - | - | - | - | - | +| canvas-gauges | - | - | - | - | - | - | - | - | - | - | - | +| justgage | - | - | - | - | - | - | - | - | - | - | - | +| progressbarjs | - | - | - | - | - | - | - | - | - | - | - | + +To create multi-dataset charts simply add the values using the ```setDataset()``` function! + +```php +Charts::multi('line', 'highcharts') + ->colors(['#ff0000', '#00ff00', '#0000ff']) + ->labels(['One', 'Two', 'Three']) + ->dataset('Test 1', [1,2,3]) + ->dataset('Test 2', [0,6,0]) + ->dataset('Test 3', [3,4,1]); +``` + +- dataset(required string $element_label, required array $values) + + ```php + Charts::multi('bar', 'minimalist') + ->responsive(false) + ->dimensions(0, 500) + ->colors(['#ff0000', '#00ff00', '#0000ff']) + ->labels(['One', 'Two', 'Three']) + ->dataset('Test 1', [1,2,3]) + ->dataset('Test 2', [0,6,0]) + ->dataset('Test 3', [3,4,1]); + ``` + + +## Database Charts + +You can also generate database charts with simple setup! + +```php +$chart = Charts::database(User::all(), 'bar', 'highcharts'); +``` + +Example data: +![Example Data](https://i.gyazo.com/e41f0117845230edc5189cd7b5821933.png) + +**Note:** You are required to use a specific group method before rendering the chart! + +*Important:* To work with the *GroupByYear, GroupByMonth, GroupByDay, lastByYear, lastByMonth & lastByDay* you'll need the column ```created_at``` in the data rows. + +The available methods are: + +- data(required mixed $data) + + Setup the data again. + + ```php + $chart = Charts::database(User::all(), 'bar', 'highcharts')->data(Role::all()); + ``` + +- dateColumn(required string $column) + + Set the column to group the data. + + *Default:* ```created_at``` + + ```php + $chart = Charts::database(User::all(), 'bar', 'highcharts')->dateColumn('my_date_column'); + ``` + +- dateFormat(required string $format) + + Set the fancy date format for `groupByDay()` and `lastByDay()` function if `$fancy` set to true, must be called before those function. + + *Default:* ```l dS M, Y``` + + ```php + $chart = Charts::database(User::all(), 'bar', 'highcharts')->dateFormat('j F y'); + ``` + +- monthFormat(required string $format) + + Set the fancy date format for `groupByMonth()` and `lastByMonth()` function if `$fancy` set to true, must be called before those function. + + *Default:* ```F, Y``` + + ```php + $chart = Charts::database(User::all(), 'bar', 'highcharts')->dateFormat('F Y'); + ``` + +- groupBy(required string $column, optional string $relationColumn, optional array $labelsMapping) + + Groups the data based on a column. + + *Note:* Relationship column follows this standard: ```->groupBy('product_id', 'product.model');``` where second argument will set labels to model column of product table based on it's relationship with the model. + + ```php + $chart = Charts::database(User::all(), 'bar', 'highcharts') + ->elementLabel("Total") + ->dimensions(1000, 500) + ->responsive(false) + ->groupBy('game'); + ``` + + ![Example GroupBy](https://i.gyazo.com/30183fa75f6bee6848898c4dbe487491.png) + + You can use the $labelsMapping to override labels. The following example overrides the label of different user types stored as integer in database. + + ```php + $chart = Charts::database(User::all(), 'pie', 'highcharts') + ->title('User types') + ->dimensions(1000, 500) + ->responsive(false) + ->groupBy('type', null, [1 => 'Admins', 2 => 'Users', 3 => 'Trainees']); + ``` + +- groupByYear(optional int $years) + + Groups the data based in years. + + *Default:* ```$years = 4``` + + ```php + $chart = Charts::database(User::all(), 'bar', 'highcharts') + ->elementLabel("Total") + ->dimensions(1000, 500) + ->responsive(false) + ->groupByYear(); + + // to display a number of years behind, pass a int parameter. For example to display the last 10 years: + $chart = Charts::database(User::all(), 'bar', 'highcharts') + ->elementLabel("Total") + ->dimensions(1000, 500) + ->responsive(false) + ->groupByYear(10); + ``` + + ![Example GroupByYear](https://i.gyazo.com/5d992b6ce858fee8ed455c61e3bec546.png) + +- groupByMonth(optional string $year, optional boolean $fancy) + + Groups the data in months (if no year set, the current one will be used). + + *Default:* ```$year = 7, $fancy = false``` + + ```php + $chart = Charts::database(User::all(), 'bar', 'highcharts') + ->elementLabel("Total") + ->dimensions(1000, 500) + ->responsive(false) + ->groupByMonth(); + + // to display a specific year, pass the parameter. For example to display the months of 2016 and display a fancy output label: + $chart = Charts::database(User::all(), 'bar', 'highcharts') + ->elementLabel("Total") + ->dimensions(1000, 500) + ->responsive(false) + ->groupByMonth('2016', true); + ``` + + ![Example GroupByYear](https://i.gyazo.com/8d93b2f74857047339317d54b5082868.png) + +- groupByDay(optional string $month, optional string $year, optional boolean $fancy) + + Groups the data in days (if no year/month set, the current one will be used). + + *Default:* ```$month = date('m'), $year = date('Y'), $fancy = false``` + + ```php + $chart = Charts::database(User::all(), 'bar', 'highcharts') + ->elementLabel("Total") + ->dimensions(1000, 500) + ->responsive(false) + ->groupByDay(); + + // to display a specific month and/or year, pass the parameters. For example to display the days of september 2016 and display a fancy output label: + $chart = Charts::database(User::all(), 'bar', 'highcharts') + ->elementLabel("Total") + ->dimensions(1000, 500) + ->responsive(false) + ->groupByDay('09', '2016', true); + ``` + + ![Example GroupByYear](https://i.gyazo.com/b461f29f41a0a5ac046f1cea79083dcc.png) + +- lastByYear(optional int $number) + + Alias for groupByYear() method. Does the same. + + *Default:* ```$number = 4``` + + ```php + $chart = Charts::database(User::all(), 'bar', 'highcharts') + ->elementLabel("Total") + ->dimensions(1000, 500) + ->responsive(false) + ->lastByYear(); + + // to display a number of years behind, pass a int parameter. For example to display the last 3 years: + $chart = Charts::database(User::all(), 'bar', 'highcharts') + ->elementLabel("Total") + ->dimensions(1000, 500) + ->responsive(false) + ->lastByYear(3); + ``` + + ![Example LastByYear](https://i.gyazo.com/7f85bec0fb49f5729608aa87b8657fc1.png) + +- lastByMonth(optional int $number, optional boolean $fancy) + + Display the numbers of months behind (relative to the current date). + + *Default:* ```$number = 6, $fancy = false``` + + ```php + $chart = Charts::database(User::all(), 'bar', 'highcharts') + ->elementLabel("Total") + ->dimensions(1000, 500) + ->responsive(false) + ->lastByMonth(); + + // to display a number of months behind, pass a int parameter. For example to display the last 6 months and use a fancy output: + $chart = Charts::database(User::all(), 'bar', 'highcharts') + ->elementLabel("Total") + ->dimensions(1000, 500) + ->responsive(false) + ->lastByMonth(6, true); + ``` + + ![Example LastByMonth](https://i.gyazo.com/7c7df6503749fda8d96807d6bc2861aa.png) + +- lastByDay(optional int $number, optional boolean $fancy) + + Display the numbers of days behind (relative to the current date). + + *Default:* ```$number = 7, $fancy = false``` + + ```php + $chart = Charts::database(User::all(), 'bar', 'highcharts') + ->elementLabel("Total") + ->dimensions(1000, 500) + ->responsive(false) + ->lastByDay(); + + // to display a number of days behind, pass a int parameter. For example to display the last 14 days and use a fancy output: + $chart = Charts::database(User::all(), 'bar', 'highcharts') + ->elementLabel("Total") + ->dimensions(1000, 500) + ->responsive(false) + ->lastByDay(14, true); + ``` + + ![Example LastByDay](https://i.gyazo.com/eeac8c7551ed681ef3728454ba4be9f0.png) + +- preaggregated(boolean $preaggregated) + + Set to true if using an aggregate database query such as count, max, min, avg, and sum. + + ```php + $data = Orders::select('orders.created_at', DB::raw('count(orders.id) as aggregate'))->groupBy(DB::raw('Date(orders.created_at)'))->get(); //must alias the aggregate column as aggregate + + $chart = Charts::database($data)->preaggregated(true)->lastByDay(7, false); + ``` + +### Database method alternative + +When creating charts, you might wanna take full control of it, this might be done creating the chart with the ```create``` method +and adding the data from the database: + +``` +$data = Shopping::all(); +$chart = Charts::create('bar', 'highcharts') + ->title('My nice chart') + ->elementLabel('My nice label') + ->labels($data->pluck('shoppingDate')) + ->values($data->pluck('price')) + ->responsive(true); +``` + +## Realtime Charts + +![Realtime Chart Example](https://i.gyazo.com/77a9365e9270cb16a28c6acf11abadc3.gif) + +| Realtime Charts | line | area | bar | pie | donut | geo | gauge | temp | percentage | progressbar | +|-----------------|------|------|-----|-----|-------|-----|-------|------|------------|-------------| +| chartjs | - | - | - | - | - | - | - | - | - | - | +| highcharts | x | x | x | - | - | - | - | - | - | - | +| google | - | - | - | - | - | - | x | - | - | - | +| material | - | - | - | - | - | - | - | - | - | - | +| chartist | - | - | - | - | - | - | - | - | - | - | +| fusioncharts | - | - | - | - | - | - | - | - | - | - | +| morris | - | - | - | - | - | - | - | - | - | - | +| plottablejs | - | - | - | - | - | - | - | - | - | - | +| minimalist | - | - | - | - | - | - | - | - | - | - | +| c3 | - | - | - | - | - | - | - | - | - | - | +| canvas-gauges | - | - | - | - | - | - | x | x | - | - | +| justgage | - | - | - | - | - | - | x | - | x | - | +| progressbarjs | - | - | - | - | - | - | - | - | x | x | + +You can create realtime charts. + +Example json: + +```json +{"value":31} +``` + +'value' can be changed to different index name with ```valueName($string)``` + +```php +$chart = Charts::realtime(url('/path/to/json'), 2000, 'gauge', 'google') + ->values([65, 0, 100]) + ->labels(['First', 'Second', 'Third']) + ->responsive(false) + ->height(300) + ->width(0) + ->title("Permissions Chart") + ->valueName('value'); //This determines the json index for the value +``` + +**Note:** The interval is set in ms + +The available methods are: + +- valueName(required string $string) + + Sets the value json index. + + *Default:* ```value``` + + ```php + $chart = Charts::realtime(url('/path/to/json'), 2000, 'gauge', 'google') + ->values([65, 0, 100]) + ->labels(['First', 'Second', 'Third']) + ->responsive(false) + ->height(300) + ->width(0) + ->title("Permissions Chart") + ->valueName('value'); //This determines the json index for the value + ``` + +- url(required string $url) + + Sets the url after chart object creation. + + ```php + $chart = Charts::realtime(url('/path/to/json'), 2000, 'gauge', 'google') + ->values([65, 0, 100]) + ->labels(['First', 'Second', 'Third']) + ->responsive(false) + ->height(300) + ->width(0) + ->title("Permissions Chart") + ->url(url('/new/json')); + ``` + +- interval(required int $interval) + + Sets the interval after chart object creation (ms). + + ```php + $chart = Charts::realtime(url('/path/to/json'), 2000, 'gauge', 'google') + ->values([65, 0, 100]) + ->labels(['First', 'Second', 'Third']) + ->responsive(false) + ->height(300) + ->width(0) + ->title("Permissions Chart") + ->interval(3000); // in ms + ``` + +- maxValues(required int $number) + + Sets the max amount of values to be seen before removing the first one. + + ```php + $chart = Charts::realtime(url('/path/to/json'), 1000, 'area', 'highcharts') + ->responsive(false) + ->height(300) + ->width(0) + ->title("Permissions Chart") + ->maxValues(10); + ``` + +## Math Functions Charts + +You can create math function charts. + +![Math Functions Example](https://i.gyazo.com/0dc9c2bd8ce55f16ff2c217afc9614dd.png) + +```php +Charts::math('sin(x)', [0, 10], 0.2, 'line', 'highcharts'); +``` + +The function is ```sin(x)```, the interval is ```[0, 10]``` and the ```x``` amplitude is ```0.2``` + +- function(required string $function) + + Sets the function. + + ```php + Charts::math('sin(x)', [0, 10], 0.2, 'line', 'highcharts')->mathFunction('x+1'); + ``` + +- interval(required array $interval) + + Sets the function / chart interval. + + ```php + Charts::math('sin(x)', [0, 10], 0.2, 'line', 'highcharts')->interval([2, 8]); + ``` + +- amplitude(required int $amplitude) + + Sets the function amplitude between x points. + + ```php + Charts::math('sin(x)', [0, 10], 0.2, 'line', 'highcharts')->amplitude(0.5); + ``` + +- calculate() + + Calculates the values / labels for the chart. + + **Note:** This function is called every time a modification is made in the chart function, interval or amplitude + so you don't need to call it every time you change the values. It's just an auxiliary function. + + ```php + Charts::math('sin(x)', [0, 10], 0.2, 'line', 'highcharts')->calculate(); + ``` + +## Charts Functions + +- create(optional string $type, optional string $library) + + Returns a new chart instance, if no library is specified, the default one will be used. + + ```php + Charts::create('line'); + Charts::create('line', 'highcharts'); + ``` + + + +- database(required mixed $object, optional string $type, optional string $library) + + Returns a new database chart instance that extends the base one. + + ```php + Charts::database(User::all()); + Charts::create(User::all(), 'line', 'highcharts'); + ``` + +- realtime(required string $url, required int $interval, optional string $type, optional string $library) + + Returns a new database chart instance that extends the base one. + + ```php + Charts::realtime(url('/json/data'), 2000, 'gauge', 'google') + ``` + +- math(required string $function, required array $interval, required int $amplitude, optional string $type, optional string $library) + + Returns a new math function chart instance that extends the base one. + + ```php + Charts::math('sin(x)', [0, 10], 0.2, 'line', 'highcharts'); + ``` + +- assets(optional array $libraries) + + Returns all the assets to generate the graphs. + + To output only certain libraries, add an array to it with the libraries you want + + ```php + + + // Using blade + {!! Charts::assets() !!} + + // Only certain libraries + {!! Charts::assets(['google', 'chartjs']) !!} + ``` + + +- libraries(optional string $type) + + Returns an array of all the libraries available (can be filtered). + + ```php + // Return all the libraries available + print_r(Charts::libraries()); + + // Return all the libraries available for the line chart + print_r(Charts::libraries('line')); + ``` + +- types(optional string $library) + + Returns an array of all the chart types available (can be filtered). + + ```php + // Return all the chart types available + print_r(Charts::types()); + + // Return all the chart types available for the highcharts library + print_r(Charts::types('highcharts')); + ``` + +## Available Chart Settings: + +- container(required string $division) + + Set a custom division ID to render the chart at + + ```php + Charts::create('line', 'google')->container('my-division-id'); + ``` + +- view(required string $view) + + Set a custom view to render the chart + + ```php + Charts::create('line', 'google')->view('my.view'); + ``` + +- region(required string $region) + + Set the region for google geo chart + + *Default:* ```world``` + + ```php + Charts::create('geo', 'google')->region('FR'); + ``` + +- gaugeStyle(required string $style) + + Set the gauge style + + *Default:* ```left``` + + *Available options:* ```left``` ```right``` ```center``` + + ```php + Charts::create('gauge', 'google')->gaugeStyle('right'); + ``` + +- type(required string $type) + + Set the chart type after creation (Example: from line to pie). + + ```php + Charts::create('line', 'highcharts')->type('pie'); + ``` + +- library(required string $library) + + Set the chart library after creation (Example: from highcharts to google). + + ```php + Charts::create('line', 'highcharts')->library('google'); + ``` + +- labels(required array $labels) + + The labels of the chart. + + ```php + Charts::create('line', 'highcharts')->labels(['First', 'Second', 'Third']); + ``` + +- values(required array $values) + + The values of the chart respectively. + + ```php + Charts::create('line', 'highcharts')->values([10, 50, 100]); + ``` + +- elementLabel(required string $element_label) + + The element label for line / bar / geo charts. + + ```php + Charts::create('line', 'highcharts')->elementLabel('Total Views'); + ``` + +- title(required string $title) + + The chart title. + + ```php + Charts::create('line', 'highcharts')->title('My Chart'); + ``` + +- colors(required array $colors) + + The colors of the charts respectively. + + ```php + Charts::create('line', 'highcharts')->colors(['#ff0000', '#00ff00', '#0000ff']); + ``` + +- width(required int $width) + + The chart width if non-responsive. 0 = responsive width. + + ```php + Charts::create('line', 'highcharts')->width(1000); + ``` + +- height(required int $height) + + The chart height if non-responsive. 0 = responsive height. + + ```php + Charts::create('line', 'highcharts')->height(500); + ``` + +- dimensions(required int $width, required int $height) + + The chart dimensions (shortcut to set width, height with one function). + + ```php + Charts::create('line', 'highcharts')->height(1000, 500); + ``` + +- responsive(required boolean $responsive) + + Set if the chart is responsive or not. If not, the chart dimensions will be used. + + ```php + Charts::create('line', 'highcharts')->responsive(false); + ``` + +- settings() + + Return the chart settings. + + ```php + print_r(Charts::create('line', 'highcharts')->settings()); + ``` + +- render() + + Render the chart. + + ```php + echo Charts::create('line', 'highcharts')->labels(['One', 'Two'])->values([10, 20])->render(); + ``` + + ## Chart Examples + + ### Pie + + Note: ```highcharts``` can't change the color of this chart. Well it can but it's complicated, so I leave it here. + + ```php + Charts::create('pie', 'highcharts') + ->title('My nice chart') + ->labels(['First', 'Second', 'Third']) + ->values([5,10,20]) + ->dimensions(1000,500) + ->responsive(false); + ``` + + ![Example Pie](https://i.gyazo.com/b61a0a5786a8f70daf61398d256366b8.png) + + ### Donut / Doughnut + + Note: ```highcharts``` and ```chartist``` can't change the color of this chart. Well they can but it's complicated, so I leave it here. + + ```php + Charts::create('donut', 'highcharts') + ->title('My nice chart') + ->labels(['First', 'Second', 'Third']) + ->values([5,10,20]) + ->dimensions(1000,500) + ->responsive(false); + ``` + + ![Example Donut](https://i.gyazo.com/fecef4a102cb348d0f7f3681120a600f.png) + + + ### Line + + ```php + Charts::create('line', 'highcharts') + ->title('My nice chart') + ->elementLabel('My nice label') + ->labels(['First', 'Second', 'Third']) + ->values([5,10,20]) + ->dimensions(1000,500) + ->responsive(false); + ``` + + ![Example Line](https://i.gyazo.com/121736e3b8aa7f22ad17a7c0ceecac02.png) + + ### Area + + ```php + Charts::create('area', 'highcharts') + ->title('My nice chart') + ->elementLabel('My nice label') + ->labels(['First', 'Second', 'Third']) + ->values([5,10,20]) + ->dimensions(1000,500) + ->responsive(false); + ``` + + ![Example Area](https://i.gyazo.com/f6c500cf9bfc2e449d64ee19b7bb809c.png) + + ### Areaspline + + ```php + Charts::multi('areaspline', 'highcharts') + ->title('My nice chart') + ->colors(['#ff0000', '#ffffff']) + ->labels(['Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday','Saturday', 'Sunday']) + ->dataset('John', [3, 4, 3, 5, 4, 10, 12]) + ->dataset('Jane', [1, 3, 4, 3, 3, 5, 4]); + ``` + + ![Example Area](https://s30.postimg.org/6uwe893kx/areaspline.png) + + + ### Bar + + Note: ```highcharts``` can't change the color of this chart. Well it can but it's complicated, so I leave it here. + + ```php + Charts::create('bar', 'highcharts') + ->title('My nice chart') + ->elementLabel('My nice label') + ->labels(['First', 'Second', 'Third']) + ->values([5,10,20]) + ->dimensions(1000,500) + ->responsive(false); + ``` + + ![Example Bar](https://i.gyazo.com/94ada1aac091ef3cbc84433a3425a9aa.png) + + ### Geo + + Note: The labels must have the country codes, not the name. + + Note 2: To add color to the chart, you'll need to provide an array of at least 2 colors. The first is the min and the second the max. + + ```php + Charts::create('geo', 'highcharts') + ->title('My nice chart') + ->elementLabel('My nice label') + ->labels(['ES', 'FR', 'RU']) + ->colors(['#C5CAE9', '#283593']) + ->values([5,10,20]) + ->dimensions(1000,500) + ->responsive(false); + ``` + + ![Example Geo](https://i.gyazo.com/f7a76582e80912864c6cfb23f688e43e.png) + + ### Gauge + + Note: You either need 1 value or 3 following this standard: ```[actualValue, minValue, maxValue]``` + + ```php + Charts::create('gauge', 'canvas-gauges') + ->title('My nice chart') + ->elementLabel('My nice label') + ->values([65,0,100]) + ->responsive(false) + ->height(300) + ->width(0); + ``` + + ![Example Gauge](https://i.gyazo.com/a9bc88c6550d39a15b5a686ea66df0ea.png) + + ### Temperature + + Note: You either need 1 value or 3 following this standard: ```[actualValue, minValue, maxValue]``` + + ```php + Charts::create('temp', 'canvas-gauges') + ->title('My nice chart') + ->elementLabel('My nice label') + ->values([65,0,100]) + ->responsive(false) + ->height(300) + ->width(0); + ``` + + ![Example Temperature](https://i.gyazo.com/1a8f264ffd9746da06d67c3624eaac81.png) + + ### Percentage + + Note: You either need 1 value or 3 following this standard: ```[actualValue, minValue, maxValue]``` + + ```php + Charts::create('percentage', 'justgage') + ->title('My nice chart') + ->elementLabel('My nice label') + ->values([65,0,100]) + ->responsive(false) + ->height(300) + ->width(0); + ``` + + ![Example Percentage](https://i.gyazo.com/d39af8739c12eae6558046aa2031e6c0.png) + + ### Progressbar + + Note: You either need 1 value or 3 following this standard: ```[actualValue, minValue, maxValue]``` + + ```php + Charts::create('progressbar', 'progressbarjs') + ->values([65,0,100]) + ->responsive(false) + ->height(50) + ->width(0); + ``` + + ![Example Progressbar](https://i.gyazo.com/ecd6a20344939ab75767739d32780104.png) + + ### Credits Disable + + Note: ```highcharts``` credits disable available. Default credits is enable. + + ```php + Charts::multi('line', 'highcharts')->credits(false); + ``` + +## Charts in tabs + +![Example tab chart](https://i.gyazo.com/7588eb53db5045a8b3231247d25f8cd6.gif) + +Rendering charts on tabs will cause them to render very bad. The cause is that unactive tabs have no +dimensions and charts try to adapt to a 0 dimensions division. + +Lucky for you I'll add a quick method to make it work! + +1. Create a layout, call it something like: ```layoyts/charts.blade.php``` + + ``` + + + + + + + {!! Charts::assets() !!} + + + + + + @yield('chart') + + + + ``` + +2. Create a new folder where you'll add all charts, for example: ```charts/``` +3. Create a new file inside, for example: ```latest_users.blade.php``` and add the cart + + ``` + @extends('layouts.charts') + @section('chart') + {!! Charts::database(App\User::all(), 'line', 'material')->dimensions(0,$height)->title('Latest Users')->lastByDay(7, true)->elementLabel('New Users')->render() !!} + @endsection + ``` +4. Create a new route in ```routes/web.php``` + + ``` + Route::get('/charts/{name}/{height}', 'ChartsController@show')->name('chart'); + ``` +5. Create a new Controller ```ChartsController``` + + ``` + protected_charts)) { + $this->checkProtected(); + } + return view("charts.$name", ['height' => $height]); + } + + /** + * Protected charts will go here first. + * You can change this condition how you like. + */ + public function checkProtected() + { + if(!Auth::user()->admin) { + abort(404); + } + } + } + + ``` + Make sure to change your stuff, it's all documented + +6. Go to your view where you have your tabs, and inside that tab you like add the chart iframe with the height. + + **Note:** This example uses materializecss. They have a loader that makes it cooler to load up charts :) + + ``` + @php $chart_height = 300; @endphp +
+ +
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ + +
+ ``` +7. Add this script changing the tab id with yours + + **Note:** As you can see it also uses the loader from materializecss, you can remove them as well. + + ``` + + ``` + + +## Extend your way! + +You can create your own Charts by forking this repository. The ```src/Templates``` folder contains all the current charts, but you can +add yours like this: + +### Create a new file + +Create a new file, the syntax is: ```library.type.php``` + +if your chart library is called: ```mylib``` +and your template is for the line chart: ```line``` +Then you create a file like this: ```mylib.line.php``` + +To call it later, just use: + +```php +$chart = Charts::create('line', 'mylib'); +``` + +You will need to add the CSS / JS to the includes.php file found in the ```/src``` folder. + +You have plenty of examples to see how to put the data so just take a closer look at all the included templates before doing yours! diff --git a/Laravel/vendor/consoletvs/charts/docs/4/readme.md b/Laravel/vendor/consoletvs/charts/docs/4/readme.md new file mode 100644 index 0000000..ccb16ae --- /dev/null +++ b/Laravel/vendor/consoletvs/charts/docs/4/readme.md @@ -0,0 +1,1365 @@ + +## Charts version 4 + +

+ +

+ +## Table Of Contents + +- [Installation](#installation) +- [Default Settings](#default-settings) +- [Example Usage](#example-usage) +- [Create Charts](#create-charts) +- [Multi Datasets Chart](#multi-datasets-charts) +- [Database Charts](#database-charts) +- [Multi Database Charts](#multi-database-charts) +- [Realtime Charts](#realtime-charts) +- [Math Functions Charts](#math-functions-charts) +- [Charts Functions](#charts-functions) +- [Available Chart Settings](#available-chart-settings) +- [Chart Examples](#chart-examples) +- [Charts in tabs](#charts-in-tabs) +- [Extend your way](#extend-your-way) + + +## Installation + +### Download + +``` +composer require consoletvs/charts:4.* +``` + +### Add service provider & alias + +Add the following service provider to the array in: ```config/app.php``` + +```php +ConsoleTVs\Charts\ChartsServiceProvider::class, +``` + +Add the following alias to the array in: ```config/app.php``` + +```php +'Charts' => ConsoleTVs\Charts\Facades\Charts::class, +``` +### Publish the assets + +``` +php artisan vendor:publish --tag=charts_config +``` + +## Default Settings + +The file in: ```config/charts.php``` contains an array of settings, you can find the default settings in there. + +## Example Usage + +Example Controller: + +```php +title("My Cool Chart") + // A dimension of 0 means it will take 100% of the space + ->dimensions(0, 400) // Width x Height + // This defines a preset of colors already done:) + ->template("material") + // You could always set them manually + // ->colors(['#2196F3', '#F44336', '#FFC107']) + // Setup the diferent datasets (this is a multi chart) + ->dataset('Element 1', [5,20,100]) + ->dataset('Element 2', [15,30,80]) + ->dataset('Element 3', [25,10,40]) + // Setup what the values mean + ->labels(['One', 'Two', 'Three']); + + return view('test', ['chart' => $chart]); + } +} +``` + +Example View: + +```html + + + + + + + + My Charts + + {!! Charts::assets() !!} + + + +
+ {!! $chart->render() !!} +
+ + + +``` + +## Create Charts + +| Create Charts | line | area | bar | pie | donut | geo | gauge | temp | percentage | progressbar | areaspline | scatter | +|---------------|------|------|-----|-----|-------|-----|-------|------|------------|-------------|------------|---------| +| chartjs | x | x | x | x | x | - | - | - | - | - | - | - | +| highcharts | x | x | x | x | x | x | - | - | - | - | - | - | +| google | x | x | x | x | x | x | x | - | - | - | - | x | +| material | x | - | x | - | - | - | - | - | - | - | - | - | +| chartist | x | x | x | x | x | - | - | - | - | - | - | - | +| fusioncharts | x | x | x | x | x | - | - | - | - | - | - | - | +| morris | x | x | x | - | x | - | - | - | - | - | - | - | +| plottablejs | x | x | x | x | x | - | - | - | - | - | - | - | +| minimalist | x | x | x | x | x | - | - | - | - | - | - | - | +| c3 | x | x | x | x | x | - | x | - | - | - | - | - | +| canvas-gauges | - | - | - | - | - | - | x | x | - | - | - | - | +| justgage | - | - | - | - | - | - | x | - | x | - | - | - | +| progressbarjs | - | - | - | - | - | - | - | - | x | x | - | - | + +The first argument of the create method is the chart type, and the second is the library + +```php +Charts::create('line', 'highcharts') + ->title('My nice chart') + ->labels(['First', 'Second', 'Third']) + ->values([5,10,20]) + ->dimensions(0,500); +``` + +## Multi Datasets Charts + +| Multi Dataset Charts | line | area | bar | pie | donut | geo | gauge | temp | percentage | progressbar | areaspline | scatter | +|----------------------|------|------|-----|-----|-------|-----|-------|------|------------|-------------|-------------|---------| +| chartjs | x | x | x | - | - | - | - | - | - | - | - | - | +| highcharts | x | x | x | - | - | - | - | - | - | - | x | - | +| google | x | x | x | - | - | - | - | - | - | - | - | - | +| material | x | - | x | - | - | - | - | - | - | - | - | - | +| chartist | x | x | x | - | - | - | - | - | - | - | - | - | +| fusioncharts | x | x | x | - | - | - | - | - | - | - | - | - | +| morris | x | x | x | - | - | - | - | - | - | - | - | - | +| plottablejs | x | x | x | - | - | - | - | - | - | - | - | - | +| minimalist | x | x | x | - | - | - | - | - | - | - | - | - | +| c3 | x | x | x | - | - | - | - | - | - | - | - | - | +| canvas-gauges | - | - | - | - | - | - | - | - | - | - | - | - | +| justgage | - | - | - | - | - | - | - | - | - | - | - | - | +| progressbarjs | - | - | - | - | - | - | - | - | - | - | - | - | + +To create multi-dataset charts simply add the values using the ```setDataset()``` function! + +```php +Charts::multi('line', 'highcharts') + ->colors(['#ff0000', '#00ff00', '#0000ff']) + ->labels(['One', 'Two', 'Three']) + ->dataset('Test 1', [1,2,3]) + ->dataset('Test 2', [0,6,0]) + ->dataset('Test 3', [3,4,1]); +``` + +- dataset(required string $element_label, required array $values) + + ```php + Charts::multi('bar', 'minimalist') + ->responsive(false) + ->dimensions(0, 500) + ->colors(['#ff0000', '#00ff00', '#0000ff']) + ->labels(['One', 'Two', 'Three']) + ->dataset('Test 1', [1,2,3]) + ->dataset('Test 2', [0,6,0]) + ->dataset('Test 3', [3,4,1]); + ``` + + +## Database Charts + +You can also generate database charts with simple setup! + +```php +$chart = Charts::database(User::all(), 'bar', 'highcharts'); +``` + +Example data: +![Example Data](https://i.gyazo.com/e41f0117845230edc5189cd7b5821933.png) + +**Note:** You are required to use a specific group method before rendering the chart! + +*Important:* To work with the *GroupByYear, GroupByMonth, GroupByDay, lastByYear, lastByMonth & lastByDay* you'll need the column ```created_at``` in the data rows. + +The available methods are: + +- data(required mixed $data) + + Setup the data again. + + ```php + $chart = Charts::database(User::all(), 'bar', 'highcharts')->data(Role::all()); + ``` + +- dateColumn(required string $column) + + Set the column to group the data. + + *Default:* ```created_at``` + + ```php + $chart = Charts::database(User::all(), 'bar', 'highcharts')->dateColumn('my_date_column'); + ``` + +- dateFormat(required string $format) + + Set the fancy date format for `groupByDay()` and `lastByDay()` function if `$fancy` set to true, must be called before those function. + + *Default:* ```l dS M, Y``` + + ```php + $chart = Charts::database(User::all(), 'bar', 'highcharts')->dateFormat('j F y'); + ``` + +- monthFormat(required string $format) + + Set the fancy date format for `groupByMonth()` and `lastByMonth()` function if `$fancy` set to true, must be called before those function. + + *Default:* ```F, Y``` + + ```php + $chart = Charts::database(User::all(), 'bar', 'highcharts')->monthFormat('F Y'); + ``` + +- hourFormat(required string $format) + + Set the fancy date format for `groupByHour()` function if `$fancy` set to true, must be called before those function. + + *Default:* ```D, M j, Y g A``` + + ```php + $chart = Charts::database(User::all(), 'bar', 'highcharts')->hourFormat('j, g A'); + ``` + +- groupBy(required string $column, optional string $relationColumn, optional array $labelsMapping) + + Groups the data based on a column. + + *Note:* Relationship column follows this standard: ```->groupBy('product_id', 'product.model');``` where second argument will set labels to model column of product table based on it's relationship with the model. + + ```php + $chart = Charts::database(User::all(), 'bar', 'highcharts') + ->elementLabel("Total") + ->dimensions(1000, 500) + ->responsive(false) + ->groupBy('game'); + ``` + + ![Example GroupBy](https://i.gyazo.com/30183fa75f6bee6848898c4dbe487491.png) + + You can use the $labelsMapping to override labels. The following example overrides the label of different user types stored as integer in database. + + ```php + $chart = Charts::database(User::all(), 'pie', 'highcharts') + ->title('User types') + ->dimensions(1000, 500) + ->responsive(false) + ->groupBy('type', null, [1 => 'Admins', 2 => 'Users', 3 => 'Trainees']); + ``` + +- groupByYear(optional int $years) + + Groups the data based in years. + + *Default:* ```$years = 4``` + + ```php + $chart = Charts::database(User::all(), 'bar', 'highcharts') + ->elementLabel("Total") + ->dimensions(1000, 500) + ->responsive(false) + ->groupByYear(); + + // to display a number of years behind, pass a int parameter. For example to display the last 10 years: + $chart = Charts::database(User::all(), 'bar', 'highcharts') + ->elementLabel("Total") + ->dimensions(1000, 500) + ->responsive(false) + ->groupByYear(10); + ``` + + ![Example GroupByYear](https://i.gyazo.com/5d992b6ce858fee8ed455c61e3bec546.png) + +- groupByMonth(optional string $year, optional boolean $fancy) + + Groups the data in months (if no year set, the current one will be used). + + *Default:* ```$year = 7, $fancy = false``` + + ```php + $chart = Charts::database(User::all(), 'bar', 'highcharts') + ->elementLabel("Total") + ->dimensions(1000, 500) + ->responsive(false) + ->groupByMonth(); + + // to display a specific year, pass the parameter. For example to display the months of 2016 and display a fancy output label: + $chart = Charts::database(User::all(), 'bar', 'highcharts') + ->elementLabel("Total") + ->dimensions(1000, 500) + ->responsive(false) + ->groupByMonth('2016', true); + ``` + + ![Example GroupByMonth](https://i.gyazo.com/8d93b2f74857047339317d54b5082868.png) + +- groupByDay(optional string $month, optional string $year, optional boolean $fancy) + + Groups the data in days (if no year/month set, the current one will be used). + + *Default:* ```$month = date('m'), $year = date('Y'), $fancy = false``` + + ```php + $chart = Charts::database(User::all(), 'bar', 'highcharts') + ->elementLabel("Total") + ->dimensions(1000, 500) + ->responsive(false) + ->groupByDay(); + + // to display a specific month and/or year, pass the parameters. For example to display the days of september 2016 and display a fancy output label: + $chart = Charts::database(User::all(), 'bar', 'highcharts') + ->elementLabel("Total") + ->dimensions(1000, 500) + ->responsive(false) + ->groupByDay('09', '2016', true); + ``` + + ![Example GroupByDay](https://i.gyazo.com/b461f29f41a0a5ac046f1cea79083dcc.png) + +- groupByHour(optional string $day, optional string $month, optional string $year, optional boolean $fancy) + + Groups the data in hours (if no year/month/day set, the current one will be used). + + *Default:* ```$month = date('m'), $year = date('Y'), $fancy = false``` + + ```php + $chart = Charts::database(User::all(), 'bar', 'highcharts') + ->elementLabel("Total") + ->dimensions(1000, 500) + ->responsive(false) + ->groupByHour() + + // to display a specific day and/or month and/or year, pass the parameters. For example to display the hours of May 12, 2017, and display a fancy output label: + $chart = Charts::database(User::all(), 'bar', 'highcharts') + ->elementLabel("Total") + ->dimensions(1000, 500) + ->responsive(false) + ->groupByHour('12', '05', '2017', true) + ``` + + ![Example GroupByHour](https://sc-cdn.scaleengine.net/i/fc4ed88407cbaf47e4637e60e307ae41.png) + +- lastByYear(optional int $number) + + Alias for groupByYear() method. Does the same. + + *Default:* ```$number = 4``` + + ```php + $chart = Charts::database(User::all(), 'bar', 'highcharts') + ->elementLabel("Total") + ->dimensions(1000, 500) + ->responsive(false) + ->lastByYear(); + + // to display a number of years behind, pass a int parameter. For example to display the last 3 years: + $chart = Charts::database(User::all(), 'bar', 'highcharts') + ->elementLabel("Total") + ->dimensions(1000, 500) + ->responsive(false) + ->lastByYear(3); + ``` + + ![Example LastByYear](https://i.gyazo.com/7f85bec0fb49f5729608aa87b8657fc1.png) + +- lastByMonth(optional int $number, optional boolean $fancy) + + Display the numbers of months behind (relative to the current date). + + *Default:* ```$number = 6, $fancy = false``` + + ```php + $chart = Charts::database(User::all(), 'bar', 'highcharts') + ->elementLabel("Total") + ->dimensions(1000, 500) + ->responsive(false) + ->lastByMonth(); + + // to display a number of months behind, pass a int parameter. For example to display the last 6 months and use a fancy output: + $chart = Charts::database(User::all(), 'bar', 'highcharts') + ->elementLabel("Total") + ->dimensions(1000, 500) + ->responsive(false) + ->lastByMonth(6, true); + ``` + + ![Example LastByMonth](https://i.gyazo.com/7c7df6503749fda8d96807d6bc2861aa.png) + +- lastByDay(optional int $number, optional boolean $fancy) + + Display the numbers of days behind (relative to the current date). + + *Default:* ```$number = 7, $fancy = false``` + + ```php + $chart = Charts::database(User::all(), 'bar', 'highcharts') + ->elementLabel("Total") + ->dimensions(1000, 500) + ->responsive(false) + ->lastByDay(); + + // to display a number of days behind, pass a int parameter. For example to display the last 14 days and use a fancy output: + $chart = Charts::database(User::all(), 'bar', 'highcharts') + ->elementLabel("Total") + ->dimensions(1000, 500) + ->responsive(false) + ->lastByDay(14, true); + ``` + + ![Example LastByDay](https://i.gyazo.com/eeac8c7551ed681ef3728454ba4be9f0.png) + +- preaggregated(boolean $preaggregated) + + Set to true if using an aggregate database query such as count, max, min, avg, and sum. + + ```php + $data = Orders::select('orders.created_at', DB::raw('count(orders.id) as aggregate'))->groupBy(DB::raw('Date(orders.created_at)'))->get(); //must alias the aggregate column as aggregate + + $chart = Charts::database($data)->preaggregated(true)->lastByDay(7, false); + ``` +- aggregateColumn(string $aggregateColumn, string $aggregateType) + + This is similar to preaggregate. If you do not want to maintain extra data or + simply want to leverage the search speed of the database use preaggregate. + If you need to maintain the extra data from a record use this form (possibly for drilldown extension). + + Pass in a string representation of a column containing numeric values to be summed. + + Assume a collection of BankRecord with a numeric column called 'amount'. + ```php + $chart = new Database(BankRecord::all(), 'bar', 'highcharts'); + $chart->aggregateColumn('amount', 'sum'); + ``` + + This will yield summed values for column 'amount'. + +### Database method alternative + +When creating charts, you might wanna take full control of it, this might be done creating the chart with the ```create``` method +and adding the data from the database: + +``` +$data = Shopping::all(); +$chart = Charts::create('bar', 'highcharts') + ->title('My nice chart') + ->elementLabel('My nice label') + ->labels($data->pluck('shoppingDate')) + ->values($data->pluck('price')) + ->responsive(true); +``` + +## Multi Database Charts + +Sometimes it might be usefull to create multi charts from diferent tables, right? + +Fear no more, as this feature is there for you! + +*Working Standard:* This chart is kinda special, the class extends the multi chart class and that means +that any option available in the multi chart is avalable here. BUT as this is a database chart, you +need to add the dataset in the following way: + +```php +Charts::multiDatabase('line', 'material') + ->dataset('Element 1', Users::all()) + ->dataset('Element 2', Posts::all()); +``` + +And remember, you got all the database functions linked, meaning you're able to play with them as well like this: + +```php +Charts::multiDatabase('line', 'material') + ->dataset('Element 1', Users::all()) + ->dataset('Element 2', Posts::all()) + ->groupByMonth(2017, true); +``` + +**As mentioned above, this chart got all the available database methods and multi chart methods.** + +## Realtime Charts + +![Realtime Chart Example](https://i.gyazo.com/77a9365e9270cb16a28c6acf11abadc3.gif) + +| Realtime Charts | line | area | bar | pie | donut | geo | gauge | temp | percentage | progressbar | scatter | +|-----------------|------|------|-----|-----|-------|-----|-------|------|------------|-------------|---------| +| chartjs | - | - | - | - | - | - | - | - | - | - | - | +| highcharts | x | x | x | - | - | - | - | - | - | - | - | +| google | - | - | - | - | - | - | x | - | - | - | - | +| material | - | - | - | - | - | - | - | - | - | - | - | +| chartist | - | - | - | - | - | - | - | - | - | - | - | +| fusioncharts | - | - | - | - | - | - | - | - | - | - | - | +| morris | - | - | - | - | - | - | - | - | - | - | - | +| plottablejs | - | - | - | - | - | - | - | - | - | - | - | +| minimalist | - | - | - | - | - | - | - | - | - | - | - | +| c3 | - | - | - | - | - | - | - | - | - | - | - | +| canvas-gauges | - | - | - | - | - | - | x | x | - | - | - | +| justgage | - | - | - | - | - | - | x | - | x | - | - | +| progressbarjs | - | - | - | - | - | - | - | - | x | x | - | + +You can create realtime charts. + +Example json: + +```json +{"value":31} +``` + +'value' can be changed to different index name with ```valueName($string)``` + +```php +$chart = Charts::realtime(url('/path/to/json'), 2000, 'gauge', 'google') + ->values([65, 0, 100]) + ->labels(['First', 'Second', 'Third']) + ->responsive(false) + ->height(300) + ->width(0) + ->title("Permissions Chart") + ->valueName('value'); //This determines the json index for the value +``` + +**Note:** The interval is set in ms + +The available methods are: + +- valueName(required string $string) + + Sets the value json index. + + *Default:* ```value``` + + ```php + $chart = Charts::realtime(url('/path/to/json'), 2000, 'gauge', 'google') + ->values([65, 0, 100]) + ->labels(['First', 'Second', 'Third']) + ->responsive(false) + ->height(300) + ->width(0) + ->title("Permissions Chart") + ->valueName('value'); //This determines the json index for the value + ``` + +- url(required string $url) + + Sets the url after chart object creation. + + ```php + $chart = Charts::realtime(url('/path/to/json'), 2000, 'gauge', 'google') + ->values([65, 0, 100]) + ->labels(['First', 'Second', 'Third']) + ->responsive(false) + ->height(300) + ->width(0) + ->title("Permissions Chart") + ->url(url('/new/json')); + ``` + +- interval(required int $interval) + + Sets the interval after chart object creation (ms). + + ```php + $chart = Charts::realtime(url('/path/to/json'), 2000, 'gauge', 'google') + ->values([65, 0, 100]) + ->labels(['First', 'Second', 'Third']) + ->responsive(false) + ->height(300) + ->width(0) + ->title("Permissions Chart") + ->interval(3000); // in ms + ``` + +- maxValues(required int $number) + + Sets the max amount of values to be seen before removing the first one. + + ```php + $chart = Charts::realtime(url('/path/to/json'), 1000, 'area', 'highcharts') + ->responsive(false) + ->height(300) + ->width(0) + ->title("Permissions Chart") + ->maxValues(10); + ``` + +## Math Functions Charts + +You can create math function charts. + +![Math Functions Example](https://i.gyazo.com/0dc9c2bd8ce55f16ff2c217afc9614dd.png) + +```php +Charts::math('sin(x)', [0, 10], 0.2, 'line', 'highcharts'); +``` + +The function is ```sin(x)```, the interval is ```[0, 10]``` and the ```x``` amplitude is ```0.2``` + +- function(required string $function) + + Sets the function. + + ```php + Charts::math('sin(x)', [0, 10], 0.2, 'line', 'highcharts')->mathFunction('x+1'); + ``` + +- interval(required array $interval) + + Sets the function / chart interval. + + ```php + Charts::math('sin(x)', [0, 10], 0.2, 'line', 'highcharts')->interval([2, 8]); + ``` + +- amplitude(required int $amplitude) + + Sets the function amplitude between x points. + + ```php + Charts::math('sin(x)', [0, 10], 0.2, 'line', 'highcharts')->amplitude(0.5); + ``` + +- calculate() + + Calculates the values / labels for the chart. + + **Note:** This function is called every time a modification is made in the chart function, interval or amplitude + so you don't need to call it every time you change the values. It's just an auxiliary function. + + ```php + Charts::math('sin(x)', [0, 10], 0.2, 'line', 'highcharts')->calculate(); + ``` + +## Charts Functions + +- create(optional string $type, optional string $library) + + Returns a new chart instance, if no library is specified, the default one will be used. + + ```php + Charts::create('line'); + Charts::create('line', 'highcharts'); + ``` + + + +- database(required mixed $object, optional string $type, optional string $library) + + Returns a new database chart instance that extends the base one. + + ```php + Charts::database(User::all()); + Charts::create(User::all(), 'line', 'highcharts'); + ``` + +- realtime(required string $url, required int $interval, optional string $type, optional string $library) + + Returns a new database chart instance that extends the base one. + + ```php + Charts::realtime(url('/json/data'), 2000, 'gauge', 'google') + ``` + +- math(required string $function, required array $interval, required int $amplitude, optional string $type, optional string $library) + + Returns a new math function chart instance that extends the base one. + + ```php + Charts::math('sin(x)', [0, 10], 0.2, 'line', 'highcharts'); + ``` + +- multi(optional string $type, optional string $library) + + Returns a new multi chart instance that extends the base one. + + ```php + Charts::multi('line', 'material'); + ``` + +- multiDatabase(optional string $type, optional string $library) + + Returns a new multi database chart instance that extends the multi chart but can use the database functions. + + ```php + Charts::multi('line', 'material'); + ``` + +- assets(optional array $libraries) + + Returns all the assets to generate the graphs. + + To output only certain libraries, add an array to it with the libraries you want + + ```php + + + // Using blade + {!! Charts::assets() !!} + + // Only certain libraries + {!! Charts::assets(['google', 'chartjs']) !!} + ``` + +- styles(optional array $libraries) + + Returns all the style assets. + + ```php + // All libraries + {!! Charts::styles() !!} + // Only certain libraries + {!! Charts::styles(['google', 'material']) !!} + ``` + +- scripts(optional array $libraries) + + Returns all the script assets. + + ```php + // All libraries + {!! Charts::styles() !!} + // Only certain libraries + {!! Charts::styles(['google', 'material']) !!} + ``` + +- libraries(optional string $type) + + Returns an array of all the libraries available (can be filtered). + + ```php + // Return all the libraries available + print_r(Charts::libraries()); + + // Return all the libraries available for the line chart + print_r(Charts::libraries('line')); + ``` + +- types(optional string $library) + + Returns an array of all the chart types available (can be filtered). + + ```php + // Return all the chart types available + print_r(Charts::types()); + + // Return all the chart types available for the highcharts library + print_r(Charts::types('highcharts')); + ``` + +## Available Chart Settings + +- loader(required bool $loader) + + Set the chart loader animation enabled or disabled. + + ```php + Charts::create('line', 'highcharts')->loader(false); + ``` + +- loaderDuration(required int $duration) + + Set the duration of the chart loader animation in ms. + + ```php + Charts::create('line', 'highcharts')->loader(true)->loaderDuration(2000); + ``` + +- loaderColor(required string $color) + + Set the loader color. + + ```php + Charts::create('line', 'highcharts')->loader(true)->loaderColor('#FF0000'); + ``` + +- backgroundColor(required string $background_color) + + Set the background color for the loader. + + ```php + Charts::create('line', 'highcharts')->backgroundColor('#FF0000'); + ``` + +- template(required string $template) + + Set an available color template for the chart. + + *Note:* They are defined in ```config/charts.php``` file, under the templates key. + + ```php + Charts::create('line', 'highcharts')->template('material'); + ``` + +- oneColor(required bool $one_color) + + Specifies if the chart will only use the first color, regardless of the ammount of values. + + ```php + Charts::create('line', 'highcharts')->oneColor(true); + ``` + +- credits(required bool $credits) + + Set the credits enabled or disabled if the library supports it. + + ```php + Charts::create('line', 'highcharts')->credits(false); + ``` + +- container(required string $division) + + Set a custom division ID to render the chart at + + ```php + Charts::create('line', 'google')->container('my-division-id'); + ``` + +- view(required string $view) + + Set a custom view to render the chart + + ```php + Charts::create('line', 'google')->view('my.view'); + ``` + +- region(required string $region) + + Set the region for google geo chart + + *Default:* ```world``` + + ```php + Charts::create('geo', 'google')->region('FR'); + ``` + +- gaugeStyle(required string $style) + + Set the gauge style + + *Default:* ```left``` + + *Available options:* ```left``` ```right``` ```center``` + + ```php + Charts::create('gauge', 'google')->gaugeStyle('right'); + ``` + +- type(required string $type) + + Set the chart type after creation (Example: from line to pie). + + ```php + Charts::create('line', 'highcharts')->type('pie'); + ``` + +- library(required string $library) + + Set the chart library after creation (Example: from highcharts to google). + + ```php + Charts::create('line', 'highcharts')->library('google'); + ``` + +- labels(required array $labels) + + The labels of the chart. + + ```php + Charts::create('line', 'highcharts')->labels(['First', 'Second', 'Third']); + ``` + +- values(required array $values) + + The values of the chart respectively. + + ```php + Charts::create('line', 'highcharts')->values([10, 50, 100]); + ``` + +- elementLabel(required string $element_label) + + The element label for line / bar / geo charts. + + ```php + Charts::create('line', 'highcharts')->elementLabel('Total Views'); + ``` + +- title(required string $title) + + The chart title. + + ```php + Charts::create('line', 'highcharts')->title('My Chart'); + ``` + +- colors(required array $colors) + + The colors of the charts respectively. + + ```php + Charts::create('line', 'highcharts')->colors(['#ff0000', '#00ff00', '#0000ff']); + ``` + +- width(required int $width) + + The chart width if non-responsive. 0 = responsive width. + + ```php + Charts::create('line', 'highcharts')->width(1000); + ``` + +- height(required int $height) + + The chart height if non-responsive. 0 = responsive height. + + ```php + Charts::create('line', 'highcharts')->height(500); + ``` + +- dimensions(required int $width, required int $height) + + The chart dimensions (shortcut to set width, height with one function). + + ```php + Charts::create('line', 'highcharts')->height(1000, 500); + ``` + +- responsive(required boolean $responsive) + + Set if the chart is responsive or not. If not, the chart dimensions will be used. + + ```php + Charts::create('line', 'highcharts')->responsive(false); + ``` + +- legend(required boolean $legend) + + Set whether to display the chart legend or not. Currently only works with ```highcharts```. + + *Default:* ```true``` + + ```php + Charts::create('line', 'highcharts')->legend(false); + ``` + +- x_axis_title(required boolean $x_axis_title) + + Set title of the x-axis. Currently only works with ```highcharts```. + + *Default:* ```false``` + + ```php + Charts::create('line', 'highcharts')->x_axis_title('Year'); + ``` + +- y_axis_title(required boolean $y_axis_title) + + Set title of the y-axis. Currently only works with ```highcharts```. + + *Default:* ```null``` + + *Note:* When set to ```null``` the value for element_label will be used instead. + + ```php + Charts::create('line', 'highcharts')->y_axis_title('Number of Units'); + ``` + +- language(required string $language) + + Set the chart language. *(Only for database and multiDatabase charts)*. Will be + used before retrieve data with ->lastBy..() or ->GroupBy..() functions. It will translate + date labels. + + ```php + Charts::database(User::all(), 'line', 'highcharts')->language('es'); + ``` + +- settings() + + Return the chart settings. + + ```php + print_r(Charts::create('line', 'highcharts')->settings()); + ``` + +- render() + + Render the chart. + + ```php + echo Charts::create('line', 'highcharts')->labels(['One', 'Two'])->values([10, 20])->render(); + ``` + + ## Chart Examples + + ### Pie + + ```php + Charts::create('pie', 'highcharts') + ->title('My nice chart') + ->labels(['First', 'Second', 'Third']) + ->values([5,10,20]) + ->dimensions(1000,500) + ->responsive(false); + ``` + + ![Example Pie](https://i.gyazo.com/b61a0a5786a8f70daf61398d256366b8.png) + + ### Donut / Doughnut + + Note: ```chartist``` can't change the color of this chart. Well it can but it's complicated, so I leave it here. + + ```php + Charts::create('donut', 'highcharts') + ->title('My nice chart') + ->labels(['First', 'Second', 'Third']) + ->values([5,10,20]) + ->dimensions(1000,500) + ->responsive(false); + ``` + + ![Example Donut](https://i.gyazo.com/fecef4a102cb348d0f7f3681120a600f.png) + + + ### Line + + ```php + Charts::create('line', 'highcharts') + ->title('My nice chart') + ->elementLabel('My nice label') + ->labels(['First', 'Second', 'Third']) + ->values([5,10,20]) + ->dimensions(1000,500) + ->responsive(false); + ``` + + ![Example Line](https://i.gyazo.com/121736e3b8aa7f22ad17a7c0ceecac02.png) + + ### Area + + ```php + Charts::create('area', 'highcharts') + ->title('My nice chart') + ->elementLabel('My nice label') + ->labels(['First', 'Second', 'Third']) + ->values([5,10,20]) + ->dimensions(1000,500) + ->responsive(false); + ``` + + ![Example Area](https://i.gyazo.com/f6c500cf9bfc2e449d64ee19b7bb809c.png) + + ### Areaspline + + ```php + Charts::multi('areaspline', 'highcharts') + ->title('My nice chart') + ->colors(['#ff0000', '#ffffff']) + ->labels(['Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday','Saturday', 'Sunday']) + ->dataset('John', [3, 4, 3, 5, 4, 10, 12]) + ->dataset('Jane', [1, 3, 4, 3, 3, 5, 4]); + ``` + + ![Example Area](https://s30.postimg.org/6uwe893kx/areaspline.png) + + + ### Bar + + ```php + Charts::create('bar', 'highcharts') + ->title('My nice chart') + ->elementLabel('My nice label') + ->labels(['First', 'Second', 'Third']) + ->values([5,10,20]) + ->dimensions(1000,500) + ->responsive(false); + ``` + + ![Example Bar](https://i.gyazo.com/94ada1aac091ef3cbc84433a3425a9aa.png) + + ### Geo + + Note: The labels must have the country codes, not the name. + + Note 2: To add color to the chart, you'll need to provide an array of at least 2 colors. The first is the min and the second the max. + + ```php + Charts::create('geo', 'highcharts') + ->title('My nice chart') + ->elementLabel('My nice label') + ->labels(['ES', 'FR', 'RU']) + ->colors(['#C5CAE9', '#283593']) + ->values([5,10,20]) + ->dimensions(1000,500) + ->responsive(false); + ``` + + ![Example Geo](https://i.gyazo.com/f7a76582e80912864c6cfb23f688e43e.png) + + ### Gauge + + Note: You either need 1 value or 3 following this standard: ```[actualValue, minValue, maxValue]``` + + ```php + Charts::create('gauge', 'canvas-gauges') + ->title('My nice chart') + ->elementLabel('My nice label') + ->values([65,0,100]) + ->responsive(false) + ->height(300) + ->width(0); + ``` + + ![Example Gauge](https://i.gyazo.com/a9bc88c6550d39a15b5a686ea66df0ea.png) + + ### Temperature + + Note: You either need 1 value or 3 following this standard: ```[actualValue, minValue, maxValue]``` + + ```php + Charts::create('temp', 'canvas-gauges') + ->title('My nice chart') + ->elementLabel('My nice label') + ->values([65,0,100]) + ->responsive(false) + ->height(300) + ->width(0); + ``` + + ![Example Temperature](https://i.gyazo.com/1a8f264ffd9746da06d67c3624eaac81.png) + + ### Percentage + + Note: You either need 1 value or 3 following this standard: ```[actualValue, minValue, maxValue]``` + + ```php + Charts::create('percentage', 'justgage') + ->title('My nice chart') + ->elementLabel('My nice label') + ->values([65,0,100]) + ->responsive(false) + ->height(300) + ->width(0); + ``` + + ![Example Percentage](https://i.gyazo.com/d39af8739c12eae6558046aa2031e6c0.png) + + ### Progressbar + + Note: You either need 1 value or 3 following this standard: ```[actualValue, minValue, maxValue]``` + + ```php + Charts::create('progressbar', 'progressbarjs') + ->values([65,0,100]) + ->responsive(false) + ->height(50) + ->width(0); + ``` + + ![Example Progressbar](https://i.gyazo.com/ecd6a20344939ab75767739d32780104.png) + + ### Credits Disable + + Note: ```highcharts``` credits disable available. Default credits is enable. + + ```php + Charts::multi('line', 'highcharts')->credits(false); + ``` + +## Charts in tabs + +![Example tab chart](https://i.gyazo.com/7588eb53db5045a8b3231247d25f8cd6.gif) + +Rendering charts on tabs will cause them to render very bad. The cause is that unactive tabs have no +dimensions and charts try to adapt to a 0 dimensions division. + +Lucky for you I'll add a quick method to make it work! + +1. Create a layout, call it something like: ```layoyts/charts.blade.php``` + + ``` + + + + + + + {!! Charts::assets() !!} + + + + + + @yield('chart') + + + + ``` + +2. Create a new folder where you'll add all charts, for example: ```charts/``` +3. Create a new file inside, for example: ```latest_users.blade.php``` and add the chart + + ``` + @extends('layouts.charts') + @section('chart') + {!! Charts::database(App\User::all(), 'line', 'material')->dimensions(0,$height)->title('Latest Users')->lastByDay(7, true)->elementLabel('New Users')->render() !!} + @endsection + ``` +4. Create a new route in ```routes/web.php``` + + ``` + Route::get('/charts/{name}/{height}', 'ChartsController@show')->name('chart'); + ``` +5. Create a new Controller ```ChartsController``` + + ``` + protected_charts)) { + $this->checkProtected(); + } + return view("charts.$name", ['height' => $height]); + } + + /** + * Protected charts will go here first. + * You can change this condition how you like. + */ + public function checkProtected() + { + if(!Auth::user()->admin) { + abort(404); + } + } + } + + ``` + Make sure to change your stuff, it's all documented + +6. Go to your view where you have your tabs, and inside that tab you like add the chart iframe with the height. + + **Note:** This example uses materializecss. They have a loader that makes it cooler to load up charts :) + + ``` + @php $chart_height = 300; @endphp +
+ +
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ + +
+ ``` +7. Add this script changing the tab id with yours + + **Note:** As you can see it also uses the loader from materializecss, you can remove them as well. + + ``` + + ``` + + +## Extend your way! + +You can create your own Charts by forking this repository. The ```src/Templates``` folder contains all the current charts, but you can +add yours like this: + +### Create a new file + +Create a new file, the syntax is: ```library.type.php``` + +if your chart library is called: ```mylib``` +and your template is for the line chart: ```line``` +Then you create a file like this: ```mylib.line.php``` + +To call it later, just use: + +```php +$chart = Charts::create('line', 'mylib'); +``` + +You will need to add the CSS / JS to the includes.php file found in the ```/src``` folder. + +You have plenty of examples to see how to put the data so just take a closer look at all the included templates before doing yours! diff --git a/Laravel/vendor/consoletvs/charts/docs/5/readme.md b/Laravel/vendor/consoletvs/charts/docs/5/readme.md new file mode 100644 index 0000000..b961da8 --- /dev/null +++ b/Laravel/vendor/consoletvs/charts/docs/5/readme.md @@ -0,0 +1,1380 @@ + +## Charts version 5 - Under Development, use 4.X for stable version + +

+ +

+ +## Table Of Contents + +- [Installation](#installation) +- [Default Settings](#default-settings) +- [Example Usage](#example-usage) +- [Create Charts](#create-charts) +- [Multi Datasets Chart](#multi-datasets-charts) +- [Database Charts](#database-charts) +- [Multi Database Charts](#multi-database-charts) +- [Realtime Charts](#realtime-charts) +- [Math Functions Charts](#math-functions-charts) +- [Charts Functions](#charts-functions) +- [Available Chart Settings](#available-chart-settings) +- [Chart Examples](#chart-examples) +- [Charts in tabs](#charts-in-tabs) +- [Extend your way](#extend-your-way) + + +## Installation + +### Download + +``` +composer require consoletvs/charts:5.* +``` + +### Add service provider & alias + +**NOTE: If you're using laravel 5.5+ you can skip this step.** + +Add the following service provider to the array in: ```config/app.php``` + +```php +ConsoleTVs\Charts\ChartsServiceProvider::class, +``` + +Add the following alias to the array in: ```config/app.php``` + +```php +'Charts' => ConsoleTVs\Charts\Facades\Charts::class, +``` + +### Publish the assets + +``` +php artisan vendor:publish +``` + +## Default Settings + +The file in: ```config/charts.php``` contains an array of settings, you can find the default settings in there. + +## Default Chart Views + +The default chart views are published as well at the resources/views/vendor folder + +## Example Usage + +Example Controller: + +```php +title("My Cool Chart") + // A dimension of 0 means it will take 100% of the space + ->dimensions(0, 400) // Width x Height + // This defines a preset of colors already done:) + ->template("material") + // You could always set them manually + // ->colors(['#2196F3', '#F44336', '#FFC107']) + // Setup the diferent datasets (this is a multi chart) + ->dataset('Element 1', [5,20,100]) + ->dataset('Element 2', [15,30,80]) + ->dataset('Element 3', [25,10,40]) + // Setup what the values mean + ->labels(['One', 'Two', 'Three']); + + return view('test', ['chart' => $chart]); + } +} +``` + +Example View: + +```html + + + + + + + + My Charts + + {!! Charts::assets() !!} + + + + +
+
+ {!! $chart->html() !!} +
+
+ + {!! $chart->script() !!} + + + +``` + +## Create Charts + +| Create Charts | line | area | bar | pie | donut | geo | gauge | temp | percentage | progressbar | areaspline | scatter | +|---------------|------|------|-----|-----|-------|-----|-------|------|------------|-------------|------------|---------| +| echarts | x | x | x | x | x | - | x | - | - | - | - | - | +| chartjs | x | x | x | x | x | - | - | - | - | - | - | - | +| highcharts | x | x | x | x | x | x | - | - | - | - | - | - | +| google | x | x | x | x | x | x | x | - | - | - | - | x | +| material | x | - | x | - | - | - | - | - | - | - | - | - | +| chartist | x | x | x | x | x | - | - | - | - | - | - | - | +| fusioncharts | x | x | x | x | x | - | - | - | - | - | - | - | +| morris | x | x | x | - | x | - | - | - | - | - | - | - | +| plottablejs | x | x | x | x | x | - | - | - | - | - | - | - | +| minimalist | x | x | x | x | x | - | - | - | - | - | - | - | +| c3 | x | x | x | x | x | - | x | - | - | - | - | - | +| canvas-gauges | - | - | - | - | - | - | x | x | - | - | - | - | +| justgage | - | - | - | - | - | - | x | - | x | - | - | - | +| progressbarjs | - | - | - | - | - | - | - | - | x | x | - | - | + +The first argument of the create method is the chart type, and the second is the library + +```php +Charts::create('line', 'highcharts') + ->title('My nice chart') + ->labels(['First', 'Second', 'Third']) + ->values([5,10,20]) + ->dimensions(0,500); +``` + +## Multi Datasets Charts + +| Multi Dataset Charts | line | area | bar | pie | donut | geo | gauge | temp | percentage | progressbar | areaspline | scatter | +|----------------------|------|------|-----|-----|-------|-----|-------|------|------------|-------------|-------------|---------| +| echarts | x | x | x | - | - | - | - | - | - | - | - | - | +| chartjs | x | x | x | - | - | - | - | - | - | - | - | - | +| highcharts | x | x | x | - | - | - | - | - | - | - | x | - | +| google | x | x | x | - | - | - | - | - | - | - | - | - | +| material | x | - | x | - | - | - | - | - | - | - | - | - | +| chartist | x | x | x | - | - | - | - | - | - | - | - | - | +| fusioncharts | x | x | x | - | - | - | - | - | - | - | - | - | +| morris | x | x | x | - | - | - | - | - | - | - | - | - | +| plottablejs | x | x | x | - | - | - | - | - | - | - | - | - | +| minimalist | x | x | x | - | - | - | - | - | - | - | - | - | +| c3 | x | x | x | - | - | - | - | - | - | - | - | - | +| canvas-gauges | - | - | - | - | - | - | - | - | - | - | - | - | +| justgage | - | - | - | - | - | - | - | - | - | - | - | - | +| progressbarjs | - | - | - | - | - | - | - | - | - | - | - | - | + +To create multi-dataset charts simply add the values using the ```setDataset()``` function! + +```php +Charts::multi('line', 'highcharts') + ->colors(['#ff0000', '#00ff00', '#0000ff']) + ->labels(['One', 'Two', 'Three']) + ->dataset('Test 1', [1,2,3]) + ->dataset('Test 2', [0,6,0]) + ->dataset('Test 3', [3,4,1]); +``` + +- dataset(required string $element_label, required array $values) + + ```php + Charts::multi('bar', 'minimalist') + ->responsive(false) + ->dimensions(0, 500) + ->colors(['#ff0000', '#00ff00', '#0000ff']) + ->labels(['One', 'Two', 'Three']) + ->dataset('Test 1', [1,2,3]) + ->dataset('Test 2', [0,6,0]) + ->dataset('Test 3', [3,4,1]); + ``` + + +## Database Charts + +You can also generate database charts with simple setup! + +```php +$chart = Charts::database(User::all(), 'bar', 'highcharts'); +``` + +Example data: +![Example Data](https://i.gyazo.com/e41f0117845230edc5189cd7b5821933.png) + +**Note:** You are required to use a specific group method before rendering the chart! + +*Important:* To work with the *GroupByYear, GroupByMonth, GroupByDay, lastByYear, lastByMonth & lastByDay* you'll need the column ```created_at``` in the data rows. + +The available methods are: + +- data(required mixed $data) + + Setup the data again. + + ```php + $chart = Charts::database(User::all(), 'bar', 'highcharts')->data(Role::all()); + ``` + +- dateColumn(required string $column) + + Set the column to group the data. + + *Default:* ```created_at``` + + ```php + $chart = Charts::database(User::all(), 'bar', 'highcharts')->dateColumn('my_date_column'); + ``` + +- dateFormat(required string $format) + + Set the fancy date format for `groupByDay()` and `lastByDay()` function if `$fancy` set to true, must be called before those function. + + *Default:* ```l dS M, Y``` + + ```php + $chart = Charts::database(User::all(), 'bar', 'highcharts')->dateFormat('j F y'); + ``` + +- monthFormat(required string $format) + + Set the fancy date format for `groupByMonth()` and `lastByMonth()` function if `$fancy` set to true, must be called before those function. + + *Default:* ```F, Y``` + + ```php + $chart = Charts::database(User::all(), 'bar', 'highcharts')->monthFormat('F Y'); + ``` + +- hourFormat(required string $format) + + Set the fancy date format for `groupByHour()` function if `$fancy` set to true, must be called before those function. + + *Default:* ```D, M j, Y g A``` + + ```php + $chart = Charts::database(User::all(), 'bar', 'highcharts')->hourFormat('j, g A'); + ``` + +- groupBy(required string $column, optional string $relationColumn, optional array $labelsMapping) + + Groups the data based on a column. + + *Note:* Relationship column follows this standard: ```->groupBy('product_id', 'product.model');``` where second argument will set labels to model column of product table based on it's relationship with the model. + + ```php + $chart = Charts::database(User::all(), 'bar', 'highcharts') + ->elementLabel("Total") + ->dimensions(1000, 500) + ->responsive(false) + ->groupBy('game'); + ``` + + ![Example GroupBy](https://i.gyazo.com/30183fa75f6bee6848898c4dbe487491.png) + + You can use the $labelsMapping to override labels. The following example overrides the label of different user types stored as integer in database. + + ```php + $chart = Charts::database(User::all(), 'pie', 'highcharts') + ->title('User types') + ->dimensions(1000, 500) + ->responsive(false) + ->groupBy('type', null, [1 => 'Admins', 2 => 'Users', 3 => 'Trainees']); + ``` + +- groupByYear(optional int $years) + + Groups the data based in years. + + *Default:* ```$years = 4``` + + ```php + $chart = Charts::database(User::all(), 'bar', 'highcharts') + ->elementLabel("Total") + ->dimensions(1000, 500) + ->responsive(false) + ->groupByYear(); + + // to display a number of years behind, pass a int parameter. For example to display the last 10 years: + $chart = Charts::database(User::all(), 'bar', 'highcharts') + ->elementLabel("Total") + ->dimensions(1000, 500) + ->responsive(false) + ->groupByYear(10); + ``` + + ![Example GroupByYear](https://i.gyazo.com/5d992b6ce858fee8ed455c61e3bec546.png) + +- groupByMonth(optional string $year, optional boolean $fancy) + + Groups the data in months (if no year set, the current one will be used). + + *Default:* ```$year = 7, $fancy = false``` + + ```php + $chart = Charts::database(User::all(), 'bar', 'highcharts') + ->elementLabel("Total") + ->dimensions(1000, 500) + ->responsive(false) + ->groupByMonth(); + + // to display a specific year, pass the parameter. For example to display the months of 2016 and display a fancy output label: + $chart = Charts::database(User::all(), 'bar', 'highcharts') + ->elementLabel("Total") + ->dimensions(1000, 500) + ->responsive(false) + ->groupByMonth('2016', true); + ``` + + ![Example GroupByMonth](https://i.gyazo.com/8d93b2f74857047339317d54b5082868.png) + +- groupByDay(optional string $month, optional string $year, optional boolean $fancy) + + Groups the data in days (if no year/month set, the current one will be used). + + *Default:* ```$month = date('m'), $year = date('Y'), $fancy = false``` + + ```php + $chart = Charts::database(User::all(), 'bar', 'highcharts') + ->elementLabel("Total") + ->dimensions(1000, 500) + ->responsive(false) + ->groupByDay(); + + // to display a specific month and/or year, pass the parameters. For example to display the days of september 2016 and display a fancy output label: + $chart = Charts::database(User::all(), 'bar', 'highcharts') + ->elementLabel("Total") + ->dimensions(1000, 500) + ->responsive(false) + ->groupByDay('09', '2016', true); + ``` + + ![Example GroupByDay](https://i.gyazo.com/b461f29f41a0a5ac046f1cea79083dcc.png) + +- groupByHour(optional string $day, optional string $month, optional string $year, optional boolean $fancy) + + Groups the data in hours (if no year/month/day set, the current one will be used). + + *Default:* ```$month = date('m'), $year = date('Y'), $fancy = false``` + + ```php + $chart = Charts::database(User::all(), 'bar', 'highcharts') + ->elementLabel("Total") + ->dimensions(1000, 500) + ->responsive(false) + ->groupByHour() + + // to display a specific day and/or month and/or year, pass the parameters. For example to display the hours of May 12, 2017, and display a fancy output label: + $chart = Charts::database(User::all(), 'bar', 'highcharts') + ->elementLabel("Total") + ->dimensions(1000, 500) + ->responsive(false) + ->groupByHour('12', '05', '2017', true) + ``` + + ![Example GroupByHour](https://sc-cdn.scaleengine.net/i/fc4ed88407cbaf47e4637e60e307ae41.png) + +- lastByYear(optional int $number) + + Alias for groupByYear() method. Does the same. + + *Default:* ```$number = 4``` + + ```php + $chart = Charts::database(User::all(), 'bar', 'highcharts') + ->elementLabel("Total") + ->dimensions(1000, 500) + ->responsive(false) + ->lastByYear(); + + // to display a number of years behind, pass a int parameter. For example to display the last 3 years: + $chart = Charts::database(User::all(), 'bar', 'highcharts') + ->elementLabel("Total") + ->dimensions(1000, 500) + ->responsive(false) + ->lastByYear(3); + ``` + + ![Example LastByYear](https://i.gyazo.com/7f85bec0fb49f5729608aa87b8657fc1.png) + +- lastByMonth(optional int $number, optional boolean $fancy) + + Display the numbers of months behind (relative to the current date). + + *Default:* ```$number = 6, $fancy = false``` + + ```php + $chart = Charts::database(User::all(), 'bar', 'highcharts') + ->elementLabel("Total") + ->dimensions(1000, 500) + ->responsive(false) + ->lastByMonth(); + + // to display a number of months behind, pass a int parameter. For example to display the last 6 months and use a fancy output: + $chart = Charts::database(User::all(), 'bar', 'highcharts') + ->elementLabel("Total") + ->dimensions(1000, 500) + ->responsive(false) + ->lastByMonth(6, true); + ``` + + ![Example LastByMonth](https://i.gyazo.com/7c7df6503749fda8d96807d6bc2861aa.png) + +- lastByDay(optional int $number, optional boolean $fancy) + + Display the numbers of days behind (relative to the current date). + + *Default:* ```$number = 7, $fancy = false``` + + ```php + $chart = Charts::database(User::all(), 'bar', 'highcharts') + ->elementLabel("Total") + ->dimensions(1000, 500) + ->responsive(false) + ->lastByDay(); + + // to display a number of days behind, pass a int parameter. For example to display the last 14 days and use a fancy output: + $chart = Charts::database(User::all(), 'bar', 'highcharts') + ->elementLabel("Total") + ->dimensions(1000, 500) + ->responsive(false) + ->lastByDay(14, true); + ``` + + ![Example LastByDay](https://i.gyazo.com/eeac8c7551ed681ef3728454ba4be9f0.png) + +- preaggregated(boolean $preaggregated) + + Set to true if using an aggregate database query such as count, max, min, avg, and sum. + + ```php + $data = Orders::select('orders.created_at', DB::raw('count(orders.id) as aggregate'))->groupBy(DB::raw('Date(orders.created_at)'))->get(); //must alias the aggregate column as aggregate + + $chart = Charts::database($data)->preaggregated(true)->lastByDay(7, false); + ``` +- aggregateColumn(string $aggregateColumn, string $aggregateType) + + This is similar to preaggregate. If you do not want to maintain extra data or + simply want to leverage the search speed of the database use preaggregate. + If you need to maintain the extra data from a record use this form (possibly for drilldown extension). + + Pass in a string representation of a column containing numeric values to be summed. + + Assume a collection of BankRecord with a numeric column called 'amount'. + ```php + $chart = new Database(BankRecord::all(), 'bar', 'highcharts'); + $chart->aggregateColumn('amount', 'sum'); + ``` + + This will yield summed values for column 'amount'. + +### Database method alternative + +When creating charts, you might wanna take full control of it, this might be done creating the chart with the ```create``` method +and adding the data from the database: + +``` +$data = Shopping::all(); +$chart = Charts::create('bar', 'highcharts') + ->title('My nice chart') + ->elementLabel('My nice label') + ->labels($data->pluck('shoppingDate')) + ->values($data->pluck('price')) + ->responsive(true); +``` + +## Multi Database Charts + +Sometimes it might be usefull to create multi charts from diferent tables, right? + +Fear no more, as this feature is there for you! + +*Working Standard:* This chart is kinda special, the class extends the multi chart class and that means +that any option available in the multi chart is avalable here. BUT as this is a database chart, you +need to add the dataset in the following way: + +```php +Charts::multiDatabase('line', 'material') + ->dataset('Element 1', Users::all()) + ->dataset('Element 2', Posts::all()); +``` + +And remember, you got all the database functions linked, meaning you're able to play with them as well like this: + +```php +Charts::multiDatabase('line', 'material') + ->dataset('Element 1', Users::all()) + ->dataset('Element 2', Posts::all()) + ->groupByMonth(2017, true); +``` + +**As mentioned above, this chart got all the available database methods and multi chart methods.** + +## Realtime Charts + +![Realtime Chart Example](https://i.gyazo.com/77a9365e9270cb16a28c6acf11abadc3.gif) + +| Realtime Charts | line | area | bar | pie | donut | geo | gauge | temp | percentage | progressbar | scatter | +|-----------------|------|------|-----|-----|-------|-----|-------|------|------------|-------------|---------| +| echarts | - | - | - | - | - | - | - | - | - | - | - | +| chartjs | - | - | - | - | - | - | - | - | - | - | - | +| highcharts | x | x | x | - | - | - | - | - | - | - | - | +| google | - | - | - | - | - | - | x | - | - | - | - | +| material | - | - | - | - | - | - | - | - | - | - | - | +| chartist | - | - | - | - | - | - | - | - | - | - | - | +| fusioncharts | - | - | - | - | - | - | - | - | - | - | - | +| morris | - | - | - | - | - | - | - | - | - | - | - | +| plottablejs | - | - | - | - | - | - | - | - | - | - | - | +| minimalist | - | - | - | - | - | - | - | - | - | - | - | +| c3 | - | - | - | - | - | - | - | - | - | - | - | +| canvas-gauges | - | - | - | - | - | - | x | x | - | - | - | +| justgage | - | - | - | - | - | - | x | - | x | - | - | +| progressbarjs | - | - | - | - | - | - | - | - | x | x | - | + +You can create realtime charts. + +Example json: + +```json +{"value":31} +``` + +'value' can be changed to different index name with ```valueName($string)``` + +```php +$chart = Charts::realtime(url('/path/to/json'), 2000, 'gauge', 'google') + ->values([65, 0, 100]) + ->labels(['First', 'Second', 'Third']) + ->responsive(false) + ->height(300) + ->width(0) + ->title("Permissions Chart") + ->valueName('value'); //This determines the json index for the value +``` + +**Note:** The interval is set in ms + +The available methods are: + +- valueName(required string $string) + + Sets the value json index. + + *Default:* ```value``` + + ```php + $chart = Charts::realtime(url('/path/to/json'), 2000, 'gauge', 'google') + ->values([65, 0, 100]) + ->labels(['First', 'Second', 'Third']) + ->responsive(false) + ->height(300) + ->width(0) + ->title("Permissions Chart") + ->valueName('value'); //This determines the json index for the value + ``` + +- url(required string $url) + + Sets the url after chart object creation. + + ```php + $chart = Charts::realtime(url('/path/to/json'), 2000, 'gauge', 'google') + ->values([65, 0, 100]) + ->labels(['First', 'Second', 'Third']) + ->responsive(false) + ->height(300) + ->width(0) + ->title("Permissions Chart") + ->url(url('/new/json')); + ``` + +- interval(required int $interval) + + Sets the interval after chart object creation (ms). + + ```php + $chart = Charts::realtime(url('/path/to/json'), 2000, 'gauge', 'google') + ->values([65, 0, 100]) + ->labels(['First', 'Second', 'Third']) + ->responsive(false) + ->height(300) + ->width(0) + ->title("Permissions Chart") + ->interval(3000); // in ms + ``` + +- maxValues(required int $number) + + Sets the max amount of values to be seen before removing the first one. + + ```php + $chart = Charts::realtime(url('/path/to/json'), 1000, 'area', 'highcharts') + ->responsive(false) + ->height(300) + ->width(0) + ->title("Permissions Chart") + ->maxValues(10); + ``` + +## Math Functions Charts + +You can create math function charts. + +![Math Functions Example](https://i.gyazo.com/0dc9c2bd8ce55f16ff2c217afc9614dd.png) + +```php +Charts::math('sin(x)', [0, 10], 0.2, 'line', 'highcharts'); +``` + +The function is ```sin(x)```, the interval is ```[0, 10]``` and the ```x``` amplitude is ```0.2``` + +- function(required string $function) + + Sets the function. + + ```php + Charts::math('sin(x)', [0, 10], 0.2, 'line', 'highcharts')->mathFunction('x+1'); + ``` + +- interval(required array $interval) + + Sets the function / chart interval. + + ```php + Charts::math('sin(x)', [0, 10], 0.2, 'line', 'highcharts')->interval([2, 8]); + ``` + +- amplitude(required int $amplitude) + + Sets the function amplitude between x points. + + ```php + Charts::math('sin(x)', [0, 10], 0.2, 'line', 'highcharts')->amplitude(0.5); + ``` + +- calculate() + + Calculates the values / labels for the chart. + + **Note:** This function is called every time a modification is made in the chart function, interval or amplitude + so you don't need to call it every time you change the values. It's just an auxiliary function. + + ```php + Charts::math('sin(x)', [0, 10], 0.2, 'line', 'highcharts')->calculate(); + ``` + +## Charts Functions + +- create(optional string $type, optional string $library) + + Returns a new chart instance, if no library is specified, the default one will be used. + + ```php + Charts::create('line'); + Charts::create('line', 'highcharts'); + ``` + + + +- database(required mixed $object, optional string $type, optional string $library) + + Returns a new database chart instance that extends the base one. + + ```php + Charts::database(User::all()); + Charts::create(User::all(), 'line', 'highcharts'); + ``` + +- realtime(required string $url, required int $interval, optional string $type, optional string $library) + + Returns a new database chart instance that extends the base one. + + ```php + Charts::realtime(url('/json/data'), 2000, 'gauge', 'google') + ``` + +- math(required string $function, required array $interval, required int $amplitude, optional string $type, optional string $library) + + Returns a new math function chart instance that extends the base one. + + ```php + Charts::math('sin(x)', [0, 10], 0.2, 'line', 'highcharts'); + ``` + +- multi(optional string $type, optional string $library) + + Returns a new multi chart instance that extends the base one. + + ```php + Charts::multi('line', 'material'); + ``` + +- multiDatabase(optional string $type, optional string $library) + + Returns a new multi database chart instance that extends the multi chart but can use the database functions. + + ```php + Charts::multi('line', 'material'); + ``` + +- assets(optional array $libraries) + + Returns all the assets to generate the graphs. + + To output only certain libraries, add an array to it with the libraries you want + + ```php + + + // Using blade + {!! Charts::assets() !!} + + // Only certain libraries + {!! Charts::assets(['google', 'chartjs']) !!} + ``` + +- styles(optional array $libraries) + + Returns all the style assets. + + ```php + // All libraries + {!! Charts::styles() !!} + // Only certain libraries + {!! Charts::styles(['google', 'material']) !!} + ``` + +- scripts(optional array $libraries) + + Returns all the script assets. + + ```php + // All libraries + {!! Charts::styles() !!} + // Only certain libraries + {!! Charts::styles(['google', 'material']) !!} + ``` + +- libraries(optional string $type) + + Returns an array of all the libraries available (can be filtered). + + ```php + // Return all the libraries available + print_r(Charts::libraries()); + + // Return all the libraries available for the line chart + print_r(Charts::libraries('line')); + ``` + +- types(optional string $library) + + Returns an array of all the chart types available (can be filtered). + + ```php + // Return all the chart types available + print_r(Charts::types()); + + // Return all the chart types available for the highcharts library + print_r(Charts::types('highcharts')); + ``` + +## Available Chart Settings + +- loader(required bool $loader) + + Set the chart loader animation enabled or disabled. + + ```php + Charts::create('line', 'highcharts')->loader(false); + ``` + +- loaderDuration(required int $duration) + + Set the duration of the chart loader animation in ms. + + ```php + Charts::create('line', 'highcharts')->loader(true)->loaderDuration(2000); + ``` + +- loaderColor(required string $color) + + Set the loader color. + + ```php + Charts::create('line', 'highcharts')->loader(true)->loaderColor('#FF0000'); + ``` + +- backgroundColor(required string $background_color) + + Set the background color for the loader. + + ```php + Charts::create('line', 'highcharts')->backgroundColor('#FF0000'); + ``` + +- template(required string $template) + + Set an available color template for the chart. + + *Note:* They are defined in ```config/charts.php``` file, under the templates key. + + ```php + Charts::create('line', 'highcharts')->template('material'); + ``` + +- oneColor(required bool $one_color) + + Specifies if the chart will only use the first color, regardless of the ammount of values. + + ```php + Charts::create('line', 'highcharts')->oneColor(true); + ``` + +- credits(required bool $credits) + + Set the credits enabled or disabled if the library supports it. + + ```php + Charts::create('line', 'highcharts')->credits(false); + ``` + +- container(required string $division) + + Set a custom division ID to render the chart at + + ```php + Charts::create('line', 'google')->container('my-division-id'); + ``` + +- view(required string $view) + + Set a custom view to render the chart + + ```php + Charts::create('line', 'google')->view('my.view'); + ``` + +- region(required string $region) + + Set the region for google geo chart + + *Default:* ```world``` + + ```php + Charts::create('geo', 'google')->region('FR'); + ``` + +- gaugeStyle(required string $style) + + Set the gauge style + + *Default:* ```left``` + + *Available options:* ```left``` ```right``` ```center``` + + ```php + Charts::create('gauge', 'google')->gaugeStyle('right'); + ``` + +- type(required string $type) + + Set the chart type after creation (Example: from line to pie). + + ```php + Charts::create('line', 'highcharts')->type('pie'); + ``` + +- library(required string $library) + + Set the chart library after creation (Example: from highcharts to google). + + ```php + Charts::create('line', 'highcharts')->library('google'); + ``` + +- labels(required array $labels) + + The labels of the chart. + + ```php + Charts::create('line', 'highcharts')->labels(['First', 'Second', 'Third']); + ``` + +- values(required array $values) + + The values of the chart respectively. + + ```php + Charts::create('line', 'highcharts')->values([10, 50, 100]); + ``` + +- elementLabel(required string $element_label) + + The element label for line / bar / geo charts. + + ```php + Charts::create('line', 'highcharts')->elementLabel('Total Views'); + ``` + +- title(required string $title) + + The chart title. + + ```php + Charts::create('line', 'highcharts')->title('My Chart'); + ``` + +- colors(required array $colors) + + The colors of the charts respectively. + + ```php + Charts::create('line', 'highcharts')->colors(['#ff0000', '#00ff00', '#0000ff']); + ``` + +- width(required int $width) + + The chart width if non-responsive. 0 = responsive width. + + ```php + Charts::create('line', 'highcharts')->width(1000); + ``` + +- height(required int $height) + + The chart height if non-responsive. 0 = responsive height. + + ```php + Charts::create('line', 'highcharts')->height(500); + ``` + +- dimensions(required int $width, required int $height) + + The chart dimensions (shortcut to set width, height with one function). + + ```php + Charts::create('line', 'highcharts')->height(1000, 500); + ``` + +- responsive(required boolean $responsive) + + Set if the chart is responsive or not. If not, the chart dimensions will be used. + + ```php + Charts::create('line', 'highcharts')->responsive(false); + ``` + +- legend(required boolean $legend) + + Set whether to display the chart legend or not. Currently only works with ```highcharts```. + + *Default:* ```true``` + + ```php + Charts::create('line', 'highcharts')->legend(false); + ``` + +- x_axis_title(required boolean $x_axis_title) + + Set title of the x-axis. Currently only works with ```highcharts```. + + *Default:* ```false``` + + ```php + Charts::create('line', 'highcharts')->x_axis_title('Year'); + ``` + +- y_axis_title(required boolean $y_axis_title) + + Set title of the y-axis. Currently only works with ```highcharts```. + + *Default:* ```null``` + + *Note:* When set to ```null``` the value for element_label will be used instead. + + ```php + Charts::create('line', 'highcharts')->y_axis_title('Number of Units'); + ``` + +- language(required string $language) + + Set the chart language. *(Only for database and multiDatabase charts)*. Will be + used before retrieve data with ->lastBy..() or ->GroupBy..() functions. It will translate + date labels. + + ```php + Charts::database(User::all(), 'line', 'highcharts')->language('es'); + ``` + +- settings() + + Return the chart settings. + + ```php + print_r(Charts::create('line', 'highcharts')->settings()); + ``` + +- render() + + Render the chart. + + ```php + echo Charts::create('line', 'highcharts')->labels(['One', 'Two'])->values([10, 20])->render(); + ``` + + ## Chart Examples + + ### Pie + + ```php + Charts::create('pie', 'highcharts') + ->title('My nice chart') + ->labels(['First', 'Second', 'Third']) + ->values([5,10,20]) + ->dimensions(1000,500) + ->responsive(false); + ``` + + ![Example Pie](https://i.gyazo.com/b61a0a5786a8f70daf61398d256366b8.png) + + ### Donut / Doughnut + + Note: ```chartist``` can't change the color of this chart. Well it can but it's complicated, so I leave it here. + + ```php + Charts::create('donut', 'highcharts') + ->title('My nice chart') + ->labels(['First', 'Second', 'Third']) + ->values([5,10,20]) + ->dimensions(1000,500) + ->responsive(false); + ``` + + ![Example Donut](https://i.gyazo.com/fecef4a102cb348d0f7f3681120a600f.png) + + + ### Line + + ```php + Charts::create('line', 'highcharts') + ->title('My nice chart') + ->elementLabel('My nice label') + ->labels(['First', 'Second', 'Third']) + ->values([5,10,20]) + ->dimensions(1000,500) + ->responsive(false); + ``` + + ![Example Line](https://i.gyazo.com/121736e3b8aa7f22ad17a7c0ceecac02.png) + + ### Area + + ```php + Charts::create('area', 'highcharts') + ->title('My nice chart') + ->elementLabel('My nice label') + ->labels(['First', 'Second', 'Third']) + ->values([5,10,20]) + ->dimensions(1000,500) + ->responsive(false); + ``` + + ![Example Area](https://i.gyazo.com/f6c500cf9bfc2e449d64ee19b7bb809c.png) + + ### Areaspline + + ```php + Charts::multi('areaspline', 'highcharts') + ->title('My nice chart') + ->colors(['#ff0000', '#ffffff']) + ->labels(['Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday','Saturday', 'Sunday']) + ->dataset('John', [3, 4, 3, 5, 4, 10, 12]) + ->dataset('Jane', [1, 3, 4, 3, 3, 5, 4]); + ``` + + ![Example Area](https://s30.postimg.org/6uwe893kx/areaspline.png) + + + ### Bar + + ```php + Charts::create('bar', 'highcharts') + ->title('My nice chart') + ->elementLabel('My nice label') + ->labels(['First', 'Second', 'Third']) + ->values([5,10,20]) + ->dimensions(1000,500) + ->responsive(false); + ``` + + ![Example Bar](https://i.gyazo.com/94ada1aac091ef3cbc84433a3425a9aa.png) + + ### Geo + + Note: The labels must have the country codes, not the name. + + Note 2: To add color to the chart, you'll need to provide an array of at least 2 colors. The first is the min and the second the max. + + ```php + Charts::create('geo', 'highcharts') + ->title('My nice chart') + ->elementLabel('My nice label') + ->labels(['ES', 'FR', 'RU']) + ->colors(['#C5CAE9', '#283593']) + ->values([5,10,20]) + ->dimensions(1000,500) + ->responsive(false); + ``` + + ![Example Geo](https://i.gyazo.com/f7a76582e80912864c6cfb23f688e43e.png) + + ### Gauge + + Note: You either need 1 value or 3 following this standard: ```[actualValue, minValue, maxValue]``` + + ```php + Charts::create('gauge', 'canvas-gauges') + ->title('My nice chart') + ->elementLabel('My nice label') + ->values([65,0,100]) + ->responsive(false) + ->height(300) + ->width(0); + ``` + + ![Example Gauge](https://i.gyazo.com/a9bc88c6550d39a15b5a686ea66df0ea.png) + + ### Temperature + + Note: You either need 1 value or 3 following this standard: ```[actualValue, minValue, maxValue]``` + + ```php + Charts::create('temp', 'canvas-gauges') + ->title('My nice chart') + ->elementLabel('My nice label') + ->values([65,0,100]) + ->responsive(false) + ->height(300) + ->width(0); + ``` + + ![Example Temperature](https://i.gyazo.com/1a8f264ffd9746da06d67c3624eaac81.png) + + ### Percentage + + Note: You either need 1 value or 3 following this standard: ```[actualValue, minValue, maxValue]``` + + ```php + Charts::create('percentage', 'justgage') + ->title('My nice chart') + ->elementLabel('My nice label') + ->values([65,0,100]) + ->responsive(false) + ->height(300) + ->width(0); + ``` + + ![Example Percentage](https://i.gyazo.com/d39af8739c12eae6558046aa2031e6c0.png) + + ### Progressbar + + Note: You either need 1 value or 3 following this standard: ```[actualValue, minValue, maxValue]``` + + ```php + Charts::create('progressbar', 'progressbarjs') + ->values([65,0,100]) + ->responsive(false) + ->height(50) + ->width(0); + ``` + + ![Example Progressbar](https://i.gyazo.com/ecd6a20344939ab75767739d32780104.png) + + ### Credits Disable + + Note: ```highcharts``` credits disable available. Default credits is enable. + + ```php + Charts::multi('line', 'highcharts')->credits(false); + ``` + +## Charts in tabs + +![Example tab chart](https://i.gyazo.com/7588eb53db5045a8b3231247d25f8cd6.gif) + +Rendering charts on tabs will cause them to render very bad. The cause is that unactive tabs have no +dimensions and charts try to adapt to a 0 dimensions division. + +Lucky for you I'll add a quick method to make it work! + +1. Create a layout, call it something like: ```layoyts/charts.blade.php``` + + ``` + + + + + + + {!! Charts::assets() !!} + + + + + + @yield('chart') + + + + ``` + +2. Create a new folder where you'll add all charts, for example: ```charts/``` +3. Create a new file inside, for example: ```latest_users.blade.php``` and add the chart + + ``` + @extends('layouts.charts') + @section('chart') + {!! Charts::database(App\User::all(), 'line', 'material')->dimensions(0,$height)->title('Latest Users')->lastByDay(7, true)->elementLabel('New Users')->render() !!} + @endsection + ``` +4. Create a new route in ```routes/web.php``` + + ``` + Route::get('/charts/{name}/{height}', 'ChartsController@show')->name('chart'); + ``` +5. Create a new Controller ```ChartsController``` + + ``` + protected_charts)) { + $this->checkProtected(); + } + return view("charts.$name", ['height' => $height]); + } + + /** + * Protected charts will go here first. + * You can change this condition how you like. + */ + public function checkProtected() + { + if(!Auth::user()->admin) { + abort(404); + } + } + } + + ``` + Make sure to change your stuff, it's all documented + +6. Go to your view where you have your tabs, and inside that tab you like add the chart iframe with the height. + + **Note:** This example uses materializecss. They have a loader that makes it cooler to load up charts :) + + ``` + @php $chart_height = 300; @endphp +
+ +
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ + +
+ ``` +7. Add this script changing the tab id with yours + + **Note:** As you can see it also uses the loader from materializecss, you can remove them as well. + + ``` + + ``` + + +## Extend your way! + +You can create your own Charts by forking this repository. The ```src/Templates``` folder contains all the current charts, but you can +add yours like this: + +### Create a new file + +Create a new file, the syntax is: ```library.type.php``` + +if your chart library is called: ```mylib``` +and your template is for the line chart: ```line``` +Then you create a file like this: ```mylib.line.php``` + +To call it later, just use: + +```php +$chart = Charts::create('line', 'mylib'); +``` + +You will need to add the CSS / JS to the includes.php file found in the ```/src``` folder. + +You have plenty of examples to see how to put the data so just take a closer look at all the included templates before doing yours! diff --git a/Laravel/vendor/consoletvs/charts/resources/views/_partials/container/canvas.blade.php b/Laravel/vendor/consoletvs/charts/resources/views/_partials/container/canvas.blade.php new file mode 100644 index 0000000..5b3b28e --- /dev/null +++ b/Laravel/vendor/consoletvs/charts/resources/views/_partials/container/canvas.blade.php @@ -0,0 +1,7 @@ +@if(!$model->container) + @include('charts::_partials.loader.container-top') +
+ +
+ @include('charts::_partials.loader.container-bottom') +@endif diff --git a/Laravel/vendor/consoletvs/charts/resources/views/_partials/container/canvas2.blade.php b/Laravel/vendor/consoletvs/charts/resources/views/_partials/container/canvas2.blade.php new file mode 100644 index 0000000..5490b25 --- /dev/null +++ b/Laravel/vendor/consoletvs/charts/resources/views/_partials/container/canvas2.blade.php @@ -0,0 +1,7 @@ +@if(!$model->container) + @include('charts::_partials.loader.container-top') +
+ +
+ @include('charts::_partials.loader.container-bottom') +@endif diff --git a/Laravel/vendor/consoletvs/charts/resources/views/_partials/container/chartist.blade.php b/Laravel/vendor/consoletvs/charts/resources/views/_partials/container/chartist.blade.php new file mode 100644 index 0000000..0eea85f --- /dev/null +++ b/Laravel/vendor/consoletvs/charts/resources/views/_partials/container/chartist.blade.php @@ -0,0 +1,6 @@ +@if(!$model->container) + @include('charts::_partials.container.title') + @include('charts::_partials.loader.container-top') +
+ @include('charts::_partials.loader.container-bottom') +@endif diff --git a/Laravel/vendor/consoletvs/charts/resources/views/_partials/container/div-titled.blade.php b/Laravel/vendor/consoletvs/charts/resources/views/_partials/container/div-titled.blade.php new file mode 100644 index 0000000..3afde40 --- /dev/null +++ b/Laravel/vendor/consoletvs/charts/resources/views/_partials/container/div-titled.blade.php @@ -0,0 +1,8 @@ +@if(!$model->container) + @include('charts::_partials.container.title') + @include('charts::_partials.loader.container-top') +
+
+
+ @include('charts::_partials.loader.container-bottom') +@endif diff --git a/Laravel/vendor/consoletvs/charts/resources/views/_partials/container/div.blade.php b/Laravel/vendor/consoletvs/charts/resources/views/_partials/container/div.blade.php new file mode 100644 index 0000000..f346338 --- /dev/null +++ b/Laravel/vendor/consoletvs/charts/resources/views/_partials/container/div.blade.php @@ -0,0 +1,6 @@ +@if(!$model->container) + + @include('charts::_partials.loader.container-top') +
+ @include('charts::_partials.loader.container-bottom') +@endif diff --git a/Laravel/vendor/consoletvs/charts/resources/views/_partials/container/svg.blade.php b/Laravel/vendor/consoletvs/charts/resources/views/_partials/container/svg.blade.php new file mode 100644 index 0000000..254e4c4 --- /dev/null +++ b/Laravel/vendor/consoletvs/charts/resources/views/_partials/container/svg.blade.php @@ -0,0 +1,5 @@ +@if(!$model->container) + @include('charts::_partials.loader.container-top') + + @include('charts::_partials.loader.container-bottom') +@endif diff --git a/Laravel/vendor/consoletvs/charts/resources/views/_partials/container/title.blade.php b/Laravel/vendor/consoletvs/charts/resources/views/_partials/container/title.blade.php new file mode 100644 index 0000000..a7bd61c --- /dev/null +++ b/Laravel/vendor/consoletvs/charts/resources/views/_partials/container/title.blade.php @@ -0,0 +1,9 @@ +@if(!$model->container) +
+ @if($model->title) +
+ {{ $model->title }} +
+ @endif +
+@endif diff --git a/Laravel/vendor/consoletvs/charts/resources/views/_partials/dimension/css.blade.php b/Laravel/vendor/consoletvs/charts/resources/views/_partials/dimension/css.blade.php new file mode 100644 index 0000000..2969955 --- /dev/null +++ b/Laravel/vendor/consoletvs/charts/resources/views/_partials/dimension/css.blade.php @@ -0,0 +1,11 @@ +@if($model->responsive) + height: 100%; width: 100%; +@else + @if($model->height) + height: {{ $model->height }}px; + @endif + + @if($model->width) + width: {{ $model->width }}px; + @endif +@endif diff --git a/Laravel/vendor/consoletvs/charts/resources/views/_partials/dimension/html.blade.php b/Laravel/vendor/consoletvs/charts/resources/views/_partials/dimension/html.blade.php new file mode 100644 index 0000000..949914e --- /dev/null +++ b/Laravel/vendor/consoletvs/charts/resources/views/_partials/dimension/html.blade.php @@ -0,0 +1,11 @@ +@if($model->responsive) + height="100%" width="100%" +@else + @if($model->height) + height="{{ $model->height }}" + @endif + + @if($model->width) + width="{{ $model->width }}" + @endif +@endif diff --git a/Laravel/vendor/consoletvs/charts/resources/views/_partials/dimension/js.blade.php b/Laravel/vendor/consoletvs/charts/resources/views/_partials/dimension/js.blade.php new file mode 100644 index 0000000..c11a137 --- /dev/null +++ b/Laravel/vendor/consoletvs/charts/resources/views/_partials/dimension/js.blade.php @@ -0,0 +1,16 @@ +@if($model->responsive) + height: "100%", + width: "100%", +@else + @if($model->height) + height: "{{ $model->height }}px", + @else + height: "100%", + @endif + + @if($model->width) + width: "{{ $model->width }}px", + @else + width: "100%", + @endif +@endif diff --git a/Laravel/vendor/consoletvs/charts/resources/views/_partials/dimension/js2.blade.php b/Laravel/vendor/consoletvs/charts/resources/views/_partials/dimension/js2.blade.php new file mode 100644 index 0000000..92d1bf8 --- /dev/null +++ b/Laravel/vendor/consoletvs/charts/resources/views/_partials/dimension/js2.blade.php @@ -0,0 +1,9 @@ +@if(!$model->responsive) + @if($model->height) + height: {{ $model->height }}, + @endif + + @if($model->width) + width: {{ $model->width }}, + @endif +@endif diff --git a/Laravel/vendor/consoletvs/charts/resources/views/_partials/dimension/svg.blade.php b/Laravel/vendor/consoletvs/charts/resources/views/_partials/dimension/svg.blade.php new file mode 100644 index 0000000..22037c6 --- /dev/null +++ b/Laravel/vendor/consoletvs/charts/resources/views/_partials/dimension/svg.blade.php @@ -0,0 +1,5 @@ + diff --git a/Laravel/vendor/consoletvs/charts/resources/views/_partials/helpers/hex2rgb.blade.php b/Laravel/vendor/consoletvs/charts/resources/views/_partials/helpers/hex2rgb.blade.php new file mode 100644 index 0000000..b20800a --- /dev/null +++ b/Laravel/vendor/consoletvs/charts/resources/views/_partials/helpers/hex2rgb.blade.php @@ -0,0 +1,11 @@ + diff --git a/Laravel/vendor/consoletvs/charts/resources/views/_partials/loader/container-bottom.blade.php b/Laravel/vendor/consoletvs/charts/resources/views/_partials/loader/container-bottom.blade.php new file mode 100644 index 0000000..ebc6381 --- /dev/null +++ b/Laravel/vendor/consoletvs/charts/resources/views/_partials/loader/container-bottom.blade.php @@ -0,0 +1,2 @@ +
+
diff --git a/Laravel/vendor/consoletvs/charts/resources/views/_partials/loader/container-top.blade.php b/Laravel/vendor/consoletvs/charts/resources/views/_partials/loader/container-top.blade.php new file mode 100644 index 0000000..03fd424 --- /dev/null +++ b/Laravel/vendor/consoletvs/charts/resources/views/_partials/loader/container-top.blade.php @@ -0,0 +1,7 @@ +
+ +
diff --git a/Laravel/vendor/consoletvs/charts/resources/views/_partials/loader/css.blade.php b/Laravel/vendor/consoletvs/charts/resources/views/_partials/loader/css.blade.php new file mode 100644 index 0000000..8888bb0 --- /dev/null +++ b/Laravel/vendor/consoletvs/charts/resources/views/_partials/loader/css.blade.php @@ -0,0 +1,68 @@ + diff --git a/Laravel/vendor/consoletvs/charts/resources/views/_partials/loader/js.blade.php b/Laravel/vendor/consoletvs/charts/resources/views/_partials/loader/js.blade.php new file mode 100644 index 0000000..5e90b74 --- /dev/null +++ b/Laravel/vendor/consoletvs/charts/resources/views/_partials/loader/js.blade.php @@ -0,0 +1,20 @@ + diff --git a/Laravel/vendor/consoletvs/charts/resources/views/amcharts/bar.blade.php b/Laravel/vendor/consoletvs/charts/resources/views/amcharts/bar.blade.php new file mode 100644 index 0000000..d40bec0 --- /dev/null +++ b/Laravel/vendor/consoletvs/charts/resources/views/amcharts/bar.blade.php @@ -0,0 +1,49 @@ +@if(!$model->customId) + @include('charts::_partials.container.div') +@endif + + diff --git a/Laravel/vendor/consoletvs/charts/resources/views/c3/area.blade.php b/Laravel/vendor/consoletvs/charts/resources/views/c3/area.blade.php new file mode 100644 index 0000000..e59ad16 --- /dev/null +++ b/Laravel/vendor/consoletvs/charts/resources/views/c3/area.blade.php @@ -0,0 +1,30 @@ +@include('charts::_partials.container.div') + diff --git a/Laravel/vendor/consoletvs/charts/resources/views/c3/bar.blade.php b/Laravel/vendor/consoletvs/charts/resources/views/c3/bar.blade.php new file mode 100644 index 0000000..77fc17a --- /dev/null +++ b/Laravel/vendor/consoletvs/charts/resources/views/c3/bar.blade.php @@ -0,0 +1,30 @@ +@include('charts::_partials.container.div') + diff --git a/Laravel/vendor/consoletvs/charts/resources/views/c3/donut.blade.php b/Laravel/vendor/consoletvs/charts/resources/views/c3/donut.blade.php new file mode 100644 index 0000000..d36f50b --- /dev/null +++ b/Laravel/vendor/consoletvs/charts/resources/views/c3/donut.blade.php @@ -0,0 +1,32 @@ +@include('charts::_partials.container.div') + diff --git a/Laravel/vendor/consoletvs/charts/resources/views/c3/gauge.blade.php b/Laravel/vendor/consoletvs/charts/resources/views/c3/gauge.blade.php new file mode 100644 index 0000000..b7b02f5 --- /dev/null +++ b/Laravel/vendor/consoletvs/charts/resources/views/c3/gauge.blade.php @@ -0,0 +1,34 @@ +@include('charts::_partials.container.div') + diff --git a/Laravel/vendor/consoletvs/charts/resources/views/c3/line.blade.php b/Laravel/vendor/consoletvs/charts/resources/views/c3/line.blade.php new file mode 100644 index 0000000..ae81015 --- /dev/null +++ b/Laravel/vendor/consoletvs/charts/resources/views/c3/line.blade.php @@ -0,0 +1,29 @@ +@include('charts::_partials.container.div') + diff --git a/Laravel/vendor/consoletvs/charts/resources/views/c3/multi/area.blade.php b/Laravel/vendor/consoletvs/charts/resources/views/c3/multi/area.blade.php new file mode 100644 index 0000000..7dfac73 --- /dev/null +++ b/Laravel/vendor/consoletvs/charts/resources/views/c3/multi/area.blade.php @@ -0,0 +1,32 @@ +@include('charts::_partials.container.div') + diff --git a/Laravel/vendor/consoletvs/charts/resources/views/c3/multi/bar.blade.php b/Laravel/vendor/consoletvs/charts/resources/views/c3/multi/bar.blade.php new file mode 100644 index 0000000..219c225 --- /dev/null +++ b/Laravel/vendor/consoletvs/charts/resources/views/c3/multi/bar.blade.php @@ -0,0 +1,32 @@ +@include('charts::_partials.container.div') + diff --git a/Laravel/vendor/consoletvs/charts/resources/views/c3/multi/line.blade.php b/Laravel/vendor/consoletvs/charts/resources/views/c3/multi/line.blade.php new file mode 100644 index 0000000..79092c5 --- /dev/null +++ b/Laravel/vendor/consoletvs/charts/resources/views/c3/multi/line.blade.php @@ -0,0 +1,31 @@ +@include('charts::_partials.container.div') + diff --git a/Laravel/vendor/consoletvs/charts/resources/views/c3/pie.blade.php b/Laravel/vendor/consoletvs/charts/resources/views/c3/pie.blade.php new file mode 100644 index 0000000..36851f9 --- /dev/null +++ b/Laravel/vendor/consoletvs/charts/resources/views/c3/pie.blade.php @@ -0,0 +1,32 @@ +@include('charts::_partials.container.div') + diff --git a/Laravel/vendor/consoletvs/charts/resources/views/canvas-gauges/gauge.blade.php b/Laravel/vendor/consoletvs/charts/resources/views/canvas-gauges/gauge.blade.php new file mode 100644 index 0000000..784316d --- /dev/null +++ b/Laravel/vendor/consoletvs/charts/resources/views/canvas-gauges/gauge.blade.php @@ -0,0 +1,99 @@ +@if(!$model->customId) + @include('charts::_partials.container.canvas') +@endif + + diff --git a/Laravel/vendor/consoletvs/charts/resources/views/canvas-gauges/realtime/gauge.blade.php b/Laravel/vendor/consoletvs/charts/resources/views/canvas-gauges/realtime/gauge.blade.php new file mode 100644 index 0000000..fed82fd --- /dev/null +++ b/Laravel/vendor/consoletvs/charts/resources/views/canvas-gauges/realtime/gauge.blade.php @@ -0,0 +1,105 @@ +@if(!$model->customId) + @include('charts::_partials.container.canvas') +@endif + + diff --git a/Laravel/vendor/consoletvs/charts/resources/views/canvas-gauges/realtime/temp.blade.php b/Laravel/vendor/consoletvs/charts/resources/views/canvas-gauges/realtime/temp.blade.php new file mode 100644 index 0000000..77630a3 --- /dev/null +++ b/Laravel/vendor/consoletvs/charts/resources/views/canvas-gauges/realtime/temp.blade.php @@ -0,0 +1,108 @@ +@if(!$model->customId) + @include('charts::_partials.container.canvas') +@endif + + diff --git a/Laravel/vendor/consoletvs/charts/resources/views/canvas-gauges/temp.blade.php b/Laravel/vendor/consoletvs/charts/resources/views/canvas-gauges/temp.blade.php new file mode 100644 index 0000000..01fedb1 --- /dev/null +++ b/Laravel/vendor/consoletvs/charts/resources/views/canvas-gauges/temp.blade.php @@ -0,0 +1,102 @@ +@if(!$model->customId) + @include('charts::_partials.container.canvas') +@endif + + diff --git a/Laravel/vendor/consoletvs/charts/resources/views/chartist/area.blade.php b/Laravel/vendor/consoletvs/charts/resources/views/chartist/area.blade.php new file mode 100644 index 0000000..1aef197 --- /dev/null +++ b/Laravel/vendor/consoletvs/charts/resources/views/chartist/area.blade.php @@ -0,0 +1,25 @@ +@include('charts::_partials.container.chartist') + + diff --git a/Laravel/vendor/consoletvs/charts/resources/views/chartist/bar.blade.php b/Laravel/vendor/consoletvs/charts/resources/views/chartist/bar.blade.php new file mode 100644 index 0000000..c3d5969 --- /dev/null +++ b/Laravel/vendor/consoletvs/charts/resources/views/chartist/bar.blade.php @@ -0,0 +1,22 @@ +@include('charts::_partials.container.chartist') + + diff --git a/Laravel/vendor/consoletvs/charts/resources/views/chartist/donut.blade.php b/Laravel/vendor/consoletvs/charts/resources/views/chartist/donut.blade.php new file mode 100644 index 0000000..58137c5 --- /dev/null +++ b/Laravel/vendor/consoletvs/charts/resources/views/chartist/donut.blade.php @@ -0,0 +1,26 @@ +@include('charts::_partials.container.chartist') + + diff --git a/Laravel/vendor/consoletvs/charts/resources/views/chartist/line.blade.php b/Laravel/vendor/consoletvs/charts/resources/views/chartist/line.blade.php new file mode 100644 index 0000000..75233e6 --- /dev/null +++ b/Laravel/vendor/consoletvs/charts/resources/views/chartist/line.blade.php @@ -0,0 +1,22 @@ +@include('charts::_partials.container.chartist') + + diff --git a/Laravel/vendor/consoletvs/charts/resources/views/chartist/multi/area.blade.php b/Laravel/vendor/consoletvs/charts/resources/views/chartist/multi/area.blade.php new file mode 100644 index 0000000..2580ec5 --- /dev/null +++ b/Laravel/vendor/consoletvs/charts/resources/views/chartist/multi/area.blade.php @@ -0,0 +1,26 @@ +@include('charts::_partials.container.chartist') + + diff --git a/Laravel/vendor/consoletvs/charts/resources/views/chartist/multi/bar.blade.php b/Laravel/vendor/consoletvs/charts/resources/views/chartist/multi/bar.blade.php new file mode 100644 index 0000000..e332194 --- /dev/null +++ b/Laravel/vendor/consoletvs/charts/resources/views/chartist/multi/bar.blade.php @@ -0,0 +1,24 @@ +@include('charts::_partials.container.chartist') + + diff --git a/Laravel/vendor/consoletvs/charts/resources/views/chartist/multi/line.blade.php b/Laravel/vendor/consoletvs/charts/resources/views/chartist/multi/line.blade.php new file mode 100644 index 0000000..0b21b16 --- /dev/null +++ b/Laravel/vendor/consoletvs/charts/resources/views/chartist/multi/line.blade.php @@ -0,0 +1,24 @@ +@include('charts::_partials.container.chartist') + + diff --git a/Laravel/vendor/consoletvs/charts/resources/views/chartist/pie.blade.php b/Laravel/vendor/consoletvs/charts/resources/views/chartist/pie.blade.php new file mode 100644 index 0000000..17fc188 --- /dev/null +++ b/Laravel/vendor/consoletvs/charts/resources/views/chartist/pie.blade.php @@ -0,0 +1,24 @@ +@include('charts::_partials.container.chartist') + + diff --git a/Laravel/vendor/consoletvs/charts/resources/views/chartjs/area.blade.php b/Laravel/vendor/consoletvs/charts/resources/views/chartjs/area.blade.php new file mode 100644 index 0000000..11bd229 --- /dev/null +++ b/Laravel/vendor/consoletvs/charts/resources/views/chartjs/area.blade.php @@ -0,0 +1,49 @@ +@if(!$model->customId) + @include('charts::_partials.container.canvas2') +@endif + +@include('charts::_partials.helpers.hex2rgb') + + diff --git a/Laravel/vendor/consoletvs/charts/resources/views/chartjs/bar.blade.php b/Laravel/vendor/consoletvs/charts/resources/views/chartjs/bar.blade.php new file mode 100644 index 0000000..230ee22 --- /dev/null +++ b/Laravel/vendor/consoletvs/charts/resources/views/chartjs/bar.blade.php @@ -0,0 +1,57 @@ +@if(!$model->customId) + @include('charts::_partials.container.canvas2') +@endif + + diff --git a/Laravel/vendor/consoletvs/charts/resources/views/chartjs/donut.blade.php b/Laravel/vendor/consoletvs/charts/resources/views/chartjs/donut.blade.php new file mode 100644 index 0000000..3e01b01 --- /dev/null +++ b/Laravel/vendor/consoletvs/charts/resources/views/chartjs/donut.blade.php @@ -0,0 +1,47 @@ +@if(!$model->customId) + @include('charts::_partials.container.canvas2') +@endif + + diff --git a/Laravel/vendor/consoletvs/charts/resources/views/chartjs/line.blade.php b/Laravel/vendor/consoletvs/charts/resources/views/chartjs/line.blade.php new file mode 100644 index 0000000..fdbf1af --- /dev/null +++ b/Laravel/vendor/consoletvs/charts/resources/views/chartjs/line.blade.php @@ -0,0 +1,46 @@ +@if(!$model->customId) + @include('charts::_partials.container.canvas2') +@endif + + diff --git a/Laravel/vendor/consoletvs/charts/resources/views/chartjs/multi/area.blade.php b/Laravel/vendor/consoletvs/charts/resources/views/chartjs/multi/area.blade.php new file mode 100644 index 0000000..342665f --- /dev/null +++ b/Laravel/vendor/consoletvs/charts/resources/views/chartjs/multi/area.blade.php @@ -0,0 +1,56 @@ +@if(!$model->customId) + @include('charts::_partials.container.canvas2') +@endif + +@include('charts::_partials.helpers.hex2rgb') + + diff --git a/Laravel/vendor/consoletvs/charts/resources/views/chartjs/multi/bar.blade.php b/Laravel/vendor/consoletvs/charts/resources/views/chartjs/multi/bar.blade.php new file mode 100644 index 0000000..db5fcf3 --- /dev/null +++ b/Laravel/vendor/consoletvs/charts/resources/views/chartjs/multi/bar.blade.php @@ -0,0 +1,58 @@ +@if(!$model->customId) + @include('charts::_partials.container.canvas2') +@endif + + diff --git a/Laravel/vendor/consoletvs/charts/resources/views/chartjs/multi/line.blade.php b/Laravel/vendor/consoletvs/charts/resources/views/chartjs/multi/line.blade.php new file mode 100644 index 0000000..76f6670 --- /dev/null +++ b/Laravel/vendor/consoletvs/charts/resources/views/chartjs/multi/line.blade.php @@ -0,0 +1,51 @@ +@if(!$model->customId) + @include('charts::_partials.container.canvas2') +@endif + + diff --git a/Laravel/vendor/consoletvs/charts/resources/views/chartjs/pie.blade.php b/Laravel/vendor/consoletvs/charts/resources/views/chartjs/pie.blade.php new file mode 100644 index 0000000..33e827c --- /dev/null +++ b/Laravel/vendor/consoletvs/charts/resources/views/chartjs/pie.blade.php @@ -0,0 +1,47 @@ +@if(!$model->customId) + @include('charts::_partials.container.canvas2') +@endif + + diff --git a/Laravel/vendor/consoletvs/charts/resources/views/echarts/area.blade.php b/Laravel/vendor/consoletvs/charts/resources/views/echarts/area.blade.php new file mode 100644 index 0000000..4d0493d --- /dev/null +++ b/Laravel/vendor/consoletvs/charts/resources/views/echarts/area.blade.php @@ -0,0 +1,59 @@ +@if(!$model->customId) + @include('charts::_partials.container.div') +@endif + diff --git a/Laravel/vendor/consoletvs/charts/resources/views/echarts/bar.blade.php b/Laravel/vendor/consoletvs/charts/resources/views/echarts/bar.blade.php new file mode 100644 index 0000000..3cd182f --- /dev/null +++ b/Laravel/vendor/consoletvs/charts/resources/views/echarts/bar.blade.php @@ -0,0 +1,54 @@ +@if(!$model->customId) + @include('charts::_partials.container.div') +@endif + diff --git a/Laravel/vendor/consoletvs/charts/resources/views/echarts/donut.blade.php b/Laravel/vendor/consoletvs/charts/resources/views/echarts/donut.blade.php new file mode 100644 index 0000000..0ad0102 --- /dev/null +++ b/Laravel/vendor/consoletvs/charts/resources/views/echarts/donut.blade.php @@ -0,0 +1,58 @@ +@if(!$model->customId) + @include('charts::_partials.container.div') +@endif + diff --git a/Laravel/vendor/consoletvs/charts/resources/views/echarts/gauge.blade.php b/Laravel/vendor/consoletvs/charts/resources/views/echarts/gauge.blade.php new file mode 100644 index 0000000..ef11099 --- /dev/null +++ b/Laravel/vendor/consoletvs/charts/resources/views/echarts/gauge.blade.php @@ -0,0 +1,60 @@ +@if(!$model->customId) + @include('charts::_partials.container.div') +@endif + diff --git a/Laravel/vendor/consoletvs/charts/resources/views/echarts/line.blade.php b/Laravel/vendor/consoletvs/charts/resources/views/echarts/line.blade.php new file mode 100644 index 0000000..6719e3a --- /dev/null +++ b/Laravel/vendor/consoletvs/charts/resources/views/echarts/line.blade.php @@ -0,0 +1,54 @@ +@if(!$model->customId) + @include('charts::_partials.container.div') +@endif + diff --git a/Laravel/vendor/consoletvs/charts/resources/views/echarts/multi/area.blade.php b/Laravel/vendor/consoletvs/charts/resources/views/echarts/multi/area.blade.php new file mode 100644 index 0000000..f7f322b --- /dev/null +++ b/Laravel/vendor/consoletvs/charts/resources/views/echarts/multi/area.blade.php @@ -0,0 +1,72 @@ +@if(!$model->customId) + @include('charts::_partials.container.div') +@endif + diff --git a/Laravel/vendor/consoletvs/charts/resources/views/echarts/multi/bar.blade.php b/Laravel/vendor/consoletvs/charts/resources/views/echarts/multi/bar.blade.php new file mode 100644 index 0000000..f905332 --- /dev/null +++ b/Laravel/vendor/consoletvs/charts/resources/views/echarts/multi/bar.blade.php @@ -0,0 +1,67 @@ +@if(!$model->customId) + @include('charts::_partials.container.div') +@endif + diff --git a/Laravel/vendor/consoletvs/charts/resources/views/echarts/multi/line.blade.php b/Laravel/vendor/consoletvs/charts/resources/views/echarts/multi/line.blade.php new file mode 100644 index 0000000..9613a5f --- /dev/null +++ b/Laravel/vendor/consoletvs/charts/resources/views/echarts/multi/line.blade.php @@ -0,0 +1,67 @@ +@if(!$model->customId) + @include('charts::_partials.container.div') +@endif + diff --git a/Laravel/vendor/consoletvs/charts/resources/views/echarts/pie.blade.php b/Laravel/vendor/consoletvs/charts/resources/views/echarts/pie.blade.php new file mode 100644 index 0000000..8053433 --- /dev/null +++ b/Laravel/vendor/consoletvs/charts/resources/views/echarts/pie.blade.php @@ -0,0 +1,56 @@ +@if(!$model->customId) + @include('charts::_partials.container.div') +@endif + diff --git a/Laravel/vendor/consoletvs/charts/resources/views/fusioncharts/area.blade.php b/Laravel/vendor/consoletvs/charts/resources/views/fusioncharts/area.blade.php new file mode 100644 index 0000000..0aeb167 --- /dev/null +++ b/Laravel/vendor/consoletvs/charts/resources/views/fusioncharts/area.blade.php @@ -0,0 +1,48 @@ + + +@include('charts::_partials.container.div') diff --git a/Laravel/vendor/consoletvs/charts/resources/views/fusioncharts/bar.blade.php b/Laravel/vendor/consoletvs/charts/resources/views/fusioncharts/bar.blade.php new file mode 100644 index 0000000..3222ef0 --- /dev/null +++ b/Laravel/vendor/consoletvs/charts/resources/views/fusioncharts/bar.blade.php @@ -0,0 +1,48 @@ + + +@include('charts::_partials.container.div') diff --git a/Laravel/vendor/consoletvs/charts/resources/views/fusioncharts/donut.blade.php b/Laravel/vendor/consoletvs/charts/resources/views/fusioncharts/donut.blade.php new file mode 100644 index 0000000..822bb9c --- /dev/null +++ b/Laravel/vendor/consoletvs/charts/resources/views/fusioncharts/donut.blade.php @@ -0,0 +1,59 @@ + + +@include('charts::_partials.container.div') diff --git a/Laravel/vendor/consoletvs/charts/resources/views/fusioncharts/line.blade.php b/Laravel/vendor/consoletvs/charts/resources/views/fusioncharts/line.blade.php new file mode 100644 index 0000000..46c670e --- /dev/null +++ b/Laravel/vendor/consoletvs/charts/resources/views/fusioncharts/line.blade.php @@ -0,0 +1,47 @@ + + +@include('charts::_partials.container.div') diff --git a/Laravel/vendor/consoletvs/charts/resources/views/fusioncharts/multi/area.blade.php b/Laravel/vendor/consoletvs/charts/resources/views/fusioncharts/multi/area.blade.php new file mode 100644 index 0000000..51bcbaa --- /dev/null +++ b/Laravel/vendor/consoletvs/charts/resources/views/fusioncharts/multi/area.blade.php @@ -0,0 +1,63 @@ + + +@include('charts::_partials.container.div') diff --git a/Laravel/vendor/consoletvs/charts/resources/views/fusioncharts/multi/bar.blade.php b/Laravel/vendor/consoletvs/charts/resources/views/fusioncharts/multi/bar.blade.php new file mode 100644 index 0000000..6ca331e --- /dev/null +++ b/Laravel/vendor/consoletvs/charts/resources/views/fusioncharts/multi/bar.blade.php @@ -0,0 +1,62 @@ + + +@include('charts::_partials.container.div') diff --git a/Laravel/vendor/consoletvs/charts/resources/views/fusioncharts/multi/line.blade.php b/Laravel/vendor/consoletvs/charts/resources/views/fusioncharts/multi/line.blade.php new file mode 100644 index 0000000..00ab70d --- /dev/null +++ b/Laravel/vendor/consoletvs/charts/resources/views/fusioncharts/multi/line.blade.php @@ -0,0 +1,62 @@ + + +@include('charts::_partials.container.div') diff --git a/Laravel/vendor/consoletvs/charts/resources/views/fusioncharts/pie.blade.php b/Laravel/vendor/consoletvs/charts/resources/views/fusioncharts/pie.blade.php new file mode 100644 index 0000000..533773a --- /dev/null +++ b/Laravel/vendor/consoletvs/charts/resources/views/fusioncharts/pie.blade.php @@ -0,0 +1,59 @@ + + +@include('charts::_partials.container.div') diff --git a/Laravel/vendor/consoletvs/charts/resources/views/google/area.blade.php b/Laravel/vendor/consoletvs/charts/resources/views/google/area.blade.php new file mode 100644 index 0000000..76ea915 --- /dev/null +++ b/Laravel/vendor/consoletvs/charts/resources/views/google/area.blade.php @@ -0,0 +1,28 @@ + + +@if(!$model->customId) + @include('charts::_partials.container.div') +@endif diff --git a/Laravel/vendor/consoletvs/charts/resources/views/google/bar.blade.php b/Laravel/vendor/consoletvs/charts/resources/views/google/bar.blade.php new file mode 100644 index 0000000..1acdae3 --- /dev/null +++ b/Laravel/vendor/consoletvs/charts/resources/views/google/bar.blade.php @@ -0,0 +1,43 @@ + + +@if(!$model->customId) + @include('charts::_partials.container.div') +@endif diff --git a/Laravel/vendor/consoletvs/charts/resources/views/google/colors.blade.php b/Laravel/vendor/consoletvs/charts/resources/views/google/colors.blade.php new file mode 100644 index 0000000..c89fd42 --- /dev/null +++ b/Laravel/vendor/consoletvs/charts/resources/views/google/colors.blade.php @@ -0,0 +1,10 @@ +@if($model->colors) +colors:[ + @foreach($model->colors as $color) + "{{ $color }}", + @endforeach +], +@endif +@if($model->background_color) +backgroundColor: "{{ $model->background_color }}", +@endif diff --git a/Laravel/vendor/consoletvs/charts/resources/views/google/donut.blade.php b/Laravel/vendor/consoletvs/charts/resources/views/google/donut.blade.php new file mode 100644 index 0000000..5a102f5 --- /dev/null +++ b/Laravel/vendor/consoletvs/charts/resources/views/google/donut.blade.php @@ -0,0 +1,27 @@ + + +@if(!$model->customId) + @include('charts::_partials.container.div') +@endif diff --git a/Laravel/vendor/consoletvs/charts/resources/views/google/gauge.blade.php b/Laravel/vendor/consoletvs/charts/resources/views/google/gauge.blade.php new file mode 100644 index 0000000..8c5c8c4 --- /dev/null +++ b/Laravel/vendor/consoletvs/charts/resources/views/google/gauge.blade.php @@ -0,0 +1,74 @@ + + +@if(!$model->customId) + @include('charts::_partials/container.div-titled') +@endif diff --git a/Laravel/vendor/consoletvs/charts/resources/views/google/geo.blade.php b/Laravel/vendor/consoletvs/charts/resources/views/google/geo.blade.php new file mode 100644 index 0000000..8b911a7 --- /dev/null +++ b/Laravel/vendor/consoletvs/charts/resources/views/google/geo.blade.php @@ -0,0 +1,34 @@ + + +@if(!$model->customId) + @include('charts::_partials/container.div-titled') +@endif diff --git a/Laravel/vendor/consoletvs/charts/resources/views/google/line.blade.php b/Laravel/vendor/consoletvs/charts/resources/views/google/line.blade.php new file mode 100644 index 0000000..7d889d5 --- /dev/null +++ b/Laravel/vendor/consoletvs/charts/resources/views/google/line.blade.php @@ -0,0 +1,29 @@ + + +@if(!$model->customId) + @include('charts::_partials.container.div') +@endif diff --git a/Laravel/vendor/consoletvs/charts/resources/views/google/multi/area.blade.php b/Laravel/vendor/consoletvs/charts/resources/views/google/multi/area.blade.php new file mode 100644 index 0000000..96d0b92 --- /dev/null +++ b/Laravel/vendor/consoletvs/charts/resources/views/google/multi/area.blade.php @@ -0,0 +1,38 @@ + + +@if(!$model->customId) + @include('charts::_partials.container.div') +@endif diff --git a/Laravel/vendor/consoletvs/charts/resources/views/google/multi/bar.blade.php b/Laravel/vendor/consoletvs/charts/resources/views/google/multi/bar.blade.php new file mode 100644 index 0000000..79541ea --- /dev/null +++ b/Laravel/vendor/consoletvs/charts/resources/views/google/multi/bar.blade.php @@ -0,0 +1,38 @@ + + +@if(!$model->customId) + @include('charts::_partials.container.div') +@endif diff --git a/Laravel/vendor/consoletvs/charts/resources/views/google/multi/line.blade.php b/Laravel/vendor/consoletvs/charts/resources/views/google/multi/line.blade.php new file mode 100644 index 0000000..cc3225b --- /dev/null +++ b/Laravel/vendor/consoletvs/charts/resources/views/google/multi/line.blade.php @@ -0,0 +1,38 @@ + + +@if(!$model->customId) + @include('charts::_partials.container.div') +@endif diff --git a/Laravel/vendor/consoletvs/charts/resources/views/google/pie.blade.php b/Laravel/vendor/consoletvs/charts/resources/views/google/pie.blade.php new file mode 100644 index 0000000..6b6de24 --- /dev/null +++ b/Laravel/vendor/consoletvs/charts/resources/views/google/pie.blade.php @@ -0,0 +1,26 @@ + + +@if(!$model->customId) + @include('charts::_partials.container.div') +@endif diff --git a/Laravel/vendor/consoletvs/charts/resources/views/google/realtime/gauge.blade.php b/Laravel/vendor/consoletvs/charts/resources/views/google/realtime/gauge.blade.php new file mode 100644 index 0000000..c043695 --- /dev/null +++ b/Laravel/vendor/consoletvs/charts/resources/views/google/realtime/gauge.blade.php @@ -0,0 +1,84 @@ + + +@if(!$model->customId) + @include('charts::_partials/container.div-titled') +@endif diff --git a/Laravel/vendor/consoletvs/charts/resources/views/google/scatter.blade.php b/Laravel/vendor/consoletvs/charts/resources/views/google/scatter.blade.php new file mode 100644 index 0000000..56e5dd7 --- /dev/null +++ b/Laravel/vendor/consoletvs/charts/resources/views/google/scatter.blade.php @@ -0,0 +1,33 @@ + + +@if(!$model->customId) + @include('charts::_partials.container.div') +@endif diff --git a/Laravel/vendor/consoletvs/charts/resources/views/google/titles.blade.php b/Laravel/vendor/consoletvs/charts/resources/views/google/titles.blade.php new file mode 100644 index 0000000..fa6d878 --- /dev/null +++ b/Laravel/vendor/consoletvs/charts/resources/views/google/titles.blade.php @@ -0,0 +1,10 @@ +@if($model->title) +title: "{!! $model->title !!}", +@endif +@if($model->x_axis_title) +hAxis: {title: "{{ $model->x_axis_title }}"}, +@endif +@if($model->y_axis_title) +vAxis: {title: "{{ $model->y_axis_title }}"}, +@endif + diff --git a/Laravel/vendor/consoletvs/charts/resources/views/highcharts/area.blade.php b/Laravel/vendor/consoletvs/charts/resources/views/highcharts/area.blade.php new file mode 100644 index 0000000..441dad1 --- /dev/null +++ b/Laravel/vendor/consoletvs/charts/resources/views/highcharts/area.blade.php @@ -0,0 +1,67 @@ + + +@if(!$model->customId) + @include('charts::_partials.container.div') +@endif diff --git a/Laravel/vendor/consoletvs/charts/resources/views/highcharts/bar.blade.php b/Laravel/vendor/consoletvs/charts/resources/views/highcharts/bar.blade.php new file mode 100644 index 0000000..e5715e1 --- /dev/null +++ b/Laravel/vendor/consoletvs/charts/resources/views/highcharts/bar.blade.php @@ -0,0 +1,66 @@ + + +@if(!$model->customId) + @include('charts::_partials.container.div') +@endif diff --git a/Laravel/vendor/consoletvs/charts/resources/views/highcharts/donut.blade.php b/Laravel/vendor/consoletvs/charts/resources/views/highcharts/donut.blade.php new file mode 100644 index 0000000..b28f998 --- /dev/null +++ b/Laravel/vendor/consoletvs/charts/resources/views/highcharts/donut.blade.php @@ -0,0 +1,66 @@ + + +@if(!$model->customId) + @include('charts::_partials.container.div') +@endif diff --git a/Laravel/vendor/consoletvs/charts/resources/views/highcharts/geo.blade.php b/Laravel/vendor/consoletvs/charts/resources/views/highcharts/geo.blade.php new file mode 100644 index 0000000..477a477 --- /dev/null +++ b/Laravel/vendor/consoletvs/charts/resources/views/highcharts/geo.blade.php @@ -0,0 +1,71 @@ +@php + // Get the max / min index + $max = 0; + $min = $model->values ? $model->values[0] : 0; +@endphp + +@foreach($model->values as $dta) + @if($dta > $max) + @php($max = $dta) + @elseif($dta < $min) + @php($min = $dta) + @endif +@endforeach + + + +@if(!$model->customId) + @include('charts::_partials.container.div') +@endif diff --git a/Laravel/vendor/consoletvs/charts/resources/views/highcharts/line.blade.php b/Laravel/vendor/consoletvs/charts/resources/views/highcharts/line.blade.php new file mode 100644 index 0000000..d1621bb --- /dev/null +++ b/Laravel/vendor/consoletvs/charts/resources/views/highcharts/line.blade.php @@ -0,0 +1,66 @@ + + +@if(!$model->customId) + @include('charts::_partials.container.div') +@endif diff --git a/Laravel/vendor/consoletvs/charts/resources/views/highcharts/multi/area.blade.php b/Laravel/vendor/consoletvs/charts/resources/views/highcharts/multi/area.blade.php new file mode 100644 index 0000000..82535ae --- /dev/null +++ b/Laravel/vendor/consoletvs/charts/resources/views/highcharts/multi/area.blade.php @@ -0,0 +1,58 @@ + + +@if(!$model->customId) + @include('charts::_partials.container.div') +@endif diff --git a/Laravel/vendor/consoletvs/charts/resources/views/highcharts/multi/areaspline.blade.php b/Laravel/vendor/consoletvs/charts/resources/views/highcharts/multi/areaspline.blade.php new file mode 100644 index 0000000..7e87279 --- /dev/null +++ b/Laravel/vendor/consoletvs/charts/resources/views/highcharts/multi/areaspline.blade.php @@ -0,0 +1,67 @@ + + +@if(!$model->customId) + @include('charts::_partials.container.div') +@endif diff --git a/Laravel/vendor/consoletvs/charts/resources/views/highcharts/multi/bar.blade.php b/Laravel/vendor/consoletvs/charts/resources/views/highcharts/multi/bar.blade.php new file mode 100644 index 0000000..58fb2cc --- /dev/null +++ b/Laravel/vendor/consoletvs/charts/resources/views/highcharts/multi/bar.blade.php @@ -0,0 +1,66 @@ + + +@if(!$model->customId) + @include('charts::_partials.container.div') +@endif diff --git a/Laravel/vendor/consoletvs/charts/resources/views/highcharts/multi/line.blade.php b/Laravel/vendor/consoletvs/charts/resources/views/highcharts/multi/line.blade.php new file mode 100644 index 0000000..86ecfed --- /dev/null +++ b/Laravel/vendor/consoletvs/charts/resources/views/highcharts/multi/line.blade.php @@ -0,0 +1,57 @@ + + +@if(!$model->customId) + @include('charts::_partials.container.div') +@endif diff --git a/Laravel/vendor/consoletvs/charts/resources/views/highcharts/pie.blade.php b/Laravel/vendor/consoletvs/charts/resources/views/highcharts/pie.blade.php new file mode 100644 index 0000000..e40c8af --- /dev/null +++ b/Laravel/vendor/consoletvs/charts/resources/views/highcharts/pie.blade.php @@ -0,0 +1,65 @@ + + +@if(!$model->customId) + @include('charts::_partials.container.div') +@endif diff --git a/Laravel/vendor/consoletvs/charts/resources/views/highcharts/realtime/area.blade.php b/Laravel/vendor/consoletvs/charts/resources/views/highcharts/realtime/area.blade.php new file mode 100644 index 0000000..1cdcaa6 --- /dev/null +++ b/Laravel/vendor/consoletvs/charts/resources/views/highcharts/realtime/area.blade.php @@ -0,0 +1,80 @@ + + +@if(!$model->customId) + @include('charts::_partials.container.div') +@endif diff --git a/Laravel/vendor/consoletvs/charts/resources/views/highcharts/realtime/bar.blade.php b/Laravel/vendor/consoletvs/charts/resources/views/highcharts/realtime/bar.blade.php new file mode 100644 index 0000000..b4782eb --- /dev/null +++ b/Laravel/vendor/consoletvs/charts/resources/views/highcharts/realtime/bar.blade.php @@ -0,0 +1,84 @@ + + +@if(!$model->customId) + @include('charts::_partials.container.div') +@endif diff --git a/Laravel/vendor/consoletvs/charts/resources/views/highcharts/realtime/line.blade.php b/Laravel/vendor/consoletvs/charts/resources/views/highcharts/realtime/line.blade.php new file mode 100644 index 0000000..b173351 --- /dev/null +++ b/Laravel/vendor/consoletvs/charts/resources/views/highcharts/realtime/line.blade.php @@ -0,0 +1,80 @@ + + +@if(!$model->customId) + @include('charts::_partials.container.div') +@endif diff --git a/Laravel/vendor/consoletvs/charts/resources/views/justgage/gauge.blade.php b/Laravel/vendor/consoletvs/charts/resources/views/justgage/gauge.blade.php new file mode 100644 index 0000000..e02a89a --- /dev/null +++ b/Laravel/vendor/consoletvs/charts/resources/views/justgage/gauge.blade.php @@ -0,0 +1,33 @@ +@include('charts::_partials.container.div') + + diff --git a/Laravel/vendor/consoletvs/charts/resources/views/justgage/percentage.blade.php b/Laravel/vendor/consoletvs/charts/resources/views/justgage/percentage.blade.php new file mode 100644 index 0000000..958d8b9 --- /dev/null +++ b/Laravel/vendor/consoletvs/charts/resources/views/justgage/percentage.blade.php @@ -0,0 +1,37 @@ +@include('charts::_partials.container.div') + + diff --git a/Laravel/vendor/consoletvs/charts/resources/views/justgage/realtime/gauge.blade.php b/Laravel/vendor/consoletvs/charts/resources/views/justgage/realtime/gauge.blade.php new file mode 100644 index 0000000..c15a404 --- /dev/null +++ b/Laravel/vendor/consoletvs/charts/resources/views/justgage/realtime/gauge.blade.php @@ -0,0 +1,39 @@ +@include('charts::_partials.container.div') + + diff --git a/Laravel/vendor/consoletvs/charts/resources/views/justgage/realtime/percentage.blade.php b/Laravel/vendor/consoletvs/charts/resources/views/justgage/realtime/percentage.blade.php new file mode 100644 index 0000000..caf64e3 --- /dev/null +++ b/Laravel/vendor/consoletvs/charts/resources/views/justgage/realtime/percentage.blade.php @@ -0,0 +1,43 @@ +@include('charts::_partials.container.div') + + diff --git a/Laravel/vendor/consoletvs/charts/resources/views/material/bar.blade.php b/Laravel/vendor/consoletvs/charts/resources/views/material/bar.blade.php new file mode 100644 index 0000000..b2e5dca --- /dev/null +++ b/Laravel/vendor/consoletvs/charts/resources/views/material/bar.blade.php @@ -0,0 +1,39 @@ + + +@include('charts::_partials.container.div') diff --git a/Laravel/vendor/consoletvs/charts/resources/views/material/line.blade.php b/Laravel/vendor/consoletvs/charts/resources/views/material/line.blade.php new file mode 100644 index 0000000..95454fe --- /dev/null +++ b/Laravel/vendor/consoletvs/charts/resources/views/material/line.blade.php @@ -0,0 +1,30 @@ + + +@include('charts::_partials.container.div') diff --git a/Laravel/vendor/consoletvs/charts/resources/views/material/multi/bar.blade.php b/Laravel/vendor/consoletvs/charts/resources/views/material/multi/bar.blade.php new file mode 100644 index 0000000..9907017 --- /dev/null +++ b/Laravel/vendor/consoletvs/charts/resources/views/material/multi/bar.blade.php @@ -0,0 +1,46 @@ + + +@include('charts::_partials.container.div') diff --git a/Laravel/vendor/consoletvs/charts/resources/views/material/multi/line.blade.php b/Laravel/vendor/consoletvs/charts/resources/views/material/multi/line.blade.php new file mode 100644 index 0000000..32ab970 --- /dev/null +++ b/Laravel/vendor/consoletvs/charts/resources/views/material/multi/line.blade.php @@ -0,0 +1,46 @@ + + +@include('charts::_partials.container.div') diff --git a/Laravel/vendor/consoletvs/charts/resources/views/minimalist/_data/multi.blade.php b/Laravel/vendor/consoletvs/charts/resources/views/minimalist/_data/multi.blade.php new file mode 100644 index 0000000..f925150 --- /dev/null +++ b/Laravel/vendor/consoletvs/charts/resources/views/minimalist/_data/multi.blade.php @@ -0,0 +1,10 @@ +@for($i = 0; $i < count($model->datasets); $i++) + var s{{ $i }} = [ + @for($k = 0; $k < count($model->datasets[$i]['values']); $k++) + { + x: "{{ $model->labels[$k] }}", + y: {{ $model->datasets[$i]['values'][$k] }} + }, + @endfor + ]; +@endfor diff --git a/Laravel/vendor/consoletvs/charts/resources/views/minimalist/_data/one-indcolor.blade.php b/Laravel/vendor/consoletvs/charts/resources/views/minimalist/_data/one-indcolor.blade.php new file mode 100644 index 0000000..791b7ec --- /dev/null +++ b/Laravel/vendor/consoletvs/charts/resources/views/minimalist/_data/one-indcolor.blade.php @@ -0,0 +1,11 @@ +var data = [ + @for($i = 0; $i < count($model->values); $i++) + { + x: "{!! $model->labels[$i] !!}", + y: {{ $model->values[$i] }}, + @if($model->colors) + color: "{{ $model->colors[$i] }}" + @endif + }, + @endfor +]; diff --git a/Laravel/vendor/consoletvs/charts/resources/views/minimalist/_data/one.blade.php b/Laravel/vendor/consoletvs/charts/resources/views/minimalist/_data/one.blade.php new file mode 100644 index 0000000..5fdcf63 --- /dev/null +++ b/Laravel/vendor/consoletvs/charts/resources/views/minimalist/_data/one.blade.php @@ -0,0 +1,8 @@ +var data = [ + @for($i = 0; $i < count($model->values); $i++) + { + x: "{!! $model->labels[$i] !!}", + y: {{ $model->values[$i] }}, + }, + @endfor +]; diff --git a/Laravel/vendor/consoletvs/charts/resources/views/minimalist/area.blade.php b/Laravel/vendor/consoletvs/charts/resources/views/minimalist/area.blade.php new file mode 100644 index 0000000..5e6d3f3 --- /dev/null +++ b/Laravel/vendor/consoletvs/charts/resources/views/minimalist/area.blade.php @@ -0,0 +1,24 @@ +@include('charts::_partials.container.svg') + + diff --git a/Laravel/vendor/consoletvs/charts/resources/views/minimalist/bar.blade.php b/Laravel/vendor/consoletvs/charts/resources/views/minimalist/bar.blade.php new file mode 100644 index 0000000..1a9cff1 --- /dev/null +++ b/Laravel/vendor/consoletvs/charts/resources/views/minimalist/bar.blade.php @@ -0,0 +1,23 @@ +@include('charts::_partials.container.svg') + + diff --git a/Laravel/vendor/consoletvs/charts/resources/views/minimalist/donut.blade.php b/Laravel/vendor/consoletvs/charts/resources/views/minimalist/donut.blade.php new file mode 100644 index 0000000..2f00814 --- /dev/null +++ b/Laravel/vendor/consoletvs/charts/resources/views/minimalist/donut.blade.php @@ -0,0 +1,27 @@ +@include('charts::_partials.container.svg') + + diff --git a/Laravel/vendor/consoletvs/charts/resources/views/minimalist/line.blade.php b/Laravel/vendor/consoletvs/charts/resources/views/minimalist/line.blade.php new file mode 100644 index 0000000..b641acd --- /dev/null +++ b/Laravel/vendor/consoletvs/charts/resources/views/minimalist/line.blade.php @@ -0,0 +1,24 @@ +@include('charts::_partials.container.svg') + + + diff --git a/Laravel/vendor/consoletvs/charts/resources/views/minimalist/multi/area.blade.php b/Laravel/vendor/consoletvs/charts/resources/views/minimalist/multi/area.blade.php new file mode 100644 index 0000000..6ed88c6 --- /dev/null +++ b/Laravel/vendor/consoletvs/charts/resources/views/minimalist/multi/area.blade.php @@ -0,0 +1,27 @@ +@include('charts::_partials.container.svg') + + + diff --git a/Laravel/vendor/consoletvs/charts/resources/views/minimalist/multi/bar.blade.php b/Laravel/vendor/consoletvs/charts/resources/views/minimalist/multi/bar.blade.php new file mode 100644 index 0000000..0a9b03e --- /dev/null +++ b/Laravel/vendor/consoletvs/charts/resources/views/minimalist/multi/bar.blade.php @@ -0,0 +1,26 @@ +@include('charts::_partials.container.svg') + + diff --git a/Laravel/vendor/consoletvs/charts/resources/views/minimalist/multi/line.blade.php b/Laravel/vendor/consoletvs/charts/resources/views/minimalist/multi/line.blade.php new file mode 100644 index 0000000..427949f --- /dev/null +++ b/Laravel/vendor/consoletvs/charts/resources/views/minimalist/multi/line.blade.php @@ -0,0 +1,26 @@ +@include('charts::_partials.container.svg') + + + diff --git a/Laravel/vendor/consoletvs/charts/resources/views/minimalist/pie.blade.php b/Laravel/vendor/consoletvs/charts/resources/views/minimalist/pie.blade.php new file mode 100644 index 0000000..e426bf0 --- /dev/null +++ b/Laravel/vendor/consoletvs/charts/resources/views/minimalist/pie.blade.php @@ -0,0 +1,26 @@ +@include('charts::_partials.container.svg') + + diff --git a/Laravel/vendor/consoletvs/charts/resources/views/morris/area.blade.php b/Laravel/vendor/consoletvs/charts/resources/views/morris/area.blade.php new file mode 100644 index 0000000..f1a17e0 --- /dev/null +++ b/Laravel/vendor/consoletvs/charts/resources/views/morris/area.blade.php @@ -0,0 +1,26 @@ +@include('charts::_partials/container.div-titled') + + diff --git a/Laravel/vendor/consoletvs/charts/resources/views/morris/bar.blade.php b/Laravel/vendor/consoletvs/charts/resources/views/morris/bar.blade.php new file mode 100644 index 0000000..fa1cb01 --- /dev/null +++ b/Laravel/vendor/consoletvs/charts/resources/views/morris/bar.blade.php @@ -0,0 +1,33 @@ +@include('charts::_partials/container.div-titled') + + diff --git a/Laravel/vendor/consoletvs/charts/resources/views/morris/donut.blade.php b/Laravel/vendor/consoletvs/charts/resources/views/morris/donut.blade.php new file mode 100644 index 0000000..90114c8 --- /dev/null +++ b/Laravel/vendor/consoletvs/charts/resources/views/morris/donut.blade.php @@ -0,0 +1,25 @@ +@include('charts::_partials/container.div-titled') + + diff --git a/Laravel/vendor/consoletvs/charts/resources/views/morris/line.blade.php b/Laravel/vendor/consoletvs/charts/resources/views/morris/line.blade.php new file mode 100644 index 0000000..5c86a22 --- /dev/null +++ b/Laravel/vendor/consoletvs/charts/resources/views/morris/line.blade.php @@ -0,0 +1,26 @@ +@include('charts::_partials/container.div-titled') + + diff --git a/Laravel/vendor/consoletvs/charts/resources/views/morris/multi/area.blade.php b/Laravel/vendor/consoletvs/charts/resources/views/morris/multi/area.blade.php new file mode 100644 index 0000000..0da0550 --- /dev/null +++ b/Laravel/vendor/consoletvs/charts/resources/views/morris/multi/area.blade.php @@ -0,0 +1,40 @@ +@include('charts::_partials/container.div-titled') + + diff --git a/Laravel/vendor/consoletvs/charts/resources/views/morris/multi/bar.blade.php b/Laravel/vendor/consoletvs/charts/resources/views/morris/multi/bar.blade.php new file mode 100644 index 0000000..aab9a39 --- /dev/null +++ b/Laravel/vendor/consoletvs/charts/resources/views/morris/multi/bar.blade.php @@ -0,0 +1,40 @@ +@include('charts::_partials.container.div-titled') + + diff --git a/Laravel/vendor/consoletvs/charts/resources/views/morris/multi/line.blade.php b/Laravel/vendor/consoletvs/charts/resources/views/morris/multi/line.blade.php new file mode 100644 index 0000000..acc3594 --- /dev/null +++ b/Laravel/vendor/consoletvs/charts/resources/views/morris/multi/line.blade.php @@ -0,0 +1,40 @@ +@include('charts::_partials/container.div-titled') + + diff --git a/Laravel/vendor/consoletvs/charts/resources/views/plottablejs/_data/multi.blade.php b/Laravel/vendor/consoletvs/charts/resources/views/plottablejs/_data/multi.blade.php new file mode 100644 index 0000000..66e382d --- /dev/null +++ b/Laravel/vendor/consoletvs/charts/resources/views/plottablejs/_data/multi.blade.php @@ -0,0 +1,10 @@ +@for($i = 0; $i < count($model->datasets); $i++) + var s{{ $i }} = [ + @for($k = 0; $k < count($model->datasets[$i]['values']); $k++) + { + x: "{{ $model->labels[$k] }}", + y: {{ $model->datasets[$i]['values'][$k] }}, + }, + @endfor + ]; +@endfor diff --git a/Laravel/vendor/consoletvs/charts/resources/views/plottablejs/_data/one.blade.php b/Laravel/vendor/consoletvs/charts/resources/views/plottablejs/_data/one.blade.php new file mode 100644 index 0000000..791b7ec --- /dev/null +++ b/Laravel/vendor/consoletvs/charts/resources/views/plottablejs/_data/one.blade.php @@ -0,0 +1,11 @@ +var data = [ + @for($i = 0; $i < count($model->values); $i++) + { + x: "{!! $model->labels[$i] !!}", + y: {{ $model->values[$i] }}, + @if($model->colors) + color: "{{ $model->colors[$i] }}" + @endif + }, + @endfor +]; diff --git a/Laravel/vendor/consoletvs/charts/resources/views/plottablejs/area.blade.php b/Laravel/vendor/consoletvs/charts/resources/views/plottablejs/area.blade.php new file mode 100644 index 0000000..07a1715 --- /dev/null +++ b/Laravel/vendor/consoletvs/charts/resources/views/plottablejs/area.blade.php @@ -0,0 +1,37 @@ +@include('charts::_partials.container.svg') + + diff --git a/Laravel/vendor/consoletvs/charts/resources/views/plottablejs/bar.blade.php b/Laravel/vendor/consoletvs/charts/resources/views/plottablejs/bar.blade.php new file mode 100644 index 0000000..178f91a --- /dev/null +++ b/Laravel/vendor/consoletvs/charts/resources/views/plottablejs/bar.blade.php @@ -0,0 +1,36 @@ +@include('charts::_partials.container.svg') + + diff --git a/Laravel/vendor/consoletvs/charts/resources/views/plottablejs/donut.blade.php b/Laravel/vendor/consoletvs/charts/resources/views/plottablejs/donut.blade.php new file mode 100644 index 0000000..e299071 --- /dev/null +++ b/Laravel/vendor/consoletvs/charts/resources/views/plottablejs/donut.blade.php @@ -0,0 +1,41 @@ +@include('charts::_partials.container.svg') + + + diff --git a/Laravel/vendor/consoletvs/charts/resources/views/plottablejs/line.blade.php b/Laravel/vendor/consoletvs/charts/resources/views/plottablejs/line.blade.php new file mode 100644 index 0000000..a275578 --- /dev/null +++ b/Laravel/vendor/consoletvs/charts/resources/views/plottablejs/line.blade.php @@ -0,0 +1,36 @@ +@include('charts::_partials.container.svg') + + diff --git a/Laravel/vendor/consoletvs/charts/resources/views/plottablejs/multi/area.blade.php b/Laravel/vendor/consoletvs/charts/resources/views/plottablejs/multi/area.blade.php new file mode 100644 index 0000000..d32b7e8 --- /dev/null +++ b/Laravel/vendor/consoletvs/charts/resources/views/plottablejs/multi/area.blade.php @@ -0,0 +1,39 @@ +@include('charts::_partials.container.svg') + + diff --git a/Laravel/vendor/consoletvs/charts/resources/views/plottablejs/multi/bar.blade.php b/Laravel/vendor/consoletvs/charts/resources/views/plottablejs/multi/bar.blade.php new file mode 100644 index 0000000..83a1b59 --- /dev/null +++ b/Laravel/vendor/consoletvs/charts/resources/views/plottablejs/multi/bar.blade.php @@ -0,0 +1,41 @@ +@include('charts::_partials.container.svg') + + diff --git a/Laravel/vendor/consoletvs/charts/resources/views/plottablejs/multi/line.blade.php b/Laravel/vendor/consoletvs/charts/resources/views/plottablejs/multi/line.blade.php new file mode 100644 index 0000000..e5d7070 --- /dev/null +++ b/Laravel/vendor/consoletvs/charts/resources/views/plottablejs/multi/line.blade.php @@ -0,0 +1,38 @@ +@include('charts::_partials.container.svg') + + diff --git a/Laravel/vendor/consoletvs/charts/resources/views/plottablejs/pie.blade.php b/Laravel/vendor/consoletvs/charts/resources/views/plottablejs/pie.blade.php new file mode 100644 index 0000000..b2a5bcc --- /dev/null +++ b/Laravel/vendor/consoletvs/charts/resources/views/plottablejs/pie.blade.php @@ -0,0 +1,39 @@ +@include('charts::_partials.container.svg') + + diff --git a/Laravel/vendor/consoletvs/charts/resources/views/progressbarjs/percentage.blade.php b/Laravel/vendor/consoletvs/charts/resources/views/progressbarjs/percentage.blade.php new file mode 100644 index 0000000..1388019 --- /dev/null +++ b/Laravel/vendor/consoletvs/charts/resources/views/progressbarjs/percentage.blade.php @@ -0,0 +1,34 @@ +@php($min = count($model->values) >= 2 ? $model->values[1] : 0) +@php($max = count($model->values) >= 3 ? $model->values[2] : 100) + +@include('charts::_partials.container.div-titled') +@include('charts::_partials.dimension.svg') + diff --git a/Laravel/vendor/consoletvs/charts/resources/views/progressbarjs/progressbar.blade.php b/Laravel/vendor/consoletvs/charts/resources/views/progressbarjs/progressbar.blade.php new file mode 100644 index 0000000..23b8763 --- /dev/null +++ b/Laravel/vendor/consoletvs/charts/resources/views/progressbarjs/progressbar.blade.php @@ -0,0 +1,25 @@ +@php($min = count($model->values) >= 2 ? $model->values[1] : 0) +@php($max = count($model->values) >= 3 ? $model->values[2] : 100) + +@include('charts::_partials.container.title') +
+ + diff --git a/Laravel/vendor/consoletvs/charts/resources/views/progressbarjs/realtime/percentage.blade.php b/Laravel/vendor/consoletvs/charts/resources/views/progressbarjs/realtime/percentage.blade.php new file mode 100644 index 0000000..60563f9 --- /dev/null +++ b/Laravel/vendor/consoletvs/charts/resources/views/progressbarjs/realtime/percentage.blade.php @@ -0,0 +1,41 @@ +@php($min = count($model->values) >= 2 ? $model->values[1] : 0) +@php($max = count($model->values) >= 3 ? $model->values[2] : 100) + +@include('charts::_partials.container.div-titled') +@include('charts::_partials.dimension.svg') + diff --git a/Laravel/vendor/consoletvs/charts/resources/views/progressbarjs/realtime/progressbar.blade.php b/Laravel/vendor/consoletvs/charts/resources/views/progressbarjs/realtime/progressbar.blade.php new file mode 100644 index 0000000..e8bf0f8 --- /dev/null +++ b/Laravel/vendor/consoletvs/charts/resources/views/progressbarjs/realtime/progressbar.blade.php @@ -0,0 +1,32 @@ +@php($min = count($model->values) >= 2 ? $model->values[1] : 0) +@php($max = count($model->values) >= 3 ? $model->values[2] : 100) + +@include('charts::_partials.container.title') +
+ + diff --git a/Laravel/vendor/consoletvs/charts/src/Builder.php b/Laravel/vendor/consoletvs/charts/src/Builder.php new file mode 100644 index 0000000..7424b57 --- /dev/null +++ b/Laravel/vendor/consoletvs/charts/src/Builder.php @@ -0,0 +1,290 @@ + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ + +namespace ConsoleTVs\Charts; + +use ConsoleTVs\Charts\Builder\Math; +use ConsoleTVs\Charts\Builder\Chart; +use ConsoleTVs\Charts\Builder\Multi; +use Illuminate\Support\Facades\File; +use ConsoleTVs\Charts\Builder\Database; +use ConsoleTVs\Charts\Builder\Realtime; +use ConsoleTVs\Charts\Builder\MultiDatabase; + +/** + * This is the charts facade class. + * + * @author Erik Campobadal + */ +class Builder +{ + /** + * Return a new chart instance. + * + * @param string $type + * @param string $library + * + * @return Chart + */ + public static function create($type = null, $library = null) + { + return new Chart($type, $library); + } + + /** + * Return a new realtime chart instance. + * + * @param string $url + * @param int $interval + * @param string $type + * @param string $library + * + * @return Realtime + */ + public static function realtime($url, $interval, $type = null, $library = null) + { + return new Realtime($url, $interval, $type, $library); + } + + /** + * Return a new database chart instance. + * + * @param \Illuminate\Support\Collection $data + * @param string $type + * @param string $library + * + * @return Database + */ + public static function database($data, $type = null, $library = null) + { + return new Database($data, $type, $library); + } + + /** + * Return a new math chart instance. + * + * @param string $function + * @param array $interval + * @param int $amplitude + * @param string $type + * @param string $library + * + * @return Math + */ + public static function math($function, $interval, $amplitude, $type = null, $library = null) + { + return new Math($function, $interval, $amplitude, $type, $library); + } + + /** + * Return a new multi chart instance. + * + * @param string $type + * @param string $library + * + * @return Multi + */ + public static function multi($type = null, $library = null) + { + return new Multi($type, $library); + } + + /** + * Return a new multi database chart instance. + * + * @param string $type + * @param string $library + * + * @return MultiDatabase + */ + public static function multiDatabase($type = null, $library = null) + { + return new MultiDatabase($type, $library); + } + + /** + * Return all the libraries available. + * + * @param string $type + * + * @return array + */ + public static function libraries($type = null) + { + $directories = File::directories(__DIR__.'/../resources/views'); + + $results = []; + foreach ($directories as $directory) { + // type was not defined... + if (! $type) { + return collect($directories)->map(function ($item, $key) { + return basename($item); + })->toArray(); + } + + // type was defined... + foreach (File::allFiles($directory) as $library) { + if (str_contains($library, $type)) { + $results[] = basename($directory); + } + } + } + + return array_unique($results); + } + + /** + * Return all the types available. + * + * @param string $library + * + * @return array + */ + public static function types($library = null) + { + // library defined... + if ($library) { + $files = File::allFiles(__DIR__."/../resources/views/$library"); + + return collect($files)->map(function ($item, $key) { + return str_replace('.blade.php', null, $item->getFileName()); + })->toArray(); + } + + // no library defined... + $libraries = File::directories(__DIR__.'/../resources/views'); + + $results = []; + foreach ($libraries as $library) { + foreach (File::allFiles($library) as $type) { + $results[] = str_replace('.blade.php', null, $type->getFileName()); + } + } + + return array_unique($results); + } + + /** + * Return the library styles. + * + * @param array $libraries + * + * @return string + */ + public function styles($libraries = []) + { + $styles = static::getAssets($libraries, 'styles'); + $styles .= view('charts::_partials.loader.css'); + + return $styles; + } + + /** + * Return the library scripts. + * + * @param array $libraries + * + * @return string + */ + public function scripts($libraries = []) + { + $scripts = static::getAssets($libraries, 'scripts'); + $scripts .= view('charts::_partials.loader.js'); + + return $scripts; + } + + /** + * Return the library styles. + * + * @param array $libraries + * + * @return string + */ + public function assets($libraries = []) + { + $assets = static::styles($libraries); + $assets .= static::scripts($libraries); + + return $assets; + } + + /** + * Get the library assets. + * + * @param array $libraries + * @param string $type + * + * @return string + */ + private static function getAssets($libraries = [], $type = []) + { + if (! $libraries) { + $libraries = []; + foreach (config('charts.assets') as $key => $value) { + array_push($libraries, $key); + } + } + $assets = config('charts.assets'); + $final_assets = $assets; + + if ($libraries && is_string($libraries)) { + $libraries = explode(',', $libraries); + } + + if ($type) { + $final_assets = collect($assets)->map(function ($value, $key) use ($libraries, $type) { + if (in_array($key, $libraries) && array_key_exists($type, $value)) { + return $value[$type]; + } else { + return; + } + })->reject(function ($value) { + return $value === null; + })->toArray(); + } else { + $final_assets = collect($assets)->map(function ($value, $key) use ($libraries) { + if (in_array($key, $libraries)) { + return $value; + } else { + return; + } + })->reject(function ($value) { + return $value === null; + })->toArray(); + } + + // return all libraries + return static::buildIncludeTags($final_assets); + } + + /** + * Build HTML Tags to include. + * + * @param array $data + * + * @return string + */ + private static function buildIncludeTags(array $data) + { + return collect(array_flatten($data))->map(function ($item) { + if (ends_with($item, '.css')) { + return ''; + } + + if (ends_with($item, '.js') || strpos($item, 'http') !== false) { + return ''; + } + + return ''; + })->implode("\n"); + } +} diff --git a/Laravel/vendor/consoletvs/charts/src/Builder/Chart.php b/Laravel/vendor/consoletvs/charts/src/Builder/Chart.php new file mode 100644 index 0000000..67389c6 --- /dev/null +++ b/Laravel/vendor/consoletvs/charts/src/Builder/Chart.php @@ -0,0 +1,267 @@ + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ + +namespace ConsoleTVs\Charts\Builder; + +use View; +use ConsoleTVs\Charts\Traits\Setters; + +/** + * This is the chart class. + * + * @author Erik Campobadal + */ +class Chart +{ + use Setters; + + public $id; + public $customId; + public $type; + public $library; + public $title; + public $element_label; + public $labels; + public $values; + public $colors; + public $responsive; + public $gauge_style; + public $view; + public $region; + protected $suffix; + public $container; + public $credits; + public $loader; + public $loader_duration; + public $loader_color; + public $background_color; + public $template; + public $one_color; + public $legend; + public $x_axis_title; + public $y_axis_title; + public $script = ''; + public $html = ''; + public $export; + + /** + * Create a new chart instance. + * + * @param string $type + * @param string $library + */ + public function __construct($type = null, $library = null) + { + // Set the default chart data + $this->title = config('charts.default.title'); + $this->height = config('charts.default.height'); + $this->width = config('charts.default.width'); + $this->element_label = config('charts.default.element_label'); + $this->labels = []; + $this->values = []; + $this->colors = config('charts.default.colors'); + $this->suffix = ''; + $this->container = ''; + $this->gauge_style = 'left'; + $this->responsive = config('charts.default.responsive'); + $this->region = 'world'; + $this->background_color = config('charts.default.background_color'); + $this->credits = false; // Disables the library credits (not on all) + $this->legend = config('charts.default.legend'); + $this->x_axis_title = config('charts.default.x_axis_title'); + $this->y_axis_title = config('charts.default.y_axis_title'); + + // Setup the chart loader + $this->loader = config('charts.default.loader.active'); + $this->loader_duration = config('charts.default.loader.duration'); + $this->loader_color = config('charts.default.loader.color'); + + // Set the chart type + $this->type = $type ? $type : config('charts.default.type'); + + // Set the chart library + $this->library = $library ? $library : config('charts.default.library'); + + // Set the chart template + $this->template = config('charts.default.template'); + + $this->one_color = config('charts.default.one_color'); + } + + /** + * Return and array of all the chart settings. + * + * @return array + */ + public function settings() + { + return (array) $this; + } + + /** + * Render the chart. + * + * @return View|string + */ + public function render() + { + $this->id = $this->container ? $this->container : $this->randomString(); + + if (! $this->labels && ! $this->values) { + $this->labels = [config('charts.default.empty_dataset_label')]; + $this->values = [config('charts.default.empty_dataset_value')]; + } elseif (! $this->values && $this->labels) { + foreach ($this->labels as $l) { + array_push($this->values, 0); + } + } elseif ($this->values && ! $this->labels) { + $i = 0; + foreach ($this->values as $v) { + array_push($this->labels, "Unknown $i"); + } + } elseif (count($this->values) > count($this->labels)) { + $lb = count($this->labels); + for ($i = 0; $i < (count($this->values) - $lb); $i++) { + array_push($this->labels, "Unknown $i"); + } + } elseif (count($this->values) < count($this->labels)) { + $vl = count($this->values); + for ($i = 0; $i < (count($this->labels) - $vl); $i++) { + array_push($this->values, 0); + } + } + + if (! $this->colors) { + $this->colors = ['#000000']; + // Set the template colors + $templates = config('charts.templates'); + if ($this->template && array_key_exists($this->template, $templates) && $colors = $templates[$this->template]) { + $this->colors = $colors; + } + } + + $ds = $this->suffix == 'multi' ? count($this->datasets) : []; + $cv = count($this->values); + $cc = count($this->colors); + + if ($this->one_color) { + $color = $this->colors[0]; + $this->colors = []; + foreach ($this->values as $v) { + array_push($this->colors, $color); + } + } elseif (($cc != $cv) || ($this->suffix == 'multi' && ($cc != $ds))) { + if ($this->suffix == 'multi') { + $cv = $ds; + } + + if ($cc > $cv) { + // There are more colors than values + $this->colors = array_slice($this->colors, 0, $cv); + } else { + // There are less colors than values + $i = 0; + $max = count($this->colors); + while (count($this->colors) < $cv) { + if ($i == $max) { + $i = 0; + } + array_push($this->colors, $this->colors[$i]); + $i++; + } + } + } + + $view = $this->suffix ? "charts::{$this->library}.{$this->suffix}.{$this->type}" : "charts::{$this->library}.{$this->type}"; + $view = $this->view ?: $view; + + if (View::exists($view)) { + return view($view)->withModel($this); + } + + // There must be an error, let's show the error! + $error_msg = 'Unknown chart library / type combination'; + $img_url = 'http://icons.iconarchive.com/icons/paomedia/small-n-flat/1024/sign-error-icon.png'; + + $error = "
height.'px' : ''; + $error .= $this->width ? 'width: '.$this->width.'px' : ''; + } + $error .= "'>


$error_msg
"; + + $this->html = $error; + $this->script = ""; + + return ''; + } + + /** + * Return a random string. + * + * @param int $length + * + * @return string + */ + protected function randomString($length = 10) + { + return substr(str_shuffle(str_repeat($x = 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ', ceil($length / strlen($x)))), 1, $length); + } + + /** + * Returns the chart script. + * + * @author Ariel Vallese + * @return string + */ + public function script() + { + if ($this->script === '') { + $this->split(); + } + + return $this->script; + } + + /** + * Returns the chart HTML. + * + * @author Ariel Vallese + * @return string + */ + public function html() + { + if ($this->html === '') { + $this->split(); + } + + return $this->html; + } + + /** + * Splits the assets. + * + * @author Ariel Vallese + * @return void + */ + protected function split() + { + $render = $this->render(); + + if ($this->html !== '' && $this->script !== '') { + return; + } + + $scriptEnds = strrpos($render, '') + strlen(''); + + $this->script = substr($render, 0, $scriptEnds); + $this->html = substr($render, $scriptEnds); + } +} diff --git a/Laravel/vendor/consoletvs/charts/src/Builder/Database.php b/Laravel/vendor/consoletvs/charts/src/Builder/Database.php new file mode 100644 index 0000000..b0107b0 --- /dev/null +++ b/Laravel/vendor/consoletvs/charts/src/Builder/Database.php @@ -0,0 +1,515 @@ + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ + +namespace ConsoleTVs\Charts\Builder; + +use Jenssegers\Date\Date; +use Illuminate\Support\Collection; +use Illuminate\Support\Facades\App; + +/** + * This is the database class. + * + * @author Erik Campobadal + */ +class Database extends Chart +{ + /** + * @var Collection + */ + public $data; + + /** + * Determines the date column. + * + * @var string + */ + public $date_column; + + /** + * Determines the date format. + * + * @var string + */ + public $date_format = 'l dS M, Y'; + + /** + * Determines the month format. + * + * @var string + */ + public $month_format = 'F, Y'; + + /** + * Determines the hour format. + * + * @var string + */ + public $hour_format = 'D, M j, Y g A'; + + /** + * Determines the dates language. + * + * @var string + */ + public $language; + + public $preaggregated = false; + public $aggregate_column = null; + public $aggregate_type = null; + public $value_data = []; + + /** + * Create a new database instance. + * + * @param Collection $data + * @param string $type + * @param string $library + */ + public function __construct($data, $type = null, $library = null) + { + parent::__construct($type, $library); + + // Set the data + $this->date_column = 'created_at'; + + // Set the language + $this->language = App::getLocale(); + + $this->data = $data; + } + + /** + * @param Collection $data + * + * @return Database + */ + public function data($data) + { + $this->data = $data; + + return $this; + } + + /** + * Set date column to filter the data. + * + * @param string $column + * + * @return Database + */ + public function dateColumn($column) + { + $this->date_column = $column; + + return $this; + } + + /** + * Set fancy date format based on PHP date() function. + * + * @param string $format + * + * @return Database + */ + public function dateFormat($format) + { + $this->date_format = $format; + + return $this; + } + + /** + * Set fancy month format based on PHP date() function. + * + * @param string $format + * + * @return Database + */ + public function monthFormat($format) + { + $this->month_format = $format; + + return $this; + } + + /** + * Set fancy hour format based on PHP date() function. + * + * @param string $format + * + * @return Database + */ + public function hourFormat($format) + { + $this->hour_format = $format; + + return $this; + } + + /** + * Set whether data is preaggregated or should be summed. + * + * @param bool $preaggregated + * + * @return Database + */ + public function preaggregated($preaggregated) + { + $this->preaggregated = $preaggregated; + + return $this; + } + + /** + * Set the Date language that is going to be used. + * + * @param string $language + * + * @return Database + */ + public function language($language) + { + $this->language = $language; + + return $this; + } + + /** + * Set the column in which this program should use to aggregate. This is useful for summing/averaging columns. + * + * @param string $aggregateColumn - name of the column to aggregate + * @param string $aggregateType - type of aggregation (sum, avg, min, max, count, ...) + * Must be Laravel collection commands. + * @see Illuminate\Support\Collection + * + * @return Database + */ + public function aggregateColumn($aggregateColumn, $aggregateType) + { + $this->aggregate_column = $aggregateColumn; + $this->aggregate_type = $aggregateType; + + return $this; + } + + /** + * Group the data hourly based on the creation date. + * + * @param int $day + * @param int $month + * @param int $year + * @param bool $fancy + * + * @return Database + */ + public function groupByHour($day = null, $month = null, $year = null, $fancy = false) + { + $labels = []; + $values = []; + + $day = $day ? $day : date('d'); + $month = $month ? $month : date('m'); + $year = $year ? $year : date('Y'); + + for ($i = 0; $i < 24; $i++) { + $hour = ($i < 10) ? "0$i" : "$i"; + + $date_get = $fancy ? $this->hour_format : 'd-m-Y H:00:00'; + + Date::setLocale($this->language); + $label = ucfirst(Date::create($year, $month, $day, $hour)->format($date_get)); + + $checkDate = "$year-$month-$day $hour:00:00"; + $value = $this->getCheckDateValue($checkDate, 'Y-m-d H:00:00', $label); + + array_push($labels, $label); + array_push($values, $value); + } + $this->labels($labels); + $this->values($values); + + return $this; + } + + /** + * Group the data daily based on the creation date. + * + * @param int $month + * @param int $year + * @param bool $fancy + * + * @return Database + */ + public function groupByDay($month = null, $year = null, $fancy = false) + { + $labels = []; + $values = []; + + $month = $month ? $month : date('m'); + $year = $year ? $year : date('Y'); + + $days = date('t', strtotime("$year-$month-01")); + + Date::setLocale($this->language); + + for ($i = 1; $i <= $days; $i++) { + $day = ($i < 10) ? "0$i" : "$i"; + + $date_get = $fancy ? $this->date_format : 'd-m-Y'; + + $label = ucfirst(Date::create($year, $month, $day)->format($date_get)); + + $checkDate = "$year-$month-$day"; + $value = $this->getCheckDateValue($checkDate, 'Y-m-d', $label); + + array_push($labels, $label); + array_push($values, $value); + } + $this->labels($labels); + $this->values($values); + + return $this; + } + + /** + * Group the data monthly based on the creation date. + * + * @param int $year + * @param bool $fancy + * + * @return Database + */ + public function groupByMonth($year = null, $fancy = false) + { + $labels = []; + $values = []; + + $year = $year ? $year : date('Y'); + + Date::setLocale($this->language); + + for ($i = 1; $i <= 12; $i++) { + $month = ($i < 10) ? "0$i" : "$i"; + + $date_get = $fancy ? $this->month_format : 'm-Y'; + + $label = ucfirst(Date::create($year, $month)->format($date_get)); + + array_push($labels, $label); + + $checkDate = "$year-$month"; + $value = $this->getCheckDateValue($checkDate, 'Y-m', $label); + + array_push($values, $value); + } + + $this->labels($labels); + $this->values($values); + + return $this; + } + + /** + * Group the data yearly based on the creation date. + * + * @param int $number + * + * @return Database + */ + public function groupByYear($number = 4) + { + $labels = []; + $values = []; + + for ($i = 0; $i < $number; $i++) { + $year = ($i == 0) ? date('Y') : date('Y', strtotime('-'.$i.' Year')); + + array_push($labels, $year); + + $checkDate = $year; + $value = $this->getCheckDateValue($checkDate, 'Y', $year); + + array_push($values, $value); + } + + $this->labels(array_reverse($labels)); + $this->values(array_reverse($values)); + + return $this; + } + + /** + * Group the data based on the column. + * + * @param string $column + * @param string $relationColumn + * @param array $labelsMapping + * + * @return Database + */ + public function groupBy($column, $relationColumn = null, array $labelsMapping = []) + { + $labels = []; + $values = []; + + if ($relationColumn && strpos($relationColumn, '.') !== false) { + $relationColumn = explode('.', $relationColumn); + } + + foreach ($this->data->groupBy($column) as $data) { + $label = $data[0]; + + if (is_null($relationColumn)) { + $label = $label->$column; + } elseif (is_array($relationColumn)) { + foreach ($relationColumn as $boz) { + $label = $label->$boz; + } + } else { + $label = $data[0]->$relationColumn; + } + + array_push($labels, array_key_exists($label, $labelsMapping) ? $labelsMapping[$label] : $label); + array_push($values, count($data)); + } + + $this->labels($labels); + $this->values($values); + + return $this; + } + + /** + * Group the data based on the latest days. + * + * @param int $number + * @param bool $fancy + * + * @return Database + */ + public function lastByDay($number = 7, $fancy = false) + { + $labels = []; + $values = []; + + Date::setLocale($this->language); + + for ($i = 0; $i < $number; $i++) { + $date = $i == 0 ? date('d-m-Y') : date('d-m-Y', strtotime("-$i Day")); + $dt = strtotime($date); + $date_f = $fancy ? ucfirst(Date::create(date('Y', $dt), date('m', $dt), date('d', $dt))->format($this->date_format)) : $date; + array_push($labels, $date_f); + $value = $this->getCheckDateValue($date, 'd-m-Y', $date_f); + array_push($values, $value); + } + + $this->labels(array_reverse($labels)); + $this->values(array_reverse($values)); + + return $this; + } + + /** + * Group the data based on the latest months. + * + * @param int $number + * @param bool $fancy + * + * @return Database + */ + public function lastByMonth($number = 6, $fancy = false) + { + $labels = []; + $values = []; + $previousDate = null; + $day = 1; + + Date::setLocale($this->language); + + for ($i = 0; $i < $number; $i++) { + $date = $i == 0 ? date('m-Y') : date('m-Y', strtotime("-$i Month")); + + // If the previous date equals the newly calculated date, move the interval by a day and try again. + // @see edge case 29th of March to 29th of February and 31-03-2017 to 30-11-2016. Put a limit just in case + // it breaks something. + while ($date == $previousDate && $day < 4) { + $date = $i == 0 ? date('m-Y', time() - $day * 86400) : date('m-Y', strtotime("-$i Month") - 86400 * $day); + $day++; + } + $dt = strtotime("01-$date"); + $date_f = $fancy ? ucfirst(Date::create(date('Y', $dt), date('m', $dt), date('d', $dt))->format($this->month_format)) : $date; + array_push($labels, $date_f); + + $value = $this->getCheckDateValue($date, 'm-Y', $date_f); + array_push($values, $value); + + // Set the checks for the next round. + $previousDate = $date; + $day = 1; + } + + $this->labels(array_reverse($labels)); + $this->values(array_reverse($values)); + + return $this; + } + + /** + * Alias for groupByYear(). + * + * @param int $number + * + * @return Database + */ + public function lastByYear($number = 4) + { + return $this->groupByYear($number); + } + + /** + * This is a simple value generator for the three types of summations used in this Chart object when sorted via data. + * + * @param string $checkDate - a string in the format 'Y-m-d H:ii::ss' Needs to resemble up with $formatToCheck to work + * @param string $formatToCheck - a string in the format 'Y-m-d H:ii::ss' Needs to resemble up with $checkDate to work + * @param string $label + * @return mixed + */ + private function getCheckDateValue($checkDate, $formatToCheck, $label) + { + $date_column = $this->date_column; + $data = $this->data; + if ($this->preaggregated) { + // Since the column has been preaggregated, we only need one record that matches the search + $valueData = $data->first(function ($value) use ($checkDate, $date_column, $formatToCheck) { + return $checkDate == date($formatToCheck, strtotime($value->$date_column)); + }); + $value = $valueData !== null ? $valueData->aggregate : 0; + } else { + // Set the data represented. Return the relevant value. + $valueData = $data->filter(function ($value) use ($checkDate, $date_column, $formatToCheck) { + return $checkDate == date($formatToCheck, strtotime($value->$date_column)); + }); + + if ($valueData !== null) { + // Do an aggregation, otherwise count the number of records. + $value = $this->aggregate_column ? $valueData->{$this->aggregate_type}($this->aggregate_column) : $valueData->count(); + } else { + $value = 0; + } + + // Store the datasets by label. + $this->value_data[$label] = $valueData; + } + + return $value; + } +} diff --git a/Laravel/vendor/consoletvs/charts/src/Builder/Math.php b/Laravel/vendor/consoletvs/charts/src/Builder/Math.php new file mode 100644 index 0000000..cfda672 --- /dev/null +++ b/Laravel/vendor/consoletvs/charts/src/Builder/Math.php @@ -0,0 +1,123 @@ + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ + +namespace ConsoleTVs\Charts\Builder; + +use jlawrence\eos\Parser; + +/** + * This is the math class. + * + * @author Erik Campobadal + */ +class Math extends Chart +{ + public $function; + public $interval; + public $amplitude; + + /** + * Create a new math chart instance. + * + * @param string $function + * @param array $interval + * @param int $amplitude + * @param string $type + * @param string $library + */ + public function __construct($function, $interval, $amplitude, $type = null, $library = null) + { + parent::__construct($type, $library); + + $this->function = $function; + $this->interval = $interval; + $this->amplitude = $amplitude; + + // Calculate the chart + $this->calculate(); + } + + /** + * Set the chart function. + * + * @param string $function + * + * @return Math + */ + public function mathFunction($function) + { + $this->function = $function; + + $this->calculate(); + + return $this; + } + + /** + * Set the function interval. + * + * @param array $interval + * + * @return Math + */ + public function interval($interval) + { + $this->interval = $interval; + + $this->calculate(); + + return $this; + } + + /** + * Set the function amplitude. + * + * @param int $amplitude + * + * @return Math + */ + public function amplitude($amplitude) + { + $this->amplitude = $amplitude; + + $this->calculate(); + + return $this; + } + + /** + * Calculates the values. + * + * @return Math + */ + public function calculate() + { + // Get the function data + $function = $this->function; + $interval = $this->interval; + $amplitude = $this->amplitude; + + $this->element_label = $this->element_label." - $function"; + + // Reset the values / labels + $this->values = []; + $this->labels = []; + + for ($i = $interval[0]; $i <= $interval[1]; $i = $i + $amplitude) { + $result = Parser::solve($function, round($i, 2)); + + array_push($this->values, $result); + array_push($this->labels, round($i, 2)); + } + + return $this; + } +} diff --git a/Laravel/vendor/consoletvs/charts/src/Builder/Multi.php b/Laravel/vendor/consoletvs/charts/src/Builder/Multi.php new file mode 100644 index 0000000..92ad94a --- /dev/null +++ b/Laravel/vendor/consoletvs/charts/src/Builder/Multi.php @@ -0,0 +1,53 @@ + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ + +namespace ConsoleTVs\Charts\Builder; + +/** + * This is the multi class. + * + * @author Erik Campobadal + */ +class Multi extends Chart +{ + public $datasets; + + /** + * Create a new multi chart instance. + * + * @param string $type + * @param string $library + */ + public function __construct($type = null, $library = null) + { + parent::__construct($type, $library); + + $this->suffix = 'multi'; + } + + /** + * Set the dataset values. + * + * @param string $element_label + * @param array $values + * + * @return Multi + */ + public function dataset($element_label, $values) + { + $this->datasets[] = [ + 'label' => $element_label, + 'values' => $values, + ]; + + return $this; + } +} diff --git a/Laravel/vendor/consoletvs/charts/src/Builder/MultiDatabase.php b/Laravel/vendor/consoletvs/charts/src/Builder/MultiDatabase.php new file mode 100644 index 0000000..e809c85 --- /dev/null +++ b/Laravel/vendor/consoletvs/charts/src/Builder/MultiDatabase.php @@ -0,0 +1,390 @@ + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ + +namespace ConsoleTVs\Charts\Builder; + +/** + * This is the database class. + * + * @author Erik Campobadal + */ +class MultiDatabase extends Multi +{ + /** + * @var Database[] + */ + public $datas = []; + + /** + * Determines the date column. + * + * @var string + */ + public $date_column = 'created_at'; + + /** + * Determines the date format. + * + * @var string + */ + public $date_format = 'l dS M, Y'; + + /** + * Determines the month format. + * + * @var string + */ + public $month_format = 'F, Y'; + + /** + * Determines the hour format. + * + * @var string + */ + public $hour_format = 'D, M j, Y g A'; + + /** + * Determines the dates language. + * + * @var string + */ + public $language; + + public $preaggregated = false; + public $aggregate_column = null; + public $aggregate_type = null; + + /** + * Create a new database instance. + * + * @param string $type + * @param string $library + */ + public function __construct($type = null, $library = null) + { + parent::__construct($type, $library); + } + + /** + * Set the dataset data. + * + * @param string $element_label + * @param \Illuminate\Support\Collection $data + * + * @return MultiDatabase + */ + public function dataset($element_label, $data) + { + $this->datas[$element_label] = new Database($data); + $this->datas[$element_label]->dateColumn($this->date_column) + ->dateFormat($this->date_format) + ->monthFormat($this->month_format) + ->hourFormat($this->hour_format) + ->preaggregated($this->preaggregated) + ->aggregateColumn($this->aggregate_column, $this->aggregate_type); + + return $this; + } + + /** + * Set date column to filter the data. + * + * @param string $column + * + * @return MultiDatabase + */ + public function dateColumn($column) + { + $this->date_column = $column; + foreach ($this->datas as $element_label => $data) { + $this->datas[$element_label]->dateColumn($this->date_column); + } + + return $this; + } + + /** + * Set fancy date format based on PHP date() function. + * + * @param string $format + * + * @return MultiDatabase + */ + public function dateFormat($format) + { + $this->date_format = $format; + foreach ($this->datas as $element_label => $data) { + $this->datas[$element_label]->dateFormat($this->date_format); + } + + return $this; + } + + /** + * Set fancy month format based on PHP date() function. + * + * @param string $format + * + * @return MultiDatabase + */ + public function monthFormat($format) + { + $this->month_format = $format; + foreach ($this->datas as $element_label => $data) { + $this->datas[$element_label]->monthFormat($this->month_format); + } + + return $this; + } + + /** + * Set fancy hour format based on PHP date() function. + * + * @param string $format + * + * @return MultiDatabase + */ + public function hourFormat($format) + { + $this->hour_format = $format; + foreach ($this->datas as $element_label => $data) { + $this->datas[$element_label]->hourFormat($this->hour_format); + } + + return $this; + } + + /** + * Set the Date language that is going to be used. + * + * @param string $language + * + * @return MultiDatabase + */ + public function language($language) + { + $this->language = $language; + + return $this; + } + + /** + * Set whether data is preaggregated or should be summed. + * + * @param bool $preaggregated + * + * @return MultiDatabase + */ + public function preaggregated($preaggregated) + { + $this->preaggregated = $preaggregated; + foreach ($this->datas as $element_label => $data) { + $this->datas[$element_label]->preaggregated($this->preaggregated); + } + + return $this; + } + + /** + * Set the column in which this program should use to sum. This is useful for summing columns. + * + * @param string $aggregateColumn + * @param string $aggregateType + * + * @return MultiDatabase + */ + public function aggregateColumn($aggregateColumn, $aggregateType) + { + $this->aggregate_column = $aggregateColumn; + $this->aggregate_type = $aggregateType; + foreach ($this->datas as $element_label => $data) { + $this->datas[$element_label]->aggregateColumn($this->aggregate_column, $this->aggregate_type); + } + + return $this; + } + + /** + * Group the data hourly based on the creation date. + * + * @param int $day + * @param int $month + * @param int $year + * @param bool $fancy + * + * @return MultiDatabase + */ + public function groupByHour($day = null, $month = null, $year = null, $fancy = false) + { + // Reset the datasets to avoid overlapping + $this->datasets = []; + + foreach ($this->datas as $element_label => $data) { + $data->groupByHour($day, $month, $year, $fancy); + parent::dataset($element_label, $data->values); + } + + $this->labels = $data->labels; + + return $this; + } + + /** + * Group the data daily based on the creation date. + * + * @param int $month + * @param int $year + * @param bool $fancy + * + * @return MultiDatabase + */ + public function groupByDay($month = null, $year = null, $fancy = false) + { + // Reset the datasets to avoid overlapping + $this->datasets = []; + + foreach ($this->datas as $element_label => $data) { + $data->groupByDay($month, $year, $fancy); + parent::dataset($element_label, $data->values); + } + + $this->labels = $data->labels; + + return $this; + } + + /** + * Group the data monthly based on the creation date. + * + * @param int $year + * @param bool $fancy + * + * @return MultiDatabase + */ + public function groupByMonth($year = null, $fancy = false) + { + // Reset the datasets to avoid overlapping + $this->datasets = []; + + foreach ($this->datas as $element_label => $data) { + $data->groupByMonth($year, $fancy); + parent::dataset($element_label, $data->values); + } + + $this->labels = $data->labels; + + return $this; + } + + /** + * Group the data yearly based on the creation date. + * + * @param int $number + * + * @return MultiDatabase + */ + public function groupByYear($number = 4) + { + // Reset the datasets to avoid overlapping + $this->datasets = []; + + foreach ($this->datas as $element_label => $data) { + $data->groupByYear($number); + parent::dataset($element_label, $data->values); + } + + $this->labels = $data->labels; + + return $this; + } + + /** + * Group the data based on the column. + * + * @param string $column + * @param string $relationColumn + * @param array $labelsMapping + * + * @return MultiDatabase + */ + public function groupBy($column, $relationColumn = null, array $labelsMapping = []) + { + // Reset the datasets to avoid overlapping + $this->datasets = []; + + foreach ($this->datas as $element_label => $data) { + $data->groupBy($column, $relationColumn, $labelsMapping); + parent::dataset($element_label, $data->values); + } + + $this->labels = $data->labels; + + return $this; + } + + /** + * Group the data based on the latest days. + * + * @param int $number + * @param bool $fancy + * + * @return MultiDatabase + */ + public function lastByDay($number = 7, $fancy = false) + { + // Reset the datasets to avoid overlapping + $this->datasets = []; + + foreach ($this->datas as $element_label => $data) { + $data->lastByDay($number, $fancy); + parent::dataset($element_label, $data->values); + } + + $this->labels = $data->labels; + + return $this; + } + + /** + * Group the data based on the latest months. + * + * @param int $number + * @param bool $fancy + * + * @return MultiDatabase + */ + public function lastByMonth($number = 6, $fancy = false) + { + // Reset the datasets to avoid overlapping + $this->datasets = []; + + foreach ($this->datas as $element_label => $data) { + $data->lastByMonth($number, $fancy); + parent::dataset($element_label, $data->values); + } + + $this->labels = $data->labels; + + return $this; + } + + /** + * Alias for groupByYear(). + * + * @param int $number + * + * @return MultiDatabase + */ + public function lastByYear($number = 4) + { + return $this->groupByYear($number); + } +} diff --git a/Laravel/vendor/consoletvs/charts/src/Builder/Realtime.php b/Laravel/vendor/consoletvs/charts/src/Builder/Realtime.php new file mode 100644 index 0000000..e173ee6 --- /dev/null +++ b/Laravel/vendor/consoletvs/charts/src/Builder/Realtime.php @@ -0,0 +1,101 @@ + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ + +namespace ConsoleTVs\Charts\Builder; + +/** + * This is the realtime class. + * + * @author Erik Campobadal + */ +class Realtime extends Chart +{ + public $url; + public $interval; + public $value_name; + public $max_values; + + /** + * Create a new realtime instance. + * + * @param string $url + * @param int $interval + * @param string $type + * @param string $library + */ + public function __construct($url, $interval, $type = null, $library = null) + { + parent::__construct($type, $library); + + // Set the data + $this->url = $url; + $this->interval = $interval; + $this->suffix = 'realtime'; + $this->value_name = 'value'; + $this->max_values = 20; + } + + /** + * Set the max values in the chart. + * + * @param int $number + * + * @return Realtime + */ + public function maxValues($number) + { + $this->max_values = $number; + + return $this; + } + + /** + * Set json value name. + * + * @param string $string + * + * @return Realtime + */ + public function valueName($string) + { + $this->value_name = $string; + + return $this; + } + + /** + * Set json data streaming url. + * + * @param string $url + * + * @return Realtime + */ + public function url($url) + { + $this->url = $url; + + return $this; + } + + /** + * Set the update interval in ms. + * + * @param int $interval + * + * @return Realtime + */ + public function interval($interval) + { + $this->interval = $interval; + + return $this; + } +} diff --git a/Laravel/vendor/consoletvs/charts/src/ChartsServiceProvider.php b/Laravel/vendor/consoletvs/charts/src/ChartsServiceProvider.php new file mode 100644 index 0000000..1178df9 --- /dev/null +++ b/Laravel/vendor/consoletvs/charts/src/ChartsServiceProvider.php @@ -0,0 +1,107 @@ +loadViewsFrom(__DIR__.'/../resources/views', 'charts'); + + $this->publishes([ + __DIR__.'/../config/charts.php' => config_path('charts.php'), + ], 'charts_config'); + + $this->publishes([ + __DIR__.'/../resources/views' => base_path('resources/views/vendor/charts'), + ], 'charts_views'); + + $this->app->register('Jenssegers\\Date\\DateServiceProvider'); + + $this->registerBladeDirectives(); + } + + /** + * Register the application services. + */ + public function register() + { + $this->mergeConfigFrom(__DIR__.'/../config/charts.php', 'charts'); + + $this->app->singleton(Builder::class, function ($app) { + return new Builder(); + }); + } + + /** + * Get the services provided by the provider. + * + * @return array + */ + public function provides() + { + return [Builder::class]; + } + + private function registerBladeDirectives() + { + /* + * php explode() function. + * + * Usage: @explode($delimiter, $string) + */ + Blade::directive('explode', function ($argumentString) { + list($delimiter, $string) = $this->getArguments($argumentString); + + return ""; + }); + + /* + * php implode() function. + * + * Usage: @implode($delimiter, $array) + */ + Blade::directive('implode', function ($argumentString) { + list($delimiter, $array) = $this->getArguments($argumentString); + + return ""; + }); + + /* + * Set variable. + * + * Usage: @set($name, value) + */ + Blade::directive('set', function ($argumentString) { + list($name, $value) = $this->getArguments($argumentString); + + if (starts_with($name, ["'", '"']) || ends_with($name, ["'", '"'])) { + $name = substr($name, 1, -1); + } + + if (starts_with($value, ["'", '"']) || ends_with($value, ["'", '"'])) { + $value = substr($value, 1, -1); + } + + return ""; + }); + } + + /** + * Get argument array from argument string. + * + * @param string $argumentString + * + * @return array + */ + private function getArguments($argumentString) + { + return explode(', ', str_replace(['(', ')'], '', $argumentString)); + } +} diff --git a/Laravel/vendor/consoletvs/charts/src/Facades/Charts.php b/Laravel/vendor/consoletvs/charts/src/Facades/Charts.php new file mode 100644 index 0000000..b2e018d --- /dev/null +++ b/Laravel/vendor/consoletvs/charts/src/Facades/Charts.php @@ -0,0 +1,33 @@ + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ + +namespace ConsoleTVs\Charts\Facades; + +use ConsoleTVs\Charts\Builder; +use Illuminate\Support\Facades\Facade; + +/** + * This is the charts facade class. + * + * @author Erik Campobadal + */ +class Charts extends Facade +{ + /** + * Get the registered name of the component. + * + * @return string + */ + protected static function getFacadeAccessor() + { + return Builder::class; + } +} diff --git a/Laravel/vendor/consoletvs/charts/src/Traits/Setters.php b/Laravel/vendor/consoletvs/charts/src/Traits/Setters.php new file mode 100644 index 0000000..0ac970a --- /dev/null +++ b/Laravel/vendor/consoletvs/charts/src/Traits/Setters.php @@ -0,0 +1,385 @@ + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ + +namespace ConsoleTVs\Charts\Traits; + +/** + * This is the setters trait for chart class. + * + * @author Erik Campobadal + */ +trait Setters +{ + /** + * Set the chart one color attribute. + * + * @param bool $one_color + * + * @return Chart + */ + public function oneColor($one_color) + { + $this->one_color = $one_color; + + return $this; + } + + /** + * Set the chart color template. + * + * @param string $template + * + * @return Chart + */ + public function template($template) + { + $this->template = $template; + + return $this; + } + + /** + * Set the chart division background color. + * + * @param string $background_color + * + * @return Chart + */ + public function backgroundColor($background_color) + { + $this->background_color = $background_color; + + return $this; + } + + /** + * Set the loader for the chart. + * + * @param bool $loader + * + * @return Chart + */ + public function loader($loader) + { + $this->loader = $loader; + + return $this; + } + + /** + * Set a custom loader time before showing the chart. + * + * @param int $loader_duration + * + * @return Chart + */ + public function loaderDuration($loader_duration) + { + $this->loader_duration = $loader_duration; + + return $this; + } + + /** + * Set the loader color for the chart if the loader is enabled. + * + * @param string $loader_color + * + * @return Chart + */ + public function loaderColor($loader_color) + { + $this->loader_color = $loader_color; + + return $this; + } + + /** + * Set a custom container to render the chart. + * + * @param string $division + * + * @return Chart + */ + public function container($division) + { + $this->container = $division; + + return $this; + } + + /** + * Set the google geo region. + * + * @param string $region + * + * @return Chart + */ + public function region($region) + { + $this->region = $region; + + return $this; + } + + /** + * Set gauge style. + * + * @param string $style + * + * @return Chart + */ + public function gaugeStyle($style) + { + $this->gauge_style = $style; + + return $this; + } + + /** + * Set chart type. + * + * @param string $type + * + * @return Chart + */ + public function type($type) + { + $this->type = $type; + + return $this; + } + + /** + * Set chart library. + * + * @param string $library + * + * @return Chart + */ + public function library($library) + { + $this->library = $library; + + return $this; + } + + /** + * Set chart labels. + * + * @param array $labels + * + * @return Chart + */ + public function labels($labels) + { + $this->labels = $labels; + + return $this; + } + + /** + * Set chart values. + * + * @param array $values + * + * @return Chart + */ + public function values($values) + { + $this->values = $values; + + return $this; + } + + /** + * Set the chart element label. + * + * @param string $label + * + * @return Chart + */ + public function elementLabel($label) + { + $this->element_label = $label; + + return $this; + } + + /** + * Set chart title. + * + * @param string $title + * + * @return Chart + */ + public function title($title) + { + $this->title = $title; + + return $this; + } + + /** + * Set chart credits enabled or Disable. Default credits enable. + * + * @param bool $credits + * + * @return Chart + */ + public function credits($credits) + { + $this->credits = $credits; + + return $this; + } + + /** + * Set chart colors. + * + * @param array $colors + * + * @return Chart + */ + public function colors($colors) + { + $this->colors = $colors; + + return $this; + } + + /** + * Set chart width. + * + * @param int $width + * + * @return Chart + */ + public function width($width) + { + $this->width = $width; + + return $this; + } + + /** + * Set chart height. + * + * @param int $height + * + * @return Chart + */ + public function height($height) + { + $this->height = $height; + + return $this; + } + + /** + * Set chart dimensions (width, height). + * + * @param int $width + * @param int $height + * + * @return Chart + */ + public function dimensions($width, $height) + { + $this->width = $width; + $this->height = $height; + + return $this; + } + + /** + * Set if chart is responsive (will ignore dimensions if true). + * + * @param bool $responsive + * + * @return Chart + */ + public function responsive($responsive) + { + $this->responsive = $responsive; + + return $this; + } + + /** + * Set a custom view to be used. + * + * @param string $view + * + * @return Chart + */ + public function view($view) + { + $this->view = $view; + + return $this; + } + + /** + * Set whether a chart's legend is shown (where applicable). + * + * @param bool $legend + * + * @return Chart + */ + public function legend($legend) + { + $this->legend = $legend; + + return $this; + } + + /** + * Set the title of a chart's x-axis (where applicable). + * + * @param bool $x_axis_title + * + * @return Chart + */ + public function xAxisTitle($x_axis_title) + { + $this->x_axis_title = $x_axis_title; + + return $this; + } + + /** + * Set the title of a chart's y-axis (where applicable). + * + * @param bool $y_axis_title + * + * @return Chart + */ + public function yAxisTitle($y_axis_title) + { + $this->y_axis_title = $y_axis_title; + + return $this; + } + + /** + * Determines if the chart should be exportable (Only if type is suported). + * + * @param bool $export + * + * @return Chart + */ + public function export($export) + { + $this->export = $export; + + return $this; + } +} diff --git a/Laravel/vendor/jenssegers/date/LICENSE b/Laravel/vendor/jenssegers/date/LICENSE new file mode 100644 index 0000000..229071a --- /dev/null +++ b/Laravel/vendor/jenssegers/date/LICENSE @@ -0,0 +1,20 @@ +The MIT License (MIT) + +Copyright (c) 2015 Jens Segers + +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/Laravel/vendor/jenssegers/date/README.md b/Laravel/vendor/jenssegers/date/README.md new file mode 100644 index 0000000..90d93d0 --- /dev/null +++ b/Laravel/vendor/jenssegers/date/README.md @@ -0,0 +1,266 @@ +Date +==== + +[![Latest Stable Version](http://img.shields.io/github/release/jenssegers/date.svg)](https://packagist.org/packages/jenssegers/date) [![Total Downloads](http://img.shields.io/packagist/dm/jenssegers/date.svg)](https://packagist.org/packages/jenssegers/date) [![Build Status](http://img.shields.io/travis/jenssegers/date.svg)](https://travis-ci.org/jenssegers/date) [![Coverage Status](http://img.shields.io/coveralls/jenssegers/laravel-date.svg)](https://coveralls.io/r/jenssegers/date?branch=master) [![Donate](https://img.shields.io/badge/donate-paypal-blue.svg)](https://www.paypal.me/jenssegers) + +This date library extends [Carbon](https://github.com/briannesbitt/Carbon) with multi-language support. Methods such as `format`, `diffForHumans`, `parse`, `createFromFormat` and the new `timespan`, will now be translated based on your locale. + +Installation +------------ + +Install using composer: + +```bash +composer require jenssegers/date +``` + +Laravel +------- + +There is a service provider included for integration with the Laravel framework. This provider will get the application locale setting and use this for translations. To register the service provider, add the following to the providers array in `config/app.php`: + +```php +'Jenssegers\Date\DateServiceProvider', +``` + +You can also add it as a Facade in `config/app.php`: + +```php +'Date' => Jenssegers\Date\Date::class, +``` + +Languages +--------- + +This package contains language files for the following languages: + + - Albanian + - Arabic + - Azerbaijani + - Bangla + - Basque + - Brazilian Portuguese + - Bulgarian + - Catalan + - Croatian + - Chinese Simplified + - Chinese Traditional + - Czech + - Danish + - Dutch + - English + - Esperanto + - Estonian + - Finnish + - French + - Galician + - Georgian + - German + - Greek + - Hebrew + - Hindi + - Hungarian + - Icelandic + - Indonesian + - Italian + - Japanese + - Kazakh + - Korean + - Latvian + - Lithuanian + - Macedonian + - Malay + - Norwegian + - Polish + - Portuguese + - Persian (Farsi) + - Romanian + - Russian + - Thai + - Serbian (latin) + - Serbian (cyrillic) + - Slovak + - Slovenian + - Spanish + - Swedish + - Turkish + - Turkmen + - Ukrainian + - Vietnamese + - Welsh + +Usage +----- + +The Date class extends the Carbon methods such as `format` and `diffForHumans`n and translates them based on your locale: + +```php +use Jenssegers\Date\Date; + +Date::setLocale('nl'); + +echo Date::now()->format('l j F Y H:i:s'); // zondag 28 april 2013 21:58:16 + +echo Date::parse('-1 day')->diffForHumans(); // 1 dag geleden +``` + +The Date class also added some aliases and additional methods such as: `ago` which is an alias for `diffForHumans`, and the `timespan` method: + +```php +echo $date->timespan(); // 3 months, 1 week, 1 day, 3 hours, 20 minutes +``` + +Methods such as `parse` and `createFromFormat` also support "reverse translations". When calling these methods with translated input, it will try to translate it to English before passing it to DateTime: + +```php +$date = Date::createFromFormat('l d F Y', 'zaterdag 21 maart 2015'); +``` + +Carbon +------ + +Carbon is the library the Date class is based on. All of the original Carbon operations are still available, check out https://github.com/briannesbitt/Carbon for more information. Here are some of the available methods: + +### Creating dates + +You can create Date objects just like the DateTime object (http://www.php.net/manual/en/datetime.construct.php): + +```php +$date = new Date(); +$date = new Date('2000-01-31'); +$date = new Date('2000-01-31 12:00:00'); + +// With time zone +$date = new Date('2000-01-31', new DateTimeZone('Europe/Brussels')); +``` + +You can skip the creation of a DateTimeZone object: + +```php +$date = new Date('2000-01-31', 'Europe/Brussels'); +``` + +Create Date objects from a relative format (http://www.php.net/manual/en/datetime.formats.relative.php): + +```php +$date = new Date('now'); +$date = new Date('today'); +$date = new Date('+1 hour'); +$date = new Date('next monday'); +``` + +This is also available using these static methods: + +```php +$date = Date::parse('now'); +$date = Date::now(); +``` + +Creating a Date from a timestamp: + +```php +$date = new Date(1367186296); +``` + +Or from an existing date or time: + +```php +$date = Date::createFromDate(2000, 1, 31); +$date = Date::createFromTime(12, 0, 0); +$date = Date::create(2000, 1, 31, 12, 0, 0); +``` + +### Formatting Dates + +You can format a Date object like the DateTime object (http://www.php.net/manual/en/function.date.php): + +```php +echo Date::now()->format('Y-m-d'); // 2000-01-31 +``` + +The Date object can be cast to a string: + +```php +echo Date::now(); // 2000-01-31 12:00:00 +``` + +Get a human readable output (alias for diffForHumans): + +```php +echo $date->ago(); // 5 days ago +``` + +Calculate a timespan: + +```php +$date = new Date('+1000 days'); +echo Date::now()->timespan($date); +// 2 years, 8 months, 3 weeks, 5 days + +// or even +echo Date::now()->timespan('+1000 days'); +``` + +Get years since date: + +```php +$date = new Date('-10 years'); +echo $date->age; // 10 + +$date = new Date('+10 years'); +echo $date->age; // -10 +``` + +### Manipulating Dates + +You can manipulate by using the *add* and *sub* methods, with relative intervals (http://www.php.net/manual/en/datetime.formats.relative.php): + +```php +$yesterday = Date::now()->sub('1 day'); +$tomorrow = Date::now()->add('1 day'); + +// ISO 8601 +$date = Date::now()->add('P2Y4DT6H8M'); +``` + +You can access and modify all date attributes as an object: + +```php +$date->year = 2013: +$date->month = 1; +$date->day = 31; + +$date->hour = 12; +$date->minute = 0; +$date->second = 0; +``` + +Contributing +------------ + +You can easily add new languages by adding a new language file to the *lang* directory. These language entries support pluralization. By using a "pipe" character, you may separate the singular and plural forms of a string: + +```php +'hour' => '1 hour|:count hours', +'minute' => '1 minute|:count minutes', +'second' => '1 second|:count seconds', +``` + +Some languages have a different unit translation when they are used in combination with a suffix like 'ago'. For those situations you can add additional translations by adding the suffix to the unit as a key: + +```php +'year' => '1 Jahr|:count Jahre', +'year_ago' => '1 Jahr|:count Jahren', +``` + +There is also a `generator.php` script that can be used to quickly output day and month translations for a specific locale. If you want to add a new language, this can speed up the process: + +```bash +php generator.php nl_NL +``` + +**NOTE!** If you are adding languages, please check the rules about the capitalization of month and day names: http://meta.wikimedia.org/wiki/Capitalization_of_Wiktionary_pages#Capitalization_of_month_names + +## License + +Laravel Date is licensed under [The MIT License (MIT)](LICENSE). diff --git a/Laravel/vendor/jenssegers/date/composer.json b/Laravel/vendor/jenssegers/date/composer.json new file mode 100644 index 0000000..e793112 --- /dev/null +++ b/Laravel/vendor/jenssegers/date/composer.json @@ -0,0 +1,40 @@ +{ + "name": "jenssegers/date", + "description": "A date library to help you work with dates in different languages", + "keywords": ["laravel", "date", "time", "datetime", "i18n", "translation", "carbon"], + "homepage": "https://github.com/jenssegers/date", + "license" : "MIT", + "authors": [ + { + "name": "Jens Segers", + "homepage": "https://jenssegers.com" + } + ], + "require": { + "php": ">=5.4", + "nesbot/carbon": "^1.0", + "symfony/translation": "^2.7|^3.0" + }, + "require-dev": { + "phpunit/phpunit": "^4.0|^5.0|^6.0", + "satooshi/php-coveralls": "^1.0" + }, + "autoload": { + "psr-4": { + "Jenssegers\\Date\\": "src/" + } + }, + "extra": { + "branch-alias": { + "dev-master": "3.1-dev" + }, + "laravel": { + "providers": [ + "Jenssegers\\Date\\DateServiceProvider" + ], + "aliases": { + "Date": "Jenssegers\\Date\\Date" + } + } + } +} diff --git a/Laravel/vendor/jenssegers/date/generator.php b/Laravel/vendor/jenssegers/date/generator.php new file mode 100644 index 0000000..f84d99c --- /dev/null +++ b/Laravel/vendor/jenssegers/date/generator.php @@ -0,0 +1,52 @@ +getTimestamp()); + $translations[$month] = $translation; + + echo "'" . $month . "'\t=> '" . $translation . "',\n"; +} + +echo "\n"; + +foreach ($days as $day) { + $date = new Date($day); + $translation = strftime('%A', $date->getTimestamp()); + $translations[$day] = $translation; + + echo "'" . $day . "'\t=> '" . $translation . "',\n"; +} diff --git a/Laravel/vendor/jenssegers/date/src/Date.php b/Laravel/vendor/jenssegers/date/src/Date.php new file mode 100644 index 0000000..449948b --- /dev/null +++ b/Laravel/vendor/jenssegers/date/src/Date.php @@ -0,0 +1,508 @@ +setTimestamp($timestamp); + } + } + + /** + * Create and return new Date instance. + * + * @param string $time + * @param string|DateTimeZone $timezone + * @return Date + */ + public static function make($time = null, $timezone = null) + { + return static::parse($time, $timezone); + } + + /** + * Create a Date instance from a string. + * + * @param string $time + * @param string|DateTimeZone $timezone + * @return Date + */ + public static function parse($time = null, $timezone = null) + { + if ($time instanceof Carbon) { + return new static( + $time->toDateTimeString(), + $timezone ?: $time->getTimezone() + ); + } + + if (! is_int($time)) { + $time = static::translateTimeString($time); + } + + return new static($time, $timezone); + } + + /** + * @inheritdoc + */ + public static function createFromFormat($format, $time, $timezone = null) + { + $time = static::translateTimeString($time); + + return parent::createFromFormat($format, $time, $timezone); + } + + /** + * @inheritdoc + */ + public function diffForHumans(Carbon $since = null, $absolute = false, $short = false) + { + // Are we comparing against another date? + $relative = ! is_null($since); + + if (is_null($since)) { + $since = new static('now', $this->getTimezone()); + } + + // Are we comparing to a date in the future? + $future = $since->getTimestamp() < $this->getTimestamp(); + + // Calculate difference between the 2 dates. + $diff = $this->diff($since); + + switch (true) { + case $diff->y > 0: + $unit = $short ? 'y' : 'year'; + $count = $diff->y; + break; + case $diff->m > 0: + $unit = $short ? 'm' : 'month'; + $count = $diff->m; + break; + case $diff->d > 0: + $unit = $short ? 'd' : 'day'; + $count = $diff->d; + if ($count >= static::DAYS_PER_WEEK) { + $unit = $short ? 'w' : 'week'; + $count = (int) ($count / static::DAYS_PER_WEEK); + } + break; + case $diff->h > 0: + $unit = $short ? 'h' : 'hour'; + $count = $diff->h; + break; + case $diff->i > 0: + $unit = $short ? 'min' : 'minute'; + $count = $diff->i; + break; + default: + $count = $diff->s; + $unit = $short ? 's' : 'second'; + break; + } + + if ($count === 0) { + $count = 1; + } + + // Select the suffix. + if ($relative) { + $suffix = $future ? 'after' : 'before'; + } else { + $suffix = $future ? 'from_now' : 'ago'; + } + + // Get translator instance. + $lang = $this->getTranslator(); + + // Some languages have different unit translations when used in combination + // with a specific suffix. Here we will check if there is an optional + // translation for that specific suffix and use it if it exists. + if ($lang->trans("${unit}_diff") != "${unit}_diff") { + $ago = $lang->transChoice("${unit}_diff", $count, [':count' => $count]); + } elseif ($lang->trans("${unit}_${suffix}") != "${unit}_${suffix}") { + $ago = $lang->transChoice("${unit}_${suffix}", $count, [':count' => $count]); + } else { + $ago = $lang->transChoice($unit, $count, [':count' => $count]); + } + + if ($absolute) { + return $ago; + } + + return $lang->transChoice($suffix, $count, [':time' => $ago]); + } + + /** + * Alias for diffForHumans. + * + * @param Date $since + * @param bool $absolute Removes time difference modifiers ago, after, etc + * @return string + */ + public function ago($since = null, $absolute = false) + { + return $this->diffForHumans($since, $absolute); + } + + /** + * Alias for diffForHumans. + * + * @param Date $since + * @return string + */ + public function until($since = null) + { + return $this->ago($since); + } + + /** + * @inheritdoc + */ + public function format($format) + { + $replace = []; + + // Loop all format characters and check if we can translate them. + for ($i = 0; $i < strlen($format); $i++) { + $character = $format[$i]; + + // Check if we can replace it with a translated version. + if (in_array($character, ['D', 'l', 'F', 'M'])) { + // Check escaped characters. + if ($i > 0 and $format[$i - 1] == '\\') { + continue; + } + + switch ($character) { + case 'D': + $key = parent::format('l'); + break; + case 'M': + $key = parent::format('F'); + break; + default: + $key = parent::format($character); + } + + // The original result. + $original = parent::format($character); + + // Translate. + $lang = $this->getTranslator(); + + // For declension support, we need to check if the month is lead by a numeric number. + // If so, we will use the second translation choice if it is available. + if (in_array($character, ['F', 'M'])) { + $choice = (($i - 2) >= 0 and in_array($format[$i - 2], ['d', 'j'])) ? 1 : 0; + + $translated = $lang->transChoice(mb_strtolower($key), $choice); + } else { + $translated = $lang->trans(mb_strtolower($key)); + } + + // Short notations. + if (in_array($character, ['D', 'M'])) { + $toTranslate = mb_strtolower($original); + $shortTranslated = $lang->trans($toTranslate); + + if ($shortTranslated === $toTranslate) { + // use the first 3 characters as short notation + $translated = mb_substr($translated, 0, 3); + } else { + // use translated version + $translated = $shortTranslated; + } + } + + // Add to replace list. + if ($translated and $original != $translated) { + $replace[$original] = $translated; + } + } + } + + // Replace translations. + if ($replace) { + return str_replace(array_keys($replace), array_values($replace), parent::format($format)); + } + + return parent::format($format); + } + + /** + * Gets the timespan between this date and another date. + * + * @param Date $time + * @param string|DateTimeZone $timezone + * @return int + */ + public function timespan($time = null, $timezone = null) + { + // Get translator + $lang = $this->getTranslator(); + + // Create Date instance if needed + if (! $time instanceof static) { + $time = Date::parse($time, $timezone); + } + + $units = [ + 'y' => 'year', + 'm' => 'month', + 'w' => 'week', + 'd' => 'day', + 'h' => 'hour', + 'i' => 'minute', + 's' => 'second', + ]; + + // Get DateInterval and cast to array + $interval = (array) $this->diff($time); + + // Get weeks + $interval['w'] = (int) ($interval['d'] / 7); + $interval['d'] = $interval['d'] % 7; + + // Get ready to build + $str = []; + + // Loop all units and build string + foreach ($units as $k => $unit) { + if ($interval[$k]) { + $str[] = $lang->transChoice($unit, $interval[$k], [':count' => $interval[$k]]); + } + } + + return implode(', ', $str); + } + + /** + * Adds an amount of days, months, years, hours, minutes and seconds to a Date object. + * + * @param DateInterval|string $interval + * @return Date|bool + */ + public function add($interval) + { + if (is_string($interval)) { + // Check for ISO 8601 + if (strtoupper(substr($interval, 0, 1)) == 'P') { + $interval = new DateInterval($interval); + } else { + $interval = DateInterval::createFromDateString($interval); + } + } + + return parent::add($interval) ? $this : false; + } + + /** + * Subtracts an amount of days, months, years, hours, minutes and seconds from a DateTime object. + * + * @param DateInterval|string $interval + * @return Date|bool + */ + public function sub($interval) + { + if (is_string($interval)) { + // Check for ISO 8601 + if (strtoupper(substr($interval, 0, 1)) == 'P') { + $interval = new DateInterval($interval); + } else { + $interval = DateInterval::createFromDateString($interval); + } + } + + return parent::sub($interval) ? $this : false; + } + + /** + * @inheritdoc + */ + public static function getLocale() + { + return static::getTranslator()->getLocale(); + } + + /** + * @inheritdoc + */ + public static function setLocale($locale) + { + // Use RFC 5646 for filenames. + $resource = __DIR__.'/Lang/'.str_replace('_', '-', $locale).'.php'; + + if (! file_exists($resource)) { + static::setLocale(static::getFallbackLocale()); + + return; + } + + // Symfony locale format. + $locale = str_replace('-', '_', $locale); + + // Set locale and load translations. + static::getTranslator()->setLocale($locale); + static::getTranslator()->addResource('array', require $resource, $locale); + } + + /** + * Set the fallback locale. + * + * @param string $locale + * @return void + */ + public static function setFallbackLocale($locale) + { + static::$fallbackLocale = $locale; + static::getTranslator()->setFallbackLocales([$locale]); + } + + /** + * Get the fallback locale. + * + * @return string + */ + public static function getFallbackLocale() + { + return static::$fallbackLocale; + } + + /** + * @inheritdoc + */ + public static function getTranslator() + { + if (static::$translator === null) { + static::$translator = new Translator('en'); + static::$translator->addLoader('array', new ArrayLoader()); + static::setLocale('en'); + } + + return static::$translator; + } + + /** + * @inheritdoc + */ + public static function setTranslator(TranslatorInterface $translator) + { + static::$translator = $translator; + } + + /** + * Translate a locale based time string to its english equivalent. + * + * @param string $time + * @return string + */ + public static function translateTimeString($time) + { + // Don't run translations for english. + if (static::getLocale() == 'en') { + return $time; + } + + // All the language file items we can translate. + $keys = [ + 'january', + 'february', + 'march', + 'april', + 'may', + 'june', + 'july', + 'august', + 'september', + 'october', + 'november', + 'december', + 'monday', + 'tuesday', + 'wednesday', + 'thursday', + 'friday', + 'saturday', + 'sunday', + ]; + + // Get all the language lines of the current locale. + $all = static::getTranslator()->getCatalogue()->all(); + $terms = array_intersect_key($all['messages'], array_flip((array) $keys)); + + // Split terms with a | sign. + foreach ($terms as $i => $term) { + if (strpos($term, '|') === false) { + continue; + } + + // Split term options. + $options = explode('|', $term); + + // Remove :count and {count} placeholders. + $options = array_map(function ($option) { + $option = trim(str_replace(':count', '', $option)); + $option = preg_replace('/({\d+(,(\d+|Inf))?}|\[\d+(,(\d+|Inf))?\])/', '', $option); + + return $option; + }, $options); + + $terms[$i] = $options; + } + + // Replace the localized words with English words. + $translated = $time; + foreach ($terms as $english => $localized) { + $translated = str_ireplace($localized, $english, $translated); + } + + return $translated; + } +} diff --git a/Laravel/vendor/jenssegers/date/src/DateServiceProvider.php b/Laravel/vendor/jenssegers/date/src/DateServiceProvider.php new file mode 100644 index 0000000..f06ec69 --- /dev/null +++ b/Laravel/vendor/jenssegers/date/src/DateServiceProvider.php @@ -0,0 +1,58 @@ +app['events']->listen('locale.changed', function () { + $this->setLocale(); + }); + + $this->setLocale(); + } + + /** + * Set the locale. + * + */ + protected function setLocale() + { + $locale = $this->app['translator']->getLocale(); + + Date::setLocale($locale); + } + + /** + * Register the service provider. + * + * @return void + */ + public function register() + { + // Nothing. + } + + /** + * Get the services provided by the provider. + * + * @return array + */ + public function provides() + { + return ['Date']; + } +} diff --git a/Laravel/vendor/jenssegers/date/src/Lang/ar.php b/Laravel/vendor/jenssegers/date/src/Lang/ar.php new file mode 100644 index 0000000..3503de9 --- /dev/null +++ b/Laravel/vendor/jenssegers/date/src/Lang/ar.php @@ -0,0 +1,48 @@ + 'منذ :time', + 'from_now' => ':time من الآن', + 'after' => 'بعد :time', + 'before' => 'قبل :time', + 'year' => '{0}سنة|{1}سنة|{2}سنتين|[3,10]:count سنوات|[11,Inf]:count سنة', + 'month' => '{0}شهر|{1}شهر|{2}شهرين|[3,10]:count أشهر|[11,Inf]:count شهر', + 'week' => '{0}أسبوع|{1}أسبوع|{2}أسبوعين|[3,10]:count أسابيع|[11,Inf]:count أسبوع', + 'day' => '{0}يوم|{1}يوم|{2}يومين|[3,10]:count أيام|[11,Inf]:count يوم', + 'hour' => '{0}ساعة|{1}ساعة|{2}ساعتين|[3,10]:count ساعات|[11,Inf]:count ساعة', + 'minute' => '{0}دقيقة|{1}دقيقة|{2}دقيقتين|[3,10]:count دقائق|[11,Inf]:count دقيقة', + 'second' => '{0}ثانية|{1}ثانية|{2}ثانيتين|[3,10]:count ثوان|[11,Inf]:count ثانية', + + 'january' => 'يناير', + 'february' => 'فبراير', + 'march' => 'مارس', + 'april' => 'إبريل', + 'may' => 'مايو', + 'june' => 'يونيو', + 'july' => 'يوليو', + 'august' => 'أغسطس', + 'september' => 'سبتمبر', + 'october' => 'أكتوبر', + 'november' => 'نوفمبر', + 'december' => 'ديسمبر', + + 'monday' => 'الاثنين', + 'tuesday' => 'الثلاثاء', + 'wednesday' => 'الأربعاء', + 'thursday' => 'الخميس', + 'friday' => 'الجمعة', + 'saturday' => 'السبت', + 'sunday' => 'الأحد', + +]; diff --git a/Laravel/vendor/jenssegers/date/src/Lang/az.php b/Laravel/vendor/jenssegers/date/src/Lang/az.php new file mode 100644 index 0000000..c2513b7 --- /dev/null +++ b/Laravel/vendor/jenssegers/date/src/Lang/az.php @@ -0,0 +1,48 @@ + ':time öncə', + 'from_now' => ':time sonra', + 'after' => ':time sonra', + 'before' => ':time öncə', + 'year' => ':count il', + 'month' => ':count ay', + 'week' => ':count həftə', + 'day' => ':count gün', + 'hour' => ':count saat', + 'minute' => ':count dəqiqə', + 'second' => ':count saniyə', + + 'january' => 'Yanvar', + 'february' => 'Fevral', + 'march' => 'Mart', + 'april' => 'Aprel', + 'may' => 'May', + 'june' => 'İyun', + 'july' => 'İyul', + 'august' => 'Avqust', + 'september' => 'Sentyabr', + 'october' => 'Oktyabr', + 'november' => 'Noyabr', + 'december' => 'Dekabr', + + 'monday' => 'Bazar ertəsi', + 'tuesday' => 'Çərşənbə axşamı', + 'wednesday' => 'Çərşənbə', + 'thursday' => 'Cümə axşamı', + 'friday' => 'Cümə', + 'saturday' => 'Şənbə', + 'sunday' => 'Bazar', + +]; diff --git a/Laravel/vendor/jenssegers/date/src/Lang/bd.php b/Laravel/vendor/jenssegers/date/src/Lang/bd.php new file mode 100644 index 0000000..fd8c06e --- /dev/null +++ b/Laravel/vendor/jenssegers/date/src/Lang/bd.php @@ -0,0 +1,48 @@ + ':time পূর্বে', + 'from_now' => ':time এখন থেকে', + 'after' => ':time পরে', + 'before' => ':time আগে', + 'year' => ':count বছর', + 'month' => ':count মাস', + 'week' => ':count সপ্তাহ', + 'day' => ':count দিন', + 'hour' => ':count ঘন্টা', + 'minute' => ':count মিনিট', + 'second' => ':count সেকেন্ড', + + 'january' => 'জানুয়ারী', + 'february' => 'ফেব্রুয়ারি', + 'march' => 'মার্চ', + 'april' => 'এপ্রিল', + 'may' => 'মে', + 'june' => 'জুন', + 'july' => 'জুলাই', + 'august' => 'আগস্ট', + 'september' => 'সেপ্টেম্বর', + 'october' => 'অক্টোবর', + 'november' => 'নভেম্বর', + 'december' => 'ডিসেম্বর', + + 'monday' => 'সোমবার', + 'tuesday' => 'মঙ্গলবার', + 'wednesday' => 'বুধবার', + 'thursday' => 'বৃহস্পতিবার', + 'friday' => 'শুক্রবার', + 'saturday' => 'শনিবার', + 'sunday' => 'রবিবার', + +]; diff --git a/Laravel/vendor/jenssegers/date/src/Lang/bg.php b/Laravel/vendor/jenssegers/date/src/Lang/bg.php new file mode 100644 index 0000000..3867370 --- /dev/null +++ b/Laravel/vendor/jenssegers/date/src/Lang/bg.php @@ -0,0 +1,48 @@ + 'преди :time', + 'from_now' => ':time от сега', + 'after' => 'след :time', + 'before' => 'преди :time', + 'year' => '1 година|:count години', + 'month' => '1 месец|:count месеца', + 'week' => '1 седмица|:count седмици', + 'day' => '1 ден|:count дни', + 'hour' => '1 час|:count часа', + 'minute' => '1 минута|:count минути', + 'second' => '1 секунда|:count секунди', + + 'january' => 'януари', + 'february' => 'февруари', + 'march' => 'март', + 'april' => 'април', + 'may' => 'май', + 'june' => 'юни', + 'july' => 'юли', + 'august' => 'август', + 'september' => 'септември', + 'october' => 'октомври', + 'november' => 'ноември', + 'december' => 'декември', + + 'monday' => 'понеделник', + 'tuesday' => 'вторник', + 'wednesday' => 'сряда', + 'thursday' => 'четвъртък', + 'friday' => 'петък', + 'saturday' => 'събота', + 'sunday' => 'неделя', + +]; diff --git a/Laravel/vendor/jenssegers/date/src/Lang/ca.php b/Laravel/vendor/jenssegers/date/src/Lang/ca.php new file mode 100644 index 0000000..ad6531b --- /dev/null +++ b/Laravel/vendor/jenssegers/date/src/Lang/ca.php @@ -0,0 +1,48 @@ + 'Fa :time', + 'from_now' => 'Dins de :time', + 'after' => ':time després', + 'before' => ':time abans', + 'year' => '1 any|:count anys', + 'month' => '1 mes|:count mesos', + 'week' => '1 setmana|:count setmanes', + 'day' => '1 dia|:count díes', + 'hour' => '1 hora|:count hores', + 'minute' => '1 minut|:count minuts', + 'second' => '1 segon|:count segons', + + 'january' => 'gener', + 'february' => 'febrer', + 'march' => 'març', + 'april' => 'abril', + 'may' => 'maig', + 'june' => 'juny', + 'july' => 'juliol', + 'august' => 'agost', + 'september' => 'setembre', + 'october' => 'octubre', + 'november' => 'novembre', + 'december' => 'desembre', + + 'monday' => 'dilluns', + 'tuesday' => 'dimarts', + 'wednesday' => 'dimecres', + 'thursday' => 'dijous', + 'friday' => 'divendres', + 'saturday' => 'dissabte', + 'sunday' => 'diumenge', + +]; diff --git a/Laravel/vendor/jenssegers/date/src/Lang/cs.php b/Laravel/vendor/jenssegers/date/src/Lang/cs.php new file mode 100644 index 0000000..f263e88 --- /dev/null +++ b/Laravel/vendor/jenssegers/date/src/Lang/cs.php @@ -0,0 +1,55 @@ + 'před :time', + 'from_now' => 'za :time', + 'after' => ':time později', + 'before' => ':time předtím', + 'year' => 'rok|:count roky|:count let', + 'month' => 'měsíc|:count měsíce|:count měsíců', + 'week' => 'týden|:count týdny|:count týdnů', + 'day' => 'den|:count dny|:count dní', + 'hour' => 'hodinu|:count hodiny|:count hodin', + 'minute' => 'minutu|:count minuty|:count minut', + 'second' => 'sekundu|:count sekundy|:count sekund', + + 'january' => 'leden', + 'february' => 'únor', + 'march' => 'březen', + 'april' => 'duben', + 'may' => 'květen', + 'june' => 'červen', + 'july' => 'červenec', + 'august' => 'srpen', + 'september' => 'září', + 'october' => 'říjen', + 'november' => 'listopad', + 'december' => 'prosinec', + + 'monday' => 'pondělí', + 'tuesday' => 'uterý', + 'wednesday' => 'středa', + 'thursday' => 'čtvrtek', + 'friday' => 'pátek', + 'saturday' => 'sobota', + 'sunday' => 'neděle', + + 'year_ago' => 'rokem|[2,Inf]:count lety', + 'month_ago' => 'měsícem|[2,Inf]:count měsíci', + 'week_ago' => 'týdnem|[2,Inf]:count týdny', + 'day_ago' => 'jedním dnem|[2,Inf]:count dny', + 'hour_ago' => 'hodinou|[2,Inf]:count hodinami', + 'minute_ago' => 'minutou|[2,Inf]:count minutami', + 'second_ago' => '{0}0 sekundami|{1}sekundou|[2,Inf]:count sekundami', +]; diff --git a/Laravel/vendor/jenssegers/date/src/Lang/cy.php b/Laravel/vendor/jenssegers/date/src/Lang/cy.php new file mode 100644 index 0000000..02f2cca --- /dev/null +++ b/Laravel/vendor/jenssegers/date/src/Lang/cy.php @@ -0,0 +1,48 @@ + ':time yn ôl', + 'from_now' => 'mewn :time', + 'after' => ':time ar ôl', + 'before' => ':time cyn', + 'year' => '1 blwyddyn|:count flynedd|:count mlynedd|:count mlynedd', + 'month' => '1 mis|:count fis|:count mis|:count mis', + 'week' => '1 wythnos|:count wythnos|:count wythnos|:count wythnos', + 'day' => '1 diwrnod|:count ddiwrnod|:count diwrnod|:count diwrnod', + 'hour' => ':count awr', + 'minute' => '1 munud|:count funud|:count munud|:count munud', + 'second' => ':count eiliad', + + 'january' => 'Ionawr', + 'february' => 'Chwefror', + 'march' => 'Mawrth', + 'april' => 'Ebrill', + 'may' => 'Mai', + 'june' => 'Mehefin', + 'july' => 'Gorffenaf', + 'august' => 'Awst', + 'september' => 'Medi', + 'october' => 'Hydref', + 'november' => 'Tachwedd', + 'december' => 'Rhagfyr', + + 'monday' => 'Dydd Llun', + 'tuesday' => 'Dydd Mawrth', + 'wednesday' => 'Dydd Mercher', + 'thursday' => 'Dydd Iau', + 'friday' => 'Dydd Gwener', + 'saturday' => 'Dydd Sadwrn', + 'sunday' => 'Dydd Sul', + +]; diff --git a/Laravel/vendor/jenssegers/date/src/Lang/da.php b/Laravel/vendor/jenssegers/date/src/Lang/da.php new file mode 100644 index 0000000..a2b6531 --- /dev/null +++ b/Laravel/vendor/jenssegers/date/src/Lang/da.php @@ -0,0 +1,48 @@ + ':time siden', + 'from_now' => 'om :time', + 'after' => ':time efter', + 'before' => ':time før', + 'year' => '1 år|:count år', + 'month' => '1 måned|:count måneder', + 'week' => '1 uge|:count uger', + 'day' => '1 dag|:count dage', + 'hour' => '1 time|:count timer', + 'minute' => '1 minut|:count minutter', + 'second' => '1 sekund|:count sekunder', + + 'january' => 'januar', + 'february' => 'februar', + 'march' => 'marts', + 'april' => 'april', + 'may' => 'maj', + 'june' => 'juni', + 'july' => 'juli', + 'august' => 'august', + 'september' => 'september', + 'october' => 'oktober', + 'november' => 'november', + 'december' => 'december', + + 'monday' => 'mandag', + 'tuesday' => 'tirsdag', + 'wednesday' => 'onsdag', + 'thursday' => 'torsdag', + 'friday' => 'fredag', + 'saturday' => 'lørdag', + 'sunday' => 'søndag', + +]; diff --git a/Laravel/vendor/jenssegers/date/src/Lang/de.php b/Laravel/vendor/jenssegers/date/src/Lang/de.php new file mode 100644 index 0000000..8cae7ae --- /dev/null +++ b/Laravel/vendor/jenssegers/date/src/Lang/de.php @@ -0,0 +1,77 @@ + 'vor :time', + 'from_now' => 'in :time', + 'after' => ':time später', + 'before' => ':time vorher', + 'year' => '1 Jahr|:count Jahre', + 'month' => '1 Monat|:count Monate', + 'week' => '1 Woche|:count Wochen', + 'day' => '1 Tag|:count Tage', + 'hour' => '1 Stunde|:count Stunden', + 'minute' => '1 Minute|:count Minuten', + 'second' => '1 Sekunde|:count Sekunden', + + 'january' => 'Januar', + 'february' => 'Februar', + 'march' => 'März', + 'april' => 'April', + 'may' => 'Mai', + 'june' => 'Juni', + 'july' => 'Juli', + 'august' => 'August', + 'september' => 'September', + 'october' => 'Oktober', + 'november' => 'November', + 'december' => 'Dezember', + + 'jan' => 'Jan', + 'feb' => 'Feb', + 'mar' => 'Mär', + 'apr' => 'Apr', + 'may' => 'Mai', + 'jun' => 'Jun', + 'jul' => 'Jul', + 'aug' => 'Aug', + 'sep' => 'Sep', + 'oct' => 'Okt', + 'nov' => 'Nov', + 'dec' => 'Dez', + + 'monday' => 'Montag', + 'tuesday' => 'Dienstag', + 'wednesday' => 'Mittwoch', + 'thursday' => 'Donnerstag', + 'friday' => 'Freitag', + 'saturday' => 'Samstag', + 'sunday' => 'Sonntag', + + 'mon' => 'Mo', + 'tue' => 'Di', + 'wed' => 'Mi', + 'thu' => 'Do', + 'fri' => 'Fr', + 'sat' => 'Sa', + 'sun' => 'So', + + 'year_diff' => '1 Jahr|:count Jahren', + 'month_diff' => '1 Monat|:count Monaten', + 'week_diff' => '1 Woche|:count Wochen', + 'day_diff' => '1 Tag|:count Tagen', + 'hour_diff' => '1 Stunde|:count Stunden', + 'minute_diff' => '1 Minute|:count Minuten', + 'second_diff' => '1 Sekunde|:count Sekunden', + +]; diff --git a/Laravel/vendor/jenssegers/date/src/Lang/el.php b/Laravel/vendor/jenssegers/date/src/Lang/el.php new file mode 100644 index 0000000..0c28e6c --- /dev/null +++ b/Laravel/vendor/jenssegers/date/src/Lang/el.php @@ -0,0 +1,51 @@ + 'πριν από :time', + 'from_now' => 'σε :time από τώρα', + 'after' => ':time μετά', + 'before' => ':time πριν', + 'year' => '1 χρόνο|:count χρόνια', + 'month' => '1 μήνα|:count μήνες', + 'week' => '1 εβδομάδα|:count εβδομάδες', + 'day' => '1 μέρα|:count μέρες', + 'hour' => '1 ώρα|:count ώρες', + 'minute' => '1 λεπτό|:count λεπτά', + 'second' => '1 δευτερόλεπτο|:count δευτερόλεπτα', + + 'january' => '{0}Ιανουάριος|{1}Ιανουαρίου', + 'february' => '{0}Φεβρουάριος|{1}Φεβρουαρίου', + 'march' => '{0}Μάρτιος|{1}Μαρτίου', + 'april' => '{0}Απρίλιος|{1}Απριλίου', + 'may' => '{0}Μάιος|{1}Μαΐου', + 'june' => '{0}Ιούνιος|{1}Ιουνίου', + 'july' => '{0}Ιούλιος|{1}Ιουλίου', + 'august' => '{0}Αύγουστος|{1}Αυγούστου', + 'september' => '{0}Σεπτέμβριος|{1}Σεπτεμβρίου', + 'october' => '{0}Οκτώβριος|{1}Οκτωβρίου', + 'november' => '{0}Νοέμβριος|{1}Νοεμβρίου', + 'december' => '{0}Δεκέμβριος|{1}Δεκεμβρίου', + + 'monday' => 'Δευτέρα', + 'tuesday' => 'Τρίτη', + 'wednesday' => 'Τετάρτη', + 'thursday' => 'Πέμπτη', + 'friday' => 'Παρασκευή', + 'saturday' => 'Σάββατο', + 'sunday' => 'Κυριακή', + + 'am' => 'πμ', + 'pm' => 'μμ', + +]; diff --git a/Laravel/vendor/jenssegers/date/src/Lang/en.php b/Laravel/vendor/jenssegers/date/src/Lang/en.php new file mode 100644 index 0000000..79259cb --- /dev/null +++ b/Laravel/vendor/jenssegers/date/src/Lang/en.php @@ -0,0 +1,48 @@ + ':time ago', + 'from_now' => ':time from now', + 'after' => ':time after', + 'before' => ':time before', + 'year' => '1 year|:count years', + 'month' => '1 month|:count months', + 'week' => '1 week|:count weeks', + 'day' => '1 day|:count days', + 'hour' => '1 hour|:count hours', + 'minute' => '1 minute|:count minutes', + 'second' => '1 second|:count seconds', + + 'january' => 'January', + 'february' => 'February', + 'march' => 'March', + 'april' => 'April', + 'may' => 'May', + 'june' => 'June', + 'july' => 'July', + 'august' => 'August', + 'september' => 'September', + 'october' => 'October', + 'november' => 'November', + 'december' => 'December', + + 'monday' => 'Monday', + 'tuesday' => 'Tuesday', + 'wednesday' => 'Wednesday', + 'thursday' => 'Thursday', + 'friday' => 'Friday', + 'saturday' => 'Saturday', + 'sunday' => 'Sunday', + +]; diff --git a/Laravel/vendor/jenssegers/date/src/Lang/eo.php b/Laravel/vendor/jenssegers/date/src/Lang/eo.php new file mode 100644 index 0000000..b2ecb2c --- /dev/null +++ b/Laravel/vendor/jenssegers/date/src/Lang/eo.php @@ -0,0 +1,48 @@ + 'antaŭ :time', + 'from_now' => 'je :time', + 'after' => ':time poste', + 'before' => ':time antaŭe', + 'year' => '1 jaro|:count jaroj', + 'month' => '1 monato|:count monatoj', + 'week' => '1 semajno|:count semajnoj', + 'day' => '1 tago|:count tagoj', + 'hour' => '1 horo|:count horoj', + 'minute' => '1 minuto|:count minutoj', + 'second' => '1 sekundo|:count sekundoj', + + 'january' => 'januaro', + 'february' => 'februaro', + 'march' => 'marto', + 'april' => 'aprilo', + 'may' => 'majo', + 'june' => 'junio', + 'july' => 'julio', + 'august' => 'aŭgusto', + 'september' => 'septembro', + 'october' => 'oktobro', + 'november' => 'novembro', + 'december' => 'decembro', + + 'monday' => 'lundo', + 'tuesday' => 'mardo', + 'wednesday' => 'merkredo', + 'thursday' => 'ĵaŭdo', + 'friday' => 'vendredo', + 'saturday' => 'sabato', + 'sunday' => 'dimanĉo', + +]; diff --git a/Laravel/vendor/jenssegers/date/src/Lang/es.php b/Laravel/vendor/jenssegers/date/src/Lang/es.php new file mode 100644 index 0000000..e60bf3c --- /dev/null +++ b/Laravel/vendor/jenssegers/date/src/Lang/es.php @@ -0,0 +1,48 @@ + 'hace :time', + 'from_now' => 'dentro de :time', + 'after' => ':time después', + 'before' => ':time antes', + 'year' => '1 año|:count años', + 'month' => '1 mes|:count meses', + 'week' => '1 semana|:count semanas', + 'day' => '1 día|:count días', + 'hour' => '1 hora|:count horas', + 'minute' => '1 minuto|:count minutos', + 'second' => '1 segundo|:count segundos', + + 'january' => 'enero', + 'february' => 'febrero', + 'march' => 'marzo', + 'april' => 'abril', + 'may' => 'mayo', + 'june' => 'junio', + 'july' => 'julio', + 'august' => 'agosto', + 'september' => 'septiembre', + 'october' => 'octubre', + 'november' => 'noviembre', + 'december' => 'diciembre', + + 'monday' => 'lunes', + 'tuesday' => 'martes', + 'wednesday' => 'miércoles', + 'thursday' => 'jueves', + 'friday' => 'viernes', + 'saturday' => 'sábado', + 'sunday' => 'domingo', + +]; diff --git a/Laravel/vendor/jenssegers/date/src/Lang/et.php b/Laravel/vendor/jenssegers/date/src/Lang/et.php new file mode 100644 index 0000000..fbbb087 --- /dev/null +++ b/Laravel/vendor/jenssegers/date/src/Lang/et.php @@ -0,0 +1,59 @@ + ':time tagasi', + 'from_now' => 'alates :time', + 'after' => 'pärast :time ', + 'before' => 'enne :time', + 'year' => '1 aasta|:count aastat', + 'month' => '1 kuu|:count kuud', + 'week' => '1 nädal|:count nädalat', + 'day' => '1 päev|:count päeva', + 'hour' => '1 tund|:count tundi', + 'minute' => '1 minut|:count minutit', + 'second' => '1 sekund|:count sekundit', + + 'january' => 'jaanuar', + 'february' => 'veebruar', + 'march' => 'märts', + 'april' => 'aprill', + 'may' => 'mai', + 'june' => 'juuni', + 'july' => 'juuli', + 'august' => 'august', + 'september' => 'september', + 'october' => 'oktoober', + 'november' => 'november', + 'december' => 'detsember', + + 'jan' => 'jaan', + 'feb' => 'veebr', + 'mar' => 'märts', + 'apr' => 'apr', + 'may' => 'mai', + 'jun' => 'juuni', + 'jul' => 'juuli', + 'aug' => 'aug', + 'sep' => 'sept', + 'oct' => 'okt', + 'nov' => 'nov', + 'dec' => 'dets', + + 'monday' => 'esmaspäev', + 'tuesday' => 'teisipäev', + 'wednesday' => 'kolmapäev', + 'thursday' => 'neljapäev', + 'friday' => 'reede', + 'saturday' => 'laupäev', + 'sunday' => 'pühapäev', + + 'mon' => 'E', + 'tue' => 'T', + 'wed' => 'K', + 'thu' => 'N', + 'fri' => 'R', + 'sat' => 'L', + 'sun' => 'P', + +]; diff --git a/Laravel/vendor/jenssegers/date/src/Lang/eu.php b/Laravel/vendor/jenssegers/date/src/Lang/eu.php new file mode 100644 index 0000000..bb7342d --- /dev/null +++ b/Laravel/vendor/jenssegers/date/src/Lang/eu.php @@ -0,0 +1,48 @@ + 'Orain dela :time', + 'from_now' => ':time barru', + 'after' => ':time geroago', + 'before' => ':time lehenago', + 'year' => 'Urte 1|:count urte', + 'month' => 'Hile 1|:count hile', + 'week' => 'Aste 1|:count aste', + 'day' => 'Egun 1|:count egun', + 'hour' => 'Ordu 1|:count ordu', + 'minute' => 'Minutu 1|:count minutu', + 'second' => 'Segundu 1|:count segundu', + + 'january' => 'Urtarrila', + 'february' => 'Otsaila', + 'march' => 'Martxoa', + 'april' => 'Apirila', + 'may' => 'Maiatza', + 'june' => 'Ekaina', + 'july' => 'Uztaila', + 'august' => 'Abuztua', + 'september' => 'Iraila', + 'october' => 'Urria', + 'november' => 'Azaroa', + 'december' => 'Abendua', + + 'monday' => 'Astelehena', + 'tuesday' => 'Asteartea', + 'wednesday' => 'Asteazkena', + 'thursday' => 'Osteguna', + 'friday' => 'Ostirala', + 'saturday' => 'Larunbata', + 'sunday' => 'Igandea', + +]; diff --git a/Laravel/vendor/jenssegers/date/src/Lang/fa.php b/Laravel/vendor/jenssegers/date/src/Lang/fa.php new file mode 100644 index 0000000..581216f --- /dev/null +++ b/Laravel/vendor/jenssegers/date/src/Lang/fa.php @@ -0,0 +1,48 @@ + ':time پیش', + 'from_now' => ':time از الآن', + 'after' => ':time بعد', + 'before' => ':time قبل', + 'year' => ':count سال', + 'month' => ':count ماه', + 'week' => ':count هفته', + 'day' => ':count روز', + 'hour' => ':count ساعت', + 'minute' => ':count دقیقه', + 'second' => ':count ثانیه', + + 'january' => 'ژانویه', + 'february' => 'فوریه', + 'march' => 'مارس', + 'april' => 'آوریل', + 'may' => 'مه', + 'june' => 'ژوئن', + 'july' => 'جولای', + 'august' => 'اوت', + 'september' => 'سپتامبر', + 'october' => 'اکتبر', + 'november' => 'نوامبر', + 'december' => 'دسامبر', + + 'monday' => 'دوشنبه', + 'tuesday' => 'سه‌شنبه', + 'wednesday' => 'چهارشنبه', + 'thursday' => 'پنج‌شنبه', + 'friday' => 'جمعه', + 'saturday' => 'شنبه', + 'sunday' => 'یک‌شنبه', + +]; diff --git a/Laravel/vendor/jenssegers/date/src/Lang/fi.php b/Laravel/vendor/jenssegers/date/src/Lang/fi.php new file mode 100644 index 0000000..b0a4601 --- /dev/null +++ b/Laravel/vendor/jenssegers/date/src/Lang/fi.php @@ -0,0 +1,69 @@ + ':time sitten', + 'from_now' => ':time tästä hetkestä', + 'after' => ':time sen jälkeen', + 'before' => ':time ennen', + 'year' => '1 vuosi|:count vuotta', + 'month' => '1 kuukausi|:count kuukautta', + 'week' => '1 viikko|:count viikkoa', + 'day' => '1 päivä|:count päivää', + 'hour' => '1 tunti|:count tuntia', + 'minute' => '1 minuutti|:count minuuttia', + 'second' => '1 sekunti|:count sekuntia', + + 'january' => 'tammikuu', + 'february' => 'helmikuu', + 'march' => 'maaliskuu', + 'april' => 'huhtikuu', + 'may' => 'toukokuu', + 'june' => 'kesäkuu', + 'july' => 'heinäkuu', + 'august' => 'elokuu', + 'september' => 'syyskuu', + 'october' => 'lokakuu', + 'november' => 'marraskuu', + 'december' => 'joulukuu', + + 'jan' => 'tammi', + 'feb' => 'helmi', + 'mar' => 'maalis', + 'apr' => 'huhti', + 'may' => 'touko', + 'jun' => 'kesä', + 'jul' => 'heinä', + 'aug' => 'elo', + 'sep' => 'syys', + 'oct' => 'loka', + 'nov' => 'marras', + 'dec' => 'joulu', + + 'monday' => 'maanantai', + 'tuesday' => 'tiistai', + 'wednesday' => 'keskiviikko', + 'thursday' => 'torstai', + 'friday' => 'perjantai', + 'saturday' => 'lauantai', + 'sunday' => 'sunnuntai', + + 'mon' => 'ma', + 'tue' => 'ti', + 'wed' => 'ke', + 'thu' => 'to', + 'fri' => 'pe', + 'sat' => 'la', + 'sun' => 'su', + +]; diff --git a/Laravel/vendor/jenssegers/date/src/Lang/fr.php b/Laravel/vendor/jenssegers/date/src/Lang/fr.php new file mode 100644 index 0000000..b40a959 --- /dev/null +++ b/Laravel/vendor/jenssegers/date/src/Lang/fr.php @@ -0,0 +1,48 @@ + 'il y a :time', + 'from_now' => 'dans :time', + 'after' => ':time après', + 'before' => ':time avant', + 'year' => '1 an|:count ans', + 'month' => '1 mois|:count mois', + 'week' => '1 semaine|:count semaines', + 'day' => '1 jour|:count jours', + 'hour' => '1 heure|:count heures', + 'minute' => '1 minute|:count minutes', + 'second' => '1 seconde|:count secondes', + + 'january' => 'janvier', + 'february' => 'février', + 'march' => 'mars', + 'april' => 'avril', + 'may' => 'mai', + 'june' => 'juin', + 'july' => 'juillet', + 'august' => 'août', + 'september' => 'septembre', + 'october' => 'octobre', + 'november' => 'novembre', + 'december' => 'décembre', + + 'monday' => 'lundi', + 'tuesday' => 'mardi', + 'wednesday' => 'mercredi', + 'thursday' => 'jeudi', + 'friday' => 'vendredi', + 'saturday' => 'samedi', + 'sunday' => 'dimanche', + +]; diff --git a/Laravel/vendor/jenssegers/date/src/Lang/gl.php b/Laravel/vendor/jenssegers/date/src/Lang/gl.php new file mode 100644 index 0000000..61e8331 --- /dev/null +++ b/Laravel/vendor/jenssegers/date/src/Lang/gl.php @@ -0,0 +1,48 @@ + 'hai :time', + 'from_now' => 'dentro de :time', + 'after' => ':time despois', + 'before' => ':time antes', + 'year' => '1 ano|:count anos', + 'month' => '1 mes|:count meses', + 'week' => '1 semana|:count semanas', + 'day' => '1 día|:count días', + 'hour' => '1 hora|:count horas', + 'minute' => '1 minuto|:count minutos', + 'second' => '1 segundo|:count segundos', + + 'january' => 'xaneiro', + 'february' => 'febreiro', + 'march' => 'marzo', + 'april' => 'abril', + 'may' => 'maio', + 'june' => 'xuño', + 'july' => 'xullo', + 'august' => 'agosto', + 'september' => 'setembro', + 'october' => 'outubro', + 'november' => 'novembro', + 'december' => 'decembro', + + 'monday' => 'luns', + 'tuesday' => 'martes', + 'wednesday' => 'mércores', + 'thursday' => 'xoves', + 'friday' => 'venres', + 'saturday' => 'sábado', + 'sunday' => 'domingo', + +]; diff --git a/Laravel/vendor/jenssegers/date/src/Lang/he.php b/Laravel/vendor/jenssegers/date/src/Lang/he.php new file mode 100644 index 0000000..aab5620 --- /dev/null +++ b/Laravel/vendor/jenssegers/date/src/Lang/he.php @@ -0,0 +1,48 @@ + 'לפני :time', + 'from_now' => 'בעוד :time', + 'after' => ':time אחרי', + 'before' => ':time לפני', + 'year' => '[0,1]שנה|{2}שנתיים|[3,Inf]:count שנים', + 'month' => '[0,1]חודש|{2}חודשיים|[3,Inf]:count חודשים', + 'week' => '[0,1]שבוע|{2}שבועיים|[3,Inf]:count שבועות', + 'day' => '[0,1]יום|{2}יומיים|[3,Inf]:count ימים', + 'hour' => '[0,1]שעה|{2}שעתיים|[3,Inf]:count שעות', + 'minute' => 'דקה|:count דקות', + 'second' => 'שנייה|:count שניות', + + 'january' => 'ינואר', + 'february' => 'פברואר', + 'march' => 'מרץ', + 'april' => 'אפריל', + 'may' => 'מאי', + 'june' => 'יוני', + 'july' => 'יולי', + 'august' => 'אוגוסט', + 'september' => 'ספטמבר', + 'october' => 'אוקטובר', + 'november' => 'נובמבר', + 'december' => 'דצמבר', + + 'monday' => 'שני', + 'tuesday' => 'שלישי', + 'wednesday' => 'רביעי', + 'thursday' => 'חמישי', + 'friday' => 'שישי', + 'saturday' => 'שבת', + 'sunday' => 'ראשון', + +]; diff --git a/Laravel/vendor/jenssegers/date/src/Lang/hi.php b/Laravel/vendor/jenssegers/date/src/Lang/hi.php new file mode 100644 index 0000000..c7850dd --- /dev/null +++ b/Laravel/vendor/jenssegers/date/src/Lang/hi.php @@ -0,0 +1,48 @@ + ':time पूर्व', + 'from_now' => ':time से', + 'after' => ':time के बाद', + 'before' => ':time के पहले', + 'year' => '1 वर्ष|:count वर्षों', + 'month' => '1 माह|:count महीने', + 'week' => '1 सप्ताह|:count सप्ताह', + 'day' => '1 दिन|:count दिनों', + 'hour' => '1 घंटा|:count घंटे', + 'minute' => '1 मिनट|:count मिनटों', + 'second' => '1 सेकंड|:count सेकंड', + + 'january' => 'जनवरी', + 'february' => 'फरवरी', + 'march' => 'मार्च', + 'april' => 'अप्रैल', + 'may' => 'मई', + 'june' => 'जून', + 'july' => 'जुलाई', + 'august' => 'अगस्त', + 'september' => 'सितंबर', + 'october' => 'अक्टूबर', + 'november' => 'नवंबर', + 'december' => 'दिसंबर', + + 'monday' => 'सोमवार', + 'tuesday' => 'मंगलवार', + 'wednesday' => 'बुधवार', + 'thursday' => 'गुरूवार', + 'friday' => 'शुक्रवार', + 'saturday' => 'शनिवार', + 'sunday' => 'रविवार', + +]; diff --git a/Laravel/vendor/jenssegers/date/src/Lang/hr.php b/Laravel/vendor/jenssegers/date/src/Lang/hr.php new file mode 100644 index 0000000..a6c6a94 --- /dev/null +++ b/Laravel/vendor/jenssegers/date/src/Lang/hr.php @@ -0,0 +1,48 @@ + 'prije :time', + 'from_now' => 'za :time', + 'after' => 'za :time', + 'before' => 'prije :time', + 'year' => ':count godinu|:count godine|:count godina', + 'month' => ':count mjesec|:count mjeseca|:count mjeseci', + 'week' => ':count tjedan|:count tjedna|:count tjedana', + 'day' => ':count dan|:count dana|:count dana', + 'hour' => ':count sat|:count sata|:count sati', + 'minute' => ':count minutu|:count minute |:count minuta', + 'second' => ':count sekundu|:count sekunde|:count sekundi', + + 'january' => 'siječanj', + 'february' => 'veljača', + 'march' => 'ožujak', + 'april' => 'travanj', + 'may' => 'svibanj', + 'june' => 'lipanj', + 'july' => 'srpanj', + 'august' => 'kolovoz', + 'september' => 'rujan', + 'october' => 'listopad', + 'november' => 'studeni', + 'december' => 'prosinac', + + 'monday' => 'ponedjeljak', + 'tuesday' => 'utorak', + 'wednesday' => 'srijeda', + 'thursday' => 'cetvrtak', + 'friday' => 'petak', + 'saturday' => 'subota', + 'sunday' => 'nedjelja', + +]; diff --git a/Laravel/vendor/jenssegers/date/src/Lang/hu.php b/Laravel/vendor/jenssegers/date/src/Lang/hu.php new file mode 100644 index 0000000..29f4bf5 --- /dev/null +++ b/Laravel/vendor/jenssegers/date/src/Lang/hu.php @@ -0,0 +1,80 @@ + ':count év', + 'month' => ':count hónap', + 'week' => ':count hét', + 'day' => ':count nap', + 'hour' => ':count óra', + 'minute' => ':count perc', + 'second' => ':count másodperc', + 'ago' => ':time', + 'from_now' => ':time múlva', + 'after' => ':time később', + 'before' => ':time korábban', + + 'year_ago' => ':count éve', + 'month_ago' => ':count hónapja', + 'week_ago' => ':count hete', + 'day_ago' => ':count napja', + 'hour_ago' => ':count órája', + 'minute_ago' => ':count perce', + 'second_ago' => ':count másodperce', + + 'year_after' => ':count évvel', + 'month_after' => ':count hónappal', + 'week_after' => ':count héttel', + 'day_after' => ':count nappal', + 'hour_after' => ':count órával', + 'minute_after' => ':count perccel', + 'second_after' => ':count másodperccel', + + 'year_before' => ':count évvel', + 'month_before' => ':count hónappal', + 'week_before' => ':count héttel', + 'day_before' => ':count nappal', + 'hour_before' => ':count órával', + 'minute_before' => ':count perccel', + 'second_before' => ':count másodperccel', + + 'january' => 'január', + 'february' => 'február', + 'march' => 'március', + 'april' => 'április', + 'may' => 'május', + 'june' => 'június', + 'july' => 'július', + 'august' => 'augusztus', + 'september' => 'szeptember', + 'october' => 'október', + 'november' => 'november', + 'december' => 'december', + + 'monday' => 'hétfő', + 'tuesday' => 'kedd', + 'wednesday' => 'szerda', + 'thursday' => 'csütörtök', + 'friday' => 'péntek', + 'saturday' => 'szombat', + 'sunday' => 'vasárnap', + + 'mon' => 'H', + 'tue' => 'K', + 'wed' => 'Sze', + 'thu' => 'Cs', + 'fri' => 'P', + 'sat' => 'Szo', + 'sun' => 'V', + +]; diff --git a/Laravel/vendor/jenssegers/date/src/Lang/id.php b/Laravel/vendor/jenssegers/date/src/Lang/id.php new file mode 100644 index 0000000..168245a --- /dev/null +++ b/Laravel/vendor/jenssegers/date/src/Lang/id.php @@ -0,0 +1,48 @@ + ':time yang lalu', + 'from_now' => ':time dari sekarang', + 'after' => ':time setelah', + 'before' => ':time sebelum', + 'year' => ':count tahun', + 'month' => ':count bulan', + 'week' => ':count minggu', + 'day' => ':count hari', + 'hour' => ':count jam', + 'minute' => ':count menit', + 'second' => ':count detik', + + 'january' => 'Januari', + 'february' => 'Februari', + 'march' => 'Maret', + 'april' => 'April', + 'may' => 'Mei', + 'june' => 'Juni', + 'july' => 'Juli', + 'august' => 'Agustus', + 'september' => 'September', + 'october' => 'Oktober', + 'november' => 'November', + 'december' => 'Desember', + + 'monday' => 'Senin', + 'tuesday' => 'Selasa', + 'wednesday' => 'Rabu', + 'thursday' => 'Kamis', + 'friday' => 'Jumat', + 'saturday' => 'Sabtu', + 'sunday' => 'Minggu', + +]; diff --git a/Laravel/vendor/jenssegers/date/src/Lang/is.php b/Laravel/vendor/jenssegers/date/src/Lang/is.php new file mode 100644 index 0000000..12a0843 --- /dev/null +++ b/Laravel/vendor/jenssegers/date/src/Lang/is.php @@ -0,0 +1,48 @@ + ':time síðan', + 'from_now' => ':time síðan', + 'after' => ':time eftir', + 'before' => ':time fyrir', + 'year' => '1 ár|:count ár', + 'month' => '1 mánuður|:count mánuðir', + 'week' => '1 vika|:count vikur', + 'day' => '1 dagur|:count dagar', + 'hour' => '1 klukkutími|:count klukkutímar', + 'minute' => '1 mínúta|:count mínútur', + 'second' => '1 sekúnda|:count sekúndur', + + 'january' => 'janúar', + 'february' => 'febrúar', + 'march' => 'mars', + 'april' => 'apríl', + 'may' => 'maí', + 'june' => 'júní', + 'july' => 'júlí', + 'august' => 'ágúst', + 'september' => 'september', + 'october' => 'október', + 'november' => 'nóvember', + 'december' => 'desember', + + 'monday' => 'mánudagur', + 'tuesday' => 'þriðjudagur', + 'wednesday' => 'miðvikudagur', + 'thursday' => 'fimmtudagur', + 'friday' => 'föstudagur', + 'saturday' => 'laugardagur', + 'sunday' => 'sunnudagur', + +]; diff --git a/Laravel/vendor/jenssegers/date/src/Lang/it.php b/Laravel/vendor/jenssegers/date/src/Lang/it.php new file mode 100644 index 0000000..3cf89c5 --- /dev/null +++ b/Laravel/vendor/jenssegers/date/src/Lang/it.php @@ -0,0 +1,48 @@ + ':time fa', + 'from_now' => 'tra :time', + 'after' => ':time dopo', + 'before' => ':time prima', + 'year' => '1 anno|:count anni', + 'month' => '1 mese|:count mesi', + 'week' => '1 settimana|:count settimane', + 'day' => '1 giorno|:count giorni', + 'hour' => '1 ora|:count ore', + 'minute' => '1 minuto|:count minuti', + 'second' => '1 secondo|:count secondi', + + 'january' => 'gennaio', + 'february' => 'febbraio', + 'march' => 'marzo', + 'april' => 'aprile', + 'may' => 'maggio', + 'june' => 'giugno', + 'july' => 'luglio', + 'august' => 'agosto', + 'september' => 'settembre', + 'october' => 'ottobre', + 'november' => 'novembre', + 'december' => 'dicembre', + + 'monday' => 'lunedì', + 'tuesday' => 'martedì', + 'wednesday' => 'mercoledì', + 'thursday' => 'giovedì', + 'friday' => 'venerdì', + 'saturday' => 'sabato', + 'sunday' => 'domenica', + +]; diff --git a/Laravel/vendor/jenssegers/date/src/Lang/ja.php b/Laravel/vendor/jenssegers/date/src/Lang/ja.php new file mode 100644 index 0000000..8a2e9a0 --- /dev/null +++ b/Laravel/vendor/jenssegers/date/src/Lang/ja.php @@ -0,0 +1,55 @@ + ':time 前', + 'from_now' => '今から :time', + 'after' => ':time 後', + 'before' => ':time 前', + 'year' => ':count 年', + 'month' => ':count ヶ月', + 'week' => ':count 週間', + 'day' => ':count 日', + 'hour' => ':count 時間', + 'minute' => ':count 分', + 'second' => ':count 秒', + + 'january' => '1月', + 'february' => '2月', + 'march' => '3月', + 'april' => '4月', + 'may' => '5月', + 'june' => '6月', + 'july' => '7月', + 'august' => '8月', + 'september' => '9月', + 'october' => '10月', + 'november' => '11月', + 'december' => '12月', + + 'monday' => '月曜日', + 'tuesday' => '火曜日', + 'wednesday' => '水曜日', + 'thursday' => '木曜日', + 'friday' => '金曜日', + 'saturday' => '土曜日', + 'sunday' => '日曜日', + + 'mon' => '月', + 'tue' => '火', + 'wed' => '水', + 'thu' => '木', + 'fri' => '金', + 'sat' => '土', + 'sun' => '日', +]; diff --git a/Laravel/vendor/jenssegers/date/src/Lang/ka.php b/Laravel/vendor/jenssegers/date/src/Lang/ka.php new file mode 100644 index 0000000..7265e02 --- /dev/null +++ b/Laravel/vendor/jenssegers/date/src/Lang/ka.php @@ -0,0 +1,48 @@ + ':time წინ', + 'from_now' => ':time შემდეგ', + 'after' => ':time შემდეგ', + 'before' => ':time წინ', + 'year' => ':count წლის', + 'month' => ':count თვის', + 'week' => ':count კვირის', + 'day' => ':count დღის', + 'hour' => ':count საათის', + 'minute' => ':count წუთის', + 'second' => ':count წამის', + + 'january' => 'იანვარი', + 'february' => 'თებერვალი', + 'march' => 'მარტი', + 'april' => 'აპრილი', + 'may' => 'მაისი', + 'june' => 'ივნისი', + 'july' => 'ივლისი', + 'august' => 'აგვისტო', + 'september' => 'სექტემბერი', + 'october' => 'ოქტომბერი', + 'november' => 'ნოემბერი', + 'december' => 'დეკემბერი', + + 'monday' => 'ორშაბათი', + 'tuesday' => 'სამშაბათი', + 'wednesday' => 'ოთხშაბათი', + 'thursday' => 'ხუთშაბათი', + 'friday' => 'პარასკევი', + 'saturday' => 'შაბათი', + 'sunday' => 'კვირა', + +]; diff --git a/Laravel/vendor/jenssegers/date/src/Lang/kk.php b/Laravel/vendor/jenssegers/date/src/Lang/kk.php new file mode 100644 index 0000000..cede5b4 --- /dev/null +++ b/Laravel/vendor/jenssegers/date/src/Lang/kk.php @@ -0,0 +1,48 @@ + ':time бұрын', + 'from_now' => ':time кейін', + 'after' => ':time кейін', + 'before' => ':time бұрын', + 'year' => ':count жыл', + 'month' => ':count ай', + 'week' => ':count апта', + 'day' => ':count күн', + 'hour' => ':count сағат', + 'minute' => ':count минут', + 'second' => ':count секунд', + + 'january' => 'қаңтар', + 'february' => 'ақпан', + 'march' => 'наурыз', + 'april' => 'сәуір', + 'may' => 'мамыр', + 'june' => 'маусым', + 'july' => 'шілде', + 'august' => 'тамыз', + 'september' => 'қыркүйек', + 'october' => 'қазан', + 'november' => 'қараша', + 'december' => 'желтоқсан', + + 'monday' => 'Дүйсенбі', + 'tuesday' => 'Сейсенбі', + 'wednesday' => 'Сәрсенбі', + 'thursday' => 'Бейсенбі', + 'friday' => 'Жұма', + 'saturday' => 'Сенбі', + 'sunday' => 'Жексенбі', + +]; diff --git a/Laravel/vendor/jenssegers/date/src/Lang/ko.php b/Laravel/vendor/jenssegers/date/src/Lang/ko.php new file mode 100644 index 0000000..a8b3bf4 --- /dev/null +++ b/Laravel/vendor/jenssegers/date/src/Lang/ko.php @@ -0,0 +1,48 @@ + ':time 전', + 'from_now' => ':time 후', + 'after' => ':time 뒤', + 'before' => ':time 앞', + 'year' => ':count 년', + 'month' => ':count 개월', + 'week' => ':count 주일', + 'day' => ':count 일', + 'hour' => ':count 시간', + 'minute' => ':count 분', + 'second' => ':count 초', + + 'january' => '1월', + 'february' => '2월', + 'march' => '3월', + 'april' => '4월', + 'may' => '5월', + 'june' => '6월', + 'july' => '7월', + 'august' => '8월', + 'september' => '9월', + 'october' => '10월', + 'november' => '11월', + 'december' => '12월', + + 'monday' => '월요일', + 'tuesday' => '화요일', + 'wednesday' => '수요일', + 'thursday' => '목요일', + 'friday' => '금요일', + 'saturday' => '토요일', + 'sunday' => '일요일', + +]; diff --git a/Laravel/vendor/jenssegers/date/src/Lang/lt.php b/Laravel/vendor/jenssegers/date/src/Lang/lt.php new file mode 100644 index 0000000..b5d1635 --- /dev/null +++ b/Laravel/vendor/jenssegers/date/src/Lang/lt.php @@ -0,0 +1,48 @@ + 'prieš :time', + 'from_now' => ':time nuo dabar', + 'after' => 'po :time', + 'before' => 'prieš :time', + 'year' => '0 metų|:count metai|:count metai', + 'month' => '0 mėnesių|:count mėnesis|:count mėnesiai', + 'week' => '0 savaičių|:count savaitė|:count savaitės', + 'day' => '0 dienų|:count diena|:count dienos', + 'hour' => '0 valandų|:count valanda|:count valandos', + 'minute' => '0 minučių|:count minutė|:count minutės', + 'second' => '0 sekundžių|:count sekundė|:count sekundės', + + 'january' => 'Sausis', + 'february' => 'Vasaris', + 'march' => 'Kovas', + 'april' => 'Balandis', + 'may' => 'Gegužė', + 'june' => 'Birželis', + 'july' => 'Liepa', + 'august' => 'Rugpjūtis', + 'september' => 'Rugsėjis', + 'october' => 'Spalis', + 'november' => 'Lapkritis', + 'december' => 'Gruodis', + + 'monday' => 'Pirmadienis', + 'tuesday' => 'Antradienis', + 'wednesday' => 'Trečiadienis', + 'thursday' => 'Ketvirtadienis', + 'friday' => 'Penktadienis', + 'saturday' => 'Šeštadienis', + 'sunday' => 'Sekmadienis', + +]; diff --git a/Laravel/vendor/jenssegers/date/src/Lang/lv.php b/Laravel/vendor/jenssegers/date/src/Lang/lv.php new file mode 100644 index 0000000..e8fde02 --- /dev/null +++ b/Laravel/vendor/jenssegers/date/src/Lang/lv.php @@ -0,0 +1,69 @@ + 'pirms :time', + 'from_now' => 'pēc :time', + 'after' => ':time vēlāk', + 'before' => ':time pirms', + 'year' => '0 gadiem|:count gada|:count gadiem', + 'month' => '0 mēnešiem|:count mēneša|:count mēnešiem', + 'week' => '0 nedēļām|:count nedēļas|:count nedēļām', + 'day' => '0 dienām|:count dienas|:count dienām', + 'hour' => '0 stundām|:count stundas|:count stundām', + 'minute' => '0 minūtēm|:count minūtes|:count minūtēm', + 'second' => '0 sekundēm|:count sekundes|:count sekundēm', + + 'january' => 'janvāris', + 'february' => 'februāris', + 'march' => 'marts', + 'april' => 'aprīlis', + 'may' => 'maijs', + 'june' => 'jūnijs', + 'july' => 'jūlijs', + 'august' => 'augusts', + 'september' => 'septembris', + 'october' => 'oktobris', + 'november' => 'novembris', + 'december' => 'decembris', + + 'jan' => 'jan', + 'feb' => 'feb', + 'mar' => 'mar', + 'apr' => 'apr', + 'may' => 'mai', + 'jun' => 'jūn', + 'jul' => 'jūl', + 'aug' => 'aug', + 'sep' => 'sep', + 'oct' => 'okt', + 'nov' => 'nov', + 'dec' => 'dec', + + 'monday' => 'pirmdiena', + 'tuesday' => 'otrdiena', + 'wednesday' => 'trešdiena', + 'thursday' => 'ceturtdiena', + 'friday' => 'piektdiena', + 'saturday' => 'sestdiena', + 'sunday' => 'svētdiena', + + 'mon' => 'pr', + 'tue' => 'ot', + 'wed' => 'tr', + 'thu' => 'ce', + 'fri' => 'pk', + 'sat' => 'se', + 'sun' => 'sv', + +]; diff --git a/Laravel/vendor/jenssegers/date/src/Lang/mk.php b/Laravel/vendor/jenssegers/date/src/Lang/mk.php new file mode 100644 index 0000000..f839af4 --- /dev/null +++ b/Laravel/vendor/jenssegers/date/src/Lang/mk.php @@ -0,0 +1,48 @@ + 'пред :time', + 'from_now' => 'за :time', + 'after' => 'после :time', + 'before' => 'пред :time', + 'year' => '1 година|:count години', + 'month' => '1 месец|:count месеци', + 'week' => '1 седмица|:count седмици', + 'day' => '1 ден|:count денови', + 'hour' => '1 час|:count часови', + 'minute' => '1 минута|:count минути', + 'second' => '1 секунда|:count секунди', + + 'january' => 'јануари', + 'february' => 'фебруари', + 'march' => 'март', + 'april' => 'април', + 'may' => 'мај', + 'june' => 'јуни', + 'july' => 'јули', + 'august' => 'август', + 'september' => 'септември', + 'october' => 'октомври', + 'november' => 'ноември', + 'december' => 'декември', + + 'monday' => 'понеделник', + 'tuesday' => 'вторник', + 'wednesday' => 'среда', + 'thursday' => 'четврток', + 'friday' => 'петок', + 'saturday' => 'сабота', + 'sunday' => 'недела', + +]; diff --git a/Laravel/vendor/jenssegers/date/src/Lang/ms.php b/Laravel/vendor/jenssegers/date/src/Lang/ms.php new file mode 100644 index 0000000..22bd364 --- /dev/null +++ b/Laravel/vendor/jenssegers/date/src/Lang/ms.php @@ -0,0 +1,48 @@ + ':time yang lalu', + 'from_now' => ':time dari sekarang', + 'after' => ':time selepas', + 'before' => ':time sebelum', + 'year' => ':count tahun', + 'month' => ':count bulan', + 'week' => ':count minggu', + 'day' => ':count hari', + 'hour' => ':count jam', + 'minute' => ':count minit', + 'second' => ':count saat', + + 'january' => 'Januari', + 'february' => 'Februari', + 'march' => 'Mac', + 'april' => 'April', + 'may' => 'Mei', + 'june' => 'Jun', + 'july' => 'Julai', + 'august' => 'Ogos', + 'september' => 'September', + 'october' => 'Oktober', + 'november' => 'November', + 'december' => 'Disember', + + 'monday' => 'Isnin', + 'tuesday' => 'Selasa', + 'wednesday' => 'Rabu', + 'thursday' => 'Khamis', + 'friday' => 'Jumaat', + 'saturday' => 'Sabtu', + 'sunday' => 'Ahad', + +]; diff --git a/Laravel/vendor/jenssegers/date/src/Lang/nl.php b/Laravel/vendor/jenssegers/date/src/Lang/nl.php new file mode 100644 index 0000000..c50bed3 --- /dev/null +++ b/Laravel/vendor/jenssegers/date/src/Lang/nl.php @@ -0,0 +1,69 @@ + ':time geleden', + 'from_now' => ':time vanaf nu', + 'after' => ':time na', + 'before' => ':time voor', + 'year' => ':count jaar', + 'month' => '1 maand|:count maanden', + 'week' => '1 week|:count weken', + 'day' => '1 dag|:count dagen', + 'hour' => ':count uur', + 'minute' => '1 minuut|:count minuten', + 'second' => '1 seconde|:count seconden', + + 'january' => 'januari', + 'february' => 'februari', + 'march' => 'maart', + 'april' => 'april', + 'may' => 'mei', + 'june' => 'juni', + 'july' => 'juli', + 'august' => 'augustus', + 'september' => 'september', + 'october' => 'oktober', + 'november' => 'november', + 'december' => 'december', + + 'jan' => 'jan', + 'feb' => 'feb', + 'mar' => 'mrt', + 'apr' => 'apr', + 'may' => 'mei', + 'jun' => 'jun', + 'jul' => 'jul', + 'aug' => 'aug', + 'sep' => 'sep', + 'oct' => 'okt', + 'nov' => 'nov', + 'dec' => 'dec', + + 'monday' => 'maandag', + 'tuesday' => 'dinsdag', + 'wednesday' => 'woensdag', + 'thursday' => 'donderdag', + 'friday' => 'vrijdag', + 'saturday' => 'zaterdag', + 'sunday' => 'zondag', + + 'mon' => 'ma', + 'tue' => 'di', + 'wed' => 'wo', + 'thu' => 'do', + 'fri' => 'vr', + 'sat' => 'za', + 'sun' => 'zo', + +]; diff --git a/Laravel/vendor/jenssegers/date/src/Lang/no.php b/Laravel/vendor/jenssegers/date/src/Lang/no.php new file mode 100644 index 0000000..885174b --- /dev/null +++ b/Laravel/vendor/jenssegers/date/src/Lang/no.php @@ -0,0 +1,48 @@ + ':time siden', + 'from_now' => 'om :time', + 'after' => ':time etter', + 'before' => ':time før', + 'year' => '1 år|:count år', + 'month' => '1 måned|:count måneder', + 'week' => '1 uke|:count uker', + 'day' => '1 dag|:count dager', + 'hour' => '1 time|:count timer', + 'minute' => '1 minutt|:count minutter', + 'second' => '1 sekund|:count sekunder', + + 'january' => 'januar', + 'february' => 'februar', + 'march' => 'mars', + 'april' => 'april', + 'may' => 'mai', + 'june' => 'juni', + 'july' => 'juli', + 'august' => 'august', + 'september' => 'september', + 'october' => 'oktober', + 'november' => 'november', + 'december' => 'desember', + + 'monday' => 'mandag', + 'tuesday' => 'tirsdag', + 'wednesday' => 'onsdag', + 'thursday' => 'torsdag', + 'friday' => 'fredag', + 'saturday' => 'lørdag', + 'sunday' => 'søndag', + +]; diff --git a/Laravel/vendor/jenssegers/date/src/Lang/pl.php b/Laravel/vendor/jenssegers/date/src/Lang/pl.php new file mode 100644 index 0000000..53fd655 --- /dev/null +++ b/Laravel/vendor/jenssegers/date/src/Lang/pl.php @@ -0,0 +1,48 @@ + ':time temu', + 'from_now' => ':time od teraz', + 'after' => ':time przed', + 'before' => ':time po', + 'year' => 'rok|:count lata|:count lat', + 'month' => 'miesiąc|:count miesiące|:count miesięcy', + 'week' => 'tydzień|:count tygodnie|:count tygodni', + 'day' => 'dzień|:count dni|:count dni', + 'hour' => 'godzinę|:count godziny|:count godzin', + 'minute' => 'minutę|:count minuty|:count minut', + 'second' => 'sekundę|:count sekundy|:count sekund', + + 'january' => 'stycznia', + 'february' => 'lutego', + 'march' => 'marca', + 'april' => 'kwietnia', + 'may' => 'maja', + 'june' => 'czerwca', + 'july' => 'lipca', + 'august' => 'sierpnia', + 'september' => 'września', + 'october' => 'października', + 'november' => 'listopada', + 'december' => 'grudnia', + + 'monday' => 'poniedziałek', + 'tuesday' => 'wtorek', + 'wednesday' => 'środa', + 'thursday' => 'czwartek', + 'friday' => 'piątek', + 'saturday' => 'sobota', + 'sunday' => 'niedziela', + +]; diff --git a/Laravel/vendor/jenssegers/date/src/Lang/pt-BR.php b/Laravel/vendor/jenssegers/date/src/Lang/pt-BR.php new file mode 100644 index 0000000..7c072e6 --- /dev/null +++ b/Laravel/vendor/jenssegers/date/src/Lang/pt-BR.php @@ -0,0 +1,48 @@ + 'há :time', + 'from_now' => 'dentro de :time', + 'after' => ':time depois', + 'before' => ':time antes', + 'year' => '1 ano|:count anos', + 'month' => '1 mês|:count meses', + 'week' => '1 semana|:count semanas', + 'day' => '1 dia|:count dias', + 'hour' => '1 hora|:count horas', + 'minute' => '1 minuto|:count minutos', + 'second' => '1 segundo|:count segundos', + + 'january' => 'janeiro', + 'february' => 'fevereiro', + 'march' => 'março', + 'april' => 'abril', + 'may' => 'maio', + 'june' => 'junho', + 'july' => 'julho', + 'august' => 'agosto', + 'september' => 'setembro', + 'october' => 'outubro', + 'november' => 'novembro', + 'december' => 'dezembro', + + 'monday' => 'segunda-feira', + 'tuesday' => 'terça-feira', + 'wednesday' => 'quarta-feira', + 'thursday' => 'quinta-feira', + 'friday' => 'sexta-feira', + 'saturday' => 'sábado', + 'sunday' => 'domingo', + +]; diff --git a/Laravel/vendor/jenssegers/date/src/Lang/pt.php b/Laravel/vendor/jenssegers/date/src/Lang/pt.php new file mode 100644 index 0000000..7fef2ee --- /dev/null +++ b/Laravel/vendor/jenssegers/date/src/Lang/pt.php @@ -0,0 +1,48 @@ + ':time atrás', + 'from_now' => 'em :time', + 'after' => ':time depois', + 'before' => ':time antes', + 'year' => '1 ano|:count anos', + 'month' => '1 mês|:count meses', + 'week' => '1 semana|:count semanas', + 'day' => '1 dia|:count dias', + 'hour' => '1 hora|:count horas', + 'minute' => '1 minuto|:count minutos', + 'second' => '1 segundo|:count segundos', + + 'january' => 'janeiro', + 'february' => 'fevereiro', + 'march' => 'março', + 'april' => 'abril', + 'may' => 'maio', + 'june' => 'junho', + 'july' => 'julho', + 'august' => 'agosto', + 'september' => 'setembro', + 'october' => 'outubro', + 'november' => 'novembro', + 'december' => 'dezembro', + + 'monday' => 'segunda-feira', + 'tuesday' => 'terça-feira', + 'wednesday' => 'quarta-feira', + 'thursday' => 'quinta-feira', + 'friday' => 'sexta-feira', + 'saturday' => 'sábado', + 'sunday' => 'domingo', + +]; diff --git a/Laravel/vendor/jenssegers/date/src/Lang/ro.php b/Laravel/vendor/jenssegers/date/src/Lang/ro.php new file mode 100644 index 0000000..3246272 --- /dev/null +++ b/Laravel/vendor/jenssegers/date/src/Lang/ro.php @@ -0,0 +1,48 @@ + 'acum :time', + 'from_now' => ':time de acum', + 'after' => 'peste :time', + 'before' => 'acum :time', + 'year' => 'un an|:count ani|:count ani', + 'month' => 'o lună|:count luni|:count luni', + 'week' => 'o săptămână|:count săptămâni|:count săptămâni', + 'day' => 'o zi|:count zile|:count zile', + 'hour' => 'o oră|:count ore|:count ore', + 'minute' => 'un minut|:count minute|:count minute', + 'second' => 'o secundă|:count secunde|:count secunde', + + 'january' => 'ianuarie', + 'february' => 'februarie', + 'march' => 'martie', + 'april' => 'aprilie', + 'may' => 'mai', + 'june' => 'iunie', + 'july' => 'iulie', + 'august' => 'august', + 'september' => 'septembrie', + 'october' => 'octombrie', + 'november' => 'noiembrie', + 'december' => 'decembrie', + + 'monday' => 'luni', + 'tuesday' => 'marţi', + 'wednesday' => 'miercuri', + 'thursday' => 'joi', + 'friday' => 'vineri', + 'saturday' => 'sâmbătă', + 'sunday' => 'duminică', + +]; diff --git a/Laravel/vendor/jenssegers/date/src/Lang/ru.php b/Laravel/vendor/jenssegers/date/src/Lang/ru.php new file mode 100644 index 0000000..d304d3b --- /dev/null +++ b/Laravel/vendor/jenssegers/date/src/Lang/ru.php @@ -0,0 +1,68 @@ + ':time назад', + 'from_now' => 'через :time', + 'after' => ':time после', + 'before' => ':time до', + 'year' => ':count год|:count года|:count лет', + 'month' => ':count месяц|:count месяца|:count месяцев', + 'week' => ':count неделю|:count недели|:count недель', + 'day' => ':count день|:count дня|:count дней', + 'hour' => ':count час|:count часа|:count часов', + 'minute' => ':count минуту|:count минуты|:count минут', + 'second' => ':count секунду|:count секунды|:count секунд', + + 'january' => '{0}январь|{1}января', + 'february' => '{0}февраль|{1}февраля', + 'march' => '{0}март|{1}мартa', + 'april' => '{0}апрель|{1}апреля', + 'may' => '{0}май|{1}мая', + 'june' => '{0}июнь|{1}июня', + 'july' => '{0}июль|{1}июля', + 'august' => '{0}август|{1}августа', + 'september' => '{0}сентябрь|{1}сентября', + 'october' => '{0}октябрь|{1}октября', + 'november' => '{0}ноябрь|{1}ноября', + 'december' => '{0}декабрь|{1}декабря', + + 'jan' => 'янв', + 'feb' => 'фев', + 'mar' => 'мар', + 'apr' => 'апр', + 'may' => 'май', + 'jun' => 'июн', + 'jul' => 'июл', + 'aug' => 'авг', + 'sep' => 'сен', + 'oct' => 'окт', + 'nov' => 'ноя', + 'dec' => 'дек', + + 'monday' => 'понедельник', + 'tuesday' => 'вторник', + 'wednesday' => 'среда', + 'thursday' => 'четверг', + 'friday' => 'пятница', + 'saturday' => 'суббота', + 'sunday' => 'воскресенье', + + 'mon' => 'пн', + 'tue' => 'вт', + 'wed' => 'ср', + 'thu' => 'чт', + 'fri' => 'пт', + 'sat' => 'сб', + 'sun' => 'вс', +]; diff --git a/Laravel/vendor/jenssegers/date/src/Lang/sh.php b/Laravel/vendor/jenssegers/date/src/Lang/sh.php new file mode 100644 index 0000000..f69140e --- /dev/null +++ b/Laravel/vendor/jenssegers/date/src/Lang/sh.php @@ -0,0 +1,48 @@ + 'pre :time', + 'from_now' => 'za :time', + 'after' => 'nakon :time', + 'before' => ':time raniјe', + 'year' => ':count godina|:count godine|:count godina', + 'month' => ':count mesec|:count meseca|:count meseci', + 'week' => ':count nedelja|:count nedelje|:count nedelja', + 'day' => ':count dan|:count dana|:count dana', + 'hour' => ':count čas|:count časa|:count časova', + 'minute' => ':count minut|:count minuta|:count minuta', + 'second' => ':count sekund|:count sekunda|:count sekundi', + + 'january' => 'јanuar', + 'february' => 'februar', + 'march' => 'mart', + 'april' => 'april', + 'may' => 'maј', + 'june' => 'јun', + 'july' => 'јul', + 'august' => 'avgust', + 'september' => 'septembar', + 'october' => 'oktobar', + 'november' => 'novembar', + 'december' => 'decembar', + + 'monday' => 'ponedeljak', + 'tuesday' => 'utorak', + 'wednesday' => 'sreda', + 'thursday' => 'četvrtak', + 'friday' => 'petak', + 'saturday' => 'subota', + 'sunday' => 'nedelja', + +]; diff --git a/Laravel/vendor/jenssegers/date/src/Lang/sk.php b/Laravel/vendor/jenssegers/date/src/Lang/sk.php new file mode 100644 index 0000000..c92823f --- /dev/null +++ b/Laravel/vendor/jenssegers/date/src/Lang/sk.php @@ -0,0 +1,56 @@ + 'pred :time', + 'from_now' => 'za :time', + 'after' => ':time neskôr', + 'before' => ':time predtým', + 'year' => 'rok|:count roky|:count rokov', + 'month' => 'mesiac|:count mesiace|:count mesiacov', + 'week' => 'týždeň|:count týždne|:count týždňov', + 'day' => 'deň|:count dni|:count dní', + 'hour' => 'hodinu|:count hodiny|:count hodín', + 'minute' => 'minútu|:count minúty|:count minút', + 'second' => 'sekundu|:count sekundy|:count sekúnd', + + 'january' => 'január', + 'february' => 'február', + 'march' => 'marec', + 'april' => 'apríl', + 'may' => 'máj', + 'june' => 'jún', + 'july' => 'júl', + 'august' => 'august', + 'september' => 'september', + 'october' => 'október', + 'november' => 'november', + 'december' => 'december', + + 'monday' => 'pondelok', + 'tuesday' => 'utorok', + 'wednesday' => 'streda', + 'thursday' => 'štvrtok', + 'friday' => 'piatok', + 'saturday' => 'sobota', + 'sunday' => 'nedeľa', + + 'year_ago' => 'rokom|[2,Inf]:count rokmi', + 'month_ago' => 'mesiacom|[2,Inf]:count mesiacmi', + 'week_ago' => 'týždňom|[2,Inf]:count týždňami', + 'day_ago' => 'dňom|[2,Inf]:count dňami', + 'hour_ago' => 'hodinou|[2,Inf]:count hodinami', + 'minute_ago' => 'minútou|[2,Inf]:count minútami', + 'second_ago' => '{0}0 sekundami|{1}sekundou|[2,Inf]:count sekundami', + +]; diff --git a/Laravel/vendor/jenssegers/date/src/Lang/sl.php b/Laravel/vendor/jenssegers/date/src/Lang/sl.php new file mode 100644 index 0000000..d501aa8 --- /dev/null +++ b/Laravel/vendor/jenssegers/date/src/Lang/sl.php @@ -0,0 +1,55 @@ + 'pred :time', + 'from_now' => 'čez :time', + 'after' => 'čez :time', + 'before' => 'pred :time', + 'year' => '1 leto|:count leti|:count leta|:count let', + 'month' => '1 mesec|:count meseca|:count mesece|:count mesecev', + 'week' => '1 teden|:count tedna|:count tedne|:count tednov', + 'day' => '1 dan|:count dni|:count dni|:count dni', + 'hour' => '1 uro|:count uri|:count ure|:count ur', + 'minute' => '1 minuto|:count minuti|:count minute|:count minut', + 'second' => '1 sekundo|:count sekundi|:count sekunde|:count sekund', + 'year_ago' => '1 letom|:count leti|:count leti|:count leti', + 'month_ago' => '1 mesecem|:count meseci|:count meseci|:count meseci', + 'week_ago' => '1 tednom|:count tedni|:count tedni', + 'day_ago' => '1 dnem|:count dnevoma|:count dnevi|:count dnevi', + 'hour_ago' => '1 uro|:count urama|:count urami|:count urami', + 'minute_ago' => '1 minuto|:count minutama|:count minutami|:count minutami', + 'second_ago' => '1 sekundo|:count sekundama|:count sekundami|:count sekundami', + + 'january' => 'januar', + 'february' => 'februar', + 'march' => 'marec', + 'april' => 'april', + 'may' => 'maj', + 'june' => 'junij', + 'july' => 'julij', + 'august' => 'avgust', + 'september' => 'september', + 'october' => 'oktober', + 'november' => 'november', + 'december' => 'december', + + 'monday' => 'ponedeljek', + 'tuesday' => 'torek', + 'wednesday' => 'sreda', + 'thursday' => 'četrtek', + 'friday' => 'petek', + 'saturday' => 'sobota', + 'sunday' => 'nedelja', + +]; diff --git a/Laravel/vendor/jenssegers/date/src/Lang/sq.php b/Laravel/vendor/jenssegers/date/src/Lang/sq.php new file mode 100644 index 0000000..13a2828 --- /dev/null +++ b/Laravel/vendor/jenssegers/date/src/Lang/sq.php @@ -0,0 +1,48 @@ + ':time më parë', + 'from_now' => ':time nga tani', + 'after' => ':time pas', + 'before' => ':time para', + 'year' => '1 vit|:count vite', + 'month' => '1 muaj|:count muaj', + 'week' => '1 javë|:count javë', + 'day' => '1 ditë|:count ditë', + 'hour' => '1 orë|:count orë', + 'minute' => '1 minutë|:count minuta', + 'second' => '1 sekondë|:count sekonda', + + 'january' => 'Janar', + 'february' => 'Shkurt', + 'march' => 'Mars', + 'april' => 'Prill', + 'may' => 'Maj', + 'june' => 'Qershor', + 'july' => 'Korrik', + 'august' => 'Gusht', + 'september' => 'Shtator', + 'october' => 'Tetor', + 'november' => 'Nëntor', + 'december' => 'Dhjetor', + + 'monday' => 'E Hënë', + 'tuesday' => 'E Martë', + 'wednesday' => 'E Mërkurë', + 'thursday' => 'E Enjte', + 'friday' => 'E Premte', + 'saturday' => 'E Shtunë', + 'sunday' => 'E Diel', + +]; diff --git a/Laravel/vendor/jenssegers/date/src/Lang/sr-SP.php b/Laravel/vendor/jenssegers/date/src/Lang/sr-SP.php new file mode 100644 index 0000000..a044579 --- /dev/null +++ b/Laravel/vendor/jenssegers/date/src/Lang/sr-SP.php @@ -0,0 +1,48 @@ + 'pre :time', + 'from_now' => 'za :time', + 'after' => 'nakon :time', + 'before' => ':time ranije', + 'year' => ':count godina|:count godine|:count godina', + 'month' => ':count mesec|:count meseca|:count meseci', + 'week' => ':count nedelja|:count nedelje|:count nedelja', + 'day' => ':count dan|:count dana|:count dana', + 'hour' => ':count čas|:count časa|:count časova', + 'minute' => ':count minut|:count minuta|:count minuta', + 'second' => ':count sekund|:count sekunda|:count sekundi', + + 'january' => 'januar', + 'february' => 'februar', + 'march' => 'mart', + 'april' => 'april', + 'may' => 'maj', + 'june' => 'jun', + 'july' => 'jul', + 'august' => 'avgust', + 'september' => 'septembar', + 'october' => 'oktobar', + 'november' => 'novembar', + 'december' => 'decembar', + + 'monday' => 'ponedeljak', + 'tuesday' => 'utorak', + 'wednesday' => 'sreda', + 'thursday' => 'četvrtak', + 'friday' => 'petak', + 'saturday' => 'subota', + 'sunday' => 'nedelja', + +]; diff --git a/Laravel/vendor/jenssegers/date/src/Lang/sr.php b/Laravel/vendor/jenssegers/date/src/Lang/sr.php new file mode 100644 index 0000000..d7f14b2 --- /dev/null +++ b/Laravel/vendor/jenssegers/date/src/Lang/sr.php @@ -0,0 +1,48 @@ + 'пре :time', + 'from_now' => 'за :time', + 'after' => 'након :time', + 'before' => ':time раније', + 'year' => ':count година|:count године|:count година', + 'month' => ':count месец|:count месеца|:count месеци', + 'week' => ':count недеља|:count недеље|:count недеља', + 'day' => ':count дан|:count дана|:count дана', + 'hour' => ':count час|:count часа|:count часова', + 'minute' => ':count минут|:count минута|:count минута', + 'second' => ':count секунд|:count секунда|:count секунди', + + 'january' => 'јануар', + 'february' => 'фебруар', + 'march' => 'март', + 'april' => 'април', + 'may' => 'мај', + 'june' => 'јун', + 'july' => 'јул', + 'august' => 'август', + 'september' => 'септембар', + 'october' => 'октобар', + 'november' => 'новембар', + 'december' => 'децембар', + + 'monday' => 'понедељак', + 'tuesday' => 'уторак', + 'wednesday' => 'среда', + 'thursday' => 'четвртак', + 'friday' => 'петак', + 'saturday' => 'субота', + 'sunday' => 'недеља', + +]; diff --git a/Laravel/vendor/jenssegers/date/src/Lang/sv.php b/Laravel/vendor/jenssegers/date/src/Lang/sv.php new file mode 100644 index 0000000..8687c41 --- /dev/null +++ b/Laravel/vendor/jenssegers/date/src/Lang/sv.php @@ -0,0 +1,48 @@ + ':time sedan', + 'from_now' => 'om :time', + 'after' => ':time efter', + 'before' => ':time före', + 'year' => ':count år', + 'month' => '1 månad|:count månader', + 'week' => '1 vecka|:count veckor', + 'day' => '1 dag|:count dagar', + 'hour' => '1 timme|:count timmar', + 'minute' => '1 minut|:count minuter', + 'second' => '1 sekund|:count sekunder', + + 'january' => 'januari', + 'february' => 'februari', + 'march' => 'mars', + 'april' => 'april', + 'may' => 'maj', + 'june' => 'juni', + 'july' => 'juli', + 'august' => 'augusti', + 'september' => 'september', + 'october' => 'oktober', + 'november' => 'november', + 'december' => 'december', + + 'monday' => 'måndag', + 'tuesday' => 'tisdag', + 'wednesday' => 'onsdag', + 'thursday' => 'torsdag', + 'friday' => 'fredag', + 'saturday' => 'lördag', + 'sunday' => 'söndag', + +]; diff --git a/Laravel/vendor/jenssegers/date/src/Lang/sw.php b/Laravel/vendor/jenssegers/date/src/Lang/sw.php new file mode 100644 index 0000000..0af8129 --- /dev/null +++ b/Laravel/vendor/jenssegers/date/src/Lang/sw.php @@ -0,0 +1,45 @@ + ':time ziliyopita', + 'from_now' => ':time kwanzia sasa', + 'after' => ':time baada', + 'before' => ':time kabla', + 'year' => 'mwaka 1|miaka :count', + 'month' => 'mwezi 1|miezi :count', + 'week' => 'wiki 1|wiki :count', + 'day' => 'siku 1|siku :count', + 'hour' => 'saa 1|masaa :count', + 'minute' => 'dakika 1|dakika :count', + 'second' => 'sekunde 1|sekunde :count', + + 'january' => 'Januari', + 'february' => 'Febuari', + 'march' => 'Machi', + 'april' => 'Aprili', + 'may' => 'Mei', + 'june' => 'Juni', + 'july' => 'Julai', + 'august' => 'Agosti', + 'september' => 'Septemba', + 'october' => 'Oktoba', + 'november' => 'Novemba', + 'december' => 'Disemba', + + 'monday' => 'Jumatatu', + 'tuesday' => 'Jumanne', + 'wednesday' => 'Jumatano', + 'thursday' => 'Alhamisi', + 'friday' => 'Ijumaa', + 'saturday' => 'Jumamosi', + 'sunday' => 'Jumapili', +]; diff --git a/Laravel/vendor/jenssegers/date/src/Lang/ta.php b/Laravel/vendor/jenssegers/date/src/Lang/ta.php new file mode 100644 index 0000000..f55c285 --- /dev/null +++ b/Laravel/vendor/jenssegers/date/src/Lang/ta.php @@ -0,0 +1,69 @@ + ':time முன்பு', + 'from_now' => ':time|:time', + 'after' => ':time கழித்து', + 'before' => ':time முன்னால்', + 'year' => '1 ஆண்டு|:count ஆண்டுகள்', + 'month' => '1 மாதம்|:count மாதங்கள்', + 'week' => '1 வாரம்|:count வாரங்கள்', + 'day' => '1 நாள்|:count நாட்கள்', + 'hour' => '1 மணி நேரம்|:count மணி நேரம்', + 'minute' => '1 நிமிடம்|:count நிமிடங்கள்', + 'second' => '1 நொடி|:count நொடிகல்', + + 'january' => 'தை', + 'february' => 'மாசி', + 'march' => 'பங்குனி', + 'april' => 'சித்திரை', + 'may' => 'வைகாசி', + 'june' => 'ஆனி', + 'july' => 'ஆடி', + 'august' => 'ஆவணி', + 'september' => 'புரட்டாசி', + 'october' => 'ஐப்பசி', + 'november' => 'கார்த்திகை', + 'december' => 'மார்கழி', + + 'monday' => 'திங்கட்கிழமை', + 'tuesday' => 'செவ்வாய்க்கிழமை', + 'wednesday' => 'புதன்கிழமை', + 'thursday' => 'வியாழக்கிழமை', + 'friday' => 'வெள்ளிக்கிழமை', + 'saturday' => 'சனிக்கிழமை', + 'sunday' => 'ஞாயிற்றுக்கிழமை', + + 'mon' => 'திங்கள்', + 'tue' => 'செவ்வாய்', + 'wed' => 'புதன்', + 'thu' => 'வியாழன்', + 'fri' => 'வெள்ளி', + 'sat' => 'சனி', + 'sun' => 'ஞாயிறு', + + 'day_ago' => '1 நாள்|:count நாட்களுக்கு', + 'week_ago' => '1 வாரத்திற்கு|:count வாரங்களுக்கு', + 'month_ago' => '1 மாதம்|:count மாதங்களுக்கு', + 'year_ago' => '1 ஆண்டு|:count ஆண்டுகளுக்கு', + + 'second_from_now' => ':count வினாடியில்|:count வினாடிகளில்', + 'minute_from_now' => ':count நிமிடத்தில்|:count நிமிடங்களில்', + 'hour_from_now' => ':count மணி நேரத்தில்|:count மணி நேரத்தில்', + 'day_from_now' => ':count நாளில்|:count நாட்களில்', + 'week_from_now' => ':count வாரத்தில்|:count வாரங்களில்', + 'month_from_now' => ':count மாதத்தில்|:count மாதங்களில்', + 'year_from_now' => ':count ஆண்டில்|:count ஆண்டுகளில்' + +]; diff --git a/Laravel/vendor/jenssegers/date/src/Lang/th.php b/Laravel/vendor/jenssegers/date/src/Lang/th.php new file mode 100644 index 0000000..84247a0 --- /dev/null +++ b/Laravel/vendor/jenssegers/date/src/Lang/th.php @@ -0,0 +1,48 @@ + ':timeที่แล้ว', + 'from_now' => ':timeจากนี้', + 'after' => 'หลัง :time', + 'before' => 'ก่อน :time', + 'year' => ':count ปี', + 'month' => ':count เดือน', + 'week' => ':count สัปดาห์', + 'day' => ':count วัน', + 'hour' => ':count ชั่วโมง', + 'minute' => ':count นาที', + 'second' => ':count วินาที', + + 'january' => 'มกราคม', + 'february' => 'กุมภาพันธ์', + 'march' => 'มีนาคม', + 'april' => 'เมษายน', + 'may' => 'พฤษภาคม', + 'june' => 'มิถุนายน', + 'july' => 'กรกฎาคม', + 'august' => 'สิงหาคม', + 'september' => 'กันยายน', + 'october' => 'ตุลาคม', + 'november' => 'พฤศจิกายน', + 'december' => 'ธันวาคม', + + 'monday' => 'จันทร์', + 'tuesday' => 'อังคาร', + 'wednesday' => 'พุธ', + 'thursday' => 'พฤหัสบดี', + 'friday' => 'ศุกร์', + 'saturday' => 'เสาร์', + 'sunday' => 'อาทิตย์', + +]; diff --git a/Laravel/vendor/jenssegers/date/src/Lang/tk.php b/Laravel/vendor/jenssegers/date/src/Lang/tk.php new file mode 100644 index 0000000..1bb296d --- /dev/null +++ b/Laravel/vendor/jenssegers/date/src/Lang/tk.php @@ -0,0 +1,48 @@ + ':time ozal', + 'from_now' => ':time soňra', + 'after' => ':time soň', + 'before' => ':time öň', + 'year' => '1 ýyl|:count ýyl', + 'month' => '1 aý|:count aý', + 'week' => '1 hepde|:count hepde', + 'day' => '1 gün|:count gün', + 'hour' => '1 sagat|:count sagat', + 'minute' => '1 minut|:count minut', + 'second' => '1 sekunt|:count sekunt', + + 'january' => 'Ýanwar', + 'february' => 'Fewral', + 'march' => 'Mart', + 'april' => 'Aprel', + 'may' => 'Maý', + 'june' => 'Iýun', + 'july' => 'Iýul', + 'august' => 'Awgust', + 'september' => 'Sentýabr', + 'october' => 'Oktýabr', + 'november' => 'Noýabr', + 'december' => 'Dekabr', + + 'monday' => 'Duşenbe', + 'tuesday' => 'Sişenbe', + 'wednesday' => 'Çarşenbe', + 'thursday' => 'Penşenbe', + 'friday' => 'Anna', + 'saturday' => 'Şenbe', + 'sunday' => 'Ýekşenbe', + +]; diff --git a/Laravel/vendor/jenssegers/date/src/Lang/tr.php b/Laravel/vendor/jenssegers/date/src/Lang/tr.php new file mode 100644 index 0000000..edf4a49 --- /dev/null +++ b/Laravel/vendor/jenssegers/date/src/Lang/tr.php @@ -0,0 +1,48 @@ + ':time önce', + 'from_now' => ':time sonra', + 'after' => ':time sonra', + 'before' => ':time önce', + 'year' => ':count yıl', + 'month' => ':count ay', + 'week' => ':count hafta', + 'day' => ':count gün', + 'hour' => ':count saat', + 'minute' => ':count dakika', + 'second' => ':count saniye', + + 'january' => 'Ocak', + 'february' => 'Şubat', + 'march' => 'Mart', + 'april' => 'Nisan', + 'may' => 'Mayıs', + 'june' => 'Haziran', + 'july' => 'Temmuz', + 'august' => 'Ağustos', + 'september' => 'Eylül', + 'october' => 'Ekim', + 'november' => 'Kasım', + 'december' => 'Aralık', + + 'monday' => 'Pazartesi', + 'tuesday' => 'Salı', + 'wednesday' => 'Çarşamba', + 'thursday' => 'Perşembe', + 'friday' => 'Cuma', + 'saturday' => 'Cumartesi', + 'sunday' => 'Pazar', + +]; diff --git a/Laravel/vendor/jenssegers/date/src/Lang/uk.php b/Laravel/vendor/jenssegers/date/src/Lang/uk.php new file mode 100644 index 0000000..d9d0bee --- /dev/null +++ b/Laravel/vendor/jenssegers/date/src/Lang/uk.php @@ -0,0 +1,48 @@ + ':time назад', + 'from_now' => 'через :time', + 'after' => ':time після', + 'before' => ':time до', + 'year' => ':count рік|:count роки|:count років', + 'month' => ':count місяць|:count місяці|:count місяців', + 'week' => ':count тиждень|:count тижні|:count тижнів', + 'day' => ':count день|:count дні|:count днів', + 'hour' => ':count година|:count години|:count годин', + 'minute' => ':count хвилину|:count хвилини|:count хвилин', + 'second' => ':count секунду|:count секунди|:count секунд', + + 'january' => '{0}січень|{1}січня', + 'february' => '{0}лютий|{1}лютого', + 'march' => '{0}березень|{1}березня', + 'april' => '{0}квітень|{1}квітня', + 'may' => '{0}травень|{1}травня', + 'june' => '{0}червень|{1}червня', + 'july' => '{0}липень|{1}липня', + 'august' => '{0}серпень|{1}серпня', + 'september' => '{0}вересень|{1}вересня', + 'october' => '{0}жовтень|{1}жовтня', + 'november' => '{0}листопад|{1}листопада', + 'december' => '{0}грудень|{1}грудня', + + 'monday' => 'понедiлок', + 'tuesday' => 'вiвторок', + 'wednesday' => 'середа', + 'thursday' => 'четвер', + 'friday' => 'п\'ятниця', + 'saturday' => 'субота', + 'sunday' => 'неділя', + +]; diff --git a/Laravel/vendor/jenssegers/date/src/Lang/vi.php b/Laravel/vendor/jenssegers/date/src/Lang/vi.php new file mode 100644 index 0000000..d38bbf7 --- /dev/null +++ b/Laravel/vendor/jenssegers/date/src/Lang/vi.php @@ -0,0 +1,48 @@ + ':time trước', + 'from_now' => ':time từ bây giờ', + 'after' => ':time sau', + 'before' => ':time trước', + 'year' => ':count năm', + 'month' => ':count tháng', + 'week' => ':count tuần', + 'day' => ':count ngày', + 'hour' => ':count giờ', + 'minute' => ':count phút', + 'second' => ':count giây', + + 'january' => 'Tháng một', + 'february' => 'Tháng hai', + 'march' => 'Tháng ba', + 'april' => 'Tháng tư', + 'may' => 'Tháng năm', + 'june' => 'Tháng sáu', + 'july' => 'Tháng bảy', + 'august' => 'Tháng tám', + 'september' => 'Tháng chín', + 'october' => 'Tháng mười', + 'november' => 'Tháng mười một', + 'december' => 'Tháng mười hai', + + 'monday' => 'Thứ hai', + 'tuesday' => 'Thứ ba', + 'wednesday' => 'Thứ tư', + 'thursday' => 'Thứ năm', + 'friday' => 'Thứ sáu', + 'saturday' => 'Thứ bảy', + 'sunday' => 'Chủ nhật', + +]; diff --git a/Laravel/vendor/jenssegers/date/src/Lang/zh-CN.php b/Laravel/vendor/jenssegers/date/src/Lang/zh-CN.php new file mode 100644 index 0000000..5da21d6 --- /dev/null +++ b/Laravel/vendor/jenssegers/date/src/Lang/zh-CN.php @@ -0,0 +1,48 @@ + ':time前', + 'from_now' => ':time距现在', + 'after' => ':time后', + 'before' => ':time前', + 'year' => ':count年', + 'month' => ':count月', + 'week' => ':count周', + 'day' => ':count天', + 'hour' => ':count小时', + 'minute' => ':count分钟', + 'second' => ':count秒', + + 'january' => '一月', + 'february' => '二月', + 'march' => '三月', + 'april' => '四月', + 'may' => '五月', + 'june' => '六月', + 'july' => '七月', + 'august' => '八月', + 'september' => '九月', + 'october' => '十月', + 'november' => '十一月', + 'december' => '十二月', + + 'monday' => '星期一', + 'tuesday' => '星期二', + 'wednesday' => '星期三', + 'thursday' => '星期四', + 'friday' => '星期五', + 'saturday' => '星期六', + 'sunday' => '星期日', + +]; diff --git a/Laravel/vendor/jenssegers/date/src/Lang/zh-TW.php b/Laravel/vendor/jenssegers/date/src/Lang/zh-TW.php new file mode 100644 index 0000000..b4fb5b8 --- /dev/null +++ b/Laravel/vendor/jenssegers/date/src/Lang/zh-TW.php @@ -0,0 +1,48 @@ + ':time前', + 'from_now' => '距現在 :time', + 'after' => ':time後', + 'before' => ':time前', + 'year' => ':count 年', + 'month' => ':count 月', + 'week' => ':count 周', + 'day' => ':count 天', + 'hour' => ':count 小時', + 'minute' => ':count 分鐘', + 'second' => ':count 秒', + + 'january' => '一月', + 'february' => '二月', + 'march' => '三月', + 'april' => '四月', + 'may' => '五月', + 'june' => '六月', + 'july' => '七月', + 'august' => '八月', + 'september' => '九月', + 'october' => '十月', + 'november' => '十一月', + 'december' => '十二月', + + 'monday' => '星期一', + 'tuesday' => '星期二', + 'wednesday' => '星期三', + 'thursday' => '星期四', + 'friday' => '星期五', + 'saturday' => '星期六', + 'sunday' => '星期日', + +]; diff --git a/Laravel/vendor/jenssegers/date/src/Lang/zh.php b/Laravel/vendor/jenssegers/date/src/Lang/zh.php new file mode 100644 index 0000000..5da21d6 --- /dev/null +++ b/Laravel/vendor/jenssegers/date/src/Lang/zh.php @@ -0,0 +1,48 @@ + ':time前', + 'from_now' => ':time距现在', + 'after' => ':time后', + 'before' => ':time前', + 'year' => ':count年', + 'month' => ':count月', + 'week' => ':count周', + 'day' => ':count天', + 'hour' => ':count小时', + 'minute' => ':count分钟', + 'second' => ':count秒', + + 'january' => '一月', + 'february' => '二月', + 'march' => '三月', + 'april' => '四月', + 'may' => '五月', + 'june' => '六月', + 'july' => '七月', + 'august' => '八月', + 'september' => '九月', + 'october' => '十月', + 'november' => '十一月', + 'december' => '十二月', + + 'monday' => '星期一', + 'tuesday' => '星期二', + 'wednesday' => '星期三', + 'thursday' => '星期四', + 'friday' => '星期五', + 'saturday' => '星期六', + 'sunday' => '星期日', + +]; diff --git a/Laravel/vendor/jlawrence/eos/README.md b/Laravel/vendor/jlawrence/eos/README.md new file mode 100644 index 0000000..0cc6f9f --- /dev/null +++ b/Laravel/vendor/jlawrence/eos/README.md @@ -0,0 +1,168 @@ +# EOS + +[![Build Status](https://travis-ci.org/jlawrence11/eos.svg?branch=master)](https://travis-ci.org/jlawrence11/eos) +[![Latest Stable Version](https://poser.pugx.org/jlawrence/eos/v/stable.svg)](https://packagist.org/packages/jlawrence/eos) +[![Latest Unstable Version](https://poser.pugx.org/jlawrence/eos/v/unstable.svg)](https://packagist.org/packages/jlawrence/eos) +[![Total Downloads](https://poser.pugx.org/jlawrence/eos/downloads.svg)](https://packagist.org/packages/jlawrence/eos) +[![License](https://poser.pugx.org/jlawrence/eos/license.svg)](https://packagist.org/packages/jlawrence/eos) +[![Code Climate](https://codeclimate.com/github/jlawrence11/eos/badges/gpa.svg)](https://codeclimate.com/github/jlawrence11/eos) +[![Test Coverage](https://codeclimate.com/github/jlawrence11/eos/badges/coverage.svg)](https://codeclimate.com/github/jlawrence11/eos) + +## Installation + +Install EOS with [Composer](https://getcomposer.org/) + +Add the dependency: + +```json +"require": { + "jlawrence/eos": "3.*" +} +``` + +Run `composer update` and you're done. + +## Equation Operating System + +### jlawrence\eos\ + +This class makes it incredibly easy to use and parse/solve equations in +your own applications. __NOTE__ ALL of the functions within +these classes are static. It is also important to note that these +classes throw exceptions if running in to errors, please read the beginning +of the `Math.php` file for the defines of the exceptions thrown. Exceptions +includes a descriptive message of the error encountered and within `Parser` will +also typically include the full equation used. + +#### Parser + +This class has one important function, `Parser::solve()` which does all the legwork, +so we'll start there and end with examples. + + use jlawrence\eos\Parser; + +##### solve($infix, $variables) + +To use this function: + + $value = Parser::solve($eq, $vars); + +###### _$infix_ + +Is simply a standard equation with variable support. + +Example Equations: + + 2(4x) + 5+((1+2)*4)+3 + 5+4(1+2)+3 + 10*sin(x) + 10*cos(x) + +The parser has good implied multiplication. + +###### _$variables_ + +The variables are fairly simple to understand. If it contains a scalar (ie +a non-array value) _every_ variable within the equation will be replaced with +that number. If it contains an array, there will be a by-variable replacement - +note that the array MUST be in the format of `'variable' => value` +Such as: + + array( + 'x' => 2, + 'y' => 3 + ); + +Given the equation: + + 5x^y + +If this is called by: + + Parser::solveIF('5x^y', 2); + +It will equal '20', as every variable is replaced by 2. However, if called like: + + Parser::solveIF('5x^y', array( + 'x' => 2, + 'y' => 3)); + +You will get the result of '40' as it would equate to `5*2^3`, as expected. + +#### jlawrence\eos\Graph + +To use: + + use jlawrence\eos\Graph; + +This is the fun class that can create graphs. +The image will default to 640x480, to initialize a different size use: + + Graph::init($width, $height); + +The `$width` and `$height` are the values used for the image size. + +##### graph($eq, $xLow, $xHigh, [$xStep, $xyGrid, $yGuess, ...]) + +This method will generate the graph for the equation (`$eq`) with a min and max +`x` range that it will parse through. All Variables explained: + +* `$eq` + The Standard Equation to use. _Must_ have a variable in it. (ie `x`) +* `$xLow` + The starting point for the calculations - the left side of the graph. +* `$xHigh` + The last point calculated for the variable - the right side of the graph. +* `$xStep` + Stepping point for the variable. Set to null/false to use the smart xStep feature within the graph class. +* `$xyGrid = false` + Show `x/y` gridlines on the graph. Defaults to false. Each grid line is set at an integer, with a max of 30 lines, so it will calculate the stepping for it. When the grid is show, the lines are labeled along the top and left side of the image. +* `$yGuess = true` + Guess the Lower and Upper `y-bounds` (The bottom and top of the image + respectively.) This will set the the bounds to the lowest `y` value + encountered for the `$yLow`, and the largest `y` value for `$yHigh`. +* `$yLow = null` + Lower bound for `y`. Will be reset if a lower value for `y` is found if `$yGuess` is true. +* `$yHigh = null` + Upper bound for `y`. Will be reset if a larger `y` value is found if `$yGuess` is true. + +If you don't want the axis' labeled with their numbers, you can turn off the default behavior with: + + Graph::$labelAxis = false; + +TODO: + +* Allow user-defined colors for all aspects of the graph. + +To set up a graph with a `21x21` window (ie `-10 to 10`) for the equation +`sin(x)` and output as PNG, would use as: + + Graph::graph('sin(x)', -10, 10, 0.01, true, false, -10, 10); + Graph::outPNG(); + +It would look like: +![Sin(x)](http://s6.postimg.org/nm7tcj8lt/eos3.png) + +## Development + +### Testing + +Run the unit tests by first installing phpunit with (from the repository root) + +``` +composer update +``` + +Then run the tests with + +``` +phpunit +``` +--- + +When creating classes for adding functions to the package, make sure to call +`Parser::solveIF()` instead of `Parser::solve()` so that the class retains +the full original equation used by the user. + +--- diff --git a/Laravel/vendor/jlawrence/eos/composer.json b/Laravel/vendor/jlawrence/eos/composer.json new file mode 100644 index 0000000..02472e4 --- /dev/null +++ b/Laravel/vendor/jlawrence/eos/composer.json @@ -0,0 +1,22 @@ +{ + "name": "jlawrence/eos", + "description": "Parse and solve math equations without using 'eval()'.", + "license": "LGPL-2.1+", + "keywords": ["EOS","equations","math","solve"], + "authors": [ + { + "name": "Jon Lawrence", + "email": "jon@jon-lawrence.com" + } + ], + "require": {}, + "require-dev": { + "phpunit/phpunit": "4.*", + "codeclimate/php-test-reporter": "dev-master" + }, + "autoload": { + "psr-4": { + "jlawrence\\eos\\": "src/" + } + } +} diff --git a/Laravel/vendor/jlawrence/eos/src/AdvancedFunctions.php b/Laravel/vendor/jlawrence/eos/src/AdvancedFunctions.php new file mode 100644 index 0000000..c6ec4eb --- /dev/null +++ b/Laravel/vendor/jlawrence/eos/src/AdvancedFunctions.php @@ -0,0 +1,86 @@ + 'class::function' + * + * @return array + */ + public static function map() + { + $ret = array( + 'sum' => __NAMESPACE__ .'\AdvancedFunctions::sum', + 'log' => __NAMESPACE__ .'\AdvancedFunctions::log' + ); + + return $ret; + } + + /** + * Summation function + * + * Will take an equation and run it through a summation algorithm. All parts + * of the input can be in equation form, so the start and stops can have + * equations to determine what they should be using the globally inputted + * variables from the user. + * + * @param string $input String in the form of "equation, start, stop" + * @param array $vars Array of variables used for solving the current equation. + * @return float The summation of the equation + */ + public static function sum($input, $vars) + { + //remove whitespace + $input = preg_replace("/\s/", "", $input); + //split in to parts + list($eq, $start, $stop) = explode(",", $input); + $ret = 0; + //make sure there's a variable, or return equation as-is + if((Parser::solveIF($eq,0)) == preg_replace("/[\(\)]/", "", $eq)) { + return $eq; + } + $start = Parser::solveIF($start, $vars); + $stop = Parser::solveIF($stop, $vars); + for($i=$start; $i <= $stop; $i++) { + $ret += Parser::solveIF($eq, $i); + } + + return $ret; + } + + /** + * Log function for all non-natural logs. Defaults to base 10 + * + * @param $input + * @param array $vars Variable replacement + * @return float + * @throws \Exception + */ + public static function log($input, $vars) + { + $base = 10; + if(stripos($input, ",")) { + list($eq, $base) = explode(",", $input); + } else { + $eq = $input; + } + //Make sure no functions or operators are hidden inside + $sc = Parser::solveIF($eq, $vars); + if(10 != $base) { + $base = Parser::solveIF($base, $vars); + } + $ans = log($sc, $base); + if(is_nan($ans) || is_infinite($ans)) { + throw new \Exception("Result of 'log({$eq}, {$base}) = {$ans}' is either infinite or a non-number in ". Parser::$inFix, Math::E_NAN); + } + return $ans; + } +} \ No newline at end of file diff --git a/Laravel/vendor/jlawrence/eos/src/Graph.php b/Laravel/vendor/jlawrence/eos/src/Graph.php new file mode 100644 index 0000000..19e7e79 --- /dev/null +++ b/Laravel/vendor/jlawrence/eos/src/Graph.php @@ -0,0 +1,281 @@ + + * @copyright Copyright ©2005-2013 Jon Lawrence + * @license http://opensource.org/licenses/LGPL-2.1 LGPL 2.1 License + * @package Math + * @subpackage EOS + * @version 3.x + */ +class Graph +{ + private static $width = 640; + private static $height = 480; + + /** + * @var resource + */ + private static $image; + + public static $labelAxis = true; + public static $backgroundColor = array(255, 255, 255); + public static $gridColor = array(150, 150, 150); + public static $axisColor = array(0, 0, 0); + public static $lineColor = array(0, 0, 0); + + /** + * Initializer + * + * Sets up the Graph class with an image width and height defaults to + * 640x480 + * + * @param int $width Image width + * @param int $height Image height + */ + public static function init($width = 640, $height = 480) + { + // default width and height equal to that of a poor monitor (in early 2000s) + self::$width = $width; + self::$height = $height; + + // initialize main class + Parser::init(); + //can't really mess this up, return true + return true; + } + + + /** + * Create GD Graph Image + * + * Creates a GD image based on the equation given with the parameters that are set + * + * @param string $eq Equation to use. Needs variable in equation to create graph, all variables are interpreted as 'x' + * @param integer $xLow Lower x-bound for graph + * @param integer $xHigh Upper x-bound for graph + * @param float $xStep Stepping points while solving, the lower, the better precision. Slow if lower than .01 + * @param bool $xyGrid Draw grid-lines? + * @param bool $yGuess Guess the upper/lower yBounds? + * @param int $yLow Lower y-bound + * @param int $yHigh Upper y-bound + * @return null + */ + public static function graph($eq, $xLow, $xHigh, $xStep = null, $xyGrid = false, $yGuess = true, $yLow = null, $yHigh = null) + { + //create our image and allocate the two colors + $img = ImageCreate(self::$width, self::$height); + //The following noinspection needed because the first color allocated is the background, but not used for anything else. + /** @noinspection PhpUnusedLocalVariableInspection */ + $bgColor = ImageColorAllocate($img, self::$backgroundColor[0], self::$backgroundColor[1], self::$backgroundColor[2]); + $aColor = ImageColorAllocate($img, self::$axisColor[0], self::$axisColor[1], self::$axisColor[2]); + $lColor = ImageColorAllocate($img, self::$lineColor[0], self::$lineColor[1], self::$lineColor[2]); + $gColor = ImageColorAllocate($img, self::$gridColor[0], self::$gridColor[1], self::$gridColor[2]); + //$black = ImageColorAllocate($img, 0, 0, 0); + //$grey = ImageColorAllocate($img, 150, 150, 150); + //$darkGrey = ImageColorAllocate($img, 50, 50, 50); + if ($xLow > $xHigh) + list($xLow, $xHigh) = array($xHigh, $xLow); //swap function + //Smart xStep calc + if ($xStep == false) { + $xStep = ($xHigh - $xLow) / self::$width; + } + $xStep = abs($xStep); + $hand = null; + $xVars = array(); + //If yGuess is true, make sure yLow and yHigh are not set + if ($yGuess) { + $yLow = null; + $yHigh = null; + } + //We want to limit the number of lines/ticks/etc so graph remains readable, set max now + $xMaxLines = 30; + $yMaxLines = 30; + //DEVELOPER, UNCOMMENT NEXT LINE IF WANTING TO PREVENT SLOW GRAPHS + //$xStep = ($xStep < .01) ? $xStep : 0.01; + + $xScale = self::$width / ($xHigh - $xLow); + $counter = 0; + // @codeCoverageIgnoreStart + if (Math::$DEBUG) { + $hand = fopen("Graph.txt", "w"); + fwrite($hand, "$eq\n"); + } + // @codeCoverageIgnoreEnd + for ($i = $xLow; $i <= $xHigh; $i += $xStep) { + $tester = sprintf("%10.3f", $i); + if ($tester == "-0.000") $i = 0; + $y = Parser::solve($eq, $i); + //eval('$y='. str_replace('&x', $i, $eq).";"); /* used to debug my Parser class results */ + // @codeCoverageIgnoreStart + if (Math::$DEBUG) { + $tmp1 = sprintf("y(%5.3f) = %10.3f\n", $i, $y); + fwrite($hand, $tmp1); + } + // @codeCoverageIgnoreEnd + + // If developer asked us to find the upper and lower bounds for y... + if ($yGuess == true) { + $yLow = ($yLow === null || ($y < $yLow)) ? $y : $yLow; + $yHigh = ($yHigh === null || $y > $yHigh) ? $y : $yHigh; + } + $xVars[$counter] = $y; + $counter++; + } + + + //Now that we have all the variables stored...find the yScale + $yScale = self::$height / (($yHigh) - ($yLow)); + // @codeCoverageIgnoreStart + //Calculate the stepping points for lines now + if ($yHigh - $yLow > $yMaxLines) { + $yJump = ceil(($yHigh - $yLow) / $yMaxLines); + } else { + $yJump = 1; + } + if ($xHigh - $xLow > $xMaxLines) { + $xJump = ceil(($xHigh - $xLow) / $xMaxLines); + } else { + $xJump = 1; + } + // @codeCoverageIgnoreEnd + + // add 0.01 to each side so that if y is from 1 to 5, the lines at 1 and 5 are seen + $yLow -= 0.01; + $yHigh += 0.01; + + // @codeCoverageIgnoreStart + if (Math::$DEBUG) { + fwrite($hand, $yLow . " -- " . $yHigh . "\n"); + } + // @codeCoverageIgnoreEnd + + // if developer wanted a grid on the graph, add it now + if ($xyGrid == true) { + // @codeCoverageIgnoreStart + if (Math::$DEBUG) { + fwrite($hand, "Drawing Grid\n"); + } + // @codeCoverageIgnoreEnd + for ($i = ceil($yLow); $i <= floor($yHigh); $i += $yJump) { + $i0 = abs($yHigh - $i); + ImageLine($img, 0, $i0 * $yScale, self::$width, $i0 * $yScale, $gColor); + imagestring($img, 1, 2, $i0 * $yScale + 2, $i, $gColor); + } + for ($i = ceil($xLow); $i <= floor($xHigh); $i += $xJump) { + $i0 = abs($xLow - $i); + ImageLine($img, $i0 * $xScale, 0, $i0 * $xScale, self::$height, $gColor); + imagestring($img, 1, $i0 * $xScale + 2, 2, $i, $gColor); + } + } + + //Now that we have the scales, let's see if we can draw an x/y-axis + if ($xLow <= 0 && $xHigh >= 0) { + //the y-axis is within our range - draw it. + $x0 = abs($xLow) * $xScale; + ImageLine($img, $x0, 0, $x0, self::$height, $aColor); + for ($i = ceil($yLow); $i <= floor($yHigh); $i += $yJump) { + $i0 = abs($yHigh - $i); + ImageLine($img, $x0 - 3, $i0 * $yScale, $x0 + 3, $i0 * $yScale, $aColor); + //If we want the axis labeled... (call in the allies?) + if (self::$labelAxis) { + imagestring($img, 1, $x0 + 2, $i0 * $yScale + 1, $i, $aColor); + } + } + } + if ($yLow <= 0 && $yHigh >= 0) { + //the x-axis is within our range - draw it. + $y0 = abs($yHigh) * $yScale; + ImageLine($img, 0, $y0, self::$width, $y0, $aColor); + //Create ticks for y + for ($i = ceil($xLow); $i <= floor($xHigh); $i += $xJump) { + $i0 = abs($xLow - $i); + ImageLine($img, $i0 * $xScale, $y0 - 3, $i0 * $xScale, $y0 + 3, $aColor); + //If we want the axis labeled.... + if (self::$labelAxis) { + imagestring($img, 1, $i0 * $xScale + 2, $y0 + 1, $i, $aColor); + } + } + } + $counter = 1; + + //now graph it all ;] + for ($i = $xLow + $xStep; $i <= $xHigh; $i += $xStep) { + $x1 = (abs($xLow - ($i - $xStep))) * $xScale; + $y1 = (($xVars[$counter - 1] < $yLow) || ($xVars[$counter - 1] > $yHigh)) ? -1 : (abs($yHigh - $xVars[$counter - 1])) * $yScale; + $x2 = (abs($xLow - $i)) * $xScale; + $y2 = (($xVars[$counter] < $yLow) || ($xVars[$counter] > $yHigh)) ? -1 : (abs($yHigh - $xVars[$counter])) * $yScale; + + // if any of the y values were found to be off of the y-bounds, don't graph those connecting lines + if ($y1 != -1 && $y2 != -1) + ImageLine($img, $x1, $y1, $x2, $y2, $lColor); + $counter++; + } + // @codeCoverageIgnoreStart + if (Math::$DEBUG) { + fclose($hand); + } + // @codeCoverageIgnoreEnd + self::$image = $img; + } + + /** + * Sends JPG to browser + * + * Sends a JPG image with proper header to output + * + * @codeCoverageIgnore + */ + public static function outJPG() + { + header("Content-type: image/jpeg"); + ImageJpeg(self::$image); + } + + /** + * Sends PNG to browser + * + * Sends a PNG image with proper header to output + * + * @codeCoverageIgnore + */ + public static function outPNG() + { + header("Content-type: image/png"); + ImagePng(self::$image); + } + + /** + * Output GD Image + * + * Will give the developer the GD resource for the graph that + * can be used to store the graph to the FS or other media + * + * @return Resource GD Image Resource + */ + public static function getImage() + { + return self::$image; + } + + /** + * Output GD Image + * + * Alias for eqGraph::getImage() + * + * @return Resource GD Image resource + */ + public static function outGD() + { + return self::getImage(); + } +} diff --git a/Laravel/vendor/jlawrence/eos/src/Math.php b/Laravel/vendor/jlawrence/eos/src/Math.php new file mode 100644 index 0000000..53fe11d --- /dev/null +++ b/Laravel/vendor/jlawrence/eos/src/Math.php @@ -0,0 +1,47 @@ + + * @license http://opensource.org/licenses/LGPL-2.1 LGPL 2.1 License + * @copyright Copyright �2012, Jon Lawrence + * @package Math + * @subpackage Matrix + */ +class Matrix { + + /** + * Invalid String input type + */ + const E_INVALID_INPUT = 5001; + + /** + * Matrix needed to be a square matrix for the operation + */ + const E_NOT_SQUARE = 5002; + + /** + * Matrix was undefined + */ + const E_NO_MATRIX = 5003; + + /** + * Matrix had varying column lengths + */ + const E_INVALID_MATRIX = 5004; + + /** + * Matrix operation required rows/cols to be even, they were not + */ + const E_NOT_EQUAL = 5005; + + /** + * Determinate was '0' while preforming another operation + */ + const E_NO_INVERSE = 5006; + + private $matrix; + + /** + * Construct method + * + * For format of input string, see the see tag below + * + * @see Matrix::_assign() + * @param string $mText Matrix text input + */ + public function __construct($mText="") + { + if ($mText) $this->_assign($mText); + } + + /** + * Create a matrix based on string input similar to the TI Calculators + * input string "[1,2,3;4,5,6;7,8,9]" is the equivalent of the matrix: + *
+     * | 1  2  3 |
+     * | 4  5  6 |
+     * | 7  8  9 |
+     * 
+ * + * @param String $mText The matrix in string format to assign to the current object + * @return Boolean True if is passes verification after being converted + * @throws \Exception If the input text is not in a valid format + */ + public function _assign($mText) + { + if(trim($mText)=="") + return false; + + $mText = preg_replace("/\s/", "", $mText); + if(!preg_match("/^\[(([\-]*[0-9\. ]+[,]{0,1})+[;]{0,1})*\]$/", $mText)) { + throw new \Exception("'{$mText}' is not a valid input", Matrix::E_INVALID_INPUT); + } + $mText = preg_replace("/(\[|\])/", "", $mText); + + $rows = explode(";", $mText); + $i=0;$j=0; + foreach($rows as $row) + { + $cols = explode(",", $row); + foreach($cols as $value) + { + $this->matrix[$i][$j] = $value; + $j++; + } + $i++; + $j = 0; + } + + return $this->_verify(); + } + + /** + * Private function that will verify all the columns have the same + * number of items, ensuring it is a valid matrix + * + * @access private + * @param array|bool $mArray + * @return bool True if it passes, false if not a valid matrix + */ + private function _verify($mArray = false) + { + if(!$mArray) $mArray = $this->matrix; + $nSet = false; + + if(is_array($mArray)) + { + foreach($mArray as $row) + { + $cols = count($row); + if($nSet===false) { + $nSet = $cols; + } + if($cols != $nSet) { + return false; + } + } + } else { + return false; + } + + return true; + } + + /** + * Is it a valid matrix? + * + * Public function to tell the class user whether or not the passed + * array is valid, if no array is passed, it will tell the user whether + * the matrix of the current instance is valid. Valid is denoted by all + * rows have the same number of columns. + * + * @param array|bool $mArray Array to be used, if not assigned will default to $this->matrix + * @return bool True/False depending on if array is a valid matrix + */ + public function isValid($mArray = false) + { + if(!$mArray) $mArray = $this->matrix; + return $this->_verify($mArray); + } + + /** + * Is it a square Matrix? + * + * Will determine whether or not the matrix is valid, and if it + * is, will determine if the matrix is a square matrix (n by n). + * + * @param array|bool $mArray Matrix array, if not assigned will use $this->matrix + * @return bool True/False depending on whether or not the matrix is square + */ + public function isSquare($mArray = false) + { + if(!$mArray) $mArray = $this->matrix; + if(!$this->_verify($mArray)) { + return false; + } + $rows = count($mArray); + $cols = count($mArray[0]); + return ($rows == $cols); + } + + /** + * Get 'n' from a square (n by n) Matrix + * + * Will check to see if a matrix is square, if so, will return 'n', which + * is the number of rows==columns in the matrix + * + * @param array|bool $mArray Matrix array, uses $this->matrix if not assigned + * @return int The 'n' of a square matrix, or false if not square + * @throws \Exception If not a square matrix, throws an exception + */ + public function _getN($mArray = false) + { + if(!$mArray) $mArray = $this->matrix; + + if($this->isSquare($mArray)) { + return count($mArray); + } else { + $m = $this->toString($mArray); + throw new \Exception("'{$m}' is not a square matrix", Matrix::E_NOT_SQUARE); + } + } + + /** + * Create an Identity Matrix + * + * Creates an Identity Matrix of size 'n'. + * + * @link http://en.wikipedia.org/wiki/Identity_matrix + * @param int $n The rows/cols of identity matrix + * @param bool $useInternal If true will set $this->matrix + * @return Matrix|bool Return an identity matrix if $useInternal is false, otherwise 'true' + */ + public function createIdentity($n, $useInternal = true) + { + $mArray = array(); + for($rows=0;$rows<$n;$rows++) { + for($cols=0;$cols<$n;$cols++) { + if($rows==$cols) { + $mArray[$rows][$cols] = 1; + } else { + $mArray[$rows][$cols] = 0; + } + } + } + if($useInternal == true) { + $this->matrix = $mArray; + return true; + } else { + $nMatrix = new Matrix($this->toString($mArray)); + return $nMatrix; + } + + } + + /** + * Convert current Matrix to string format + * + * Convert an array to the string format used by this class. + * + * @see Matrix::_assign() + * @param array|bool $mArray if not assigned will use this instance's matrix. + * @throws \Exception If matrix is not an array + * @return string The array broken down in to string format + */ + public function toString($mArray = false) + { + if(!$mArray) $mArray = $this->matrix; + $rows=array(); + if(is_array($mArray)) + { + foreach($mArray as $cols){ + $rows[] = implode(",", $cols); + } + $retString = sprintf("[%s]", implode($rows, ";")); + return $retString; + } else { + throw new \Exception("No matrix to convert", Matrix::E_NO_MATRIX); + } + } + + /** + * Overload PHP's class __toString() method + * + * PHP magic method for "echoing" this object without a specific method called + * Will use {@link Matrix::toString()} with no parameters for it's return. + * + * @return string Returns the $matrix value in string format + */ + public function __toString() + { + return $this->toString(); + } + + /** + * Get Matrix Array + * + * Will return the matrix array of the current instance. + * + * @return array The matrix array of the current instance + */ + public function getArray() + { + return $this->matrix; + } + + /** + * Formatted Matrix output for use in console + * + * Will output the matrix in 'pretty' format, if used with 'echo' and + * HTML, surround it by the '<
>' and '<
>' tags to display properly + * + * @param int $width The width of printing space to use + * @param array|bool $mArray Matrix array, defaults to $this->matrix + * @return string "Pretty-Printed" matrix in ASCII format + */ + public function prettyPrint($width=80, $mArray=false) + { + if(!$mArray) $mArray = $this->matrix; + if(!$this->_verify($mArray)) return false; + + $out = ""; + $aCount = count($mArray[0]); + $space = floor(($width-4)/$aCount); + $space_2 = floor($space/2); + + foreach($mArray as $row) + { + $out .= sprintf("| %{$space_2}.2f", $row[0]); + for($i=1;$i<$aCount;$i++) + { + $out .= sprintf("%{$space}.2f", $row[$i]); + } + $out .= sprintf("%{$space_2}s |\n", " "); + } + + return $out; + } + + /** + * Adds two matrices together + * + * Will add the inputted Matrix to the current instance, and return + * the result as Matrix class. + * + * @link http://en.wikipedia.org/wiki/Matrix_addition + * @param Matrix $nMatrix Matrix class to be added to current instance + * @return Matrix The result of the addition + * @throws \Exception $msg of exception explains problem + */ + public function addMatrix(Matrix $nMatrix) + { + if(!$this->_verify() || !$nMatrix->_verify()) + throw new \Exception("Matrices have varying column sizes", Matrix::E_INVALID_MATRIX); + + $matrix1 = $this->getArray(); + $matrix2 = $nMatrix->getArray(); + if((count($matrix1)!=count($matrix2)) || (count($matrix1[0])!=count($matrix2[0]))) + { + $m1 = $this->toString($matrix1); + $m2 = $this->toString($matrix2); + throw new \Exception("The rows and/or columns '{$m1}' and '{$m2}' are not the same", Matrix::E_NOT_EQUAL); + } + + $rArray = array(); + for($row=0;$rowtoString($rArray)); + return $rMatrix; + } + + /** + * Subtract Matrices + * + * Will subtract the inputted Matrix from the current instance, and return + * the result as Matrix class. + * + * @link http://en.wikipedia.org/wiki/Matrix_subtraction + * @param Matrix $nMatrix Matrix class to be subtracted from current instance + * @return Matrix The result of the subtraction + * @throws \Exception $msg of exception explains problem + */ + public function subMatrix(Matrix $nMatrix) + { + if(!$this->_verify() || !$nMatrix->_verify()) + throw new \Exception("Matrices have varying column sizes", Matrix::E_INVALID_MATRIX); + + $matrix1 = $this->getArray(); + $matrix2 = $nMatrix->getArray(); + if((count($matrix1)!=count($matrix2)) || (count($matrix1[0])!=count($matrix2[0]))) + { + $m1 = $this->toString($matrix1); + $m2 = $this->toString($matrix2); + throw new \Exception("The rows and/or columns '{$m1}' and '{$m2}' are not the same", Matrix::E_NOT_EQUAL); + } + + $rArray = array(); + for($row=0;$rowtoString($rArray)); + return $rMatrix; + } + + /** + * Multiply current matrix by a scalar value + * + * Multiplies a matrix by a scalar value (int/float/etc) (constant, ie '2') + * + * @link http://en.wikipedia.org/wiki/Scalar_multiplication + * @param float $k The value to multiply the matrix by + * @return Matrix Returns a new Matrix instance with the result + * @throws \Exception if the instance matrix is not valid + */ + public function mpScalar($k) + { + //we'll verify a true matrix to ... help the user + if(!$this->_verify()) + throw new \Exception("Matrix '{$this}' has varying column sizes", Matrix::E_INVALID_MATRIX); + + $cArray = $this->getArray(); + $rArray = array(); + $rows = count($cArray); + $cols = count($cArray[0]); + for($i=0;$i<$rows;$i++) { + for($j=0;$j<$cols;$j++) { + $rArray[$i][$j] = $cArray[$i][$j] * $k; + } + } + $rMatrix = new Matrix($this->toString($rArray)); + return $rMatrix; + } + + /** + * Get the Matrix Determinant + * + * Finds the determinant of the square matrix, user should not use + * the parameter, as that is meant to allow recursive calling + * of this function from within itself. + * + * @link http://en.wikipedia.org/wiki/Matrix_determinant + * @param array|bool $mArray The array to find a determinate of + * @return float The Determinate of the square matrix + * @throws \Exception If matrix is 1,1 or is not square + */ + public function getDeterminant($mArray = false) + { + if(!$mArray) $mArray = $this->matrix; + //print_r($mArray); + if(!$this->isSquare($mArray)) + throw new \Exception("'{$this}' is not a square matrix", Matrix::E_NOT_SQUARE); + + $n = $this->_getN($mArray); + if($n < 1){ + // @codeCoverageIgnoreStart + // Should never get this far + throw new \Exception("No Matrix", Matrix::E_NO_MATRIX); + // @codeCoverageIgnoreEnd + } elseif ($n == 1) { + $det = $mArray[0][0]; + } elseif ($n == 2) { + $det = $mArray[0][0]*$mArray[1][1] - $mArray[1][0]*$mArray[0][1]; + } else { + $det = 0; + $nArray = array(); + for($j1=0;$j1<$n;$j1++) { + for($i=1;$i<$n;$i++) { + $j2 = 0; + for($j=0;$j<$n;$j++) { + if($j==$j1) { + continue; + } + $nArray[$i-1][$j2] = $mArray[$i][$j]; + $j2++; + } + } + $det += pow(-1,2+$j1)*$mArray[0][$j1]*$this->getDeterminant($nArray); + } + } + return $det; + } + + /** + * coFactor Matrix + * + * Will return a Matrix of coFactors for the matrix provided, or an array + * of the matrix as is the default. + * + * @link http://en.wikipedia.org/wiki/Matrix_cofactors + * @param array|bool $cArray A matrix in array format (or $this->matrix by default) + * @param bool $asArray When set to true, will return an array, when false a Matrix Object + * @return Matrix|array A matrix of coFactors for the array provided (or current matrix) + * @throws \Exception if the matrix is not square + */ + public function coFactor($cArray=false,$asArray=true) + { + if(!$cArray) $cArray = $this->matrix; + if(!$this->isSquare($cArray)) + throw new \Exception("'{$this}' is not a square matrix", Matrix::E_NOT_SQUARE); + + $n = $this->_getN($cArray); + $minor = array(); + $rArray = array(); + + for($j=0;$j<$n;$j++){ + for($i=0;$i<$n;$i++) { + //Form the adjugate + $i1 = 0; + for($ii=0;$ii<$n;$ii++) { + if($ii==$i) { + continue; + } + $j1=0; + for($jj=0;$jj<$n;$jj++) { + if($jj==$j) { + continue; + } + $minor[$i1][$j1] = $cArray[$ii][$jj]; + $j1++; + } + $i1++; + } + $det = $this->getDeterminant($minor); + $rArray[$i][$j] = pow(-1,$i+$j+2)*$det; + } + } + if($asArray==false){ + $rMatrix = new Matrix($this->toString($rArray)); + return $rMatrix; + } else { + return $rArray; + } + + } + + /** + * Will transpose the current matrix or array provided + * + * Transposes the current matrix, or the array provided + * + * @link http://en.wikipedia.org/wiki/Matrix_transpose + * @param array|bool $cArray the array to transpose (defaults to $this->matrix) + * @param bool $asArray whether to return an array or Matrix object + * @return array|Matrix Defaults to returning an array of the transposed matrix + * @throws \Exception if the matrix is not square + */ + public function transpose($cArray=false,$asArray=true) + { + if(!$cArray) $cArray = $this->matrix; + if(!$this->isSquare($cArray)) + throw new \Exception("'{$this}' is not a square matrix", Matrix::E_NOT_SQUARE); + + $n = $this->_getN(); + $nArray = array(); + for($i=0;$i<$n;$i++) { + for($j=0;$j<$n;$j++) { + $nArray[$j][$i] = $cArray[$i][$j]; + } + } + if($asArray==true) { + return $nArray; + } else { + $nMatrix = new Matrix($this->toString($nArray)); + return $nMatrix; + } + } + + /** + * Adjugate Matrix + * + * Will return the Adjugate matrix of the array provided + * or the current matrix instance if not provided. + * + * @link http://en.wikipedia.org/wiki/Adjugate_matrix + * @param array|bool $cArray Defaults to $this->matrix if not provided + * @param bool $asArray Whether to return an array or Matrix object + * @return array|Matrix Defaults to return the array of the Adjugate matrix + */ + public function adjugate($cArray=false,$asArray=true) + { + if(!$cArray) $cArray = $this->matrix; + $rArray = $this->transpose($this->coFactor($cArray)); + if($asArray==true) + return $rArray; + + $rMatrix = new Matrix($this->toString($rArray)); + return $rMatrix; + } + + /** + * Inverse of current matrix + * + * Will give the inverse of the array provided or the current matrix + * Matrix returned denoted by A^-1 + * + * @link http://en.wikipedia.org/wiki/Inverse_matrix + * @param array|bool $cArray Array to invert (defaults to $this->matrix) + * @return Matrix By default returns a new instance of Matrix + * @throws \Exception for any number of reasons that would make the inverse not available + */ + public function inverse($cArray = false) + { + if(!$cArray) $cArray = $this->matrix; + + $det = $this->getDeterminant($cArray); + if($det == 0) + throw new \Exception("Determinant of {$this} is 0, No Inverse found", Matrix::E_NO_INVERSE); + + + $scalar = 1/$det; + $adj = $this->adjugate($cArray, false); + $iMatrix = $adj->mpScalar($scalar); + return $iMatrix; + } + + /** + * Multiply Matrices + * + * This function will multiply the current matrix with the matrix provided. + * If current Matrix is denoted by 'A' and the inputted is denoted by 'B', + * When written, this will return AB. + * + * @link http://en.wikipedia.org/wiki/Matrix_multiplication + * @param Matrix $bMatrix The matrix to multiply with the current + * @return Matrix The result of multiplication. + * @throws \Exception $msg explains why operation failed + */ + public function mpMatrix(Matrix $bMatrix) + { + if(!$this->_verify() || !$bMatrix->_verify()) { + // @codeCoverageIgnoreStart + // Should never get this far + $eM1 = $this->toString(); + $eM2 = $bMatrix->toString(); + throw new \Exception("Either '{$eM1}' and/or '{$eM2}' is not a valid Matrix", Matrix::E_INVALID_MATRIX); + // @codeCoverageIgnoreEnd + } + $aArray = $this->matrix; + $bArray = $bMatrix->getArray(); + + //The number of columns in A must match the number of rows in B + if(count($aArray[0]) != count($bArray)) { + $mA = $this->toString(); + $mB = $bMatrix->toString(); + throw new \Exception("Columns in '{$mA}' don't match Rows of '{$mB}'", Matrix::E_NOT_EQUAL); + } + + $rArray = array(); + + //Loop through rows of Matrix A + for($i=0;$itoString($rArray)); + return $rMatrix; + } +} +?> diff --git a/Laravel/vendor/jlawrence/eos/src/Parser.php b/Laravel/vendor/jlawrence/eos/src/Parser.php new file mode 100644 index 0000000..3b6f279 --- /dev/null +++ b/Laravel/vendor/jlawrence/eos/src/Parser.php @@ -0,0 +1,593 @@ + + * @copyright Copyright ©2005-2015, Jon Lawrence + * @license http://opensource.org/licenses/LGPL-2.1 LGPL 2.1 License + * @version 3.0.0 + */ + +namespace jlawrence\eos; + + +/** + * Equation Operating System (EOS) Parser + * + * A class that can safely parse mathematical equations. Re-written portions + * from version 2.x to be extend-able with custom functions. + * + * @author Jon Lawrence + * @copyright Copyright ©2005-2015, Jon Lawrence + * @license http://opensource.org/licenses/LGPL-2.1 LGPL 2.1 License + * @version 3.0.0 + */ +class Parser { + + /** + * @var string Infix equation + * Public so advanced/user-defined/etc can access it when throwing exceptions. + */ + public static $inFix; + + /** + * @var array Opening and closing selectors + */ + protected static $SEP = array( + 'open' => array('(', '['), + 'close' => array(')', ']') + ); + + // Top precedence following operator - not in use + protected static $SGL = array('!'); + + // Order of operations arrays follow + protected static $ST = array('^', '!'); + protected static $ST1 = array('/', '*', '%'); + protected static $ST2 = array('+', '-'); + + /** + * @var array Allowed functions + */ + protected static $FNC = array( + 'sin', 'cos', 'tan', + 'csc', 'sec', 'cot', + 'abs', 'ln', 'sqrt' + ); + + /** + * @var array Advanced functions container + */ + protected static $AFNC = array(); + + /** + * Initialize + */ + public static function init() { + if (empty(self::$AFNC)) { + //No advanced functions yet, so this function has not run, do so now. + self::$AFNC = AdvancedFunctions::map(); + } + } + + /** + * Add Advanced Function Class + * + * Adds a function class to the parser for user/programmer defined + * functions that can be parsed with the parser. For example + * class structure see jlawrence\eos\AdvancedFunctions. + * Class must be static, and must have a function named 'map' + * + * @param string $class Fully Qualified String to class (must include namespace) + * @return bool True on success + * @throws \Exception When the added class doesn't have the 'map' function or doesn't exist. + * + * @codeCoverageIgnore + */ + public static function addFunctionClass($class) + { + self::init(); + if(is_callable("{$class}::map")) { + $a = call_user_func($class.'::map'); + self::$AFNC = array_merge($a, self::$AFNC); + } else { + throw new \Exception("{$class}::map() is not callable"); + } + return true; + } + + /** + * Check Infix for opening closing pair matches. + * + * This function is meant to solely check to make sure every opening + * statement has a matching closing one, and throws an exception if + * it doesn't. + * + * @param string $infix Equation to check + * @throws \Exception if malformed. + * @return Bool true if passes - throws an exception if not. + */ + private static function checkInfix($infix) { + self::init(); + if(trim($infix) == "") { + throw new \Exception("No Equation given", Math::E_NO_EQ); + } + //Make sure we have the same number of '(' as we do ')' + // and the same # of '[' as we do ']' + if(substr_count($infix, '(') != substr_count($infix, ')')) { + throw new \Exception("Mismatched parenthesis in ". self::$inFix, Math::E_NO_SET); + } elseif(substr_count($infix, '[') != substr_count($infix, ']')) { + throw new \Exception("Mismatched brackets in '". self::$inFix, Math::E_NO_SET); + } + return true; + } + + /** + * Infix to Postfix + * + * Converts an infix (standard) equation to postfix (RPN) notation. + * Sets the internal variable $this->postFix for the Parser::solvePF() + * function to use. + * + * @link http://en.wikipedia.org/wiki/Infix_notation Infix Notation + * @link http://en.wikipedia.org/wiki/Reverse_Polish_notation Reverse Polish Notation + * @param string $infix A standard notation equation + * @throws \Exception When parenthesis are mismatched + * @return array Fully formed RPN Stack + */ + public static function in2post($infix) { + // if an equation was not passed, use the one that was passed in the constructor + //$infix = (isset($infix)) ? $infix : $this->inFix; + + //check to make sure 'valid' equation + self::checkInfix($infix); + $pf = array(); + $ops = new Stack(); + //$vars = new Stack(); + + // remove all white-space + $infix = preg_replace("/\s/", "", $infix); + + // Create postfix array index + $pfIndex = 0; + + //what was the last character? (useful for discerning between a sign for negation and subtraction) + $lChar = ''; + + //loop through all the characters and start doing stuff ^^ + for($i=0;$ipush('*'); + + $ops->push($chr); + } + // if the character closes a set e.g. ')' or ']' + elseif(in_array($chr, self::$SEP['close'])) { + // find what set it was i.e. matches ')' with '(' or ']' with '[' + $key = array_search($chr, self::$SEP['close']); + // while the operator on the stack isn't the matching pair...pop it off + while($ops->peek() != self::$SEP['open'][$key]) { + $nchr = $ops->pop(); + if($nchr) + $pf[++$pfIndex] = $nchr; + else { + //Should NEVER get here... + // @codeCoverageIgnoreStart + throw new \Exception("Error while searching for '". self::$SEP['open'][$key] ."' in ". self::$inFix, Math::E_NO_SET); + // @codeCoverageIgnoreEnd + } + } + $ops->pop(); + } + // If a special operator that has precedence over everything else + elseif(in_array($chr, self::$ST)) { + while(in_array($ops->peek(), self::$ST)) + $pf[++$pfIndex] = $ops->pop(); + $ops->push($chr); + $pfIndex++; + } + // Any other operator other than '+' and '-' + elseif(in_array($chr, self::$ST1)) { + while(in_array($ops->peek(), self::$ST1) || in_array($ops->peek(), self::$ST)) + $pf[++$pfIndex] = $ops->pop(); + + $ops->push($chr); + $pfIndex++; + } + // if a '+' or '-' + elseif(in_array($chr, self::$ST2)) { + // if it is a '-' and the character before it was an operator or nothingness (e.g. it negates a number) + if((in_array($lChar, array_merge(self::$ST1, self::$ST2, self::$ST, self::$SEP['open'])) || $lChar=="") && $chr=="-") { + // increase the index because there is no reason that it shouldn't.. + $pfIndex++; + $pf[$pfIndex] = $chr; + } + // Otherwise it will function like a normal operator + else { + while(in_array($ops->peek(), array_merge(self::$ST1, self::$ST2, self::$ST))) + $pf[++$pfIndex] = $ops->pop(); + $ops->push($chr); + $pfIndex++; + } + } + // make sure we record this character to be referred to by the next one + $lChar = $chr; + } + // if there is anything on the stack after we are done...add it to the back of the RPN array + while(($tmp = $ops->pop()) !== false) + $pf[++$pfIndex] = $tmp; + + // re-index the array at 0 + $pf = array_values($pf); + + // set the private variable for later use if needed + //self::$postFix = $pf; + + // return the RPN array in case developer wants to use it for some insane reason (bug testing ;] ) + // Also... because we pass it right in to the RPN solver. So I guess there's that too. + return $pf; + } + + /** + * Solve Postfix (RPN) + * + * This function will solve a RPN array. Default action is to solve + * the RPN array stored in the class from Parser::in2post(), can take + * an array input to solve as well, though default action is preferred. + * + * @link http://en.wikipedia.org/wiki/Reverse_Polish_notation Postix Notation + * @param array $pfArray RPN formatted array. Optional. + * @throws \Exception on division by 0 + * @return float Result of the operation. + */ + public static function solvePF($pfArray) { + $pf = $pfArray; + + // create our temporary function variables + $temp = array(); + //$tot = 0; + $hold = 0; + + // Loop through each number/operator + for($i=0;$i value. If variable array is scalar (ie 5), all + * variables will be replaced with it. + * + * @param string $equation Equation to Solve + * @param array|double $values variable values + * @return float Answer to the equation + */ + public static function solve($equation, $values = null) { + if(is_array($equation)) { + return self::solvePF($equation); + } else { + self::$inFix = $equation; + return self::solveIF($equation, $values); + } + } + + /** + * Solve Infix (Standard) Notation Equation + * + * Will take a standard equation with optional variables and solve it. + * This function is the one for programmers making modules for this + * package should call as it does not set the internal variable for + * the equation. This should not be used by the programmer/user that + * is using this package to solve equations. + * + * @param string $infix Standard Equation to solve + * @param string|array $vArray Variable replacement + * @throws \Exception On division by zero or NaN + * @return float Solved equation + */ + public static function solveIF($infix, $vArray = null) { + //Check to make sure a 'valid' expression + self::checkInfix($infix); + + //$ops = new Stack(); + //$vars = new Stack(); + $hand = null; + + //remove all white-space + $infix = preg_replace("/\s/", "", $infix); + + $infix = self::checkAdvancedInput($infix,$vArray); + + // Finds all the 'functions' within the equation and calculates them + //Nested parenthesis are now a go! + while((preg_match("/(". implode("|", self::$FNC) . ")\(((?:[^()]|\((?2)\))*+)\)/", $infix, $match)) != 0) { + $func = self::solveIF($match[2], $vArray); + switch($match[1]) { + case "cos": + $ans = Trig::cos($func); + break; + case "sin": + $ans = Trig::sin($func); + break; + case "tan": + $ans = Trig::tan($func); + break; + case "sec": + $ans = Trig::sec($func); + break; + case "csc": + $ans = Trig::csc($func); + break; + case "cot": + $ans = Trig::cot($func); + break; + case "abs": + $ans = abs($func); + break; + case "ln": + $ans = log($func); + if(is_nan($ans) || is_infinite($ans)) { + throw new \Exception("Result of 'ln({$func}) = {$ans}' is either infinite or a non-number in ". self::$inFix, Math::E_NAN); + } + break; + case "sqrt": + if($func < 0) { + throw new \Exception("Result of 'sqrt({$func}) = i' in ". self::$inFix .". We can't handle imaginary numbers", Math::E_NAN); + } + $ans = sqrt($func); + break; + // @codeCoverageIgnoreStart + default: + $ans = 0; + break; + // @codeCoverageIgnoreEnd + } + $infix = str_replace($match[0], "({$ans})", $infix); + } + + //replace scientific notation with normal notation (2e-9 to 2*10^-9) + $infix = preg_replace('/([\d])([eE])(-?\d)/', '$1*10^$3', $infix); + + $infix = self::replaceVars($infix, $vArray); + + return self::solvePF(self::in2post($infix)); + } + + /** + * checkAdvancedInput + * + * Will take the input from `Parser::solveIF()` and solve all the advanced functions + * that exist within it, returning it to the function when done for further + * processing. + * + * @param string $input Check for advanced functions, recursively go through them. + * @param array|int|null $vArray Variables from user-input + * @return string The input with all advanced functions solved for. + */ + protected static function checkAdvancedInput($input, $vArray) + { + $infix = $input; + //Advanced/User-defined functions + while((preg_match("/(". implode("|", array_keys(self::$AFNC)) . ")\(((?:[^()]|\((?2)\))*+)\)/", $infix, $match)) != 0) { + $method = self::$AFNC[$match[1]]; + if(stripos($match[2], '(') !== false) { + $match[2] = self::checkAdvancedInput($match[2], $vArray); + } + $ans = call_user_func($method, $match[2], $vArray); + $infix = str_replace($match[0], "({$ans})", $infix); + } + return $infix; + } + + /** + * @param string $infix + * @param array $vArray + * @return string + * @throws \Exception + */ + protected static function replaceVars($infix, $vArray) + { + //Remove old '$' and '&' signis so the regex works properly. + $infix = preg_replace('/[$&]/', "", $infix); + //Find all the variables that were passed and replaces them + while((preg_match('/([^a-zA-Z]){0,1}([a-zA-Z]+)([^a-zA-Z]){0,1}/', $infix, $match)) != 0) { + + //remove notices by defining if undefined. + if(!isset($match[3])) { + $match[3] = ""; + } + + // Ensure that the variable has an operator or something of that sort in front and back - if it doesn't, add an implied '*' + if((!in_array($match[1], array_merge(self::$ST, self::$ST1, self::$ST2, self::$SEP['open'])) && $match[1] != "") || is_numeric($match[1])) //$this->SEP['close'] removed + $front = "*"; + else + $front = ""; + + if((!in_array($match[3], array_merge(self::$ST, self::$ST1, self::$ST2, self::$SEP['close'])) && $match[3] != "") || is_numeric($match[3])) //$this->SEP['open'] removed + $back = "*"; + else + $back = ""; + + //Make sure that the variable does have a replacement + //First check for pi and e variables that wll automatically be replaced + if(in_array(strtolower($match[2]), array('pi', 'e'))) { + $t = (strtolower($match[2])=='pi') ? pi() : exp(1); + $infix = str_replace($match[0], $match[1] . $front. $t. $back . $match[3], $infix); + } elseif(!isset($vArray[$match[2]]) && (!is_array($vArray != "") && !is_numeric($vArray) && 0 !== $vArray)) { + throw new \Exception("Variable replacement does not exist for '". $match[2] ."' in ". self::$inFix .".", Math::E_NO_VAR); + } elseif(!isset($vArray[$match[2]]) && (!is_array($vArray != "") && is_numeric($vArray))) { + $infix = str_replace($match[0], $match[1] . $front. $vArray. $back . $match[3], $infix); + } elseif(isset($vArray[$match[2]])) { + $infix = str_replace($match[0], $match[1] . $front. $vArray[$match[2]]. $back . $match[3], $infix); + } + } + + return $infix; + } + + /** + * Solve factorial (!) + * + * Will take an integer and solve for it's factorial. Eg. + * `5!` will become `1*2*3*4*5` = `120` + * DONE: + * Solve for non-integer factorials 2015/07/02 + * + * @param float $num Non-negative real number to get factorial of + * @throws \Exception if number is at or less than 0 + * @return float Solved factorial + */ + protected static function factorial($num) { + if($num < 0) { + throw new \Exception("Factorial Error: Factorials don't exist for numbers < 0 in ". self::$inFix, Math::E_NAN); + } + //A non-integer! Gamma that sucker up! + if(intval($num) != $num) { + return self::gamma($num + 1); + } + + $tot = 1; + for($i=1;$i<=$num;$i++) { + $tot *= $i; + } + + return $tot; + } + + /** + * Gamma Function + * + * Because we can. This function exists as a catch-all for different + * numerical approx. of gamma if I decide to add any past Lanczos'. + * + * @param $z Number to compute gamma from + * @return float The gamma (hopefully, I'll test it after writing the code) + */ + public static function gamma($z) + { + return self::laGamma($z); + } + + /** + * Lanczos Approximation + * + * The Lanczos Approximation method of finding gamma values + * + * @link http://www.rskey.org/CMS/index.php/the-library/11 + * @link http://algolist.manual.ru/maths/count_fast/gamma_function.php + * @link https://en.wikipedia.org/wiki/Lanczos_approximation + * @param $z Number to obtain the gamma of + * @return float Answer + */ + protected static function laGamma($z) + { + // Set up coefficients + $p = array( + 0 => 1.000000000190015, + 1 => 76.18009172947146, + 2 => -86.50532032941677, + 3 => 24.01409824083091, + 4 => -1.231739572450155, + 5 => 1.208650973866179E-3, + 6 => -5.395239384953E-6 + ); + + // Formula: + // ((sqrt(2pi)/z)(p[0]+sum(p[n]/(z+n), 1, 6)))(z+5.5)^(z+0.5)*e^(-(z+5.5)) + + // Break it down now... + $g1 = sqrt(2*pi())/$z; + + // Next comes our summation + $g2 =0; + for($n=1;$n<=6;$n++) { + $g2 += $p[$n]/($z+$n); + } + + // Don't forget to add p[0] to it... + $g2 += $p[0]; + $g3 = pow($z+5.5, $z + .5); + $g4 = exp(-($z+5.5)); + + //now just multiply them all together + $gamma = $g1 * $g2 * $g3 * $g4; + + return $gamma; + } +} diff --git a/Laravel/vendor/jlawrence/eos/src/Stack.php b/Laravel/vendor/jlawrence/eos/src/Stack.php new file mode 100644 index 0000000..eb6259e --- /dev/null +++ b/Laravel/vendor/jlawrence/eos/src/Stack.php @@ -0,0 +1,115 @@ + + * @copyright Copyright ©2005-2015 Jon Lawrence + * @license http://opensource.org/licenses/LGPL-2.1 LGPL 2.1 License + * @package Math + * @version 0.1 + */ +class Stack { + private $index; + private $locArray; + + /** + * Constructor + * + * Initializes the stack + */ + public function __construct() { + //define the private vars + $this->locArray = array(); + $this->index = -1; + } + + /** + * Peek + * + * Will view the last element of the stack without removing it + * + * @return mixed An element of the array or false if none exist + */ + public function peek() { + if($this->index > -1) + return $this->locArray[$this->index]; + else + return false; + } + + /** + * Poke + * + * Will add an element to the end of the stack + * + * @param mixed $data Element to add + */ + public function poke($data) { + $this->locArray[++$this->index] = $data; + } + + /** + * Push + * + * Alias of {@see Stack::poke()} + * Adds element to the stack + * + * @param mixed $data Element to add + */ + public function push($data) { + //alias for 'poke' + $this->poke($data); + } + + /** + * Pop + * + * Retrieves an element from the end of the stack, and removes it from + * the stack at the same time. If no elements, returns boolean false + * + * @return mixed Element at end of stack or false if none exist + */ + public function pop() { + if($this->index > -1) + { + $this->index--; + return $this->locArray[$this->index+1]; + } + else + return false; + } + + /** + * Clear + * + * Clears the stack to be reused. + */ + public function clear() { + $this->index = -1; + $this->locArray = array(); + } + + /** + * Get Stack + * + * Returns the array of stack elements, keeping all, indexed at 0 + * + * @return mixed Array of stack elements or false if none exist. + */ + public function getStack() { + if($this->index > -1) + { + return array_values($this->locArray); + } + else + return false; + } +} + +?> \ No newline at end of file diff --git a/Laravel/vendor/jlawrence/eos/src/Trig.php b/Laravel/vendor/jlawrence/eos/src/Trig.php new file mode 100644 index 0000000..c618a7d --- /dev/null +++ b/Laravel/vendor/jlawrence/eos/src/Trig.php @@ -0,0 +1,75 @@ +