Update README.md

This commit is contained in:
filp
2013-03-11 22:27:48 +00:00
parent a5b27b36fe
commit 12f6ad593b
+16
View File
@@ -4,3 +4,19 @@ php errors for cool kids
[![Build Status](https://travis-ci.org/filp/damnit.png)](https://travis-ci.org/filp/damnit)
-----
`damnit` is an error handler base/framework for PHP. Out-of-the-box, it provides a pretty
error interface that helps you debug your web projects, but at heart it's a simple yet
powerful stacked error system.
## Basic Usage:
To use `damnit` with default settings, for a web project, simply create an instance and
`register()` it:
```php
$damnit = new DamnIt\Run;
$damnit->register();
```