jowy/veloce
最新稳定版本:v0.1
Composer 安装命令:
composer require jowy/veloce
包简介
slim framework backed by rocket booster
README 文档
README
Veloce is combination between slim microframework and swoole http server. Inspired by espresso
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.
php vendor/bin/codecept run
License
MIT, see LICENSE
统计信息
- 总下载量: 34
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 3
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2015-10-30