patrickschur / aiml-converter
Converts AIML to CSV and CSV to AIML.
Installs: 90
Dependents: 0
Suggesters: 0
Security: 0
Stars: 4
Watchers: 1
Forks: 2
Open Issues: 0
pkg:composer/patrickschur/aiml-converter
Requires
- php: >=5.4
This package is auto-updated.
Last update: 2025-09-17 03:07:05 UTC
README
Converts AIML to CSV and CSV to AIML.
How to use
$ composer require patrickschur/aiml-converter
require 'vendor/autoload.php'; $conv = new AIMLConverter; $conv->aiml2csv('default.aiml'); // Creates a CSV file from an AIML file // or $conv->csv2aiml('default.csv'); // Creates a various amount of AIML files from a CSV file