2017 © Pedro Peláez
 

symfony-bundle cosm-bundle

This bundle provides an integration with Cosm API

image

nass600/cosm-bundle

This bundle provides an integration with Cosm API

  • Friday, July 27, 2012
  • by nass600
  • Repository
  • 1 Watchers
  • 1 Stars
  • 6 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 1 Versions
  • 0 % Grown

The README.md

CosmBundle

The CosmBundle offers access to the cosm.com feed API either by using a PHP service or through the CLI for Symfony2. Is on charge of handle all the operations related to cosm feeds via the bundle CRUD interface., (*1)

Features include:, (*2)

  • CRUD API for managing feeds
  • CLI commands for executing operations

What is Cosm?

Pachube is an web service provider allowing developers to connect their own data (energy and environment data from objects, devices & buildings) to the Web and to build their own applications on it., (*3)

For more information about the service, please visit: https://cosm.com, (*4)

Installation

On Symfony 2.0.x:

Add CosmBundle to your vendor/bundles/ directory., (*5)

Add the following lines in your deps file:, (*6)

    [Nass600CosmBundle]
      git =https://github.com/nass600/CosmBundle.git
      target=/bundles/Nass600/CosmBundle

Run the vendors script:, (*7)

``` bash ./bin/vendors update, (*8)


Add the Nass600 namespace to your `app/autoload.php`: ``` php <?php // app/autoload.php $loader->registerNamespaces(array( // your other namespaces 'Nass600' => __DIR__.'/../vendor/bundles', );

Add CosmBundle to your app/AppKernel.php:, (*9)

``` php <?php // app/AppKernel.php public function registerBundles() { return array( // ... new Nass600\CosmBundle\Nass600CosmBundle(), ); }, (*10)


#### On Symfony 2.1.x: Add this line to your project's composer.json: ``` json "require": { // your other packages "nass600/cosm-bundle": "dev-master" },

Add CosmBundle to your app/AppKernel.php:, (*11)

php <?php // app/AppKernel.php public function registerBundles() { return array( // ... new Nass600\CosmBundle\Nass600CosmBundle(), ); }, (*12)

The Versions

27/07 2012

dev-master

9999999-dev https://github.com/nass600/CosmBundle

This bundle provides an integration with Cosm API

  Sources   Download

GNU

The Requires

 

symfony2 bundle feed cosm