https://github.com/shokme/laravel-actito
Laravel HTTP Facade wrapper for Actito API
https://github.com/shokme/laravel-actito
actito api facade http laravel
Last synced: 7 months ago
JSON representation
Laravel HTTP Facade wrapper for Actito API
- Host: GitHub
- URL: https://github.com/shokme/laravel-actito
- Owner: shokme
- License: mit
- Created: 2022-06-01T16:54:36.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2025-05-16T10:01:32.000Z (about 1 year ago)
- Last Synced: 2025-10-08T10:39:27.699Z (10 months ago)
- Topics: actito, api, facade, http, laravel
- Language: PHP
- Homepage:
- Size: 26.4 KB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
## Installation
- PHP8.0+
- Laravel 9.x(not tested on laravel 8.x)
You can install the package via composer:
```sh
composer require shokme/laravel-actito
```
You must publish the configuration file
```sh
php artisan vendor:publish --provider="Shokme\Actito\ActitoServiceProvider" --tag="config"
```
## Example
```php
Actito::profile()->find('emailAddress=john@doe.com');
Profile::all();
Table::find('posts', '154');
$actito = new Actito();
$actito->table->create(...);
```
All available methods are listed in each Facade, you can retrieve the Actito documentation link for each method
inside `src/Endpoints/*`.
## Changelog
Please see [CHANGELOG](CHANGELOG.md) for more information on what has changed recently.
## License
The MIT License (MIT). Please see [License File](LICENSE.md) for more information.