Skip to content

Commit

Permalink
author details managed from env
Browse files Browse the repository at this point in the history
  • Loading branch information
dcblogdev committed Mar 24, 2024
1 parent 7bf9e44 commit 8d16ddf
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions .env.example
Original file line number Diff line number Diff line change
Expand Up @@ -62,3 +62,7 @@ AWS_BUCKET=
AWS_USE_PATH_STYLE_ENDPOINT=false

VITE_APP_NAME="${APP_NAME}"

MODULES_VENDOR=dcblogdev
MODULES_NAME="David Carr"
MODULES_EMAIL="[email protected]"
6 changes: 3 additions & 3 deletions config/modules.php
Original file line number Diff line number Diff line change
Expand Up @@ -199,10 +199,10 @@
*/

'composer' => [
'vendor' => 'dcblogdev',
'vendor' => env('MODULES_VENDOR', 'nwidart'),
'author' => [
'name' => 'David Carr',
'email' => '[email protected]',
'name' => env('MODULES_NAME', 'Nicolas Widart'),
'email' => env('MODULES_EMAIL', '[email protected]'),
],
'composer-output' => false,
],
Expand Down

0 comments on commit 8d16ddf

Please sign in to comment.