├── .gitignore ├── .php_cs ├── .styleci.yml ├── .travis.yml ├── Api └── Extensions │ └── BaseExtension.php ├── CacheWarmer └── ThriftCompileCacheWarmer.php ├── Client ├── Client.php ├── HttpClient.php ├── SocketClient.php ├── ThriftClient.php ├── ThriftTestClient.php └── ThriftTestClientPhpunit.php ├── Command ├── ClientTestCommand.php ├── CompileCommand.php └── ServerCommand.php ├── Compiler └── ThriftCompiler.php ├── Controller └── ThriftController.php ├── DependencyInjection ├── Compiler │ └── FactoryPass.php ├── Configuration.php └── OverblogThriftExtension.php ├── Exception ├── CompilerException.php └── ConfigurationException.php ├── Factory └── ThriftFactory.php ├── LICENSE ├── Listener └── ClassLoaderListener.php ├── OverblogThriftBundle.php ├── README.md ├── Resources └── config │ ├── routing.yml │ └── services.yml ├── Routing └── ThriftRoutingLoader.php ├── Server ├── HttpServer.php ├── Server.php └── SocketServer.php ├── Tests ├── Client │ ├── TestHandler.php │ └── ThriftClientTest.php ├── Command │ ├── AppKernelMock.php │ ├── CompileCommandTest.php │ └── ServerTest.php ├── Compiler │ └── CompilerTest.php ├── Factory │ └── ThriftFactoryTest.php ├── ThriftBundleTestCase.php ├── ThriftDefinition │ └── Test.thrift └── bootstrap.php ├── composer.json └── phpunit.xml.dist /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/ThriftBundle/HEAD/.gitignore -------------------------------------------------------------------------------- /.php_cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/ThriftBundle/HEAD/.php_cs -------------------------------------------------------------------------------- /.styleci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/ThriftBundle/HEAD/.styleci.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/ThriftBundle/HEAD/.travis.yml -------------------------------------------------------------------------------- /Api/Extensions/BaseExtension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/ThriftBundle/HEAD/Api/Extensions/BaseExtension.php -------------------------------------------------------------------------------- /CacheWarmer/ThriftCompileCacheWarmer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/ThriftBundle/HEAD/CacheWarmer/ThriftCompileCacheWarmer.php -------------------------------------------------------------------------------- /Client/Client.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/ThriftBundle/HEAD/Client/Client.php -------------------------------------------------------------------------------- /Client/HttpClient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/ThriftBundle/HEAD/Client/HttpClient.php -------------------------------------------------------------------------------- /Client/SocketClient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/ThriftBundle/HEAD/Client/SocketClient.php -------------------------------------------------------------------------------- /Client/ThriftClient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/ThriftBundle/HEAD/Client/ThriftClient.php -------------------------------------------------------------------------------- /Client/ThriftTestClient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/ThriftBundle/HEAD/Client/ThriftTestClient.php -------------------------------------------------------------------------------- /Client/ThriftTestClientPhpunit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/ThriftBundle/HEAD/Client/ThriftTestClientPhpunit.php -------------------------------------------------------------------------------- /Command/ClientTestCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/ThriftBundle/HEAD/Command/ClientTestCommand.php -------------------------------------------------------------------------------- /Command/CompileCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/ThriftBundle/HEAD/Command/CompileCommand.php -------------------------------------------------------------------------------- /Command/ServerCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/ThriftBundle/HEAD/Command/ServerCommand.php -------------------------------------------------------------------------------- /Compiler/ThriftCompiler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/ThriftBundle/HEAD/Compiler/ThriftCompiler.php -------------------------------------------------------------------------------- /Controller/ThriftController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/ThriftBundle/HEAD/Controller/ThriftController.php -------------------------------------------------------------------------------- /DependencyInjection/Compiler/FactoryPass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/ThriftBundle/HEAD/DependencyInjection/Compiler/FactoryPass.php -------------------------------------------------------------------------------- /DependencyInjection/Configuration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/ThriftBundle/HEAD/DependencyInjection/Configuration.php -------------------------------------------------------------------------------- /DependencyInjection/OverblogThriftExtension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/ThriftBundle/HEAD/DependencyInjection/OverblogThriftExtension.php -------------------------------------------------------------------------------- /Exception/CompilerException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/ThriftBundle/HEAD/Exception/CompilerException.php -------------------------------------------------------------------------------- /Exception/ConfigurationException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/ThriftBundle/HEAD/Exception/ConfigurationException.php -------------------------------------------------------------------------------- /Factory/ThriftFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/ThriftBundle/HEAD/Factory/ThriftFactory.php -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/ThriftBundle/HEAD/LICENSE -------------------------------------------------------------------------------- /Listener/ClassLoaderListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/ThriftBundle/HEAD/Listener/ClassLoaderListener.php -------------------------------------------------------------------------------- /OverblogThriftBundle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/ThriftBundle/HEAD/OverblogThriftBundle.php -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/ThriftBundle/HEAD/README.md -------------------------------------------------------------------------------- /Resources/config/routing.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/ThriftBundle/HEAD/Resources/config/routing.yml -------------------------------------------------------------------------------- /Resources/config/services.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/ThriftBundle/HEAD/Resources/config/services.yml -------------------------------------------------------------------------------- /Routing/ThriftRoutingLoader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/ThriftBundle/HEAD/Routing/ThriftRoutingLoader.php -------------------------------------------------------------------------------- /Server/HttpServer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/ThriftBundle/HEAD/Server/HttpServer.php -------------------------------------------------------------------------------- /Server/Server.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/ThriftBundle/HEAD/Server/Server.php -------------------------------------------------------------------------------- /Server/SocketServer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/ThriftBundle/HEAD/Server/SocketServer.php -------------------------------------------------------------------------------- /Tests/Client/TestHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/ThriftBundle/HEAD/Tests/Client/TestHandler.php -------------------------------------------------------------------------------- /Tests/Client/ThriftClientTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/ThriftBundle/HEAD/Tests/Client/ThriftClientTest.php -------------------------------------------------------------------------------- /Tests/Command/AppKernelMock.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/ThriftBundle/HEAD/Tests/Command/AppKernelMock.php -------------------------------------------------------------------------------- /Tests/Command/CompileCommandTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/ThriftBundle/HEAD/Tests/Command/CompileCommandTest.php -------------------------------------------------------------------------------- /Tests/Command/ServerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/ThriftBundle/HEAD/Tests/Command/ServerTest.php -------------------------------------------------------------------------------- /Tests/Compiler/CompilerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/ThriftBundle/HEAD/Tests/Compiler/CompilerTest.php -------------------------------------------------------------------------------- /Tests/Factory/ThriftFactoryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/ThriftBundle/HEAD/Tests/Factory/ThriftFactoryTest.php -------------------------------------------------------------------------------- /Tests/ThriftBundleTestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/ThriftBundle/HEAD/Tests/ThriftBundleTestCase.php -------------------------------------------------------------------------------- /Tests/ThriftDefinition/Test.thrift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/ThriftBundle/HEAD/Tests/ThriftDefinition/Test.thrift -------------------------------------------------------------------------------- /Tests/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/ThriftBundle/HEAD/Tests/bootstrap.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/ThriftBundle/HEAD/composer.json -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/ThriftBundle/HEAD/phpunit.xml.dist --------------------------------------------------------------------------------