inital commit

This commit is contained in:
ZerosDev
2023-03-02 14:20:21 +07:00
parent 3563a00e38
commit 02a1819b53
13 changed files with 767 additions and 0 deletions

24
composer.json Normal file
View File

@@ -0,0 +1,24 @@
{
"name": "zerosdev/tripay-sdk-php",
"description": "Unofficial TriPay.co.id Integration Kit for PHP",
"type": "library",
"require": {
"php": ">=7.2.0",
"ext-curl": "*",
"ext-json": "*",
"guzzlehttp/guzzle": "^6.5|^7.0"
},
"license": "MIT",
"authors": [
{
"name": "ZerosDev",
"email": "ronywisnuwardana@gmail.com"
}
],
"minimum-stability": "stable",
"autoload": {
"psr-4": {
"ZerosDev\\TriPay\\": "src/"
}
}
}