将数据写入供应商目录中的文件

时间:2015-10-04 01:40:49

标签: php json github composer-php

我开发了一个php类,它将托管在github和packagist上。我创建了一个data.json文件来读取/写入凭证数据。

$data = array(
    'access_token' => $access_token
);
$data = json_encode($data);

if(is_writable('data.json')) file_put_contents('data.json', $data);

当我使用composer在我的其他应用中安装此软件包时,出现以下错误...

file_get_contents(data.json) failed to open stream: No Such file or directory.

我真的想将access_token保存到将在vendor目录中的data.json,所以建议我实现这一目标的任何好方法。感谢

0 个答案:

没有答案