arrowphp / arrow
A simple convention based framework built on league packages, encouraging a modular development structure.
Requires
- php: ^7.2
- league/container: ^2.4
- league/event: 2.1.2
- league/route: 3.0.4
- monolog/monolog: 1.23.0
Requires (Dev)
- guzzlehttp/guzzle: 6.3.2
- phpunit/php-code-coverage: 6.0.1
- phpunit/phpunit: 7.0.3
- squizlabs/php_codesniffer: 3.*
Suggests
- guzzlehttp/guzzle: Guzzle is recommended as the required PSR-7 Request/Response package.
This package is not auto-updated.
Last update: 2025-04-04 03:10:45 UTC
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.