Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add travis conf #6

Merged
merged 3 commits into from
Dec 29, 2015
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 25 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
language: php

sudo: false

php:
- 5.6
- 7.0
- hhvm

before_script:
- composer self-update

install:
- composer install --prefer-source

script:
- vendor/bin/phpcs --standard=psr2 src/
- vendor/bin/phpunit

notifications:
irc: "irc.freenode.org#pennyphp"
email: false

matrix:
fast_finish: true
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# Exception Handler
[![Build Status](https://travis-ci.org/pennyphp/excp-handler.svg)](https://travis-ci.org/pennyphp/excp-handler)
This project helps you to manage your exceptions with [whoops](https://github.com/filp/whoops).

## Whoops
Expand Down
1 change: 1 addition & 0 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
],
"require": {
"gianarb/penny": "dev-master",
"squizlabs/php_codesniffer": "~2.5",
"filp/whoops": "^1.2@dev"
},
"require-dev": {
Expand Down