https://github.com/formapro/jserrornotifierbundle
After a simple setup this module will allow you to get notifications by email about occured errors in JavaScript. This bundle can be used as an independent module or together with BadaBoom bundle.
https://github.com/formapro/jserrornotifierbundle
Last synced: 11 months ago
JSON representation
After a simple setup this module will allow you to get notifications by email about occured errors in JavaScript. This bundle can be used as an independent module or together with BadaBoom bundle.
- Host: GitHub
- URL: https://github.com/formapro/jserrornotifierbundle
- Owner: formapro
- License: mit
- Created: 2013-10-14T11:34:55.000Z (almost 13 years ago)
- Default Branch: master
- Last Pushed: 2013-10-14T13:09:15.000Z (almost 13 years ago)
- Last Synced: 2025-03-01T16:47:31.940Z (over 1 year ago)
- Language: PHP
- Homepage:
- Size: 92.8 KB
- Stars: 0
- Watchers: 4
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.markdown
- License: LICENSE
Awesome Lists containing this project
README
Getting Started With FpJsErrorNotifierBundle
============================================
After a simple setup this module will allow you to get notifications by email about occured errors in Javasccript.
This bundle can be used as an independent module or together with BadaBoom bundle.
## Installation
### Step 1: Download FpJsErrorNotifierBundle using composer
Add FOSUserBundle in your composer.json:
```js
{
"require": {
"fp/jserrornotifier-bundle": "dev-master"
}
}
```
Now tell composer to download the bundle by running the command:
``` bash
$ php composer.phar update fp/jserrornotifier-bundle
```
Composer will install the bundle to your vendors
### Step 2: Enable the Bundle
``` php
{% endjavascripts %}
```
### Step 6: Configure the FpJsErrorNotifierBundle
If you have an enabled and configured BadaBoom bundle, you can skip this step.
Otherwise you have to add some configurations for this bundle:
``` yaml
# app/config/config.yml
fp_js_error_notifier:
email_from: 'noreply@test.com' # sender email
email_to: ['john@example.com'] # list of recipients notification
```