atoum / reports-extension

atoum reports extension
http://atoum.github.io/reports-extension/
Other
6 stars 6 forks source link

telemtry and anonymous data : identifiant? #9

Closed Grummfy closed 8 years ago

Grummfy commented 8 years ago

hello, it could be cool, even for anonyous to have some uniq identifiant if they want.

So instead of the name of the project or a uniqid it could be some key stored locally?

jubianchi commented 8 years ago

@Grummfy as you can see in the readme, you can manually set the project name using $telemetry->setProjectName('my/project');.

I was thinking of adding another function here to anonimize only the project name:

$telemetry
    ->readProjectNameFromComposerJson(__DIR__ . '/composer.json')
    ->anonimizeProjectName()
;

Here, we would read the full project name from composer.json and only anonymize the last part of the name, keeping the vendor name clear.

jubianchi commented 8 years ago

closed by #11