digitalkaoz / yuml-php
a PHP Adapter for http://yuml.me
Installs: 1 008
Dependents: 0
Suggesters: 0
Security: 0
Stars: 32
Watchers: 5
Forks: 4
Open Issues: 4
Requires
- ext-tokenizer: *
- andrewsville/php-token-reflection: dev-develop@dev
- kriswallsmith/buzz: @stable
- pimple/pimple: @stable
- symfony/console: @stable
Requires (Dev)
- kherge/box: @stable
README
a php adapater
for http://yuml.me
Installation
Installation with composer
"require" : { "digitalkaoz/yuml-php": "@stable", "andrewsville/php-token-reflection": "dev-develop@dev" }, "repositories" : [ { "type" : "vcs", "url" : "https://github.com/digitalkaoz/PHP-Token-Reflection" } ],
You need to add my custom PHP-Token-Reflection Fork, since it has some unmerged but needed improvements!
Installation with PHAR
wget http://digitalkaoz.github.io/yuml-php/yuml-php.phar
Usage
the classes
command generates a class diagram from all classes in the given folder
Usage:
classes [--console] [--debug] [--properties] [--methods] [--filter] folder
Arguments:
folder the folder to scan for classes
Options:
--console log to console
--debug debug
--properties build with properties
--methods build with methods
--filter to include/exclude files/folder
yuml-php classes src/
the activity
command generates an activity diagram from a given file
Usage:
activity [--console] [--debug] file
Arguments:
file the file to read
Options:
--console log to console
--debug debug
yuml-php activity activities.txt
the use-case
command generates a use-case diagram from a given file
Usage:
use-case [--console] [--debug] file
Arguments:
file the file to read
Options:
--console log to console
--debug debug
yuml-php use-case use-cases.txt
Building the PHAR
php vendor/bin/box build
Tests
php bin/vendors.php
phpunit
TODO
- more Features from http://yuml.me API