Download the PHP package nojimage/cakephp-rest without Composer

On this page you can find all versions of the php package nojimage/cakephp-rest. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package cakephp-rest

CakePHP ReST DataSource Plugin

A CakePHP Plugin containing a DataSource for interarcting with ReSTful web services.

Build Status

Requirements

Installation

Get plugin

using composer

composer require "nojimage/cakephp-rest":"2.*"

or, use git submodule

git submodule add https://github.com/nojimage/CakePHP-ReST-DataSource-Plugin.git app/Plugin/Rest

Setup APP/Config/bootstrap.php

CakePlugin::load('Rest');

How it works

Direct Usage

  1. In APP/Config/database.php, append to the datasource definition.

    /**

    • RestSource
    • @var array */ public $rest = array( 'datasource' => 'Rest.RestSource', 'database' => false, );
  2. Create a model for each thing on web service you want to interact with. For example create a TwitterStatus model
  3. Ensure your model uses this datasource by setting it in the $useDbConfig property, e.g.

    public $useDbConfig = 'rest';

  4. Create a method in you model that corresponds to a function you can perform through the web service. E.g.

    public function save($data = null, $validate = true, $fieldList = array()) {
      $this->request = array(
        'uri' => array(
          'host' => 'twitter.com',
          'path' => 'statuses/update.json'
        ),
        'body' => array(
          'status' => $data['TwitterStatus']['text']
        )
      );
      return parent::save($data, $validate, $fieldList);
    }
  5. Anywhere in your application, call:

    $result = ClassRegistry::init('TwitterStatus')->save(array('TwitterStatus' => array('text' => 'Hello World!')));

N.B. This example is purely representative and does not include authentication for example, but demonstrate the general idea.

Other Uses

I abstracted this functionality out of a lot of other datasources I was writing and I use this extensively as a base data source which I extend for each web service I need, handling the specifics of each of those web services, such as Authentication, in those classes, by overloading each of the public methods in the Rest datasource as required.

For example, you can create a TwitterSource which extends RestSource and overload the constructor to pass in an instance of my HttpSocketOauth extension to CakePHP's HttpSocket class, and the request() method, adding in the common request params such as the host key and '.json' on the end of the path key, and the specific authentication params, then just call parent::request() to handle the issuing of the request and parsing of the response.


All versions of cakephp-rest with dependencies

PHP Build Version
Package Version
Requires php Version >=5.2.8
composer/installers Version *
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package nojimage/cakephp-rest contains the following files

Loading the files please wait ....