Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit 34d6c13

Browse files
author
DKravtsov
committed
updated environment to php 8 and laravel 8
1 parent 7e5b9e0 commit 34d6c13

File tree

89 files changed

+6292
-3515
lines changed

Some content is hidden

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

89 files changed

+6292
-3515
lines changed

‎.env.dev

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ APP_DEBUG=true
55
APP_URL=http://localhost
66

77
LOG_CHANNEL=stack
8+
LOG_LEVEL=debug
89

910
DB_CONNECTION=mysql
1011
DB_HOST=mysql
@@ -15,17 +16,20 @@ DB_PASSWORD=secret
1516

1617
BROADCAST_DRIVER=log
1718
CACHE_DRIVER=file
19+
FILESYSTEM_DRIVER=local
1820
QUEUE_CONNECTION=sync
1921
SESSION_DRIVER=file
2022
SESSION_LIFETIME=120
2123

24+
MEMCACHED_HOST=127.0.0.1
25+
2226
REDIS_HOST=127.0.0.1
2327
REDIS_PASSWORD=null
2428
REDIS_PORT=6379
2529

26-
MAIL_DRIVER=smtp
27-
MAIL_HOST=smtp.mailtrap.io
28-
MAIL_PORT=2525
30+
MAIL_MAILER=smtp
31+
MAIL_HOST=mailhog
32+
MAIL_PORT=1025
2933
MAIL_USERNAME=null
3034
MAIL_PASSWORD=null
3135
MAIL_ENCRYPTION=null
@@ -36,6 +40,7 @@ AWS_ACCESS_KEY_ID=
3640
AWS_SECRET_ACCESS_KEY=
3741
AWS_DEFAULT_REGION=us-east-1
3842
AWS_BUCKET=
43+
AWS_USE_PATH_STYLE_ENDPOINT=false
3944

4045
PUSHER_APP_ID=
4146
PUSHER_APP_KEY=

‎.env.prod

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,17 +15,20 @@ DB_PASSWORD=secret
1515

1616
BROADCAST_DRIVER=log
1717
CACHE_DRIVER=file
18+
FILESYSTEM_DRIVER=local
1819
QUEUE_CONNECTION=sync
1920
SESSION_DRIVER=file
2021
SESSION_LIFETIME=120
2122

23+
MEMCACHED_HOST=127.0.0.1
24+
2225
REDIS_HOST=127.0.0.1
2326
REDIS_PASSWORD=null
2427
REDIS_PORT=6379
2528

26-
MAIL_DRIVER=smtp
27-
MAIL_HOST=smtp.mailtrap.io
28-
MAIL_PORT=2525
29+
MAIL_MAILER=smtp
30+
MAIL_HOST=mailhog
31+
MAIL_PORT=1025
2932
MAIL_USERNAME=null
3033
MAIL_PASSWORD=null
3134
MAIL_ENCRYPTION=null
@@ -36,6 +39,7 @@ AWS_ACCESS_KEY_ID=
3639
AWS_SECRET_ACCESS_KEY=
3740
AWS_DEFAULT_REGION=us-east-1
3841
AWS_BUCKET=
42+
AWS_USE_PATH_STYLE_ENDPOINT=false
3943

4044
PUSHER_APP_ID=
4145
PUSHER_APP_KEY=

‎.env.staging

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,17 +15,20 @@ DB_PASSWORD=secret
1515

1616
BROADCAST_DRIVER=log
1717
CACHE_DRIVER=file
18+
FILESYSTEM_DRIVER=local
1819
QUEUE_CONNECTION=sync
1920
SESSION_DRIVER=file
2021
SESSION_LIFETIME=120
2122

23+
MEMCACHED_HOST=127.0.0.1
24+
2225
REDIS_HOST=127.0.0.1
2326
REDIS_PASSWORD=null
2427
REDIS_PORT=6379
2528

26-
MAIL_DRIVER=smtp
27-
MAIL_HOST=smtp.mailtrap.io
28-
MAIL_PORT=2525
29+
MAIL_MAILER=smtp
30+
MAIL_HOST=mailhog
31+
MAIL_PORT=1025
2932
MAIL_USERNAME=null
3033
MAIL_PASSWORD=null
3134
MAIL_ENCRYPTION=null
@@ -36,6 +39,7 @@ AWS_ACCESS_KEY_ID=
3639
AWS_SECRET_ACCESS_KEY=
3740
AWS_DEFAULT_REGION=us-east-1
3841
AWS_BUCKET=
42+
AWS_USE_PATH_STYLE_ENDPOINT=false
3943

