ner0tic/landmarx

An object oriented landmark mapping library

dev-master 2012-12-09 02:28 UTC

This package is not auto-updated.

Last update: 2024-04-13 10:44:24 UTC


README

The Landmarx Landmark library provides object oriented nodes that connect to map given data.
It is used by the LandmarxBundle for Symfony2 but can now be used stand-alone.

Docs

  1. Installation
  2. Usage
  3. Renderers
  4. Twig Integration
  5. TODO

Installation

Landmarx does not provide an autoloader but does follow the PSR-0 convention.
You can use any compliant autoloader for the library.

Add to your autoloader, example below assumes library is in vendor/Landmarx

<?php
  $loader->registerNamespaces(array(
      'Landmarx\Landmark' => __DIR__.'/vendor/Landmarx/src'
      // ...
  ));

Related

Credits

Based on KnpMenu