Chamilo is a learning management system focused on ease of use and accessibility
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
chamilo-lms/vendor/cocur/slugify/sami.php

20 lines
517 B

<?php
use Sami\Sami;
use Sami\Version\GitVersionCollection;
$dir = __DIR__.'/src';
$versions = GitVersionCollection::create($dir)
->addFromTags('v0.*')
->add('master', 'master branch')
;
return new Sami($dir, array(
'title' => 'Slugify API',
'theme' => 'enhanced',
'versions' => $versions,
'build_dir' => __DIR__.'/build/api/%version%',
'cache_dir' => __DIR__.'/cache/api/%version%',
'default_opened_level' => 2,
));