easyly/easyly-php

Easyly PHP Library

Installs: 0

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 0

Open Issues: 0

pkg:composer/easyly/easyly-php

dev-master 2023-09-18 22:01 UTC

This package is auto-updated.

Last update: 2025-12-19 03:01:47 UTC


README

npm NPM

Composer

You can install the bindings via Composer. Run the following command:

composer require easyly/easyly-php

To use the bindings, use Composer's autoload:

require_once 'vendor/autoload.php';

Manual Installation

If you do not wish to use Composer, you can download the latest release. Then, to use the bindings, include the init.php file.

require_once '/path/to/easyly-php/init.php';

Getting Started

Simple usage looks like:

$easyly = new \Easyly\EasylyClient('sk_test_XXX....');
$lead = $easyly->leads->create([
    'name' => 'john doe',
    'email' => 'john@example.com'
]);
echo $lead->id;

Full documentation can be found on the Easyly Documentation

Contributing

If you would like to contribute to Easyly, please make sure to read our contributor guidelines.