Skip to content

Commit

Permalink
Поддержка PHP 7.0 и выше
Browse files Browse the repository at this point in the history
  • Loading branch information
remils committed Oct 7, 2021
1 parent aded9e6 commit c0152b3
Show file tree
Hide file tree
Showing 36 changed files with 443 additions and 2,328 deletions.
11 changes: 6 additions & 5 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
### Composer
composer.phar
/vendor/
# Folders
/vendor
/.idea
/.composer

### IDEA
/.idea
# Files
composer.lock
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ PHP client for Tinkoff REST API.

## 1 Requirements

- PHP 7.1 or above
- PHP 7.0 or above

## 2 Installation

Expand Down Expand Up @@ -269,6 +269,7 @@ $data = new ResendData();
$data->TerminalKey = "TinkoffBankTest";
$data->generateToken("password");
```

## 4 License

Copyright (c) Zatulivetrov Sergey. Distributed under the MIT.
7 changes: 4 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"name": "sergey-zatulivetrov/tinkoff-acquiring-client",
"type": "library",
"version": "2.0.0",
"description": "Client for working with Tinkoff's acquiring REST API",
"keywords": [
"tinkoff",
Expand All @@ -17,9 +18,9 @@
}
],
"require": {
"php": "^7.1",
"php": "^7.0",
"ext-json": "*",
"guzzlehttp/guzzle": "~6.0"
"guzzlehttp/guzzle": ">=6.5.5"
},
"autoload": {
"psr-4": {
Expand All @@ -33,6 +34,6 @@
},
"minimum-stability": "stable",
"require-dev": {
"phpunit/phpunit": "^8.2"
"phpunit/phpunit": ">=6.5.14"
}
}
Loading

0 comments on commit c0152b3

Please sign in to comment.