File tree 3 files changed +20
-0
lines changed
3 files changed +20
-0
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
8
8
## [ Unreleased]
9
9
10
+ ## [ 1.0.3] - 2020-10-20
11
+
12
+ ### Fixed
13
+ - Improved compatibility when both wireframe-framework/processwire-composer-installer and hari/pw-module are enabled.
14
+
10
15
## [ 1.0.2] - 2019-07-11
11
16
12
17
### Added
Original file line number Diff line number Diff line change 17
17
"hari/pw-module" : " ^1.0.0"
18
18
},
19
19
"autoload" : {
20
+ "psr-0" : {
21
+ "PW\\ Composer\\ " : " src/"
22
+ },
20
23
"psr-4" : {
21
24
"wireframe\\ " : " src/"
22
25
}
Original file line number Diff line number Diff line change
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 {}
You can’t perform that action at this time.
0 commit comments