Skip to content

Commit

Permalink
Laravel 5.5 Autoloader support
Browse files Browse the repository at this point in the history
  • Loading branch information
simondotwhite committed Oct 3, 2017
1 parent 31c05cb commit 481bfa3
Showing 1 changed file with 11 additions and 4 deletions.
15 changes: 11 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
"description": "Uses Dingo/API Request Query Parameters to filter Laravel Models",
"license": "MIT",
"keywords": [
"laravel", "API", "dingo", "query string"
],
"laravel", "API", "dingo", "query string"
],
"authors": [
{
"name": "Johannes Schobel",
Expand All @@ -13,13 +13,20 @@
],
"require": {
"php": ">=5.5.0",
"laravel/framework": ">=5.1"
"laravel/framework": ">=5.1"
},
"require-dev": {
},
},
"autoload": {
"psr-0": {
"JohannesSchobel\\DingoQueryMapper": "src/"
}
},
"extra": {
"laravel": {
"providers": [
"JohannesSchobel\\DingoQueryMapper\\DingoQueryMapperServiceProvider"
]
}
}
}

0 comments on commit 481bfa3

Please sign in to comment.