1
0
mirror of https://github.com/hauke68/Magallanes.git synced 2025-08-25 04:40:17 +02:00

Compare commits

..

No commits in common. "master" and "4.0.0" have entirely different histories.

3 changed files with 12 additions and 22 deletions

View File

@ -1,13 +1,7 @@
language: php
php:
- '7.1'
- '7.2'
- '7.3'
- '7.4'
jobs:
fast_finish: true
allow_failures:
- php: 7.1
install:
- composer install

View File

@ -1,5 +1,5 @@
{
"name": "hauke68/magallanes",
"name": "andres-montanez/magallanes",
"description": "The Deployment Tool for PHP Applications",
"homepage": "https://magephp.com",
"license": "MIT",
@ -9,25 +9,21 @@
{
"name": "Andrés Montañez",
"email": "andresmontanez@gmail.com"
},
{
"name": "Hauke Zühl",
"email": "hzuehl@web.de"
}
],
"require": {
"php": "^7.2.5",
"monolog/monolog": "~1.11||^2.0",
"symfony/console": "^5.0",
"symfony/filesystem": "^5.0",
"symfony/event-dispatcher": "^5.0",
"symfony/finder": "^5.0",
"symfony/yaml": "^5.0",
"symfony/process": "^5.0"
"php": "^7.1.3",
"monolog/monolog": "~1.11",
"symfony/console": "^4.0",
"symfony/filesystem": "^4.0",
"symfony/event-dispatcher": "^4.0",
"symfony/finder": "^4.0",
"symfony/yaml": "^4.0",
"symfony/process": "^4.0"
},
"require-dev": {
"phpunit/phpunit": "^7.0",
"satooshi/php-coveralls": "^2.0"
"satooshi/php-coveralls": "~1.0"
},
"autoload": {
"psr-4": {

View File

@ -405,7 +405,7 @@ class Runtime
{
$this->log($cmd, LogLevel::INFO);
$process = Process::fromShellCommandline($cmd);
$process = new Process($cmd);
$process->setTimeout($timeout);
$process->run();