Skip to content

Commit 9d9e1fc

Browse files
committed
Initial import of the library in progress
0 parents  commit 9d9e1fc

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

49 files changed

+2834
-0
lines changed

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
.idea/
2+
vendor/

LICENSE.md

+674
Large diffs are not rendered by default.

README.md

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# BigCommerce V3 Api Library
2+
## Introduction
3+
4+
## Getting Started
5+
6+
## Development
7+
8+
## Still To Do
9+
10+
- include license
11+
- add composer json
12+
- move to github
13+
- document apis that are missed
14+
- test

composer.json

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
{
2+
"name": "aligent/bigcommerce-api-client",
3+
"description": "API client for BigCommerce",
4+
"type": "library",
5+
"require": {
6+
"guzzlehttp/guzzle": "^7.0",
7+
"ext-json": "*",
8+
"ext-mysqli": "*"
9+
},
10+
"license": "GPL-3.0-only",
11+
"authors": [
12+
{
13+
"name": "Jarrod Swift",
14+
"email": "[email protected]"
15+
}
16+
],
17+
"autoload": {
18+
"psr-4": {
19+
"BigCommerce\\ApiV3\\": "src/BigCommerce/"
20+
}
21+
}
22+
}

0 commit comments

Comments
 (0)