axeldotdev/laravel-airtable

laravel-airtable allows you to import your Airtable data into your Laravel database.

v1.1.0 2022-04-11 14:42 UTC

This package is auto-updated.

Last update: 2024-04-11 19:21:55 UTC


README

Build Status Total Downloads Latest Stable Version License

Laravel Airtable allows you to import your Airtable data into your Laravel database.

Installation

You can install the package via composer:

composer require axeldotdev/laravel-airtable

You can publish the config file with:

php artisan vendor:publish --provider="AxelDotDev\LaravelAirtable\LaravelAirtableServiceProvider" --tag="config"

This is the contents of the published config file:

return [
    'uri' => 'https://api.airtable.com/v0/',

    /*
    |--------------------------------------------------------------------------
    | Airtable Key
    |--------------------------------------------------------------------------
    |
    | This value can be found in your Airtable account page:
    | https://airtable.com/account
    |
     */
    'key' => env('AIRTABLE_KEY'),
];

Documentation

In progress 🚧

Testing

composer test

Changelog

Please see CHANGELOG for more information on what has changed recently.

Contributing

Please see CONTRIBUTING for details.

Security Vulnerabilities

Please review our security policy on how to report security vulnerabilities.

Credits

License

The MIT License (MIT). Please see License File for more information.