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

Composer and packagist support #7

Open
wants to merge 16 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
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
.DS_STORE

/vendor/
7 changes: 6 additions & 1 deletion changelog.txt → CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,12 @@
Changelog for "barion/barion-web-php"
----------------------------------------

v1.3.0: 2017-03-27
- Added composer support and published the fork on packagist.

v1.2.8: 2017-04-13
- FIX: Refunded transactions parsed correctly

v1.2.7: 2017-02-14
- MERGE: Added FundingInformation and BankCard to PaymentStateResponse
- MERGE: Added currency to PaymentStateResponseModel and TransactionDetailModel
Expand Down Expand Up @@ -37,4 +42,4 @@ v1.0.0 : 2015-11-17

----------------------------------------
© 2016 Barion Payment Inc.
All rights reserved.
All rights reserved.
28 changes: 28 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
{
"name": "barion/barion-web-php",
"description": "Barion PHP library",
"keywords": [
"barion",
"payment processing",
"api"
],
"homepage": "https://www.barion.com",
"authors": [
{
"name": "Barion and contributors",
"homepage": "https://github.com/barion/barion-web-php"
}
],
"type": "library",
"require": {
"ext-curl": "*",
"php": ">=5.6"
},
"license": "Apache-2.0",
"minimum-stability": "dev",
"autoload": {
"psr-4": {
"Barion\\": "lib/"
}
}
}
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.