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 #6 from niels-nijens/events-implementation
Browse files Browse the repository at this point in the history
Event implementation
  • Loading branch information
niels-nijens committed Sep 28, 2015
2 parents 408f88c + 4a6089d commit e5a899d
Show file tree
Hide file tree
Showing 46 changed files with 3,381 additions and 376 deletions.
28 changes: 20 additions & 8 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,16 +1,28 @@
language: php

php:
- 5.4
- 5.5
sudo: false

before_script:
- sudo apt-get update -qq
- sudo apt-get install -y -qq libssh2-1-dev
addons:
apt:
packages: libssh2-1-dev

matrix:
include:
- php: 5.4
- php: 5.5
- php: 5.6
- php: nightly
allow_failures:
- php: nightly
fast_finish: true

before_install: composer self-update

install:
- pecl install ssh2-beta < ./tests/.non-interactive
- composer self-update
- composer install
- mkdir -p build/logs

before_script: mkdir -p build/logs

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

Expand Down
25 changes: 11 additions & 14 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,25 +10,22 @@
"authors": [
{
"name": "Niels Nijens",
"email": "nijens.niels@gmail.com"
},
{
"name": "Giso Stallenberg"
},
{
"name": "Reyo Stallenberg"
"email": "nijens.niels@gmail.com",
"role": "Lead developer"
}
],
"require": {
"php": ">=5.4.0",
"herzult/php-ssh": "~1.1",
"justinrainbow/json-schema": "~1.3",
"seld/jsonlint": "~1.3",
"symfony/console": "~2.6",
"symfony/event-dispatcher": "~2.6"
"herzult/php-ssh": "^1.1",
"justinrainbow/json-schema": "^1.3",
"niels-nijens/utilities": "^3.2",
"seld/jsonlint": "^1.3",
"symfony/console": "^2.7",
"symfony/event-dispatcher": "^2.7",
"symfony/process": "^2.7"
},
"require-dev": {
"phpunit/phpunit": "~4.4",
"phpunit/phpunit": "^4.4",
"satooshi/php-coveralls": "dev-master"
},
"autoload": {
Expand All @@ -38,7 +35,7 @@
},
"autoload-dev": {
"psr-4": {
"Accompli\\": "tests/"
"Accompli\\Test\\": "tests/"
}
},
"bin": ["bin/accompli"]
Expand Down
Loading

0 comments on commit e5a899d

Please sign in to comment.