Skip to content

Commit 19ac47c

Browse files
author
Robert Wittman
authored
V2 rewrite (#7)
* Removed old files, refactored objects * Added Options classes to manage URL arguments * Initial Commit * Added missing services, removed old Fields enums * Added Services * Added typecasting * Added files * Update composer package name * Fix composer.json
1 parent 62e21b9 commit 19ac47c

File tree

421 files changed

+17108
-6221
lines changed

Some content is hidden

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

421 files changed

+17108
-6221
lines changed

composer.json

Lines changed: 31 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,33 @@
11
{
2-
"name": "robby-bugatti/shopify-php-sdk",
3-
"description": "PHP SDK for Shopify API",
4-
"keywords": [
5-
"shopify",
6-
"ecommerce",
7-
"api",
8-
"php"
9-
],
10-
"homepage": "http://github.com/RobbyBugatti/shopify-php-sdk",
11-
"license": "MIT",
12-
"authors": [],
13-
"require": {
14-
"php": ">=5.3.3",
15-
"ext-curl": "*",
16-
"ext-json": "*"
17-
},
18-
"require-dev": {
19-
"phpunit/phpunit": "5.3.*"
20-
},
21-
"autoload": {
22-
"psr-4": { "Shopify\\" : "lib/" }
23-
}
2+
"name": "robwittman/shopify-php-sdk",
3+
"description": "PHP SDK for Shopify API",
4+
"keywords": [
5+
"shopify",
6+
"ecommerce",
7+
"api",
8+
"php"
9+
],
10+
"homepage": "http://github.com/robwittman/shopify-php-sdk",
11+
"license": "MIT",
12+
"authors": [],
13+
"require": {
14+
"php": ">=5.3.3",
15+
"ext-curl": "*",
16+
"ext-json": "*",
17+
"guzzlehttp/guzzle": "^6.2",
18+
"netresearch/jsonmapper": "^1.1",
19+
"psr/log": "^1.0"
20+
},
21+
"autoload": {
22+
"psr-4": {
23+
"Shopify\\" : "lib/",
24+
"Shopify\\Test\\" : "test/"
25+
},
26+
"files" : [
27+
"lib/includes.php"
28+
]
29+
},
30+
"require-dev": {
31+
"phpunit/phpunit": "^6.1"
32+
}
2433
}
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
{
2+
"application_credits": [
3+
{
4+
"id": 445365009,
5+
"amount": "5.00",
6+
"description": "credit for application refund",
7+
"test": null
8+
}
9+
]
10+
}
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"application_credit": {
3+
"id": 445365009,
4+
"amount": "5.00",
5+
"description": "credit for application refund",
6+
"test": null
7+
}
8+
}

examples/authentication_no_strict.php

Lines changed: 0 additions & 34 deletions
This file was deleted.

examples/strict_authentication.php

Lines changed: 0 additions & 76 deletions
This file was deleted.

lib/AbandonedCheckout.php

Lines changed: 0 additions & 16 deletions
This file was deleted.

lib/AbstractChildObject.php

Lines changed: 0 additions & 96 deletions
This file was deleted.

0 commit comments

Comments
 (0)