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

https://github.com/xiscodev/racl

Opinionated RESTful API client for Laravel or Lumen
https://github.com/xiscodev/racl

laravel-package lumen-package php php7 php8 rest-client

Last synced: 11 months ago
JSON representation

Opinionated RESTful API client for Laravel or Lumen

Awesome Lists containing this project

README

          

# Opinionated RESTful API client for Laravel or Lumen

[![Latest Version on Packagist](https://img.shields.io/packagist/v/xiscodev/racl.svg?style=flat-square)](https://packagist.org/packages/xiscodev/racl)
[![GitHub Tests Action Status](https://img.shields.io/github/workflow/status/xiscodev/racl/run-tests?label=tests)](https://github.com/xiscodev/racl/actions?query=workflow%3Arun-tests+branch%3Amain)
[![GitHub Code Style Action Status](https://img.shields.io/github/workflow/status/xiscodev/racl/Check%20&%20fix%20styling?label=code%20style)](https://github.com/xiscodev/racl/actions?query=workflow%3A"Check+%26+fix+styling"+branch%3Amain)
[![Total Downloads](https://img.shields.io/packagist/dt/xiscodev/racl.svg?style=flat-square)](https://packagist.org/packages/xiscodev/racl)

This is where your description should go. Limit it to a paragraph or two. Consider adding a small example.

## Installation

You can install the package via composer:

```bash
composer require xiscodev/racl
```

You can publish the config file with:
```bash
php artisan vendor:publish --provider="Xiscodev\Racl\RaclServiceProvider" --tag="racl-config"
```

This is the contents of the published config file:

```php
return [
];
```

## Usage

```php
$racl = new Xiscodev\Racl();
echo $racl->echoPhrase('Hello, Racl!');
```

## Testing

```bash
composer test
```

## Changelog

Please see [CHANGELOG](CHANGELOG.md) for more information on what has changed recently.

## Contributing

Please see [CONTRIBUTING](.github/CONTRIBUTING.md) for details.

## Security Vulnerabilities

Please review [our security policy](../../security/policy) on how to report security vulnerabilities.

## Credits

- [Jose Diaz](https://github.com/xoxefdp)
- [All Contributors](../../contributors)

## License

The MIT License (MIT). Please see [License File](LICENSE.md) for more information.