diff --git a/.atoum.php b/.atoum.php index 988bf9f..4d78479 100644 --- a/.atoum.php +++ b/.atoum.php @@ -40,3 +40,10 @@ function() use ($defaultFinder) { $runner->addReport($coverallsReport); } + +if (file_exists($composerfile = __DIR__ . '/composer.json')) { + $telemetry = new atoum\telemetry\report(); + $telemetry->readProjectNameFromComposerJson($composerfile); + $telemetry->addWriter(new atoum\writers\std\out()); + $runner->addReport($telemetry); +} diff --git a/composer.json b/composer.json index dbe4712..71e5beb 100644 --- a/composer.json +++ b/composer.json @@ -23,18 +23,19 @@ "source": "https://central.hoa-project.net/Resource/Library/Test" }, "require": { - "atoum/atoum" : "~3.0", - "atoum/praspel-extension" : "~0.17", - "atoum/ruler-extension" : "~1.3", - "atoum/visibility-extension": "~1.3", - "hoa/cli" : "~2.0", - "hoa/consistency" : "~1.0", - "hoa/console" : "~3.0", - "hoa/devtools" : "~1.0", - "hoa/file" : "~1.0", - "hoa/kitab" : "~0.6", - "hoa/protocol" : "~1.0", - "hoa/ustring" : "~4.0" + "atoum/atoum" : "~3.0", + "atoum/praspel-extension" : "~0.17", + "atoum/ruler-extension" : "~1.3", + "atoum/visibility-extension" : "~1.3", + "atoum/telemetry-extension" : "~1.0", + "hoa/cli" : "~2.0", + "hoa/consistency" : "~1.0", + "hoa/console" : "~3.0", + "hoa/devtools" : "~1.0", + "hoa/file" : "~1.0", + "hoa/kitab" : "~0.6", + "hoa/protocol" : "~1.0", + "hoa/ustring" : "~4.0" }, "autoload": { "psr-4": {