summaryrefslogtreecommitdiff
path: root/vendor/guzzle/guzzle/tests/Guzzle/Tests/TestData/services/services.json
blob: 25452e4a4d0b5fcac709bc804a116bd288648b67 (plain)
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
    "abstract": {
        "access_key": "xyz",
        "secret": "abc"
    },
    "mock": {
        "class": "Guzzle\\Tests\\Service\\Mock\\MockClient",
        "extends": "abstract",
        "params": {
            "username": "foo",
            "password": "baz",
            "subdomain": "bar"
        }
    },

    "test.abstract.aws": {
        "params": {
            "access_key": "12345",
            "secret_key": "abcd"
        }
    },

    "test.s3": {
        "class": "Guzzle\\Service\\Aws\\S3Client",
        "extends": "test.abstract.aws",
        "params": {
            "devpay_product_token": "",
            "devpay_user_token": ""
        }
    },

    "test.simple_db": {
        "class":   "Guzzle\\Service\\Aws\\SimpleDb\\SimpleDbClient",
        "extends": "test.abstract.aws"
    },

    "test.sqs": {
        "class":   "Guzzle\\Service\\Aws\\Sqs\\SqsClient",
        "extends": "test.abstract.aws"
    },

    "test.centinel": {
        "class": "Guzzle\\Service\\CardinalCommerce\\Centinel.CentinelClient",
        "params": {
            "password": "test",
            "processor_id": "123",
            "merchant_id": "456"
        }
    },

    "test.mws": {
        "class": "Guzzle\\Service\\Mws\\MwsClient",
        "extends": "test.abstract.aws",
        "params": {
            "merchant_id": "ABCDE",
            "marketplace_id": "FGHIJ",
            "application_name": "GuzzleTest",
            "application_version": "0.1",
            "base_url": "https://mws.amazonservices.com"
        }
    },

    "mock": {
        "class": "Guzzle\\Tests\\Service\\Mock\\MockClient",
        "params": {
            "username": "test_user",
            "password": "****",
            "subdomain": "test"
        }
    }
}