arrowphp/arrow
Composer 安装命令:
composer require arrowphp/arrow
包简介
A simple convention based framework built on league packages, encouraging a modular development structure.
README 文档
README
Introducing Arrow! The no fuss framework built on the components of a highly respected collection of moderated components held to a high standard.
The name and it’s purpose comes from the php arrow "->".
Pre-Release - NOTES / TODO
- Review all code to ensure return type consistency
- Updates tests
- Add hints to indicate files to skip in code coverage
- Investigate/Implement PHAN!
- Split out build
- Init setup skeleton project
Install
Via Composer
Via project composer.json
"require": {
"arrowphp/core": "@dev"
}
Usage
Example index.php file (using Guzzle for Psr7)
require_once __DIR__.'/../vendor/autoload.php';
$app = new \Arrow\Application();
$request = \GuzzleHttp\Psr7\ServerRequest::fromGlobals();
$response = new \GuzzleHttp\Psr7\Response();
$response = $app->run($request, $response);
$app->flush($response);
$app->terminate();
Change log
Please see CHANGELOG for more information on what has changed recently.
Testing
$ composer run-ci
Contributing
Please see CONTRIBUTING and CODE_OF_CONDUCT for details.
Security
If you discover any security related issues, please contact Chris Pennycuick directly instead of using the issue tracker.
Credits
License
The MIT License (MIT). Please see License File for more information.
统计信息
- 总下载量: 43
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 1
- 点击次数: 0
- 依赖项目数: 3
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2018-06-10