THRIFT-1615 PHP Namespace (was Thrift for Symfony 2)
authorRoger Meier <roger@apache.org>
Wed, 5 Sep 2012 19:47:14 +0000 (19:47 +0000)
committerRoger Meier <roger@apache.org>
Wed, 5 Sep 2012 19:47:14 +0000 (19:47 +0000)
commit21c0a85079e3e1b5ee475bd6654512079fe5df68
tree4cff5730f356949cb848fef0b110a92a56541ff6
parentf88f9c231ebcd8f19bb040f78bc03e6b33a2982c
THRIFT-1615 PHP Namespace (was Thrift for Symfony 2)
Patch: Xavier HAUSHERR

git-svn-id: https://svn.apache.org/repos/asf/thrift/trunk@1381323 13f79535-47bb-0310-9956-ffa450edef68
71 files changed:
compiler/cpp/src/generate/t_php_generator.cc
lib/php/Makefile.am
lib/php/README
lib/php/README.apache
lib/php/lib/Thrift/Base/TBase.php [new file with mode: 0644]
lib/php/lib/Thrift/ClassLoader/ThriftClassLoader.php [new file with mode: 0644]
lib/php/lib/Thrift/Exception/TApplicationException.php [new file with mode: 0644]
lib/php/lib/Thrift/Exception/TException.php [new file with mode: 0644]
lib/php/lib/Thrift/Exception/TProtocolException.php [new file with mode: 0644]
lib/php/lib/Thrift/Exception/TTransportException.php [new file with mode: 0644]
lib/php/lib/Thrift/Factory/TBinaryProtocolFactory.php [new file with mode: 0644]
lib/php/lib/Thrift/Factory/TCompactProtocolFactory.php [new file with mode: 0644]
lib/php/lib/Thrift/Factory/TJSONProtocolFactory.php [new file with mode: 0644]
lib/php/lib/Thrift/Factory/TProtocolFactory.php [new file with mode: 0644]
lib/php/lib/Thrift/Factory/TStringFuncFactory.php [new file with mode: 0644]
lib/php/lib/Thrift/Factory/TTransportFactory.php [new file with mode: 0644]
lib/php/lib/Thrift/Protocol/JSON/BaseContext.php [new file with mode: 0644]
lib/php/lib/Thrift/Protocol/JSON/ListContext.php [new file with mode: 0644]
lib/php/lib/Thrift/Protocol/JSON/LookaheadReader.php [new file with mode: 0644]
lib/php/lib/Thrift/Protocol/JSON/PairContext.php [new file with mode: 0644]
lib/php/lib/Thrift/Protocol/TBinaryProtocol.php [new file with mode: 0644]
lib/php/lib/Thrift/Protocol/TBinaryProtocolAccelerated.php [new file with mode: 0644]
lib/php/lib/Thrift/Protocol/TCompactProtocol.php [new file with mode: 0644]
lib/php/lib/Thrift/Protocol/TJSONProtocol.php [new file with mode: 0644]
lib/php/lib/Thrift/Protocol/TProtocol.php [new file with mode: 0644]
lib/php/lib/Thrift/Serializer/TBinarySerializer.php [new file with mode: 0644]
lib/php/lib/Thrift/Server/TForkingServer.php [new file with mode: 0644]
lib/php/lib/Thrift/Server/TServer.php [new file with mode: 0644]
lib/php/lib/Thrift/Server/TServerSocket.php [new file with mode: 0644]
lib/php/lib/Thrift/Server/TServerTransport.php [new file with mode: 0644]
lib/php/lib/Thrift/Server/TSimpleServer.php [new file with mode: 0644]
lib/php/lib/Thrift/StringFunc/Core.php [new file with mode: 0644]
lib/php/lib/Thrift/StringFunc/Mbstring.php [new file with mode: 0644]
lib/php/lib/Thrift/StringFunc/TStringFunc.php [new file with mode: 0644]
lib/php/lib/Thrift/Transport/TBufferedTransport.php [new file with mode: 0644]
lib/php/lib/Thrift/Transport/TFramedTransport.php [new file with mode: 0644]
lib/php/lib/Thrift/Transport/THttpClient.php [new file with mode: 0644]
lib/php/lib/Thrift/Transport/TMemoryBuffer.php [new file with mode: 0644]
lib/php/lib/Thrift/Transport/TNullTransport.php [new file with mode: 0644]
lib/php/lib/Thrift/Transport/TPhpStream.php [new file with mode: 0644]
lib/php/lib/Thrift/Transport/TSocket.php [new file with mode: 0644]
lib/php/lib/Thrift/Transport/TSocketPool.php [new file with mode: 0644]
lib/php/lib/Thrift/Transport/TTransport.php [new file with mode: 0644]
lib/php/lib/Thrift/Type/TMessageType.php [new file with mode: 0644]
lib/php/lib/Thrift/Type/TType.php [new file with mode: 0644]
lib/php/src/protocol/TBinaryProtocol.php
lib/php/src/protocol/TBinarySerializer.php
lib/php/src/protocol/TCompactProtocol.php
lib/php/src/protocol/TJSONProtocol.php
lib/php/src/protocol/TProtocol.php
lib/php/src/server/TForkingServer.php
lib/php/src/server/TServer.php
lib/php/src/server/TSimpleServer.php
lib/php/src/transport/TBufferedTransport.php
lib/php/src/transport/TFramedTransport.php
lib/php/src/transport/THttpClient.php
lib/php/src/transport/TMemoryBuffer.php
lib/php/src/transport/TNullTransport.php
lib/php/src/transport/TPhpStream.php
lib/php/src/transport/TServerSocket.php
lib/php/src/transport/TServerTransport.php
lib/php/src/transport/TSocket.php
lib/php/src/transport/TSocketPool.php
lib/php/src/transport/TTransport.php
lib/php/src/transport/TTransportFactory.php
lib/php/test/Makefile.am
lib/php/test/Test/Thrift/Fixtures.php [new file with mode: 0644]
lib/php/test/Test/Thrift/Protocol/TestTJSONProtocol.php [new file with mode: 0644]
test/php/TestClient.php
tutorial/php/PhpClient.php
tutorial/php/PhpServer.php