Исправил отправленный с другого проекта README

This commit is contained in:
RedHood 2020-10-03 12:16:28 +10:00
parent 252b261720
commit 83af24b28b

View File

@ -1,29 +1,20 @@
# FEIP: Test Project
Simple JSON sanititzer and validator on PHP with tests
```php ```sh
declare(strict_types=1); $ git clone https://git.hood.su/FeipAPI
```
- Can handle all type of scalar values
- Understand any length associative arrays
- Easily scalable and supplemented with methods
use Dotenv\Dotenv;
use VK\Core as VK;
use VK\API\Methods\Message;
// Подключение зависимостей и настроек ## Requirements
require_once './vendor/autoload.php'; * PHP **7.4**
Dotenv::createImmutable(__DIR__)->load();
/** ## Requirements-dev
* Инициализация и настрйока ядра * phpdocumentor/phpdocumentor **>=2.9**
* * codeception/codeception **^4.1**
* @return object Экземпляр класса ядра * codeception/module-asserts **^1.0.0**
**/ * codeception/module-phpbrowser **^1.0**
VK::init()->log(); * codeception/module-rest **^1.0.0**
/**
* Сборка робота из ядра фреймворка
*
* @return int Идентификатор робота (0)
**/
VK::init()->build()->robot();
// Отправка сообщения (ID робота, кому, сообщение)
Message::post(0, 214547089, 'Робот роботает!!!', 1);
```