kitpages/mobile-app-builder-bundle

This is a Symfony2 bundle that generates packages specific for terminals from a given html/js code base.

dev-master 2013-02-15 20:54 UTC

This package is auto-updated.

Last update: 2024-04-04 18:29:07 UTC


README

This bundle is used to generate specific plateform packages (android, iOS, phonegap, firefoxOS,...) from a given common Html/JS code base

Versions

Actual state

This bundle is early alpha state.

Installation

Add KitpagesMobileAppBuilderBundle in your composer.json

{
    "require": {
        "kitpages/mobile-app-builder-bundle": "*"
    }
}

Now tell composer to download the bundle by running the command:

$ php composer.phar update kitpages/mobile-app-builder-bundle

AppKernel.php

$bundles = array(
    ...
    new Kitpages\MobileAppBuilderBundle\KitpagesMobileAppBuilderBundle(),
);