Skip to content
This repository has been archived by the owner on Apr 16, 2024. It is now read-only.

Commit

Permalink
Merge pull request #18 from niels-nijens/connection-adapters-phpseclib
Browse files Browse the repository at this point in the history
Connection adapters with phpseclib
  • Loading branch information
niels-nijens committed Oct 18, 2015
2 parents e3c66be + 19615cf commit eeb44ed
Show file tree
Hide file tree
Showing 18 changed files with 1,029 additions and 221 deletions.
15 changes: 7 additions & 8 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,6 @@ language: php

sudo: false

addons:
apt:
packages: libssh2-1-dev

matrix:
include:
- php: 5.4
Expand All @@ -18,11 +14,14 @@ matrix:

before_install: composer self-update

install:
- pecl install ssh2-beta < ./tests/.non-interactive
- composer install
install: composer install

before_script: mkdir -p build/logs
before_script:
- ssh-keygen -q -f ~/.ssh/id_rsa -N ""
- cat ~/.ssh/id_rsa.pub > ~/.ssh/authorized_keys
- eval $(ssh-agent)
- ssh-add ~/.ssh/id_rsa
- mkdir -p build/logs

script: vendor/bin/phpunit --coverage-clover build/logs/clover.xml

Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@
],
"require": {
"php": ">=5.4.0",
"herzult/php-ssh": "^1.1",
"justinrainbow/json-schema": "^1.3",
"niels-nijens/utilities": "^3.2",
"phpseclib/phpseclib": "^2.0",
"seld/jsonlint": "^1.3",
"symfony/console": "^2.7",
"symfony/event-dispatcher": "^2.7",
Expand Down
Loading

0 comments on commit eeb44ed

Please sign in to comment.