mirror of
https://github.com/Dolibarr/dolibarr.git
synced 2025-12-07 10:08:27 +01:00
17 lines
481 B
PHP
17 lines
481 B
PHP
<?php namespace Luracast\Restler;
|
|
|
|
/**
|
|
* Class ExplorerInfo
|
|
* @package Luracast\Restler
|
|
*
|
|
* @version 3.0.0rc6
|
|
*/
|
|
class ExplorerInfo
|
|
{
|
|
public static $title = 'Restler API Explorer';
|
|
public static $description = 'Live API Documentation';
|
|
public static $termsOfServiceUrl = null;
|
|
public static $contact = 'arul@luracast.com';
|
|
public static $license = 'LGPL-2.1';
|
|
public static $licenseUrl = 'https://www.gnu.org/licenses/old-licenses/lgpl-2.1.html';
|
|
} |