PHP Classes

File: Mezon/Cli/mezon

Recommend this page to a friend!
  Classes of Alexey Dodonov   Mezon CLI   Mezon/Cli/mezon   Download  
File: Mezon/Cli/mezon
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Mezon CLI
Create files for Mezon framework applications
Author: By
Last change:
Date: 2 years ago
Size: 517 bytes
 

Contents

Class file image Download
#!/usr/bin/env php <?php /* * This file is part of Mezon PHP Framework. * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ foreach ([ __DIR__ . '/vendor/autoload.php', __DIR__ . '/../vendor/autoload.php', __DIR__ . '/../../autoload.php', __DIR__ . '/../../vendor/autoload.php', ] as $file) { if (file_exists($file)) { require($file); break; } } \Mezon\Cli\Tool::run();