We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 90981e3 commit 76a07c3Copy full SHA for 76a07c3
1 file changed
src/SPC/builder/extension/trader.php
@@ -0,0 +1,19 @@
1
+<?php
2
+
3
+declare(strict_types=1);
4
5
+namespace SPC\builder\extension;
6
7
+use SPC\builder\Extension;
8
+use SPC\store\FileSystem;
9
+use SPC\util\CustomExt;
10
11
+#[CustomExt('trader')]
12
+class trader extends Extension
13
+{
14
+ public function patchBeforeBuildconf(): bool
15
+ {
16
+ FileSystem::replaceFileStr(SOURCE_PATH . '/php-src/ext/trader/config.m4', 'PHP_TA', 'PHP_TRADER');
17
+ return true;
18
+ }
19
+}
0 commit comments