Compare commits
No commits in common. "master" and "1.0.0" have entirely different histories.
41
README.md
41
README.md
|
@ -1,20 +1,29 @@
|
|||
# FEIP: Test Project
|
||||
Simple JSON sanititzer and validator on PHP with tests
|
||||
|
||||
```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
|
||||
```php
|
||||
declare(strict_types=1);
|
||||
|
||||
use Dotenv\Dotenv;
|
||||
use VK\Core as VK;
|
||||
use VK\API\Methods\Message;
|
||||
|
||||
## Requirements
|
||||
* PHP **7.4**
|
||||
// Подключение зависимостей и настроек
|
||||
require_once './vendor/autoload.php';
|
||||
Dotenv::createImmutable(__DIR__)->load();
|
||||
|
||||
## 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**
|
||||
/**
|
||||
* Инициализация и настрйока ядра
|
||||
*
|
||||
* @return object Экземпляр класса ядра
|
||||
**/
|
||||
VK::init()->log();
|
||||
|
||||
/**
|
||||
* Сборка робота из ядра фреймворка
|
||||
*
|
||||
* @return int Идентификатор робота (0)
|
||||
**/
|
||||
VK::init()->build()->robot();
|
||||
|
||||
// Отправка сообщения (ID робота, кому, сообщение)
|
||||
Message::post(0, 214547089, 'Робот роботает!!!', 1);
|
||||
```
|
Loading…
Reference in New Issue