Skip to content
This repository was archived by the owner on Dec 11, 2020. It is now read-only.

Commit 8960c22

Browse files
authored
Merge pull request #23 from lucid-architecture/5.5
upgrade to Laravel v5.5
2 parents fe57493 + 8a3d4ba commit 8960c22

File tree

2 files changed

+25
-10
lines changed

2 files changed

+25
-10
lines changed

composer.json

Lines changed: 11 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,18 +5,18 @@
55
"license": "MIT",
66
"type": "project",
77
"require": {
8-
"php": ">=5.6.4",
9-
"laravel/framework": "5.4.*",
10-
"lucid-arch/laravel-foundation": "5.4.*",
8+
"php": ">=7.0.0",
9+
"laravel/framework": "5.5.*",
10+
"lucid-arch/laravel-foundation": "5.5.*",
1111
"laravel/tinker": "~1.0"
1212
},
1313
"require-dev": {
1414
"fzaninotto/faker": "~1.4",
1515
"mockery/mockery": "0.9.*",
16-
"phpunit/phpunit": "~5.0",
16+
"phpunit/phpunit": "~6.0",
1717
"symfony/css-selector": "3.1.*",
1818
"symfony/dom-crawler": "3.1.*",
19-
"lucid-arch/laravel-console": "dev-master"
19+
"lucid-arch/laravel-console": "5.5.*"
2020
},
2121
"autoload": {
2222
"classmap": [
@@ -42,11 +42,16 @@
4242
"post-update-cmd": [
4343
"Illuminate\\Foundation\\ComposerScripts::postUpdate",
4444
"php artisan optimize"
45+
],
46+
"post-autoload-dump": [
47+
"Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",
48+
"@php artisan package:discover"
4549
]
4650
},
4751
"config": {
4852
"preferred-install": "dist",
49-
"sort-packages": true
53+
"sort-packages": true,
54+
"optimize-autoloader": true
5055
},
5156
"minimum-stability": "dev",
5257
"prefer-stable": true

readme.md

Lines changed: 14 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,22 +28,32 @@ If you prefer a video, watch the announcement of The Lucid Architecture at Larac
2828
- [Microservices](#microservices)
2929

3030
## Installation
31-
### 5.3
31+
### 5.5
3232
To start your project with Lucid right away, run the following command:
3333

3434
```
3535
composer create-project lucid-arch/laravel my-project
3636
```
3737

38-
This will give you a Laravel 5.3 installation with Lucid out-of-the-box. If you wish to download other versions of Laravel you may specify it as well:
38+
This will give you a Laravel 5.5 installation with Lucid out-of-the-box. If you wish to download other versions of Laravel you may specify it as well:
39+
40+
##### 5.4
41+
```
42+
composer create-project lucid-arch/laravel=5.4.x my-project-5.4
43+
```
44+
45+
> Literally 5.4.x and not 5.4.0 or 5.4.1...
46+
47+
##### 5.3
48+
```
49+
composer create-project lucid-arch/laravel=5.3.x my-project-5.3
50+
```
3951

4052
##### 5.2
4153
```
4254
composer create-project lucid-arch/laravel=5.2.x my-project-5.2
4355
```
4456

45-
> Literally 5.2.x and not 5.2.0 or 5.2.1...
46-
4757
##### 5.1
4858
```
4959
composer create-project lucid-arch/laravel=5.1.x my-project-5.1

0 commit comments

Comments
 (0)