https://github.com/opensoft/opensofteplbundle
Bundle for the epl library
https://github.com/opensoft/opensofteplbundle
Last synced: about 1 year 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 (over 14 years ago)
- Default Branch: master
- Last Pushed: 2018-01-23T15:51:10.000Z (over 8 years ago)
- Last Synced: 2025-03-29T07:51:26.054Z (about 1 year ago)
- Language: PHP
- Homepage:
- Size: 8.79 KB
- Stars: 1
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.markdown
Awesome Lists containing this project
README
OpensoftEplBundle
==================
[](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