├── .gitignore ├── Command └── JsonSchemaGenerateCommand.php ├── LICENSE ├── README.md ├── Schema.php ├── SchemaFactory.php ├── SchemaFactoryInterface.php ├── Tests ├── Fixtures │ ├── ApiResource │ │ ├── Dummy.php │ │ └── OverriddenOperationDummy.php │ ├── Enum │ │ ├── GamePlayMode.php │ │ └── GenderTypeEnum.php │ └── NotAResource.php ├── SchemaFactoryTest.php ├── SchemaTest.php └── TypeFactoryTest.php ├── TypeFactory.php ├── TypeFactoryInterface.php ├── composer.json └── phpunit.xml.dist /.gitignore: -------------------------------------------------------------------------------- 1 | /composer.lock 2 | /vendor 3 | /.phpunit.result.cache 4 | -------------------------------------------------------------------------------- /Command/JsonSchemaGenerateCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-platform/json-schema/HEAD/Command/JsonSchemaGenerateCommand.php -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-platform/json-schema/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-platform/json-schema/HEAD/README.md -------------------------------------------------------------------------------- /Schema.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-platform/json-schema/HEAD/Schema.php -------------------------------------------------------------------------------- /SchemaFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-platform/json-schema/HEAD/SchemaFactory.php -------------------------------------------------------------------------------- /SchemaFactoryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-platform/json-schema/HEAD/SchemaFactoryInterface.php -------------------------------------------------------------------------------- /Tests/Fixtures/ApiResource/Dummy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-platform/json-schema/HEAD/Tests/Fixtures/ApiResource/Dummy.php -------------------------------------------------------------------------------- /Tests/Fixtures/ApiResource/OverriddenOperationDummy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-platform/json-schema/HEAD/Tests/Fixtures/ApiResource/OverriddenOperationDummy.php -------------------------------------------------------------------------------- /Tests/Fixtures/Enum/GamePlayMode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-platform/json-schema/HEAD/Tests/Fixtures/Enum/GamePlayMode.php -------------------------------------------------------------------------------- /Tests/Fixtures/Enum/GenderTypeEnum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-platform/json-schema/HEAD/Tests/Fixtures/Enum/GenderTypeEnum.php -------------------------------------------------------------------------------- /Tests/Fixtures/NotAResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-platform/json-schema/HEAD/Tests/Fixtures/NotAResource.php -------------------------------------------------------------------------------- /Tests/SchemaFactoryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-platform/json-schema/HEAD/Tests/SchemaFactoryTest.php -------------------------------------------------------------------------------- /Tests/SchemaTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-platform/json-schema/HEAD/Tests/SchemaTest.php -------------------------------------------------------------------------------- /Tests/TypeFactoryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-platform/json-schema/HEAD/Tests/TypeFactoryTest.php -------------------------------------------------------------------------------- /TypeFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-platform/json-schema/HEAD/TypeFactory.php -------------------------------------------------------------------------------- /TypeFactoryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-platform/json-schema/HEAD/TypeFactoryInterface.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-platform/json-schema/HEAD/composer.json -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-platform/json-schema/HEAD/phpunit.xml.dist --------------------------------------------------------------------------------