first commit

This commit is contained in:
Bimmy 2022-07-25 14:44:16 +03:00
commit 9d1ce93abc
2 changed files with 19 additions and 0 deletions

8
atf.php Normal file
View File

@ -0,0 +1,8 @@
<?php
namespace taskman;
task('test', function()
{
echo "\nHello world\n";
});

11
composer.json Normal file
View File

@ -0,0 +1,11 @@
{
"name": "bit/taskman_atf",
"description": "android test farm",
"homepage": "https://git.bit5.ru/composer/taskman_atf",
"require": {
"php": ">=7.4"
},
"autoload": {
"classmap": ["atf.php"]
}
}