Skip to content

Commit 2378678

Browse files
author
epriestley
committedApr 25, 2013
Add Balanced Payments API
Summary: Adds the Balanced PHP API to externals/. Ref T2787. Test Plan: Used in next diff. Reviewers: btrahan, chad Reviewed By: chad CC: aran, aurelijus Maniphest Tasks: T2787 Differential Revision: https://secure.phabricator.com/D5764
1 parent a8bc875 commit 2378678

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

95 files changed

+7994
-0
lines changed
 

‎externals/balanced-php/.gitignore

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# composer
2+
.buildpath
3+
composer.lock
4+
composer.phar
5+
vendor
6+
*~
7+
*#
8+
# phar
9+
*.phar
10+
11+
# eclipse-pdt
12+
.settings
13+
.project
14+
*.iml

‎externals/balanced-php/.travis.yml

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
language: php
2+
before_script:
3+
- curl -s http://getcomposer.org/installer | php
4+
- php composer.phar install
5+
script: phpunit --bootstrap vendor/autoload.php --exclude-group suite tests/
6+
php:
7+
- 5.3
8+
- 5.4

0 commit comments

Comments
 (0)
Failed to load comments.