Powerful object data storage and querying for collaborative web apps.
The PHP implementation of Nymph/Tilmeld has been deprecated. It will no longer have any new features added. Instead, a new version of Nymph running on Node.js, written entirely in TypeScript will replace the PHP implementation. You can find it over at the Nymph.js repo.
The fastest way to start building a Nymph app is with the Nymph App Template.
composer require sciactive/nymph-server
This repository is the PHP ORM and REST server. For more information, you can see the main Nymph repository.
For detailed docs, check out the wiki:
Here's an overview:
require 'vendor/autoload.php';
use Nymph\Nymph;
Nymph::configure([
'MySQL' => [
'host' => 'your_db_host',
'database' => 'your_database',
'user' => 'your_user',
'password' => 'your_password'
]
]);
// You are set up. Now make a class like `MyEntity` and use it.
$myEntity = new MyEntity();
$myEntity->myVar = "myValue";
$myEntity->save();
$allMyEntities = Nymph::getEntities(['class' => 'MyEntity']);
For a thorough step by step guide to setting up Nymph on your own server, visit the Setup Guide.
Check out the API Docs in the wiki.