blob: 5bc554856cc4dc3fb0280e8e20b1a1300681474b (
plain)
1
2
3
4
5
6
7
8
9
10
|
<?php
$rootDir = dirname(dirname(__DIR__));
require_once $rootDir . '/vendor/autoload.php';
$basePath = $rootDir . '/samples';
$runner = new \OpenCloud\Integration\Runner($basePath);
$runner->runServices();
|