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

Travis CI integration #70

Open
wants to merge 8 commits into
base: master
Choose a base branch
from
Open
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
4 changes: 4 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
[submodule "cybersource-rest-samples-php"]
path = cybersource-rest-samples-php
url = https://github.com/CyberSource/cybersource-rest-samples-php
ignore = dirty
27 changes: 27 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
language: php

php:
- 5.6
- 7.0
- 7.1
- 8.0

sudo: false

before_install:
- composer validate

install:
- composer update --prefer-dist

before_script:
- git submodule update --remote --recursive
- cd cybersource-rest-samples-php
- composer update --prefer-dist
- cd ..
- rm -Rf cybersource-rest-samples-php/vendor/cybersource/rest-client-php/lib
- cp -R lib cybersource-rest-samples-php/vendor/cybersource/rest-client-php

script:
- cd cybersource-rest-samples-php
- bash sample_code_runner.sh
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# PHP Client SDK for CyberSource REST APIs

[![Build Status](https://travis-ci.com/CyberSource/cybersource-rest-client-php.svg?branch=master)](https://travis-ci.com/CyberSource/cybersource-rest-client-php)

The CyberSource PHP client provides convenient access to the [CyberSource REST API](https://developer.cybersource.com/api/reference/api-reference.html) from your PHP application.

[![Version ][packagist_badge]][packagist]
Expand Down
1 change: 1 addition & 0 deletions cybersource-rest-samples-php