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.1.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
remcotolsma committed Aug 4, 2015
2 parents 8be7e41 + cc5d560 commit 66e5272
Show file tree
Hide file tree
Showing 22 changed files with 298 additions and 162 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,6 @@
/.buildpath
/.project
/.settings/

# Node.js
/node_modules/
31 changes: 23 additions & 8 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,26 @@
# Changelog
# Change Log

## 1.1.0
* Improved support for user defined purchase ID's.
All notable changes to this project will be documented in this file.

## 1.0.1
* Changed WordPress pay core library requirment from ~1.0.0 to >=1.0.0.
* Changed WordPress pay iDEAL library requirment from ~1.0.0 to >=1.0.0.
This projects adheres to [Semantic Versioning](http://semver.org/) and [Keep a CHANGELOG](http://keepachangelog.com/).

## 1.0.0
* First release.
## [Unreleased][unreleased]
-

## [1.1.1] - 2015-08-04
- Use the XML security filter function from the wp-pay/core library.

## [1.1.0] - 2015-03-09
- Improved support for user defined purchase ID's.

## [1.0.1] - 2015-03-03
- Changed WordPress pay core library requirment from ~1.0.0 to >=1.0.0.
- Changed WordPress pay iDEAL library requirment from ~1.0.0 to >=1.0.0.

## 1.0.0 - 2015-01-19
- First release.

[unreleased]: https://github.com/wp-pay-gateways/ideal-advanced/compare/1.1.1...HEAD
[1.1.1]: https://github.com/wp-pay-gateways/ideal-advanced/compare/1.1.0...1.1.1
[1.1.0]: https://github.com/wp-pay-gateways/ideal-advanced/compare/1.0.1...1.1.0
[1.0.1]: https://github.com/wp-pay-gateways/ideal-advanced/compare/1.0.0...1.0.1
60 changes: 60 additions & 0 deletions Gruntfile.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
module.exports = function( grunt ) {
require( 'load-grunt-tasks' )( grunt );

// Project
grunt.initConfig( {
// Package
pkg: grunt.file.readJSON( 'package.json' ),

dirs: {
ignore: [ 'build', 'node_modules', 'vendor' ].join( ',' )
},

// PHP Code Sniffer
phpcs: {
application: {
src: [
'**/*.php',
'!node_modules/**',
'!vendor/**'
],
},
options: {
standard: 'phpcs.ruleset.xml',
showSniffCodes: true
}
},

// PHPLint
phplint: {
application: [ 'src/**/*.php', 'test/**/*.php' ],
options: {
phpArgs: {
'-lf': null
}
}
},

// PHP Mess Detector
phpmd: {
application: {
dir: 'src'
},
options: {
exclude: '<%= dirs.ignore %>',
reportFormat: 'text',
rulesets: 'phpmd.ruleset.xml'
}
},

// PHPUnit
phpunit: {
application: {

}
}
} );

// Default task(s).
grunt.registerTask( 'default', [ 'phplint', 'phpmd', 'phpcs', 'phpunit' ] );
};
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,4 @@
* Friesland Bank
* ING
* Rabobank
* Postcode.nl
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
],
"require": {
"php": ">=5.2.4",
"wp-pay/core": ">=1.0.0",
"wp-pay/core": ">=1.2.1",
"wp-pay-gateways/ideal": ">=1.1.0"
},
"require-dev": {
Expand Down

0 comments on commit 66e5272

Please sign in to comment.