You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
548 B
22 lines
548 B
<?php
|
|
|
|
require_once __DIR__.'/../vendor/autoload.php';
|
|
|
|
$app = new \WeWork\App(
|
|
[
|
|
'corp_id' => 'ww395c599b304dca6c',
|
|
'secret' => 'gSJcUYmlo1mqHtd6kW8HD35--ckCFsv3ul0c2fuEaHc',
|
|
'agent_id' => 1000005,
|
|
'token' => 'ujAp3M7oJgt',
|
|
'aes_key' => 'YRbINCiaKyg9M7deLgM4nD61BJvHRoOigenoWapHxcK',
|
|
'cache' => [
|
|
'path' => __DIR__.'/cache',
|
|
],
|
|
'log' => [
|
|
'file' => __DIR__.'/log/app.log',
|
|
'level' => 'debug',
|
|
],
|
|
]
|
|
);
|
|
|
|
return $app;
|
|
|