Disabling xdebug when running composer

前端 未结 18 1186
北海茫月
北海茫月 2021-01-29 21:18

When running composer diagnose, I get the following error :

The xdebug extension is loaded, this can slow down Composer a little. Disablin

18条回答
  •  隐瞒了意图╮
    2021-01-29 21:45

    Update: For Xdebug 3+:

    As of Xdebug 3, it is possible to disable the Xdebug completely by setting the option xdebug.mode to off, or by setting the environment variable XDEBUG_MODE=off.

    It is very easy to disable Xdebug just for composer, by aliasing composer.

    alias composer='XDEBUG_MODE=off \composer'
    

    OR

    alias composer='php -dxdebug.mode=off $(where composer | fgrep -v composer: |  head -1)'
    

    You can add the alias to your $HOME/.bashrc to make it permanent.


    Update: For Xdebug 1.3 - 3.0.0 :

    The issue has been fixed in Composer 1.3. Update composer to the latest version by executing composer self-update, instead of trying the following workaround.


    For Xdebug < 1.3

    Here is my modification of @ezzatron's code. I have updated the script to detect ini files from phpinfo output.

    #!/bin/sh
    
    php_no_xdebug () {
        temporaryPath="$(mktemp -t php.XXXX).ini"
    
        # Using awk to ensure that files ending without newlines do not lead to configuration error
        php -i | grep "\.ini" | grep -o -e '\(/[a-z0-9._-]\+\)\+\.ini' | grep -v xdebug | xargs awk 'FNR==1{print ""}1' | grep -v xdebug > "$temporaryPath"
        
        php -n -c "$temporaryPath" "$@"
        rm -f "$temporaryPath"
    }
        
    php_no_xdebug /usr/local/bin/composer.phar $@
    # On MacOS with composer installed using brew, comment previous line
    # Install jq by executing `brew install jq` and uncomment following line.
    # php_no_xdebug /usr/local/Cellar/composer/`brew info --json=v1 composer | jq -r '.[0].installed[0].version'`/libexec/composer.phar $@
    

提交回复
热议问题