kolotoc/filemaker-api

FileMaker PHP API, namespaced, clean and error-free

Installs: 30

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 0

Open Issues: 0

pkg:composer/kolotoc/filemaker-api

0.1.1 2016-02-11 16:23 UTC

This package is not auto-updated.

Last update: 2025-09-28 00:50:41 UTC


README

FileMaker PHP API, namespaced, clean and completely error-free. This implementation of FileMaker API resolves

  • Namespaces - whole solution is wraped into namespace
  • Errors - all staticly called method are really static
  • Code - code is cleaned up and writen for php 5.3

Complete documentation for API is here https://fmhelp.filemaker.com/docs/14/en/fms14_cwp_guide.pdf

Basic usage

use Kolotoc\FileMakerApi\FileMaker;
$fm = new FileMaker();
$fm->setProperty('database', DATABASE);
$fm->setProperty('hostspec', HOSTSPEC);
$fm->setProperty('username', USERNAME);
$fm->setProperty('password', PASSWORD);