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 5d398e4 commit 6ca5048Copy full SHA for 6ca5048
composer.json
@@ -17,6 +17,9 @@
17
"hari/pw-module": "^1.0.0"
18
},
19
"autoload": {
20
+ "psr-0": {
21
+ "PW\\Composer\\": "src/"
22
+ },
23
"psr-4": {
24
"wireframe\\": "src/"
25
}
src/PW/Composer/SystemInstaller.php
@@ -0,0 +1,12 @@
1
+<?php
2
+
3
+namespace PW\Composer;
4
5
+/**
6
+ * Compatibility layer for the PW\Composer\SystemInstaller class from hari/pw-module
7
+ *
8
+ * wireframe-framework/processwire-composer-installer and hari/pw-module are not fully compatible,
9
+ * which means that when wireframe-framework/processwire-composer-installer is enabled, we need to
10
+ * disable hari/pw-module.
11
+ */
12
+class SystemInstaller extends \wireframe\ComposerInstaller\BaseInstaller {}
0 commit comments