Home  >  Article  >  Backend Development  >  用乾淨的環境跑 Composer

用乾淨的環境跑 Composer

WBOY
WBOYOriginal
2016-06-23 09:15:05773browse

Composer包太多 module 進去跑會變慢不少 (像是把 xdebug包進去時),所以自己寫了個小 script 只包必要的東西進去:

#!/bin/shexec php \    -n \    -d 'extension=curl.so' \    -d 'extension=filter.so' \    -d 'extension=hash.so' \    -d 'extension=iconv.so' \    -d 'extension=json.so' \    -d 'extension=openssl.so' \    -d 'extension=phar.so' \    -d 'extension=posix.so' \    -d 'zend_extension=opcache.so' \    "$(dirname $0)/composer.phar" $*

用 -n 忽略掉 php.ini裡面的東西 (這包括了 extension 設定) 後再開始自己加 extension 設定。

其中 opcache.so是加速用的, posix.so是因為想要有輸出的色彩,這兩個 so 檔不加進去還是可以動,而其他的都是必要的 extension。

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn