-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
13 changed files
with
52 additions
and
35 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,29 +1,30 @@ | ||
# vendor dirs | ||
vendor | ||
|
||
# composer lock files | ||
composer.lock | ||
|
||
# hidev internals | ||
.hidev/composer.json | ||
.hidev/composer.lock | ||
.hidev/vendor | ||
|
||
# IDE & OS files | ||
.*.swp | ||
.idea | ||
nbproject | ||
.DS_Store | ||
.buildpath | ||
.idea | ||
.project | ||
.settings | ||
Thumbs.db | ||
.DS_Store | ||
nbproject | ||
|
||
# php-cs-fixer cache | ||
.php_cs.cache | ||
|
||
# vendor dirs | ||
vendor | ||
|
||
# composer lock files | ||
composer.lock | ||
|
||
# phpunit generated files | ||
coverage.clover | ||
|
||
# Codeception generated files | ||
tests/_support/_generated | ||
|
||
# php-cs-fixer cache | ||
.php_cs.cache | ||
# PHARs | ||
php-cs-fixer.phar | ||
phpunit.phar |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,17 @@ | ||
package: | ||
type: library | ||
name: omnipay-epayservice | ||
namespace: Omnipay\ePayService | ||
headline: Omnipay: ePayService | ||
headline: 'Omnipay: ePayService' | ||
title: ePayService driver for the Omnipay PHP payment processing library | ||
type: library | ||
license: MIT | ||
keywords: php, omnipay, epayservice, merchant, payment | ||
year: 2015 | ||
description: | | ||
[Omnipay](https://github.com/omnipay/omnipay) is a framework agnostic, multi-gateway payment | ||
processing library for PHP 5.3+. | ||
This package implements [ePayService](http://epayservices.com/) support for Omnipay. | ||
require: | ||
hiqdev/hidev-vendor: "*" | ||
hiqdev/hidev-php: "*" | ||
hiqdev/hidev-vendor: "*" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
checks: | ||
php: | ||
code_rating: true | ||
duplication: true | ||
tools: | ||
php_code_coverage: | ||
enabled: true | ||
external_code_coverage: | ||
timeout: 600 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,26 @@ | ||
language: php | ||
php: | ||
- 5.4 | ||
- 5.5 | ||
- 5.6 | ||
- 7 | ||
- hhvm | ||
matrix: | ||
allow_failures: | ||
- | ||
php: 7 | ||
- | ||
php: hhvm | ||
cache: | ||
directories: | ||
- $HOME/.composer/cache | ||
before_install: | ||
- 'composer self-update' | ||
- 'composer --version' | ||
- 'wget http://hiqdev.com/hidev/hidev.phar -O hidev.phar && chmod a+x hidev.phar' | ||
- './hidev.phar --version' | ||
- './hidev.phar travis/before_install' | ||
sudo: false | ||
install: | ||
- 'travis_retry composer self-update 1.0.0-alpha11' | ||
- 'travis_retry composer global require "fxp/composer-asset-plugin:~1.1" "yiisoft/yii2-composer:~2.0"' | ||
- 'travis_retry composer global require "hiqdev/hidev:*@dev" "phpunit/phpunit:^4.8" "phpunit/phpunit-skeleton-generator:*" "fabpot/php-cs-fixer:*"' | ||
- 'travis_retry composer install --no-interaction' | ||
- '$HOME/.composer/vendor/bin/hidev travis/install' | ||
- './hidev.phar travis/install' | ||
script: | ||
- '$HOME/.composer/vendor/bin/hidev travis/script' | ||
- './hidev.phar travis/script' | ||
after_script: | ||
- './hidev.phar travis/after_script' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters