Skip to content

Commit ff9adc8

Browse files
Add 'description' and 'website' fields to nativephp config (#571)
* Add 'description' and 'website' fields to nativephp config These new fields allow developers to define a description and website for their application via environment variables. This enhances configurability and provides more application metadata. * Added Defaults - config/nativephp.php Co-authored-by: Peter Bishop <9081809+PeteBishwhip@users.noreply.github.com> * Added Defaults - config/nativephp.php Co-authored-by: Peter Bishop <9081809+PeteBishwhip@users.noreply.github.com> --------- Co-authored-by: Peter Bishop <9081809+PeteBishwhip@users.noreply.github.com>
1 parent 540e9a4 commit ff9adc8

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

config/nativephp.php

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,16 @@
3636
*/
3737
'copyright' => env('NATIVEPHP_APP_COPYRIGHT'),
3838

39+
/**
40+
* The description of your application.
41+
*/
42+
'description' => env('NATIVEPHP_APP_DESCRIPTION', 'An awesome app built with NativePHP'),
43+
44+
/**
45+
* The Website of your application.
46+
*/
47+
'website' => env('NATIVEPHP_APP_WEBSITE', 'https://nativephp.com'),
48+
3949
/**
4050
* The default service provider for your application. This provider
4151
* takes care of bootstrapping your application and configuring

0 commit comments

Comments
 (0)