Skip to content
This repository has been archived by the owner on Nov 22, 2019. It is now read-only.

Update to Laravel 5.5 #26

Open
wants to merge 14 commits into
base: 5.4
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 5 additions & 4 deletions .env.example
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,17 @@ APP_ENV=local
APP_DEBUG=true
APP_KEY=SomeRandomString

DB_HOST=127.0.0.1
DB_DATABASE=homestead
DB_USERNAME=homestead
DB_CONNECTION=mysql
DB_HOST=db
DB_DATABASE=mwl
DB_USERNAME=mwl
DB_PASSWORD=secret

CACHE_DRIVER=file
SESSION_DRIVER=file
QUEUE_DRIVER=sync

REDIS_HOST=127.0.0.1
REDIS_HOST=redis
REDIS_PASSWORD=null
REDIS_PORT=6379

Expand Down
36 changes: 0 additions & 36 deletions Homestead.yaml

This file was deleted.

14 changes: 12 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,16 @@ $ git remote add upstream [email protected]:laravel/laravel.git
$ git pull upstream master
```

## Setting up the vagrant
## Setting up Docker

Edit the config file at `Homestead.yaml`, after that just do 'vagrant up'to get started.
### Installation
Make sure you have installed Docker (>=1.13) and Docker Compose (>=1.9)
- Run `brew cask install docker`

### Instantiation
- Run `./dev up -d.` This will pull the images and run the containers (db and app) as detached (not holding your terminal). After this, you can check the containers running using docker ps or `./dev ps`. The difference here between `./dev ps` and `docker ps` is that `docker ps` will show ALL containers running, while `./dev ps` forwards the call to `docker-compose ps` which only shows containers running for this application (services defined in the docker-compose.yml)
- That's it!

If you are running into permission issues when executing `./dev` commands, try: `chmod +x ./dev`
If you can't run `./dev` script directly, try `sh ./dev` instead
If you have port conflicts, "export" that port to an unused one i.e.: `export APP_PORT=9000` or `export DB_PORT=31`
16 changes: 0 additions & 16 deletions Vagrantfile

This file was deleted.

2 changes: 1 addition & 1 deletion circle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ machine:
node:
version: stable
php:
version: 5.6.14
version: 7.0.22
environment:
APP_ENV: testing

Expand Down
6 changes: 3 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@
"license": "proprietary",
"type": "project",
"require": {
"php": ">=5.6.4",
"php": ">=7.0",
"arrounded/core": "^2.0",
"bugsnag/bugsnag-laravel": "^1.6",
"laravel/framework": "5.4.*",
"laravel/framework": "5.5.*@dev",
"laravel/tinker": "~1.0",
"lord/laroute": "2.4.*",
"rcrowe/twigbridge": "^0.9.2"
"rcrowe/twigbridge": "0.10.x@dev"
},
"require-dev": {
"barryvdh/laravel-debugbar": "^2.2",
Expand Down
Loading