├── .gitignore ├── LICENSE ├── changelog.md ├── composer.json ├── composer.lock ├── phpcs.xml ├── readme.md ├── src ├── DependencyInjection │ └── JsendStandardExtension.php ├── Exception │ ├── JsendStandardException.php │ └── UnexpectedResponseTypeException.php ├── Factory │ └── ResponseFactory.php ├── Interfaces │ ├── ResponseBodyObjectInterface.php │ └── ResponseFactoryInterface.php ├── JsendStandardBundle.php ├── Resources │ └── config │ │ └── services.yml └── ValueObject │ └── ResponseBodyObject.php └── tests └── ResponseObjectTest.php /.gitignore: -------------------------------------------------------------------------------- 1 | /vendor 2 | /.vscode 3 | /.idea 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPTCloud/jsend-symfony-bundle/HEAD/LICENSE -------------------------------------------------------------------------------- /changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPTCloud/jsend-symfony-bundle/HEAD/changelog.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPTCloud/jsend-symfony-bundle/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPTCloud/jsend-symfony-bundle/HEAD/composer.lock -------------------------------------------------------------------------------- /phpcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPTCloud/jsend-symfony-bundle/HEAD/phpcs.xml -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPTCloud/jsend-symfony-bundle/HEAD/readme.md -------------------------------------------------------------------------------- /src/DependencyInjection/JsendStandardExtension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPTCloud/jsend-symfony-bundle/HEAD/src/DependencyInjection/JsendStandardExtension.php -------------------------------------------------------------------------------- /src/Exception/JsendStandardException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPTCloud/jsend-symfony-bundle/HEAD/src/Exception/JsendStandardException.php -------------------------------------------------------------------------------- /src/Exception/UnexpectedResponseTypeException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPTCloud/jsend-symfony-bundle/HEAD/src/Exception/UnexpectedResponseTypeException.php -------------------------------------------------------------------------------- /src/Factory/ResponseFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPTCloud/jsend-symfony-bundle/HEAD/src/Factory/ResponseFactory.php -------------------------------------------------------------------------------- /src/Interfaces/ResponseBodyObjectInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPTCloud/jsend-symfony-bundle/HEAD/src/Interfaces/ResponseBodyObjectInterface.php -------------------------------------------------------------------------------- /src/Interfaces/ResponseFactoryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPTCloud/jsend-symfony-bundle/HEAD/src/Interfaces/ResponseFactoryInterface.php -------------------------------------------------------------------------------- /src/JsendStandardBundle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPTCloud/jsend-symfony-bundle/HEAD/src/JsendStandardBundle.php -------------------------------------------------------------------------------- /src/Resources/config/services.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPTCloud/jsend-symfony-bundle/HEAD/src/Resources/config/services.yml -------------------------------------------------------------------------------- /src/ValueObject/ResponseBodyObject.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPTCloud/jsend-symfony-bundle/HEAD/src/ValueObject/ResponseBodyObject.php -------------------------------------------------------------------------------- /tests/ResponseObjectTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPTCloud/jsend-symfony-bundle/HEAD/tests/ResponseObjectTest.php --------------------------------------------------------------------------------