xlerr / apollo
Installs: 871
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
pkg:composer/xlerr/apollo
This package has no released version yet, and little information is available.
README
Installing
php composer.phar require kuainiu/apollo
Examples
$apollo = new Apollo('https://test.knjk.com/openapi/v1/'); $apollo->token = 'security key'; $apollo->user = 'apollo'; $apollo->envs = 'DEV'; $apollo->apps = 'tq-deposit'; $apollo->clusters = 'default'; $apollo->namespaces = 'application'; // 创建 $response = $apollo->create('key', 'value', 'comment'); // 更新 $response = $apollo->update('key', 'value', 'comment'); // 删除 $response = $apollo->update('key'); // 发布 $response = $apollo->releases('title', 'comment');