Skip to content

Commit 3263fb9

Browse files
authored
fix: functions command (GoogleCloudPlatform#1591)
1 parent 85c7158 commit 3263fb9

File tree

26 files changed

+27
-27
lines changed

26 files changed

+27
-27
lines changed

functions/concepts_build_extension/composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"start": [
88
"@gcp-build",
99
"Composer\\Config::disableProcessTimeout",
10-
"FUNCTION_TARGET=helloBuildExtension php -d 'extension=./my_custom_extension.so' -S localhost:${PORT:-8080} vendor/bin/router.php"
10+
"FUNCTION_TARGET=helloBuildExtension php -d 'extension=./my_custom_extension.so' -S localhost:${PORT:-8080} vendor/google/cloud-functions-framework/router.php"
1111
]
1212
}
1313
}

functions/concepts_filesystem/composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"scripts": {
66
"start": [
77
"Composer\\Config::disableProcessTimeout",
8-
"FUNCTION_TARGET=listFiles php -S localhost:${PORT:-8080} vendor/bin/router.php"
8+
"FUNCTION_TARGET=listFiles php -S localhost:${PORT:-8080} vendor/google/cloud-functions-framework/router.php"
99
]
1010
}
1111
}

functions/concepts_requests/composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"scripts": {
77
"start": [
88
"Composer\\Config::disableProcessTimeout",
9-
"FUNCTION_TARGET=makeRequest php -S localhost:${PORT:-8080} vendor/bin/router.php"
9+
"FUNCTION_TARGET=makeRequest php -S localhost:${PORT:-8080} vendor/google/cloud-functions-framework/router.php"
1010
]
1111
}
1212
}

functions/env_vars/composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"scripts": {
66
"start": [
77
"Composer\\Config::disableProcessTimeout",
8-
"FUNCTION_TARGET=envVar php -S localhost:${PORT:-8080} vendor/bin/router.php"
8+
"FUNCTION_TARGET=envVar php -S localhost:${PORT:-8080} vendor/google/cloud-functions-framework/router.php"
99
]
1010
}
1111
}

functions/firebase_analytics/composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"scripts": {
66
"start": [
77
"Composer\\Config::disableProcessTimeout",
8-
"FUNCTION_SIGNATURE_TYPE=cloudevent FUNCTION_TARGET=firebaseAnalytics php -S localhost:${PORT:-8080} vendor/bin/router.php"
8+
"FUNCTION_SIGNATURE_TYPE=cloudevent FUNCTION_TARGET=firebaseAnalytics php -S localhost:${PORT:-8080} vendor/google/cloud-functions-framework/router.php"
99
]
1010
}
1111
}

functions/firebase_auth/composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"scripts": {
66
"start": [
77
"Composer\\Config::disableProcessTimeout",
8-
"FUNCTION_SIGNATURE_TYPE=cloudevent FUNCTION_TARGET=firebaseAuth php -S localhost:${PORT:-8080} vendor/bin/router.php"
8+
"FUNCTION_SIGNATURE_TYPE=cloudevent FUNCTION_TARGET=firebaseAuth php -S localhost:${PORT:-8080} vendor/google/cloud-functions-framework/router.php"
99
]
1010
},
1111
"require-dev": {

functions/firebase_firestore/composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"scripts": {
77
"start": [
88
"Composer\\Config::disableProcessTimeout",
9-
"FUNCTION_SIGNATURE_TYPE=cloudevent FUNCTION_TARGET=firebaseFirestore php -S localhost:${PORT:-8080} vendor/bin/router.php"
9+
"FUNCTION_SIGNATURE_TYPE=cloudevent FUNCTION_TARGET=firebaseFirestore php -S localhost:${PORT:-8080} vendor/google/cloud-functions-framework/router.php"
1010
]
1111
},
1212
"require-dev": {

functions/firebase_firestore_reactive/composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"scripts": {
88
"start": [
99
"Composer\\Config::disableProcessTimeout",
10-
"FUNCTION_SIGNATURE_TYPE=cloudevent FUNCTION_TARGET=firebaseReactive php -S localhost:${PORT:-8080} vendor/bin/router.php"
10+
"FUNCTION_SIGNATURE_TYPE=cloudevent FUNCTION_TARGET=firebaseReactive php -S localhost:${PORT:-8080} vendor/google/cloud-functions-framework/router.php"
1111
]
1212
},
1313
"require-dev": {

functions/firebase_remote_config/composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"scripts": {
66
"start": [
77
"Composer\\Config::disableProcessTimeout",
8-
"FUNCTION_SIGNATURE_TYPE=cloudevent FUNCTION_TARGET=firebaseRemoteConfig php -S localhost:${PORT:-8080} vendor/bin/router.php"
8+
"FUNCTION_SIGNATURE_TYPE=cloudevent FUNCTION_TARGET=firebaseRemoteConfig php -S localhost:${PORT:-8080} vendor/google/cloud-functions-framework/router.php"
99
]
1010
},
1111
"require-dev": {

functions/firebase_rtdb/composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"scripts": {
77
"start": [
88
"Composer\\Config::disableProcessTimeout",
9-
"FUNCTION_SIGNATURE_TYPE=cloudevent FUNCTION_TARGET=firebaseRTDB php -S localhost:${PORT:-8080} vendor/bin/router.php"
9+
"FUNCTION_SIGNATURE_TYPE=cloudevent FUNCTION_TARGET=firebaseRTDB php -S localhost:${PORT:-8080} vendor/google/cloud-functions-framework/router.php"
1010
]
1111
},
1212
"require-dev": {

0 commit comments

Comments
 (0)