Horje
how to install phpunit Code Example
how to install phpunit
# If the Suhosin extension is enabled, you need to 
# allow execution of PHARs in your php.ini:
suhosin.executor.include.whitelist = phar

# To globally install the PHAR:
$ wget https://phar.phpunit.de/phpunit-6.5.phar
$ chmod +x phpunit-6.5.phar
$ sudo mv phpunit-6.5.phar /usr/local/bin/phpunit
$ phpunit --version

# You may also use the downloaded PHAR file directly:
$ wget https://phar.phpunit.de/phpunit-6.5.phar
$ php phpunit-6.5.phar --version
Source: phpunit.de




Shell

Related
Loop through an array of strings in Bash Code Example Loop through an array of strings in Bash Code Example
powershell copy-item specify credentials Code Example powershell copy-item specify credentials Code Example
changing folder permission in linux Code Example changing folder permission in linux Code Example
feature branch naming convention git Code Example feature branch naming convention git Code Example
fetching a forked branch Code Example fetching a forked branch Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
11