PluginProbe
Visualizer – Tables & Charts Manager with Built-in AI Generator / 3.10.8
Visualizer – Tables & Charts Manager with Built-in AI Generator v3.10.8
4.0.7 4.0.6 4.0.5 4.0.4 4.0.3 3.0.5 3.0.6 3.0.7 3.0.8 3.0.9 3.1.0 3.1.1 3.1.2 3.1.3 3.10.0 3.10.1 3.10.10 3.10.11 3.10.12 3.10.13 3.10.14 3.10.15 3.10.2 3.10.3 3.10.4 All 148 releases
visualizer / vendor / phpoffice / phpspreadsheet / src / Bootstrap.php

Bootstrap.php in Visualizer – Tables & Charts Manager with Built-in AI Generator 3.10.8, at vendor/phpoffice/phpspreadsheet/src/Bootstrap.php

23 lines 554 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 /**
4 * Bootstrap for PhpSpreadsheet classes.
5 */
6
7 // This sucks, but we have to try to find the composer autoloader
8
9 $paths = [
10 __DIR__ . '/../vendor/autoload.php', // In case PhpSpreadsheet is cloned directly
11 __DIR__ . '/../../../autoload.php', // In case PhpSpreadsheet is a composer dependency.
12 ];
13
14 foreach ($paths as $path) {
15 if (file_exists($path)) {
16 require_once $path;
17
18 return;
19 }
20 }
21
22 throw new \Exception('Composer autoloader could not be found. Install dependencies with `composer install` and try again.');
23