├── .php-cs-fixer.dist.php ├── LICENCE ├── composer.json ├── phpstan.neon └── src ├── AirtableClient.php ├── AirtableClientBundle.php ├── AirtableClientInterface.php ├── AirtableRecord.php ├── AirtableTransport.php ├── AirtableTransportInterface.php ├── DependencyInjection ├── AirtableClientExtension.php └── Configuration.php ├── Exception └── MissingRecordDataException.php └── Resources └── config └── services.php /.php-cs-fixer.dist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoanbernabeu/Airtable-Client-Bundle/HEAD/.php-cs-fixer.dist.php -------------------------------------------------------------------------------- /LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoanbernabeu/Airtable-Client-Bundle/HEAD/LICENCE -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoanbernabeu/Airtable-Client-Bundle/HEAD/composer.json -------------------------------------------------------------------------------- /phpstan.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoanbernabeu/Airtable-Client-Bundle/HEAD/phpstan.neon -------------------------------------------------------------------------------- /src/AirtableClient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoanbernabeu/Airtable-Client-Bundle/HEAD/src/AirtableClient.php -------------------------------------------------------------------------------- /src/AirtableClientBundle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoanbernabeu/Airtable-Client-Bundle/HEAD/src/AirtableClientBundle.php -------------------------------------------------------------------------------- /src/AirtableClientInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoanbernabeu/Airtable-Client-Bundle/HEAD/src/AirtableClientInterface.php -------------------------------------------------------------------------------- /src/AirtableRecord.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoanbernabeu/Airtable-Client-Bundle/HEAD/src/AirtableRecord.php -------------------------------------------------------------------------------- /src/AirtableTransport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoanbernabeu/Airtable-Client-Bundle/HEAD/src/AirtableTransport.php -------------------------------------------------------------------------------- /src/AirtableTransportInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoanbernabeu/Airtable-Client-Bundle/HEAD/src/AirtableTransportInterface.php -------------------------------------------------------------------------------- /src/DependencyInjection/AirtableClientExtension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoanbernabeu/Airtable-Client-Bundle/HEAD/src/DependencyInjection/AirtableClientExtension.php -------------------------------------------------------------------------------- /src/DependencyInjection/Configuration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoanbernabeu/Airtable-Client-Bundle/HEAD/src/DependencyInjection/Configuration.php -------------------------------------------------------------------------------- /src/Exception/MissingRecordDataException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoanbernabeu/Airtable-Client-Bundle/HEAD/src/Exception/MissingRecordDataException.php -------------------------------------------------------------------------------- /src/Resources/config/services.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoanbernabeu/Airtable-Client-Bundle/HEAD/src/Resources/config/services.php --------------------------------------------------------------------------------