Installing PEAR and PHPUnit with xampp

后端 未结 8 1826
臣服心动
臣服心动 2020-12-12 18:27

I am trying to get PHPUnit up and running the following are the steps I am currently following:

### Install new PEAR Version needed for PHPUnit 3.X
### Downl         


        
8条回答
  •  醉话见心
    2020-12-12 18:59

    To install in D:\xampp\php, set the following directory paths using pear config-set command

    D:
    cd D:\xampp\php
    pear config-set doc_dir d:\xampp\php\pear\docs
    pear config-set cfg_dir d:\xampp\php\pear\cfg
    pear config-set data_dir d:\xampp\php\pear\data
    pear config-set cache_dir d:\xampp\php\pear\cache
    pear config-set download_dir d:\xampp\php\pear\download
    pear config-set temp_dir d:\xampp\php\pear\temp
    pear config-set test_dir d:\xampp\php\pear\tests
    pear config-set www_dir d:\xampp\php\pear\www
    

提交回复
热议问题