2017 © Pedro Peláez
 

library laravel-filemaker

Filemaker integration for Laravel framework

image

abram/laravel-filemaker

Filemaker integration for Laravel framework

  • Monday, May 14, 2018
  • by andrea.abram
  • Repository
  • 0 Watchers
  • 0 Stars
  • 7 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 1 Versions
  • 17 % Grown

The README.md

Filemaker integration for Laravel framework

This integration allows to connect to Filemaker File/Solution/Layout with Laravel framework.
This library depends on https://github.com/andreossido/laravel-odbc, (*1)

# How to install

composer require abram/laravel-filemaker To add source in your project, (*2)

# Usage Instructions

It's very simple to configure:, (*3)

Add database to database.php file, (*4)

'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
        ],
    ]
]

The Versions

14/05 2018

dev-master

9999999-dev https://github.com/andreossido/laravel-filemaker

Filemaker integration for Laravel framework

  Sources   Download

The Requires