Skip to content

Commit 1c09617

Browse files
authored
Merge pull request #2 from tokopedia/f_initial_commit
feat(client): initial commit
2 parents a36ed45 + e18cba1 commit 1c09617

5 files changed

Lines changed: 3800 additions & 0 deletions

File tree

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/vendor/

composer.json

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
{
2+
"name": "sat/client-sdk",
3+
"description": "Client SDK from sat",
4+
"type": "library",
5+
"license": "MIT",
6+
"autoload": {
7+
"psr-4": {
8+
"Sat\\ClientSdk\\": "src/"
9+
}
10+
},
11+
"authors": [
12+
{
13+
"name": "egon12",
14+
"email": "egon.firman@bytedance.com"
15+
}
16+
],
17+
"require-dev": {
18+
"phpunit/phpunit": "^11.2",
19+
"donatj/mock-webserver": "^2.7",
20+
"squizlabs/php_codesniffer": "^3.10"
21+
},
22+
"require": {
23+
"league/oauth2-client": "^2.7",
24+
"guzzle/http": "^3.9",
25+
"phpseclib/phpseclib": "^3"
26+
}
27+
}

0 commit comments

Comments
 (0)