2017 © Pedro Peláez
 

microframework veloce

slim framework backed by rocket booster

image

jowy/veloce

slim framework backed by rocket booster

  • Friday, October 30, 2015
  • by Atriedes
  • Repository
  • 4 Watchers
  • 3 Stars
  • 30 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 2 Versions
  • 0 % Grown

The README.md

Veloce

Build Status, (*1)

Veloce is combination between slim microframework and swoole http server. Inspired by espresso, (*2)

Install

composer require jowy/veloce

Example

<?php
require 'vendor/autoload.php';

$app = new Slim\App();

$app->get('/hello/{name}', function ($request, $response, $args) {
    $response->write("Hello, " . $args['name']);
    return $response;
});

$stack = new \Veloce\Stack($app);

$stack->listen(8000);

Test

You have to install development dependencies in order to run test., (*3)

php vendor/bin/codecept run, (*4)

License

MIT, see LICENSE, (*5)

The Versions

30/10 2015

dev-master

9999999-dev

slim framework backed by rocket booster

  Sources   Download

MIT

The Requires

 

The Development Requires

by Prasetyo Wicaksono

30/10 2015

v0.1

0.1.0.0

slim framework backed by rocket booster

  Sources   Download

MIT

The Requires

 

The Development Requires

by Prasetyo Wicaksono