Skip to content

Commit

Permalink
merge updated
Browse files Browse the repository at this point in the history
  • Loading branch information
mkorkmaz committed Jul 16, 2020
2 parents a7dcd04 + 614604e commit 81c2ef0
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 20 deletions.
32 changes: 14 additions & 18 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,24 +6,20 @@ pipeline {

}
stages {
stage('Get files') {
parallel {
stage('Clone repository') {
steps {
git(url: 'https://github.com/selamiphp/console.git', branch: 'master')
}
}
stage('run composer') {
steps {
sh 'composer install'
}
}
stage('test') {
steps {
sh 'ls -la'
sh 'composer run unit-tests'
}
}
stage('Clone repository') {
steps {
git(url: 'https://github.com/selamiphp/console.git', branch: 'master')
sh 'pecl install xdebug'
}
}
stage('install') {
steps {
sh 'composer install'
}
}
stage('test') {
steps {
sh 'composer run unit-tests'
}
}
}
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Symfony Console application factory that autowires dependecies. Use any PSR-11 c
## Installation

```bash
composer install selami/console
composer require selami/console
```

## Usage
Expand Down Expand Up @@ -115,7 +115,7 @@ declare(strict_types=1);
require_once ('path/to/vendor/autoload.php');

use Selami\Console\ApplicationFactory;
use Zend\ServiceManager\ServiceManager;
use Laminas\ServiceManager\ServiceManager;

$container = new ServiceManager(
[
Expand Down

0 comments on commit 81c2ef0

Please sign in to comment.