Skip to content

Commit 69ee8f9

Browse files
author
bartek
committed
commit tag 2.0.1
1 parent ef91622 commit 69ee8f9

17 files changed

+2107
-467
lines changed

Changelog.txt

Lines changed: 0 additions & 8 deletions
This file was deleted.

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The MIT License (MIT)
22

3-
Copyright (c) 2016 aait
3+
Copyright (c) 2018 aait
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

README.md

Lines changed: 14 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,28 @@
11
# PayEx Payments API Library for PHP [![Build Status](https://travis-ci.org/PayEx/PayEx.Ecommerce.Php.svg?branch=master)](https://travis-ci.org/PayEx/PayEx.Ecommerce.Php)
22

33
## Description ##
4-
PayEx Payments API Library for PHP provide library work with PayEx Payments API.
4+
5+
The PayEx Ecommerce PHP library simplifies integrations against
6+
[PayEx' Ecommerce API platform](https://developer.payex.com/xwiki/wiki/developer/view/Main/ecommerce/)
7+
by providing native PHP interface towards the REST API.
58

69
## Documentation ##
7-
http://www.payexpim.com/
10+
11+
Documentation about the Ecommerce API platform can be found on the
12+
[PayEx Developer Portal](https://developer.payex.com/xwiki/wiki/developer/view/Main/ecommerce/).
813

914
## Installation ##
10-
You can use Composer or simply Download the Release
15+
The reocmmended way to install the PayEx Ecommerce PHP library is with
16+
composer. You can also download the source code from one of the releases
17+
here on GitHub or simply clone this repository.
1118

12-
## Composer ##
13-
The preferred method is via [composer](https://getcomposer.org). Follow the
19+
### Composer ###
20+
The preferred method is via [Composer](https://getcomposer.org). Follow the
1421
[installation instructions](https://getcomposer.org/doc/00-intro.md) if you do not already have
1522
composer installed.
1623

1724
Once composer is installed, execute the following command in your project root to install this library:
1825

1926
```sh
20-
composer require payex/php-api
21-
```
22-
23-
## Examples ##
24-
TODO
27+
composer require payex/payex-ecom-php
28+
```

composer.json

Lines changed: 7 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,21 @@
11
{
2-
"name": "payex/php-api",
2+
"name": "payex/payex-ecom-php",
33
"type": "library",
4-
"version": "1.0.2",
5-
"description": "PayEx Payments API Library for PHP provide library work with PayEx Payments API",
4+
"version": "2.0.1",
5+
"description": "PayEx Payments API Library for PHP - provided library works with PayEx Ecommerce API platform",
66
"keywords": ["payex"],
77
"homepage": "https://github.com/PayEx/PayEx.Ecommerce.Php",
88
"license": "MIT",
99
"require": {
10-
"php": ">=5.3",
11-
"ext-soap": "*",
12-
"ext-dom": "*",
13-
"ext-xml": "*"
10+
"ext-curl": "*",
11+
"ext-json": "*"
1412
},
1513
"require-dev": {
16-
"phpunit/phpunit": "~5.7|~6.4"
14+
"phpunit/phpunit": "~6.4"
1715
},
1816
"autoload": {
1917
"psr-4": {
2018
"PayEx\\": "src/PayEx/"
2119
}
2220
}
23-
}
21+
}

0 commit comments

Comments
 (0)