Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/opensoft/opensofteplbundle

Bundle for the epl library
https://github.com/opensoft/opensofteplbundle

Last synced: 8 days ago
JSON representation

Bundle for the epl library

Awesome Lists containing this project

README

        

OpensoftEplBundle
==================

[![Build Status](https://travis-ci.org/opensoft/OpensoftEplBundle.png?branch=master)](https://travis-ci.org/opensoft/OpensoftEplBundle)

Installation
============

### Add this bundle to your project

**Using the composer**

```php composer.phar require opensoft/opensoft-epl-bundle```

**Using the vendors script**

Add the following lines in your deps file:

[OpensoftEplBundle]
git=git://github.com/opensoft/OpensoftEplBundle.git
target=bundles/Opensoft/EplBundle
[epl]
git=http://github.com/opensoft/epl.git

Run the vendors script:

```bash
$ php bin/vendors install
```

**Using Git submodule**

```bash
$ git submodule add git://github.com/opensoft/OpensoftEplBundle.git vendor/bundles/Opensoft/EplBundle
```

### Add the EPL namespace to your autoloader

```php
registerNamespaces(array(
'Epl' => __DIR__.'/../vendor/epl/src',
'Opensoft' => __DIR__.'/../vendor/bundles',
// your other namespaces
));
```

### Add this bundle to your application's kernel

```php