PHPackages                             rjakes/rjakessimplefm - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Database &amp; ORM](/categories/database)
4. /
5. rjakes/rjakessimplefm

ActiveLibrary[Database &amp; ORM](/categories/database)

rjakes/rjakessimplefm
=====================

Wrapper for soliantconsulting/simplefm

2.0.0beta04(11y ago)177[1 issues](https://github.com/rjakes/RjakesSimpleFM/issues)MITTeXPHP &gt;=5.3.0

Since Aug 2Pushed 11y ago2 watchersCompare

[ Source](https://github.com/rjakes/RjakesSimpleFM)[ Packagist](https://packagist.org/packages/rjakes/rjakessimplefm)[ Docs](http://github.com/rjakes/SimpleFM)[ RSS](/packages/rjakes-rjakessimplefm/feed)WikiDiscussions master Synced today

READMEChangelog (4)Dependencies (1)Versions (6)Used By (0)

RjakesSimpleFM
==============

[](#rjakessimplefm)

Wrapper/facade that extends Jeremiah Small's SimpleFM class for communicating with FileMaker Server:

This class is a convenience wrapper to SimpleFM that offers quick and easy CRUD operations, as well as a very easy method to execute FileMaker scripts from PHP. It's helpful for programmers that don't want or need to build out the query parameters that the FileMaker Web Pushinging Engine requires.

Author Roger Jacques -

System Requirements
-------------------

[](#system-requirements)

- PHP 5.3+
- FileMaker Server 12+

Quickstart via Trivial Examples
-------------------------------

[](#quickstart-via-trivial-examples)

The quickstart files below will work with the FMServer\_Example file that installs with FileMaker Server, and, they will work with fuelPHP without modification. The best way to get the required classes is to add an entry to the composer.json file that you will find at the root of your project folder after creating a new fuelPHP project.

```
    "require": {
        "php": ">=5.3.3",
        "composer/installers": "~1.0",
        "fuel/docs": "1.7.2",
        "fuel/core": "1.7.2",
        "fuel/auth": "1.7.2",
        "fuel/email": "1.7.2",
        "fuel/oil": "1.7.2",
        "fuel/orm": "1.7.2",
        "fuel/parser": "1.7.2",
        "fuelphp/upload": "2.0.1",
        "monolog/monolog": "1.5.*",
        "michelf/php-markdown": "1.4.0",
		"rjakes/rjakessimplefm": "dev-master"
    },

```

Then, from your project directory, run:

```
composer.phar update

```

These examples will work in any project or framework that can load the required classes, with minimal modification (the controller below has a bit of fuelPHP specific code.)

### Base Model

[](#base-model)

```
