Skip to content

Commit 29b66ad

Browse files
authored
Merge pull request #2 from SeBuDesign/feature/products_endpoint
Added calls for the products endpoint
2 parents 67e42b9 + e76b248 commit 29b66ad

File tree

9 files changed

+2097
-13
lines changed

9 files changed

+2097
-13
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
1-
.idea
1+
/.idea/
22
/vendor/
3+
/tmp/

composer.json

Lines changed: 34 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,36 @@
11
{
2-
"name": "sebudesign/questionmark-api-php",
3-
"description": "PHP package to connect to the API of The Questionmark",
4-
"type": "library",
5-
"license": "GNU",
6-
"authors": [
7-
{
8-
"name": "Sven Buijsrogge",
9-
"email": "[email protected]"
10-
}
11-
],
12-
"minimum-stability": "stable",
13-
"require": {}
2+
"name": "sebudesign/questionmark-api-php",
3+
"description": "PHP package to connect to the API of The Questionmark",
4+
"keywords": ["PHP", "The Questionmark", "thequestionmark.org"],
5+
"type": "library",
6+
"license": "GNU",
7+
"authors": [
8+
{
9+
"name": "Sven Buijsrogge",
10+
"email": "[email protected]"
11+
}
12+
],
13+
"support": {
14+
"issues": "https://github.com/SeBuDesign/Questionmark-API-PHP/issues",
15+
"source": "https://github.com/SeBuDesign/Questionmark-API-PHP"
16+
},
17+
"minimum-stability": "stable",
18+
"require": {
19+
"php": ">=5.5.9",
20+
"guzzlehttp/guzzle": "^6.2"
21+
},
22+
"require-dev": {
23+
"phpunit/phpunit": "^6.0",
24+
"fzaninotto/faker": "^1.6"
25+
},
26+
"autoload": {
27+
"psr-4": {
28+
"SeBuDesign\\TheQuestionmark\\": "src/"
29+
}
30+
},
31+
"autoload-dev": {
32+
"psr-4": {
33+
"SeBuDesign\\TheQuestionmark\\Tests\\": "tests/"
34+
}
35+
}
1436
}

0 commit comments

Comments
 (0)