a2design/aiml

There is no license information available for the latest version (v1.1.3) of this package.

AIML parser

v1.1.3 2016-10-19 11:10 UTC

This package is not auto-updated.

Last update: 2024-04-13 17:41:01 UTC


README

Build Status

Requirements

  • PHP: ≥ 5.4

Instalation

    composer require a2design/aiml

Usage

$aimlFilePath = '/path/to/file.aiml';
$chat = new AIML();
$chat->addDict($aimlFilePath);

$answer = $chat->getAnswer('how are you?');
// i'm fine

Contributing

  1. Fork the Project

  2. Install Development Dependencies

  3. Create a Feature Branch

  4. (Recommended) Run the Test Suite

    vendor/bin/phpunit
  5. Send us a Pull Request