Skip to content

Commit 9f4b4d7

Browse files
Update to laravel 5.5
Signed-off-by: Christoph Wurst <[email protected]>
1 parent 6408c7c commit 9f4b4d7

File tree

3 files changed

+846
-308
lines changed

3 files changed

+846
-308
lines changed

Diff for: bootstrap/autoload.php

-17
Original file line numberDiff line numberDiff line change
@@ -15,20 +15,3 @@
1515
*/
1616

1717
require __DIR__ . '/../vendor/autoload.php';
18-
19-
/*
20-
|--------------------------------------------------------------------------
21-
| Include The Compiled Class File
22-
|--------------------------------------------------------------------------
23-
|
24-
| To dramatically increase your application's performance, you may use a
25-
| compiled class file which contains all of the classes commonly used
26-
| by a request. The Artisan "optimize" is used to create this file.
27-
|
28-
*/
29-
30-
$compiledPath = __DIR__ . '/cache/compiled.php';
31-
32-
if (file_exists($compiledPath)) {
33-
require $compiledPath;
34-
}

Diff for: composer.json

+12-13
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,24 @@
11
{
2-
"name": "laravel/laravel",
3-
"description": "The Laravel Framework.",
4-
"keywords": [
5-
"framework",
6-
"laravel"
7-
],
2+
"name": "weinstein/server",
3+
"description": "Weinstein",
84
"type": "project",
95
"require": {
106
"php": ">=7.1.0",
117
"ext-zip": "1.*",
128
"ext-zlib": "*",
13-
"laravel/framework": "5.4.*",
149
"itbz/fpdf": "1.7.3",
15-
"laravelcollective/html": "^5.4",
1610
"fzaninotto/faker": "~1.4",
11+
"laravel/framework": "5.5.*",
12+
"laravelcollective/html": "5.5.*",
1713
"phpoffice/phpexcel": "^1.8",
1814
"predis/predis": "^1.1",
1915
"sentry/sentry-laravel": "^0.11.0"
2016
},
2117
"require-dev": {
18+
"filp/whoops": "~2.0",
2219
"mockery/mockery": "1.2.0",
2320
"phpspec/phpspec": "~5.0",
24-
"phpunit/phpunit": "~5.7",
21+
"phpunit/phpunit": "~6.0",
2522
"symfony/css-selector": "3.1.*",
2623
"symfony/dom-crawler": "3.4.*",
2724
"laravel/browser-kit-testing": "1.*"
@@ -44,19 +41,21 @@
4441
}
4542
},
4643
"scripts": {
44+
"post-autoload-dump": [
45+
"Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",
46+
"@php artisan package:discover"
47+
],
4748
"post-root-package-install": [
4849
"php -r \"file_exists('.env') || copy('.env.example', '.env');\""
4950
],
5051
"post-create-project-cmd": [
5152
"php artisan key:generate"
5253
],
5354
"post-install-cmd": [
54-
"Illuminate\\Foundation\\ComposerScripts::postInstall",
55-
"php artisan optimize"
55+
"Illuminate\\Foundation\\ComposerScripts::postInstall"
5656
],
5757
"post-update-cmd": [
58-
"Illuminate\\Foundation\\ComposerScripts::postUpdate",
59-
"php artisan optimize"
58+
"Illuminate\\Foundation\\ComposerScripts::postUpdate"
6059
]
6160
},
6261
"config": {

0 commit comments

Comments
 (0)