-
-
Notifications
You must be signed in to change notification settings - Fork 63
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Refactored the code to be more visible and readble * Removed Third parameter is callback and fourth is null check as the third parameter is only accept array * Align and indent code to fix the StyleCI errors * Fixed compatible issues with StyleCI * Fix Laravel 5.5 compatibility with "getDomain" Fix a bug with Laravel 5.5 (dingo/api#1413 (comment)) * Fix typo * Added github issue template * Changed the OAuth package * Added github new issue template * Extended form Illuminate route class * Fixed code formatting * Removed router form alias * Trying to fix StyleCI issue * Apply fixes from StyleCI * Updated the minimum php version and fractal * Added empty array as register signature needs an array as third parameter * Fixed the comment line * Fixed indenting * Removed php 5x support * Removed broken OAuth2 provider * Apply fixes from StyleCI * Removed HHVM form travis file
- Loading branch information
Showing
14 changed files
with
96 additions
and
641 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
| Q | A | ||
| ----------------- | --- | ||
| Bug? | no|yes | ||
| New Feature? | no|yes | ||
| Framework | Laravel|Lumen | ||
| Framework version | 5.x.y | ||
| Package version | 1.x.y | ||
| PHP version | 5.x.y|7.x.y | ||
|
||
#### Actual Behaviour | ||
|
||
Describe the behaviour you're experiencing. Do not just copy and paste a random error message and expect help. | ||
|
||
|
||
#### Expected Behaviour | ||
|
||
Describe the behaviour you're expecting. | ||
|
||
|
||
#### Steps to Reproduce | ||
|
||
List all the steps needed to reproduce the issue you're having. Make sure to include code (affected models, configurations), | ||
any screenshots and/or other resources that may help us understand what's going on. | ||
|
||
|
||
#### Possible Solutions | ||
|
||
If you have any ideas on how to solve the issue, add them here, otherwise you can omit this part. |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,11 +13,11 @@ | |
"email": "[email protected]" | ||
}], | ||
"require": { | ||
"php": "^5.5.9 || ^7.0", | ||
"dingo/blueprint": "0.2.*", | ||
"php": "^7.0", | ||
"dingo/blueprint": "^0.2", | ||
"illuminate/routing": "^5.1", | ||
"illuminate/support": "^5.1", | ||
"league/fractal": ">=0.12.0" | ||
"league/fractal": "^0.17" | ||
}, | ||
"require-dev": { | ||
"friendsofphp/php-cs-fixer": "~2", | ||
|
@@ -29,15 +29,13 @@ | |
"illuminate/filesystem": "^5.1", | ||
"illuminate/log": "^5.1", | ||
"illuminate/pagination": "^5.1", | ||
"laravel/lumen-framework": "5.1.* || 5.2.*", | ||
"lucadegasperi/oauth2-server-laravel": "5.0.*", | ||
"laravel/lumen-framework": "^5.1", | ||
"mockery/mockery": "~0.9", | ||
"phpunit/phpunit": "^4.8 || ^5.0", | ||
"squizlabs/php_codesniffer": "~2.0", | ||
"tymon/jwt-auth": "1.0.*" | ||
}, | ||
"suggest": { | ||
"lucadegasperi/oauth2-server-laravel": "Protect your API with OAuth 2.0.", | ||
"tymon/jwt-auth": "Protect your API with JSON Web Tokens." | ||
}, | ||
"autoload": { | ||
|
@@ -62,8 +60,7 @@ | |
"Dingo\\Api\\Provider\\LaravelServiceProvider" | ||
], | ||
"aliases": { | ||
"API": "Dingo\\Api\\Facade\\API", | ||
"Route": "Dingo\\Api\\Facade\\Route" | ||
"API": "Dingo\\Api\\Facade\\API" | ||
} | ||
} | ||
}, | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.