Skip to content
This repository has been archived by the owner on Feb 6, 2020. It is now read-only.

Commit

Permalink
Merge branch 'release/1.0.7'
Browse files Browse the repository at this point in the history
  • Loading branch information
remcotolsma committed Mar 2, 2016
2 parents e2f7475 + cf29227 commit 85412d6
Show file tree
Hide file tree
Showing 14 changed files with 923 additions and 176 deletions.
41 changes: 33 additions & 8 deletions .travis.yml
@@ -1,13 +1,38 @@
sudo: false

language: php

php:
- 5.3
- 5.4
- 5.5
- hhvm
matrix:
include:
- php: 5.2
env: WP_VERSION=latest WP_MULTISITE=1
- php: 5.2
env: WP_VERSION=4.0 WP_MULTISITE=1
- php: 5.3
env: WP_VERSION=4.0
- php: 5.4
env: WP_VERSION=4.0
- php: 5.5
env: WP_VERSION=4.0
- php: 5.6
env: WP_VERSION=4.0 COVERAGE=1 GRUNT=1
- php: 7.0
env: WP_VERSION=4.0
- php: hhvm
env: WP_VERSION=4.0
fast_finish: true

cache:
directories:
- node_modules
- vendor
- $HOME/.composer/cache

before_script:
- composer install
- bash bin/travis-before_script

script:
- bash bin/travis-script

after_script:
- php vendor/bin/coveralls
after_success:
- bash bin/travis-after_success
9 changes: 7 additions & 2 deletions CHANGELOG.md
Expand Up @@ -7,6 +7,9 @@ This projects adheres to [Semantic Versioning](http://semver.org/) and [Keep a C
## [Unreleased][unreleased]
-

## [1.0.7] - 2016-03-02
- Added get settings function.

## [1.0.6] - 2016-02-01
- Added an gateway settings class.

Expand All @@ -28,8 +31,10 @@ This projects adheres to [Semantic Versioning](http://semver.org/) and [Keep a C
## 1.0.0 - 2015-01-19
- First release.

[unreleased]: https://github.com/wp-pay-gateways/qantani/compare/1.0.5...HEAD
[1.0.5]: https://github.com/wp-pay-gateways/qantani/compare/1.0.5...1.0.5
[unreleased]: https://github.com/wp-pay-gateways/qantani/compare/1.0.7...HEAD
[1.0.7]: https://github.com/wp-pay-gateways/qantani/compare/1.0.6...1.0.7
[1.0.6]: https://github.com/wp-pay-gateways/qantani/compare/1.0.5...1.0.6
[1.0.5]: https://github.com/wp-pay-gateways/qantani/compare/1.0.4...1.0.5
[1.0.4]: https://github.com/wp-pay-gateways/qantani/compare/1.0.3...1.0.4
[1.0.3]: https://github.com/wp-pay-gateways/qantani/compare/1.0.2...1.0.3
[1.0.2]: https://github.com/wp-pay-gateways/qantani/compare/1.0.1...1.0.2
Expand Down
1 change: 1 addition & 0 deletions Gruntfile.js
Expand Up @@ -21,6 +21,7 @@ module.exports = function( grunt ) {
src: [ 'src/**/*.php', 'tests/**/*.php' ]
},
options: {
bin: 'vendor/bin/phpcs',
standard: 'phpcs.ruleset.xml',
showSniffCodes: true
}
Expand Down
6 changes: 6 additions & 0 deletions bin/install-wpcs
@@ -0,0 +1,6 @@
#!/bin/bash

# WordPress Coding Standards
if [[ -d vendor/wp-coding-standards/wpcs ]]; then
vendor/bin/phpcs --config-set installed_paths vendor/wp-coding-standards/wpcs
fi
6 changes: 6 additions & 0 deletions bin/travis-after_success
@@ -0,0 +1,6 @@
#!/bin/bash

# Coveralls
if [[ '1' == $COVERAGE ]]; then
php vendor/bin/coveralls
fi
21 changes: 21 additions & 0 deletions bin/travis-before_script
@@ -0,0 +1,21 @@
#!/bin/bash

set -ev

phpenv local 5.6

composer self-update

if [[ '1' == $COVERAGE ]]; then
composer install
else
composer install --no-dev
fi

phpenv local --unset

phpenv rehash

wget https://raw.githubusercontent.com/wp-cli/sample-plugin/master/bin/install-wp-tests.sh

bash install-wp-tests.sh wordpress_test root '' localhost $WP_VERSION
15 changes: 15 additions & 0 deletions bin/travis-script
@@ -0,0 +1,15 @@
#!/bin/bash

set -ev

# PHPUnit
phpunit

# Grunt
if [[ '1' == $GRUNT ]]; then
npm install -g grunt-cli

npm install --no-optional

grunt
fi
23 changes: 20 additions & 3 deletions composer.json
Expand Up @@ -28,10 +28,27 @@
},
"require": {
"php": ">=5.2.4",
"wp-pay/core": "^1.3.1",
"wp-pay-gateways/common": "^1.0.0"
"xrstf/composer-php52": "1.*",
"wp-pay/core": "^1.3.4",
"wp-pay-gateways/common": "^1.0.1"
},
"require-dev": {
"satooshi/php-coveralls": "dev-master"
"phpmd/phpmd": "^2.2.3",
"satooshi/php-coveralls": "^0.7.1",
"squizlabs/php_codesniffer": "^2.2.0",
"wp-coding-standards/wpcs": "0.8.0",
"wp-cli/wp-cli": "^0.21.1"
},
"scripts": {
"post-install-cmd": [
"xrstf\\Composer52\\Generator::onPostInstallCmd"
],
"post-update-cmd": [
"xrstf\\Composer52\\Generator::onPostInstallCmd"
],
"post-autoload-dump": [
"xrstf\\Composer52\\Generator::onPostInstallCmd",
"bin/install-wpcs"
]
}
}

0 comments on commit 85412d6

Please sign in to comment.