2017 © Pedro Peláez
 

library glue

Glue - lightweight PHP framework based on Symfony components

image

ubick/glue

Glue - lightweight PHP framework based on Symfony components

  • Thursday, December 19, 2013
  • by ubick
  • Repository
  • 3 Watchers
  • 1 Stars
  • 61 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 2 Open issues
  • 1 Versions
  • 0 % Grown

The README.md

Glue - RAD web development with Symfony2 components

Glue is an easy to use PHP 5.3 framework heavily inspired from Silex and [Symfony2][2]., (*1)

Its extremly lightweight nature allows for Rapid Application Development using industry standard components and best practices., (*2)

<?php
require_once __DIR__.'/../vendor/autoload.php';

$app = new Glue\Application();

// specify a config directory
$app->loadConfig(__DIR__ . '/app/config');

// specify a routing Yaml file
$app->loadRoutes(__DIR__ . '/app/config/routing.yml');

// load the twig templating engine
$app->register(new Glue\Provider\TwigProvider());

$app->run();

Installation

The recommended way to install Glue is through composer. Just create a composer.json file and run the php composer.phar install command to install it:, (*3)

{
    "require": {
        "ubick/glue": "dev-master"
    }
}

License

Glue is licensed under the MIT license., (*4)

The Versions