We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6e31e6e commit 1180d69Copy full SHA for 1180d69
.sami.php
@@ -13,14 +13,14 @@
13
$versions = GitVersionCollection::create($dir)
14
->add('develop', 'develop branch')
15
->add('master', 'master branch')
16
- ->addFromTags('*');
+ ->addFromTags('1.*');
17
18
-return new Sami($iterator, array(
+return new Sami($iterator, [
19
'theme' => 'default',
20
'versions' => $versions,
21
'title' => 'AuthBucket\Push API',
22
- 'build_dir' => __DIR__ . '/build/sami/%version%',
23
- 'cache_dir' => __DIR__ . '/build/cache/sami/%version%',
+ 'build_dir' => __DIR__.'/build/sami/%version%',
+ 'cache_dir' => __DIR__.'/build/cache/sami/%version%',
24
'include_parent_data' => false,
25
'default_opened_level' => 2,
26
-));
+]);
0 commit comments