Code

< 40 %
40-60 %
> 60 %
1
<?php
2
3
$config = [
4
    'abebooks' => [
5 76
        'access_key' => uniqid(),
6 76
    ],
7
    'amazon' => [
8 76
        'access_key' => uniqid(),
9 76
        'secret_key' => uniqid(),
10 76
        'associate_tag' => uniqid(),
11 76
    ],
12
    'bookrenter' => [
13 76
        'cj_advertiser_id' => uniqid(),
14 76
    ],
15
    'cengage' => [
16 76
        'cj_advertiser_id' => uniqid(),
17 76
    ],
18
    'chegg' => [
19 76
        'access_key' => uniqid(),
20 76
        'secret_key' => uniqid(),
21 76
        'cid' => uniqid(),
22 76
        'afid' => uniqid(),
23 76
        'adid' => uniqid(),
24 76
    ],
25
    'cj' => [
26 76
        'key' => uniqid(),
27 76
        'website' => uniqid(),
28 76
    ],
29
    'skyo' => [
30 76
        'cj_advertiser_id' => uniqid(),
31 76
    ],
32
    'valore' => [
33 76
        'site_id' => uniqid(),
34
    ]
35
];
36