├── .github └── workflows │ └── check-code-quality.yml ├── .gitignore ├── LICENSE.md ├── README.md ├── bin ├── docker_build.bash ├── hooks.bash └── run.bash ├── composer.json ├── composer.lock ├── docker └── Dockerfile ├── src ├── Api │ ├── Errors │ │ └── InvalidTokenException.php │ ├── Login │ │ ├── AuthErrorException.php │ │ ├── Login.php │ │ ├── LoginRequest.php │ │ └── LoginResponse.php │ ├── MarketingActions │ │ └── Calc │ │ │ ├── CartItem.php │ │ │ └── Light │ │ │ ├── Light.php │ │ │ ├── LightRequest.php │ │ │ └── Response │ │ │ ├── Cart │ │ │ ├── Cart.php │ │ │ ├── ExtraPoints │ │ │ │ ├── ActionsApplied.php │ │ │ │ └── ExtraPoints.php │ │ │ ├── Position │ │ │ │ ├── Category.php │ │ │ │ ├── ExpiryInfo.php │ │ │ │ ├── Position.php │ │ │ │ └── Product.php │ │ │ └── TextBlock │ │ │ │ ├── MarketingAction.php │ │ │ │ └── TextBlock.php │ │ │ ├── LightResponse.php │ │ │ ├── MarketingActionsApplied.php │ │ │ ├── PossibleMarketingActions.php │ │ │ ├── Recommendation.php │ │ │ └── Rewards.php │ ├── Promocodes │ │ ├── Activate │ │ │ ├── Activate.php │ │ │ ├── ActivateRequest.php │ │ │ └── ActivateResponse.php │ │ ├── Issue │ │ │ ├── Issue.php │ │ │ ├── IssueRequest.php │ │ │ └── Response │ │ │ │ ├── Group.php │ │ │ │ ├── IssueResponse.php │ │ │ │ ├── IssuedBy.php │ │ │ │ ├── IssuedTo.php │ │ │ │ ├── MarketingAction.php │ │ │ │ ├── PossibleMarketingAction.php │ │ │ │ └── Promocode.php │ │ ├── ListForUser │ │ │ ├── ListForUser.php │ │ │ ├── ListForUserRequest.php │ │ │ └── Response │ │ │ │ ├── Group.php │ │ │ │ ├── IssuedBy.php │ │ │ │ ├── IssuedTo.php │ │ │ │ ├── ListForUserResponse.php │ │ │ │ ├── MarketingAction.php │ │ │ │ ├── PossibleMarketingAction.php │ │ │ │ └── Promocode.php │ │ ├── ListGroups │ │ │ ├── ListPromocodesGroups.php │ │ │ ├── ListPromocodesGroupsRequest.php │ │ │ └── Response │ │ │ │ ├── ListPromocodesGroupsResponse.php │ │ │ │ ├── MarketingAction.php │ │ │ │ ├── PromocodesGroup.php │ │ │ │ └── PromocodesGroups.php │ │ └── Search │ │ │ ├── Response │ │ │ ├── Group.php │ │ │ ├── IssuedBy.php │ │ │ ├── IssuedTo.php │ │ │ ├── MarketingAction.php │ │ │ ├── PossibleMarketingAction.php │ │ │ ├── Promocode.php │ │ │ └── SearchResponse.php │ │ │ ├── Search.php │ │ │ └── SearchRequest.php │ ├── Purchases │ │ ├── Create │ │ │ ├── CreatePurchase.php │ │ │ ├── Request │ │ │ │ ├── Attribute.php │ │ │ │ ├── CartItem.php │ │ │ │ └── CreatePurchaseRequest.php │ │ │ └── Response │ │ │ │ ├── Cart.php │ │ │ │ ├── Cart │ │ │ │ ├── Cart.php │ │ │ │ ├── ExtraPoints │ │ │ │ │ ├── ActionsApplied.php │ │ │ │ │ └── ExtraPoints.php │ │ │ │ ├── MarketingAction.php │ │ │ │ ├── Positions.php │ │ │ │ ├── Positions │ │ │ │ │ ├── Category.php │ │ │ │ │ ├── ExpiryInfo.php │ │ │ │ │ └── Product.php │ │ │ │ ├── Recommendation.php │ │ │ │ └── TextBlock.php │ │ │ │ ├── CreatePurchasesResponse.php │ │ │ │ └── Purchase.php │ │ └── PurchaseAttributes │ │ │ ├── Add │ │ │ ├── Add.php │ │ │ ├── AddRequest.php │ │ │ └── AddResponse.php │ │ │ ├── AddValues │ │ │ ├── AddValuesPurchaseAttributes.php │ │ │ ├── AddValuesPurchaseAttributesRequest.php │ │ │ └── AddValuesPurchaseAttributesResponse.php │ │ │ ├── Delete │ │ │ ├── DeletePurchaseAttributes.php │ │ │ ├── DeletePurchaseAttributesRequest.php │ │ │ └── DeletePurchaseAttributesResponse.php │ │ │ ├── DeleteValues │ │ │ ├── DeleteValuesPurchaseAttributes.php │ │ │ ├── DeleteValuesPurchaseAttributesRequest.php │ │ │ └── DeleteValuesPurchaseAttributesResponse.php │ │ │ ├── ListAll │ │ │ ├── ListPurchaseAttributes.php │ │ │ ├── ListPurchaseAttributesRequest.php │ │ │ └── Response │ │ │ │ ├── Attribute.php │ │ │ │ └── ListPurchaseAttributesResponse.php │ │ │ └── ListValues │ │ │ ├── ListValuesPurchaseAttributes.php │ │ │ ├── ListValuesPurchaseAttributesRequest.php │ │ │ └── Response │ │ │ ├── ListValuesPurchaseAttributesResponse.php │ │ │ └── PurchaseAttributeValue.php │ └── Users │ │ ├── AddUser │ │ ├── AddUser.php │ │ ├── AddUserRequest.php │ │ └── Response │ │ │ └── AddUserResponse.php │ │ ├── Info │ │ ├── Info.php │ │ ├── InfoRequest.php │ │ └── Response │ │ │ ├── History.php │ │ │ ├── History │ │ │ └── ExpiryInfo.php │ │ │ ├── InfoResponse.php │ │ │ └── Points.php │ │ └── UserNotFoundException.php ├── Infrastructure │ ├── ApiHttpClient.php │ ├── DefaultApiHttpClient.php │ ├── Error │ │ └── ApiErrorException.php │ ├── Http │ │ └── RequestFactory │ │ │ └── DefaultServerRequestFactory.php │ └── Serializer │ │ ├── JsonObject │ │ ├── JsonObject.php │ │ ├── JsonObjectNormalizer.php │ │ └── JsonObjectsArray.php │ │ ├── JsonObjectsAssociativeArray │ │ ├── JsonObjectsAssociativeArray.php │ │ ├── JsonObjectsAssociativeArrayItemInterface.php │ │ └── JsonObjectsAssociativeArrayNormalizer.php │ │ ├── StringsArrayNormalizer.php │ │ └── YearMonthDay │ │ ├── YearMonthDay.php │ │ └── YearMonthDayNormalizer.php └── SailPlayApi.php └── tests ├── code-quality ├── .php-cs-fixer.php ├── phpcs.xml ├── phpstan-baseline.neon ├── phpstan.neon └── tmp │ └── .gitkeep ├── functional ├── .env.dist ├── Login │ └── login.php ├── MarketingActions │ └── Calc │ │ └── light.php ├── Promocodes │ ├── activate.php │ ├── issue.php │ ├── list-for-user.php │ ├── list-groups.php │ └── search.php ├── Purchases │ ├── PurchaseAttributes │ │ ├── add-values.php │ │ ├── add.php │ │ ├── delete-values.php │ │ ├── delete.php │ │ ├── list-values.php │ │ └── list.php │ └── new.php ├── Users │ ├── add.php │ └── info.php └── bootstrap.php └── unit ├── Http └── RequestFactory │ └── DefaultRequestFactoryTest.php └── Infrastructure └── Serializer ├── JsonObject ├── Inner.php └── JsonObjectNormalizerTest.php └── StringsArrayNormalizerTest.php /.github/workflows/check-code-quality.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15web/sailplay-php/HEAD/.github/workflows/check-code-quality.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15web/sailplay-php/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15web/sailplay-php/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15web/sailplay-php/HEAD/README.md -------------------------------------------------------------------------------- /bin/docker_build.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15web/sailplay-php/HEAD/bin/docker_build.bash -------------------------------------------------------------------------------- /bin/hooks.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15web/sailplay-php/HEAD/bin/hooks.bash -------------------------------------------------------------------------------- /bin/run.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15web/sailplay-php/HEAD/bin/run.bash -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15web/sailplay-php/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15web/sailplay-php/HEAD/composer.lock -------------------------------------------------------------------------------- /docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15web/sailplay-php/HEAD/docker/Dockerfile -------------------------------------------------------------------------------- /src/Api/Errors/InvalidTokenException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15web/sailplay-php/HEAD/src/Api/Errors/InvalidTokenException.php -------------------------------------------------------------------------------- /src/Api/Login/AuthErrorException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15web/sailplay-php/HEAD/src/Api/Login/AuthErrorException.php -------------------------------------------------------------------------------- /src/Api/Login/Login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15web/sailplay-php/HEAD/src/Api/Login/Login.php -------------------------------------------------------------------------------- /src/Api/Login/LoginRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15web/sailplay-php/HEAD/src/Api/Login/LoginRequest.php -------------------------------------------------------------------------------- /src/Api/Login/LoginResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15web/sailplay-php/HEAD/src/Api/Login/LoginResponse.php -------------------------------------------------------------------------------- /src/Api/MarketingActions/Calc/CartItem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15web/sailplay-php/HEAD/src/Api/MarketingActions/Calc/CartItem.php -------------------------------------------------------------------------------- /src/Api/MarketingActions/Calc/Light/Light.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15web/sailplay-php/HEAD/src/Api/MarketingActions/Calc/Light/Light.php -------------------------------------------------------------------------------- /src/Api/MarketingActions/Calc/Light/LightRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15web/sailplay-php/HEAD/src/Api/MarketingActions/Calc/Light/LightRequest.php -------------------------------------------------------------------------------- /src/Api/MarketingActions/Calc/Light/Response/Cart/Cart.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15web/sailplay-php/HEAD/src/Api/MarketingActions/Calc/Light/Response/Cart/Cart.php -------------------------------------------------------------------------------- /src/Api/MarketingActions/Calc/Light/Response/Cart/ExtraPoints/ActionsApplied.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15web/sailplay-php/HEAD/src/Api/MarketingActions/Calc/Light/Response/Cart/ExtraPoints/ActionsApplied.php -------------------------------------------------------------------------------- /src/Api/MarketingActions/Calc/Light/Response/Cart/ExtraPoints/ExtraPoints.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15web/sailplay-php/HEAD/src/Api/MarketingActions/Calc/Light/Response/Cart/ExtraPoints/ExtraPoints.php -------------------------------------------------------------------------------- /src/Api/MarketingActions/Calc/Light/Response/Cart/Position/Category.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15web/sailplay-php/HEAD/src/Api/MarketingActions/Calc/Light/Response/Cart/Position/Category.php -------------------------------------------------------------------------------- /src/Api/MarketingActions/Calc/Light/Response/Cart/Position/ExpiryInfo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15web/sailplay-php/HEAD/src/Api/MarketingActions/Calc/Light/Response/Cart/Position/ExpiryInfo.php -------------------------------------------------------------------------------- /src/Api/MarketingActions/Calc/Light/Response/Cart/Position/Position.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15web/sailplay-php/HEAD/src/Api/MarketingActions/Calc/Light/Response/Cart/Position/Position.php -------------------------------------------------------------------------------- /src/Api/MarketingActions/Calc/Light/Response/Cart/Position/Product.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15web/sailplay-php/HEAD/src/Api/MarketingActions/Calc/Light/Response/Cart/Position/Product.php -------------------------------------------------------------------------------- /src/Api/MarketingActions/Calc/Light/Response/Cart/TextBlock/MarketingAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15web/sailplay-php/HEAD/src/Api/MarketingActions/Calc/Light/Response/Cart/TextBlock/MarketingAction.php -------------------------------------------------------------------------------- /src/Api/MarketingActions/Calc/Light/Response/Cart/TextBlock/TextBlock.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15web/sailplay-php/HEAD/src/Api/MarketingActions/Calc/Light/Response/Cart/TextBlock/TextBlock.php -------------------------------------------------------------------------------- /src/Api/MarketingActions/Calc/Light/Response/LightResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15web/sailplay-php/HEAD/src/Api/MarketingActions/Calc/Light/Response/LightResponse.php -------------------------------------------------------------------------------- /src/Api/MarketingActions/Calc/Light/Response/MarketingActionsApplied.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15web/sailplay-php/HEAD/src/Api/MarketingActions/Calc/Light/Response/MarketingActionsApplied.php -------------------------------------------------------------------------------- /src/Api/MarketingActions/Calc/Light/Response/PossibleMarketingActions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15web/sailplay-php/HEAD/src/Api/MarketingActions/Calc/Light/Response/PossibleMarketingActions.php -------------------------------------------------------------------------------- /src/Api/MarketingActions/Calc/Light/Response/Recommendation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15web/sailplay-php/HEAD/src/Api/MarketingActions/Calc/Light/Response/Recommendation.php -------------------------------------------------------------------------------- /src/Api/MarketingActions/Calc/Light/Response/Rewards.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15web/sailplay-php/HEAD/src/Api/MarketingActions/Calc/Light/Response/Rewards.php -------------------------------------------------------------------------------- /src/Api/Promocodes/Activate/Activate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15web/sailplay-php/HEAD/src/Api/Promocodes/Activate/Activate.php -------------------------------------------------------------------------------- /src/Api/Promocodes/Activate/ActivateRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15web/sailplay-php/HEAD/src/Api/Promocodes/Activate/ActivateRequest.php -------------------------------------------------------------------------------- /src/Api/Promocodes/Activate/ActivateResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15web/sailplay-php/HEAD/src/Api/Promocodes/Activate/ActivateResponse.php -------------------------------------------------------------------------------- /src/Api/Promocodes/Issue/Issue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15web/sailplay-php/HEAD/src/Api/Promocodes/Issue/Issue.php -------------------------------------------------------------------------------- /src/Api/Promocodes/Issue/IssueRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15web/sailplay-php/HEAD/src/Api/Promocodes/Issue/IssueRequest.php -------------------------------------------------------------------------------- /src/Api/Promocodes/Issue/Response/Group.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15web/sailplay-php/HEAD/src/Api/Promocodes/Issue/Response/Group.php -------------------------------------------------------------------------------- /src/Api/Promocodes/Issue/Response/IssueResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15web/sailplay-php/HEAD/src/Api/Promocodes/Issue/Response/IssueResponse.php -------------------------------------------------------------------------------- /src/Api/Promocodes/Issue/Response/IssuedBy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15web/sailplay-php/HEAD/src/Api/Promocodes/Issue/Response/IssuedBy.php -------------------------------------------------------------------------------- /src/Api/Promocodes/Issue/Response/IssuedTo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15web/sailplay-php/HEAD/src/Api/Promocodes/Issue/Response/IssuedTo.php -------------------------------------------------------------------------------- /src/Api/Promocodes/Issue/Response/MarketingAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15web/sailplay-php/HEAD/src/Api/Promocodes/Issue/Response/MarketingAction.php -------------------------------------------------------------------------------- /src/Api/Promocodes/Issue/Response/PossibleMarketingAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15web/sailplay-php/HEAD/src/Api/Promocodes/Issue/Response/PossibleMarketingAction.php -------------------------------------------------------------------------------- /src/Api/Promocodes/Issue/Response/Promocode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15web/sailplay-php/HEAD/src/Api/Promocodes/Issue/Response/Promocode.php -------------------------------------------------------------------------------- /src/Api/Promocodes/ListForUser/ListForUser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15web/sailplay-php/HEAD/src/Api/Promocodes/ListForUser/ListForUser.php -------------------------------------------------------------------------------- /src/Api/Promocodes/ListForUser/ListForUserRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15web/sailplay-php/HEAD/src/Api/Promocodes/ListForUser/ListForUserRequest.php -------------------------------------------------------------------------------- /src/Api/Promocodes/ListForUser/Response/Group.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15web/sailplay-php/HEAD/src/Api/Promocodes/ListForUser/Response/Group.php -------------------------------------------------------------------------------- /src/Api/Promocodes/ListForUser/Response/IssuedBy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15web/sailplay-php/HEAD/src/Api/Promocodes/ListForUser/Response/IssuedBy.php -------------------------------------------------------------------------------- /src/Api/Promocodes/ListForUser/Response/IssuedTo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15web/sailplay-php/HEAD/src/Api/Promocodes/ListForUser/Response/IssuedTo.php -------------------------------------------------------------------------------- /src/Api/Promocodes/ListForUser/Response/ListForUserResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15web/sailplay-php/HEAD/src/Api/Promocodes/ListForUser/Response/ListForUserResponse.php -------------------------------------------------------------------------------- /src/Api/Promocodes/ListForUser/Response/MarketingAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15web/sailplay-php/HEAD/src/Api/Promocodes/ListForUser/Response/MarketingAction.php -------------------------------------------------------------------------------- /src/Api/Promocodes/ListForUser/Response/PossibleMarketingAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15web/sailplay-php/HEAD/src/Api/Promocodes/ListForUser/Response/PossibleMarketingAction.php -------------------------------------------------------------------------------- /src/Api/Promocodes/ListForUser/Response/Promocode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15web/sailplay-php/HEAD/src/Api/Promocodes/ListForUser/Response/Promocode.php -------------------------------------------------------------------------------- /src/Api/Promocodes/ListGroups/ListPromocodesGroups.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15web/sailplay-php/HEAD/src/Api/Promocodes/ListGroups/ListPromocodesGroups.php -------------------------------------------------------------------------------- /src/Api/Promocodes/ListGroups/ListPromocodesGroupsRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15web/sailplay-php/HEAD/src/Api/Promocodes/ListGroups/ListPromocodesGroupsRequest.php -------------------------------------------------------------------------------- /src/Api/Promocodes/ListGroups/Response/ListPromocodesGroupsResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15web/sailplay-php/HEAD/src/Api/Promocodes/ListGroups/Response/ListPromocodesGroupsResponse.php -------------------------------------------------------------------------------- /src/Api/Promocodes/ListGroups/Response/MarketingAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15web/sailplay-php/HEAD/src/Api/Promocodes/ListGroups/Response/MarketingAction.php -------------------------------------------------------------------------------- /src/Api/Promocodes/ListGroups/Response/PromocodesGroup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15web/sailplay-php/HEAD/src/Api/Promocodes/ListGroups/Response/PromocodesGroup.php -------------------------------------------------------------------------------- /src/Api/Promocodes/ListGroups/Response/PromocodesGroups.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15web/sailplay-php/HEAD/src/Api/Promocodes/ListGroups/Response/PromocodesGroups.php -------------------------------------------------------------------------------- /src/Api/Promocodes/Search/Response/Group.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15web/sailplay-php/HEAD/src/Api/Promocodes/Search/Response/Group.php -------------------------------------------------------------------------------- /src/Api/Promocodes/Search/Response/IssuedBy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15web/sailplay-php/HEAD/src/Api/Promocodes/Search/Response/IssuedBy.php -------------------------------------------------------------------------------- /src/Api/Promocodes/Search/Response/IssuedTo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15web/sailplay-php/HEAD/src/Api/Promocodes/Search/Response/IssuedTo.php -------------------------------------------------------------------------------- /src/Api/Promocodes/Search/Response/MarketingAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15web/sailplay-php/HEAD/src/Api/Promocodes/Search/Response/MarketingAction.php -------------------------------------------------------------------------------- /src/Api/Promocodes/Search/Response/PossibleMarketingAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15web/sailplay-php/HEAD/src/Api/Promocodes/Search/Response/PossibleMarketingAction.php -------------------------------------------------------------------------------- /src/Api/Promocodes/Search/Response/Promocode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15web/sailplay-php/HEAD/src/Api/Promocodes/Search/Response/Promocode.php -------------------------------------------------------------------------------- /src/Api/Promocodes/Search/Response/SearchResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15web/sailplay-php/HEAD/src/Api/Promocodes/Search/Response/SearchResponse.php -------------------------------------------------------------------------------- /src/Api/Promocodes/Search/Search.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15web/sailplay-php/HEAD/src/Api/Promocodes/Search/Search.php -------------------------------------------------------------------------------- /src/Api/Promocodes/Search/SearchRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15web/sailplay-php/HEAD/src/Api/Promocodes/Search/SearchRequest.php -------------------------------------------------------------------------------- /src/Api/Purchases/Create/CreatePurchase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15web/sailplay-php/HEAD/src/Api/Purchases/Create/CreatePurchase.php -------------------------------------------------------------------------------- /src/Api/Purchases/Create/Request/Attribute.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15web/sailplay-php/HEAD/src/Api/Purchases/Create/Request/Attribute.php -------------------------------------------------------------------------------- /src/Api/Purchases/Create/Request/CartItem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15web/sailplay-php/HEAD/src/Api/Purchases/Create/Request/CartItem.php -------------------------------------------------------------------------------- /src/Api/Purchases/Create/Request/CreatePurchaseRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15web/sailplay-php/HEAD/src/Api/Purchases/Create/Request/CreatePurchaseRequest.php -------------------------------------------------------------------------------- /src/Api/Purchases/Create/Response/Cart.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15web/sailplay-php/HEAD/src/Api/Purchases/Create/Response/Cart.php -------------------------------------------------------------------------------- /src/Api/Purchases/Create/Response/Cart/Cart.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15web/sailplay-php/HEAD/src/Api/Purchases/Create/Response/Cart/Cart.php -------------------------------------------------------------------------------- /src/Api/Purchases/Create/Response/Cart/ExtraPoints/ActionsApplied.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15web/sailplay-php/HEAD/src/Api/Purchases/Create/Response/Cart/ExtraPoints/ActionsApplied.php -------------------------------------------------------------------------------- /src/Api/Purchases/Create/Response/Cart/ExtraPoints/ExtraPoints.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15web/sailplay-php/HEAD/src/Api/Purchases/Create/Response/Cart/ExtraPoints/ExtraPoints.php -------------------------------------------------------------------------------- /src/Api/Purchases/Create/Response/Cart/MarketingAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15web/sailplay-php/HEAD/src/Api/Purchases/Create/Response/Cart/MarketingAction.php -------------------------------------------------------------------------------- /src/Api/Purchases/Create/Response/Cart/Positions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15web/sailplay-php/HEAD/src/Api/Purchases/Create/Response/Cart/Positions.php -------------------------------------------------------------------------------- /src/Api/Purchases/Create/Response/Cart/Positions/Category.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15web/sailplay-php/HEAD/src/Api/Purchases/Create/Response/Cart/Positions/Category.php -------------------------------------------------------------------------------- /src/Api/Purchases/Create/Response/Cart/Positions/ExpiryInfo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15web/sailplay-php/HEAD/src/Api/Purchases/Create/Response/Cart/Positions/ExpiryInfo.php -------------------------------------------------------------------------------- /src/Api/Purchases/Create/Response/Cart/Positions/Product.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15web/sailplay-php/HEAD/src/Api/Purchases/Create/Response/Cart/Positions/Product.php -------------------------------------------------------------------------------- /src/Api/Purchases/Create/Response/Cart/Recommendation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15web/sailplay-php/HEAD/src/Api/Purchases/Create/Response/Cart/Recommendation.php -------------------------------------------------------------------------------- /src/Api/Purchases/Create/Response/Cart/TextBlock.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15web/sailplay-php/HEAD/src/Api/Purchases/Create/Response/Cart/TextBlock.php -------------------------------------------------------------------------------- /src/Api/Purchases/Create/Response/CreatePurchasesResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15web/sailplay-php/HEAD/src/Api/Purchases/Create/Response/CreatePurchasesResponse.php -------------------------------------------------------------------------------- /src/Api/Purchases/Create/Response/Purchase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15web/sailplay-php/HEAD/src/Api/Purchases/Create/Response/Purchase.php -------------------------------------------------------------------------------- /src/Api/Purchases/PurchaseAttributes/Add/Add.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15web/sailplay-php/HEAD/src/Api/Purchases/PurchaseAttributes/Add/Add.php -------------------------------------------------------------------------------- /src/Api/Purchases/PurchaseAttributes/Add/AddRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15web/sailplay-php/HEAD/src/Api/Purchases/PurchaseAttributes/Add/AddRequest.php -------------------------------------------------------------------------------- /src/Api/Purchases/PurchaseAttributes/Add/AddResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15web/sailplay-php/HEAD/src/Api/Purchases/PurchaseAttributes/Add/AddResponse.php -------------------------------------------------------------------------------- /src/Api/Purchases/PurchaseAttributes/AddValues/AddValuesPurchaseAttributes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15web/sailplay-php/HEAD/src/Api/Purchases/PurchaseAttributes/AddValues/AddValuesPurchaseAttributes.php -------------------------------------------------------------------------------- /src/Api/Purchases/PurchaseAttributes/AddValues/AddValuesPurchaseAttributesRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15web/sailplay-php/HEAD/src/Api/Purchases/PurchaseAttributes/AddValues/AddValuesPurchaseAttributesRequest.php -------------------------------------------------------------------------------- /src/Api/Purchases/PurchaseAttributes/AddValues/AddValuesPurchaseAttributesResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15web/sailplay-php/HEAD/src/Api/Purchases/PurchaseAttributes/AddValues/AddValuesPurchaseAttributesResponse.php -------------------------------------------------------------------------------- /src/Api/Purchases/PurchaseAttributes/Delete/DeletePurchaseAttributes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15web/sailplay-php/HEAD/src/Api/Purchases/PurchaseAttributes/Delete/DeletePurchaseAttributes.php -------------------------------------------------------------------------------- /src/Api/Purchases/PurchaseAttributes/Delete/DeletePurchaseAttributesRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15web/sailplay-php/HEAD/src/Api/Purchases/PurchaseAttributes/Delete/DeletePurchaseAttributesRequest.php -------------------------------------------------------------------------------- /src/Api/Purchases/PurchaseAttributes/Delete/DeletePurchaseAttributesResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15web/sailplay-php/HEAD/src/Api/Purchases/PurchaseAttributes/Delete/DeletePurchaseAttributesResponse.php -------------------------------------------------------------------------------- /src/Api/Purchases/PurchaseAttributes/DeleteValues/DeleteValuesPurchaseAttributes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15web/sailplay-php/HEAD/src/Api/Purchases/PurchaseAttributes/DeleteValues/DeleteValuesPurchaseAttributes.php -------------------------------------------------------------------------------- /src/Api/Purchases/PurchaseAttributes/DeleteValues/DeleteValuesPurchaseAttributesRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15web/sailplay-php/HEAD/src/Api/Purchases/PurchaseAttributes/DeleteValues/DeleteValuesPurchaseAttributesRequest.php -------------------------------------------------------------------------------- /src/Api/Purchases/PurchaseAttributes/DeleteValues/DeleteValuesPurchaseAttributesResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15web/sailplay-php/HEAD/src/Api/Purchases/PurchaseAttributes/DeleteValues/DeleteValuesPurchaseAttributesResponse.php -------------------------------------------------------------------------------- /src/Api/Purchases/PurchaseAttributes/ListAll/ListPurchaseAttributes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15web/sailplay-php/HEAD/src/Api/Purchases/PurchaseAttributes/ListAll/ListPurchaseAttributes.php -------------------------------------------------------------------------------- /src/Api/Purchases/PurchaseAttributes/ListAll/ListPurchaseAttributesRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15web/sailplay-php/HEAD/src/Api/Purchases/PurchaseAttributes/ListAll/ListPurchaseAttributesRequest.php -------------------------------------------------------------------------------- /src/Api/Purchases/PurchaseAttributes/ListAll/Response/Attribute.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15web/sailplay-php/HEAD/src/Api/Purchases/PurchaseAttributes/ListAll/Response/Attribute.php -------------------------------------------------------------------------------- /src/Api/Purchases/PurchaseAttributes/ListAll/Response/ListPurchaseAttributesResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15web/sailplay-php/HEAD/src/Api/Purchases/PurchaseAttributes/ListAll/Response/ListPurchaseAttributesResponse.php -------------------------------------------------------------------------------- /src/Api/Purchases/PurchaseAttributes/ListValues/ListValuesPurchaseAttributes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15web/sailplay-php/HEAD/src/Api/Purchases/PurchaseAttributes/ListValues/ListValuesPurchaseAttributes.php -------------------------------------------------------------------------------- /src/Api/Purchases/PurchaseAttributes/ListValues/ListValuesPurchaseAttributesRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15web/sailplay-php/HEAD/src/Api/Purchases/PurchaseAttributes/ListValues/ListValuesPurchaseAttributesRequest.php -------------------------------------------------------------------------------- /src/Api/Purchases/PurchaseAttributes/ListValues/Response/ListValuesPurchaseAttributesResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15web/sailplay-php/HEAD/src/Api/Purchases/PurchaseAttributes/ListValues/Response/ListValuesPurchaseAttributesResponse.php -------------------------------------------------------------------------------- /src/Api/Purchases/PurchaseAttributes/ListValues/Response/PurchaseAttributeValue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15web/sailplay-php/HEAD/src/Api/Purchases/PurchaseAttributes/ListValues/Response/PurchaseAttributeValue.php -------------------------------------------------------------------------------- /src/Api/Users/AddUser/AddUser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15web/sailplay-php/HEAD/src/Api/Users/AddUser/AddUser.php -------------------------------------------------------------------------------- /src/Api/Users/AddUser/AddUserRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15web/sailplay-php/HEAD/src/Api/Users/AddUser/AddUserRequest.php -------------------------------------------------------------------------------- /src/Api/Users/AddUser/Response/AddUserResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15web/sailplay-php/HEAD/src/Api/Users/AddUser/Response/AddUserResponse.php -------------------------------------------------------------------------------- /src/Api/Users/Info/Info.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15web/sailplay-php/HEAD/src/Api/Users/Info/Info.php -------------------------------------------------------------------------------- /src/Api/Users/Info/InfoRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15web/sailplay-php/HEAD/src/Api/Users/Info/InfoRequest.php -------------------------------------------------------------------------------- /src/Api/Users/Info/Response/History.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15web/sailplay-php/HEAD/src/Api/Users/Info/Response/History.php -------------------------------------------------------------------------------- /src/Api/Users/Info/Response/History/ExpiryInfo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15web/sailplay-php/HEAD/src/Api/Users/Info/Response/History/ExpiryInfo.php -------------------------------------------------------------------------------- /src/Api/Users/Info/Response/InfoResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15web/sailplay-php/HEAD/src/Api/Users/Info/Response/InfoResponse.php -------------------------------------------------------------------------------- /src/Api/Users/Info/Response/Points.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15web/sailplay-php/HEAD/src/Api/Users/Info/Response/Points.php -------------------------------------------------------------------------------- /src/Api/Users/UserNotFoundException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15web/sailplay-php/HEAD/src/Api/Users/UserNotFoundException.php -------------------------------------------------------------------------------- /src/Infrastructure/ApiHttpClient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15web/sailplay-php/HEAD/src/Infrastructure/ApiHttpClient.php -------------------------------------------------------------------------------- /src/Infrastructure/DefaultApiHttpClient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15web/sailplay-php/HEAD/src/Infrastructure/DefaultApiHttpClient.php -------------------------------------------------------------------------------- /src/Infrastructure/Error/ApiErrorException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15web/sailplay-php/HEAD/src/Infrastructure/Error/ApiErrorException.php -------------------------------------------------------------------------------- /src/Infrastructure/Http/RequestFactory/DefaultServerRequestFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15web/sailplay-php/HEAD/src/Infrastructure/Http/RequestFactory/DefaultServerRequestFactory.php -------------------------------------------------------------------------------- /src/Infrastructure/Serializer/JsonObject/JsonObject.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15web/sailplay-php/HEAD/src/Infrastructure/Serializer/JsonObject/JsonObject.php -------------------------------------------------------------------------------- /src/Infrastructure/Serializer/JsonObject/JsonObjectNormalizer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15web/sailplay-php/HEAD/src/Infrastructure/Serializer/JsonObject/JsonObjectNormalizer.php -------------------------------------------------------------------------------- /src/Infrastructure/Serializer/JsonObject/JsonObjectsArray.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15web/sailplay-php/HEAD/src/Infrastructure/Serializer/JsonObject/JsonObjectsArray.php -------------------------------------------------------------------------------- /src/Infrastructure/Serializer/JsonObjectsAssociativeArray/JsonObjectsAssociativeArray.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15web/sailplay-php/HEAD/src/Infrastructure/Serializer/JsonObjectsAssociativeArray/JsonObjectsAssociativeArray.php -------------------------------------------------------------------------------- /src/Infrastructure/Serializer/JsonObjectsAssociativeArray/JsonObjectsAssociativeArrayItemInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15web/sailplay-php/HEAD/src/Infrastructure/Serializer/JsonObjectsAssociativeArray/JsonObjectsAssociativeArrayItemInterface.php -------------------------------------------------------------------------------- /src/Infrastructure/Serializer/JsonObjectsAssociativeArray/JsonObjectsAssociativeArrayNormalizer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15web/sailplay-php/HEAD/src/Infrastructure/Serializer/JsonObjectsAssociativeArray/JsonObjectsAssociativeArrayNormalizer.php -------------------------------------------------------------------------------- /src/Infrastructure/Serializer/StringsArrayNormalizer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15web/sailplay-php/HEAD/src/Infrastructure/Serializer/StringsArrayNormalizer.php -------------------------------------------------------------------------------- /src/Infrastructure/Serializer/YearMonthDay/YearMonthDay.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15web/sailplay-php/HEAD/src/Infrastructure/Serializer/YearMonthDay/YearMonthDay.php -------------------------------------------------------------------------------- /src/Infrastructure/Serializer/YearMonthDay/YearMonthDayNormalizer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15web/sailplay-php/HEAD/src/Infrastructure/Serializer/YearMonthDay/YearMonthDayNormalizer.php -------------------------------------------------------------------------------- /src/SailPlayApi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15web/sailplay-php/HEAD/src/SailPlayApi.php -------------------------------------------------------------------------------- /tests/code-quality/.php-cs-fixer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15web/sailplay-php/HEAD/tests/code-quality/.php-cs-fixer.php -------------------------------------------------------------------------------- /tests/code-quality/phpcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15web/sailplay-php/HEAD/tests/code-quality/phpcs.xml -------------------------------------------------------------------------------- /tests/code-quality/phpstan-baseline.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15web/sailplay-php/HEAD/tests/code-quality/phpstan-baseline.neon -------------------------------------------------------------------------------- /tests/code-quality/phpstan.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15web/sailplay-php/HEAD/tests/code-quality/phpstan.neon -------------------------------------------------------------------------------- /tests/code-quality/tmp/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/functional/.env.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15web/sailplay-php/HEAD/tests/functional/.env.dist -------------------------------------------------------------------------------- /tests/functional/Login/login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15web/sailplay-php/HEAD/tests/functional/Login/login.php -------------------------------------------------------------------------------- /tests/functional/MarketingActions/Calc/light.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15web/sailplay-php/HEAD/tests/functional/MarketingActions/Calc/light.php -------------------------------------------------------------------------------- /tests/functional/Promocodes/activate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15web/sailplay-php/HEAD/tests/functional/Promocodes/activate.php -------------------------------------------------------------------------------- /tests/functional/Promocodes/issue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15web/sailplay-php/HEAD/tests/functional/Promocodes/issue.php -------------------------------------------------------------------------------- /tests/functional/Promocodes/list-for-user.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15web/sailplay-php/HEAD/tests/functional/Promocodes/list-for-user.php -------------------------------------------------------------------------------- /tests/functional/Promocodes/list-groups.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15web/sailplay-php/HEAD/tests/functional/Promocodes/list-groups.php -------------------------------------------------------------------------------- /tests/functional/Promocodes/search.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15web/sailplay-php/HEAD/tests/functional/Promocodes/search.php -------------------------------------------------------------------------------- /tests/functional/Purchases/PurchaseAttributes/add-values.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15web/sailplay-php/HEAD/tests/functional/Purchases/PurchaseAttributes/add-values.php -------------------------------------------------------------------------------- /tests/functional/Purchases/PurchaseAttributes/add.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15web/sailplay-php/HEAD/tests/functional/Purchases/PurchaseAttributes/add.php -------------------------------------------------------------------------------- /tests/functional/Purchases/PurchaseAttributes/delete-values.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15web/sailplay-php/HEAD/tests/functional/Purchases/PurchaseAttributes/delete-values.php -------------------------------------------------------------------------------- /tests/functional/Purchases/PurchaseAttributes/delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15web/sailplay-php/HEAD/tests/functional/Purchases/PurchaseAttributes/delete.php -------------------------------------------------------------------------------- /tests/functional/Purchases/PurchaseAttributes/list-values.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15web/sailplay-php/HEAD/tests/functional/Purchases/PurchaseAttributes/list-values.php -------------------------------------------------------------------------------- /tests/functional/Purchases/PurchaseAttributes/list.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15web/sailplay-php/HEAD/tests/functional/Purchases/PurchaseAttributes/list.php -------------------------------------------------------------------------------- /tests/functional/Purchases/new.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15web/sailplay-php/HEAD/tests/functional/Purchases/new.php -------------------------------------------------------------------------------- /tests/functional/Users/add.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15web/sailplay-php/HEAD/tests/functional/Users/add.php -------------------------------------------------------------------------------- /tests/functional/Users/info.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15web/sailplay-php/HEAD/tests/functional/Users/info.php -------------------------------------------------------------------------------- /tests/functional/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15web/sailplay-php/HEAD/tests/functional/bootstrap.php -------------------------------------------------------------------------------- /tests/unit/Http/RequestFactory/DefaultRequestFactoryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15web/sailplay-php/HEAD/tests/unit/Http/RequestFactory/DefaultRequestFactoryTest.php -------------------------------------------------------------------------------- /tests/unit/Infrastructure/Serializer/JsonObject/Inner.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15web/sailplay-php/HEAD/tests/unit/Infrastructure/Serializer/JsonObject/Inner.php -------------------------------------------------------------------------------- /tests/unit/Infrastructure/Serializer/JsonObject/JsonObjectNormalizerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15web/sailplay-php/HEAD/tests/unit/Infrastructure/Serializer/JsonObject/JsonObjectNormalizerTest.php -------------------------------------------------------------------------------- /tests/unit/Infrastructure/Serializer/StringsArrayNormalizerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15web/sailplay-php/HEAD/tests/unit/Infrastructure/Serializer/StringsArrayNormalizerTest.php --------------------------------------------------------------------------------