ExplorerInfo.php 621 B

1234567891011121314151617181920212223
  1. <?php namespace Luracast\Restler;
  2. /**
  3. * Class ExplorerInfo
  4. * @package Luracast\Restler
  5. *
  6. * @version 3.0.0rc6
  7. */
  8. class ExplorerInfo
  9. {
  10. public static $title = 'Restler API Explorer';
  11. public static $description = 'Live API Documentation';
  12. public static $termsOfService = null;
  13. public static $contact = array(
  14. 'name' => 'Restler Support',
  15. 'url' => 'luracast.com/products/restler',
  16. 'email' => 'arul@luracast.com',
  17. );
  18. public static $license = array(
  19. 'name' => 'LGPL-2.1',
  20. 'url' => 'https://www.gnu.org/licenses/old-licenses/lgpl-2.1.html',
  21. );
  22. }