├── .browserslistrc ├── .eslintignore ├── .eslintrc.js ├── .github └── workflows │ ├── deploy-pages.yml │ ├── lint.yml │ └── test.yml ├── .gitignore ├── LICENSE ├── README.md ├── babel.config.js ├── index.html ├── package.json ├── postcss.config.js ├── public └── favicon.ico ├── screenshots └── screenshot.png ├── src ├── @types │ └── shims-vue.d.ts ├── App.vue ├── assets │ ├── logo.png │ └── scss │ │ ├── _prism_theme.scss │ │ └── theme.scss ├── components │ ├── Alert.vue │ ├── Card.vue │ ├── Code.vue │ ├── Footer.vue │ ├── Settings.vue │ ├── ThemeColorSwitch.vue │ ├── buttons │ │ └── IconButton.vue │ ├── form │ │ ├── Checkbox.vue │ │ ├── FormGroup.vue │ │ ├── Label.vue │ │ ├── Select.vue │ │ ├── TextArea.vue │ │ └── TextInput.vue │ ├── icons │ │ ├── CheckIcon.vue │ │ ├── ClipboardIcon.vue │ │ ├── CloudArrowDownIcon.vue │ │ ├── GithubIcon.vue │ │ ├── HalfFilledCircleIcon.vue │ │ ├── MoonIcon.vue │ │ └── SunIcon.vue │ ├── loaders │ │ └── Spinner.vue │ └── tab-panel │ │ ├── TabContent.vue │ │ ├── TabNav.vue │ │ ├── TabNavItem.vue │ │ └── TabPanel.vue ├── dto │ ├── PhpClass.ts │ ├── PhpProperty.ts │ ├── SelectOption.ts │ └── Settings.ts ├── enums │ ├── PhpDocblock.ts │ ├── PhpVersion.ts │ ├── PhpVisibility.ts │ ├── PropertyDocblockType.ts │ ├── StringCase.ts │ └── ThemeColor.ts ├── factories │ ├── JsonToPhpFactory.ts │ ├── PhpClassFactory.ts │ └── PhpTypeFactory.ts ├── hooks │ ├── use-file-export.ts │ ├── use-json-converter.ts │ ├── use-php-class-export.ts │ ├── use-php-code-presenter.ts │ └── use-settings.ts ├── main.ts ├── php-types │ ├── ArrayType.ts │ ├── BooleanType.ts │ ├── FloatType.ts │ ├── IntType.ts │ ├── NullType.ts │ ├── PhpClassType.ts │ ├── PhpType.ts │ ├── StdClassType.ts │ ├── StringType.ts │ └── UnknownType.ts ├── php │ └── ReservedKeywords.ts ├── presenters │ ├── PhpClassFromJsonMethodPresenter.ts │ ├── PhpClassPresenter.ts │ ├── PhpClassToArrayMethodPresenter.ts │ ├── PhpConstructorPresenter.ts │ ├── PhpDocblockPresenter.ts │ ├── PhpFluentSetterPresenter.ts │ ├── PhpGetterPresenter.ts │ ├── PhpPropertyPresenter.ts │ ├── PhpPropertyTypePresenter.ts │ └── PhpSetterPresenter.ts ├── router │ └── index.ts ├── support │ ├── EnumSelect.ts │ └── Str.ts ├── views │ └── Generator.vue └── writers │ └── CodeWriter.ts ├── tailwind.config.js ├── tests ├── converter │ ├── fixtures │ │ ├── all_types_json.txt │ │ ├── merges_nested_arrays.txt │ │ ├── results │ │ │ ├── all_types_json_php_7_3_with_constructor.txt │ │ │ ├── all_types_json_php_7_3_with_constructor_and_readonly_properties.txt │ │ │ ├── all_types_json_php_7_3_with_constructor_promoted_properties_getters_and_setters.txt │ │ │ ├── all_types_json_php_7_3_with_constructor_readonly_properties_and_promoted_properties.txt │ │ │ ├── all_types_json_php_7_3_with_constructor_readonly_properties_promoted_properties_and_from_json_array_method.txt │ │ │ ├── all_types_json_php_7_3_with_constructor_readonly_properties_promoted_properties_and_from_json_method.txt │ │ │ ├── all_types_json_php_7_3_with_constructor_readonly_properties_promoted_properties_getters_and_setters.txt │ │ │ ├── all_types_json_php_7_3_with_custom_namespace_root_class_name_and_strict_types.txt │ │ │ ├── all_types_json_php_7_3_with_final_classes_and_all_properties_nullable.txt │ │ │ ├── all_types_json_php_7_3_with_from_json_and_to_array_methods.txt │ │ │ ├── all_types_json_php_7_3_with_getters_fluent_setters_all_docblocks_extra_new_lines_for_properties_and_from_json_method.txt │ │ │ ├── all_types_json_php_7_3_with_getters_fluent_setters_all_docblocks_extra_new_lines_for_properties_from_json_method_and_to_array_method.txt │ │ │ ├── all_types_json_php_7_3_with_setters_and_from_json_array_method.txt │ │ │ ├── all_types_json_php_7_3_with_setters_and_from_json_method.txt │ │ │ ├── all_types_json_php_7_3_with_to_array_method.txt │ │ │ ├── all_types_json_php_7_3_without_constructor.txt │ │ │ ├── all_types_json_php_7_3_without_constructor_and_readonly_classes.txt │ │ │ ├── all_types_json_php_7_3_without_constructor_and_readonly_properties.txt │ │ │ ├── all_types_json_php_7_4_with_constructor.txt │ │ │ ├── all_types_json_php_7_4_with_constructor_and_readonly_properties.txt │ │ │ ├── all_types_json_php_7_4_with_constructor_promoted_properties_getters_and_setters.txt │ │ │ ├── all_types_json_php_7_4_with_constructor_readonly_properties_and_promoted_properties.txt │ │ │ ├── all_types_json_php_7_4_with_constructor_readonly_properties_promoted_properties_and_from_json_array_method.txt │ │ │ ├── all_types_json_php_7_4_with_constructor_readonly_properties_promoted_properties_and_from_json_method.txt │ │ │ ├── all_types_json_php_7_4_with_constructor_readonly_properties_promoted_properties_getters_and_setters.txt │ │ │ ├── all_types_json_php_7_4_with_custom_namespace_root_class_name_and_strict_types.txt │ │ │ ├── all_types_json_php_7_4_with_final_classes_and_all_properties_nullable.txt │ │ │ ├── all_types_json_php_7_4_with_from_json_and_to_array_methods.txt │ │ │ ├── all_types_json_php_7_4_with_getters_fluent_setters_all_docblocks_extra_new_lines_for_properties_and_from_json_method.txt │ │ │ ├── all_types_json_php_7_4_with_getters_fluent_setters_all_docblocks_extra_new_lines_for_properties_from_json_method_and_to_array_method.txt │ │ │ ├── all_types_json_php_7_4_with_setters_and_from_json_array_method.txt │ │ │ ├── all_types_json_php_7_4_with_setters_and_from_json_method.txt │ │ │ ├── all_types_json_php_7_4_with_to_array_method.txt │ │ │ ├── all_types_json_php_7_4_without_constructor.txt │ │ │ ├── all_types_json_php_7_4_without_constructor_and_readonly_classes.txt │ │ │ ├── all_types_json_php_7_4_without_constructor_and_readonly_properties.txt │ │ │ ├── all_types_json_php_8_0_with_constructor.txt │ │ │ ├── all_types_json_php_8_0_with_constructor_and_readonly_properties.txt │ │ │ ├── all_types_json_php_8_0_with_constructor_promoted_properties_getters_and_setters.txt │ │ │ ├── all_types_json_php_8_0_with_constructor_readonly_properties_and_promoted_properties.txt │ │ │ ├── all_types_json_php_8_0_with_constructor_readonly_properties_promoted_properties_and_from_json_array_method.txt │ │ │ ├── all_types_json_php_8_0_with_constructor_readonly_properties_promoted_properties_and_from_json_method.txt │ │ │ ├── all_types_json_php_8_0_with_constructor_readonly_properties_promoted_properties_getters_and_setters.txt │ │ │ ├── all_types_json_php_8_0_with_custom_namespace_root_class_name_and_strict_types.txt │ │ │ ├── all_types_json_php_8_0_with_final_classes_and_all_properties_nullable.txt │ │ │ ├── all_types_json_php_8_0_with_from_json_and_to_array_methods.txt │ │ │ ├── all_types_json_php_8_0_with_getters_fluent_setters_all_docblocks_extra_new_lines_for_properties_and_from_json_method.txt │ │ │ ├── all_types_json_php_8_0_with_getters_fluent_setters_all_docblocks_extra_new_lines_for_properties_from_json_method_and_to_array_method.txt │ │ │ ├── all_types_json_php_8_0_with_setters_and_from_json_array_method.txt │ │ │ ├── all_types_json_php_8_0_with_setters_and_from_json_method.txt │ │ │ ├── all_types_json_php_8_0_with_to_array_method.txt │ │ │ ├── all_types_json_php_8_0_without_constructor.txt │ │ │ ├── all_types_json_php_8_0_without_constructor_and_readonly_classes.txt │ │ │ ├── all_types_json_php_8_0_without_constructor_and_readonly_properties.txt │ │ │ ├── all_types_json_php_8_1_with_constructor.txt │ │ │ ├── all_types_json_php_8_1_with_constructor_and_readonly_properties.txt │ │ │ ├── all_types_json_php_8_1_with_constructor_promoted_properties_getters_and_setters.txt │ │ │ ├── all_types_json_php_8_1_with_constructor_readonly_properties_and_promoted_properties.txt │ │ │ ├── all_types_json_php_8_1_with_constructor_readonly_properties_promoted_properties_and_from_json_array_method.txt │ │ │ ├── all_types_json_php_8_1_with_constructor_readonly_properties_promoted_properties_and_from_json_method.txt │ │ │ ├── all_types_json_php_8_1_with_constructor_readonly_properties_promoted_properties_getters_and_setters.txt │ │ │ ├── all_types_json_php_8_1_with_custom_namespace_root_class_name_and_strict_types.txt │ │ │ ├── all_types_json_php_8_1_with_final_classes_and_all_properties_nullable.txt │ │ │ ├── all_types_json_php_8_1_with_from_json_and_to_array_methods.txt │ │ │ ├── all_types_json_php_8_1_with_getters_fluent_setters_all_docblocks_extra_new_lines_for_properties_and_from_json_method.txt │ │ │ ├── all_types_json_php_8_1_with_getters_fluent_setters_all_docblocks_extra_new_lines_for_properties_from_json_method_and_to_array_method.txt │ │ │ ├── all_types_json_php_8_1_with_setters_and_from_json_array_method.txt │ │ │ ├── all_types_json_php_8_1_with_setters_and_from_json_method.txt │ │ │ ├── all_types_json_php_8_1_with_to_array_method.txt │ │ │ ├── all_types_json_php_8_1_without_constructor.txt │ │ │ ├── all_types_json_php_8_1_without_constructor_and_readonly_classes.txt │ │ │ ├── all_types_json_php_8_1_without_constructor_and_readonly_properties.txt │ │ │ ├── all_types_json_php_8_2_with_constructor.txt │ │ │ ├── all_types_json_php_8_2_with_constructor_and_readonly_properties.txt │ │ │ ├── all_types_json_php_8_2_with_constructor_promoted_properties_getters_and_setters.txt │ │ │ ├── all_types_json_php_8_2_with_constructor_readonly_properties_and_promoted_properties.txt │ │ │ ├── all_types_json_php_8_2_with_constructor_readonly_properties_promoted_properties_and_from_json_array_method.txt │ │ │ ├── all_types_json_php_8_2_with_constructor_readonly_properties_promoted_properties_and_from_json_method.txt │ │ │ ├── all_types_json_php_8_2_with_constructor_readonly_properties_promoted_properties_getters_and_setters.txt │ │ │ ├── all_types_json_php_8_2_with_custom_namespace_root_class_name_and_strict_types.txt │ │ │ ├── all_types_json_php_8_2_with_final_classes_and_all_properties_nullable.txt │ │ │ ├── all_types_json_php_8_2_with_from_json_and_to_array_methods.txt │ │ │ ├── all_types_json_php_8_2_with_getters_fluent_setters_all_docblocks_extra_new_lines_for_properties_and_from_json_method.txt │ │ │ ├── all_types_json_php_8_2_with_getters_fluent_setters_all_docblocks_extra_new_lines_for_properties_from_json_method_and_to_array_method.txt │ │ │ ├── all_types_json_php_8_2_with_setters_and_from_json_array_method.txt │ │ │ ├── all_types_json_php_8_2_with_setters_and_from_json_method.txt │ │ │ ├── all_types_json_php_8_2_with_to_array_method.txt │ │ │ ├── all_types_json_php_8_2_without_constructor.txt │ │ │ ├── all_types_json_php_8_2_without_constructor_and_readonly_classes.txt │ │ │ ├── all_types_json_php_8_2_without_constructor_and_readonly_properties.txt │ │ │ ├── all_types_json_php_8_3_with_constructor.txt │ │ │ ├── all_types_json_php_8_3_with_constructor_and_readonly_properties.txt │ │ │ ├── all_types_json_php_8_3_with_constructor_promoted_properties_getters_and_setters.txt │ │ │ ├── all_types_json_php_8_3_with_constructor_readonly_properties_and_promoted_properties.txt │ │ │ ├── all_types_json_php_8_3_with_constructor_readonly_properties_promoted_properties_and_from_json_array_method.txt │ │ │ ├── all_types_json_php_8_3_with_constructor_readonly_properties_promoted_properties_and_from_json_method.txt │ │ │ ├── all_types_json_php_8_3_with_constructor_readonly_properties_promoted_properties_getters_and_setters.txt │ │ │ ├── all_types_json_php_8_3_with_custom_namespace_root_class_name_and_strict_types.txt │ │ │ ├── all_types_json_php_8_3_with_final_classes_and_all_properties_nullable.txt │ │ │ ├── all_types_json_php_8_3_with_from_json_and_to_array_methods.txt │ │ │ ├── all_types_json_php_8_3_with_getters_fluent_setters_all_docblocks_extra_new_lines_for_properties_and_from_json_method.txt │ │ │ ├── all_types_json_php_8_3_with_getters_fluent_setters_all_docblocks_extra_new_lines_for_properties_from_json_method_and_to_array_method.txt │ │ │ ├── all_types_json_php_8_3_with_setters_and_from_json_array_method.txt │ │ │ ├── all_types_json_php_8_3_with_setters_and_from_json_method.txt │ │ │ ├── all_types_json_php_8_3_with_to_array_method.txt │ │ │ ├── all_types_json_php_8_3_without_constructor.txt │ │ │ ├── all_types_json_php_8_3_without_constructor_and_readonly_classes.txt │ │ │ ├── all_types_json_php_8_3_without_constructor_and_readonly_properties.txt │ │ │ ├── merges_nested_arrays_php_7_3_with_constructor.txt │ │ │ ├── merges_nested_arrays_php_7_3_with_constructor_and_readonly_properties.txt │ │ │ ├── merges_nested_arrays_php_7_3_with_constructor_promoted_properties_getters_and_setters.txt │ │ │ ├── merges_nested_arrays_php_7_3_with_constructor_readonly_properties_and_promoted_properties.txt │ │ │ ├── merges_nested_arrays_php_7_3_with_constructor_readonly_properties_promoted_properties_and_from_json_array_method.txt │ │ │ ├── merges_nested_arrays_php_7_3_with_constructor_readonly_properties_promoted_properties_and_from_json_method.txt │ │ │ ├── merges_nested_arrays_php_7_3_with_constructor_readonly_properties_promoted_properties_getters_and_setters.txt │ │ │ ├── merges_nested_arrays_php_7_3_with_custom_namespace_root_class_name_and_strict_types.txt │ │ │ ├── merges_nested_arrays_php_7_3_with_final_classes_and_all_properties_nullable.txt │ │ │ ├── merges_nested_arrays_php_7_3_with_from_json_and_to_array_methods.txt │ │ │ ├── merges_nested_arrays_php_7_3_with_getters_fluent_setters_all_docblocks_extra_new_lines_for_properties_and_from_json_method.txt │ │ │ ├── merges_nested_arrays_php_7_3_with_getters_fluent_setters_all_docblocks_extra_new_lines_for_properties_from_json_method_and_to_array_method.txt │ │ │ ├── merges_nested_arrays_php_7_3_with_setters_and_from_json_array_method.txt │ │ │ ├── merges_nested_arrays_php_7_3_with_setters_and_from_json_method.txt │ │ │ ├── merges_nested_arrays_php_7_3_with_to_array_method.txt │ │ │ ├── merges_nested_arrays_php_7_3_without_constructor.txt │ │ │ ├── merges_nested_arrays_php_7_3_without_constructor_and_readonly_classes.txt │ │ │ ├── merges_nested_arrays_php_7_3_without_constructor_and_readonly_properties.txt │ │ │ ├── merges_nested_arrays_php_7_4_with_constructor.txt │ │ │ ├── merges_nested_arrays_php_7_4_with_constructor_and_readonly_properties.txt │ │ │ ├── merges_nested_arrays_php_7_4_with_constructor_promoted_properties_getters_and_setters.txt │ │ │ ├── merges_nested_arrays_php_7_4_with_constructor_readonly_properties_and_promoted_properties.txt │ │ │ ├── merges_nested_arrays_php_7_4_with_constructor_readonly_properties_promoted_properties_and_from_json_array_method.txt │ │ │ ├── merges_nested_arrays_php_7_4_with_constructor_readonly_properties_promoted_properties_and_from_json_method.txt │ │ │ ├── merges_nested_arrays_php_7_4_with_constructor_readonly_properties_promoted_properties_getters_and_setters.txt │ │ │ ├── merges_nested_arrays_php_7_4_with_custom_namespace_root_class_name_and_strict_types.txt │ │ │ ├── merges_nested_arrays_php_7_4_with_final_classes_and_all_properties_nullable.txt │ │ │ ├── merges_nested_arrays_php_7_4_with_from_json_and_to_array_methods.txt │ │ │ ├── merges_nested_arrays_php_7_4_with_getters_fluent_setters_all_docblocks_extra_new_lines_for_properties_and_from_json_method.txt │ │ │ ├── merges_nested_arrays_php_7_4_with_getters_fluent_setters_all_docblocks_extra_new_lines_for_properties_from_json_method_and_to_array_method.txt │ │ │ ├── merges_nested_arrays_php_7_4_with_setters_and_from_json_array_method.txt │ │ │ ├── merges_nested_arrays_php_7_4_with_setters_and_from_json_method.txt │ │ │ ├── merges_nested_arrays_php_7_4_with_to_array_method.txt │ │ │ ├── merges_nested_arrays_php_7_4_without_constructor.txt │ │ │ ├── merges_nested_arrays_php_7_4_without_constructor_and_readonly_classes.txt │ │ │ ├── merges_nested_arrays_php_7_4_without_constructor_and_readonly_properties.txt │ │ │ ├── merges_nested_arrays_php_8_0_with_constructor.txt │ │ │ ├── merges_nested_arrays_php_8_0_with_constructor_and_readonly_properties.txt │ │ │ ├── merges_nested_arrays_php_8_0_with_constructor_promoted_properties_getters_and_setters.txt │ │ │ ├── merges_nested_arrays_php_8_0_with_constructor_readonly_properties_and_promoted_properties.txt │ │ │ ├── merges_nested_arrays_php_8_0_with_constructor_readonly_properties_promoted_properties_and_from_json_array_method.txt │ │ │ ├── merges_nested_arrays_php_8_0_with_constructor_readonly_properties_promoted_properties_and_from_json_method.txt │ │ │ ├── merges_nested_arrays_php_8_0_with_constructor_readonly_properties_promoted_properties_getters_and_setters.txt │ │ │ ├── merges_nested_arrays_php_8_0_with_custom_namespace_root_class_name_and_strict_types.txt │ │ │ ├── merges_nested_arrays_php_8_0_with_final_classes_and_all_properties_nullable.txt │ │ │ ├── merges_nested_arrays_php_8_0_with_from_json_and_to_array_methods.txt │ │ │ ├── merges_nested_arrays_php_8_0_with_getters_fluent_setters_all_docblocks_extra_new_lines_for_properties_and_from_json_method.txt │ │ │ ├── merges_nested_arrays_php_8_0_with_getters_fluent_setters_all_docblocks_extra_new_lines_for_properties_from_json_method_and_to_array_method.txt │ │ │ ├── merges_nested_arrays_php_8_0_with_setters_and_from_json_array_method.txt │ │ │ ├── merges_nested_arrays_php_8_0_with_setters_and_from_json_method.txt │ │ │ ├── merges_nested_arrays_php_8_0_with_to_array_method.txt │ │ │ ├── merges_nested_arrays_php_8_0_without_constructor.txt │ │ │ ├── merges_nested_arrays_php_8_0_without_constructor_and_readonly_classes.txt │ │ │ ├── merges_nested_arrays_php_8_0_without_constructor_and_readonly_properties.txt │ │ │ ├── merges_nested_arrays_php_8_1_with_constructor.txt │ │ │ ├── merges_nested_arrays_php_8_1_with_constructor_and_readonly_properties.txt │ │ │ ├── merges_nested_arrays_php_8_1_with_constructor_promoted_properties_getters_and_setters.txt │ │ │ ├── merges_nested_arrays_php_8_1_with_constructor_readonly_properties_and_promoted_properties.txt │ │ │ ├── merges_nested_arrays_php_8_1_with_constructor_readonly_properties_promoted_properties_and_from_json_array_method.txt │ │ │ ├── merges_nested_arrays_php_8_1_with_constructor_readonly_properties_promoted_properties_and_from_json_method.txt │ │ │ ├── merges_nested_arrays_php_8_1_with_constructor_readonly_properties_promoted_properties_getters_and_setters.txt │ │ │ ├── merges_nested_arrays_php_8_1_with_custom_namespace_root_class_name_and_strict_types.txt │ │ │ ├── merges_nested_arrays_php_8_1_with_final_classes_and_all_properties_nullable.txt │ │ │ ├── merges_nested_arrays_php_8_1_with_from_json_and_to_array_methods.txt │ │ │ ├── merges_nested_arrays_php_8_1_with_getters_fluent_setters_all_docblocks_extra_new_lines_for_properties_and_from_json_method.txt │ │ │ ├── merges_nested_arrays_php_8_1_with_getters_fluent_setters_all_docblocks_extra_new_lines_for_properties_from_json_method_and_to_array_method.txt │ │ │ ├── merges_nested_arrays_php_8_1_with_setters_and_from_json_array_method.txt │ │ │ ├── merges_nested_arrays_php_8_1_with_setters_and_from_json_method.txt │ │ │ ├── merges_nested_arrays_php_8_1_with_to_array_method.txt │ │ │ ├── merges_nested_arrays_php_8_1_without_constructor.txt │ │ │ ├── merges_nested_arrays_php_8_1_without_constructor_and_readonly_classes.txt │ │ │ ├── merges_nested_arrays_php_8_1_without_constructor_and_readonly_properties.txt │ │ │ ├── merges_nested_arrays_php_8_2_with_constructor.txt │ │ │ ├── merges_nested_arrays_php_8_2_with_constructor_and_readonly_properties.txt │ │ │ ├── merges_nested_arrays_php_8_2_with_constructor_promoted_properties_getters_and_setters.txt │ │ │ ├── merges_nested_arrays_php_8_2_with_constructor_readonly_properties_and_promoted_properties.txt │ │ │ ├── merges_nested_arrays_php_8_2_with_constructor_readonly_properties_promoted_properties_and_from_json_array_method.txt │ │ │ ├── merges_nested_arrays_php_8_2_with_constructor_readonly_properties_promoted_properties_and_from_json_method.txt │ │ │ ├── merges_nested_arrays_php_8_2_with_constructor_readonly_properties_promoted_properties_getters_and_setters.txt │ │ │ ├── merges_nested_arrays_php_8_2_with_custom_namespace_root_class_name_and_strict_types.txt │ │ │ ├── merges_nested_arrays_php_8_2_with_final_classes_and_all_properties_nullable.txt │ │ │ ├── merges_nested_arrays_php_8_2_with_from_json_and_to_array_methods.txt │ │ │ ├── merges_nested_arrays_php_8_2_with_getters_fluent_setters_all_docblocks_extra_new_lines_for_properties_and_from_json_method.txt │ │ │ ├── merges_nested_arrays_php_8_2_with_getters_fluent_setters_all_docblocks_extra_new_lines_for_properties_from_json_method_and_to_array_method.txt │ │ │ ├── merges_nested_arrays_php_8_2_with_setters_and_from_json_array_method.txt │ │ │ ├── merges_nested_arrays_php_8_2_with_setters_and_from_json_method.txt │ │ │ ├── merges_nested_arrays_php_8_2_with_to_array_method.txt │ │ │ ├── merges_nested_arrays_php_8_2_without_constructor.txt │ │ │ ├── merges_nested_arrays_php_8_2_without_constructor_and_readonly_classes.txt │ │ │ ├── merges_nested_arrays_php_8_2_without_constructor_and_readonly_properties.txt │ │ │ ├── merges_nested_arrays_php_8_3_with_constructor.txt │ │ │ ├── merges_nested_arrays_php_8_3_with_constructor_and_readonly_properties.txt │ │ │ ├── merges_nested_arrays_php_8_3_with_constructor_promoted_properties_getters_and_setters.txt │ │ │ ├── merges_nested_arrays_php_8_3_with_constructor_readonly_properties_and_promoted_properties.txt │ │ │ ├── merges_nested_arrays_php_8_3_with_constructor_readonly_properties_promoted_properties_and_from_json_array_method.txt │ │ │ ├── merges_nested_arrays_php_8_3_with_constructor_readonly_properties_promoted_properties_and_from_json_method.txt │ │ │ ├── merges_nested_arrays_php_8_3_with_constructor_readonly_properties_promoted_properties_getters_and_setters.txt │ │ │ ├── merges_nested_arrays_php_8_3_with_custom_namespace_root_class_name_and_strict_types.txt │ │ │ ├── merges_nested_arrays_php_8_3_with_final_classes_and_all_properties_nullable.txt │ │ │ ├── merges_nested_arrays_php_8_3_with_from_json_and_to_array_methods.txt │ │ │ ├── merges_nested_arrays_php_8_3_with_getters_fluent_setters_all_docblocks_extra_new_lines_for_properties_and_from_json_method.txt │ │ │ ├── merges_nested_arrays_php_8_3_with_getters_fluent_setters_all_docblocks_extra_new_lines_for_properties_from_json_method_and_to_array_method.txt │ │ │ ├── merges_nested_arrays_php_8_3_with_setters_and_from_json_array_method.txt │ │ │ ├── merges_nested_arrays_php_8_3_with_setters_and_from_json_method.txt │ │ │ ├── merges_nested_arrays_php_8_3_with_to_array_method.txt │ │ │ ├── merges_nested_arrays_php_8_3_without_constructor.txt │ │ │ ├── merges_nested_arrays_php_8_3_without_constructor_and_readonly_classes.txt │ │ │ ├── merges_nested_arrays_php_8_3_without_constructor_and_readonly_properties.txt │ │ │ ├── simple_json_data_php_7_3_with_constructor.txt │ │ │ ├── simple_json_data_php_7_3_with_constructor_and_readonly_properties.txt │ │ │ ├── simple_json_data_php_7_3_with_constructor_promoted_properties_getters_and_setters.txt │ │ │ ├── simple_json_data_php_7_3_with_constructor_readonly_properties_and_promoted_properties.txt │ │ │ ├── simple_json_data_php_7_3_with_constructor_readonly_properties_promoted_properties_and_from_json_array_method.txt │ │ │ ├── simple_json_data_php_7_3_with_constructor_readonly_properties_promoted_properties_and_from_json_method.txt │ │ │ ├── simple_json_data_php_7_3_with_constructor_readonly_properties_promoted_properties_getters_and_setters.txt │ │ │ ├── simple_json_data_php_7_3_with_custom_namespace_root_class_name_and_strict_types.txt │ │ │ ├── simple_json_data_php_7_3_with_final_classes_and_all_properties_nullable.txt │ │ │ ├── simple_json_data_php_7_3_with_from_json_and_to_array_methods.txt │ │ │ ├── simple_json_data_php_7_3_with_getters_fluent_setters_all_docblocks_extra_new_lines_for_properties_and_from_json_method.txt │ │ │ ├── simple_json_data_php_7_3_with_getters_fluent_setters_all_docblocks_extra_new_lines_for_properties_from_json_method_and_to_array_method.txt │ │ │ ├── simple_json_data_php_7_3_with_setters_and_from_json_array_method.txt │ │ │ ├── simple_json_data_php_7_3_with_setters_and_from_json_method.txt │ │ │ ├── simple_json_data_php_7_3_with_to_array_method.txt │ │ │ ├── simple_json_data_php_7_3_without_constructor.txt │ │ │ ├── simple_json_data_php_7_3_without_constructor_and_readonly_classes.txt │ │ │ ├── simple_json_data_php_7_3_without_constructor_and_readonly_properties.txt │ │ │ ├── simple_json_data_php_7_4_with_constructor.txt │ │ │ ├── simple_json_data_php_7_4_with_constructor_and_readonly_properties.txt │ │ │ ├── simple_json_data_php_7_4_with_constructor_promoted_properties_getters_and_setters.txt │ │ │ ├── simple_json_data_php_7_4_with_constructor_readonly_properties_and_promoted_properties.txt │ │ │ ├── simple_json_data_php_7_4_with_constructor_readonly_properties_promoted_properties_and_from_json_array_method.txt │ │ │ ├── simple_json_data_php_7_4_with_constructor_readonly_properties_promoted_properties_and_from_json_method.txt │ │ │ ├── simple_json_data_php_7_4_with_constructor_readonly_properties_promoted_properties_getters_and_setters.txt │ │ │ ├── simple_json_data_php_7_4_with_custom_namespace_root_class_name_and_strict_types.txt │ │ │ ├── simple_json_data_php_7_4_with_final_classes_and_all_properties_nullable.txt │ │ │ ├── simple_json_data_php_7_4_with_from_json_and_to_array_methods.txt │ │ │ ├── simple_json_data_php_7_4_with_getters_fluent_setters_all_docblocks_extra_new_lines_for_properties_and_from_json_method.txt │ │ │ ├── simple_json_data_php_7_4_with_getters_fluent_setters_all_docblocks_extra_new_lines_for_properties_from_json_method_and_to_array_method.txt │ │ │ ├── simple_json_data_php_7_4_with_setters_and_from_json_array_method.txt │ │ │ ├── simple_json_data_php_7_4_with_setters_and_from_json_method.txt │ │ │ ├── simple_json_data_php_7_4_with_to_array_method.txt │ │ │ ├── simple_json_data_php_7_4_without_constructor.txt │ │ │ ├── simple_json_data_php_7_4_without_constructor_and_readonly_classes.txt │ │ │ ├── simple_json_data_php_7_4_without_constructor_and_readonly_properties.txt │ │ │ ├── simple_json_data_php_8_0_with_constructor.txt │ │ │ ├── simple_json_data_php_8_0_with_constructor_and_readonly_properties.txt │ │ │ ├── simple_json_data_php_8_0_with_constructor_promoted_properties_getters_and_setters.txt │ │ │ ├── simple_json_data_php_8_0_with_constructor_readonly_properties_and_promoted_properties.txt │ │ │ ├── simple_json_data_php_8_0_with_constructor_readonly_properties_promoted_properties_and_from_json_array_method.txt │ │ │ ├── simple_json_data_php_8_0_with_constructor_readonly_properties_promoted_properties_and_from_json_method.txt │ │ │ ├── simple_json_data_php_8_0_with_constructor_readonly_properties_promoted_properties_getters_and_setters.txt │ │ │ ├── simple_json_data_php_8_0_with_custom_namespace_root_class_name_and_strict_types.txt │ │ │ ├── simple_json_data_php_8_0_with_final_classes_and_all_properties_nullable.txt │ │ │ ├── simple_json_data_php_8_0_with_from_json_and_to_array_methods.txt │ │ │ ├── simple_json_data_php_8_0_with_getters_fluent_setters_all_docblocks_extra_new_lines_for_properties_and_from_json_method.txt │ │ │ ├── simple_json_data_php_8_0_with_getters_fluent_setters_all_docblocks_extra_new_lines_for_properties_from_json_method_and_to_array_method.txt │ │ │ ├── simple_json_data_php_8_0_with_setters_and_from_json_array_method.txt │ │ │ ├── simple_json_data_php_8_0_with_setters_and_from_json_method.txt │ │ │ ├── simple_json_data_php_8_0_with_to_array_method.txt │ │ │ ├── simple_json_data_php_8_0_without_constructor.txt │ │ │ ├── simple_json_data_php_8_0_without_constructor_and_readonly_classes.txt │ │ │ ├── simple_json_data_php_8_0_without_constructor_and_readonly_properties.txt │ │ │ ├── simple_json_data_php_8_1_with_constructor.txt │ │ │ ├── simple_json_data_php_8_1_with_constructor_and_readonly_properties.txt │ │ │ ├── simple_json_data_php_8_1_with_constructor_promoted_properties_getters_and_setters.txt │ │ │ ├── simple_json_data_php_8_1_with_constructor_readonly_properties_and_promoted_properties.txt │ │ │ ├── simple_json_data_php_8_1_with_constructor_readonly_properties_promoted_properties_and_from_json_array_method.txt │ │ │ ├── simple_json_data_php_8_1_with_constructor_readonly_properties_promoted_properties_and_from_json_method.txt │ │ │ ├── simple_json_data_php_8_1_with_constructor_readonly_properties_promoted_properties_getters_and_setters.txt │ │ │ ├── simple_json_data_php_8_1_with_custom_namespace_root_class_name_and_strict_types.txt │ │ │ ├── simple_json_data_php_8_1_with_final_classes_and_all_properties_nullable.txt │ │ │ ├── simple_json_data_php_8_1_with_from_json_and_to_array_methods.txt │ │ │ ├── simple_json_data_php_8_1_with_getters_fluent_setters_all_docblocks_extra_new_lines_for_properties_and_from_json_method.txt │ │ │ ├── simple_json_data_php_8_1_with_getters_fluent_setters_all_docblocks_extra_new_lines_for_properties_from_json_method_and_to_array_method.txt │ │ │ ├── simple_json_data_php_8_1_with_setters_and_from_json_array_method.txt │ │ │ ├── simple_json_data_php_8_1_with_setters_and_from_json_method.txt │ │ │ ├── simple_json_data_php_8_1_with_to_array_method.txt │ │ │ ├── simple_json_data_php_8_1_without_constructor.txt │ │ │ ├── simple_json_data_php_8_1_without_constructor_and_readonly_classes.txt │ │ │ ├── simple_json_data_php_8_1_without_constructor_and_readonly_properties.txt │ │ │ ├── simple_json_data_php_8_2_with_constructor.txt │ │ │ ├── simple_json_data_php_8_2_with_constructor_and_readonly_properties.txt │ │ │ ├── simple_json_data_php_8_2_with_constructor_promoted_properties_getters_and_setters.txt │ │ │ ├── simple_json_data_php_8_2_with_constructor_readonly_properties_and_promoted_properties.txt │ │ │ ├── simple_json_data_php_8_2_with_constructor_readonly_properties_promoted_properties_and_from_json_array_method.txt │ │ │ ├── simple_json_data_php_8_2_with_constructor_readonly_properties_promoted_properties_and_from_json_method.txt │ │ │ ├── simple_json_data_php_8_2_with_constructor_readonly_properties_promoted_properties_getters_and_setters.txt │ │ │ ├── simple_json_data_php_8_2_with_custom_namespace_root_class_name_and_strict_types.txt │ │ │ ├── simple_json_data_php_8_2_with_final_classes_and_all_properties_nullable.txt │ │ │ ├── simple_json_data_php_8_2_with_from_json_and_to_array_methods.txt │ │ │ ├── simple_json_data_php_8_2_with_getters_fluent_setters_all_docblocks_extra_new_lines_for_properties_and_from_json_method.txt │ │ │ ├── simple_json_data_php_8_2_with_getters_fluent_setters_all_docblocks_extra_new_lines_for_properties_from_json_method_and_to_array_method.txt │ │ │ ├── simple_json_data_php_8_2_with_setters_and_from_json_array_method.txt │ │ │ ├── simple_json_data_php_8_2_with_setters_and_from_json_method.txt │ │ │ ├── simple_json_data_php_8_2_with_to_array_method.txt │ │ │ ├── simple_json_data_php_8_2_without_constructor.txt │ │ │ ├── simple_json_data_php_8_2_without_constructor_and_readonly_classes.txt │ │ │ ├── simple_json_data_php_8_2_without_constructor_and_readonly_properties.txt │ │ │ ├── simple_json_data_php_8_3_with_constructor.txt │ │ │ ├── simple_json_data_php_8_3_with_constructor_and_readonly_properties.txt │ │ │ ├── simple_json_data_php_8_3_with_constructor_promoted_properties_getters_and_setters.txt │ │ │ ├── simple_json_data_php_8_3_with_constructor_readonly_properties_and_promoted_properties.txt │ │ │ ├── simple_json_data_php_8_3_with_constructor_readonly_properties_promoted_properties_and_from_json_array_method.txt │ │ │ ├── simple_json_data_php_8_3_with_constructor_readonly_properties_promoted_properties_and_from_json_method.txt │ │ │ ├── simple_json_data_php_8_3_with_constructor_readonly_properties_promoted_properties_getters_and_setters.txt │ │ │ ├── simple_json_data_php_8_3_with_custom_namespace_root_class_name_and_strict_types.txt │ │ │ ├── simple_json_data_php_8_3_with_final_classes_and_all_properties_nullable.txt │ │ │ ├── simple_json_data_php_8_3_with_from_json_and_to_array_methods.txt │ │ │ ├── simple_json_data_php_8_3_with_getters_fluent_setters_all_docblocks_extra_new_lines_for_properties_and_from_json_method.txt │ │ │ ├── simple_json_data_php_8_3_with_getters_fluent_setters_all_docblocks_extra_new_lines_for_properties_from_json_method_and_to_array_method.txt │ │ │ ├── simple_json_data_php_8_3_with_setters_and_from_json_array_method.txt │ │ │ ├── simple_json_data_php_8_3_with_setters_and_from_json_method.txt │ │ │ ├── simple_json_data_php_8_3_with_to_array_method.txt │ │ │ ├── simple_json_data_php_8_3_without_constructor.txt │ │ │ ├── simple_json_data_php_8_3_without_constructor_and_readonly_classes.txt │ │ │ └── simple_json_data_php_8_3_without_constructor_and_readonly_properties.txt │ │ └── simple_json.txt │ └── json-to-php-converter.spec.ts └── test-utils.ts ├── tsconfig.json └── vite.config.js /.browserslistrc: -------------------------------------------------------------------------------- 1 | > 1% 2 | last 2 versions 3 | -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.github/workflows/deploy-pages.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/.github/workflows/deploy-pages.yml -------------------------------------------------------------------------------- /.github/workflows/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/.github/workflows/lint.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/README.md -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/babel.config.js -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /screenshots/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/screenshots/screenshot.png -------------------------------------------------------------------------------- /src/@types/shims-vue.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/src/@types/shims-vue.d.ts -------------------------------------------------------------------------------- /src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/src/App.vue -------------------------------------------------------------------------------- /src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/src/assets/logo.png -------------------------------------------------------------------------------- /src/assets/scss/_prism_theme.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/src/assets/scss/_prism_theme.scss -------------------------------------------------------------------------------- /src/assets/scss/theme.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/src/assets/scss/theme.scss -------------------------------------------------------------------------------- /src/components/Alert.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/src/components/Alert.vue -------------------------------------------------------------------------------- /src/components/Card.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/src/components/Card.vue -------------------------------------------------------------------------------- /src/components/Code.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/src/components/Code.vue -------------------------------------------------------------------------------- /src/components/Footer.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/src/components/Footer.vue -------------------------------------------------------------------------------- /src/components/Settings.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/src/components/Settings.vue -------------------------------------------------------------------------------- /src/components/ThemeColorSwitch.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/src/components/ThemeColorSwitch.vue -------------------------------------------------------------------------------- /src/components/buttons/IconButton.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/src/components/buttons/IconButton.vue -------------------------------------------------------------------------------- /src/components/form/Checkbox.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/src/components/form/Checkbox.vue -------------------------------------------------------------------------------- /src/components/form/FormGroup.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/src/components/form/FormGroup.vue -------------------------------------------------------------------------------- /src/components/form/Label.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/src/components/form/Label.vue -------------------------------------------------------------------------------- /src/components/form/Select.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/src/components/form/Select.vue -------------------------------------------------------------------------------- /src/components/form/TextArea.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/src/components/form/TextArea.vue -------------------------------------------------------------------------------- /src/components/form/TextInput.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/src/components/form/TextInput.vue -------------------------------------------------------------------------------- /src/components/icons/CheckIcon.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/src/components/icons/CheckIcon.vue -------------------------------------------------------------------------------- /src/components/icons/ClipboardIcon.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/src/components/icons/ClipboardIcon.vue -------------------------------------------------------------------------------- /src/components/icons/CloudArrowDownIcon.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/src/components/icons/CloudArrowDownIcon.vue -------------------------------------------------------------------------------- /src/components/icons/GithubIcon.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/src/components/icons/GithubIcon.vue -------------------------------------------------------------------------------- /src/components/icons/HalfFilledCircleIcon.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/src/components/icons/HalfFilledCircleIcon.vue -------------------------------------------------------------------------------- /src/components/icons/MoonIcon.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/src/components/icons/MoonIcon.vue -------------------------------------------------------------------------------- /src/components/icons/SunIcon.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/src/components/icons/SunIcon.vue -------------------------------------------------------------------------------- /src/components/loaders/Spinner.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/src/components/loaders/Spinner.vue -------------------------------------------------------------------------------- /src/components/tab-panel/TabContent.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/src/components/tab-panel/TabContent.vue -------------------------------------------------------------------------------- /src/components/tab-panel/TabNav.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/src/components/tab-panel/TabNav.vue -------------------------------------------------------------------------------- /src/components/tab-panel/TabNavItem.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/src/components/tab-panel/TabNavItem.vue -------------------------------------------------------------------------------- /src/components/tab-panel/TabPanel.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/src/components/tab-panel/TabPanel.vue -------------------------------------------------------------------------------- /src/dto/PhpClass.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/src/dto/PhpClass.ts -------------------------------------------------------------------------------- /src/dto/PhpProperty.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/src/dto/PhpProperty.ts -------------------------------------------------------------------------------- /src/dto/SelectOption.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/src/dto/SelectOption.ts -------------------------------------------------------------------------------- /src/dto/Settings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/src/dto/Settings.ts -------------------------------------------------------------------------------- /src/enums/PhpDocblock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/src/enums/PhpDocblock.ts -------------------------------------------------------------------------------- /src/enums/PhpVersion.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/src/enums/PhpVersion.ts -------------------------------------------------------------------------------- /src/enums/PhpVisibility.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/src/enums/PhpVisibility.ts -------------------------------------------------------------------------------- /src/enums/PropertyDocblockType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/src/enums/PropertyDocblockType.ts -------------------------------------------------------------------------------- /src/enums/StringCase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/src/enums/StringCase.ts -------------------------------------------------------------------------------- /src/enums/ThemeColor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/src/enums/ThemeColor.ts -------------------------------------------------------------------------------- /src/factories/JsonToPhpFactory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/src/factories/JsonToPhpFactory.ts -------------------------------------------------------------------------------- /src/factories/PhpClassFactory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/src/factories/PhpClassFactory.ts -------------------------------------------------------------------------------- /src/factories/PhpTypeFactory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/src/factories/PhpTypeFactory.ts -------------------------------------------------------------------------------- /src/hooks/use-file-export.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/src/hooks/use-file-export.ts -------------------------------------------------------------------------------- /src/hooks/use-json-converter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/src/hooks/use-json-converter.ts -------------------------------------------------------------------------------- /src/hooks/use-php-class-export.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/src/hooks/use-php-class-export.ts -------------------------------------------------------------------------------- /src/hooks/use-php-code-presenter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/src/hooks/use-php-code-presenter.ts -------------------------------------------------------------------------------- /src/hooks/use-settings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/src/hooks/use-settings.ts -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/php-types/ArrayType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/src/php-types/ArrayType.ts -------------------------------------------------------------------------------- /src/php-types/BooleanType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/src/php-types/BooleanType.ts -------------------------------------------------------------------------------- /src/php-types/FloatType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/src/php-types/FloatType.ts -------------------------------------------------------------------------------- /src/php-types/IntType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/src/php-types/IntType.ts -------------------------------------------------------------------------------- /src/php-types/NullType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/src/php-types/NullType.ts -------------------------------------------------------------------------------- /src/php-types/PhpClassType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/src/php-types/PhpClassType.ts -------------------------------------------------------------------------------- /src/php-types/PhpType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/src/php-types/PhpType.ts -------------------------------------------------------------------------------- /src/php-types/StdClassType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/src/php-types/StdClassType.ts -------------------------------------------------------------------------------- /src/php-types/StringType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/src/php-types/StringType.ts -------------------------------------------------------------------------------- /src/php-types/UnknownType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/src/php-types/UnknownType.ts -------------------------------------------------------------------------------- /src/php/ReservedKeywords.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/src/php/ReservedKeywords.ts -------------------------------------------------------------------------------- /src/presenters/PhpClassFromJsonMethodPresenter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/src/presenters/PhpClassFromJsonMethodPresenter.ts -------------------------------------------------------------------------------- /src/presenters/PhpClassPresenter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/src/presenters/PhpClassPresenter.ts -------------------------------------------------------------------------------- /src/presenters/PhpClassToArrayMethodPresenter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/src/presenters/PhpClassToArrayMethodPresenter.ts -------------------------------------------------------------------------------- /src/presenters/PhpConstructorPresenter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/src/presenters/PhpConstructorPresenter.ts -------------------------------------------------------------------------------- /src/presenters/PhpDocblockPresenter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/src/presenters/PhpDocblockPresenter.ts -------------------------------------------------------------------------------- /src/presenters/PhpFluentSetterPresenter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/src/presenters/PhpFluentSetterPresenter.ts -------------------------------------------------------------------------------- /src/presenters/PhpGetterPresenter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/src/presenters/PhpGetterPresenter.ts -------------------------------------------------------------------------------- /src/presenters/PhpPropertyPresenter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/src/presenters/PhpPropertyPresenter.ts -------------------------------------------------------------------------------- /src/presenters/PhpPropertyTypePresenter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/src/presenters/PhpPropertyTypePresenter.ts -------------------------------------------------------------------------------- /src/presenters/PhpSetterPresenter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/src/presenters/PhpSetterPresenter.ts -------------------------------------------------------------------------------- /src/router/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/src/router/index.ts -------------------------------------------------------------------------------- /src/support/EnumSelect.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/src/support/EnumSelect.ts -------------------------------------------------------------------------------- /src/support/Str.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/src/support/Str.ts -------------------------------------------------------------------------------- /src/views/Generator.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/src/views/Generator.vue -------------------------------------------------------------------------------- /src/writers/CodeWriter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/src/writers/CodeWriter.ts -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tests/converter/fixtures/all_types_json.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/tests/converter/fixtures/all_types_json.txt -------------------------------------------------------------------------------- /tests/converter/fixtures/merges_nested_arrays.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/tests/converter/fixtures/merges_nested_arrays.txt -------------------------------------------------------------------------------- /tests/converter/fixtures/results/all_types_json_php_7_3_with_constructor.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/tests/converter/fixtures/results/all_types_json_php_7_3_with_constructor.txt -------------------------------------------------------------------------------- /tests/converter/fixtures/results/all_types_json_php_7_3_with_constructor_and_readonly_properties.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/tests/converter/fixtures/results/all_types_json_php_7_3_with_constructor_and_readonly_properties.txt -------------------------------------------------------------------------------- /tests/converter/fixtures/results/all_types_json_php_7_3_with_constructor_promoted_properties_getters_and_setters.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/tests/converter/fixtures/results/all_types_json_php_7_3_with_constructor_promoted_properties_getters_and_setters.txt -------------------------------------------------------------------------------- /tests/converter/fixtures/results/all_types_json_php_7_3_with_constructor_readonly_properties_and_promoted_properties.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/tests/converter/fixtures/results/all_types_json_php_7_3_with_constructor_readonly_properties_and_promoted_properties.txt -------------------------------------------------------------------------------- /tests/converter/fixtures/results/all_types_json_php_7_3_with_constructor_readonly_properties_promoted_properties_and_from_json_array_method.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/tests/converter/fixtures/results/all_types_json_php_7_3_with_constructor_readonly_properties_promoted_properties_and_from_json_array_method.txt -------------------------------------------------------------------------------- /tests/converter/fixtures/results/all_types_json_php_7_3_with_constructor_readonly_properties_promoted_properties_and_from_json_method.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/tests/converter/fixtures/results/all_types_json_php_7_3_with_constructor_readonly_properties_promoted_properties_and_from_json_method.txt -------------------------------------------------------------------------------- /tests/converter/fixtures/results/all_types_json_php_7_3_with_constructor_readonly_properties_promoted_properties_getters_and_setters.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/tests/converter/fixtures/results/all_types_json_php_7_3_with_constructor_readonly_properties_promoted_properties_getters_and_setters.txt -------------------------------------------------------------------------------- /tests/converter/fixtures/results/all_types_json_php_7_3_with_custom_namespace_root_class_name_and_strict_types.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/tests/converter/fixtures/results/all_types_json_php_7_3_with_custom_namespace_root_class_name_and_strict_types.txt -------------------------------------------------------------------------------- /tests/converter/fixtures/results/all_types_json_php_7_3_with_final_classes_and_all_properties_nullable.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/tests/converter/fixtures/results/all_types_json_php_7_3_with_final_classes_and_all_properties_nullable.txt -------------------------------------------------------------------------------- /tests/converter/fixtures/results/all_types_json_php_7_3_with_from_json_and_to_array_methods.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/tests/converter/fixtures/results/all_types_json_php_7_3_with_from_json_and_to_array_methods.txt -------------------------------------------------------------------------------- /tests/converter/fixtures/results/all_types_json_php_7_3_with_getters_fluent_setters_all_docblocks_extra_new_lines_for_properties_and_from_json_method.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/tests/converter/fixtures/results/all_types_json_php_7_3_with_getters_fluent_setters_all_docblocks_extra_new_lines_for_properties_and_from_json_method.txt -------------------------------------------------------------------------------- /tests/converter/fixtures/results/all_types_json_php_7_3_with_getters_fluent_setters_all_docblocks_extra_new_lines_for_properties_from_json_method_and_to_array_method.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/tests/converter/fixtures/results/all_types_json_php_7_3_with_getters_fluent_setters_all_docblocks_extra_new_lines_for_properties_from_json_method_and_to_array_method.txt -------------------------------------------------------------------------------- /tests/converter/fixtures/results/all_types_json_php_7_3_with_setters_and_from_json_array_method.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/tests/converter/fixtures/results/all_types_json_php_7_3_with_setters_and_from_json_array_method.txt -------------------------------------------------------------------------------- /tests/converter/fixtures/results/all_types_json_php_7_3_with_setters_and_from_json_method.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/tests/converter/fixtures/results/all_types_json_php_7_3_with_setters_and_from_json_method.txt -------------------------------------------------------------------------------- /tests/converter/fixtures/results/all_types_json_php_7_3_with_to_array_method.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/tests/converter/fixtures/results/all_types_json_php_7_3_with_to_array_method.txt -------------------------------------------------------------------------------- /tests/converter/fixtures/results/all_types_json_php_7_3_without_constructor.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/tests/converter/fixtures/results/all_types_json_php_7_3_without_constructor.txt -------------------------------------------------------------------------------- /tests/converter/fixtures/results/all_types_json_php_7_3_without_constructor_and_readonly_classes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/tests/converter/fixtures/results/all_types_json_php_7_3_without_constructor_and_readonly_classes.txt -------------------------------------------------------------------------------- /tests/converter/fixtures/results/all_types_json_php_7_3_without_constructor_and_readonly_properties.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/tests/converter/fixtures/results/all_types_json_php_7_3_without_constructor_and_readonly_properties.txt -------------------------------------------------------------------------------- /tests/converter/fixtures/results/all_types_json_php_7_4_with_constructor.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/tests/converter/fixtures/results/all_types_json_php_7_4_with_constructor.txt -------------------------------------------------------------------------------- /tests/converter/fixtures/results/all_types_json_php_7_4_with_constructor_and_readonly_properties.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/tests/converter/fixtures/results/all_types_json_php_7_4_with_constructor_and_readonly_properties.txt -------------------------------------------------------------------------------- /tests/converter/fixtures/results/all_types_json_php_7_4_with_constructor_promoted_properties_getters_and_setters.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/tests/converter/fixtures/results/all_types_json_php_7_4_with_constructor_promoted_properties_getters_and_setters.txt -------------------------------------------------------------------------------- /tests/converter/fixtures/results/all_types_json_php_7_4_with_constructor_readonly_properties_and_promoted_properties.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/tests/converter/fixtures/results/all_types_json_php_7_4_with_constructor_readonly_properties_and_promoted_properties.txt -------------------------------------------------------------------------------- /tests/converter/fixtures/results/all_types_json_php_7_4_with_constructor_readonly_properties_promoted_properties_and_from_json_array_method.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/tests/converter/fixtures/results/all_types_json_php_7_4_with_constructor_readonly_properties_promoted_properties_and_from_json_array_method.txt -------------------------------------------------------------------------------- /tests/converter/fixtures/results/all_types_json_php_7_4_with_constructor_readonly_properties_promoted_properties_and_from_json_method.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/tests/converter/fixtures/results/all_types_json_php_7_4_with_constructor_readonly_properties_promoted_properties_and_from_json_method.txt -------------------------------------------------------------------------------- /tests/converter/fixtures/results/all_types_json_php_7_4_with_constructor_readonly_properties_promoted_properties_getters_and_setters.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/tests/converter/fixtures/results/all_types_json_php_7_4_with_constructor_readonly_properties_promoted_properties_getters_and_setters.txt -------------------------------------------------------------------------------- /tests/converter/fixtures/results/all_types_json_php_7_4_with_custom_namespace_root_class_name_and_strict_types.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/tests/converter/fixtures/results/all_types_json_php_7_4_with_custom_namespace_root_class_name_and_strict_types.txt -------------------------------------------------------------------------------- /tests/converter/fixtures/results/all_types_json_php_7_4_with_final_classes_and_all_properties_nullable.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/tests/converter/fixtures/results/all_types_json_php_7_4_with_final_classes_and_all_properties_nullable.txt -------------------------------------------------------------------------------- /tests/converter/fixtures/results/all_types_json_php_7_4_with_from_json_and_to_array_methods.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/tests/converter/fixtures/results/all_types_json_php_7_4_with_from_json_and_to_array_methods.txt -------------------------------------------------------------------------------- /tests/converter/fixtures/results/all_types_json_php_7_4_with_getters_fluent_setters_all_docblocks_extra_new_lines_for_properties_and_from_json_method.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/tests/converter/fixtures/results/all_types_json_php_7_4_with_getters_fluent_setters_all_docblocks_extra_new_lines_for_properties_and_from_json_method.txt -------------------------------------------------------------------------------- /tests/converter/fixtures/results/all_types_json_php_7_4_with_getters_fluent_setters_all_docblocks_extra_new_lines_for_properties_from_json_method_and_to_array_method.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/tests/converter/fixtures/results/all_types_json_php_7_4_with_getters_fluent_setters_all_docblocks_extra_new_lines_for_properties_from_json_method_and_to_array_method.txt -------------------------------------------------------------------------------- /tests/converter/fixtures/results/all_types_json_php_7_4_with_setters_and_from_json_array_method.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/tests/converter/fixtures/results/all_types_json_php_7_4_with_setters_and_from_json_array_method.txt -------------------------------------------------------------------------------- /tests/converter/fixtures/results/all_types_json_php_7_4_with_setters_and_from_json_method.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/tests/converter/fixtures/results/all_types_json_php_7_4_with_setters_and_from_json_method.txt -------------------------------------------------------------------------------- /tests/converter/fixtures/results/all_types_json_php_7_4_with_to_array_method.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/tests/converter/fixtures/results/all_types_json_php_7_4_with_to_array_method.txt -------------------------------------------------------------------------------- /tests/converter/fixtures/results/all_types_json_php_7_4_without_constructor.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/tests/converter/fixtures/results/all_types_json_php_7_4_without_constructor.txt -------------------------------------------------------------------------------- /tests/converter/fixtures/results/all_types_json_php_7_4_without_constructor_and_readonly_classes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/tests/converter/fixtures/results/all_types_json_php_7_4_without_constructor_and_readonly_classes.txt -------------------------------------------------------------------------------- /tests/converter/fixtures/results/all_types_json_php_7_4_without_constructor_and_readonly_properties.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/tests/converter/fixtures/results/all_types_json_php_7_4_without_constructor_and_readonly_properties.txt -------------------------------------------------------------------------------- /tests/converter/fixtures/results/all_types_json_php_8_0_with_constructor.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/tests/converter/fixtures/results/all_types_json_php_8_0_with_constructor.txt -------------------------------------------------------------------------------- /tests/converter/fixtures/results/all_types_json_php_8_0_with_constructor_and_readonly_properties.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/tests/converter/fixtures/results/all_types_json_php_8_0_with_constructor_and_readonly_properties.txt -------------------------------------------------------------------------------- /tests/converter/fixtures/results/all_types_json_php_8_0_with_constructor_promoted_properties_getters_and_setters.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/tests/converter/fixtures/results/all_types_json_php_8_0_with_constructor_promoted_properties_getters_and_setters.txt -------------------------------------------------------------------------------- /tests/converter/fixtures/results/all_types_json_php_8_0_with_constructor_readonly_properties_and_promoted_properties.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/tests/converter/fixtures/results/all_types_json_php_8_0_with_constructor_readonly_properties_and_promoted_properties.txt -------------------------------------------------------------------------------- /tests/converter/fixtures/results/all_types_json_php_8_0_with_constructor_readonly_properties_promoted_properties_and_from_json_array_method.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/tests/converter/fixtures/results/all_types_json_php_8_0_with_constructor_readonly_properties_promoted_properties_and_from_json_array_method.txt -------------------------------------------------------------------------------- /tests/converter/fixtures/results/all_types_json_php_8_0_with_constructor_readonly_properties_promoted_properties_and_from_json_method.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/tests/converter/fixtures/results/all_types_json_php_8_0_with_constructor_readonly_properties_promoted_properties_and_from_json_method.txt -------------------------------------------------------------------------------- /tests/converter/fixtures/results/all_types_json_php_8_0_with_constructor_readonly_properties_promoted_properties_getters_and_setters.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/tests/converter/fixtures/results/all_types_json_php_8_0_with_constructor_readonly_properties_promoted_properties_getters_and_setters.txt -------------------------------------------------------------------------------- /tests/converter/fixtures/results/all_types_json_php_8_0_with_custom_namespace_root_class_name_and_strict_types.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/tests/converter/fixtures/results/all_types_json_php_8_0_with_custom_namespace_root_class_name_and_strict_types.txt -------------------------------------------------------------------------------- /tests/converter/fixtures/results/all_types_json_php_8_0_with_final_classes_and_all_properties_nullable.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/tests/converter/fixtures/results/all_types_json_php_8_0_with_final_classes_and_all_properties_nullable.txt -------------------------------------------------------------------------------- /tests/converter/fixtures/results/all_types_json_php_8_0_with_from_json_and_to_array_methods.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/tests/converter/fixtures/results/all_types_json_php_8_0_with_from_json_and_to_array_methods.txt -------------------------------------------------------------------------------- /tests/converter/fixtures/results/all_types_json_php_8_0_with_getters_fluent_setters_all_docblocks_extra_new_lines_for_properties_and_from_json_method.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/tests/converter/fixtures/results/all_types_json_php_8_0_with_getters_fluent_setters_all_docblocks_extra_new_lines_for_properties_and_from_json_method.txt -------------------------------------------------------------------------------- /tests/converter/fixtures/results/all_types_json_php_8_0_with_getters_fluent_setters_all_docblocks_extra_new_lines_for_properties_from_json_method_and_to_array_method.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/tests/converter/fixtures/results/all_types_json_php_8_0_with_getters_fluent_setters_all_docblocks_extra_new_lines_for_properties_from_json_method_and_to_array_method.txt -------------------------------------------------------------------------------- /tests/converter/fixtures/results/all_types_json_php_8_0_with_setters_and_from_json_array_method.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/tests/converter/fixtures/results/all_types_json_php_8_0_with_setters_and_from_json_array_method.txt -------------------------------------------------------------------------------- /tests/converter/fixtures/results/all_types_json_php_8_0_with_setters_and_from_json_method.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/tests/converter/fixtures/results/all_types_json_php_8_0_with_setters_and_from_json_method.txt -------------------------------------------------------------------------------- /tests/converter/fixtures/results/all_types_json_php_8_0_with_to_array_method.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/tests/converter/fixtures/results/all_types_json_php_8_0_with_to_array_method.txt -------------------------------------------------------------------------------- /tests/converter/fixtures/results/all_types_json_php_8_0_without_constructor.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/tests/converter/fixtures/results/all_types_json_php_8_0_without_constructor.txt -------------------------------------------------------------------------------- /tests/converter/fixtures/results/all_types_json_php_8_0_without_constructor_and_readonly_classes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/tests/converter/fixtures/results/all_types_json_php_8_0_without_constructor_and_readonly_classes.txt -------------------------------------------------------------------------------- /tests/converter/fixtures/results/all_types_json_php_8_0_without_constructor_and_readonly_properties.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/tests/converter/fixtures/results/all_types_json_php_8_0_without_constructor_and_readonly_properties.txt -------------------------------------------------------------------------------- /tests/converter/fixtures/results/all_types_json_php_8_1_with_constructor.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/tests/converter/fixtures/results/all_types_json_php_8_1_with_constructor.txt -------------------------------------------------------------------------------- /tests/converter/fixtures/results/all_types_json_php_8_1_with_constructor_and_readonly_properties.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/tests/converter/fixtures/results/all_types_json_php_8_1_with_constructor_and_readonly_properties.txt -------------------------------------------------------------------------------- /tests/converter/fixtures/results/all_types_json_php_8_1_with_constructor_promoted_properties_getters_and_setters.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/tests/converter/fixtures/results/all_types_json_php_8_1_with_constructor_promoted_properties_getters_and_setters.txt -------------------------------------------------------------------------------- /tests/converter/fixtures/results/all_types_json_php_8_1_with_constructor_readonly_properties_and_promoted_properties.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/tests/converter/fixtures/results/all_types_json_php_8_1_with_constructor_readonly_properties_and_promoted_properties.txt -------------------------------------------------------------------------------- /tests/converter/fixtures/results/all_types_json_php_8_1_with_constructor_readonly_properties_promoted_properties_and_from_json_array_method.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/tests/converter/fixtures/results/all_types_json_php_8_1_with_constructor_readonly_properties_promoted_properties_and_from_json_array_method.txt -------------------------------------------------------------------------------- /tests/converter/fixtures/results/all_types_json_php_8_1_with_constructor_readonly_properties_promoted_properties_and_from_json_method.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/tests/converter/fixtures/results/all_types_json_php_8_1_with_constructor_readonly_properties_promoted_properties_and_from_json_method.txt -------------------------------------------------------------------------------- /tests/converter/fixtures/results/all_types_json_php_8_1_with_constructor_readonly_properties_promoted_properties_getters_and_setters.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/tests/converter/fixtures/results/all_types_json_php_8_1_with_constructor_readonly_properties_promoted_properties_getters_and_setters.txt -------------------------------------------------------------------------------- /tests/converter/fixtures/results/all_types_json_php_8_1_with_custom_namespace_root_class_name_and_strict_types.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/tests/converter/fixtures/results/all_types_json_php_8_1_with_custom_namespace_root_class_name_and_strict_types.txt -------------------------------------------------------------------------------- /tests/converter/fixtures/results/all_types_json_php_8_1_with_final_classes_and_all_properties_nullable.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/tests/converter/fixtures/results/all_types_json_php_8_1_with_final_classes_and_all_properties_nullable.txt -------------------------------------------------------------------------------- /tests/converter/fixtures/results/all_types_json_php_8_1_with_from_json_and_to_array_methods.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/tests/converter/fixtures/results/all_types_json_php_8_1_with_from_json_and_to_array_methods.txt -------------------------------------------------------------------------------- /tests/converter/fixtures/results/all_types_json_php_8_1_with_getters_fluent_setters_all_docblocks_extra_new_lines_for_properties_and_from_json_method.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/tests/converter/fixtures/results/all_types_json_php_8_1_with_getters_fluent_setters_all_docblocks_extra_new_lines_for_properties_and_from_json_method.txt -------------------------------------------------------------------------------- /tests/converter/fixtures/results/all_types_json_php_8_1_with_getters_fluent_setters_all_docblocks_extra_new_lines_for_properties_from_json_method_and_to_array_method.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/tests/converter/fixtures/results/all_types_json_php_8_1_with_getters_fluent_setters_all_docblocks_extra_new_lines_for_properties_from_json_method_and_to_array_method.txt -------------------------------------------------------------------------------- /tests/converter/fixtures/results/all_types_json_php_8_1_with_setters_and_from_json_array_method.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/tests/converter/fixtures/results/all_types_json_php_8_1_with_setters_and_from_json_array_method.txt -------------------------------------------------------------------------------- /tests/converter/fixtures/results/all_types_json_php_8_1_with_setters_and_from_json_method.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/tests/converter/fixtures/results/all_types_json_php_8_1_with_setters_and_from_json_method.txt -------------------------------------------------------------------------------- /tests/converter/fixtures/results/all_types_json_php_8_1_with_to_array_method.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/tests/converter/fixtures/results/all_types_json_php_8_1_with_to_array_method.txt -------------------------------------------------------------------------------- /tests/converter/fixtures/results/all_types_json_php_8_1_without_constructor.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/tests/converter/fixtures/results/all_types_json_php_8_1_without_constructor.txt -------------------------------------------------------------------------------- /tests/converter/fixtures/results/all_types_json_php_8_1_without_constructor_and_readonly_classes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/tests/converter/fixtures/results/all_types_json_php_8_1_without_constructor_and_readonly_classes.txt -------------------------------------------------------------------------------- /tests/converter/fixtures/results/all_types_json_php_8_1_without_constructor_and_readonly_properties.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/tests/converter/fixtures/results/all_types_json_php_8_1_without_constructor_and_readonly_properties.txt -------------------------------------------------------------------------------- /tests/converter/fixtures/results/all_types_json_php_8_2_with_constructor.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/tests/converter/fixtures/results/all_types_json_php_8_2_with_constructor.txt -------------------------------------------------------------------------------- /tests/converter/fixtures/results/all_types_json_php_8_2_with_constructor_and_readonly_properties.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/tests/converter/fixtures/results/all_types_json_php_8_2_with_constructor_and_readonly_properties.txt -------------------------------------------------------------------------------- /tests/converter/fixtures/results/all_types_json_php_8_2_with_constructor_promoted_properties_getters_and_setters.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/tests/converter/fixtures/results/all_types_json_php_8_2_with_constructor_promoted_properties_getters_and_setters.txt -------------------------------------------------------------------------------- /tests/converter/fixtures/results/all_types_json_php_8_2_with_constructor_readonly_properties_and_promoted_properties.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/tests/converter/fixtures/results/all_types_json_php_8_2_with_constructor_readonly_properties_and_promoted_properties.txt -------------------------------------------------------------------------------- /tests/converter/fixtures/results/all_types_json_php_8_2_with_constructor_readonly_properties_promoted_properties_and_from_json_array_method.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/tests/converter/fixtures/results/all_types_json_php_8_2_with_constructor_readonly_properties_promoted_properties_and_from_json_array_method.txt -------------------------------------------------------------------------------- /tests/converter/fixtures/results/all_types_json_php_8_2_with_constructor_readonly_properties_promoted_properties_and_from_json_method.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/tests/converter/fixtures/results/all_types_json_php_8_2_with_constructor_readonly_properties_promoted_properties_and_from_json_method.txt -------------------------------------------------------------------------------- /tests/converter/fixtures/results/all_types_json_php_8_2_with_constructor_readonly_properties_promoted_properties_getters_and_setters.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/tests/converter/fixtures/results/all_types_json_php_8_2_with_constructor_readonly_properties_promoted_properties_getters_and_setters.txt -------------------------------------------------------------------------------- /tests/converter/fixtures/results/all_types_json_php_8_2_with_custom_namespace_root_class_name_and_strict_types.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/tests/converter/fixtures/results/all_types_json_php_8_2_with_custom_namespace_root_class_name_and_strict_types.txt -------------------------------------------------------------------------------- /tests/converter/fixtures/results/all_types_json_php_8_2_with_final_classes_and_all_properties_nullable.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/tests/converter/fixtures/results/all_types_json_php_8_2_with_final_classes_and_all_properties_nullable.txt -------------------------------------------------------------------------------- /tests/converter/fixtures/results/all_types_json_php_8_2_with_from_json_and_to_array_methods.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/tests/converter/fixtures/results/all_types_json_php_8_2_with_from_json_and_to_array_methods.txt -------------------------------------------------------------------------------- /tests/converter/fixtures/results/all_types_json_php_8_2_with_getters_fluent_setters_all_docblocks_extra_new_lines_for_properties_and_from_json_method.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/tests/converter/fixtures/results/all_types_json_php_8_2_with_getters_fluent_setters_all_docblocks_extra_new_lines_for_properties_and_from_json_method.txt -------------------------------------------------------------------------------- /tests/converter/fixtures/results/all_types_json_php_8_2_with_getters_fluent_setters_all_docblocks_extra_new_lines_for_properties_from_json_method_and_to_array_method.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/tests/converter/fixtures/results/all_types_json_php_8_2_with_getters_fluent_setters_all_docblocks_extra_new_lines_for_properties_from_json_method_and_to_array_method.txt -------------------------------------------------------------------------------- /tests/converter/fixtures/results/all_types_json_php_8_2_with_setters_and_from_json_array_method.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/tests/converter/fixtures/results/all_types_json_php_8_2_with_setters_and_from_json_array_method.txt -------------------------------------------------------------------------------- /tests/converter/fixtures/results/all_types_json_php_8_2_with_setters_and_from_json_method.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/tests/converter/fixtures/results/all_types_json_php_8_2_with_setters_and_from_json_method.txt -------------------------------------------------------------------------------- /tests/converter/fixtures/results/all_types_json_php_8_2_with_to_array_method.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/tests/converter/fixtures/results/all_types_json_php_8_2_with_to_array_method.txt -------------------------------------------------------------------------------- /tests/converter/fixtures/results/all_types_json_php_8_2_without_constructor.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/tests/converter/fixtures/results/all_types_json_php_8_2_without_constructor.txt -------------------------------------------------------------------------------- /tests/converter/fixtures/results/all_types_json_php_8_2_without_constructor_and_readonly_classes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/tests/converter/fixtures/results/all_types_json_php_8_2_without_constructor_and_readonly_classes.txt -------------------------------------------------------------------------------- /tests/converter/fixtures/results/all_types_json_php_8_2_without_constructor_and_readonly_properties.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/tests/converter/fixtures/results/all_types_json_php_8_2_without_constructor_and_readonly_properties.txt -------------------------------------------------------------------------------- /tests/converter/fixtures/results/all_types_json_php_8_3_with_constructor.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/tests/converter/fixtures/results/all_types_json_php_8_3_with_constructor.txt -------------------------------------------------------------------------------- /tests/converter/fixtures/results/all_types_json_php_8_3_with_constructor_and_readonly_properties.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/tests/converter/fixtures/results/all_types_json_php_8_3_with_constructor_and_readonly_properties.txt -------------------------------------------------------------------------------- /tests/converter/fixtures/results/all_types_json_php_8_3_with_constructor_promoted_properties_getters_and_setters.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/tests/converter/fixtures/results/all_types_json_php_8_3_with_constructor_promoted_properties_getters_and_setters.txt -------------------------------------------------------------------------------- /tests/converter/fixtures/results/all_types_json_php_8_3_with_constructor_readonly_properties_and_promoted_properties.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/tests/converter/fixtures/results/all_types_json_php_8_3_with_constructor_readonly_properties_and_promoted_properties.txt -------------------------------------------------------------------------------- /tests/converter/fixtures/results/all_types_json_php_8_3_with_constructor_readonly_properties_promoted_properties_and_from_json_array_method.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/tests/converter/fixtures/results/all_types_json_php_8_3_with_constructor_readonly_properties_promoted_properties_and_from_json_array_method.txt -------------------------------------------------------------------------------- /tests/converter/fixtures/results/all_types_json_php_8_3_with_constructor_readonly_properties_promoted_properties_and_from_json_method.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/tests/converter/fixtures/results/all_types_json_php_8_3_with_constructor_readonly_properties_promoted_properties_and_from_json_method.txt -------------------------------------------------------------------------------- /tests/converter/fixtures/results/all_types_json_php_8_3_with_constructor_readonly_properties_promoted_properties_getters_and_setters.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/tests/converter/fixtures/results/all_types_json_php_8_3_with_constructor_readonly_properties_promoted_properties_getters_and_setters.txt -------------------------------------------------------------------------------- /tests/converter/fixtures/results/all_types_json_php_8_3_with_custom_namespace_root_class_name_and_strict_types.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/tests/converter/fixtures/results/all_types_json_php_8_3_with_custom_namespace_root_class_name_and_strict_types.txt -------------------------------------------------------------------------------- /tests/converter/fixtures/results/all_types_json_php_8_3_with_final_classes_and_all_properties_nullable.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/tests/converter/fixtures/results/all_types_json_php_8_3_with_final_classes_and_all_properties_nullable.txt -------------------------------------------------------------------------------- /tests/converter/fixtures/results/all_types_json_php_8_3_with_from_json_and_to_array_methods.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/tests/converter/fixtures/results/all_types_json_php_8_3_with_from_json_and_to_array_methods.txt -------------------------------------------------------------------------------- /tests/converter/fixtures/results/all_types_json_php_8_3_with_getters_fluent_setters_all_docblocks_extra_new_lines_for_properties_and_from_json_method.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/tests/converter/fixtures/results/all_types_json_php_8_3_with_getters_fluent_setters_all_docblocks_extra_new_lines_for_properties_and_from_json_method.txt -------------------------------------------------------------------------------- /tests/converter/fixtures/results/all_types_json_php_8_3_with_getters_fluent_setters_all_docblocks_extra_new_lines_for_properties_from_json_method_and_to_array_method.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/tests/converter/fixtures/results/all_types_json_php_8_3_with_getters_fluent_setters_all_docblocks_extra_new_lines_for_properties_from_json_method_and_to_array_method.txt -------------------------------------------------------------------------------- /tests/converter/fixtures/results/all_types_json_php_8_3_with_setters_and_from_json_array_method.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/tests/converter/fixtures/results/all_types_json_php_8_3_with_setters_and_from_json_array_method.txt -------------------------------------------------------------------------------- /tests/converter/fixtures/results/all_types_json_php_8_3_with_setters_and_from_json_method.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/tests/converter/fixtures/results/all_types_json_php_8_3_with_setters_and_from_json_method.txt -------------------------------------------------------------------------------- /tests/converter/fixtures/results/all_types_json_php_8_3_with_to_array_method.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/tests/converter/fixtures/results/all_types_json_php_8_3_with_to_array_method.txt -------------------------------------------------------------------------------- /tests/converter/fixtures/results/all_types_json_php_8_3_without_constructor.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/tests/converter/fixtures/results/all_types_json_php_8_3_without_constructor.txt -------------------------------------------------------------------------------- /tests/converter/fixtures/results/all_types_json_php_8_3_without_constructor_and_readonly_classes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/tests/converter/fixtures/results/all_types_json_php_8_3_without_constructor_and_readonly_classes.txt -------------------------------------------------------------------------------- /tests/converter/fixtures/results/all_types_json_php_8_3_without_constructor_and_readonly_properties.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/tests/converter/fixtures/results/all_types_json_php_8_3_without_constructor_and_readonly_properties.txt -------------------------------------------------------------------------------- /tests/converter/fixtures/results/merges_nested_arrays_php_7_3_with_constructor.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/tests/converter/fixtures/results/merges_nested_arrays_php_7_3_with_constructor.txt -------------------------------------------------------------------------------- /tests/converter/fixtures/results/merges_nested_arrays_php_7_3_with_constructor_and_readonly_properties.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/tests/converter/fixtures/results/merges_nested_arrays_php_7_3_with_constructor_and_readonly_properties.txt -------------------------------------------------------------------------------- /tests/converter/fixtures/results/merges_nested_arrays_php_7_3_with_constructor_promoted_properties_getters_and_setters.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/tests/converter/fixtures/results/merges_nested_arrays_php_7_3_with_constructor_promoted_properties_getters_and_setters.txt -------------------------------------------------------------------------------- /tests/converter/fixtures/results/merges_nested_arrays_php_7_3_with_constructor_readonly_properties_and_promoted_properties.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/tests/converter/fixtures/results/merges_nested_arrays_php_7_3_with_constructor_readonly_properties_and_promoted_properties.txt -------------------------------------------------------------------------------- /tests/converter/fixtures/results/merges_nested_arrays_php_7_3_with_constructor_readonly_properties_promoted_properties_and_from_json_array_method.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/tests/converter/fixtures/results/merges_nested_arrays_php_7_3_with_constructor_readonly_properties_promoted_properties_and_from_json_array_method.txt -------------------------------------------------------------------------------- /tests/converter/fixtures/results/merges_nested_arrays_php_7_3_with_constructor_readonly_properties_promoted_properties_and_from_json_method.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/tests/converter/fixtures/results/merges_nested_arrays_php_7_3_with_constructor_readonly_properties_promoted_properties_and_from_json_method.txt -------------------------------------------------------------------------------- /tests/converter/fixtures/results/merges_nested_arrays_php_7_3_with_constructor_readonly_properties_promoted_properties_getters_and_setters.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/tests/converter/fixtures/results/merges_nested_arrays_php_7_3_with_constructor_readonly_properties_promoted_properties_getters_and_setters.txt -------------------------------------------------------------------------------- /tests/converter/fixtures/results/merges_nested_arrays_php_7_3_with_custom_namespace_root_class_name_and_strict_types.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/tests/converter/fixtures/results/merges_nested_arrays_php_7_3_with_custom_namespace_root_class_name_and_strict_types.txt -------------------------------------------------------------------------------- /tests/converter/fixtures/results/merges_nested_arrays_php_7_3_with_final_classes_and_all_properties_nullable.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/tests/converter/fixtures/results/merges_nested_arrays_php_7_3_with_final_classes_and_all_properties_nullable.txt -------------------------------------------------------------------------------- /tests/converter/fixtures/results/merges_nested_arrays_php_7_3_with_from_json_and_to_array_methods.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/tests/converter/fixtures/results/merges_nested_arrays_php_7_3_with_from_json_and_to_array_methods.txt -------------------------------------------------------------------------------- /tests/converter/fixtures/results/merges_nested_arrays_php_7_3_with_getters_fluent_setters_all_docblocks_extra_new_lines_for_properties_and_from_json_method.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/tests/converter/fixtures/results/merges_nested_arrays_php_7_3_with_getters_fluent_setters_all_docblocks_extra_new_lines_for_properties_and_from_json_method.txt -------------------------------------------------------------------------------- /tests/converter/fixtures/results/merges_nested_arrays_php_7_3_with_getters_fluent_setters_all_docblocks_extra_new_lines_for_properties_from_json_method_and_to_array_method.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/tests/converter/fixtures/results/merges_nested_arrays_php_7_3_with_getters_fluent_setters_all_docblocks_extra_new_lines_for_properties_from_json_method_and_to_array_method.txt -------------------------------------------------------------------------------- /tests/converter/fixtures/results/merges_nested_arrays_php_7_3_with_setters_and_from_json_array_method.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/tests/converter/fixtures/results/merges_nested_arrays_php_7_3_with_setters_and_from_json_array_method.txt -------------------------------------------------------------------------------- /tests/converter/fixtures/results/merges_nested_arrays_php_7_3_with_setters_and_from_json_method.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/tests/converter/fixtures/results/merges_nested_arrays_php_7_3_with_setters_and_from_json_method.txt -------------------------------------------------------------------------------- /tests/converter/fixtures/results/merges_nested_arrays_php_7_3_with_to_array_method.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/tests/converter/fixtures/results/merges_nested_arrays_php_7_3_with_to_array_method.txt -------------------------------------------------------------------------------- /tests/converter/fixtures/results/merges_nested_arrays_php_7_3_without_constructor.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/tests/converter/fixtures/results/merges_nested_arrays_php_7_3_without_constructor.txt -------------------------------------------------------------------------------- /tests/converter/fixtures/results/merges_nested_arrays_php_7_3_without_constructor_and_readonly_classes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/tests/converter/fixtures/results/merges_nested_arrays_php_7_3_without_constructor_and_readonly_classes.txt -------------------------------------------------------------------------------- /tests/converter/fixtures/results/merges_nested_arrays_php_7_3_without_constructor_and_readonly_properties.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/tests/converter/fixtures/results/merges_nested_arrays_php_7_3_without_constructor_and_readonly_properties.txt -------------------------------------------------------------------------------- /tests/converter/fixtures/results/merges_nested_arrays_php_7_4_with_constructor.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/tests/converter/fixtures/results/merges_nested_arrays_php_7_4_with_constructor.txt -------------------------------------------------------------------------------- /tests/converter/fixtures/results/merges_nested_arrays_php_7_4_with_constructor_and_readonly_properties.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/tests/converter/fixtures/results/merges_nested_arrays_php_7_4_with_constructor_and_readonly_properties.txt -------------------------------------------------------------------------------- /tests/converter/fixtures/results/merges_nested_arrays_php_7_4_with_constructor_promoted_properties_getters_and_setters.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/tests/converter/fixtures/results/merges_nested_arrays_php_7_4_with_constructor_promoted_properties_getters_and_setters.txt -------------------------------------------------------------------------------- /tests/converter/fixtures/results/merges_nested_arrays_php_7_4_with_constructor_readonly_properties_and_promoted_properties.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/tests/converter/fixtures/results/merges_nested_arrays_php_7_4_with_constructor_readonly_properties_and_promoted_properties.txt -------------------------------------------------------------------------------- /tests/converter/fixtures/results/merges_nested_arrays_php_7_4_with_constructor_readonly_properties_promoted_properties_and_from_json_array_method.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/tests/converter/fixtures/results/merges_nested_arrays_php_7_4_with_constructor_readonly_properties_promoted_properties_and_from_json_array_method.txt -------------------------------------------------------------------------------- /tests/converter/fixtures/results/merges_nested_arrays_php_7_4_with_constructor_readonly_properties_promoted_properties_and_from_json_method.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/tests/converter/fixtures/results/merges_nested_arrays_php_7_4_with_constructor_readonly_properties_promoted_properties_and_from_json_method.txt -------------------------------------------------------------------------------- /tests/converter/fixtures/results/merges_nested_arrays_php_7_4_with_constructor_readonly_properties_promoted_properties_getters_and_setters.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/tests/converter/fixtures/results/merges_nested_arrays_php_7_4_with_constructor_readonly_properties_promoted_properties_getters_and_setters.txt -------------------------------------------------------------------------------- /tests/converter/fixtures/results/merges_nested_arrays_php_7_4_with_custom_namespace_root_class_name_and_strict_types.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/tests/converter/fixtures/results/merges_nested_arrays_php_7_4_with_custom_namespace_root_class_name_and_strict_types.txt -------------------------------------------------------------------------------- /tests/converter/fixtures/results/merges_nested_arrays_php_7_4_with_final_classes_and_all_properties_nullable.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/tests/converter/fixtures/results/merges_nested_arrays_php_7_4_with_final_classes_and_all_properties_nullable.txt -------------------------------------------------------------------------------- /tests/converter/fixtures/results/merges_nested_arrays_php_7_4_with_from_json_and_to_array_methods.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/tests/converter/fixtures/results/merges_nested_arrays_php_7_4_with_from_json_and_to_array_methods.txt -------------------------------------------------------------------------------- /tests/converter/fixtures/results/merges_nested_arrays_php_7_4_with_getters_fluent_setters_all_docblocks_extra_new_lines_for_properties_and_from_json_method.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/tests/converter/fixtures/results/merges_nested_arrays_php_7_4_with_getters_fluent_setters_all_docblocks_extra_new_lines_for_properties_and_from_json_method.txt -------------------------------------------------------------------------------- /tests/converter/fixtures/results/merges_nested_arrays_php_7_4_with_getters_fluent_setters_all_docblocks_extra_new_lines_for_properties_from_json_method_and_to_array_method.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/tests/converter/fixtures/results/merges_nested_arrays_php_7_4_with_getters_fluent_setters_all_docblocks_extra_new_lines_for_properties_from_json_method_and_to_array_method.txt -------------------------------------------------------------------------------- /tests/converter/fixtures/results/merges_nested_arrays_php_7_4_with_setters_and_from_json_array_method.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/tests/converter/fixtures/results/merges_nested_arrays_php_7_4_with_setters_and_from_json_array_method.txt -------------------------------------------------------------------------------- /tests/converter/fixtures/results/merges_nested_arrays_php_7_4_with_setters_and_from_json_method.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/tests/converter/fixtures/results/merges_nested_arrays_php_7_4_with_setters_and_from_json_method.txt -------------------------------------------------------------------------------- /tests/converter/fixtures/results/merges_nested_arrays_php_7_4_with_to_array_method.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/tests/converter/fixtures/results/merges_nested_arrays_php_7_4_with_to_array_method.txt -------------------------------------------------------------------------------- /tests/converter/fixtures/results/merges_nested_arrays_php_7_4_without_constructor.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/tests/converter/fixtures/results/merges_nested_arrays_php_7_4_without_constructor.txt -------------------------------------------------------------------------------- /tests/converter/fixtures/results/merges_nested_arrays_php_7_4_without_constructor_and_readonly_classes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/tests/converter/fixtures/results/merges_nested_arrays_php_7_4_without_constructor_and_readonly_classes.txt -------------------------------------------------------------------------------- /tests/converter/fixtures/results/merges_nested_arrays_php_7_4_without_constructor_and_readonly_properties.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/tests/converter/fixtures/results/merges_nested_arrays_php_7_4_without_constructor_and_readonly_properties.txt -------------------------------------------------------------------------------- /tests/converter/fixtures/results/merges_nested_arrays_php_8_0_with_constructor.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/tests/converter/fixtures/results/merges_nested_arrays_php_8_0_with_constructor.txt -------------------------------------------------------------------------------- /tests/converter/fixtures/results/merges_nested_arrays_php_8_0_with_constructor_and_readonly_properties.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/tests/converter/fixtures/results/merges_nested_arrays_php_8_0_with_constructor_and_readonly_properties.txt -------------------------------------------------------------------------------- /tests/converter/fixtures/results/merges_nested_arrays_php_8_0_with_constructor_promoted_properties_getters_and_setters.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/tests/converter/fixtures/results/merges_nested_arrays_php_8_0_with_constructor_promoted_properties_getters_and_setters.txt -------------------------------------------------------------------------------- /tests/converter/fixtures/results/merges_nested_arrays_php_8_0_with_constructor_readonly_properties_and_promoted_properties.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/tests/converter/fixtures/results/merges_nested_arrays_php_8_0_with_constructor_readonly_properties_and_promoted_properties.txt -------------------------------------------------------------------------------- /tests/converter/fixtures/results/merges_nested_arrays_php_8_0_with_constructor_readonly_properties_promoted_properties_and_from_json_array_method.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/tests/converter/fixtures/results/merges_nested_arrays_php_8_0_with_constructor_readonly_properties_promoted_properties_and_from_json_array_method.txt -------------------------------------------------------------------------------- /tests/converter/fixtures/results/merges_nested_arrays_php_8_0_with_constructor_readonly_properties_promoted_properties_and_from_json_method.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/tests/converter/fixtures/results/merges_nested_arrays_php_8_0_with_constructor_readonly_properties_promoted_properties_and_from_json_method.txt -------------------------------------------------------------------------------- /tests/converter/fixtures/results/merges_nested_arrays_php_8_0_with_constructor_readonly_properties_promoted_properties_getters_and_setters.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/tests/converter/fixtures/results/merges_nested_arrays_php_8_0_with_constructor_readonly_properties_promoted_properties_getters_and_setters.txt -------------------------------------------------------------------------------- /tests/converter/fixtures/results/merges_nested_arrays_php_8_0_with_custom_namespace_root_class_name_and_strict_types.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/tests/converter/fixtures/results/merges_nested_arrays_php_8_0_with_custom_namespace_root_class_name_and_strict_types.txt -------------------------------------------------------------------------------- /tests/converter/fixtures/results/merges_nested_arrays_php_8_0_with_final_classes_and_all_properties_nullable.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/tests/converter/fixtures/results/merges_nested_arrays_php_8_0_with_final_classes_and_all_properties_nullable.txt -------------------------------------------------------------------------------- /tests/converter/fixtures/results/merges_nested_arrays_php_8_0_with_from_json_and_to_array_methods.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/tests/converter/fixtures/results/merges_nested_arrays_php_8_0_with_from_json_and_to_array_methods.txt -------------------------------------------------------------------------------- /tests/converter/fixtures/results/merges_nested_arrays_php_8_0_with_getters_fluent_setters_all_docblocks_extra_new_lines_for_properties_and_from_json_method.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/tests/converter/fixtures/results/merges_nested_arrays_php_8_0_with_getters_fluent_setters_all_docblocks_extra_new_lines_for_properties_and_from_json_method.txt -------------------------------------------------------------------------------- /tests/converter/fixtures/results/merges_nested_arrays_php_8_0_with_getters_fluent_setters_all_docblocks_extra_new_lines_for_properties_from_json_method_and_to_array_method.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/tests/converter/fixtures/results/merges_nested_arrays_php_8_0_with_getters_fluent_setters_all_docblocks_extra_new_lines_for_properties_from_json_method_and_to_array_method.txt -------------------------------------------------------------------------------- /tests/converter/fixtures/results/merges_nested_arrays_php_8_0_with_setters_and_from_json_array_method.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/tests/converter/fixtures/results/merges_nested_arrays_php_8_0_with_setters_and_from_json_array_method.txt -------------------------------------------------------------------------------- /tests/converter/fixtures/results/merges_nested_arrays_php_8_0_with_setters_and_from_json_method.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/tests/converter/fixtures/results/merges_nested_arrays_php_8_0_with_setters_and_from_json_method.txt -------------------------------------------------------------------------------- /tests/converter/fixtures/results/merges_nested_arrays_php_8_0_with_to_array_method.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/tests/converter/fixtures/results/merges_nested_arrays_php_8_0_with_to_array_method.txt -------------------------------------------------------------------------------- /tests/converter/fixtures/results/merges_nested_arrays_php_8_0_without_constructor.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/tests/converter/fixtures/results/merges_nested_arrays_php_8_0_without_constructor.txt -------------------------------------------------------------------------------- /tests/converter/fixtures/results/merges_nested_arrays_php_8_0_without_constructor_and_readonly_classes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/tests/converter/fixtures/results/merges_nested_arrays_php_8_0_without_constructor_and_readonly_classes.txt -------------------------------------------------------------------------------- /tests/converter/fixtures/results/merges_nested_arrays_php_8_0_without_constructor_and_readonly_properties.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/tests/converter/fixtures/results/merges_nested_arrays_php_8_0_without_constructor_and_readonly_properties.txt -------------------------------------------------------------------------------- /tests/converter/fixtures/results/merges_nested_arrays_php_8_1_with_constructor.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/tests/converter/fixtures/results/merges_nested_arrays_php_8_1_with_constructor.txt -------------------------------------------------------------------------------- /tests/converter/fixtures/results/merges_nested_arrays_php_8_1_with_constructor_and_readonly_properties.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/tests/converter/fixtures/results/merges_nested_arrays_php_8_1_with_constructor_and_readonly_properties.txt -------------------------------------------------------------------------------- /tests/converter/fixtures/results/merges_nested_arrays_php_8_1_with_constructor_promoted_properties_getters_and_setters.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/tests/converter/fixtures/results/merges_nested_arrays_php_8_1_with_constructor_promoted_properties_getters_and_setters.txt -------------------------------------------------------------------------------- /tests/converter/fixtures/results/merges_nested_arrays_php_8_1_with_constructor_readonly_properties_and_promoted_properties.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/tests/converter/fixtures/results/merges_nested_arrays_php_8_1_with_constructor_readonly_properties_and_promoted_properties.txt -------------------------------------------------------------------------------- /tests/converter/fixtures/results/merges_nested_arrays_php_8_1_with_constructor_readonly_properties_promoted_properties_and_from_json_array_method.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/tests/converter/fixtures/results/merges_nested_arrays_php_8_1_with_constructor_readonly_properties_promoted_properties_and_from_json_array_method.txt -------------------------------------------------------------------------------- /tests/converter/fixtures/results/merges_nested_arrays_php_8_1_with_constructor_readonly_properties_promoted_properties_and_from_json_method.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/tests/converter/fixtures/results/merges_nested_arrays_php_8_1_with_constructor_readonly_properties_promoted_properties_and_from_json_method.txt -------------------------------------------------------------------------------- /tests/converter/fixtures/results/merges_nested_arrays_php_8_1_with_constructor_readonly_properties_promoted_properties_getters_and_setters.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/tests/converter/fixtures/results/merges_nested_arrays_php_8_1_with_constructor_readonly_properties_promoted_properties_getters_and_setters.txt -------------------------------------------------------------------------------- /tests/converter/fixtures/results/merges_nested_arrays_php_8_1_with_custom_namespace_root_class_name_and_strict_types.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/tests/converter/fixtures/results/merges_nested_arrays_php_8_1_with_custom_namespace_root_class_name_and_strict_types.txt -------------------------------------------------------------------------------- /tests/converter/fixtures/results/merges_nested_arrays_php_8_1_with_final_classes_and_all_properties_nullable.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/tests/converter/fixtures/results/merges_nested_arrays_php_8_1_with_final_classes_and_all_properties_nullable.txt -------------------------------------------------------------------------------- /tests/converter/fixtures/results/merges_nested_arrays_php_8_1_with_from_json_and_to_array_methods.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/tests/converter/fixtures/results/merges_nested_arrays_php_8_1_with_from_json_and_to_array_methods.txt -------------------------------------------------------------------------------- /tests/converter/fixtures/results/merges_nested_arrays_php_8_1_with_getters_fluent_setters_all_docblocks_extra_new_lines_for_properties_and_from_json_method.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/tests/converter/fixtures/results/merges_nested_arrays_php_8_1_with_getters_fluent_setters_all_docblocks_extra_new_lines_for_properties_and_from_json_method.txt -------------------------------------------------------------------------------- /tests/converter/fixtures/results/merges_nested_arrays_php_8_1_with_getters_fluent_setters_all_docblocks_extra_new_lines_for_properties_from_json_method_and_to_array_method.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/tests/converter/fixtures/results/merges_nested_arrays_php_8_1_with_getters_fluent_setters_all_docblocks_extra_new_lines_for_properties_from_json_method_and_to_array_method.txt -------------------------------------------------------------------------------- /tests/converter/fixtures/results/merges_nested_arrays_php_8_1_with_setters_and_from_json_array_method.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/tests/converter/fixtures/results/merges_nested_arrays_php_8_1_with_setters_and_from_json_array_method.txt -------------------------------------------------------------------------------- /tests/converter/fixtures/results/merges_nested_arrays_php_8_1_with_setters_and_from_json_method.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/tests/converter/fixtures/results/merges_nested_arrays_php_8_1_with_setters_and_from_json_method.txt -------------------------------------------------------------------------------- /tests/converter/fixtures/results/merges_nested_arrays_php_8_1_with_to_array_method.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/tests/converter/fixtures/results/merges_nested_arrays_php_8_1_with_to_array_method.txt -------------------------------------------------------------------------------- /tests/converter/fixtures/results/merges_nested_arrays_php_8_1_without_constructor.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/tests/converter/fixtures/results/merges_nested_arrays_php_8_1_without_constructor.txt -------------------------------------------------------------------------------- /tests/converter/fixtures/results/merges_nested_arrays_php_8_1_without_constructor_and_readonly_classes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/tests/converter/fixtures/results/merges_nested_arrays_php_8_1_without_constructor_and_readonly_classes.txt -------------------------------------------------------------------------------- /tests/converter/fixtures/results/merges_nested_arrays_php_8_1_without_constructor_and_readonly_properties.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/tests/converter/fixtures/results/merges_nested_arrays_php_8_1_without_constructor_and_readonly_properties.txt -------------------------------------------------------------------------------- /tests/converter/fixtures/results/merges_nested_arrays_php_8_2_with_constructor.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/tests/converter/fixtures/results/merges_nested_arrays_php_8_2_with_constructor.txt -------------------------------------------------------------------------------- /tests/converter/fixtures/results/merges_nested_arrays_php_8_2_with_constructor_and_readonly_properties.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/tests/converter/fixtures/results/merges_nested_arrays_php_8_2_with_constructor_and_readonly_properties.txt -------------------------------------------------------------------------------- /tests/converter/fixtures/results/merges_nested_arrays_php_8_2_with_constructor_promoted_properties_getters_and_setters.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/tests/converter/fixtures/results/merges_nested_arrays_php_8_2_with_constructor_promoted_properties_getters_and_setters.txt -------------------------------------------------------------------------------- /tests/converter/fixtures/results/merges_nested_arrays_php_8_2_with_constructor_readonly_properties_and_promoted_properties.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/tests/converter/fixtures/results/merges_nested_arrays_php_8_2_with_constructor_readonly_properties_and_promoted_properties.txt -------------------------------------------------------------------------------- /tests/converter/fixtures/results/merges_nested_arrays_php_8_2_with_constructor_readonly_properties_promoted_properties_and_from_json_array_method.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/tests/converter/fixtures/results/merges_nested_arrays_php_8_2_with_constructor_readonly_properties_promoted_properties_and_from_json_array_method.txt -------------------------------------------------------------------------------- /tests/converter/fixtures/results/merges_nested_arrays_php_8_2_with_constructor_readonly_properties_promoted_properties_and_from_json_method.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/tests/converter/fixtures/results/merges_nested_arrays_php_8_2_with_constructor_readonly_properties_promoted_properties_and_from_json_method.txt -------------------------------------------------------------------------------- /tests/converter/fixtures/results/merges_nested_arrays_php_8_2_with_constructor_readonly_properties_promoted_properties_getters_and_setters.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/tests/converter/fixtures/results/merges_nested_arrays_php_8_2_with_constructor_readonly_properties_promoted_properties_getters_and_setters.txt -------------------------------------------------------------------------------- /tests/converter/fixtures/results/merges_nested_arrays_php_8_2_with_custom_namespace_root_class_name_and_strict_types.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/tests/converter/fixtures/results/merges_nested_arrays_php_8_2_with_custom_namespace_root_class_name_and_strict_types.txt -------------------------------------------------------------------------------- /tests/converter/fixtures/results/merges_nested_arrays_php_8_2_with_final_classes_and_all_properties_nullable.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/tests/converter/fixtures/results/merges_nested_arrays_php_8_2_with_final_classes_and_all_properties_nullable.txt -------------------------------------------------------------------------------- /tests/converter/fixtures/results/merges_nested_arrays_php_8_2_with_from_json_and_to_array_methods.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/tests/converter/fixtures/results/merges_nested_arrays_php_8_2_with_from_json_and_to_array_methods.txt -------------------------------------------------------------------------------- /tests/converter/fixtures/results/merges_nested_arrays_php_8_2_with_getters_fluent_setters_all_docblocks_extra_new_lines_for_properties_and_from_json_method.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/tests/converter/fixtures/results/merges_nested_arrays_php_8_2_with_getters_fluent_setters_all_docblocks_extra_new_lines_for_properties_and_from_json_method.txt -------------------------------------------------------------------------------- /tests/converter/fixtures/results/merges_nested_arrays_php_8_2_with_getters_fluent_setters_all_docblocks_extra_new_lines_for_properties_from_json_method_and_to_array_method.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/tests/converter/fixtures/results/merges_nested_arrays_php_8_2_with_getters_fluent_setters_all_docblocks_extra_new_lines_for_properties_from_json_method_and_to_array_method.txt -------------------------------------------------------------------------------- /tests/converter/fixtures/results/merges_nested_arrays_php_8_2_with_setters_and_from_json_array_method.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/tests/converter/fixtures/results/merges_nested_arrays_php_8_2_with_setters_and_from_json_array_method.txt -------------------------------------------------------------------------------- /tests/converter/fixtures/results/merges_nested_arrays_php_8_2_with_setters_and_from_json_method.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/tests/converter/fixtures/results/merges_nested_arrays_php_8_2_with_setters_and_from_json_method.txt -------------------------------------------------------------------------------- /tests/converter/fixtures/results/merges_nested_arrays_php_8_2_with_to_array_method.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/tests/converter/fixtures/results/merges_nested_arrays_php_8_2_with_to_array_method.txt -------------------------------------------------------------------------------- /tests/converter/fixtures/results/merges_nested_arrays_php_8_2_without_constructor.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/tests/converter/fixtures/results/merges_nested_arrays_php_8_2_without_constructor.txt -------------------------------------------------------------------------------- /tests/converter/fixtures/results/merges_nested_arrays_php_8_2_without_constructor_and_readonly_classes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/tests/converter/fixtures/results/merges_nested_arrays_php_8_2_without_constructor_and_readonly_classes.txt -------------------------------------------------------------------------------- /tests/converter/fixtures/results/merges_nested_arrays_php_8_2_without_constructor_and_readonly_properties.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/tests/converter/fixtures/results/merges_nested_arrays_php_8_2_without_constructor_and_readonly_properties.txt -------------------------------------------------------------------------------- /tests/converter/fixtures/results/merges_nested_arrays_php_8_3_with_constructor.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/tests/converter/fixtures/results/merges_nested_arrays_php_8_3_with_constructor.txt -------------------------------------------------------------------------------- /tests/converter/fixtures/results/merges_nested_arrays_php_8_3_with_constructor_and_readonly_properties.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/tests/converter/fixtures/results/merges_nested_arrays_php_8_3_with_constructor_and_readonly_properties.txt -------------------------------------------------------------------------------- /tests/converter/fixtures/results/merges_nested_arrays_php_8_3_with_constructor_promoted_properties_getters_and_setters.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/tests/converter/fixtures/results/merges_nested_arrays_php_8_3_with_constructor_promoted_properties_getters_and_setters.txt -------------------------------------------------------------------------------- /tests/converter/fixtures/results/merges_nested_arrays_php_8_3_with_constructor_readonly_properties_and_promoted_properties.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/tests/converter/fixtures/results/merges_nested_arrays_php_8_3_with_constructor_readonly_properties_and_promoted_properties.txt -------------------------------------------------------------------------------- /tests/converter/fixtures/results/merges_nested_arrays_php_8_3_with_constructor_readonly_properties_promoted_properties_and_from_json_array_method.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/tests/converter/fixtures/results/merges_nested_arrays_php_8_3_with_constructor_readonly_properties_promoted_properties_and_from_json_array_method.txt -------------------------------------------------------------------------------- /tests/converter/fixtures/results/merges_nested_arrays_php_8_3_with_constructor_readonly_properties_promoted_properties_and_from_json_method.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/tests/converter/fixtures/results/merges_nested_arrays_php_8_3_with_constructor_readonly_properties_promoted_properties_and_from_json_method.txt -------------------------------------------------------------------------------- /tests/converter/fixtures/results/merges_nested_arrays_php_8_3_with_constructor_readonly_properties_promoted_properties_getters_and_setters.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/tests/converter/fixtures/results/merges_nested_arrays_php_8_3_with_constructor_readonly_properties_promoted_properties_getters_and_setters.txt -------------------------------------------------------------------------------- /tests/converter/fixtures/results/merges_nested_arrays_php_8_3_with_custom_namespace_root_class_name_and_strict_types.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/tests/converter/fixtures/results/merges_nested_arrays_php_8_3_with_custom_namespace_root_class_name_and_strict_types.txt -------------------------------------------------------------------------------- /tests/converter/fixtures/results/merges_nested_arrays_php_8_3_with_final_classes_and_all_properties_nullable.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/tests/converter/fixtures/results/merges_nested_arrays_php_8_3_with_final_classes_and_all_properties_nullable.txt -------------------------------------------------------------------------------- /tests/converter/fixtures/results/merges_nested_arrays_php_8_3_with_from_json_and_to_array_methods.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/tests/converter/fixtures/results/merges_nested_arrays_php_8_3_with_from_json_and_to_array_methods.txt -------------------------------------------------------------------------------- /tests/converter/fixtures/results/merges_nested_arrays_php_8_3_with_getters_fluent_setters_all_docblocks_extra_new_lines_for_properties_and_from_json_method.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/tests/converter/fixtures/results/merges_nested_arrays_php_8_3_with_getters_fluent_setters_all_docblocks_extra_new_lines_for_properties_and_from_json_method.txt -------------------------------------------------------------------------------- /tests/converter/fixtures/results/merges_nested_arrays_php_8_3_with_getters_fluent_setters_all_docblocks_extra_new_lines_for_properties_from_json_method_and_to_array_method.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/tests/converter/fixtures/results/merges_nested_arrays_php_8_3_with_getters_fluent_setters_all_docblocks_extra_new_lines_for_properties_from_json_method_and_to_array_method.txt -------------------------------------------------------------------------------- /tests/converter/fixtures/results/merges_nested_arrays_php_8_3_with_setters_and_from_json_array_method.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/tests/converter/fixtures/results/merges_nested_arrays_php_8_3_with_setters_and_from_json_array_method.txt -------------------------------------------------------------------------------- /tests/converter/fixtures/results/merges_nested_arrays_php_8_3_with_setters_and_from_json_method.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/tests/converter/fixtures/results/merges_nested_arrays_php_8_3_with_setters_and_from_json_method.txt -------------------------------------------------------------------------------- /tests/converter/fixtures/results/merges_nested_arrays_php_8_3_with_to_array_method.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/tests/converter/fixtures/results/merges_nested_arrays_php_8_3_with_to_array_method.txt -------------------------------------------------------------------------------- /tests/converter/fixtures/results/merges_nested_arrays_php_8_3_without_constructor.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/tests/converter/fixtures/results/merges_nested_arrays_php_8_3_without_constructor.txt -------------------------------------------------------------------------------- /tests/converter/fixtures/results/merges_nested_arrays_php_8_3_without_constructor_and_readonly_classes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/tests/converter/fixtures/results/merges_nested_arrays_php_8_3_without_constructor_and_readonly_classes.txt -------------------------------------------------------------------------------- /tests/converter/fixtures/results/merges_nested_arrays_php_8_3_without_constructor_and_readonly_properties.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/tests/converter/fixtures/results/merges_nested_arrays_php_8_3_without_constructor_and_readonly_properties.txt -------------------------------------------------------------------------------- /tests/converter/fixtures/results/simple_json_data_php_7_3_with_constructor.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/tests/converter/fixtures/results/simple_json_data_php_7_3_with_constructor.txt -------------------------------------------------------------------------------- /tests/converter/fixtures/results/simple_json_data_php_7_3_with_constructor_and_readonly_properties.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/tests/converter/fixtures/results/simple_json_data_php_7_3_with_constructor_and_readonly_properties.txt -------------------------------------------------------------------------------- /tests/converter/fixtures/results/simple_json_data_php_7_3_with_constructor_promoted_properties_getters_and_setters.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/tests/converter/fixtures/results/simple_json_data_php_7_3_with_constructor_promoted_properties_getters_and_setters.txt -------------------------------------------------------------------------------- /tests/converter/fixtures/results/simple_json_data_php_7_3_with_constructor_readonly_properties_and_promoted_properties.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/tests/converter/fixtures/results/simple_json_data_php_7_3_with_constructor_readonly_properties_and_promoted_properties.txt -------------------------------------------------------------------------------- /tests/converter/fixtures/results/simple_json_data_php_7_3_with_constructor_readonly_properties_promoted_properties_and_from_json_array_method.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/tests/converter/fixtures/results/simple_json_data_php_7_3_with_constructor_readonly_properties_promoted_properties_and_from_json_array_method.txt -------------------------------------------------------------------------------- /tests/converter/fixtures/results/simple_json_data_php_7_3_with_constructor_readonly_properties_promoted_properties_and_from_json_method.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/tests/converter/fixtures/results/simple_json_data_php_7_3_with_constructor_readonly_properties_promoted_properties_and_from_json_method.txt -------------------------------------------------------------------------------- /tests/converter/fixtures/results/simple_json_data_php_7_3_with_constructor_readonly_properties_promoted_properties_getters_and_setters.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/tests/converter/fixtures/results/simple_json_data_php_7_3_with_constructor_readonly_properties_promoted_properties_getters_and_setters.txt -------------------------------------------------------------------------------- /tests/converter/fixtures/results/simple_json_data_php_7_3_with_custom_namespace_root_class_name_and_strict_types.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobdekeizer/json-to-php-generator/HEAD/tests/converter/fixtures/results/simple_json_data_php_7_3_with_custom_namespace_root_class_name_and_strict_types.txt -------------------------------------------------------------------------------- /tests/converter/fixtures/results/simple_json_data_php_7_3_with_final_classes_and_all_properties_nullable.txt: -------------------------------------------------------------------------------- 1 |