PHP code example of kylekatarnls / multi-tester
1. Go to this page and download the library: Download kylekatarnls/multi-tester library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
kylekatarnls / multi-tester example snippets
yaml
language: php
php:
- 7.1
- 7.2
- 7.3
install:
- composer install
script:
- vendor/bin/phpunit
yaml
language: php
matrix:
2
- php: 7.3
- php: 7.3
env: MULTITEST='on'
install:
- composer install
script:
- if [ "$MULTITEST" != "on" ]; then vendor/bin/phpunit; fi;
- if [ "$MULTITEST" = "on" ]; then vendor/bin/multi-tester; fi;