Skip to content
This repository has been archived by the owner on Oct 20, 2023. It is now read-only.

BertschiAG/JRA

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

26 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

JRA, PHP cAPI interface

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';