Skip to content

Commit 78b6d25

Browse files
committed
Update to latest upstream
1 parent 86ca973 commit 78b6d25

File tree

93 files changed

+8559
-2
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

93 files changed

+8559
-2
lines changed

Diff for: .editorconfig

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
root = true
2+
3+
[*]
4+
charset = utf-8
5+
end_of_line = lf
6+
insert_final_newline = true
7+
indent_style = space
8+
indent_size = 4
9+
trim_trailing_whitespace = true
10+
11+
[*.md]
12+
trim_trailing_whitespace = false
13+
14+
[*.yml]
15+
indent_size = 2

Diff for: .env.example

+44
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
APP_NAME=Laravel
2+
APP_ENV=local
3+
APP_KEY=
4+
APP_DEBUG=true
5+
APP_URL=http://localhost
6+
7+
LOG_CHANNEL=stack
8+
9+
DB_CONNECTION=mysql
10+
DB_HOST=127.0.0.1
11+
DB_PORT=3306
12+
DB_DATABASE=laravel
13+
DB_USERNAME=root
14+
DB_PASSWORD=
15+
16+
BROADCAST_DRIVER=log
17+
CACHE_DRIVER=file
18+
QUEUE_CONNECTION=sync
19+
SESSION_DRIVER=file
20+
SESSION_LIFETIME=120
21+
22+
REDIS_HOST=127.0.0.1
23+
REDIS_PASSWORD=null
24+
REDIS_PORT=6379
25+
26+
MAIL_DRIVER=smtp
27+
MAIL_HOST=smtp.mailtrap.io
28+
MAIL_PORT=2525
29+
MAIL_USERNAME=null
30+
MAIL_PASSWORD=null
31+
MAIL_ENCRYPTION=null
32+
33+
AWS_ACCESS_KEY_ID=
34+
AWS_SECRET_ACCESS_KEY=
35+
AWS_DEFAULT_REGION=us-east-1
36+
AWS_BUCKET=
37+
38+
PUSHER_APP_ID=
39+
PUSHER_APP_KEY=
40+
PUSHER_APP_SECRET=
41+
PUSHER_APP_CLUSTER=mt1
42+
43+
MIX_PUSHER_APP_KEY="${PUSHER_APP_KEY}"
44+
MIX_PUSHER_APP_CLUSTER="${PUSHER_APP_CLUSTER}"

Diff for: .gitattributes

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
* text=auto
2+
*.css linguist-vendored
3+
*.scss linguist-vendored
4+
*.js linguist-vendored
5+
CHANGELOG.md export-ignore

Diff for: .gitignore

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
/node_modules
2+
/public/hot
3+
/public/storage
4+
/storage/*.key
5+
/vendor
6+
.env
7+
.env.backup
8+
.phpunit.result.cache
9+
Homestead.json
10+
Homestead.yaml
11+
npm-debug.log
12+
yarn-error.log

Diff for: .platform.app.yaml

+66
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,66 @@
1+
# This file describes an application. You can have multiple applications
2+
# in the same project.
3+
4+
# The name of this app. Must be unique within a project.
5+
name: app
6+
7+
# The type of the application to build.
8+
type: php:7.3
9+
build:
10+
flavor: composer
11+
12+
runtime:
13+
extensions:
14+
- redis
15+
16+
# The hooks that will be performed when the package is deployed.
17+
hooks:
18+
deploy: |
19+
set -e
20+
php artisan migrate --force
21+
22+
# The relationships of the application with services or other applications.
23+
# The left-hand side is the name of the relationship as it will be exposed
24+
# to the application in the PLATFORM_RELATIONSHIPS variable. The right-hand
25+
# side is in the form `<service name>:<endpoint name>`.
26+
relationships:
27+
database: "db:mysql"
28+
rediscache: "cache:redis"
29+
redissession: "cache:redis"
30+
31+
# The size of the persistent disk of the application (in MB).
32+
disk: 2048
33+
34+
# The mounts that will be performed when the package is deployed.
35+
mounts:
36+
"storage/app/public":
37+
source: local
38+
source_path: "public"
39+
"storage/framework/views":
40+
source: local
41+
source_path: "views"
42+
"storage/framework/sessions":
43+
source: local
44+
source_path: "sessions"
45+
"storage/framework/cache":
46+
source: local
47+
source_path: "cache"
48+
"storage/logs":
49+
source: local
50+
source_path: "logs"
51+
"bootstrap/cache":
52+
source: local
53+
source_path: "cache"
54+
"/.config":
55+
source: local
56+
source_path: "config"
57+
58+
# The configuration of app when it is exposed to the web.
59+
web:
60+
locations:
61+
"/":
62+
root: "public"
63+
index:
64+
- index.php
65+
allow: true
66+
passthru: "/index.php"

Diff for: .platform/routes.yaml

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# The routes of the project.
2+
#
3+
# Each route describes how an incoming URL is going
4+
# to be processed by Platform.sh.
5+
6+
"https://www.{default}/":
7+
type: upstream
8+
upstream: "app:http"
9+
"https://{default}/":
10+
type: redirect
11+
to: "https://www.{default}/"

Diff for: .platform/services.yaml

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
db:
2+
type: mariadb:10.2
3+
disk: 2048
4+
5+
cache:
6+
type: redis:5.0

Diff for: .styleci.yml

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
php:
2+
preset: laravel
3+
disabled:
4+
- unused_use
5+
finder:
6+
not-name:
7+
- index.php
8+
- server.php
9+
js:
10+
finder:
11+
not-name:
12+
- webpack.mix.js
13+
css: true

0 commit comments

Comments
 (0)