Skip to content

Commit 5355848

Browse files
authored
Merge pull request laradock#2342 from yamotuki/fix_xhprof_version
change to newer version of tideways/php-xhprof-extension
2 parents 818d61a + 76b046f commit 5355848

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

php-fpm/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -276,8 +276,8 @@ ARG INSTALL_XHPROF=false
276276
RUN if [ ${INSTALL_XHPROF} = true ]; then \
277277
# Install the php xhprof extension
278278
if [ $(php -r "echo PHP_MAJOR_VERSION;") = 7 ]; then \
279-
curl -L -o /tmp/xhprof.tar.gz "https://github.com/tideways/php-xhprof-extension/archive/v4.1.7.tar.gz"; \
280-
else \
279+
curl -L -o /tmp/xhprof.tar.gz "https://github.com/tideways/php-xhprof-extension/archive/v5.0.1.tar.gz"; \
280+
else \
281281
curl -L -o /tmp/xhprof.tar.gz "https://codeload.github.com/phacility/xhprof/tar.gz/master"; \
282282
fi \
283283
&& mkdir -p xhprof \

php-fpm/xhprof.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[xhprof]
22
; extension=xhprof.so
3-
extension=tideways.so
3+
extension=tideways_xhprof.so
44
xhprof.output_dir=/var/www/xhprof
55
; no need to autoload, control in the program
66
tideways.auto_prepend_library=0

0 commit comments

Comments
 (0)