├── .gitignore ├── LICENSE ├── PHPBot.php ├── README.md ├── composer.json └── tests ├── botTest.php └── example-config.php /.gitignore: -------------------------------------------------------------------------------- 1 | vendor/* 2 | composer.lock 3 | tests/config.php 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyle2142/PHPBot/HEAD/LICENSE -------------------------------------------------------------------------------- /PHPBot.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyle2142/PHPBot/HEAD/PHPBot.php -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyle2142/PHPBot/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyle2142/PHPBot/HEAD/composer.json -------------------------------------------------------------------------------- /tests/botTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyle2142/PHPBot/HEAD/tests/botTest.php -------------------------------------------------------------------------------- /tests/example-config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyle2142/PHPBot/HEAD/tests/example-config.php --------------------------------------------------------------------------------