Update to Laravel 5.3
[BREAKING] — REMOVES REMOTE API A new API will need to be implemented properly using the new Laravel Passport OAuth2 system. DingoAPI was becoming too unstable and development wasn’t really moving along enough to continue to rely on it.
This commit is contained in:
parent
b274b40e01
commit
afb5011fbe
37 changed files with 732 additions and 1596 deletions
|
@ -16,30 +16,26 @@
|
|||
}
|
||||
],
|
||||
"require": {
|
||||
"php": ">=5.5.9",
|
||||
"laravel/framework": "5.2.*",
|
||||
"barryvdh/laravel-debugbar": "^2.0",
|
||||
"dingo/api": "1.0.x-dev",
|
||||
"dingo/blueprint": "0.2.x-dev",
|
||||
"doctrine/dbal": "^2.5",
|
||||
"guzzlehttp/guzzle": "^6.1",
|
||||
"pragmarx/google2fa": "^0.7.1",
|
||||
"php": ">=5.6.4",
|
||||
"laravel/framework": "5.3.*",
|
||||
"barryvdh/laravel-debugbar": "^2.2.3",
|
||||
"doctrine/dbal": "^2.5.4",
|
||||
"guzzlehttp/guzzle": "^6.2.1",
|
||||
"pragmarx/google2fa": "^1.0.1",
|
||||
"webpatser/laravel-uuid": "^2.0",
|
||||
"prologue/alerts": "^0.4.0",
|
||||
"s1lentium/iptools": "^1.0",
|
||||
"s1lentium/iptools": "^1.1.0",
|
||||
"edvinaskrucas/settings": "^2.0",
|
||||
"igaster/laravel-theme": "^1.1",
|
||||
"igaster/laravel-theme": "^1.1.3",
|
||||
"nesbot/carbon": "^1.21",
|
||||
"mtdowling/cron-expression": "^1.1"
|
||||
},
|
||||
"require-dev": {
|
||||
"fzaninotto/faker": "~1.4",
|
||||
"mockery/mockery": "0.9.*",
|
||||
"phpunit/phpunit": "~4.0",
|
||||
"phpspec/phpspec": "~2.1",
|
||||
"symfony/css-selector": "~3.0",
|
||||
"symfony/dom-crawler": "~3.0",
|
||||
"laravel/homestead": "^3.0"
|
||||
"phpunit/phpunit": "~5.0",
|
||||
"symfony/css-selector": "3.1.*",
|
||||
"symfony/dom-crawler": "3.1.*"
|
||||
},
|
||||
"autoload": {
|
||||
"classmap": [
|
||||
|
@ -56,19 +52,17 @@
|
|||
},
|
||||
"scripts": {
|
||||
"post-root-package-install": [
|
||||
"php -r \"copy('.env.example', '.env');\""
|
||||
"php -r \"file_exists('.env') || copy('.env.example', '.env');\""
|
||||
],
|
||||
"post-create-project-cmd": [
|
||||
"php artisan key:generate"
|
||||
],
|
||||
"post-install-cmd": [
|
||||
"php artisan clear-compiled",
|
||||
"Illuminate\\Foundation\\ComposerScripts::postInstall",
|
||||
"php artisan optimize"
|
||||
],
|
||||
"pre-update-cmd": [
|
||||
"php artisan clear-compiled"
|
||||
],
|
||||
"post-update-cmd": [
|
||||
"Illuminate\\Foundation\\ComposerScripts::postUpdate",
|
||||
"php artisan optimize"
|
||||
],
|
||||
"setup-dev": [
|
||||
|
@ -84,7 +78,7 @@
|
|||
],
|
||||
"setup": [
|
||||
"composer install --ansi --no-dev",
|
||||
"php -r \"copy('.env.example', '.env');\"",
|
||||
"php -r \"file_exists('.env') || copy('.env.example', '.env');\"",
|
||||
"php artisan key:generate",
|
||||
"php artisan pterodactyl:env",
|
||||
"php artisan migrate",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue