Guest User

Untitled

a guest
Jul 18th, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.90 KB | None | 0 0
  1. Provides an error management for your Symfony2 Project.
  2.  
  3. Installation
  4. ============
  5.  
  6. Add ErrorManagementBundle to your src/Bundle dir
  7. -------------------------------------
  8.  
  9. ::
  10.  
  11. $ git submodule add git://github.com/redpanda/ErrorManagementBundle.git src/Bundle/ErrorManagementBundle
  12.  
  13.  
  14. Add ErrorManagementBundle to your application kernel
  15. -----------------------------------------
  16.  
  17. ::
  18.  
  19. // app/AppKernel.php
  20.  
  21. public function registerBundles()
  22. {
  23. return array(
  24. // ...
  25. new Bundle\ErrorManagementBundle\ErrorManagementBundle(),
  26. // ...
  27. );
  28. }
  29.  
  30. Configuration example:
  31. ======================
  32.  
  33. All configuration options are listed below::
  34.  
  35. db_driver: odm/orm
  36. enabled: true/false
  37. record:
  38. exception: true/false
  39. php_error: true/false
  40.  
  41. notification:
  42. mail:
  43. enabled: true/false
  44. from: ~
  45. to: ~
Add Comment
Please, Sign In to add comment