Skip to content

Commit 69081fe

Browse files
committed
Merge branch 'main' into dev
2 parents 0a979dc + 24d4002 commit 69081fe

File tree

131 files changed

+50049
-30812
lines changed

Some content is hidden

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

131 files changed

+50049
-30812
lines changed

.circleci/config.yml

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
11
version: 2.1
22
orbs:
3-
browser-tools: circleci/browser-tools@1.3.0
3+
browser-tools: circleci/browser-tools@1.2
4+
45
jobs: # a collection of steps
56
build: # runs not using Workflows must have a `build` job as entry point
67
docker: # run the steps with Docker
78
#- image: cimg/php:8.0.14-browsers # ...with this image as the primary container; this is where all `steps` will run
8-
- image: cimg/php:8.0.19-browsers # ...with this image as the primary container; this is where all `steps` will run
9+
- image: cimg/php:8.1.7-browsers # ...with this image as the primary container; this is where all `steps` will run
910
auth:
1011
username: mydockerhub-user
1112
password: $DOCKERHUB_PASSWORD # context / project UI env-var reference
@@ -34,8 +35,8 @@ jobs: # a collection of steps
3435
key: node-v1-{{ checksum "package-lock.json" }}
3536
paths:
3637
- node_modules
37-
- run: touch database/database.sqlite
38-
- run: php artisan migrate --env=testing
38+
- run: touch database/testing.sqlite
39+
- run: php artisan migrate --env=testing --database=sqlite_testing --force
3940
- run: php artisan dusk:chrome-driver 70
4041
- run: wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb
4142
- run: sudo dpkg -i google-chrome-stable_current_amd64.deb
@@ -45,7 +46,8 @@ jobs: # a collection of steps
4546
name: Serve Application
4647
background: true
4748
command: php artisan serve
48-
- run: php artisan dusk
49+
- run: php artisan dusk
50+
- run: php artisan test
4951
- store_artifacts:
5052
path: ./tests/Browser/console
5153
destination: console

.editorconfig

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,3 +13,6 @@ trim_trailing_whitespace = false
1313

1414
[*.{yml,yaml}]
1515
indent_size = 2
16+
17+
[docker-compose.yml]
18+
indent_size = 4

.env.example

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,10 @@ APP_NAME=Laravel
22
APP_ENV=local
33
APP_KEY=
44
APP_DEBUG=true
5-
APP_URL=http://localhost
5+
APP_URL=http://127.0.0.1:8000
66

77
LOG_CHANNEL=stack
8+
LOG_DEPRECATIONS_CHANNEL=null
89
LOG_LEVEL=debug
910

1011
DB_CONNECTION=mysql
@@ -16,6 +17,7 @@ DB_PASSWORD=
1617

1718
BROADCAST_DRIVER=log
1819
CACHE_DRIVER=file
20+
FILESYSTEM_DISK=local
1921
QUEUE_CONNECTION=sync
2022
SESSION_DRIVER=file
2123
SESSION_LIFETIME=120
@@ -32,13 +34,14 @@ MAIL_PORT=1025
3234
MAIL_USERNAME=null
3335
MAIL_PASSWORD=null
3436
MAIL_ENCRYPTION=null
35-
MAIL_FROM_ADDRESS=null
37+
MAIL_FROM_ADDRESS="hello@example.com"
3638
MAIL_FROM_NAME="${APP_NAME}"
3739

3840
AWS_ACCESS_KEY_ID=
3941
AWS_SECRET_ACCESS_KEY=
4042
AWS_DEFAULT_REGION=us-east-1
4143
AWS_BUCKET=
44+
AWS_USE_PATH_STYLE_ENDPOINT=false
4245

4346
PUSHER_APP_ID=
4447
PUSHER_APP_KEY=
@@ -48,8 +51,8 @@ PUSHER_APP_CLUSTER=mt1
4851
MIX_PUSHER_APP_KEY="${PUSHER_APP_KEY}"
4952
MIX_PUSHER_APP_CLUSTER="${PUSHER_APP_CLUSTER}"
5053

51-
STRIPE_KEY=
52-
STRIPE_SECRET=
54+
STRIPE_KEY="changeme"
55+
STRIPE_SECRET="changeme"
5356

5457
MIX_STRIPE_KEY="${STRIPE_KEY}"
5558

.env.testing

Lines changed: 0 additions & 56 deletions
This file was deleted.

.eslintrc.json

Lines changed: 0 additions & 20 deletions
This file was deleted.

.gitattributes

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
* text=auto
2-
*.css linguist-vendored
3-
*.scss linguist-vendored
4-
*.js linguist-vendored
2+
3+
*.blade.php diff=html
4+
*.css diff=css
5+
*.html diff=html
6+
*.md diff=markdown
7+
*.php diff=php
8+
9+
/.github export-ignore
510
CHANGELOG.md export-ignore

.github/dependabot.yml

Lines changed: 0 additions & 8 deletions
This file was deleted.

.gitignore

Lines changed: 11 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,14 @@
1-
/vendor/
2-
node_modules/
1+
/node_modules
2+
/public/hot
3+
/public/storage
4+
/storage/*.key
5+
/vendor
6+
.phpunit.result.cache
7+
Homestead.json
8+
Homestead.yaml
39
npm-debug.log
410
yarn-error.log
5-
6-
# Laravel 4 specific
7-
bootstrap/compiled.php
8-
app/storage/
9-
10-
# Laravel 5 & Lumen specific
11-
public/storage
12-
public/hot
13-
14-
# Laravel 5 & Lumen specific with changed public path
15-
public_html/storage
16-
public_html/hot
17-
18-
storage/*.key
11+
/.idea
12+
/.vscode
1913
.env
20-
Homestead.yaml
21-
Homestead.json
22-
/.vagrant
23-
.phpunit.result.cache
24-
25-
# Laravel IDE helper
26-
_ide_helper.php
14+
.env.testing

.styleci.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ php:
55
finder:
66
not-name:
77
- index.php
8-
- server.php
98
js:
109
finder:
1110
not-name:

LICENSE

Lines changed: 0 additions & 21 deletions
This file was deleted.

0 commit comments

Comments
 (0)