├── .claude └── settings.local.json ├── .editorconfig ├── .gitattributes ├── .gitignore ├── CLAUDE.md ├── LICENSE.md ├── README.md ├── bootstrap └── app.php ├── box.json ├── codegen ├── composer.json ├── composer.lock ├── config ├── app.php └── commands.php ├── phpunit.xml ├── src ├── CodeGenerator.php ├── Commands │ ├── Convert.php │ └── GenerateSdk.php ├── Contracts │ ├── Generator.php │ ├── Parser.php │ └── PostProcessor.php ├── Converters │ └── OpenApiConverter.php ├── Data │ ├── Generator │ │ ├── ApiKeyLocation.php │ │ ├── ApiSpecification.php │ │ ├── BaseUrl.php │ │ ├── Components.php │ │ ├── Config.php │ │ ├── Endpoint.php │ │ ├── GeneratedCode.php │ │ ├── Method.php │ │ ├── Parameter.php │ │ ├── SecurityRequirement.php │ │ ├── SecurityScheme.php │ │ ├── SecuritySchemeType.php │ │ └── ServerParameter.php │ ├── Postman │ │ ├── Body.php │ │ ├── Event.php │ │ ├── Info.php │ │ ├── Item.php │ │ ├── ItemGroup.php │ │ ├── PostmanCollection.php │ │ ├── Request.php │ │ ├── Url.php │ │ └── Variable.php │ ├── Saloon │ │ └── GeneratedFile.php │ └── TaggedOutputFile.php ├── Exceptions │ ├── ConversionFailedException.php │ └── ParserNotRegisteredException.php ├── Factory.php ├── Generator.php ├── Generators │ ├── ComposerGenerator.php │ ├── ConnectorGenerator.php │ ├── DtoGenerator.php │ ├── PestTestGenerator.php │ ├── RequestGenerator.php │ └── ResourceGenerator.php ├── Helpers │ ├── MethodGeneratorHelper.php │ ├── NameHelper.php │ ├── TemplateHelper.php │ └── Utils.php ├── Parsers │ ├── OpenApiParser.php │ └── PostmanCollectionParser.php ├── Providers │ └── AppServiceProvider.php └── Stubs │ ├── pest-resource-test-func.stub │ ├── pest-resource-test.stub │ ├── pest-testcase.stub │ └── pest.stub └── tests ├── ArchTest.php ├── CreatesApplication.php ├── Feature ├── .gitkeep ├── ConverterTest.php └── SmokeTest.php ├── Output └── .gitkeep ├── Pest.php ├── Samples ├── altinn.json ├── bigcommerce_abandoned_carts.v3.yml ├── checkmango.json ├── crescat.yaml ├── docuseal.yml ├── drive.json ├── fiken.yaml ├── gocardless.json ├── kassalapp.json ├── nested-refs.yml ├── openai.json ├── paddle-billing.yaml ├── paddle-openapi.yaml ├── paddle.json ├── spotify.yml ├── stripe.json ├── tableau.json ├── test-headers-api.yml ├── test-headers-postman.json ├── tripletex.converted.json ├── tripletex.json └── vegvesen.json ├── TestCase.php └── Unit ├── Generators ├── AuthenticatorTest.php ├── ComposerGeneratorTest.php ├── ConnectorGeneratorTest.php ├── DtoGeneratorTest.php ├── DtoNestedReferencesTest.php ├── HeaderFilteringTest.php ├── HeadersTest.php ├── PestTestGeneratorTest.php ├── RequestGeneratorTest.php └── ResourceGeneratorTest.php ├── Helpers ├── NameHelperTest.php └── TemplateHelperTest.php └── Parsers ├── OpenApiParserTest.php ├── OpenApiReferenceTest.php ├── PostmanCollectionParserTest.php └── PostmanHeadersTest.php /.claude/settings.local.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crescat-io/saloon-sdk-generator/HEAD/.claude/settings.local.json -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crescat-io/saloon-sdk-generator/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crescat-io/saloon-sdk-generator/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crescat-io/saloon-sdk-generator/HEAD/.gitignore -------------------------------------------------------------------------------- /CLAUDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crescat-io/saloon-sdk-generator/HEAD/CLAUDE.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crescat-io/saloon-sdk-generator/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crescat-io/saloon-sdk-generator/HEAD/README.md -------------------------------------------------------------------------------- /bootstrap/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crescat-io/saloon-sdk-generator/HEAD/bootstrap/app.php -------------------------------------------------------------------------------- /box.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crescat-io/saloon-sdk-generator/HEAD/box.json -------------------------------------------------------------------------------- /codegen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crescat-io/saloon-sdk-generator/HEAD/codegen -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crescat-io/saloon-sdk-generator/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crescat-io/saloon-sdk-generator/HEAD/composer.lock -------------------------------------------------------------------------------- /config/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crescat-io/saloon-sdk-generator/HEAD/config/app.php -------------------------------------------------------------------------------- /config/commands.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crescat-io/saloon-sdk-generator/HEAD/config/commands.php -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crescat-io/saloon-sdk-generator/HEAD/phpunit.xml -------------------------------------------------------------------------------- /src/CodeGenerator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crescat-io/saloon-sdk-generator/HEAD/src/CodeGenerator.php -------------------------------------------------------------------------------- /src/Commands/Convert.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crescat-io/saloon-sdk-generator/HEAD/src/Commands/Convert.php -------------------------------------------------------------------------------- /src/Commands/GenerateSdk.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crescat-io/saloon-sdk-generator/HEAD/src/Commands/GenerateSdk.php -------------------------------------------------------------------------------- /src/Contracts/Generator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crescat-io/saloon-sdk-generator/HEAD/src/Contracts/Generator.php -------------------------------------------------------------------------------- /src/Contracts/Parser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crescat-io/saloon-sdk-generator/HEAD/src/Contracts/Parser.php -------------------------------------------------------------------------------- /src/Contracts/PostProcessor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crescat-io/saloon-sdk-generator/HEAD/src/Contracts/PostProcessor.php -------------------------------------------------------------------------------- /src/Converters/OpenApiConverter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crescat-io/saloon-sdk-generator/HEAD/src/Converters/OpenApiConverter.php -------------------------------------------------------------------------------- /src/Data/Generator/ApiKeyLocation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crescat-io/saloon-sdk-generator/HEAD/src/Data/Generator/ApiKeyLocation.php -------------------------------------------------------------------------------- /src/Data/Generator/ApiSpecification.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crescat-io/saloon-sdk-generator/HEAD/src/Data/Generator/ApiSpecification.php -------------------------------------------------------------------------------- /src/Data/Generator/BaseUrl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crescat-io/saloon-sdk-generator/HEAD/src/Data/Generator/BaseUrl.php -------------------------------------------------------------------------------- /src/Data/Generator/Components.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crescat-io/saloon-sdk-generator/HEAD/src/Data/Generator/Components.php -------------------------------------------------------------------------------- /src/Data/Generator/Config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crescat-io/saloon-sdk-generator/HEAD/src/Data/Generator/Config.php -------------------------------------------------------------------------------- /src/Data/Generator/Endpoint.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crescat-io/saloon-sdk-generator/HEAD/src/Data/Generator/Endpoint.php -------------------------------------------------------------------------------- /src/Data/Generator/GeneratedCode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crescat-io/saloon-sdk-generator/HEAD/src/Data/Generator/GeneratedCode.php -------------------------------------------------------------------------------- /src/Data/Generator/Method.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crescat-io/saloon-sdk-generator/HEAD/src/Data/Generator/Method.php -------------------------------------------------------------------------------- /src/Data/Generator/Parameter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crescat-io/saloon-sdk-generator/HEAD/src/Data/Generator/Parameter.php -------------------------------------------------------------------------------- /src/Data/Generator/SecurityRequirement.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crescat-io/saloon-sdk-generator/HEAD/src/Data/Generator/SecurityRequirement.php -------------------------------------------------------------------------------- /src/Data/Generator/SecurityScheme.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crescat-io/saloon-sdk-generator/HEAD/src/Data/Generator/SecurityScheme.php -------------------------------------------------------------------------------- /src/Data/Generator/SecuritySchemeType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crescat-io/saloon-sdk-generator/HEAD/src/Data/Generator/SecuritySchemeType.php -------------------------------------------------------------------------------- /src/Data/Generator/ServerParameter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crescat-io/saloon-sdk-generator/HEAD/src/Data/Generator/ServerParameter.php -------------------------------------------------------------------------------- /src/Data/Postman/Body.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crescat-io/saloon-sdk-generator/HEAD/src/Data/Postman/Body.php -------------------------------------------------------------------------------- /src/Data/Postman/Event.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crescat-io/saloon-sdk-generator/HEAD/src/Data/Postman/Event.php -------------------------------------------------------------------------------- /src/Data/Postman/Info.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crescat-io/saloon-sdk-generator/HEAD/src/Data/Postman/Info.php -------------------------------------------------------------------------------- /src/Data/Postman/Item.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crescat-io/saloon-sdk-generator/HEAD/src/Data/Postman/Item.php -------------------------------------------------------------------------------- /src/Data/Postman/ItemGroup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crescat-io/saloon-sdk-generator/HEAD/src/Data/Postman/ItemGroup.php -------------------------------------------------------------------------------- /src/Data/Postman/PostmanCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crescat-io/saloon-sdk-generator/HEAD/src/Data/Postman/PostmanCollection.php -------------------------------------------------------------------------------- /src/Data/Postman/Request.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crescat-io/saloon-sdk-generator/HEAD/src/Data/Postman/Request.php -------------------------------------------------------------------------------- /src/Data/Postman/Url.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crescat-io/saloon-sdk-generator/HEAD/src/Data/Postman/Url.php -------------------------------------------------------------------------------- /src/Data/Postman/Variable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crescat-io/saloon-sdk-generator/HEAD/src/Data/Postman/Variable.php -------------------------------------------------------------------------------- /src/Data/Saloon/GeneratedFile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crescat-io/saloon-sdk-generator/HEAD/src/Data/Saloon/GeneratedFile.php -------------------------------------------------------------------------------- /src/Data/TaggedOutputFile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crescat-io/saloon-sdk-generator/HEAD/src/Data/TaggedOutputFile.php -------------------------------------------------------------------------------- /src/Exceptions/ConversionFailedException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crescat-io/saloon-sdk-generator/HEAD/src/Exceptions/ConversionFailedException.php -------------------------------------------------------------------------------- /src/Exceptions/ParserNotRegisteredException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crescat-io/saloon-sdk-generator/HEAD/src/Exceptions/ParserNotRegisteredException.php -------------------------------------------------------------------------------- /src/Factory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crescat-io/saloon-sdk-generator/HEAD/src/Factory.php -------------------------------------------------------------------------------- /src/Generator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crescat-io/saloon-sdk-generator/HEAD/src/Generator.php -------------------------------------------------------------------------------- /src/Generators/ComposerGenerator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crescat-io/saloon-sdk-generator/HEAD/src/Generators/ComposerGenerator.php -------------------------------------------------------------------------------- /src/Generators/ConnectorGenerator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crescat-io/saloon-sdk-generator/HEAD/src/Generators/ConnectorGenerator.php -------------------------------------------------------------------------------- /src/Generators/DtoGenerator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crescat-io/saloon-sdk-generator/HEAD/src/Generators/DtoGenerator.php -------------------------------------------------------------------------------- /src/Generators/PestTestGenerator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crescat-io/saloon-sdk-generator/HEAD/src/Generators/PestTestGenerator.php -------------------------------------------------------------------------------- /src/Generators/RequestGenerator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crescat-io/saloon-sdk-generator/HEAD/src/Generators/RequestGenerator.php -------------------------------------------------------------------------------- /src/Generators/ResourceGenerator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crescat-io/saloon-sdk-generator/HEAD/src/Generators/ResourceGenerator.php -------------------------------------------------------------------------------- /src/Helpers/MethodGeneratorHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crescat-io/saloon-sdk-generator/HEAD/src/Helpers/MethodGeneratorHelper.php -------------------------------------------------------------------------------- /src/Helpers/NameHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crescat-io/saloon-sdk-generator/HEAD/src/Helpers/NameHelper.php -------------------------------------------------------------------------------- /src/Helpers/TemplateHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crescat-io/saloon-sdk-generator/HEAD/src/Helpers/TemplateHelper.php -------------------------------------------------------------------------------- /src/Helpers/Utils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crescat-io/saloon-sdk-generator/HEAD/src/Helpers/Utils.php -------------------------------------------------------------------------------- /src/Parsers/OpenApiParser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crescat-io/saloon-sdk-generator/HEAD/src/Parsers/OpenApiParser.php -------------------------------------------------------------------------------- /src/Parsers/PostmanCollectionParser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crescat-io/saloon-sdk-generator/HEAD/src/Parsers/PostmanCollectionParser.php -------------------------------------------------------------------------------- /src/Providers/AppServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crescat-io/saloon-sdk-generator/HEAD/src/Providers/AppServiceProvider.php -------------------------------------------------------------------------------- /src/Stubs/pest-resource-test-func.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crescat-io/saloon-sdk-generator/HEAD/src/Stubs/pest-resource-test-func.stub -------------------------------------------------------------------------------- /src/Stubs/pest-resource-test.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crescat-io/saloon-sdk-generator/HEAD/src/Stubs/pest-resource-test.stub -------------------------------------------------------------------------------- /src/Stubs/pest-testcase.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crescat-io/saloon-sdk-generator/HEAD/src/Stubs/pest-testcase.stub -------------------------------------------------------------------------------- /src/Stubs/pest.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crescat-io/saloon-sdk-generator/HEAD/src/Stubs/pest.stub -------------------------------------------------------------------------------- /tests/ArchTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crescat-io/saloon-sdk-generator/HEAD/tests/ArchTest.php -------------------------------------------------------------------------------- /tests/CreatesApplication.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crescat-io/saloon-sdk-generator/HEAD/tests/CreatesApplication.php -------------------------------------------------------------------------------- /tests/Feature/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/Feature/ConverterTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crescat-io/saloon-sdk-generator/HEAD/tests/Feature/ConverterTest.php -------------------------------------------------------------------------------- /tests/Feature/SmokeTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crescat-io/saloon-sdk-generator/HEAD/tests/Feature/SmokeTest.php -------------------------------------------------------------------------------- /tests/Output/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/Pest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crescat-io/saloon-sdk-generator/HEAD/tests/Pest.php -------------------------------------------------------------------------------- /tests/Samples/altinn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crescat-io/saloon-sdk-generator/HEAD/tests/Samples/altinn.json -------------------------------------------------------------------------------- /tests/Samples/bigcommerce_abandoned_carts.v3.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crescat-io/saloon-sdk-generator/HEAD/tests/Samples/bigcommerce_abandoned_carts.v3.yml -------------------------------------------------------------------------------- /tests/Samples/checkmango.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crescat-io/saloon-sdk-generator/HEAD/tests/Samples/checkmango.json -------------------------------------------------------------------------------- /tests/Samples/crescat.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crescat-io/saloon-sdk-generator/HEAD/tests/Samples/crescat.yaml -------------------------------------------------------------------------------- /tests/Samples/docuseal.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crescat-io/saloon-sdk-generator/HEAD/tests/Samples/docuseal.yml -------------------------------------------------------------------------------- /tests/Samples/drive.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crescat-io/saloon-sdk-generator/HEAD/tests/Samples/drive.json -------------------------------------------------------------------------------- /tests/Samples/fiken.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crescat-io/saloon-sdk-generator/HEAD/tests/Samples/fiken.yaml -------------------------------------------------------------------------------- /tests/Samples/gocardless.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crescat-io/saloon-sdk-generator/HEAD/tests/Samples/gocardless.json -------------------------------------------------------------------------------- /tests/Samples/kassalapp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crescat-io/saloon-sdk-generator/HEAD/tests/Samples/kassalapp.json -------------------------------------------------------------------------------- /tests/Samples/nested-refs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crescat-io/saloon-sdk-generator/HEAD/tests/Samples/nested-refs.yml -------------------------------------------------------------------------------- /tests/Samples/openai.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crescat-io/saloon-sdk-generator/HEAD/tests/Samples/openai.json -------------------------------------------------------------------------------- /tests/Samples/paddle-billing.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crescat-io/saloon-sdk-generator/HEAD/tests/Samples/paddle-billing.yaml -------------------------------------------------------------------------------- /tests/Samples/paddle-openapi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crescat-io/saloon-sdk-generator/HEAD/tests/Samples/paddle-openapi.yaml -------------------------------------------------------------------------------- /tests/Samples/paddle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crescat-io/saloon-sdk-generator/HEAD/tests/Samples/paddle.json -------------------------------------------------------------------------------- /tests/Samples/spotify.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crescat-io/saloon-sdk-generator/HEAD/tests/Samples/spotify.yml -------------------------------------------------------------------------------- /tests/Samples/stripe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crescat-io/saloon-sdk-generator/HEAD/tests/Samples/stripe.json -------------------------------------------------------------------------------- /tests/Samples/tableau.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crescat-io/saloon-sdk-generator/HEAD/tests/Samples/tableau.json -------------------------------------------------------------------------------- /tests/Samples/test-headers-api.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crescat-io/saloon-sdk-generator/HEAD/tests/Samples/test-headers-api.yml -------------------------------------------------------------------------------- /tests/Samples/test-headers-postman.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crescat-io/saloon-sdk-generator/HEAD/tests/Samples/test-headers-postman.json -------------------------------------------------------------------------------- /tests/Samples/tripletex.converted.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crescat-io/saloon-sdk-generator/HEAD/tests/Samples/tripletex.converted.json -------------------------------------------------------------------------------- /tests/Samples/tripletex.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crescat-io/saloon-sdk-generator/HEAD/tests/Samples/tripletex.json -------------------------------------------------------------------------------- /tests/Samples/vegvesen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crescat-io/saloon-sdk-generator/HEAD/tests/Samples/vegvesen.json -------------------------------------------------------------------------------- /tests/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crescat-io/saloon-sdk-generator/HEAD/tests/TestCase.php -------------------------------------------------------------------------------- /tests/Unit/Generators/AuthenticatorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crescat-io/saloon-sdk-generator/HEAD/tests/Unit/Generators/AuthenticatorTest.php -------------------------------------------------------------------------------- /tests/Unit/Generators/ComposerGeneratorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crescat-io/saloon-sdk-generator/HEAD/tests/Unit/Generators/ComposerGeneratorTest.php -------------------------------------------------------------------------------- /tests/Unit/Generators/ConnectorGeneratorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crescat-io/saloon-sdk-generator/HEAD/tests/Unit/Generators/ConnectorGeneratorTest.php -------------------------------------------------------------------------------- /tests/Unit/Generators/DtoGeneratorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crescat-io/saloon-sdk-generator/HEAD/tests/Unit/Generators/DtoGeneratorTest.php -------------------------------------------------------------------------------- /tests/Unit/Generators/DtoNestedReferencesTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crescat-io/saloon-sdk-generator/HEAD/tests/Unit/Generators/DtoNestedReferencesTest.php -------------------------------------------------------------------------------- /tests/Unit/Generators/HeaderFilteringTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crescat-io/saloon-sdk-generator/HEAD/tests/Unit/Generators/HeaderFilteringTest.php -------------------------------------------------------------------------------- /tests/Unit/Generators/HeadersTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crescat-io/saloon-sdk-generator/HEAD/tests/Unit/Generators/HeadersTest.php -------------------------------------------------------------------------------- /tests/Unit/Generators/PestTestGeneratorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crescat-io/saloon-sdk-generator/HEAD/tests/Unit/Generators/PestTestGeneratorTest.php -------------------------------------------------------------------------------- /tests/Unit/Generators/RequestGeneratorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crescat-io/saloon-sdk-generator/HEAD/tests/Unit/Generators/RequestGeneratorTest.php -------------------------------------------------------------------------------- /tests/Unit/Generators/ResourceGeneratorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crescat-io/saloon-sdk-generator/HEAD/tests/Unit/Generators/ResourceGeneratorTest.php -------------------------------------------------------------------------------- /tests/Unit/Helpers/NameHelperTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crescat-io/saloon-sdk-generator/HEAD/tests/Unit/Helpers/NameHelperTest.php -------------------------------------------------------------------------------- /tests/Unit/Helpers/TemplateHelperTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crescat-io/saloon-sdk-generator/HEAD/tests/Unit/Helpers/TemplateHelperTest.php -------------------------------------------------------------------------------- /tests/Unit/Parsers/OpenApiParserTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crescat-io/saloon-sdk-generator/HEAD/tests/Unit/Parsers/OpenApiParserTest.php -------------------------------------------------------------------------------- /tests/Unit/Parsers/OpenApiReferenceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crescat-io/saloon-sdk-generator/HEAD/tests/Unit/Parsers/OpenApiReferenceTest.php -------------------------------------------------------------------------------- /tests/Unit/Parsers/PostmanCollectionParserTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crescat-io/saloon-sdk-generator/HEAD/tests/Unit/Parsers/PostmanCollectionParserTest.php -------------------------------------------------------------------------------- /tests/Unit/Parsers/PostmanHeadersTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crescat-io/saloon-sdk-generator/HEAD/tests/Unit/Parsers/PostmanHeadersTest.php --------------------------------------------------------------------------------