Исправил отправленный с другого проекта 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
declare(strict_types=1);
```sh
$ 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;
// Подключение зависимостей и настроек
require_once './vendor/autoload.php';
Dotenv::createImmutable(__DIR__)->load();
## Requirements
* PHP **7.4**
/**
* Инициализация и настрйока ядра
*
* @return object Экземпляр класса ядра
**/
VK::init()->log();
/**
* Сборка робота из ядра фреймворка
*
* @return int Идентификатор робота (0)
**/
VK::init()->build()->robot();
// Отправка сообщения (ID робота, кому, сообщение)
Message::post(0, 214547089, 'Робот роботает!!!', 1);
```
## Requirements-dev
* phpdocumentor/phpdocumentor **>=2.9**
* codeception/codeception **^4.1**
* codeception/module-asserts **^1.0.0**
* codeception/module-phpbrowser **^1.0**
* codeception/module-rest **^1.0.0**