release 1.3.0

This commit is contained in:
Newcomer1989
2019-06-11 13:04:44 +02:00
parent 311a751f52
commit 46c5f0a6ce
76 changed files with 2580 additions and 4352 deletions

View File

@@ -2,22 +2,28 @@
## Uncomment the command you need to run PHP
## This are only examples
## If you miss one, feel free to add it
## Only one command should be active at the same time!
## Only one single command should be active at the same time!
##
## Default, which should normally working on Linux and Windows
$phpcommand = "php";
$phpcommand = 'php';
##
## Linux
#$phpcommand = "php56";
#$phpcommand = "php70";
#$phpcommand = "/usr/bin/php5";
#$phpcommand = "/usr/bin/php7.2";
## LINUX
#$phpcommand = 'php56';
#$phpcommand = 'php70';
#$phpcommand = '/usr/bin/php5';
#$phpcommand = '/usr/bin/php7.2';
##
## Windows
##
## WINDOWS
#$phpcommand = 'C:\PHP5\php.exe';
#$phpcommand = 'C:\PHP7\php.exe';
#$phpcommand = 'c:\wamp\bin\php\php.exe';
#$phpcommand = 'c:\xampp\php\php.exe';
#$phpcommand = 'C:\wamp\bin\php\php.exe';
#$phpcommand = 'C:\xampp\php\php.exe';
# On blanks inside the path you need to escape these with special marks --> \" <-- at the beginning and end of the path, see example below
#$phpcommand = '\"C:\Program Files (x86)\PHP\php.exe\"';
##
##
## OTHER
## Synology NAS
#$phpcommand = '/volume1/@appstore/PHP7.2/usr/local/bin/php72';
?>