-
Notifications
You must be signed in to change notification settings - Fork 60
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add laravel 9 support * Add laravel 9 support * make response compatible with symfony * symfony throws now an SessionNotFoundException - keep the behavior * Removed PHP 7.x and added 8.1 * pin php 8.1.0 * Adds laravel 9 stubs for tests * Fixed tests * league/fractal is lacking php 8.1 support * style CI * Style CI and added L9 to travis * request->getSession() throws and exception with new symfony ; keep old behavior * During my api tests I have discovered some scenarios where response()->noContent() was breaking due to "null" values for getContent(). The proper fix seems to ensure we always have an empty "string" * Moved fractal to ^0.20 after the fork annuh/fractal was merged and tagge into master
- Loading branch information
1 parent
d37560f
commit 8ca5a1e
Showing
16 changed files
with
231 additions
and
36 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
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,28 +13,34 @@ | |
"email": "[email protected]" | ||
}], | ||
"require": { | ||
"php": "^7.2.5|^8.0", | ||
"dingo/blueprint": "^0.4", | ||
"illuminate/routing": "^7.0|^8.0", | ||
"illuminate/support": "^7.0|^8.0", | ||
"league/fractal": "^0.19" | ||
"php": "^7.2.5|^8.0|^8.1", | ||
"dingo/blueprint": "dev-patch-1", | ||
"illuminate/routing": "^7.0|^8.0|^9.0", | ||
"illuminate/support": "^7.0|^8.0|^9.0", | ||
"league/fractal": "^0.20" | ||
}, | ||
"require-dev": { | ||
"friendsofphp/php-cs-fixer": "~2", | ||
"illuminate/auth": "^7.0|^8.0", | ||
"illuminate/cache": "^7.0|^8.0", | ||
"illuminate/console": "^7.0|^8.0", | ||
"illuminate/database": "^7.0|^8.0", | ||
"illuminate/events": "^7.0|^8.0", | ||
"illuminate/filesystem": "^7.0|^8.0", | ||
"illuminate/log": "^7.0|^8.0", | ||
"illuminate/pagination": "^7.0|^8.0", | ||
"laravel/lumen-framework": "^7.0|^8.0", | ||
"friendsofphp/php-cs-fixer": "~2|~3", | ||
"illuminate/auth": "^7.0|^8.0|^9.0", | ||
"illuminate/cache": "^7.0|^8.0|^9.0", | ||
"illuminate/console": "^7.0|^8.0|^9.0", | ||
"illuminate/database": "^7.0|^8.0|^9.0", | ||
"illuminate/events": "^7.0|^8.0|^9.0", | ||
"illuminate/filesystem": "^7.0|^8.0|^9.0", | ||
"illuminate/log": "^7.0|^8.0|^9.0", | ||
"illuminate/pagination": "^7.0|^8.0|^9.0", | ||
"laravel/lumen-framework": "^7.0|^8.0|^9.0", | ||
"mockery/mockery": "~1.0", | ||
"phpunit/phpunit": "^8.5|^9.0", | ||
"squizlabs/php_codesniffer": "~2.0", | ||
"php-open-source-saver/jwt-auth": "^1.4" | ||
}, | ||
"repositories": [ | ||
{ | ||
"type": "vcs", | ||
"url": "https://github.com/dmason30/blueprint" | ||
} | ||
], | ||
"suggest": { | ||
"php-open-source-saver/jwt-auth": "Protect your API with JSON Web Tokens." | ||
}, | ||
|
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
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
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
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
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
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
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
Oops, something went wrong.