nochso/sami-theme

A Sami theme with inline source code

0.2.0 2016-04-17 18:32 UTC

This package is not auto-updated.

Last update: 2024-07-16 03:04:22 UTC


README

Latest Stable Version License

This is a theme for the Sami API documentation generator with some added features:

  • The complete file source is included at the end.
  • Source code highlighting with prismjs.
  • Show the value / assignment of class constants.
  • HTML is minified using wyrihaximus/html-compress.

An an example take a look at the API docs for the nochso/Benchmark library.

Installation

If you haven't used Sami before, please read up on its installation and basic usage first.

When you're ready, require the theme in your project:

$ composer require nochso/sami-theme

Usage

In your Sami configuration file simply call Theme::prepare to inject the theme into your Sami instance right before returning it:

return \nochso\SamiTheme\Theme::prepare($sami);

e.g.

<?php

use Sami\Sami;
use Symfony\Component\Finder\Finder;

$finder = Finder::create()
    ->files()
    ->name('*.php')
    ->in(__DIR__.'/src');

$config = array(
    'title' => 'Project documentation title',
    'build_dir' => __DIR__.'/build',
    'cache_dir' => __DIR__.'/cache',
);

$sami = new Sami($finder, $config);
$sami = \nochso\SamiTheme\Theme::prepare($sami);
return $sami;

This looks for PHP files in src/ and saves the resulting documentation in build/.

These results are now ready for you to upload and share!

History

0.2.0 - 2016-04-17

Changed

  • Bump nochso/html-compress-twig to 1.0.0

0.1.1 - 2015-10-05

Changed

0.1.0 - 2015-09-26

First public release.

Contributing

  1. Open an issue if it's worth discussing.
  2. Fork this project on Github.
  3. Clone your fork: git clone git@github.com:yourname/sami-theme.git
  4. Don't forget to composer update
  5. Create your feature branch: git checkout -b my-new-feature
  6. Commit your changes: git commit -am 'Add some feature'
  7. Push to the branch: git push origin my-new-feature
  8. Submit a pull request on Github :)

Credits

License

This project is licensed under the ISC license which is MIT/GPL compatible and FSF/OSI approved:

Copyright (c) 2015, Marcel Voigt <mv@noch.so>

Permission to use, copy, modify, and/or distribute this software for any
purpose with or without fee is hereby granted, provided that the above
copyright notice and this permission notice appear in all copies.

THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.