Download the PHP package tozny/e3db without Composer

On this page you can find all versions of the php package tozny/e3db. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package e3db

PHP 7.0+ Build Status Coverage Status Packagist

Introduction

TozStore (formerly E3DB) is a storage platform with powerful sharing and consent management features. Read more on our web site.

TozStore provides a familiar JSON-based NoSQL-style API for reading, writing, and querying data stored securely in the cloud.

Installation

Composer

To install with composer add the following to your composer.json file:

Then run php composer.phar install

Registering a client

Register an account with Tozny to get started. From the Admin Console you can create clients directly (and grab their credentials from the console) or create registration tokens to dynamically create clients with Tozny\E3DB\Client::register(). Clients registered from within the console will automatically back their credentials up to your account. Clients created dynamically via the SDK can optionally back their credentials up to your account.

For a more complete walkthrough, see /examples/registration.php.

Without Credential Backup

The object returned from the server contains the client's UUID, API key, and API secret (as well as echos back the public key passed during registration). It's your responsibility to store this information locally as it will not be recoverable without credential backup.

With Credential Backup

The private key must be passed to the registration handler when backing up credentials as it is used to cryptographically sign the encrypted backup file stored on the server. The private key never leaves the system, and the stored credentials will only be accessible to the newly-registered client itself or the account with which it is registered.

Loading configuration and creating a client

Configuration is managed at runtime by instantiating a Tozny\E3DB\Config object with your client's credentials.

Usage

Writing a record

To write new records to the database, call the Tozny\E3DB\Client::write method with a string describing the type of data to be written, along with an associative array containing the fields of the record. Tozny\E3DB\Client::write returns the newly created record.

Querying records

E3DB supports many options for querying records based on the fields stored in record metadata. Refer to the API documentation for the complete set of options that can be passed to Tozny\E3DB\Client::query.

For example, to list all records of type contact and print a simple report containing names and phone numbers:

In this example, the Tozny\E3DB\Client::query method returns an iterator that contains each record that matches the query.

More examples

See the simple example code for runnable detailed examples.

Development

Before running tests, create a registration token through your Tozny account.

Store the registration token in a .env file at the project root (see .env.example for the example file layout). The integration tests will use this token to dynamically create test clients.

After checking out the repo, install dependencies using composer install then run PHPUnit with ./vendor/bin/phpunit to execute all of the integration tests.

Documentation

General TozStore documentation is on our developer site.

Contributing

Bug reports and pull requests are welcome on GitHub at https://github.com/tozny/e3db-php.


All versions of e3db with dependencies

PHP Build Version
Package Version
Requires php Version >=7.0
paragonie/sodium_compat Version ^1.0
guzzlehttp/guzzle Version ^6.3
sainsburys/guzzle-oauth2-plugin Version ^3.0
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package tozny/e3db contains the following files

Loading the files please wait ....