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 <[email protected]> * Added Defaults - config/nativephp.php Co-authored-by: Peter Bishop <[email protected]> --------- Co-authored-by: Peter Bishop <[email protected]>
1 parent 540e9a4 commit ff9adc8

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

config/nativephp.php

+10
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)