abram/laravel-filemaker

There is no license information available for the latest version (dev-master) of this package.

Filemaker integration for Laravel framework

Installs: 123

Dependents: 0

Suggesters: 0

Security: 0

Stars: 2

Watchers: 0

Forks: 2

Open Issues: 1

pkg:composer/abram/laravel-filemaker

dev-master 2018-05-14 15:16 UTC

This package is not auto-updated.

Last update: 2025-10-12 10:18:23 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
		],
	]
]