Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/opensoft/opensofteplbundle
- Owner: opensoft
- Created: 2012-01-13T13:29:44.000Z (almost 13 years ago)
- Default Branch: master
- Last Pushed: 2018-01-23T15:51:10.000Z (almost 7 years ago)
- Last Synced: 2024-04-26T13:02:40.921Z (7 months ago)
- Language: PHP
- Homepage:
- Size: 8.79 KB
- Stars: 1
- Watchers: 4
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.markdown
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.gitRun 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