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
- Host: GitHub
- URL: https://github.com/xiscodev/racl
- Owner: xiscodev
- License: mit
- Created: 2021-09-18T19:03:40.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2022-03-17T00:56:35.000Z (about 4 years ago)
- Last Synced: 2025-04-21T07:49:59.294Z (about 1 year ago)
- Topics: laravel-package, lumen-package, php, php7, php8, rest-client
- Language: PHP
- Homepage:
- Size: 41 KB
- Stars: 2
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: .github/CONTRIBUTING.md
- Funding: .github/FUNDING.yml
- License: LICENSE.md
- Security: .github/SECURITY.md
Awesome Lists containing this project
README
# Opinionated RESTful API client for Laravel or Lumen
[](https://packagist.org/packages/xiscodev/racl)
[](https://github.com/xiscodev/racl/actions?query=workflow%3Arun-tests+branch%3Amain)
[](https://github.com/xiscodev/racl/actions?query=workflow%3A"Check+%26+fix+styling"+branch%3Amain)
[](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.