PHPackages                             elemeno/elemeno - 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. elemeno/elemeno

ActiveLibrary

elemeno/elemeno
===============

Elemeno CMS PHP API Wrapper

3221[1 issues](https://github.com/elemenohq/elemeno-php/issues)PHP

Since Dec 3Pushed 9y ago3 watchersCompare

[ Source](https://github.com/elemenohq/elemeno-php)[ Packagist](https://packagist.org/packages/elemeno/elemeno)[ RSS](/packages/elemeno-elemeno/feed)WikiDiscussions master Synced 1mo ago

READMEChangelogDependenciesVersions (1)Used By (0)

Elemeno
=======

[](#elemeno)

The official PHP client for Elemeno, an API based CMS. Use this module to easily integrate your content created on Elemeno into your PHP projects.

Create an account and get started for free at

Requirements
------------

[](#requirements)

- A minimum of PHP 5.5.0
- [Composer](https://getcomposer.org/doc/00-intro.md) must be installed

Installation
------------

[](#installation)

If Composer is installed globally:

```
composer require elemeno/elemeno:~0.1
```

If Composer is installed locally:

```
php composer.phar require elemeno/elemeno:~0.1
```

Elemeno Documentation
---------------------

[](#elemeno-documentation)

API documentation is available at

Usage
-----

[](#usage)

If you haven't already, you must include the following line when using Composer:

```
require_once 'vendor/autoload.php';
```

You can then create a new Elemeno Client with the following:

```
// Create a new Elemeno Client with your unique API key
$elemeno = new \Elemeno\Client('123e4567-e89b-12d3-a456-426655440000');
```

**Note: API keys can be created in settings**

Example Usage
-------------

[](#example-usage)

```
