abram / laravel-filemaker
There is no license information available for the latest version (dev-master) of this package.
Filemaker integration for Laravel framework
dev-master
2018-05-14 15:16 UTC
Requires
- abram/laravel-odbc: dev-master
This package is not auto-updated.
Last update: 2024-11-10 05:51:19 UTC
README
This integration allows to connect to Filemaker File/Solution/Layout with Laravel framework.
This library depends on https://github.com/andreossido/laravel-odbc
# How to install
composer require abram/laravel-filemaker
To add source in your project
# Usage Instructions
It's very simple to configure:
Add database to database.php file
'odbc-connection-name' => [ 'driver' => 'odbc', 'dsn' => 'OdbcConnectionName', 'database' => 'DatabaseName', 'host' => '127.0.0.1', 'username' => 'username', 'password' => 'password', 'options' => [ 'processor' => \Abram\Filemaker\FilemakerProcessor::class, 'grammar' => [ 'query' => \Abram\Filemaker\FilemakerQueryGrammar::class ], ] ]