Skip to content

Commit 763a47d

Browse files
authored
Merge pull request #1 from uspdev/update
atualização das bibliotecas
2 parents 6781f92 + e25f84c commit 763a47d

8 files changed

Lines changed: 573 additions & 752 deletions

File tree

.env.example

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ SENHAUNICA_CALLBACK_ID=85
9090
#SENHAUNICA_DROP_PERMISSIONS=true
9191

9292
# Habilite para salvar o retorno em storage/app/debug/oauth/ (default: false)
93-
#SENHAUNICA_DEBUG=true
93+
SENHAUNICA_DEBUG=true
9494

9595
# REPLICADO #########################################
9696
# https://github.com/uspdev/replicado
@@ -107,8 +107,6 @@ REPLICADO_CODUNDCLG=
107107
# Converte de/para UTF-8
108108
REPLICADO_SYBASE=1
109109

110-
REPLICADO_CODCUR=1,2,3
111-
112110
# habilita o uso do cache https://github.com/uspdev/cache (default=false)
113111
REPLICADO_USAR_CACHE=false
114112

@@ -123,6 +121,9 @@ REPLICADO_DEBUG=${APP_DEBUG}
123121
# default = false
124122
#LARAVEL_TOOLS_FORCAR_HTTPS = true
125123

124+
# Ativa mensagens de debug (default = app.debug)
125+
#LARAVEL_TOOLS_DEBUG=
126+
126127
# WSFOTO #########################################
127128
# https://github.com/uspdev/wsfoto
128129

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
/public/hot
33
/public/storage
44
/storage/*.key
5+
/storage/database.sqlite
56
/vendor
67
.env
78
.env.backup

app/helpers.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
<?php
2+
3+
//coloque o seu helper aqui

composer.json

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,10 @@
3030
"App\\": "app/",
3131
"Database\\Factories\\": "database/factories/",
3232
"Database\\Seeders\\": "database/seeders/"
33-
}
33+
},
34+
"files": [
35+
"app/helpers.php"
36+
]
3437
},
3538
"autoload-dev": {
3639
"psr-4": {
@@ -45,7 +48,7 @@
4548
],
4649
"post-update-cmd": [
4750
"@php artisan vendor:publish --tag=laravel-assets --ansi --force",
48-
"[ $COMPOSER_DEV_MODE -eq 0 ] || php artisan vendor:publish --tag=laravel-pt-br-localization"
51+
"[ $COMPOSER_DEV_MODE -eq 0 ] || php artisan vendor:publish --tag=laravel-pt-br-localization --force"
4952
],
5053
"post-root-package-install": [
5154
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\""

0 commit comments

Comments
 (0)