├── .github ├── FUNDING.yml └── workflows │ ├── ci.yml │ ├── docker.yml │ └── typehub.yml ├── Dockerfile ├── LICENSE ├── README.md ├── docker-compose.yml ├── specification └── typeschema.json ├── tests ├── README.md ├── level_1_format.json ├── level_1_simple.json ├── level_2_array_inline_reference.json ├── level_2_array_inline_string.json ├── level_2_array_reference.json ├── level_2_array_string.json ├── level_2_map_inline_reference.json ├── level_2_map_inline_string.json ├── level_2_map_reference.json ├── level_2_map_string.json ├── level_3_inheritance.json ├── level_4_generic.json ├── level_5_discriminator.json └── sdkgen.json └── www ├── .env ├── build.php ├── cache └── empty ├── composer.json ├── composer.lock ├── configuration.php ├── container.php ├── psalm.xml ├── public ├── .htaccess ├── css │ ├── app.css │ ├── app.min.css │ ├── bootstrap.min.css │ └── highlight.min.css ├── img │ ├── favicon.ico │ ├── github-32.png │ ├── logo.png │ ├── typeschema_flow.png │ └── typeschema_structure.png ├── index.php └── js │ ├── app.min.js │ ├── bootstrap.min.js │ ├── highlight.min.js │ ├── jquery.min.js │ └── popper.min.js ├── resources ├── container.php ├── examples │ ├── discriminator.json │ ├── generic.json │ ├── import.json │ ├── inheritance.json │ ├── map.json │ ├── map_inline.json │ ├── reference.json │ └── simple.json ├── template │ ├── developer.php │ ├── ecosystem.php │ ├── example.php │ ├── generator.php │ ├── generator │ │ └── form.php │ ├── history.php │ ├── inc │ │ ├── footer.php │ │ └── header.php │ ├── index.php │ ├── integration.php │ ├── integration │ │ ├── csharp_description.html │ │ ├── csharp_dto.txt │ │ ├── csharp_integration.txt │ │ ├── detail.php │ │ ├── go_description.html │ │ ├── go_dto.txt │ │ ├── go_integration.txt │ │ ├── java_description.html │ │ ├── java_dto.txt │ │ ├── java_integration.txt │ │ ├── php_description.html │ │ ├── php_dto.txt │ │ ├── php_integration.txt │ │ ├── python_description.html │ │ ├── python_dto.txt │ │ ├── python_integration.txt │ │ ├── rust_description.html │ │ ├── rust_dto.txt │ │ ├── rust_integration.txt │ │ ├── typescript_description.html │ │ ├── typescript_dto.txt │ │ ├── typescript_integration.txt │ │ ├── visualbasic_description.html │ │ ├── visualbasic_dto.txt │ │ └── visualbasic_integration.txt │ ├── specification.php │ ├── tools.php │ └── tools │ │ ├── changelog.php │ │ ├── json.php │ │ ├── jsonschema.php │ │ └── openapi.php └── typeschema.json └── src ├── Controller ├── Developer.php ├── Ecosystem.php ├── Example.php ├── Generator.php ├── History.php ├── Index.php ├── Integration.php ├── Specification.php ├── Tools.php └── Tools │ ├── Changelog.php │ ├── Json.php │ ├── JsonSchema.php │ └── OpenAPI.php ├── Model ├── Diff.php └── Generate.php └── Service ├── CaptchaVerifier.php └── TypeName.php /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/typeschema/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/typeschema/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/docker.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/typeschema/HEAD/.github/workflows/docker.yml -------------------------------------------------------------------------------- /.github/workflows/typehub.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/typeschema/HEAD/.github/workflows/typehub.yml -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/typeschema/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/typeschema/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/typeschema/HEAD/README.md -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/typeschema/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /specification/typeschema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/typeschema/HEAD/specification/typeschema.json -------------------------------------------------------------------------------- /tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/typeschema/HEAD/tests/README.md -------------------------------------------------------------------------------- /tests/level_1_format.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/typeschema/HEAD/tests/level_1_format.json -------------------------------------------------------------------------------- /tests/level_1_simple.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/typeschema/HEAD/tests/level_1_simple.json -------------------------------------------------------------------------------- /tests/level_2_array_inline_reference.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/typeschema/HEAD/tests/level_2_array_inline_reference.json -------------------------------------------------------------------------------- /tests/level_2_array_inline_string.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/typeschema/HEAD/tests/level_2_array_inline_string.json -------------------------------------------------------------------------------- /tests/level_2_array_reference.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/typeschema/HEAD/tests/level_2_array_reference.json -------------------------------------------------------------------------------- /tests/level_2_array_string.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/typeschema/HEAD/tests/level_2_array_string.json -------------------------------------------------------------------------------- /tests/level_2_map_inline_reference.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/typeschema/HEAD/tests/level_2_map_inline_reference.json -------------------------------------------------------------------------------- /tests/level_2_map_inline_string.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/typeschema/HEAD/tests/level_2_map_inline_string.json -------------------------------------------------------------------------------- /tests/level_2_map_reference.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/typeschema/HEAD/tests/level_2_map_reference.json -------------------------------------------------------------------------------- /tests/level_2_map_string.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/typeschema/HEAD/tests/level_2_map_string.json -------------------------------------------------------------------------------- /tests/level_3_inheritance.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/typeschema/HEAD/tests/level_3_inheritance.json -------------------------------------------------------------------------------- /tests/level_4_generic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/typeschema/HEAD/tests/level_4_generic.json -------------------------------------------------------------------------------- /tests/level_5_discriminator.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/typeschema/HEAD/tests/level_5_discriminator.json -------------------------------------------------------------------------------- /tests/sdkgen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/typeschema/HEAD/tests/sdkgen.json -------------------------------------------------------------------------------- /www/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/typeschema/HEAD/www/.env -------------------------------------------------------------------------------- /www/build.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/typeschema/HEAD/www/build.php -------------------------------------------------------------------------------- /www/cache/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /www/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/typeschema/HEAD/www/composer.json -------------------------------------------------------------------------------- /www/composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/typeschema/HEAD/www/composer.lock -------------------------------------------------------------------------------- /www/configuration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/typeschema/HEAD/www/configuration.php -------------------------------------------------------------------------------- /www/container.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/typeschema/HEAD/www/container.php -------------------------------------------------------------------------------- /www/psalm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/typeschema/HEAD/www/psalm.xml -------------------------------------------------------------------------------- /www/public/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/typeschema/HEAD/www/public/.htaccess -------------------------------------------------------------------------------- /www/public/css/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/typeschema/HEAD/www/public/css/app.css -------------------------------------------------------------------------------- /www/public/css/app.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/typeschema/HEAD/www/public/css/app.min.css -------------------------------------------------------------------------------- /www/public/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/typeschema/HEAD/www/public/css/bootstrap.min.css -------------------------------------------------------------------------------- /www/public/css/highlight.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/typeschema/HEAD/www/public/css/highlight.min.css -------------------------------------------------------------------------------- /www/public/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/typeschema/HEAD/www/public/img/favicon.ico -------------------------------------------------------------------------------- /www/public/img/github-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/typeschema/HEAD/www/public/img/github-32.png -------------------------------------------------------------------------------- /www/public/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/typeschema/HEAD/www/public/img/logo.png -------------------------------------------------------------------------------- /www/public/img/typeschema_flow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/typeschema/HEAD/www/public/img/typeschema_flow.png -------------------------------------------------------------------------------- /www/public/img/typeschema_structure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/typeschema/HEAD/www/public/img/typeschema_structure.png -------------------------------------------------------------------------------- /www/public/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/typeschema/HEAD/www/public/index.php -------------------------------------------------------------------------------- /www/public/js/app.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/typeschema/HEAD/www/public/js/app.min.js -------------------------------------------------------------------------------- /www/public/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/typeschema/HEAD/www/public/js/bootstrap.min.js -------------------------------------------------------------------------------- /www/public/js/highlight.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/typeschema/HEAD/www/public/js/highlight.min.js -------------------------------------------------------------------------------- /www/public/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/typeschema/HEAD/www/public/js/jquery.min.js -------------------------------------------------------------------------------- /www/public/js/popper.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/typeschema/HEAD/www/public/js/popper.min.js -------------------------------------------------------------------------------- /www/resources/container.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/typeschema/HEAD/www/resources/container.php -------------------------------------------------------------------------------- /www/resources/examples/discriminator.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/typeschema/HEAD/www/resources/examples/discriminator.json -------------------------------------------------------------------------------- /www/resources/examples/generic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/typeschema/HEAD/www/resources/examples/generic.json -------------------------------------------------------------------------------- /www/resources/examples/import.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/typeschema/HEAD/www/resources/examples/import.json -------------------------------------------------------------------------------- /www/resources/examples/inheritance.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/typeschema/HEAD/www/resources/examples/inheritance.json -------------------------------------------------------------------------------- /www/resources/examples/map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/typeschema/HEAD/www/resources/examples/map.json -------------------------------------------------------------------------------- /www/resources/examples/map_inline.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/typeschema/HEAD/www/resources/examples/map_inline.json -------------------------------------------------------------------------------- /www/resources/examples/reference.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/typeschema/HEAD/www/resources/examples/reference.json -------------------------------------------------------------------------------- /www/resources/examples/simple.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/typeschema/HEAD/www/resources/examples/simple.json -------------------------------------------------------------------------------- /www/resources/template/developer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/typeschema/HEAD/www/resources/template/developer.php -------------------------------------------------------------------------------- /www/resources/template/ecosystem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/typeschema/HEAD/www/resources/template/ecosystem.php -------------------------------------------------------------------------------- /www/resources/template/example.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/typeschema/HEAD/www/resources/template/example.php -------------------------------------------------------------------------------- /www/resources/template/generator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/typeschema/HEAD/www/resources/template/generator.php -------------------------------------------------------------------------------- /www/resources/template/generator/form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/typeschema/HEAD/www/resources/template/generator/form.php -------------------------------------------------------------------------------- /www/resources/template/history.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/typeschema/HEAD/www/resources/template/history.php -------------------------------------------------------------------------------- /www/resources/template/inc/footer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/typeschema/HEAD/www/resources/template/inc/footer.php -------------------------------------------------------------------------------- /www/resources/template/inc/header.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/typeschema/HEAD/www/resources/template/inc/header.php -------------------------------------------------------------------------------- /www/resources/template/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/typeschema/HEAD/www/resources/template/index.php -------------------------------------------------------------------------------- /www/resources/template/integration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/typeschema/HEAD/www/resources/template/integration.php -------------------------------------------------------------------------------- /www/resources/template/integration/csharp_description.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/typeschema/HEAD/www/resources/template/integration/csharp_description.html -------------------------------------------------------------------------------- /www/resources/template/integration/csharp_dto.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/typeschema/HEAD/www/resources/template/integration/csharp_dto.txt -------------------------------------------------------------------------------- /www/resources/template/integration/csharp_integration.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/typeschema/HEAD/www/resources/template/integration/csharp_integration.txt -------------------------------------------------------------------------------- /www/resources/template/integration/detail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/typeschema/HEAD/www/resources/template/integration/detail.php -------------------------------------------------------------------------------- /www/resources/template/integration/go_description.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/typeschema/HEAD/www/resources/template/integration/go_description.html -------------------------------------------------------------------------------- /www/resources/template/integration/go_dto.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/typeschema/HEAD/www/resources/template/integration/go_dto.txt -------------------------------------------------------------------------------- /www/resources/template/integration/go_integration.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/typeschema/HEAD/www/resources/template/integration/go_integration.txt -------------------------------------------------------------------------------- /www/resources/template/integration/java_description.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/typeschema/HEAD/www/resources/template/integration/java_description.html -------------------------------------------------------------------------------- /www/resources/template/integration/java_dto.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/typeschema/HEAD/www/resources/template/integration/java_dto.txt -------------------------------------------------------------------------------- /www/resources/template/integration/java_integration.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/typeschema/HEAD/www/resources/template/integration/java_integration.txt -------------------------------------------------------------------------------- /www/resources/template/integration/php_description.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/typeschema/HEAD/www/resources/template/integration/php_description.html -------------------------------------------------------------------------------- /www/resources/template/integration/php_dto.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/typeschema/HEAD/www/resources/template/integration/php_dto.txt -------------------------------------------------------------------------------- /www/resources/template/integration/php_integration.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/typeschema/HEAD/www/resources/template/integration/php_integration.txt -------------------------------------------------------------------------------- /www/resources/template/integration/python_description.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/typeschema/HEAD/www/resources/template/integration/python_description.html -------------------------------------------------------------------------------- /www/resources/template/integration/python_dto.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/typeschema/HEAD/www/resources/template/integration/python_dto.txt -------------------------------------------------------------------------------- /www/resources/template/integration/python_integration.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/typeschema/HEAD/www/resources/template/integration/python_integration.txt -------------------------------------------------------------------------------- /www/resources/template/integration/rust_description.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/typeschema/HEAD/www/resources/template/integration/rust_description.html -------------------------------------------------------------------------------- /www/resources/template/integration/rust_dto.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/typeschema/HEAD/www/resources/template/integration/rust_dto.txt -------------------------------------------------------------------------------- /www/resources/template/integration/rust_integration.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/typeschema/HEAD/www/resources/template/integration/rust_integration.txt -------------------------------------------------------------------------------- /www/resources/template/integration/typescript_description.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/typeschema/HEAD/www/resources/template/integration/typescript_description.html -------------------------------------------------------------------------------- /www/resources/template/integration/typescript_dto.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/typeschema/HEAD/www/resources/template/integration/typescript_dto.txt -------------------------------------------------------------------------------- /www/resources/template/integration/typescript_integration.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/typeschema/HEAD/www/resources/template/integration/typescript_integration.txt -------------------------------------------------------------------------------- /www/resources/template/integration/visualbasic_description.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/typeschema/HEAD/www/resources/template/integration/visualbasic_description.html -------------------------------------------------------------------------------- /www/resources/template/integration/visualbasic_dto.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/typeschema/HEAD/www/resources/template/integration/visualbasic_dto.txt -------------------------------------------------------------------------------- /www/resources/template/integration/visualbasic_integration.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/typeschema/HEAD/www/resources/template/integration/visualbasic_integration.txt -------------------------------------------------------------------------------- /www/resources/template/specification.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/typeschema/HEAD/www/resources/template/specification.php -------------------------------------------------------------------------------- /www/resources/template/tools.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/typeschema/HEAD/www/resources/template/tools.php -------------------------------------------------------------------------------- /www/resources/template/tools/changelog.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/typeschema/HEAD/www/resources/template/tools/changelog.php -------------------------------------------------------------------------------- /www/resources/template/tools/json.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/typeschema/HEAD/www/resources/template/tools/json.php -------------------------------------------------------------------------------- /www/resources/template/tools/jsonschema.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/typeschema/HEAD/www/resources/template/tools/jsonschema.php -------------------------------------------------------------------------------- /www/resources/template/tools/openapi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/typeschema/HEAD/www/resources/template/tools/openapi.php -------------------------------------------------------------------------------- /www/resources/typeschema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/typeschema/HEAD/www/resources/typeschema.json -------------------------------------------------------------------------------- /www/src/Controller/Developer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/typeschema/HEAD/www/src/Controller/Developer.php -------------------------------------------------------------------------------- /www/src/Controller/Ecosystem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/typeschema/HEAD/www/src/Controller/Ecosystem.php -------------------------------------------------------------------------------- /www/src/Controller/Example.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/typeschema/HEAD/www/src/Controller/Example.php -------------------------------------------------------------------------------- /www/src/Controller/Generator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/typeschema/HEAD/www/src/Controller/Generator.php -------------------------------------------------------------------------------- /www/src/Controller/History.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/typeschema/HEAD/www/src/Controller/History.php -------------------------------------------------------------------------------- /www/src/Controller/Index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/typeschema/HEAD/www/src/Controller/Index.php -------------------------------------------------------------------------------- /www/src/Controller/Integration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/typeschema/HEAD/www/src/Controller/Integration.php -------------------------------------------------------------------------------- /www/src/Controller/Specification.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/typeschema/HEAD/www/src/Controller/Specification.php -------------------------------------------------------------------------------- /www/src/Controller/Tools.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/typeschema/HEAD/www/src/Controller/Tools.php -------------------------------------------------------------------------------- /www/src/Controller/Tools/Changelog.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/typeschema/HEAD/www/src/Controller/Tools/Changelog.php -------------------------------------------------------------------------------- /www/src/Controller/Tools/Json.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/typeschema/HEAD/www/src/Controller/Tools/Json.php -------------------------------------------------------------------------------- /www/src/Controller/Tools/JsonSchema.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/typeschema/HEAD/www/src/Controller/Tools/JsonSchema.php -------------------------------------------------------------------------------- /www/src/Controller/Tools/OpenAPI.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/typeschema/HEAD/www/src/Controller/Tools/OpenAPI.php -------------------------------------------------------------------------------- /www/src/Model/Diff.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/typeschema/HEAD/www/src/Model/Diff.php -------------------------------------------------------------------------------- /www/src/Model/Generate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/typeschema/HEAD/www/src/Model/Generate.php -------------------------------------------------------------------------------- /www/src/Service/CaptchaVerifier.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/typeschema/HEAD/www/src/Service/CaptchaVerifier.php -------------------------------------------------------------------------------- /www/src/Service/TypeName.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/typeschema/HEAD/www/src/Service/TypeName.php --------------------------------------------------------------------------------