├── .gitignore ├── README.md ├── RestfulApiPlugin.php ├── composer.json ├── composer.lock ├── config.php ├── controllers ├── RestfulApiController.php └── RestfulApi_HelperController.php ├── services ├── RestfulApiService.php ├── RestfulApi_ConfigService.php └── RestfulApi_HelperService.php ├── src ├── Exceptions │ └── RestfulApiException.php ├── Http │ ├── Dispatcher.php │ ├── Psr7 │ │ ├── Message.php │ │ ├── Request.php │ │ ├── Response.php │ │ ├── ServerRequest.php │ │ ├── Stream.php │ │ └── Uri.php │ ├── Request.php │ └── Response.php ├── Pagination │ └── CraftPaginateVariableAdapter.php ├── Resource │ ├── CraftCollection.php │ └── CraftItem.php ├── Transformers │ ├── ArrayTransformer.php │ ├── AssetFileTransformer.php │ ├── BaseTransformer.php │ ├── CategoryTransformer.php │ ├── ContentTransformer.php │ ├── EntryTransformer.php │ ├── EntryTypeTransformer.php │ ├── GlobalSetTransformer.php │ ├── MatrixBlockTransformer.php │ ├── MatrixBlockTypeTransformer.php │ ├── SectionTransformer.php │ ├── TagTransformer.php │ └── UserTransformer.php └── Validators │ ├── AbstractValidator.php │ ├── AssetValidator.php │ ├── CategoryValidator.php │ ├── EntryValidator.php │ ├── GlobalSetValidator.php │ ├── MatrixBlockValidator.php │ ├── TagValidator.php │ └── UserValidator.php └── vendor ├── autoload.php ├── composer ├── ClassLoader.php ├── autoload_classmap.php ├── autoload_namespaces.php ├── autoload_psr4.php ├── autoload_real.php └── installed.json ├── fzaninotto └── streamer │ ├── .gitignore │ ├── LICENSE │ ├── README.md │ ├── Streamer │ ├── Exception │ │ ├── ExceptionInterface.php │ │ ├── InvalidArgumentException.php │ │ ├── LogicException.php │ │ └── RuntimeException.php │ ├── FileStream.php │ ├── NetworkStream.php │ └── Stream.php │ ├── composer.json │ ├── phpunit.xml.dist │ └── tests │ ├── Streamer │ └── Test │ │ └── StreamTest.php │ └── bootstrap.php ├── league ├── fractal │ ├── LICENSE │ ├── composer.json │ └── src │ │ ├── Manager.php │ │ ├── Pagination │ │ ├── Cursor.php │ │ ├── CursorInterface.php │ │ ├── IlluminatePaginatorAdapter.php │ │ ├── PagerfantaPaginatorAdapter.php │ │ ├── PaginatorInterface.php │ │ └── ZendFrameworkPaginatorAdapter.php │ │ ├── ParamBag.php │ │ ├── Resource │ │ ├── Collection.php │ │ ├── Item.php │ │ ├── ResourceAbstract.php │ │ └── ResourceInterface.php │ │ ├── Scope.php │ │ ├── Serializer │ │ ├── ArraySerializer.php │ │ ├── DataArraySerializer.php │ │ ├── JsonApiSerializer.php │ │ └── SerializerAbstract.php │ │ └── TransformerAbstract.php └── url │ ├── CHANGELOG.md │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── README.md │ ├── composer.json │ └── src │ ├── AbstractUrl.php │ ├── Components │ ├── AbstractArray.php │ ├── AbstractComponent.php │ ├── AbstractSegment.php │ ├── ComponentArrayInterface.php │ ├── ComponentInterface.php │ ├── Fragment.php │ ├── Host.php │ ├── HostInterface.php │ ├── Pass.php │ ├── Path.php │ ├── PathInterface.php │ ├── Port.php │ ├── Query.php │ ├── QueryInterface.php │ ├── Scheme.php │ ├── SegmentInterface.php │ └── User.php │ ├── Url.php │ ├── UrlConstants.php │ ├── UrlImmutable.php │ └── UrlInterface.php ├── psr └── http-message │ ├── LICENSE │ ├── README.md │ ├── composer.json │ └── src │ ├── MessageInterface.php │ ├── RequestInterface.php │ ├── ResponseInterface.php │ ├── ServerRequestInterface.php │ ├── StreamInterface.php │ ├── UploadedFileInterface.php │ └── UriInterface.php └── true └── punycode ├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── LICENSE ├── README.md ├── composer.json ├── phpunit.xml.dist ├── src └── Punycode.php └── tests └── PunycodeTest.php /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airtype/restfulapi/HEAD/README.md -------------------------------------------------------------------------------- /RestfulApiPlugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airtype/restfulapi/HEAD/RestfulApiPlugin.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airtype/restfulapi/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airtype/restfulapi/HEAD/composer.lock -------------------------------------------------------------------------------- /config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airtype/restfulapi/HEAD/config.php -------------------------------------------------------------------------------- /controllers/RestfulApiController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airtype/restfulapi/HEAD/controllers/RestfulApiController.php -------------------------------------------------------------------------------- /controllers/RestfulApi_HelperController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airtype/restfulapi/HEAD/controllers/RestfulApi_HelperController.php -------------------------------------------------------------------------------- /services/RestfulApiService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airtype/restfulapi/HEAD/services/RestfulApiService.php -------------------------------------------------------------------------------- /services/RestfulApi_ConfigService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airtype/restfulapi/HEAD/services/RestfulApi_ConfigService.php -------------------------------------------------------------------------------- /services/RestfulApi_HelperService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airtype/restfulapi/HEAD/services/RestfulApi_HelperService.php -------------------------------------------------------------------------------- /src/Exceptions/RestfulApiException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airtype/restfulapi/HEAD/src/Exceptions/RestfulApiException.php -------------------------------------------------------------------------------- /src/Http/Dispatcher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airtype/restfulapi/HEAD/src/Http/Dispatcher.php -------------------------------------------------------------------------------- /src/Http/Psr7/Message.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airtype/restfulapi/HEAD/src/Http/Psr7/Message.php -------------------------------------------------------------------------------- /src/Http/Psr7/Request.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airtype/restfulapi/HEAD/src/Http/Psr7/Request.php -------------------------------------------------------------------------------- /src/Http/Psr7/Response.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airtype/restfulapi/HEAD/src/Http/Psr7/Response.php -------------------------------------------------------------------------------- /src/Http/Psr7/ServerRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airtype/restfulapi/HEAD/src/Http/Psr7/ServerRequest.php -------------------------------------------------------------------------------- /src/Http/Psr7/Stream.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airtype/restfulapi/HEAD/src/Http/Psr7/Stream.php -------------------------------------------------------------------------------- /src/Http/Psr7/Uri.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airtype/restfulapi/HEAD/src/Http/Psr7/Uri.php -------------------------------------------------------------------------------- /src/Http/Request.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airtype/restfulapi/HEAD/src/Http/Request.php -------------------------------------------------------------------------------- /src/Http/Response.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airtype/restfulapi/HEAD/src/Http/Response.php -------------------------------------------------------------------------------- /src/Pagination/CraftPaginateVariableAdapter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airtype/restfulapi/HEAD/src/Pagination/CraftPaginateVariableAdapter.php -------------------------------------------------------------------------------- /src/Resource/CraftCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airtype/restfulapi/HEAD/src/Resource/CraftCollection.php -------------------------------------------------------------------------------- /src/Resource/CraftItem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airtype/restfulapi/HEAD/src/Resource/CraftItem.php -------------------------------------------------------------------------------- /src/Transformers/ArrayTransformer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airtype/restfulapi/HEAD/src/Transformers/ArrayTransformer.php -------------------------------------------------------------------------------- /src/Transformers/AssetFileTransformer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airtype/restfulapi/HEAD/src/Transformers/AssetFileTransformer.php -------------------------------------------------------------------------------- /src/Transformers/BaseTransformer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airtype/restfulapi/HEAD/src/Transformers/BaseTransformer.php -------------------------------------------------------------------------------- /src/Transformers/CategoryTransformer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airtype/restfulapi/HEAD/src/Transformers/CategoryTransformer.php -------------------------------------------------------------------------------- /src/Transformers/ContentTransformer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airtype/restfulapi/HEAD/src/Transformers/ContentTransformer.php -------------------------------------------------------------------------------- /src/Transformers/EntryTransformer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airtype/restfulapi/HEAD/src/Transformers/EntryTransformer.php -------------------------------------------------------------------------------- /src/Transformers/EntryTypeTransformer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airtype/restfulapi/HEAD/src/Transformers/EntryTypeTransformer.php -------------------------------------------------------------------------------- /src/Transformers/GlobalSetTransformer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airtype/restfulapi/HEAD/src/Transformers/GlobalSetTransformer.php -------------------------------------------------------------------------------- /src/Transformers/MatrixBlockTransformer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airtype/restfulapi/HEAD/src/Transformers/MatrixBlockTransformer.php -------------------------------------------------------------------------------- /src/Transformers/MatrixBlockTypeTransformer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airtype/restfulapi/HEAD/src/Transformers/MatrixBlockTypeTransformer.php -------------------------------------------------------------------------------- /src/Transformers/SectionTransformer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airtype/restfulapi/HEAD/src/Transformers/SectionTransformer.php -------------------------------------------------------------------------------- /src/Transformers/TagTransformer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airtype/restfulapi/HEAD/src/Transformers/TagTransformer.php -------------------------------------------------------------------------------- /src/Transformers/UserTransformer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airtype/restfulapi/HEAD/src/Transformers/UserTransformer.php -------------------------------------------------------------------------------- /src/Validators/AbstractValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airtype/restfulapi/HEAD/src/Validators/AbstractValidator.php -------------------------------------------------------------------------------- /src/Validators/AssetValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airtype/restfulapi/HEAD/src/Validators/AssetValidator.php -------------------------------------------------------------------------------- /src/Validators/CategoryValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airtype/restfulapi/HEAD/src/Validators/CategoryValidator.php -------------------------------------------------------------------------------- /src/Validators/EntryValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airtype/restfulapi/HEAD/src/Validators/EntryValidator.php -------------------------------------------------------------------------------- /src/Validators/GlobalSetValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airtype/restfulapi/HEAD/src/Validators/GlobalSetValidator.php -------------------------------------------------------------------------------- /src/Validators/MatrixBlockValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airtype/restfulapi/HEAD/src/Validators/MatrixBlockValidator.php -------------------------------------------------------------------------------- /src/Validators/TagValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airtype/restfulapi/HEAD/src/Validators/TagValidator.php -------------------------------------------------------------------------------- /src/Validators/UserValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airtype/restfulapi/HEAD/src/Validators/UserValidator.php -------------------------------------------------------------------------------- /vendor/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airtype/restfulapi/HEAD/vendor/autoload.php -------------------------------------------------------------------------------- /vendor/composer/ClassLoader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airtype/restfulapi/HEAD/vendor/composer/ClassLoader.php -------------------------------------------------------------------------------- /vendor/composer/autoload_classmap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airtype/restfulapi/HEAD/vendor/composer/autoload_classmap.php -------------------------------------------------------------------------------- /vendor/composer/autoload_namespaces.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airtype/restfulapi/HEAD/vendor/composer/autoload_namespaces.php -------------------------------------------------------------------------------- /vendor/composer/autoload_psr4.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airtype/restfulapi/HEAD/vendor/composer/autoload_psr4.php -------------------------------------------------------------------------------- /vendor/composer/autoload_real.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airtype/restfulapi/HEAD/vendor/composer/autoload_real.php -------------------------------------------------------------------------------- /vendor/composer/installed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airtype/restfulapi/HEAD/vendor/composer/installed.json -------------------------------------------------------------------------------- /vendor/fzaninotto/streamer/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airtype/restfulapi/HEAD/vendor/fzaninotto/streamer/.gitignore -------------------------------------------------------------------------------- /vendor/fzaninotto/streamer/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airtype/restfulapi/HEAD/vendor/fzaninotto/streamer/LICENSE -------------------------------------------------------------------------------- /vendor/fzaninotto/streamer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airtype/restfulapi/HEAD/vendor/fzaninotto/streamer/README.md -------------------------------------------------------------------------------- /vendor/fzaninotto/streamer/Streamer/Exception/ExceptionInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airtype/restfulapi/HEAD/vendor/fzaninotto/streamer/Streamer/Exception/ExceptionInterface.php -------------------------------------------------------------------------------- /vendor/fzaninotto/streamer/Streamer/Exception/InvalidArgumentException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airtype/restfulapi/HEAD/vendor/fzaninotto/streamer/Streamer/Exception/InvalidArgumentException.php -------------------------------------------------------------------------------- /vendor/fzaninotto/streamer/Streamer/Exception/LogicException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airtype/restfulapi/HEAD/vendor/fzaninotto/streamer/Streamer/Exception/LogicException.php -------------------------------------------------------------------------------- /vendor/fzaninotto/streamer/Streamer/Exception/RuntimeException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airtype/restfulapi/HEAD/vendor/fzaninotto/streamer/Streamer/Exception/RuntimeException.php -------------------------------------------------------------------------------- /vendor/fzaninotto/streamer/Streamer/FileStream.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airtype/restfulapi/HEAD/vendor/fzaninotto/streamer/Streamer/FileStream.php -------------------------------------------------------------------------------- /vendor/fzaninotto/streamer/Streamer/NetworkStream.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airtype/restfulapi/HEAD/vendor/fzaninotto/streamer/Streamer/NetworkStream.php -------------------------------------------------------------------------------- /vendor/fzaninotto/streamer/Streamer/Stream.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airtype/restfulapi/HEAD/vendor/fzaninotto/streamer/Streamer/Stream.php -------------------------------------------------------------------------------- /vendor/fzaninotto/streamer/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airtype/restfulapi/HEAD/vendor/fzaninotto/streamer/composer.json -------------------------------------------------------------------------------- /vendor/fzaninotto/streamer/phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airtype/restfulapi/HEAD/vendor/fzaninotto/streamer/phpunit.xml.dist -------------------------------------------------------------------------------- /vendor/fzaninotto/streamer/tests/Streamer/Test/StreamTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airtype/restfulapi/HEAD/vendor/fzaninotto/streamer/tests/Streamer/Test/StreamTest.php -------------------------------------------------------------------------------- /vendor/fzaninotto/streamer/tests/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airtype/restfulapi/HEAD/vendor/fzaninotto/streamer/tests/bootstrap.php -------------------------------------------------------------------------------- /vendor/league/fractal/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airtype/restfulapi/HEAD/vendor/league/fractal/LICENSE -------------------------------------------------------------------------------- /vendor/league/fractal/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airtype/restfulapi/HEAD/vendor/league/fractal/composer.json -------------------------------------------------------------------------------- /vendor/league/fractal/src/Manager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airtype/restfulapi/HEAD/vendor/league/fractal/src/Manager.php -------------------------------------------------------------------------------- /vendor/league/fractal/src/Pagination/Cursor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airtype/restfulapi/HEAD/vendor/league/fractal/src/Pagination/Cursor.php -------------------------------------------------------------------------------- /vendor/league/fractal/src/Pagination/CursorInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airtype/restfulapi/HEAD/vendor/league/fractal/src/Pagination/CursorInterface.php -------------------------------------------------------------------------------- /vendor/league/fractal/src/Pagination/IlluminatePaginatorAdapter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airtype/restfulapi/HEAD/vendor/league/fractal/src/Pagination/IlluminatePaginatorAdapter.php -------------------------------------------------------------------------------- /vendor/league/fractal/src/Pagination/PagerfantaPaginatorAdapter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airtype/restfulapi/HEAD/vendor/league/fractal/src/Pagination/PagerfantaPaginatorAdapter.php -------------------------------------------------------------------------------- /vendor/league/fractal/src/Pagination/PaginatorInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airtype/restfulapi/HEAD/vendor/league/fractal/src/Pagination/PaginatorInterface.php -------------------------------------------------------------------------------- /vendor/league/fractal/src/Pagination/ZendFrameworkPaginatorAdapter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airtype/restfulapi/HEAD/vendor/league/fractal/src/Pagination/ZendFrameworkPaginatorAdapter.php -------------------------------------------------------------------------------- /vendor/league/fractal/src/ParamBag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airtype/restfulapi/HEAD/vendor/league/fractal/src/ParamBag.php -------------------------------------------------------------------------------- /vendor/league/fractal/src/Resource/Collection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airtype/restfulapi/HEAD/vendor/league/fractal/src/Resource/Collection.php -------------------------------------------------------------------------------- /vendor/league/fractal/src/Resource/Item.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airtype/restfulapi/HEAD/vendor/league/fractal/src/Resource/Item.php -------------------------------------------------------------------------------- /vendor/league/fractal/src/Resource/ResourceAbstract.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airtype/restfulapi/HEAD/vendor/league/fractal/src/Resource/ResourceAbstract.php -------------------------------------------------------------------------------- /vendor/league/fractal/src/Resource/ResourceInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airtype/restfulapi/HEAD/vendor/league/fractal/src/Resource/ResourceInterface.php -------------------------------------------------------------------------------- /vendor/league/fractal/src/Scope.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airtype/restfulapi/HEAD/vendor/league/fractal/src/Scope.php -------------------------------------------------------------------------------- /vendor/league/fractal/src/Serializer/ArraySerializer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airtype/restfulapi/HEAD/vendor/league/fractal/src/Serializer/ArraySerializer.php -------------------------------------------------------------------------------- /vendor/league/fractal/src/Serializer/DataArraySerializer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airtype/restfulapi/HEAD/vendor/league/fractal/src/Serializer/DataArraySerializer.php -------------------------------------------------------------------------------- /vendor/league/fractal/src/Serializer/JsonApiSerializer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airtype/restfulapi/HEAD/vendor/league/fractal/src/Serializer/JsonApiSerializer.php -------------------------------------------------------------------------------- /vendor/league/fractal/src/Serializer/SerializerAbstract.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airtype/restfulapi/HEAD/vendor/league/fractal/src/Serializer/SerializerAbstract.php -------------------------------------------------------------------------------- /vendor/league/fractal/src/TransformerAbstract.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airtype/restfulapi/HEAD/vendor/league/fractal/src/TransformerAbstract.php -------------------------------------------------------------------------------- /vendor/league/url/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airtype/restfulapi/HEAD/vendor/league/url/CHANGELOG.md -------------------------------------------------------------------------------- /vendor/league/url/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airtype/restfulapi/HEAD/vendor/league/url/CONTRIBUTING.md -------------------------------------------------------------------------------- /vendor/league/url/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airtype/restfulapi/HEAD/vendor/league/url/LICENSE -------------------------------------------------------------------------------- /vendor/league/url/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airtype/restfulapi/HEAD/vendor/league/url/README.md -------------------------------------------------------------------------------- /vendor/league/url/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airtype/restfulapi/HEAD/vendor/league/url/composer.json -------------------------------------------------------------------------------- /vendor/league/url/src/AbstractUrl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airtype/restfulapi/HEAD/vendor/league/url/src/AbstractUrl.php -------------------------------------------------------------------------------- /vendor/league/url/src/Components/AbstractArray.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airtype/restfulapi/HEAD/vendor/league/url/src/Components/AbstractArray.php -------------------------------------------------------------------------------- /vendor/league/url/src/Components/AbstractComponent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airtype/restfulapi/HEAD/vendor/league/url/src/Components/AbstractComponent.php -------------------------------------------------------------------------------- /vendor/league/url/src/Components/AbstractSegment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airtype/restfulapi/HEAD/vendor/league/url/src/Components/AbstractSegment.php -------------------------------------------------------------------------------- /vendor/league/url/src/Components/ComponentArrayInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airtype/restfulapi/HEAD/vendor/league/url/src/Components/ComponentArrayInterface.php -------------------------------------------------------------------------------- /vendor/league/url/src/Components/ComponentInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airtype/restfulapi/HEAD/vendor/league/url/src/Components/ComponentInterface.php -------------------------------------------------------------------------------- /vendor/league/url/src/Components/Fragment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airtype/restfulapi/HEAD/vendor/league/url/src/Components/Fragment.php -------------------------------------------------------------------------------- /vendor/league/url/src/Components/Host.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airtype/restfulapi/HEAD/vendor/league/url/src/Components/Host.php -------------------------------------------------------------------------------- /vendor/league/url/src/Components/HostInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airtype/restfulapi/HEAD/vendor/league/url/src/Components/HostInterface.php -------------------------------------------------------------------------------- /vendor/league/url/src/Components/Pass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airtype/restfulapi/HEAD/vendor/league/url/src/Components/Pass.php -------------------------------------------------------------------------------- /vendor/league/url/src/Components/Path.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airtype/restfulapi/HEAD/vendor/league/url/src/Components/Path.php -------------------------------------------------------------------------------- /vendor/league/url/src/Components/PathInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airtype/restfulapi/HEAD/vendor/league/url/src/Components/PathInterface.php -------------------------------------------------------------------------------- /vendor/league/url/src/Components/Port.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airtype/restfulapi/HEAD/vendor/league/url/src/Components/Port.php -------------------------------------------------------------------------------- /vendor/league/url/src/Components/Query.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airtype/restfulapi/HEAD/vendor/league/url/src/Components/Query.php -------------------------------------------------------------------------------- /vendor/league/url/src/Components/QueryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airtype/restfulapi/HEAD/vendor/league/url/src/Components/QueryInterface.php -------------------------------------------------------------------------------- /vendor/league/url/src/Components/Scheme.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airtype/restfulapi/HEAD/vendor/league/url/src/Components/Scheme.php -------------------------------------------------------------------------------- /vendor/league/url/src/Components/SegmentInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airtype/restfulapi/HEAD/vendor/league/url/src/Components/SegmentInterface.php -------------------------------------------------------------------------------- /vendor/league/url/src/Components/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airtype/restfulapi/HEAD/vendor/league/url/src/Components/User.php -------------------------------------------------------------------------------- /vendor/league/url/src/Url.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airtype/restfulapi/HEAD/vendor/league/url/src/Url.php -------------------------------------------------------------------------------- /vendor/league/url/src/UrlConstants.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airtype/restfulapi/HEAD/vendor/league/url/src/UrlConstants.php -------------------------------------------------------------------------------- /vendor/league/url/src/UrlImmutable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airtype/restfulapi/HEAD/vendor/league/url/src/UrlImmutable.php -------------------------------------------------------------------------------- /vendor/league/url/src/UrlInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airtype/restfulapi/HEAD/vendor/league/url/src/UrlInterface.php -------------------------------------------------------------------------------- /vendor/psr/http-message/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airtype/restfulapi/HEAD/vendor/psr/http-message/LICENSE -------------------------------------------------------------------------------- /vendor/psr/http-message/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airtype/restfulapi/HEAD/vendor/psr/http-message/README.md -------------------------------------------------------------------------------- /vendor/psr/http-message/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airtype/restfulapi/HEAD/vendor/psr/http-message/composer.json -------------------------------------------------------------------------------- /vendor/psr/http-message/src/MessageInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airtype/restfulapi/HEAD/vendor/psr/http-message/src/MessageInterface.php -------------------------------------------------------------------------------- /vendor/psr/http-message/src/RequestInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airtype/restfulapi/HEAD/vendor/psr/http-message/src/RequestInterface.php -------------------------------------------------------------------------------- /vendor/psr/http-message/src/ResponseInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airtype/restfulapi/HEAD/vendor/psr/http-message/src/ResponseInterface.php -------------------------------------------------------------------------------- /vendor/psr/http-message/src/ServerRequestInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airtype/restfulapi/HEAD/vendor/psr/http-message/src/ServerRequestInterface.php -------------------------------------------------------------------------------- /vendor/psr/http-message/src/StreamInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airtype/restfulapi/HEAD/vendor/psr/http-message/src/StreamInterface.php -------------------------------------------------------------------------------- /vendor/psr/http-message/src/UploadedFileInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airtype/restfulapi/HEAD/vendor/psr/http-message/src/UploadedFileInterface.php -------------------------------------------------------------------------------- /vendor/psr/http-message/src/UriInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airtype/restfulapi/HEAD/vendor/psr/http-message/src/UriInterface.php -------------------------------------------------------------------------------- /vendor/true/punycode/.gitignore: -------------------------------------------------------------------------------- 1 | build/ 2 | vendor/ 3 | composer.lock 4 | -------------------------------------------------------------------------------- /vendor/true/punycode/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airtype/restfulapi/HEAD/vendor/true/punycode/.travis.yml -------------------------------------------------------------------------------- /vendor/true/punycode/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airtype/restfulapi/HEAD/vendor/true/punycode/CHANGELOG.md -------------------------------------------------------------------------------- /vendor/true/punycode/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airtype/restfulapi/HEAD/vendor/true/punycode/LICENSE -------------------------------------------------------------------------------- /vendor/true/punycode/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airtype/restfulapi/HEAD/vendor/true/punycode/README.md -------------------------------------------------------------------------------- /vendor/true/punycode/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airtype/restfulapi/HEAD/vendor/true/punycode/composer.json -------------------------------------------------------------------------------- /vendor/true/punycode/phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airtype/restfulapi/HEAD/vendor/true/punycode/phpunit.xml.dist -------------------------------------------------------------------------------- /vendor/true/punycode/src/Punycode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airtype/restfulapi/HEAD/vendor/true/punycode/src/Punycode.php -------------------------------------------------------------------------------- /vendor/true/punycode/tests/PunycodeTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airtype/restfulapi/HEAD/vendor/true/punycode/tests/PunycodeTest.php --------------------------------------------------------------------------------