├── .editorconfig ├── .gitignore ├── CHANGELOG.md ├── CONTRIBUTING.md ├── Dockerfile ├── LICENSE.md ├── Makefile ├── Readme.md ├── composer.json ├── composer.lock ├── example ├── html │ ├── basic.html │ ├── github.html │ └── twitter.html └── raml │ ├── basic │ ├── api.raml │ ├── auth │ │ └── security.yml │ ├── example │ │ └── product.json │ └── schema │ │ ├── presentation.json │ │ ├── presentations.json │ │ ├── product.json │ │ └── products.json │ ├── github │ └── api.raml │ └── twitter │ └── api.raml ├── index.php ├── raml2html └── src ├── Command ├── GenerateCommand.php └── WatchCommand.php ├── Generator.php ├── Raml └── SecurityScheme │ ├── JwtSecurityParser.php │ └── SecuritySettings │ └── JwtSecuritySettngs.php ├── Resources ├── static │ ├── jsonsh │ │ ├── css │ │ │ └── styles.css │ │ └── js │ │ │ ├── jsonsh.js │ │ │ ├── placeholder.js │ │ │ └── pretty.js │ └── main │ │ ├── css │ │ └── styles.css │ │ └── js │ │ └── script.js └── view │ ├── index.html.twig │ ├── menu │ ├── group.html.twig │ └── nav.html.twig │ ├── request │ └── collection.html.twig │ ├── resources │ ├── collection.html.twig │ └── item.html.twig │ ├── response │ └── collection.html.twig │ └── security │ └── collection.html.twig └── Twig └── Extension.php /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raml-leanlabsio/raml2html/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raml-leanlabsio/raml2html/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raml-leanlabsio/raml2html/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raml-leanlabsio/raml2html/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raml-leanlabsio/raml2html/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raml-leanlabsio/raml2html/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raml-leanlabsio/raml2html/HEAD/Makefile -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raml-leanlabsio/raml2html/HEAD/Readme.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raml-leanlabsio/raml2html/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raml-leanlabsio/raml2html/HEAD/composer.lock -------------------------------------------------------------------------------- /example/html/basic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raml-leanlabsio/raml2html/HEAD/example/html/basic.html -------------------------------------------------------------------------------- /example/html/github.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raml-leanlabsio/raml2html/HEAD/example/html/github.html -------------------------------------------------------------------------------- /example/html/twitter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raml-leanlabsio/raml2html/HEAD/example/html/twitter.html -------------------------------------------------------------------------------- /example/raml/basic/api.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raml-leanlabsio/raml2html/HEAD/example/raml/basic/api.raml -------------------------------------------------------------------------------- /example/raml/basic/auth/security.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raml-leanlabsio/raml2html/HEAD/example/raml/basic/auth/security.yml -------------------------------------------------------------------------------- /example/raml/basic/example/product.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raml-leanlabsio/raml2html/HEAD/example/raml/basic/example/product.json -------------------------------------------------------------------------------- /example/raml/basic/schema/presentation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raml-leanlabsio/raml2html/HEAD/example/raml/basic/schema/presentation.json -------------------------------------------------------------------------------- /example/raml/basic/schema/presentations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raml-leanlabsio/raml2html/HEAD/example/raml/basic/schema/presentations.json -------------------------------------------------------------------------------- /example/raml/basic/schema/product.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raml-leanlabsio/raml2html/HEAD/example/raml/basic/schema/product.json -------------------------------------------------------------------------------- /example/raml/basic/schema/products.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raml-leanlabsio/raml2html/HEAD/example/raml/basic/schema/products.json -------------------------------------------------------------------------------- /example/raml/github/api.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raml-leanlabsio/raml2html/HEAD/example/raml/github/api.raml -------------------------------------------------------------------------------- /example/raml/twitter/api.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raml-leanlabsio/raml2html/HEAD/example/raml/twitter/api.raml -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raml-leanlabsio/raml2html/HEAD/index.php -------------------------------------------------------------------------------- /raml2html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raml-leanlabsio/raml2html/HEAD/raml2html -------------------------------------------------------------------------------- /src/Command/GenerateCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raml-leanlabsio/raml2html/HEAD/src/Command/GenerateCommand.php -------------------------------------------------------------------------------- /src/Command/WatchCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raml-leanlabsio/raml2html/HEAD/src/Command/WatchCommand.php -------------------------------------------------------------------------------- /src/Generator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raml-leanlabsio/raml2html/HEAD/src/Generator.php -------------------------------------------------------------------------------- /src/Raml/SecurityScheme/JwtSecurityParser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raml-leanlabsio/raml2html/HEAD/src/Raml/SecurityScheme/JwtSecurityParser.php -------------------------------------------------------------------------------- /src/Raml/SecurityScheme/SecuritySettings/JwtSecuritySettngs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raml-leanlabsio/raml2html/HEAD/src/Raml/SecurityScheme/SecuritySettings/JwtSecuritySettngs.php -------------------------------------------------------------------------------- /src/Resources/static/jsonsh/css/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raml-leanlabsio/raml2html/HEAD/src/Resources/static/jsonsh/css/styles.css -------------------------------------------------------------------------------- /src/Resources/static/jsonsh/js/jsonsh.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raml-leanlabsio/raml2html/HEAD/src/Resources/static/jsonsh/js/jsonsh.js -------------------------------------------------------------------------------- /src/Resources/static/jsonsh/js/placeholder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raml-leanlabsio/raml2html/HEAD/src/Resources/static/jsonsh/js/placeholder.js -------------------------------------------------------------------------------- /src/Resources/static/jsonsh/js/pretty.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raml-leanlabsio/raml2html/HEAD/src/Resources/static/jsonsh/js/pretty.js -------------------------------------------------------------------------------- /src/Resources/static/main/css/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raml-leanlabsio/raml2html/HEAD/src/Resources/static/main/css/styles.css -------------------------------------------------------------------------------- /src/Resources/static/main/js/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raml-leanlabsio/raml2html/HEAD/src/Resources/static/main/js/script.js -------------------------------------------------------------------------------- /src/Resources/view/index.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raml-leanlabsio/raml2html/HEAD/src/Resources/view/index.html.twig -------------------------------------------------------------------------------- /src/Resources/view/menu/group.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raml-leanlabsio/raml2html/HEAD/src/Resources/view/menu/group.html.twig -------------------------------------------------------------------------------- /src/Resources/view/menu/nav.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raml-leanlabsio/raml2html/HEAD/src/Resources/view/menu/nav.html.twig -------------------------------------------------------------------------------- /src/Resources/view/request/collection.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raml-leanlabsio/raml2html/HEAD/src/Resources/view/request/collection.html.twig -------------------------------------------------------------------------------- /src/Resources/view/resources/collection.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raml-leanlabsio/raml2html/HEAD/src/Resources/view/resources/collection.html.twig -------------------------------------------------------------------------------- /src/Resources/view/resources/item.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raml-leanlabsio/raml2html/HEAD/src/Resources/view/resources/item.html.twig -------------------------------------------------------------------------------- /src/Resources/view/response/collection.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raml-leanlabsio/raml2html/HEAD/src/Resources/view/response/collection.html.twig -------------------------------------------------------------------------------- /src/Resources/view/security/collection.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raml-leanlabsio/raml2html/HEAD/src/Resources/view/security/collection.html.twig -------------------------------------------------------------------------------- /src/Twig/Extension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raml-leanlabsio/raml2html/HEAD/src/Twig/Extension.php --------------------------------------------------------------------------------