Skip to content

Commit 5679d1d

Browse files
committed
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.
1 parent 540e9a4 commit 5679d1d

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'),
43+
44+
/**
45+
* The Website of your application.
46+
*/
47+
'website' => env('NATIVEPHP_APP_WEBSITE'),
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)