PHP Classes

File: config.php

Recommend this page to a friend!
  Classes of Mike Stowe   PHP RAML to HTML   config.php   Download  
File: config.php
Role: Configuration script
Content type: text/plain
Description: Configuration script
Class: PHP RAML to HTML
Parse RAML of an API to generate documentation
Author: By
Last change:
Date: 9 years ago
Size: 369 bytes
 

Contents

Class file image Download
<?php

// Source of Your RAML file (local or http)
$RAMLsource = 'raml/twitter.raml';

// Types of Action Verbs Allowed
$RAMLactionVerbs = array('get', 'post', 'put', 'patch', 'delete', 'connect', 'trace');

// APC Cache Time Limit - set to "0" to disable
$cacheTimeLimit = '36000';

// Path to the theme file for the docs
$docsTheme = 'templates/grey/index.phtml';

?>