├── .gitignore ├── .scrutinizer.yml ├── .travis.yml ├── code-of-conduct.md ├── composer.json ├── contributing.md ├── examples ├── builder.php ├── config.php ├── connector.php ├── http-connector.php ├── http-manager.php └── manager.php ├── license.md ├── php.ini ├── phpunit.xml ├── readme.md ├── src ├── Builder.php ├── Builder │ └── AuraBuilder.php ├── BuilderFactory.php ├── Connector.php ├── Connector │ ├── BlockingConnector.php │ ├── DoormanConnector.php │ ├── DoormanConnectorHandler.php │ └── DoormanConnectorTask.php ├── ConnectorFactory.php ├── Manager.php └── ManagerFactory.php └── tests └── ManagerFactoryTest.php /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncphp/icicle-database/HEAD/.gitignore -------------------------------------------------------------------------------- /.scrutinizer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncphp/icicle-database/HEAD/.scrutinizer.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncphp/icicle-database/HEAD/.travis.yml -------------------------------------------------------------------------------- /code-of-conduct.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncphp/icicle-database/HEAD/code-of-conduct.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncphp/icicle-database/HEAD/composer.json -------------------------------------------------------------------------------- /contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncphp/icicle-database/HEAD/contributing.md -------------------------------------------------------------------------------- /examples/builder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncphp/icicle-database/HEAD/examples/builder.php -------------------------------------------------------------------------------- /examples/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncphp/icicle-database/HEAD/examples/config.php -------------------------------------------------------------------------------- /examples/connector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncphp/icicle-database/HEAD/examples/connector.php -------------------------------------------------------------------------------- /examples/http-connector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncphp/icicle-database/HEAD/examples/http-connector.php -------------------------------------------------------------------------------- /examples/http-manager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncphp/icicle-database/HEAD/examples/http-manager.php -------------------------------------------------------------------------------- /examples/manager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncphp/icicle-database/HEAD/examples/manager.php -------------------------------------------------------------------------------- /license.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncphp/icicle-database/HEAD/license.md -------------------------------------------------------------------------------- /php.ini: -------------------------------------------------------------------------------- 1 | extension = "zmq.so" -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncphp/icicle-database/HEAD/phpunit.xml -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncphp/icicle-database/HEAD/readme.md -------------------------------------------------------------------------------- /src/Builder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncphp/icicle-database/HEAD/src/Builder.php -------------------------------------------------------------------------------- /src/Builder/AuraBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncphp/icicle-database/HEAD/src/Builder/AuraBuilder.php -------------------------------------------------------------------------------- /src/BuilderFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncphp/icicle-database/HEAD/src/BuilderFactory.php -------------------------------------------------------------------------------- /src/Connector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncphp/icicle-database/HEAD/src/Connector.php -------------------------------------------------------------------------------- /src/Connector/BlockingConnector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncphp/icicle-database/HEAD/src/Connector/BlockingConnector.php -------------------------------------------------------------------------------- /src/Connector/DoormanConnector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncphp/icicle-database/HEAD/src/Connector/DoormanConnector.php -------------------------------------------------------------------------------- /src/Connector/DoormanConnectorHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncphp/icicle-database/HEAD/src/Connector/DoormanConnectorHandler.php -------------------------------------------------------------------------------- /src/Connector/DoormanConnectorTask.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncphp/icicle-database/HEAD/src/Connector/DoormanConnectorTask.php -------------------------------------------------------------------------------- /src/ConnectorFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncphp/icicle-database/HEAD/src/ConnectorFactory.php -------------------------------------------------------------------------------- /src/Manager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncphp/icicle-database/HEAD/src/Manager.php -------------------------------------------------------------------------------- /src/ManagerFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncphp/icicle-database/HEAD/src/ManagerFactory.php -------------------------------------------------------------------------------- /tests/ManagerFactoryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncphp/icicle-database/HEAD/tests/ManagerFactoryTest.php --------------------------------------------------------------------------------