Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jongotlin/messybundle
Symfony2 bundle for http://github.com/jongotlin/messy
https://github.com/jongotlin/messybundle
Last synced: 15 days ago
JSON representation
Symfony2 bundle for http://github.com/jongotlin/messy
- Host: GitHub
- URL: https://github.com/jongotlin/messybundle
- Owner: jongotlin
- Created: 2011-10-26T14:35:41.000Z (about 13 years ago)
- Default Branch: master
- Last Pushed: 2015-08-12T22:29:18.000Z (over 9 years ago)
- Last Synced: 2024-11-04T06:42:54.582Z (2 months ago)
- Language: PHP
- Homepage:
- Size: 113 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.mdown
Awesome Lists containing this project
README
# MessyBundle
Symfony2 bundle for [messy](http://github.com/jongotlin/messy)**License**
MessyBundle is licensed under the MIT License - see the `Resources/meta/LICENSE` file for details.
## Installation
### Step 1: Download JGIMessyBundle
This can be done in several ways, depending on your preference. This is how you do it the standard Symfony2 method.
Add the following lines in your `deps` file:
```
[JGIMessyBundle]
git=git://github.com/jongotlin/MessyBundle.git
target=bundles/JGI/Bundle/MessyBundle[messy]
git=git://github.com/jongotlin/messy.git
```Now, run the vendors script to download the bundle:
``` bash
$ php bin/vendors install
```### Step 2: Configure the Autoloader
Add the following namespaces to your autoloader:
``` php
registerNamespaces(array(
// ...
'JGI\Bundle\MessyBundle' => __DIR__.'/../vendor/bundles',
'Messy' => __DIR__.'/../vendor/messy/src',
));
```
### Step 3: Enable the bundle
Finally, enable the bundle in the kernel:
``` php