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 77- Client factories for Buzz.
88
99
10+ ### Fixed
11+
12+ - Puli autoload issue on >=PHP 5.6, see [ puli/issues #190 ] ( https://github.com/puli/issues/issues/190 )
13+
14+
1015## 1.0.0 - 2016-03-04
1116
1217### 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 11<?xml version =" 1.0" encoding =" UTF-8" ?>
22
3- <phpunit bootstrap =" ./vendor /autoload.php"
3+ <phpunit bootstrap =" ./Tests /autoload.php"
44 colors =" true"
55 convertErrorsToExceptions =" true"
66 convertNoticesToExceptions =" true"
You can’t perform that action at this time.
0 commit comments