clemens-tolboom / uml-generator-php

http://clemens-tolboom.github.io/uml-generator-php/
MIT License
44 stars 5 forks source link

Resolve extends and implements to json file location and add content #25

Closed clemens-tolboom closed 10 years ago

clemens-tolboom commented 10 years ago

To make full diagrams it would be great to aggregate the dependencies into one dot file

This would result into ie diagram from https://drupal.org/comment/8583605#comment-8583605

clemens-tolboom commented 10 years ago

Note ie graphapi.module (drupal) does

function graphapi_loader() {
  $loader = drupal_classloader();
  $loader->add('Fhaculty', __DIR__ . '/vendor/clue/graph/lib');
  $loader->add('Fhaculty', __DIR__ . '/vendor/clue/graph-uml/src', TRUE);

  $loader->add('Symfony', __DIR__ . '/vendor/symfony/finder', TRUE);
}