File tree Expand file tree Collapse file tree 3 files changed +16
-1
lines changed Expand file tree Collapse file tree 3 files changed +16
-1
lines changed Original file line number Diff line number Diff line change 7
7
- Client factories for Buzz.
8
8
9
9
10
+ ### Fixed
11
+
12
+ - Puli autoload issue on >=PHP 5.6, see [ puli/issues #190 ] ( https://github.com/puli/issues/issues/190 )
13
+
14
+
10
15
## 1.0.0 - 2016-03-04
11
16
12
17
### Added
Original file line number Diff line number Diff line change
1
+ <?php
2
+
3
+ $ loader = require __DIR__ .'/../vendor/autoload.php ' ;
4
+
5
+ // Temporary fix for Puli
6
+ if (PHP_VERSION_ID >= 50600 ) {
7
+ $ loader ->addClassMap ([
8
+ 'Puli \\GeneratedPuliFactory ' => __DIR__ .'/../.puli/GeneratedPuliFactory.php ' ,
9
+ ]);
10
+ }
Original file line number Diff line number Diff line change 1
1
<?xml version =" 1.0" encoding =" UTF-8" ?>
2
2
3
- <phpunit bootstrap =" ./vendor /autoload.php"
3
+ <phpunit bootstrap =" ./Tests /autoload.php"
4
4
colors =" true"
5
5
convertErrorsToExceptions =" true"
6
6
convertNoticesToExceptions =" true"
You can’t perform that action at this time.
0 commit comments