PHPackages                             maxlutzfl/airtable-php - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. maxlutzfl/airtable-php

ActiveLibrary

maxlutzfl/airtable-php
======================

0.1.0(3y ago)04PHP

Since Jan 12Pushed 3y ago1 watchersCompare

[ Source](https://github.com/maxlutzfl/airtable-php)[ Packagist](https://packagist.org/packages/maxlutzfl/airtable-php)[ RSS](/packages/maxlutzfl-airtable-php/feed)WikiDiscussions main Synced 1mo ago

READMEChangelog (1)DependenciesVersions (2)Used By (0)

Airtable PHP
============

[](#airtable-php)

Use with Laravel
----------------

[](#use-with-laravel)

### Setup `.env`

[](#setup-env)

```
AIRTABLE_KEY=key...
AIRTABLE_ID=app...
```

### Setup `config/service.php`

[](#setup-configservicephp)

```
'airtable' => [
    'key' => env('AIRTABLE_KEY'),
    'id' => env('AIRTABLE_ID'),
],
```

### Setup `App\Providers\AppServiceProvider`

[](#setup-appprovidersappserviceprovider)

```
public function register()
{
    app()->bind('airtable', function() {
        $httpClient = new Http();
        return new Airtable(
            $httpClient,
            config('services.airtable.key'),
            config('services.airtable.id'),
        );
    });
}
```

### (optional) Setup `App\Facades\AirtableFacades`

[](#optional-setup-appfacadesairtablefacades)

```
namespace App\Facades;

use Illuminate\Support\Facades\Facade;

class AirtableFacade extends Facade
{
    protected static function getFacadeAccessor()
    {
        return 'airtable';
    }
}
```

Examples
--------

[](#examples)

### Get a specific record

[](#get-a-specific-record)

```
Airtable::table('Users')->grab('record-id-here');
```

###  Health Score

17

—

LowBetter than 6% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity3

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity35

Early-stage or recently created project

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Unknown

Total

1

Last Release

1219d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/56cec4c5b73582a739d900148ac94a74635aa82bbc3ff2902c54948fc01f599f?d=identicon)[maxlutzfl](/maintainers/maxlutzfl)

---

Top Contributors

[![maxbrandco](https://avatars.githubusercontent.com/u/173946674?v=4)](https://github.com/maxbrandco "maxbrandco (5 commits)")

### Embed Badge

![Health badge](/badges/maxlutzfl-airtable-php/health.svg)

```
[![Health](https://phpackages.com/badges/maxlutzfl-airtable-php/health.svg)](https://phpackages.com/packages/maxlutzfl-airtable-php)
```

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
