2017 © Pedro Peláez
 

library kimple

Allows you to implement Kimple apps very quickly.

image

vanksen/kimple

Allows you to implement Kimple apps very quickly.

  • Wednesday, December 13, 2017
  • by jgrossio
  • Repository
  • 2 Watchers
  • 0 Stars
  • 26 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 2 Versions
  • 0 % Grown

The README.md

Vanksen Kimple component

Allows you to implement Kimple apps very quickly., (*1)

Installation:

composer require vanksen/kimple:dev-master

Usage:

The easiest way to work with the component is to create a file "kimple" at the document root of your project and to insert these lines, (*2)

#!/usr/bin/env php
<?php
require __DIR__. '/vendor/autoload.php';

use Vanksen\Kimple;
use Symfony\Component\Console\Application;

$application = new Application();
$application->add(new Kimple\KimpleCommand());
$application->run();

Then, just execute the command like this (where "domain.com" is the final url for your app -without www-), (*3)

php kimple create:app domain.com

With this example, your final app will be located in the folder "apps/domain.com". To configure the application, just follow the instructions given by the console., (*4)

The Versions

13/12 2017

dev-master

9999999-dev https://github.com/Vanksen/kimple

Allows you to implement Kimple apps very quickly.

  Sources   Download

GNU GPL V3

The Requires

 

facebook vanksen kimple

30/11 2017