Skip to content

Commit 3b0d078

Browse files
committed
feat: #1 core auth and error
1 parent 6705187 commit 3b0d078

8 files changed

+3031
-0
lines changed

composer.json

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
{
2+
"name": "coding/sdk",
3+
"description": "CODING.net SDK for PHP",
4+
"type": "library",
5+
"require": {
6+
"php": ">=7.4",
7+
"ext-json": "*",
8+
"guzzlehttp/guzzle": "^7.4"
9+
},
10+
"require-dev": {
11+
"fakerphp/faker": "^1.16",
12+
"phpunit/phpunit": "^9.5"
13+
},
14+
"license": "Apache-2.0",
15+
"autoload": {
16+
"psr-4": { "Coding\\": "src/" }
17+
},
18+
"autoload-dev": {
19+
"psr-4": { "Coding\\Tests\\": "tests/" }
20+
}
21+
}

0 commit comments

Comments
 (0)