Download the PHP package activeledger/sdk without Composer
On this page you can find all versions of the php package activeledger/sdk. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download activeledger/sdk
More information about activeledger/sdk
Files in activeledger/sdk
Package sdk
Short Description PHP package for use when integrating with Activeledger
License MIT
Homepage http://www.activeledger.io
Informations about the package sdk

Activeledger - PHP SDK
The Activeledger PHP SDK has been built to provide an easy way to connect your php web application to an Activeledger Network
Activeledger
Read Activeledgers documentation
Installation
Usage
The SDK currently supports the following functionality
- Connection handling
- Key generation
- Key onboarding
- Transaction building
- Encrypted & unencrypted transaction posting
Once the SDK has been installed import the classes with the autoloader
Connection
When sending a transaction, you must pass a connection that provides the information needed to establish a link to the network and specified node.
To do this a connection object must be created. This object must be passed the protocol, address, port, and the encryption flag.
Example
Key
The Key class can be used to generate a key.
There are two key types that can be generated currently, more are planned and will be implemented into Activeledger first. These types are RSA and Elliptic Curve.
Generating a key
When generating a key the default is an Elliptic Curve key. The object returned will be a KeyIdentity class.
Example
Onboarding a key
Once you have a key generated, to use it to sign transactions it must be onboarded to the ledger network
Example
Exporting Key
To save the key for later use you can use the php serialize function
Importing Key
You can import a key using php unserialize function which restores the object
Transaction
The Transaction class contains a static function which helps build an Activeledger transaction object.
Signing & sending a transaction
When signing a transaction you must send the finished version of it. No changes can be made after signing as this will cause the ledger to reject it.
The key must be one that has been successfully onboarded to the ledger which the transaction is being sent to.
Example
License
This project is licensed under the MIT License