D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
usr
/
local
/
psa
/
admin
/
plib
/
vendor
/
ratchet
/
rfc6455
/
tests
/
Filename :
bootstrap.php
back
Copy
<?php /** * Find the auto loader file */ $files = [ __DIR__ . '/../vendor/autoload.php', __DIR__ . '/../../vendor/autoload.php', __DIR__ . '/../../../vendor/autoload.php', __DIR__ . '/../../../../vendor/autoload.php', ]; foreach ($files as $file) { if (file_exists($file)) { $loader = require $file; $loader->addPsr4('Ratchet\\RFC6455\\Test\\', __DIR__); break; } }