https://github.com/phpinnacle/pinnacle
https://github.com/phpinnacle/pinnacle
Last synced: 7 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/phpinnacle/pinnacle
- Owner: phpinnacle
- License: mit
- Created: 2018-03-30T11:58:45.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2019-01-14T16:35:38.000Z (about 7 years ago)
- Last Synced: 2024-04-20T01:21:47.287Z (almost 2 years ago)
- Language: PHP
- Size: 146 KB
- Stars: 4
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: CONTRIBUTING.md
- License: LICENSE.md
Awesome Lists containing this project
README
# PHPinnacle Framework
[![Latest Version on Packagist][ico-version]][link-packagist]
[![Software License][ico-license]](LICENSE.md)
[![Coverage Status][ico-scrutinizer]][link-scrutinizer]
[![Quality Score][ico-code-quality]][link-code-quality]
[![Total Downloads][ico-downloads]][link-downloads]
PHPinnacle provides full featured stack for message based applications with support CQRS and Event Sourcing.
## Install
Via Composer
```bash
$ composer require phpinnacle/pinnacle
```
## Basic Usage
```php
transport('amqp://localhost:5672')
->container($psrContainer)
->logger($psrLogger)
->load(new Loader\ServiceLoader('Acme\\Demo\\Services'))
;
Loop::run(function () use ($builder) {
$app = $builder->build();
yield $app->run();
});
```
More examples can be found in [`examples`](examples) directory.
## Change log
Please see [CHANGELOG](CHANGELOG.md) for more information on what has changed recently.
## Testing
```bash
$ composer test
```
## Contributing
Please see [CONTRIBUTING](CONTRIBUTING.md) and [CONDUCT](CONDUCT.md) for details.
## Security
If you discover any security related issues, please email dev@phpinnacle.com instead of using the issue tracker.
## Credits
- [PHPinnacle][link-author]
- [All Contributors][link-contributors]
## License
The MIT License (MIT). Please see [License File](LICENSE.md) for more information.
[ico-version]: https://img.shields.io/packagist/v/phpinnacle/pinnacle.svg?style=flat-square
[ico-license]: https://img.shields.io/badge/license-MIT-brightgreen.svg?style=flat-square
[ico-scrutinizer]: https://img.shields.io/scrutinizer/coverage/g/phpinnacle/pinnacle.svg?style=flat-square
[ico-code-quality]: https://img.shields.io/scrutinizer/g/phpinnacle/pinnacle.svg?style=flat-square
[ico-downloads]: https://img.shields.io/packagist/dt/phpinnacle/pinnacle.svg?style=flat-square
[link-packagist]: https://packagist.org/packages/phpinnacle/pinnacle
[link-scrutinizer]: https://scrutinizer-ci.com/g/phpinnacle/pinnacle/code-structure
[link-code-quality]: https://scrutinizer-ci.com/g/phpinnacle/pinnacle
[link-downloads]: https://packagist.org/packages/phpinnacle/pinnacle
[link-author]: https://github.com/phpinnacle
[link-contributors]: ../../contributors