An open API service indexing awesome lists of open source software.

https://github.com/phpinnacle/pinnacle


https://github.com/phpinnacle/pinnacle

Last synced: 7 months ago
JSON representation

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