Configuring php.ini file to install Composer

I am trying to install gitlist from github. I have some problems installing it, so the document says that I have to configure php.ini in this way

detect_unicode = Off phar.readonly = Off phar.require_hash = Off

I did this, but when installing Composer, they still tell me to set detect_unicode to Off. I restarted MAMP and phpinfo () tells me that phar.readonly and phar.require_hash are indeed set to Off, but I have no information that detect_unicode is set to Off. I only have zend.detect_unicode set to On.

How can I configure my configuration so that detect_unicode really disconnects?

+4
source share
1 answer

I had the same problem as you. I found this article: http://simon-davies.name/mamp/using-composer-with-mamps-version-of-php and it resolves it.

Hope this helps.

+5
source

Source: https://habr.com/ru/post/1440965/


All Articles