File tree Expand file tree Collapse file tree 2 files changed +3
-0
lines changed Expand file tree Collapse file tree 2 files changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -8,6 +8,7 @@ const isBuilding = process.env.NATIVEPHP_BUILDING;
8
8
const appAuthor = process . env . NATIVEPHP_APP_AUTHOR ;
9
9
const fileName = process . env . NATIVEPHP_APP_FILENAME ;
10
10
const appVersion = process . env . NATIVEPHP_APP_VERSION ;
11
+ const appCopyright = process . env . NATIVEPHP_APP_COPYRIGHT ;
11
12
const deepLinkProtocol = process . env . NATIVEPHP_DEEPLINK_SCHEME ;
12
13
13
14
// Since we do not copy the php executable here, we only need these for building
@@ -46,6 +47,7 @@ if (isBuilding) {
46
47
export default {
47
48
appId : appId ,
48
49
productName : appName ,
50
+ copyright : appCopyright ,
49
51
directories : {
50
52
buildResources : 'build' ,
51
53
output : isBuilding ? join ( process . env . APP_PATH , 'dist' ) : undefined ,
Original file line number Diff line number Diff line change @@ -141,6 +141,7 @@ protected function getEnvironmentVariables(): array
141
141
'NATIVEPHP_APP_NAME ' => config ('app.name ' ),
142
142
'NATIVEPHP_APP_ID ' => config ('nativephp.app_id ' ),
143
143
'NATIVEPHP_APP_VERSION ' => config ('nativephp.version ' ),
144
+ 'NATIVEPHP_APP_COPYRIGHT ' => config ('nativephp.copyright ' ),
144
145
'NATIVEPHP_APP_FILENAME ' => Str::slug (config ('app.name ' )),
145
146
'NATIVEPHP_APP_AUTHOR ' => config ('nativephp.author ' ),
146
147
'NATIVEPHP_UPDATER_CONFIG ' => json_encode (Updater::builderOptions ()),
You can’t perform that action at this time.
0 commit comments