This package is abandoned and no longer maintained. No replacement package was suggested.

A library for interfacing the cAPI of https://www.annatech.com/.

v1.1.0 2016-04-21 06:01 UTC

This package is not auto-updated.

Last update: 2023-11-01 16:16:54 UTC


README

JRA is a library to interface the Joomla Rest API (cAPI) of Annatech LLC.

The cAPI is an API for Joomla, which allows you to change the content of articles, modify users and much more.

We use the cAPI in Production and we were thinking: "Why should everyone waste his time, with developing his own interface for the API". So we decided to make an open source library, which contains the functionality to do all of this by the cAPI provided actions.

The JRA is distributed under the GPL-3.0 license.

Installing JRA

The recommended way to install JRA is through Composer.

Install Composer if not already done:

curl -sS http://getcomposer.org/installer | php

Add bertschi/jra as project dependency:

php composer.phar require bertschi/jra

Install the dependencies:

php composer.phar install

You need to require Composer's autoloader wherever you want to use the JRA:

require 'vendor/autoload.php';