Skip to content
This repository was archived by the owner on Nov 21, 2019. It is now read-only.

Commit 907925f

Browse files
committed
Merge pull request #4 from elliotchance/travis
Travis
2 parents 180aeaf + 7b31610 commit 907925f

9 files changed

+994
-9
lines changed

.gitignore

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@
66
*.p12
77
*.cer
88
*.pfx
9-
.*
9+
.idea
1010

1111
/vendor/

.travis.yml

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
language: php
2+
php:
3+
- 5.3
4+
- 5.4
5+
- 5.5
6+
- hhvm
7+
8+
install: composer install

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ Xero API
44
[![Latest Stable Version](https://poser.pugx.org/elliotchance/xero-api/version.svg)](https://packagist.org/packages/elliotchance/xero-api)
55
[![Total Downloads](https://poser.pugx.org/elliotchance/xero-api/downloads.svg)](https://packagist.org/packages/elliotchance/xero-api)
66
[![License](https://poser.pugx.org/elliotchance/xero-api/license.svg)](https://packagist.org/packages/elliotchance/xero-api)
7+
[![Build Status](https://travis-ci.org/elliotchance/xero-api.svg?branch=master)](https://travis-ci.org/elliotchance/xero-api)
78

89
**This is the community official package since Xero is unwilling to add composer support or clean up the library.** Please add existing pull requests and issues against this repository and we can all help fix it up :)
910

composer.json

+4
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@
66
"lib-curl": "*",
77
"lib-openssl": "*"
88
},
9+
"require-dev": {
10+
"elliotchance/concise": "*",
11+
"phpunit/phpunit": "*"
12+
},
913
"autoload": {
1014
"classmap": ["lib/"]
1115
},

0 commit comments

Comments
 (0)