Install PHPUnit on WAMP
Carl on jun 10th 2012
Before you can install PHPUnit you need to have installed PEAR. If that is not the case , you can do the following:
- Go to wamp-directory, b.v. :
C:\>cd wamp\bin\php\php5.3.0
- To install PEAR, execute the following command:
C:\wamp\bin\php\php5.3.0>go-pear.bat
You will be asked several questions which you can leave to the default value. - The next thing you will need to do is register PEAR environmental variables in the registry. Therefore you can execute
C:\wamp\bin\php\php5.3.0>PEAR_ENV.reg
(Perhaps not a bad idea to backup your current registry!). Now you can call PEAR everywhere on the command line - If you cannot call PEAR on the command line, you will need to add the PEAR directory to the Windows environmental ‘Path’ variable. You can find that one in:
System Properties -> Advanced-> Environment Variables
. Select the ‘Path’ variable, click on ‘Edit’ , and add to the end of the line a ‘;’ and the path to the PEAR directory which in my case is:C:\wamp\bin\php\php5.3.0
Install PHPUnit
- Register the PHPUnit channel in pear
C:\wamp\bin\php\php5.3.0>pear channel-discover pear.phpunit.de
- Install PHPUnit
C:\wamp\bin\php\php5.3.0>pear install phpunit/PHPUnit
of php5.3.0>pear install –alldeps phpunit/PHPUnit
If you get a warning your PEAR verzion is not high enough, you can upgrade your PEAR version:
...php5.3.0>pear upgrade pear
Filed in Miscellaneous @en,PHP @en | Reacties uitgeschakeld
PHPUnit installeren op WAMP
Carl on jun 4th 2012
Voordat u PHPUnit kunt installeren, moet PEAR geïnstalleerd zijn. Als dat nog niet het geval is, kan dat door de volgende stappen uit te voeren:
-
Ga naar wamp-directory, b.v. :
C:\>cd wamp\bin\php\php5.3.0
-
Om PEAR te installeren voert u het volgende commando uit:
C:\wamp\bin\php\php5.3.0>go-pear.bat
- Dit geeft een aantal vragen, waarvan u de standaard instellingen kunt accepteren.
- Vervolgens stelt u de omgevingsvariabelen in voor PEAR. Daarvoor voert u
C:\wamp\bin\php\php5.3.0>PEAR_ENV.reg
uit. Hiermee worden een aantal waarden in de Registry geplaatst (Voordat u het uitvoert wellicht handig een backup te maken van de registry met regedit). Als die variabelen zijn ingesteld, kunt u overal op de command-line PEAR aanroepen.
Als u PEAR niet van de command-line kunt aanroepen, moet u handmatig de directory aan de lijst met Omgevingsvariabelen toevoegen, deze vindt u in System Properties -> Advanced-> Environment Variables, vervolgens de directory C:\wamp\bin\php\php5.3.0 aan de PATH variable toevoegen.
PHPUnit installeren
- Het kanaal van PHPUnit in pear registreren
C:\wamp\bin\php\php5.3.0>pear channel-discover pear.phpunit.de
- Vervolgens PHPUnit installeren
C:\wamp\bin\php\php5.3.0>pear install phpunit/PHPUnit
ofphp5.3.0>pear install --alldeps phpunit/PHPUnit
Als u een verkeerde versie (te laag) van PEAR op uw systeem hebt kunt u PEAR upgraden
...php5.3.0>pear upgrade pear
Filed in PHP | Reacties uitgeschakeld