mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-15 03:12:41 +01:00
15 lines
410 B
PHP
15 lines
410 B
PHP
|
<?php
|
||
|
|
||
|
// run this file to test your composer install of Balanced
|
||
|
|
||
|
require(__DIR__ . '/vendor/autoload.php');
|
||
|
|
||
|
\Httpful\Bootstrap::init();
|
||
|
\RESTful\Bootstrap::init();
|
||
|
\Balanced\Bootstrap::init();
|
||
|
|
||
|
echo "[ OK ]\n";
|
||
|
echo "balanced version -- " . \Balanced\Settings::VERSION . " \n";
|
||
|
echo "restful version -- " . \RESTful\Settings::VERSION . " \n";
|
||
|
echo "httpful version -- " . \Httpful\Httpful::VERSION . " \n";
|