Browse Source

ref: Add PHP to profiling wizard (#46190)

Michi Hoffmann 2 years ago
parent
commit
f7135fdfca

+ 1 - 0
static/app/components/profiling/ProfilingOnboarding/util.ts

@@ -30,6 +30,7 @@ export const supportedPlatformExpectedDocKeys: Record<
   ],
   node: ['0-alert', '1-install', '2-configure-performance', '3-configure-profiling'],
   python: ['0-alert', '1-install', '2-configure-performance', '3-configure-profiling'],
+  php: ['0-alert', '1-install', '2-configure-performance', '3-configure-profiling'],
   rust: ['0-alert', '1-install', '2-configure-performance', '3-configure-profiling'],
 };
 

+ 1 - 0
static/app/utils/profiling/platforms.tsx

@@ -7,6 +7,7 @@ export const supportedProfilingPlatformSDKs = [
   'apple-ios',
   'node',
   'python',
+  'php',
   'rust',
 ] as const;
 export type SupportedProfilingPlatform = (typeof supportedProfilingPlatforms)[number];