forked from ITspirit/TrustpilotInvitationApi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
42 lines (41 loc) · 1.01 KB
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
{
"name": "itspirit/trustpilot-invitation-api",
"description": "A PHP library for accessing the Trustpilot Invitation API and fetching recieved Product reviews",
"license": "MIT",
"type": "project",
"keywords": [
"trustpilot",
"review",
"invitation",
"api"
],
"require": {
"php": ">=5.6.0",
"apache/log4php": "^2.3.0",
"guzzlehttp/guzzle": "~6.0",
"itspirit/trustpilot-authenticator": "^v1.0.0"
},
"require-dev": {
"codeception/codeception": "^2.2"
},
"authors": [
{
"name": "Michael Frank",
"email": "[email protected]",
"homepage": "https://www.the-Spirit-of-IT.com/"
},
{
"name": "Andrew Carter",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Trustpilot\\Api\\Invitation\\": "src/"
}
},
"config": {
"sort-packages": true,
"optimize-autoloader": true
}
}