Skip to content

Commit

Permalink
Initial Commit
Browse files Browse the repository at this point in the history
  • Loading branch information
wb_davidhoeck committed Jan 25, 2017
0 parents commit c51da2d
Show file tree
Hide file tree
Showing 4 changed files with 687 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
tests
example

14 changes: 14 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
{
"name": "davidhoeck/laravel-jsonmapper",
"description": "Map JSON Responses to PHP Models",
"type": "library",
"license": "OSL3.0",
"authors": [
{
"name": "David Höck",
"email": "[email protected]"
}
],
"minimum-stability": "dev",
"require": {}
}
19 changes: 19 additions & 0 deletions src/Exceptions/Exception.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
<?php

namespace DavidHoeck\LaravelJsonMapper\Exceptions;

use Exception;

/**
* Exception for the LaravelJsonMapper
*
* @package JsonMapper
* @author David Höck <[email protected]>
* @license OSL-3.0 http://opensource.org/licenses/osl-3.0
* @link http://github.com/wbdavidhoeck/laravel-jsonmapper
*/
class JsonMapperException extends Exception
{

}

Loading

0 comments on commit c51da2d

Please sign in to comment.