├── .editorconfig ├── .gitignore ├── .php_cs ├── .scrutinizer.yml ├── .styleci.yml ├── .travis.yml ├── LICENSE ├── README.md ├── composer.json ├── examples └── basic.php ├── phpunit.xml.dist ├── src ├── Client.php ├── ClientInterface.php ├── Command │ ├── ArticleCommand.php │ ├── AuthInfoCommand.php │ ├── BodyCommand.php │ ├── Command.php │ ├── CommandInterface.php │ ├── GroupCommand.php │ ├── HeadCommand.php │ ├── HelpCommand.php │ ├── ListCommand.php │ ├── OverviewCommand.php │ ├── OverviewFormatCommand.php │ ├── PostArticleCommand.php │ ├── PostCommand.php │ ├── QuitCommand.php │ ├── XFeatureCommand.php │ ├── XoverCommand.php │ ├── XpathCommand.php │ └── XzverCommand.php ├── Connection │ ├── Connection.php │ └── ConnectionInterface.php ├── Exception │ ├── InvalidArgumentException.php │ ├── LogicException.php │ ├── RuntimeException.php │ ├── SocketException.php │ └── UnknownHandlerException.php ├── Response │ ├── MultiLineResponse.php │ ├── MultiLineResponseInterface.php │ ├── Response.php │ └── ResponseInterface.php └── Socket │ ├── Socket.php │ └── SocketInterface.php └── tests ├── ClientTest.php ├── Command ├── ArticleCommandTest.php ├── AuthInfoCommandTest.php ├── BodyCommandTest.php ├── GroupCommandTest.php ├── HeadCommandTest.php ├── HelpCommandTest.php ├── ListCommandTest.php ├── OverviewFormatCommandTest.php ├── PostArticleCommandTest.php ├── PostCommandTest.php ├── QuitCommandTest.php ├── XFeatureCommandTest.php ├── XoverCommandTest.php ├── XpathCommandTest.php └── XzverCommandTest.php ├── Connection └── ConnectionTest.php ├── Response ├── MultiLineResponseTest.php └── ResponseTest.php └── Socket └── SocketTest.php /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinvdvleuten/php-nntp/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /.php_cs.cache 2 | /bin/ 3 | /composer.lock 4 | /vendor/ 5 | -------------------------------------------------------------------------------- /.php_cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinvdvleuten/php-nntp/HEAD/.php_cs -------------------------------------------------------------------------------- /.scrutinizer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinvdvleuten/php-nntp/HEAD/.scrutinizer.yml -------------------------------------------------------------------------------- /.styleci.yml: -------------------------------------------------------------------------------- 1 | preset: symfony 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinvdvleuten/php-nntp/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinvdvleuten/php-nntp/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinvdvleuten/php-nntp/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinvdvleuten/php-nntp/HEAD/composer.json -------------------------------------------------------------------------------- /examples/basic.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinvdvleuten/php-nntp/HEAD/examples/basic.php -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinvdvleuten/php-nntp/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /src/Client.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinvdvleuten/php-nntp/HEAD/src/Client.php -------------------------------------------------------------------------------- /src/ClientInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinvdvleuten/php-nntp/HEAD/src/ClientInterface.php -------------------------------------------------------------------------------- /src/Command/ArticleCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinvdvleuten/php-nntp/HEAD/src/Command/ArticleCommand.php -------------------------------------------------------------------------------- /src/Command/AuthInfoCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinvdvleuten/php-nntp/HEAD/src/Command/AuthInfoCommand.php -------------------------------------------------------------------------------- /src/Command/BodyCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinvdvleuten/php-nntp/HEAD/src/Command/BodyCommand.php -------------------------------------------------------------------------------- /src/Command/Command.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinvdvleuten/php-nntp/HEAD/src/Command/Command.php -------------------------------------------------------------------------------- /src/Command/CommandInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinvdvleuten/php-nntp/HEAD/src/Command/CommandInterface.php -------------------------------------------------------------------------------- /src/Command/GroupCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinvdvleuten/php-nntp/HEAD/src/Command/GroupCommand.php -------------------------------------------------------------------------------- /src/Command/HeadCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinvdvleuten/php-nntp/HEAD/src/Command/HeadCommand.php -------------------------------------------------------------------------------- /src/Command/HelpCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinvdvleuten/php-nntp/HEAD/src/Command/HelpCommand.php -------------------------------------------------------------------------------- /src/Command/ListCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinvdvleuten/php-nntp/HEAD/src/Command/ListCommand.php -------------------------------------------------------------------------------- /src/Command/OverviewCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinvdvleuten/php-nntp/HEAD/src/Command/OverviewCommand.php -------------------------------------------------------------------------------- /src/Command/OverviewFormatCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinvdvleuten/php-nntp/HEAD/src/Command/OverviewFormatCommand.php -------------------------------------------------------------------------------- /src/Command/PostArticleCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinvdvleuten/php-nntp/HEAD/src/Command/PostArticleCommand.php -------------------------------------------------------------------------------- /src/Command/PostCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinvdvleuten/php-nntp/HEAD/src/Command/PostCommand.php -------------------------------------------------------------------------------- /src/Command/QuitCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinvdvleuten/php-nntp/HEAD/src/Command/QuitCommand.php -------------------------------------------------------------------------------- /src/Command/XFeatureCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinvdvleuten/php-nntp/HEAD/src/Command/XFeatureCommand.php -------------------------------------------------------------------------------- /src/Command/XoverCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinvdvleuten/php-nntp/HEAD/src/Command/XoverCommand.php -------------------------------------------------------------------------------- /src/Command/XpathCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinvdvleuten/php-nntp/HEAD/src/Command/XpathCommand.php -------------------------------------------------------------------------------- /src/Command/XzverCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinvdvleuten/php-nntp/HEAD/src/Command/XzverCommand.php -------------------------------------------------------------------------------- /src/Connection/Connection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinvdvleuten/php-nntp/HEAD/src/Connection/Connection.php -------------------------------------------------------------------------------- /src/Connection/ConnectionInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinvdvleuten/php-nntp/HEAD/src/Connection/ConnectionInterface.php -------------------------------------------------------------------------------- /src/Exception/InvalidArgumentException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinvdvleuten/php-nntp/HEAD/src/Exception/InvalidArgumentException.php -------------------------------------------------------------------------------- /src/Exception/LogicException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinvdvleuten/php-nntp/HEAD/src/Exception/LogicException.php -------------------------------------------------------------------------------- /src/Exception/RuntimeException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinvdvleuten/php-nntp/HEAD/src/Exception/RuntimeException.php -------------------------------------------------------------------------------- /src/Exception/SocketException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinvdvleuten/php-nntp/HEAD/src/Exception/SocketException.php -------------------------------------------------------------------------------- /src/Exception/UnknownHandlerException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinvdvleuten/php-nntp/HEAD/src/Exception/UnknownHandlerException.php -------------------------------------------------------------------------------- /src/Response/MultiLineResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinvdvleuten/php-nntp/HEAD/src/Response/MultiLineResponse.php -------------------------------------------------------------------------------- /src/Response/MultiLineResponseInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinvdvleuten/php-nntp/HEAD/src/Response/MultiLineResponseInterface.php -------------------------------------------------------------------------------- /src/Response/Response.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinvdvleuten/php-nntp/HEAD/src/Response/Response.php -------------------------------------------------------------------------------- /src/Response/ResponseInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinvdvleuten/php-nntp/HEAD/src/Response/ResponseInterface.php -------------------------------------------------------------------------------- /src/Socket/Socket.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinvdvleuten/php-nntp/HEAD/src/Socket/Socket.php -------------------------------------------------------------------------------- /src/Socket/SocketInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinvdvleuten/php-nntp/HEAD/src/Socket/SocketInterface.php -------------------------------------------------------------------------------- /tests/ClientTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinvdvleuten/php-nntp/HEAD/tests/ClientTest.php -------------------------------------------------------------------------------- /tests/Command/ArticleCommandTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinvdvleuten/php-nntp/HEAD/tests/Command/ArticleCommandTest.php -------------------------------------------------------------------------------- /tests/Command/AuthInfoCommandTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinvdvleuten/php-nntp/HEAD/tests/Command/AuthInfoCommandTest.php -------------------------------------------------------------------------------- /tests/Command/BodyCommandTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinvdvleuten/php-nntp/HEAD/tests/Command/BodyCommandTest.php -------------------------------------------------------------------------------- /tests/Command/GroupCommandTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinvdvleuten/php-nntp/HEAD/tests/Command/GroupCommandTest.php -------------------------------------------------------------------------------- /tests/Command/HeadCommandTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinvdvleuten/php-nntp/HEAD/tests/Command/HeadCommandTest.php -------------------------------------------------------------------------------- /tests/Command/HelpCommandTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinvdvleuten/php-nntp/HEAD/tests/Command/HelpCommandTest.php -------------------------------------------------------------------------------- /tests/Command/ListCommandTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinvdvleuten/php-nntp/HEAD/tests/Command/ListCommandTest.php -------------------------------------------------------------------------------- /tests/Command/OverviewFormatCommandTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinvdvleuten/php-nntp/HEAD/tests/Command/OverviewFormatCommandTest.php -------------------------------------------------------------------------------- /tests/Command/PostArticleCommandTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinvdvleuten/php-nntp/HEAD/tests/Command/PostArticleCommandTest.php -------------------------------------------------------------------------------- /tests/Command/PostCommandTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinvdvleuten/php-nntp/HEAD/tests/Command/PostCommandTest.php -------------------------------------------------------------------------------- /tests/Command/QuitCommandTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinvdvleuten/php-nntp/HEAD/tests/Command/QuitCommandTest.php -------------------------------------------------------------------------------- /tests/Command/XFeatureCommandTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinvdvleuten/php-nntp/HEAD/tests/Command/XFeatureCommandTest.php -------------------------------------------------------------------------------- /tests/Command/XoverCommandTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinvdvleuten/php-nntp/HEAD/tests/Command/XoverCommandTest.php -------------------------------------------------------------------------------- /tests/Command/XpathCommandTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinvdvleuten/php-nntp/HEAD/tests/Command/XpathCommandTest.php -------------------------------------------------------------------------------- /tests/Command/XzverCommandTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinvdvleuten/php-nntp/HEAD/tests/Command/XzverCommandTest.php -------------------------------------------------------------------------------- /tests/Connection/ConnectionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinvdvleuten/php-nntp/HEAD/tests/Connection/ConnectionTest.php -------------------------------------------------------------------------------- /tests/Response/MultiLineResponseTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinvdvleuten/php-nntp/HEAD/tests/Response/MultiLineResponseTest.php -------------------------------------------------------------------------------- /tests/Response/ResponseTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinvdvleuten/php-nntp/HEAD/tests/Response/ResponseTest.php -------------------------------------------------------------------------------- /tests/Socket/SocketTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinvdvleuten/php-nntp/HEAD/tests/Socket/SocketTest.php --------------------------------------------------------------------------------