2

以前は MAMP ( http://www.mamp.info/en/index.html ) を持っていました。それをアンインストールし、Macports経由で「MAMP」をインストールしました。

/Applications/MAMP/ フォルダーを完全に削除しました。PHPUnit を pear 経由でインストールしたいと思います。

梨がインストールされています:

> which pear
/opt/local/bin/pear

> pear config-show
Configuration (channel pear.php.net):
=====================================
Auto-discover new Channels     auto_discover    <not set>
Default Channel                default_channel  pear.php.net
HTTP Proxy Server Address      http_proxy       <not set>
PEAR server [DEPRECATED]       master_server    pear.php.net
Default Channel Mirror         preferred_mirror pear.php.net
Remote Configuration File      remote_config    <not set>
PEAR executables directory     bin_dir          /Applications/MAMP/bin/php/php5.3.6/bin/
PEAR documentation directory   doc_dir          /Applications/MAMP/bin/php5.3/docs
PHP extension directory        ext_dir          /opt/local/lib/php/extensions/no-debug-non-zts-20090626
PEAR directory                 php_dir          /Applications/MAMP/bin/php5.3/share/pear
PEAR Installer cache directory cache_dir        /private/tmp/pear/cache
PEAR configuration file        cfg_dir          /Applications/MAMP/bin/php5.3/cfg
directory
PEAR data directory            data_dir         /Applications/MAMP/htdocs/pear
PEAR Installer download        download_dir     /tmp/pear/install
directory
PHP CLI/CGI binary             php_bin          /opt/local/bin/php
php.ini location               php_ini          <not set>
--program-prefix passed to     php_prefix       <not set>
PHP's ./configure
--program-suffix passed to     php_suffix       <not set>
PHP's ./configure
PEAR Installer temp directory  temp_dir         /tmp/pear/install
PEAR test directory            test_dir         /Applications/MAMP/bin/php5.3/tests
PEAR www files directory       www_dir          /Applications/MAMP/bin/php5.3/www
Cache TimeToLive               cache_ttl        3600
Preferred Package State        preferred_state  stable
Unix file mask                 umask            22
Debug Log Level                verbose          1
PEAR password (for             password         <not set>
maintainers)
Signature Handling Program     sig_bin          /usr/local/bin/gpg
Signature Key Directory        sig_keydir       /opt/local/etc/pearkeys
Signature Key Id               sig_keyid        <not set>
Package Signature Type         sig_type         gpg
PEAR username (for             username         <not set>
maintainers)
User Configuration File        Filename         /Users/*removed*/.pearrc
System Configuration File      Filename         /opt/local/etc/pear.conf

私が削除した /Applications/MAMP/ フォルダー構造への参照がたくさんあります (不思議なことに再生成し続けます)。これらの参照をすべて削除したいのですが、どの代替値が必要かわかりません。pear をアンインストールしたり、pear をアップグレードしたりできないようです。

理想的には、いくつかのテストを実行できるように、pear がインストールされたまま PHPUnit がインストールされている状況が望ましいと思います。

4

1 に答える 1

3

pear config-setたとえば、これらの設定値を で調整できます。

$ pear config-set php_dir /usr/share/pear/php
$ pear config-set data_dir /usr/share/pear/data

「壊れた」パスを持つすべての構成値に対してこれを行います。

その後、ファイルを古いディレクトリから新しいディレクトリに手動で移動するか、すべてのパッケージを再インストールします。

于 2013-03-07T06:41:53.220 に答える