Skip to content

Commit

Permalink
Revert "API-128: Move the PHP SDK publishing to github actions"
Browse files Browse the repository at this point in the history
  • Loading branch information
Arpit-Sharma-USC committed Dec 28, 2020
1 parent 98dc573 commit 73eddee
Show file tree
Hide file tree
Showing 4 changed files with 26 additions and 30 deletions.
25 changes: 0 additions & 25 deletions .github/workflows/build.yml

This file was deleted.

23 changes: 23 additions & 0 deletions .travis.yml
@@ -0,0 +1,23 @@
language: php

sudo: false

php:
- 5.6
- 7.0
- 7.1
- 7.2

install: composer install

script: vendor/bin/phpunit tests -c phpunit.xml.dist --whitelist src

notifications:
email:
recipients:
- ajax@bynder.com
on_success: never
on_failure: always

after_success:
- travis_retry php vendor/bin/php-coveralls -v
3 changes: 2 additions & 1 deletion README.md
@@ -1,5 +1,6 @@
# Bynder PHP SDK
![Build](https://github.com/Bynder/bynder-php-sdk/workflows/Build/badge.svg)
[![Build Status](https://travis-ci.org/Bynder/bynder-php-sdk.svg?branch=master)](https://travis-ci.org/Bynder/bynder-php-sdk)
[![Coverage Status](https://coveralls.io/repos/github/Bynder/bynder-php-sdk/badge.svg)](https://coveralls.io/github/Bynder/bynder-php-sdk)

The main goal of this SDK is to speed up the integration of Bynder customers who use PHP. Making it easier to connect to the Bynder API (https://bynder.docs.apiary.io) and executing requests on it.

Expand Down
5 changes: 1 addition & 4 deletions composer.json
Expand Up @@ -21,7 +21,7 @@
"league/oauth2-client": "^2.3"
},
"require-dev": {
"phpunit/phpunit": "^5",
"phpunit/phpunit": "5.5.*",
"mikey179/vfsstream": "~1",
"phpdocumentor/phpdocumentor": "2.*",
"php-coveralls/php-coveralls": "^2.1"
Expand All @@ -31,9 +31,6 @@
"Bynder\\": "src/Bynder"
}
},
"scripts": {
"test": "XDEBUG_MODE=coverage vendor/bin/phpunit tests -c phpunit.xml.dist"
},
"autoload-dev": {
"psr-4": {
"Bynder\\Tests\\": "tests"
Expand Down

0 comments on commit 73eddee

Please sign in to comment.