4044
PUSHER_APP_ID=
4145
PUSHER_APP_KEY=

‎.env.test

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,17 +15,20 @@ DB_PASSWORD=secret
1515

1616
BROADCAST_DRIVER=log
1717
CACHE_DRIVER=file
18+
FILESYSTEM_DRIVER=local
1819
QUEUE_CONNECTION=sync
1920
SESSION_DRIVER=file
2021
SESSION_LIFETIME=120
2122

23+
MEMCACHED_HOST=127.0.0.1
24+
2225
REDIS_HOST=127.0.0.1
2326
REDIS_PASSWORD=null
2427
REDIS_PORT=6379
2528

26-
MAIL_DRIVER=smtp
27-
MAIL_HOST=smtp.mailtrap.io
28-
MAIL_PORT=2525
29+
MAIL_MAILER=smtp
30+
MAIL_HOST=mailhog
31+
MAIL_PORT=1025
2932
MAIL_USERNAME=null
3033
MAIL_PASSWORD=null
3134
MAIL_ENCRYPTION=null
@@ -36,6 +39,7 @@ AWS_ACCESS_KEY_ID=
3639
AWS_SECRET_ACCESS_KEY=
3740
AWS_DEFAULT_REGION=us-east-1
3841
AWS_BUCKET=
42+
AWS_USE_PATH_STYLE_ENDPOINT=false
3943

4044
PUSHER_APP_ID=
4145
PUSHER_APP_KEY=

‎.env.test-ci

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,17 +16,20 @@ DB_PASSWORD=secret
1616

1717
BROADCAST_DRIVER=log
1818
CACHE_DRIVER=file
19+
FILESYSTEM_DRIVER=local
1920
QUEUE_CONNECTION=sync
2021
SESSION_DRIVER=file
2122
SESSION_LIFETIME=120
2223

24+
MEMCACHED_HOST=127.0.0.1
25+
2326
REDIS_HOST=127.0.0.1
2427
REDIS_PASSWORD=null
2528
REDIS_PORT=6379
2629

27-
MAIL_DRIVER=smtp
28-
MAIL_HOST=smtp.mailtrap.io
29-
MAIL_PORT=2525
30+
MAIL_MAILER=smtp
31+
MAIL_HOST=mailhog
32+
MAIL_PORT=1025
3033
MAIL_USERNAME=null
3134
MAIL_PASSWORD=null
3235
MAIL_ENCRYPTION=null
@@ -37,6 +40,7 @@ AWS_ACCESS_KEY_ID=
3740
AWS_SECRET_ACCESS_KEY=
3841
AWS_DEFAULT_REGION=us-east-1
3942
AWS_BUCKET=
43+
AWS_USE_PATH_STYLE_ENDPOINT=false
4044

4145
PUSHER_APP_ID=
4246
PUSHER_APP_KEY=

‎.gitattributes

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,5 @@
33
*.scss linguist-vendored
44
*.js linguist-vendored
55
CHANGELOG.md export-ignore
6-
docs/postman/symfony.postman_collection.json binary
76
tools/**/composer.lock binary
87
composer.lock binary

‎.php-cs-fixer.dist.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
<?php
22

3+
declare(strict_types=1);
4+
35
// https://mlocati.github.io/php-cs-fixer-configurator/
46
$finder = PhpCsFixer\Finder::create()->in(__DIR__)->exclude('somedir');
57

‎.styleci.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
php:
22
preset: laravel
3+
version: 8
34
disabled:
4-
- unused_use
5+
- no_unused_imports
56
finder:
67
not-name:
78
- index.php

‎Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM php:7.4-fpm
1+
FROM php:8.0-fpm
22

33
# set main params
44
ARG BUILD_ARGUMENT_DEBUG_ENABLED=false

‎Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -197,5 +197,5 @@ phpstan:
197197
###> Phpinsights PHP quality checks ###
198198
phpinsights:
199199
@echo "033円[32mRunning PHP Insights033円[39m"
200-
@make exec cmd="php -d error_reporting=0 ./vendor/bin/phpinsights analyse --no-interaction --min-quality=100 --min-complexity=85 --min-architecture=100 --min-style=100"
200+
@make exec cmd="php -d error_reporting=0 ./vendor/bin/phpinsights analyse --no-interaction --min-quality=100 --min-complexity=80 --min-architecture=100 --min-style=100"
201201
###< Phpinsights PHP quality checks ###

0 commit comments

Comments
(0)

AltStyle によって変換されたページ (->オリジナル) /