├── src └── Symfony │ ├── Component │ ├── Form │ │ ├── Tests │ │ │ ├── Fixtures │ │ │ │ ├── foo │ │ │ │ ├── foo2 │ │ │ │ ├── foo3 │ │ │ │ └── Descriptor │ │ │ │ │ ├── types_with_deprecated_options.txt │ │ │ │ │ └── overridden_option_with_default_closures.json │ │ │ └── Extension │ │ │ │ └── Core │ │ │ │ └── EventListener │ │ │ │ └── Fixtures │ │ │ │ └── randomhash │ │ └── .gitignore │ ├── Config │ │ ├── Tests │ │ │ └── Fixtures │ │ │ │ ├── foo.xml │ │ │ │ ├── Again │ │ │ │ └── foo.xml │ │ │ │ ├── Resource │ │ │ │ └── .hiddenFile │ │ │ │ ├── Exclude │ │ │ │ ├── AnExcludedFile.txt │ │ │ │ └── ExcludeToo │ │ │ │ │ └── AnotheExcludedFile.txt │ │ │ │ ├── Util │ │ │ │ ├── invalid.xml │ │ │ │ ├── invalid_schema.xml │ │ │ │ ├── valid.xml │ │ │ │ └── document_type.xml │ │ │ │ └── BadParent.php │ │ └── .gitignore │ ├── Finder │ │ ├── Tests │ │ │ └── Fixtures │ │ │ │ ├── .dot │ │ │ │ ├── a │ │ │ │ └── b │ │ │ │ │ ├── c.neon │ │ │ │ │ └── d.neon │ │ │ │ ├── A │ │ │ │ ├── a.dat │ │ │ │ └── B │ │ │ │ │ ├── C │ │ │ │ │ └── abc.dat │ │ │ │ │ └── ab.dat │ │ │ │ ├── one │ │ │ │ ├── a │ │ │ │ ├── .dot │ │ │ │ └── b │ │ │ │ │ ├── c.neon │ │ │ │ │ └── d.neon │ │ │ │ ├── copy │ │ │ │ └── A │ │ │ │ │ ├── a.dat.copy │ │ │ │ │ └── B │ │ │ │ │ ├── C │ │ │ │ │ └── abc.dat.copy │ │ │ │ │ └── ab.dat.copy │ │ │ │ ├── with space │ │ │ │ └── foo.txt │ │ │ │ ├── r+e.gex[c]a(r)s │ │ │ │ └── dir │ │ │ │ │ └── bar.dat │ │ │ │ ├── dolor.txt │ │ │ │ ├── ipsum.txt │ │ │ │ └── lorem.txt │ │ └── .gitignore │ ├── Routing │ │ ├── Tests │ │ │ └── Fixtures │ │ │ │ ├── bar.xml │ │ │ │ ├── foo.xml │ │ │ │ ├── foo1.xml │ │ │ │ ├── annotated.php │ │ │ │ ├── empty.yml │ │ │ │ ├── file_resource.yml │ │ │ │ ├── nonvalid.yml │ │ │ │ ├── nonvalid2.yml │ │ │ │ ├── directory │ │ │ │ ├── routes3.yml │ │ │ │ └── recurse │ │ │ │ │ ├── routes1.yml │ │ │ │ │ └── routes2.yml │ │ │ │ ├── glob │ │ │ │ ├── import_multiple.yml │ │ │ │ ├── import_single.yml │ │ │ │ ├── bar.yml │ │ │ │ └── baz.yml │ │ │ │ ├── special_route_name.yml │ │ │ │ ├── withdoctype.xml │ │ │ │ ├── OtherAnnotatedClasses │ │ │ │ └── NoStartTagClass.php │ │ │ │ ├── defaults.yml │ │ │ │ ├── incomplete.yml │ │ │ │ ├── nonvalidkeys.yml │ │ │ │ ├── localized │ │ │ │ ├── route-without-path-or-locales.yml │ │ │ │ ├── imported-with-utf8.yml │ │ │ │ ├── importing-localized-route.yml │ │ │ │ ├── not-localized.yml │ │ │ │ ├── importer-with-utf8.yml │ │ │ │ ├── utf8.yml │ │ │ │ ├── imported-with-locale-but-not-localized.yml │ │ │ │ ├── importer-with-locale.yml │ │ │ │ ├── missing-locale-in-importer.yml │ │ │ │ ├── imported-with-locale.yml │ │ │ │ └── importer-with-controller-default.yml │ │ │ │ ├── directory_import │ │ │ │ └── import.yml │ │ │ │ ├── nonesense_resource_plus_path.yml │ │ │ │ ├── nonesense_type_without_resource.yml │ │ │ │ ├── bad_format.yml │ │ │ │ ├── requirements_without_placeholder_name.yml │ │ │ │ ├── imported-with-defaults.yml │ │ │ │ ├── controller │ │ │ │ ├── import_controller.yml │ │ │ │ ├── import__controller.yml │ │ │ │ └── override_defaults.yml │ │ │ │ ├── with_define_path_variable.php │ │ │ │ └── importer-with-defaults.yml │ │ └── .gitignore │ ├── Translation │ │ ├── Tests │ │ │ └── fixtures │ │ │ │ ├── empty.csv │ │ │ │ ├── empty.ini │ │ │ │ ├── empty.mo │ │ │ │ ├── empty.po │ │ │ │ ├── empty.xlf │ │ │ │ ├── empty.yml │ │ │ │ ├── empty.json │ │ │ │ ├── non-valid.yml │ │ │ │ ├── resources.ini │ │ │ │ ├── resources.yml │ │ │ │ ├── extractor │ │ │ │ ├── resource.format.engine │ │ │ │ └── this.is.a.template.format.engine │ │ │ │ ├── malformed.json │ │ │ │ ├── resourcebundle │ │ │ │ ├── corrupted │ │ │ │ │ └── resources.dat │ │ │ │ ├── dat │ │ │ │ │ ├── packagelist.txt │ │ │ │ │ ├── en.txt │ │ │ │ │ ├── fr.txt │ │ │ │ │ ├── en.res │ │ │ │ │ ├── fr.res │ │ │ │ │ └── resources.dat │ │ │ │ └── res │ │ │ │ │ └── en.res │ │ │ │ ├── resources.dump.json │ │ │ │ ├── resources.json │ │ │ │ ├── empty-translation.po │ │ │ │ ├── messages.yml │ │ │ │ ├── messages_linear.yml │ │ │ │ ├── valid.csv │ │ │ │ ├── resources.php │ │ │ │ ├── missing-plurals.po │ │ │ │ ├── plurals.mo │ │ │ │ ├── resources.csv │ │ │ │ ├── encoding.xlf │ │ │ │ ├── resources.mo │ │ │ │ └── empty-translation.mo │ │ └── .gitignore │ ├── Intl │ │ ├── Resources │ │ │ └── data │ │ │ │ ├── version.txt │ │ │ │ ├── regions │ │ │ │ ├── bo_IN.json │ │ │ │ ├── pa_Arab.json │ │ │ │ ├── ro_MD.json │ │ │ │ ├── kl.json │ │ │ │ ├── ko_KP.json │ │ │ │ ├── kw.json │ │ │ │ ├── uz_Arab.json │ │ │ │ ├── de_AT.json │ │ │ │ ├── es_PR.json │ │ │ │ ├── es_SV.json │ │ │ │ ├── ar_LY.json │ │ │ │ ├── bn_IN.json │ │ │ │ ├── gv.json │ │ │ │ ├── xh.json │ │ │ │ ├── fr_BE.json │ │ │ │ └── rw.json │ │ │ │ ├── locales │ │ │ │ ├── ko_KP.json │ │ │ │ ├── ro_MD.json │ │ │ │ ├── es_PR.json │ │ │ │ ├── es_SV.json │ │ │ │ ├── en_NZ.json │ │ │ │ ├── fr_CH.json │ │ │ │ ├── gv.json │ │ │ │ ├── kw.json │ │ │ │ ├── xh.json │ │ │ │ ├── bn_IN.json │ │ │ │ ├── de_LU.json │ │ │ │ ├── sv_FI.json │ │ │ │ ├── kl.json │ │ │ │ ├── fr_BE.json │ │ │ │ ├── en_AU.json │ │ │ │ ├── en_CA.json │ │ │ │ ├── en_IN.json │ │ │ │ └── ar_EG.json │ │ │ │ ├── languages │ │ │ │ ├── gv.json │ │ │ │ ├── en_IN.json │ │ │ │ ├── en_NZ.json │ │ │ │ ├── kw.json │ │ │ │ ├── xh.json │ │ │ │ ├── ar_EG.json │ │ │ │ ├── bn_IN.json │ │ │ │ ├── de_LU.json │ │ │ │ ├── kl.json │ │ │ │ ├── pa_Arab.json │ │ │ │ ├── sv_FI.json │ │ │ │ ├── en_GB.json │ │ │ │ ├── ro_MD.json │ │ │ │ └── uz_Arab.json │ │ │ │ ├── scripts │ │ │ │ ├── om.json │ │ │ │ ├── az_Cyrl.json │ │ │ │ ├── en_GB.json │ │ │ │ ├── fa_AF.json │ │ │ │ ├── uz_Arab.json │ │ │ │ ├── ti.json │ │ │ │ ├── en_AU.json │ │ │ │ ├── en_IN.json │ │ │ │ ├── es_US.json │ │ │ │ ├── pa_Arab.json │ │ │ │ └── es_MX.json │ │ │ │ ├── timezones │ │ │ │ ├── en_CA.json │ │ │ │ ├── en_IN.json │ │ │ │ └── uz_Arab.json │ │ │ │ └── currencies │ │ │ │ ├── ii.json │ │ │ │ ├── qu.json │ │ │ │ ├── rw.json │ │ │ │ ├── az_Cyrl.json │ │ │ │ ├── de_LI.json │ │ │ │ ├── es_GT.json │ │ │ │ ├── ff_GN.json │ │ │ │ ├── ha_GH.json │ │ │ │ ├── om_KE.json │ │ │ │ ├── ti_ER.json │ │ │ │ ├── zh_MO.json │ │ │ │ ├── ar_SO.json │ │ │ │ ├── bo_IN.json │ │ │ │ ├── en_GG.json │ │ │ │ ├── en_IM.json │ │ │ │ ├── en_JE.json │ │ │ │ ├── es_BO.json │ │ │ │ ├── ff_Latn_GH.json │ │ │ │ ├── ff_Latn_GN.json │ │ │ │ ├── ms_BN.json │ │ │ │ ├── uz_Arab.json │ │ │ │ ├── zh_Hant_MO.json │ │ │ │ ├── af_NA.json │ │ │ │ ├── ar_DJ.json │ │ │ │ ├── ar_ER.json │ │ │ │ ├── ar_KM.json │ │ │ │ ├── ar_LB.json │ │ │ │ ├── ca_FR.json │ │ │ │ ├── en_BB.json │ │ │ │ ├── en_BI.json │ │ │ │ ├── en_BM.json │ │ │ │ ├── en_BS.json │ │ │ │ ├── en_BW.json │ │ │ │ ├── en_BZ.json │ │ │ │ ├── en_CA.json │ │ │ │ ├── en_CC.json │ │ │ │ ├── en_CX.json │ │ │ │ ├── en_DK.json │ │ │ │ ├── en_ER.json │ │ │ │ ├── en_FJ.json │ │ │ │ ├── en_GB.json │ │ │ │ ├── en_GH.json │ │ │ │ ├── en_GM.json │ │ │ │ ├── en_GY.json │ │ │ │ ├── en_JM.json │ │ │ │ ├── en_KE.json │ │ │ │ ├── en_KI.json │ │ │ │ ├── en_LR.json │ │ │ │ ├── en_MG.json │ │ │ │ ├── en_MT.json │ │ │ │ ├── en_MU.json │ │ │ │ ├── en_MW.json │ │ │ │ ├── en_NA.json │ │ │ │ ├── en_NF.json │ │ │ │ ├── en_NG.json │ │ │ │ ├── en_NH.json │ │ │ │ ├── en_NR.json │ │ │ │ ├── en_PH.json │ │ │ │ ├── en_PK.json │ │ │ │ ├── en_RW.json │ │ │ │ ├── en_SE.json │ │ │ │ ├── en_SG.json │ │ │ │ ├── en_SZ.json │ │ │ │ ├── en_TO.json │ │ │ │ ├── en_TV.json │ │ │ │ ├── en_VU.json │ │ │ │ ├── en_WS.json │ │ │ │ ├── en_ZM.json │ │ │ │ ├── es_BR.json │ │ │ │ ├── es_BZ.json │ │ │ │ ├── es_HN.json │ │ │ │ ├── es_PE.json │ │ │ │ ├── es_PH.json │ │ │ │ ├── ff_MR.json │ │ │ │ ├── fo_DK.json │ │ │ │ ├── fr_BI.json │ │ │ │ ├── fr_CD.json │ │ │ │ ├── fr_DZ.json │ │ │ │ ├── fr_GN.json │ │ │ │ ├── fr_HT.json │ │ │ │ ├── fr_KM.json │ │ │ │ ├── fr_MG.json │ │ │ │ ├── fr_RW.json │ │ │ │ ├── fr_SY.json │ │ │ │ ├── fr_TN.json │ │ │ │ ├── fr_VU.json │ │ │ │ ├── ln_AO.json │ │ │ │ ├── ms_SG.json │ │ │ │ ├── nl_SR.json │ │ │ │ └── ps_PK.json │ │ ├── .gitignore │ │ └── Tests │ │ │ └── Data │ │ │ └── Bundle │ │ │ ├── Reader │ │ │ └── Fixtures │ │ │ │ ├── NotAFile │ │ │ │ └── en.php │ │ │ │ │ └── .gitkeep │ │ │ │ ├── json │ │ │ │ ├── en.json │ │ │ │ └── en_Invalid.json │ │ │ │ ├── en.txt │ │ │ │ ├── invalid_directory │ │ │ │ └── en.json │ │ │ │ ├── txt │ │ │ │ ├── ro.txt │ │ │ │ ├── mo.txt │ │ │ │ ├── ro_MD.txt │ │ │ │ ├── alias.txt │ │ │ │ └── root.txt │ │ │ │ ├── en.res │ │ │ │ └── res │ │ │ │ ├── mo.res │ │ │ │ ├── ro.res │ │ │ │ ├── root.res │ │ │ │ ├── alias.res │ │ │ │ └── ro_MD.res │ │ │ └── Writer │ │ │ └── Fixtures │ │ │ ├── rb.txt │ │ │ ├── en_nofallback.txt │ │ │ ├── rb.json │ │ │ ├── escaped.txt │ │ │ ├── rb.php │ │ │ ├── en.res │ │ │ └── rb.res │ ├── Validator │ │ ├── Tests │ │ │ ├── Constraints │ │ │ │ └── Fixtures │ │ │ │ │ ├── foo │ │ │ │ │ ├── test.gif │ │ │ │ │ ├── test_4by3.gif │ │ │ │ │ ├── test_corrupted.gif │ │ │ │ │ ├── test_landscape.gif │ │ │ │ │ └── test_portrait.gif │ │ │ └── Mapping │ │ │ │ └── Loader │ │ │ │ ├── empty-mapping.yml │ │ │ │ └── nonvalid-mapping.yml │ │ └── .gitignore │ ├── Console │ │ ├── Tests │ │ │ └── Fixtures │ │ │ │ ├── input_definition_1.md │ │ │ │ ├── input_definition_1.txt │ │ │ │ ├── application_gethelp.txt │ │ │ │ ├── application_run4.txt │ │ │ │ ├── input_argument_1.txt │ │ │ │ ├── input_option_1.txt │ │ │ │ ├── input_argument_2.txt │ │ │ │ ├── input_definition_1.json │ │ │ │ ├── input_option_3.txt │ │ │ │ ├── input_definition_2.txt │ │ │ │ ├── input_definition_3.txt │ │ │ │ ├── input_option_6.txt │ │ │ │ ├── input_argument_4.txt │ │ │ │ ├── input_argument_1.md │ │ │ │ ├── Style │ │ │ │ └── SymfonyStyle │ │ │ │ │ └── output │ │ │ │ │ ├── output_3.txt │ │ │ │ │ ├── output_7.txt │ │ │ │ │ ├── interactive_output_1.txt │ │ │ │ │ ├── output_17.txt │ │ │ │ │ └── output_0.txt │ │ │ │ ├── input_argument_3.txt │ │ │ │ ├── input_argument_with_default_inf_value.txt │ │ │ │ ├── input_argument_with_style.txt │ │ │ │ ├── input_definition_1.xml │ │ │ │ ├── input_definition_2.md │ │ │ │ ├── input_option_2.txt │ │ │ │ ├── input_option_4.txt │ │ │ │ ├── input_option_5.txt │ │ │ │ ├── input_argument_2.md │ │ │ │ ├── input_option_1.md │ │ │ │ ├── input_option_with_default_inf_value.txt │ │ │ │ ├── input_option_with_style.txt │ │ │ │ ├── input_argument_3.md │ │ │ │ ├── application_renderexception1.txt │ │ │ │ ├── input_argument_4.md │ │ │ │ ├── input_argument_with_style.md │ │ │ │ ├── input_argument_with_default_inf_value.md │ │ │ │ ├── application_renderexception_doublewidth1.txt │ │ │ │ ├── input_argument_1.json │ │ │ │ ├── input_definition_3.md │ │ │ │ ├── input_definition_4.txt │ │ │ │ ├── input_option_3.md │ │ │ │ ├── input_option_4.md │ │ │ │ ├── application_renderexception4.txt │ │ │ │ ├── input_option_2.md │ │ │ │ ├── input_option_with_style.md │ │ │ │ ├── input_argument_2.json │ │ │ │ └── input_option_6.md │ │ ├── .gitignore │ │ └── Resources │ │ │ └── bin │ │ │ └── hiddeninput.exe │ ├── Mime │ │ ├── Tests │ │ │ ├── Fixtures │ │ │ │ └── mimetypes │ │ │ │ │ ├── directory │ │ │ │ │ └── .empty │ │ │ │ │ ├── .unknownextension │ │ │ │ │ ├── other-file.example │ │ │ │ │ ├── test │ │ │ │ │ └── test.gif │ │ │ └── _data │ │ │ │ └── ca.srl │ │ └── .gitignore │ ├── Serializer │ │ ├── Tests │ │ │ └── Fixtures │ │ │ │ ├── empty-mapping.yml │ │ │ │ ├── invalid-mapping.yml │ │ │ │ ├── test.txt │ │ │ │ └── test.gif │ │ └── .gitignore │ ├── DomCrawler │ │ ├── Tests │ │ │ └── Fixtures │ │ │ │ ├── no-extension │ │ │ │ └── windows-1250.html │ │ └── .gitignore │ ├── HttpFoundation │ │ ├── Tests │ │ │ └── File │ │ │ │ └── Fixtures │ │ │ │ ├── directory │ │ │ │ └── .empty │ │ │ │ ├── .unknownextension │ │ │ │ ├── other-file.example │ │ │ │ ├── test │ │ │ │ ├── test.gif │ │ │ │ └── case-sensitive-mime-type.xlsm │ │ └── .gitignore │ ├── HttpKernel │ │ ├── Tests │ │ │ └── Fixtures │ │ │ │ ├── Bundle1Bundle │ │ │ │ ├── bar.txt │ │ │ │ ├── foo.txt │ │ │ │ └── Resources │ │ │ │ │ └── foo.txt │ │ │ │ ├── Bundle2Bundle │ │ │ │ └── foo.txt │ │ │ │ ├── BaseBundle │ │ │ │ └── Resources │ │ │ │ │ ├── foo.txt │ │ │ │ │ └── hide.txt │ │ │ │ ├── ChildBundle │ │ │ │ └── Resources │ │ │ │ │ ├── foo.txt │ │ │ │ │ └── hide.txt │ │ │ │ └── Resources │ │ │ │ ├── BaseBundle │ │ │ │ └── hide.txt │ │ │ │ ├── ChildBundle │ │ │ │ └── foo.txt │ │ │ │ ├── FooBundle │ │ │ │ └── foo.txt │ │ │ │ └── Bundle1Bundle │ │ │ │ └── foo.txt │ │ └── .gitignore │ ├── Ldap │ │ ├── .gitignore │ │ └── Tests │ │ │ └── Fixtures │ │ │ └── data │ │ │ └── base.ldif │ ├── Lock │ │ └── .gitignore │ ├── Yaml │ │ ├── .gitignore │ │ └── Tests │ │ │ └── Fixtures │ │ │ ├── embededPhp.yml │ │ │ ├── nonStringKeys.yml │ │ │ ├── arrow.gif │ │ │ ├── nullMappingKey.yml │ │ │ └── multiple_lines_as_literal_block_leading_space_in_first_line.yml │ ├── Asset │ │ ├── .gitignore │ │ └── Tests │ │ │ └── fixtures │ │ │ ├── manifest-invalid.json │ │ │ └── manifest-valid.json │ ├── Cache │ │ └── .gitignore │ ├── Debug │ │ ├── .gitignore │ │ └── Tests │ │ │ ├── Fixtures │ │ │ ├── Throwing.php │ │ │ ├── PEARClass.php │ │ │ ├── casemismatch.php │ │ │ ├── notPsr0Bis.php │ │ │ ├── reallyNotPsr0.php │ │ │ ├── psr4 │ │ │ │ └── Psr4CaseMismatch.php │ │ │ ├── ClassAlias.php │ │ │ ├── InternalTrait.php │ │ │ ├── NonDeprecatedInterface.php │ │ │ ├── InternalInterface.php │ │ │ └── VirtualTrait.php │ │ │ └── Fixtures2 │ │ │ └── RequiredTwice.php │ ├── DependencyInjection │ │ ├── Tests │ │ │ └── Fixtures │ │ │ │ ├── array.json │ │ │ │ ├── yaml │ │ │ │ ├── nonvalid2.yml │ │ │ │ ├── null_config.yml │ │ │ │ ├── bad_services.yml │ │ │ │ ├── nonvalid1.yml │ │ │ │ ├── services11.yml │ │ │ │ ├── bad_format.yml │ │ │ │ ├── bad_imports.yml │ │ │ │ ├── bad_service.yml │ │ │ │ ├── bad_parameters.yml │ │ │ │ ├── bad_empty_defaults.yml │ │ │ │ ├── bad_import.yml │ │ │ │ ├── bad_empty_instanceof.yml │ │ │ │ ├── services7.yml │ │ │ │ ├── services_underscore.yml │ │ │ │ ├── yaml_with_wrong_ext.ini │ │ │ │ ├── services_lazy_fqcn.yml │ │ │ │ ├── anonymous_services_in_parameters.yml │ │ │ │ ├── services4_bad_import.yml │ │ │ │ ├── bad_calls.yml │ │ │ │ ├── services13.yml │ │ │ │ ├── services3.yml │ │ │ │ ├── services23.yml │ │ │ │ ├── integration │ │ │ │ │ ├── autoconfigure_parent_child │ │ │ │ │ │ └── _child.yml │ │ │ │ │ ├── autoconfigure_parent_child_tags │ │ │ │ │ │ └── _child.yml │ │ │ │ │ ├── defaults_parent_child │ │ │ │ │ │ └── _child.yml │ │ │ │ │ └── instanceof_parent_child │ │ │ │ │ │ └── _child.yml │ │ │ │ ├── tag_name_only.yml │ │ │ │ ├── bar │ │ │ │ │ └── services.yml │ │ │ │ ├── foo │ │ │ │ │ └── services.yml │ │ │ │ ├── legacy_invalid_alias_definition.yml │ │ │ │ ├── services31_invalid_tags.yml │ │ │ │ ├── bad_parent.yml │ │ │ │ ├── badtag1.yml │ │ │ │ ├── anonymous_services_alias.yml │ │ │ │ ├── tagged_iterator_optional.yml │ │ │ │ ├── class_from_id.yml │ │ │ │ ├── bad_factory_syntax.yml │ │ │ │ └── deprecated_alias_definitions.yml │ │ │ │ ├── ini │ │ │ │ ├── almostvalid.ini │ │ │ │ ├── nonvalid.ini │ │ │ │ ├── parameters.ini │ │ │ │ ├── parameters1.ini │ │ │ │ ├── parameters2.ini │ │ │ │ └── ini_with_wrong_ext.xml │ │ │ │ ├── directory │ │ │ │ ├── recurse │ │ │ │ │ ├── simple.ini │ │ │ │ │ └── simple.yml │ │ │ │ ├── import │ │ │ │ │ └── import.yml │ │ │ │ └── simple.php │ │ │ │ ├── php │ │ │ │ ├── return_foo_string.php │ │ │ │ ├── simple.php │ │ │ │ ├── php_with_wrong_ext.yml │ │ │ │ └── services8.php │ │ │ │ ├── xml │ │ │ │ ├── nonvalid.xml │ │ │ │ └── withdoctype.xml │ │ │ │ ├── includes │ │ │ │ ├── foo_lazy.php │ │ │ │ └── HotPath │ │ │ │ │ ├── C2.php │ │ │ │ │ ├── C3.php │ │ │ │ │ ├── T1.php │ │ │ │ │ ├── I1.php │ │ │ │ │ ├── P1.php │ │ │ │ │ └── C1.php │ │ │ │ ├── Prototype │ │ │ │ ├── OtherDir │ │ │ │ │ └── Baz.php │ │ │ │ ├── FooInterface.php │ │ │ │ └── Sub │ │ │ │ │ ├── BarInterface.php │ │ │ │ │ └── Bar.php │ │ │ │ ├── containers │ │ │ │ └── container_non_shared_lazy.php │ │ │ │ └── ParentNotExists.php │ │ └── .gitignore │ ├── Dotenv │ │ └── .gitignore │ ├── Process │ │ └── .gitignore │ ├── Security │ │ ├── .gitignore │ │ ├── Core │ │ │ └── .gitignore │ │ ├── Csrf │ │ │ └── .gitignore │ │ ├── Guard │ │ │ └── .gitignore │ │ └── Http │ │ │ └── .gitignore │ ├── Stopwatch │ │ └── .gitignore │ ├── Templating │ │ ├── Tests │ │ │ └── Fixtures │ │ │ │ └── templates │ │ │ │ └── foo.php │ │ └── .gitignore │ ├── VarDumper │ │ ├── .gitignore │ │ └── Tests │ │ │ └── Fixtures │ │ │ └── NotLoadableClass.php │ ├── WebLink │ │ ├── .gitignore │ │ └── CHANGELOG.md │ ├── BrowserKit │ │ └── .gitignore │ ├── CssSelector │ │ └── .gitignore │ ├── ErrorHandler │ │ ├── .gitignore │ │ ├── Tests │ │ │ ├── Fixtures │ │ │ │ ├── Throwing.php │ │ │ │ ├── PEARClass.php │ │ │ │ ├── notPsr0Bis.php │ │ │ │ ├── reallyNotPsr0.php │ │ │ │ ├── casemismatch.php │ │ │ │ ├── psr4 │ │ │ │ │ └── Psr4CaseMismatch.php │ │ │ │ ├── ClassAlias.php │ │ │ │ ├── InternalTrait.php │ │ │ │ └── NonDeprecatedInterface.php │ │ │ └── Fixtures2 │ │ │ │ └── RequiredTwice.php │ │ └── CHANGELOG.md │ ├── ErrorRenderer │ │ ├── .gitignore │ │ └── CHANGELOG.md │ ├── Filesystem │ │ └── .gitignore │ ├── PropertyAccess │ │ └── .gitignore │ ├── VarExporter │ │ ├── .gitignore │ │ ├── Tests │ │ │ └── Fixtures │ │ │ │ ├── bool.php │ │ │ │ ├── external-references.php │ │ │ │ ├── simple-array.php │ │ │ │ ├── partially-indexed-array.php │ │ │ │ └── multiline-string.php │ │ └── CHANGELOG.md │ ├── EventDispatcher │ │ └── .gitignore │ ├── ExpressionLanguage │ │ └── .gitignore │ ├── OptionsResolver │ │ └── .gitignore │ ├── Mailer │ │ └── Bridge │ │ │ └── Sendgrid │ │ │ └── .gitignore │ └── Messenger │ │ └── Tests │ │ └── Fixtures │ │ ├── SecondMessage.php │ │ └── DummyMessageInterface.php │ ├── Bridge │ ├── Twig │ │ ├── Tests │ │ │ ├── Fixtures │ │ │ │ ├── templates │ │ │ │ │ ├── base.html.twig │ │ │ │ │ └── bundles │ │ │ │ │ │ ├── TwigBundle │ │ │ │ │ │ └── error.html.twig │ │ │ │ │ │ ├── UnknownBundle │ │ │ │ │ │ └── base.html.twig │ │ │ │ │ │ └── WebProfileBundle │ │ │ │ │ │ └── Profiler │ │ │ │ │ │ └── base.html.twig │ │ │ │ ├── Resources │ │ │ │ │ └── BarBundle │ │ │ │ │ │ └── views │ │ │ │ │ │ └── base.html.twig │ │ │ │ ├── extractor │ │ │ │ │ ├── syntax_error.twig │ │ │ │ │ └── with_translations.html.twig │ │ │ │ └── vendors │ │ │ │ │ └── twig-bundle │ │ │ │ │ └── Resources │ │ │ │ │ └── views │ │ │ │ │ ├── base.html.twig │ │ │ │ │ └── error.html.twig │ │ │ └── Extension │ │ │ │ └── Fixtures │ │ │ │ └── templates │ │ │ │ └── form │ │ │ │ ├── page_dynamic_extends.html.twig │ │ │ │ ├── parent_label.html.twig │ │ │ │ └── child_label.html.twig │ │ └── .gitignore │ ├── Monolog │ │ └── .gitignore │ ├── PhpUnit │ │ ├── .gitignore │ │ └── Tests │ │ │ └── DeprecationErrorHandler │ │ │ ├── fake_vendor │ │ │ ├── composer │ │ │ │ └── installed.json │ │ │ └── autoload.php │ │ │ ├── deprecation │ │ │ └── deprecation.php │ │ │ └── deprecation.phar │ ├── Doctrine │ │ └── .gitignore │ └── ProxyManager │ │ └── .gitignore │ ├── Bundle │ ├── FrameworkBundle │ │ ├── Resources │ │ │ └── views │ │ │ │ ├── Form │ │ │ │ ├── button_label.html.php │ │ │ │ ├── hidden_row.html.php │ │ │ │ ├── repeated_row.html.php │ │ │ │ ├── button_row.html.php │ │ │ │ ├── choice_options.html.php │ │ │ │ ├── container_attributes.html.php │ │ │ │ ├── form_enctype.html.php │ │ │ │ ├── tel_widget.html.php │ │ │ │ ├── color_widget.html.php │ │ │ │ ├── range_widget.html.php │ │ │ │ ├── reset_widget.html.php │ │ │ │ ├── submit_widget.html.php │ │ │ │ ├── url_widget.html.php │ │ │ │ ├── email_widget.html.php │ │ │ │ ├── hidden_widget.html.php │ │ │ │ ├── integer_widget.html.php │ │ │ │ ├── number_widget.html.php │ │ │ │ ├── search_widget.html.php │ │ │ │ ├── money_widget.html.php │ │ │ │ ├── password_widget.html.php │ │ │ │ ├── form_end.html.php │ │ │ │ ├── textarea_widget.html.php │ │ │ │ └── form.html.php │ │ │ │ └── FormTable │ │ │ │ ├── button_row.html.php │ │ │ │ └── hidden_row.html.php │ │ ├── Tests │ │ │ ├── DependencyInjection │ │ │ │ ├── config │ │ │ │ │ ├── serializer │ │ │ │ │ │ └── foo.yml │ │ │ │ │ └── validator │ │ │ │ │ │ └── foo.xml │ │ │ │ ├── translations │ │ │ │ │ └── test_default.en.xlf │ │ │ │ └── Fixtures │ │ │ │ │ ├── Resources │ │ │ │ │ └── translations │ │ │ │ │ │ └── test_default.en.xlf │ │ │ │ │ ├── TestBundle │ │ │ │ │ └── Resources │ │ │ │ │ │ └── config │ │ │ │ │ │ ├── validation.xml │ │ │ │ │ │ ├── validation.yml │ │ │ │ │ │ ├── serialization.xml │ │ │ │ │ │ ├── serialization.yml │ │ │ │ │ │ ├── serializer_mapping │ │ │ │ │ │ ├── files │ │ │ │ │ │ │ ├── foo.xml │ │ │ │ │ │ │ └── foo.yml │ │ │ │ │ │ ├── serialization.yaml │ │ │ │ │ │ └── serialization.yml │ │ │ │ │ │ └── validation_mapping │ │ │ │ │ │ ├── files │ │ │ │ │ │ ├── foo.xml │ │ │ │ │ │ └── foo.yml │ │ │ │ │ │ ├── validation.yaml │ │ │ │ │ │ └── validation.yml │ │ │ │ │ ├── yml │ │ │ │ │ ├── default_config.yml │ │ │ │ │ ├── lock.yml │ │ │ │ │ ├── workflows_enabled.yml │ │ │ │ │ ├── csrf_needs_session.yml │ │ │ │ │ ├── templating_disabled.yml │ │ │ │ │ ├── request.yml │ │ │ │ │ ├── esi_disabled.yml │ │ │ │ │ ├── profiler.yml │ │ │ │ │ ├── session.yml │ │ │ │ │ ├── ssi_disabled.yml │ │ │ │ │ ├── web_link.yml │ │ │ │ │ ├── assets_disabled.yml │ │ │ │ │ ├── php_errors_log_level.yml │ │ │ │ │ ├── php_errors_disabled.yml │ │ │ │ │ ├── property_info.yml │ │ │ │ │ ├── serializer_enabled.yml │ │ │ │ │ ├── serializer_disabled.yml │ │ │ │ │ ├── templating_no_assets.yml │ │ │ │ │ ├── translator_fallbacks.yml │ │ │ │ │ ├── php_errors_enabled.yml │ │ │ │ │ ├── validation_strict_email_disabled.yml │ │ │ │ │ ├── validation_strict_email_enabled.yml │ │ │ │ │ ├── csrf.yml │ │ │ │ │ ├── form_no_csrf.yml │ │ │ │ │ ├── validation_translation_domain.yml │ │ │ │ │ ├── serializer_legacy_cache.yml │ │ │ │ │ ├── validation_email_validation_mode.yml │ │ │ │ │ ├── session_savepath.yml │ │ │ │ │ ├── templating_php_assets_disabled.yml │ │ │ │ │ ├── session_cookie_secure_auto.yml │ │ │ │ │ ├── templating_php_translator_enabled.yml │ │ │ │ │ ├── templating_php_translator_disabled.yml │ │ │ │ │ ├── validation_annotations.yml │ │ │ │ │ ├── validation_no_static_method.yml │ │ │ │ │ ├── validation_strict_email_and_validation_mode.yml │ │ │ │ │ └── cache_env_var.yml │ │ │ │ │ ├── CustomPathBundle │ │ │ │ │ └── Resources │ │ │ │ │ │ └── config │ │ │ │ │ │ ├── validation.xml │ │ │ │ │ │ └── validation.yml │ │ │ │ │ ├── translations │ │ │ │ │ ├── test_paths.en.yml │ │ │ │ │ └── domain.with.dots.en.yml │ │ │ │ │ └── php │ │ │ │ │ ├── default_config.php │ │ │ │ │ ├── workflows_enabled.php │ │ │ │ │ ├── templating_disabled.php │ │ │ │ │ ├── web_link.php │ │ │ │ │ ├── request.php │ │ │ │ │ ├── esi_disabled.php │ │ │ │ │ ├── profiler.php │ │ │ │ │ ├── session.php │ │ │ │ │ ├── ssi_disabled.php │ │ │ │ │ ├── assets_disabled.php │ │ │ │ │ ├── php_errors_log_level.php │ │ │ │ │ ├── property_info.php │ │ │ │ │ ├── serializer_disabled.php │ │ │ │ │ └── serializer_enabled.php │ │ │ ├── Fixtures │ │ │ │ ├── Resources │ │ │ │ │ ├── views │ │ │ │ │ │ ├── resource.format.engine │ │ │ │ │ │ └── this.is.a.template.format.engine │ │ │ │ │ ├── BaseBundle │ │ │ │ │ │ └── views │ │ │ │ │ │ │ ├── base.format.engine │ │ │ │ │ │ │ └── controller │ │ │ │ │ │ │ └── custom.format.engine │ │ │ │ │ └── translations │ │ │ │ │ │ ├── messages.fr.yml │ │ │ │ │ │ └── domain.with.dots.en.yml │ │ │ │ ├── Descriptor │ │ │ │ │ ├── callable_1.txt │ │ │ │ │ ├── callable_6.txt │ │ │ │ │ ├── callable_6.md │ │ │ │ │ ├── alias_1.md │ │ │ │ │ ├── alias_2.md │ │ │ │ │ ├── callable_6.json │ │ │ │ │ ├── parameter.json │ │ │ │ │ ├── parameter.md │ │ │ │ │ ├── callable_1.md │ │ │ │ │ ├── alias_1.json │ │ │ │ │ ├── alias_2.json │ │ │ │ │ ├── callable_1.json │ │ │ │ │ ├── callable_6.xml │ │ │ │ │ ├── callable_3.txt │ │ │ │ │ ├── callable_7.txt │ │ │ │ │ ├── alias_1.xml │ │ │ │ │ ├── callable_2.txt │ │ │ │ │ ├── callable_4.txt │ │ │ │ │ ├── alias_2.xml │ │ │ │ │ ├── callable_from_callable.txt │ │ │ │ │ ├── parameter.xml │ │ │ │ │ ├── callable_1.xml │ │ │ │ │ ├── callable_5.txt │ │ │ │ │ ├── alias_1.txt │ │ │ │ │ ├── alias_2.txt │ │ │ │ │ ├── callable_7.md │ │ │ │ │ ├── array_parameter.md │ │ │ │ │ ├── callable_3.md │ │ │ │ │ ├── callable_7.json │ │ │ │ │ ├── callable_from_callable.md │ │ │ │ │ ├── callable_7.xml │ │ │ │ │ ├── callable_2.md │ │ │ │ │ ├── callable_4.md │ │ │ │ │ ├── callable_3.json │ │ │ │ │ └── definition_without_class.md │ │ │ │ ├── BaseBundle │ │ │ │ │ └── Resources │ │ │ │ │ │ └── views │ │ │ │ │ │ ├── base.format.engine │ │ │ │ │ │ ├── controller │ │ │ │ │ │ └── base.format.engine │ │ │ │ │ │ └── this.is.a.template.format.engine │ │ │ │ ├── TemplatePathsCache │ │ │ │ │ ├── templates-empty.php │ │ │ │ │ └── templates.php │ │ │ │ ├── BackslashClass.php │ │ │ │ ├── DeclaredClass.php │ │ │ │ ├── Messenger │ │ │ │ │ ├── BarMessage.php │ │ │ │ │ └── FooMessage.php │ │ │ │ ├── WarmedClass.php │ │ │ │ ├── Validation │ │ │ │ │ ├── Author.php │ │ │ │ │ └── Person.php │ │ │ │ ├── templates.php │ │ │ │ └── Serialization │ │ │ │ │ ├── Author.php │ │ │ │ │ └── Person.php │ │ │ ├── Command │ │ │ │ └── CacheClearCommand │ │ │ │ │ └── Fixture │ │ │ │ │ └── config.yml │ │ │ ├── Templating │ │ │ │ └── Helper │ │ │ │ │ └── Resources │ │ │ │ │ ├── Parent │ │ │ │ │ └── form_label.html.php │ │ │ │ │ ├── Child │ │ │ │ │ └── form_label.html.php │ │ │ │ │ └── Custom │ │ │ │ │ └── _text_id_widget.html.php │ │ │ └── Functional │ │ │ │ └── app │ │ │ │ ├── config │ │ │ │ └── default.yml │ │ │ │ ├── RouterDebug │ │ │ │ └── config.yml │ │ │ │ ├── AnnotatedController │ │ │ │ ├── config.yml │ │ │ │ └── routing.yml │ │ │ │ ├── Fragment │ │ │ │ └── routing.yml │ │ │ │ ├── Profiler │ │ │ │ ├── routing.yml │ │ │ │ └── config.yml │ │ │ │ ├── Session │ │ │ │ └── routing.yml │ │ │ │ ├── AutowiringTypes │ │ │ │ └── no_annotations_cache.yml │ │ │ │ ├── TestServiceContainer │ │ │ │ ├── config.yml │ │ │ │ └── test_disabled.yml │ │ │ │ └── Serializer │ │ │ │ └── config.yml │ │ └── .gitignore │ ├── TwigBundle │ │ ├── Tests │ │ │ ├── Functional │ │ │ │ ├── Resources │ │ │ │ │ └── config │ │ │ │ │ │ └── empty_routing.yml │ │ │ │ └── templates │ │ │ │ │ └── index.html.twig │ │ │ ├── Fixtures │ │ │ │ └── templates │ │ │ │ │ ├── Foo │ │ │ │ │ └── index.html.twig │ │ │ │ │ ├── Resources │ │ │ │ │ ├── BarBundle │ │ │ │ │ │ └── views │ │ │ │ │ │ │ └── base.html.twig │ │ │ │ │ ├── views │ │ │ │ │ │ ├── layout.html.twig │ │ │ │ │ │ └── sub │ │ │ │ │ │ │ └── sub.html.twig │ │ │ │ │ └── AcmeBundle │ │ │ │ │ │ └── views │ │ │ │ │ │ └── layout.html.twig │ │ │ │ │ └── BarBundle │ │ │ │ │ └── Resources │ │ │ │ │ └── views │ │ │ │ │ └── index.html.twig │ │ │ └── DependencyInjection │ │ │ │ ├── AcmeBundle │ │ │ │ └── Resources │ │ │ │ │ └── views │ │ │ │ │ └── layout.html.twig │ │ │ │ └── Fixtures │ │ │ │ ├── templates │ │ │ │ ├── bundles │ │ │ │ │ ├── AcmeBundle │ │ │ │ │ │ └── layout.html.twig │ │ │ │ │ └── BarBundle │ │ │ │ │ │ └── layout.html.twig │ │ │ │ └── layout.html.twig │ │ │ │ └── yml │ │ │ │ └── empty.yml │ │ ├── .gitignore │ │ └── Resources │ │ │ └── views │ │ │ └── Exception │ │ │ ├── error.atom.twig │ │ │ ├── error.rdf.twig │ │ │ ├── error.css.twig │ │ │ └── error.js.twig │ ├── DebugBundle │ │ └── .gitignore │ ├── SecurityBundle │ │ ├── .gitignore │ │ └── Tests │ │ │ └── Functional │ │ │ └── app │ │ │ ├── MissingUserProvider │ │ │ ├── routing.yml │ │ │ └── config.yml │ │ │ ├── FirewallEntryPoint │ │ │ └── routing.yml │ │ │ ├── LogoutAccess │ │ │ └── routing.yml │ │ │ ├── RememberMeLogout │ │ │ └── routing.yml │ │ │ ├── config │ │ │ └── default.yml │ │ │ ├── LogoutWithoutSessionInvalidation │ │ │ └── routing.yml │ │ │ ├── CsrfFormLogin │ │ │ └── routing.yml │ │ │ └── PasswordEncode │ │ │ ├── bcrypt.yml │ │ │ └── sodium.yml │ ├── WebProfilerBundle │ │ ├── .gitignore │ │ └── Resources │ │ │ └── views │ │ │ └── Profiler │ │ │ └── ajax_layout.html.twig │ └── WebServerBundle │ │ └── Tests │ │ └── DependencyInjection │ │ └── composer.json │ └── Contracts │ └── .gitignore ├── .composer └── config.json └── .gitignore /src/Symfony/Component/Form/Tests/Fixtures/foo: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Symfony/Component/Form/Tests/Fixtures/foo2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Symfony/Component/Form/Tests/Fixtures/foo3: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Symfony/Component/Config/Tests/Fixtures/foo.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Symfony/Component/Finder/Tests/Fixtures/.dot/a: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Symfony/Component/Finder/Tests/Fixtures/A/a.dat: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Symfony/Component/Finder/Tests/Fixtures/one/a: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Symfony/Component/Routing/Tests/Fixtures/bar.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Symfony/Component/Routing/Tests/Fixtures/foo.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Symfony/Component/Routing/Tests/Fixtures/foo1.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Symfony/Component/Config/Tests/Fixtures/Again/foo.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Symfony/Component/Finder/Tests/Fixtures/.dot/b/c.neon: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Symfony/Component/Finder/Tests/Fixtures/.dot/b/d.neon: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Symfony/Component/Finder/Tests/Fixtures/A/B/C/abc.dat: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Symfony/Component/Finder/Tests/Fixtures/A/B/ab.dat: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Symfony/Component/Finder/Tests/Fixtures/one/.dot: -------------------------------------------------------------------------------- 1 | .dot -------------------------------------------------------------------------------- /src/Symfony/Component/Finder/Tests/Fixtures/one/b/c.neon: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Symfony/Component/Finder/Tests/Fixtures/one/b/d.neon: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Symfony/Component/Routing/Tests/Fixtures/annotated.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Symfony/Component/Routing/Tests/Fixtures/empty.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Symfony/Component/Translation/Tests/fixtures/empty.csv: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Symfony/Component/Translation/Tests/fixtures/empty.ini: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Symfony/Component/Translation/Tests/fixtures/empty.mo: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Symfony/Component/Translation/Tests/fixtures/empty.po: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Symfony/Component/Translation/Tests/fixtures/empty.xlf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Symfony/Component/Translation/Tests/fixtures/empty.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Symfony/Bridge/Twig/Tests/Fixtures/templates/base.html.twig: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Symfony/Component/Finder/Tests/Fixtures/copy/A/a.dat.copy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Symfony/Component/Finder/Tests/Fixtures/with space/foo.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/version.txt: -------------------------------------------------------------------------------- 1 | 64.2 2 | -------------------------------------------------------------------------------- /src/Symfony/Component/Routing/Tests/Fixtures/file_resource.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Symfony/Component/Translation/Tests/fixtures/empty.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Symfony/Component/Validator/Tests/Constraints/Fixtures/foo: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Symfony/Component/Config/Tests/Fixtures/Resource/.hiddenFile: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Symfony/Component/Console/Tests/Fixtures/input_definition_1.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Symfony/Component/Console/Tests/Fixtures/input_definition_1.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Symfony/Component/Finder/Tests/Fixtures/copy/A/B/C/abc.dat.copy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Symfony/Component/Finder/Tests/Fixtures/copy/A/B/ab.dat.copy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Symfony/Component/Mime/Tests/Fixtures/mimetypes/directory/.empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Symfony/Component/Mime/Tests/_data/ca.srl: -------------------------------------------------------------------------------- 1 | C51E36445BB0C79B 2 | -------------------------------------------------------------------------------- /src/Symfony/Component/Routing/Tests/Fixtures/nonvalid.yml: -------------------------------------------------------------------------------- 1 | foo 2 | -------------------------------------------------------------------------------- /src/Symfony/Component/Serializer/Tests/Fixtures/empty-mapping.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Symfony/Component/Config/Tests/Fixtures/Exclude/AnExcludedFile.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Symfony/Component/DomCrawler/Tests/Fixtures/no-extension: -------------------------------------------------------------------------------- 1 | Test 2 | -------------------------------------------------------------------------------- /src/Symfony/Component/Finder/Tests/Fixtures/r+e.gex[c]a(r)s/dir/bar.dat: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Symfony/Component/HttpFoundation/Tests/File/Fixtures/directory/.empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Symfony/Component/HttpKernel/Tests/Fixtures/Bundle1Bundle/bar.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Symfony/Component/HttpKernel/Tests/Fixtures/Bundle1Bundle/foo.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Symfony/Component/HttpKernel/Tests/Fixtures/Bundle2Bundle/foo.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Symfony/Component/Mime/Tests/Fixtures/mimetypes/.unknownextension: -------------------------------------------------------------------------------- 1 | f -------------------------------------------------------------------------------- /src/Symfony/Component/Mime/Tests/Fixtures/mimetypes/other-file.example: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Symfony/Component/Serializer/Tests/Fixtures/invalid-mapping.yml: -------------------------------------------------------------------------------- 1 | foo -------------------------------------------------------------------------------- /src/Symfony/Component/Translation/Tests/fixtures/non-valid.yml: -------------------------------------------------------------------------------- 1 | foo 2 | -------------------------------------------------------------------------------- /src/Symfony/Component/Validator/Tests/Mapping/Loader/empty-mapping.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Symfony/Bundle/FrameworkBundle/Resources/views/Form/button_label.html.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Symfony/Component/HttpFoundation/Tests/File/Fixtures/.unknownextension: -------------------------------------------------------------------------------- 1 | f -------------------------------------------------------------------------------- /src/Symfony/Component/HttpFoundation/Tests/File/Fixtures/other-file.example: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Symfony/Component/HttpKernel/Tests/Fixtures/BaseBundle/Resources/foo.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Symfony/Component/HttpKernel/Tests/Fixtures/BaseBundle/Resources/hide.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Symfony/Component/HttpKernel/Tests/Fixtures/ChildBundle/Resources/foo.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Symfony/Component/HttpKernel/Tests/Fixtures/ChildBundle/Resources/hide.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Symfony/Component/HttpKernel/Tests/Fixtures/Resources/BaseBundle/hide.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Symfony/Component/HttpKernel/Tests/Fixtures/Resources/ChildBundle/foo.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Symfony/Component/HttpKernel/Tests/Fixtures/Resources/FooBundle/foo.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Symfony/Component/Routing/Tests/Fixtures/nonvalid2.yml: -------------------------------------------------------------------------------- 1 | route: string 2 | -------------------------------------------------------------------------------- /src/Symfony/Component/Serializer/Tests/Fixtures/test.txt: -------------------------------------------------------------------------------- 1 | Kévin Dunglas 2 | -------------------------------------------------------------------------------- /src/Symfony/Component/Translation/Tests/fixtures/resources.ini: -------------------------------------------------------------------------------- 1 | foo="bar" 2 | -------------------------------------------------------------------------------- /src/Symfony/Component/Translation/Tests/fixtures/resources.yml: -------------------------------------------------------------------------------- 1 | foo: bar 2 | -------------------------------------------------------------------------------- /src/Symfony/Contracts/.gitignore: -------------------------------------------------------------------------------- 1 | composer.lock 2 | phpunit.xml 3 | vendor/ 4 | -------------------------------------------------------------------------------- /src/Symfony/Bridge/Monolog/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | phpunit.xml 4 | -------------------------------------------------------------------------------- /src/Symfony/Bridge/PhpUnit/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | phpunit.xml 4 | -------------------------------------------------------------------------------- /src/Symfony/Bridge/Twig/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | phpunit.xml 4 | -------------------------------------------------------------------------------- /src/Symfony/Bridge/Twig/Tests/Fixtures/Resources/BarBundle/views/base.html.twig: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Symfony/Bridge/Twig/Tests/Fixtures/templates/bundles/TwigBundle/error.html.twig: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Symfony/Bundle/TwigBundle/Tests/Functional/Resources/config/empty_routing.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Symfony/Component/Console/Tests/Fixtures/application_gethelp.txt: -------------------------------------------------------------------------------- 1 | Console Tool -------------------------------------------------------------------------------- /src/Symfony/Component/Console/Tests/Fixtures/application_run4.txt: -------------------------------------------------------------------------------- 1 | Console Tool 2 | -------------------------------------------------------------------------------- /src/Symfony/Component/Form/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | phpunit.xml 4 | -------------------------------------------------------------------------------- /src/Symfony/Component/HttpKernel/Tests/Fixtures/Bundle1Bundle/Resources/foo.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Symfony/Component/HttpKernel/Tests/Fixtures/Resources/Bundle1Bundle/foo.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | phpunit.xml 4 | -------------------------------------------------------------------------------- /src/Symfony/Component/Ldap/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | phpunit.xml 4 | -------------------------------------------------------------------------------- /src/Symfony/Component/Lock/.gitignore: -------------------------------------------------------------------------------- 1 | composer.lock 2 | phpunit.xml 3 | vendor/ 4 | -------------------------------------------------------------------------------- /src/Symfony/Component/Mime/.gitignore: -------------------------------------------------------------------------------- 1 | composer.lock 2 | phpunit.xml 3 | vendor/ 4 | -------------------------------------------------------------------------------- /src/Symfony/Component/Translation/Tests/fixtures/extractor/resource.format.engine: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Symfony/Component/Validator/Tests/Mapping/Loader/nonvalid-mapping.yml: -------------------------------------------------------------------------------- 1 | foo 2 | -------------------------------------------------------------------------------- /src/Symfony/Component/Yaml/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | phpunit.xml 4 | -------------------------------------------------------------------------------- /src/Symfony/Bridge/Doctrine/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | phpunit.xml 4 | -------------------------------------------------------------------------------- /src/Symfony/Bridge/ProxyManager/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | phpunit.xml 4 | -------------------------------------------------------------------------------- /src/Symfony/Bridge/Twig/Tests/Fixtures/extractor/syntax_error.twig: -------------------------------------------------------------------------------- 1 | {% syntax error 2 | -------------------------------------------------------------------------------- /src/Symfony/Bridge/Twig/Tests/Fixtures/templates/bundles/UnknownBundle/base.html.twig: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Symfony/Bundle/DebugBundle/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | phpunit.xml 4 | -------------------------------------------------------------------------------- /src/Symfony/Bundle/FrameworkBundle/Tests/DependencyInjection/config/serializer/foo.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Symfony/Bundle/FrameworkBundle/Tests/DependencyInjection/config/validator/foo.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Symfony/Bundle/FrameworkBundle/Tests/Fixtures/Resources/views/resource.format.engine: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Symfony/Bundle/TwigBundle/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | phpunit.xml 4 | -------------------------------------------------------------------------------- /src/Symfony/Component/Asset/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | phpunit.xml 4 | -------------------------------------------------------------------------------- /src/Symfony/Component/Cache/.gitignore: -------------------------------------------------------------------------------- 1 | composer.lock 2 | phpunit.xml 3 | vendor/ 4 | -------------------------------------------------------------------------------- /src/Symfony/Component/Config/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | phpunit.xml 4 | -------------------------------------------------------------------------------- /src/Symfony/Component/Config/Tests/Fixtures/Exclude/ExcludeToo/AnotheExcludedFile.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Symfony/Component/Console/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | phpunit.xml 4 | -------------------------------------------------------------------------------- /src/Symfony/Component/Debug/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | phpunit.xml 4 | -------------------------------------------------------------------------------- /src/Symfony/Component/DependencyInjection/Tests/Fixtures/array.json: -------------------------------------------------------------------------------- 1 | [123, "abc"] 2 | -------------------------------------------------------------------------------- /src/Symfony/Component/DependencyInjection/Tests/Fixtures/yaml/nonvalid2.yml: -------------------------------------------------------------------------------- 1 | false 2 | -------------------------------------------------------------------------------- /src/Symfony/Component/Dotenv/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | phpunit.xml 4 | -------------------------------------------------------------------------------- /src/Symfony/Component/Finder/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | phpunit.xml 4 | -------------------------------------------------------------------------------- /src/Symfony/Component/Finder/Tests/Fixtures/dolor.txt: -------------------------------------------------------------------------------- 1 | dolor sit amet 2 | DOLOR SIT AMET -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Tests/Data/Bundle/Reader/Fixtures/NotAFile/en.php/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Symfony/Component/Process/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | phpunit.xml 4 | -------------------------------------------------------------------------------- /src/Symfony/Component/Routing/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | phpunit.xml 4 | -------------------------------------------------------------------------------- /src/Symfony/Component/Security/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | phpunit.xml 4 | -------------------------------------------------------------------------------- /src/Symfony/Component/Stopwatch/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | phpunit.xml 4 | -------------------------------------------------------------------------------- /src/Symfony/Component/Templating/Tests/Fixtures/templates/foo.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/Symfony/Component/Validator/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | phpunit.xml 4 | -------------------------------------------------------------------------------- /src/Symfony/Component/VarDumper/.gitignore: -------------------------------------------------------------------------------- 1 | composer.lock 2 | phpunit.xml 3 | vendor/ 4 | -------------------------------------------------------------------------------- /src/Symfony/Component/WebLink/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | phpunit.xml 4 | -------------------------------------------------------------------------------- /src/Symfony/Bridge/Twig/Tests/Fixtures/vendors/twig-bundle/Resources/views/base.html.twig: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Symfony/Bridge/Twig/Tests/Fixtures/vendors/twig-bundle/Resources/views/error.html.twig: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Symfony/Bundle/FrameworkBundle/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | phpunit.xml 4 | -------------------------------------------------------------------------------- /src/Symfony/Bundle/FrameworkBundle/Tests/DependencyInjection/translations/test_default.en.xlf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Symfony/Bundle/FrameworkBundle/Tests/Fixtures/Descriptor/callable_1.txt: -------------------------------------------------------------------------------- 1 | array_key_exists() -------------------------------------------------------------------------------- /src/Symfony/Bundle/FrameworkBundle/Tests/Fixtures/Descriptor/callable_6.txt: -------------------------------------------------------------------------------- 1 | Closure() 2 | -------------------------------------------------------------------------------- /src/Symfony/Bundle/SecurityBundle/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | phpunit.xml 4 | -------------------------------------------------------------------------------- /src/Symfony/Bundle/WebProfilerBundle/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | phpunit.xml 4 | -------------------------------------------------------------------------------- /src/Symfony/Component/BrowserKit/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | phpunit.xml 4 | -------------------------------------------------------------------------------- /src/Symfony/Component/CssSelector/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | phpunit.xml 4 | -------------------------------------------------------------------------------- /src/Symfony/Component/DependencyInjection/Tests/Fixtures/yaml/null_config.yml: -------------------------------------------------------------------------------- 1 | project: ~ 2 | -------------------------------------------------------------------------------- /src/Symfony/Component/DomCrawler/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | phpunit.xml 4 | -------------------------------------------------------------------------------- /src/Symfony/Component/ErrorHandler/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | phpunit.xml 4 | -------------------------------------------------------------------------------- /src/Symfony/Component/ErrorRenderer/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | phpunit.xml 4 | -------------------------------------------------------------------------------- /src/Symfony/Component/Filesystem/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | phpunit.xml 4 | -------------------------------------------------------------------------------- /src/Symfony/Component/HttpFoundation/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | phpunit.xml 4 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Tests/Data/Bundle/Reader/Fixtures/json/en.json: -------------------------------------------------------------------------------- 1 | {"Foo":"Bar"} 2 | -------------------------------------------------------------------------------- /src/Symfony/Component/PropertyAccess/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | phpunit.xml 4 | -------------------------------------------------------------------------------- /src/Symfony/Component/Security/Core/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | phpunit.xml 4 | -------------------------------------------------------------------------------- /src/Symfony/Component/Security/Csrf/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | phpunit.xml 4 | -------------------------------------------------------------------------------- /src/Symfony/Component/Security/Guard/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | phpunit.xml 4 | -------------------------------------------------------------------------------- /src/Symfony/Component/Security/Http/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | phpunit.xml 4 | -------------------------------------------------------------------------------- /src/Symfony/Component/Serializer/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | phpunit.xml 4 | -------------------------------------------------------------------------------- /src/Symfony/Component/Templating/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | phpunit.xml 4 | -------------------------------------------------------------------------------- /src/Symfony/Component/Translation/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | phpunit.xml 4 | -------------------------------------------------------------------------------- /src/Symfony/Component/Translation/Tests/fixtures/extractor/this.is.a.template.format.engine: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Symfony/Component/Translation/Tests/fixtures/malformed.json: -------------------------------------------------------------------------------- 1 | { 2 | "foo" "bar" 3 | } -------------------------------------------------------------------------------- /src/Symfony/Component/Translation/Tests/fixtures/resourcebundle/corrupted/resources.dat: -------------------------------------------------------------------------------- 1 | XXX -------------------------------------------------------------------------------- /src/Symfony/Component/Translation/Tests/fixtures/resources.dump.json: -------------------------------------------------------------------------------- 1 | {"foo":"\u0022bar\u0022"} -------------------------------------------------------------------------------- /src/Symfony/Component/Translation/Tests/fixtures/resources.json: -------------------------------------------------------------------------------- 1 | { 2 | "foo": "bar" 3 | } -------------------------------------------------------------------------------- /src/Symfony/Component/VarExporter/.gitignore: -------------------------------------------------------------------------------- 1 | composer.lock 2 | phpunit.xml 3 | vendor/ 4 | -------------------------------------------------------------------------------- /src/Symfony/Component/VarExporter/Tests/Fixtures/bool.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/Symfony/Bridge/Twig/Tests/Fixtures/templates/bundles/WebProfileBundle/Profiler/base.html.twig: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Symfony/Bundle/FrameworkBundle/Tests/Fixtures/BaseBundle/Resources/views/base.format.engine: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Symfony/Bundle/FrameworkBundle/Tests/Fixtures/Resources/BaseBundle/views/base.format.engine: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Symfony/Bundle/FrameworkBundle/Tests/Fixtures/Resources/views/this.is.a.template.format.engine: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Symfony/Bundle/TwigBundle/Tests/Fixtures/templates/Foo/index.html.twig: -------------------------------------------------------------------------------- 1 | {# Twig template #} 2 | -------------------------------------------------------------------------------- /src/Symfony/Bundle/TwigBundle/Tests/Fixtures/templates/Resources/BarBundle/views/base.html.twig: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Symfony/Component/Console/Tests/Fixtures/input_argument_1.txt: -------------------------------------------------------------------------------- 1 | argument_name 2 | -------------------------------------------------------------------------------- /src/Symfony/Component/DependencyInjection/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | phpunit.xml 4 | -------------------------------------------------------------------------------- /src/Symfony/Component/DependencyInjection/Tests/Fixtures/yaml/bad_services.yml: -------------------------------------------------------------------------------- 1 | services: foo 2 | -------------------------------------------------------------------------------- /src/Symfony/Component/DependencyInjection/Tests/Fixtures/yaml/nonvalid1.yml: -------------------------------------------------------------------------------- 1 | foo: 2 | bar 3 | -------------------------------------------------------------------------------- /src/Symfony/Component/DependencyInjection/Tests/Fixtures/yaml/services11.yml: -------------------------------------------------------------------------------- 1 | foobarfoobar: {} 2 | -------------------------------------------------------------------------------- /src/Symfony/Component/EventDispatcher/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | phpunit.xml 4 | -------------------------------------------------------------------------------- /src/Symfony/Component/ExpressionLanguage/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | phpunit.xml 4 | -------------------------------------------------------------------------------- /src/Symfony/Component/Finder/Tests/Fixtures/ipsum.txt: -------------------------------------------------------------------------------- 1 | ipsum dolor sit amet 2 | IPSUM DOLOR SIT AMET -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Tests/Data/Bundle/Reader/Fixtures/json/en_Invalid.json: -------------------------------------------------------------------------------- 1 | {"Foobar"} 2 | -------------------------------------------------------------------------------- /src/Symfony/Component/OptionsResolver/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | phpunit.xml 4 | -------------------------------------------------------------------------------- /src/Symfony/Bundle/FrameworkBundle/Tests/Fixtures/Descriptor/callable_6.md: -------------------------------------------------------------------------------- 1 | 2 | - Type: `closure` 3 | -------------------------------------------------------------------------------- /src/Symfony/Bundle/TwigBundle/Tests/DependencyInjection/AcmeBundle/Resources/views/layout.html.twig: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Symfony/Bundle/TwigBundle/Tests/Functional/templates/index.html.twig: -------------------------------------------------------------------------------- 1 | {{ {a: 'b'}|yaml_encode }} 2 | -------------------------------------------------------------------------------- /src/Symfony/Component/Console/Tests/Fixtures/input_option_1.txt: -------------------------------------------------------------------------------- 1 | -o, --option_name 2 | -------------------------------------------------------------------------------- /src/Symfony/Component/Debug/Tests/Fixtures/Throwing.php: -------------------------------------------------------------------------------- 1 | {{ 'Hi!'|trans }} 2 | -------------------------------------------------------------------------------- /src/Symfony/Bundle/FrameworkBundle/Tests/Fixtures/BaseBundle/Resources/views/controller/base.format.engine: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Symfony/Bundle/FrameworkBundle/Tests/Fixtures/Resources/BaseBundle/views/controller/custom.format.engine: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Symfony/Bundle/WebProfilerBundle/Resources/views/Profiler/ajax_layout.html.twig: -------------------------------------------------------------------------------- 1 | {% block panel '' %} 2 | -------------------------------------------------------------------------------- /src/Symfony/Component/DependencyInjection/Tests/Fixtures/yaml/bad_format.yml: -------------------------------------------------------------------------------- 1 | parameters: 2 | FOO: bar 3 | -------------------------------------------------------------------------------- /src/Symfony/Component/DependencyInjection/Tests/Fixtures/yaml/bad_imports.yml: -------------------------------------------------------------------------------- 1 | imports: 2 | foo:bar 3 | -------------------------------------------------------------------------------- /src/Symfony/Component/DependencyInjection/Tests/Fixtures/yaml/bad_service.yml: -------------------------------------------------------------------------------- 1 | services: 2 | foo: bar 3 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Tests/Data/Bundle/Reader/Fixtures/invalid_directory/en.json: -------------------------------------------------------------------------------- 1 | {"Foo":"Bar"} 2 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Tests/Data/Bundle/Reader/Fixtures/txt/ro.txt: -------------------------------------------------------------------------------- 1 | ro{ 2 | Foo{"Bar"} 3 | } 4 | -------------------------------------------------------------------------------- /src/Symfony/Component/Routing/Tests/Fixtures/glob/import_multiple.yml: -------------------------------------------------------------------------------- 1 | _static: 2 | resource: ba?.yml 3 | -------------------------------------------------------------------------------- /src/Symfony/Component/Routing/Tests/Fixtures/glob/import_single.yml: -------------------------------------------------------------------------------- 1 | _static: 2 | resource: b?r.yml 3 | -------------------------------------------------------------------------------- /src/Symfony/Component/Routing/Tests/Fixtures/special_route_name.yml: -------------------------------------------------------------------------------- 1 | "#$péß^a|": 2 | path: "true" 3 | -------------------------------------------------------------------------------- /src/Symfony/Component/Translation/Tests/fixtures/empty-translation.po: -------------------------------------------------------------------------------- 1 | msgid "foo" 2 | msgstr "" 3 | 4 | -------------------------------------------------------------------------------- /src/Symfony/Component/Translation/Tests/fixtures/resourcebundle/dat/packagelist.txt: -------------------------------------------------------------------------------- 1 | en.res 2 | fr.res 3 | -------------------------------------------------------------------------------- /src/Symfony/Bundle/FrameworkBundle/Tests/DependencyInjection/Fixtures/Resources/translations/test_default.en.xlf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Symfony/Bundle/FrameworkBundle/Tests/DependencyInjection/Fixtures/TestBundle/Resources/config/validation.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Symfony/Bundle/FrameworkBundle/Tests/DependencyInjection/Fixtures/TestBundle/Resources/config/validation.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Symfony/Bundle/FrameworkBundle/Tests/DependencyInjection/Fixtures/yml/default_config.yml: -------------------------------------------------------------------------------- 1 | framework: ~ 2 | -------------------------------------------------------------------------------- /src/Symfony/Bundle/FrameworkBundle/Tests/DependencyInjection/Fixtures/yml/lock.yml: -------------------------------------------------------------------------------- 1 | framework: 2 | lock: ~ 3 | -------------------------------------------------------------------------------- /src/Symfony/Bundle/FrameworkBundle/Tests/Fixtures/BaseBundle/Resources/views/this.is.a.template.format.engine: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Symfony/Bundle/FrameworkBundle/Tests/Fixtures/Descriptor/alias_1.md: -------------------------------------------------------------------------------- 1 | - Service: `service_1` 2 | - Public: yes -------------------------------------------------------------------------------- /src/Symfony/Bundle/FrameworkBundle/Tests/Fixtures/Resources/translations/messages.fr.yml: -------------------------------------------------------------------------------- 1 | folder: répertoire 2 | -------------------------------------------------------------------------------- /src/Symfony/Bundle/SecurityBundle/Tests/Functional/app/MissingUserProvider/routing.yml: -------------------------------------------------------------------------------- 1 | home: 2 | path: / 3 | -------------------------------------------------------------------------------- /src/Symfony/Bundle/TwigBundle/Tests/DependencyInjection/Fixtures/templates/bundles/AcmeBundle/layout.html.twig: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Symfony/Bundle/TwigBundle/Tests/DependencyInjection/Fixtures/templates/layout.html.twig: -------------------------------------------------------------------------------- 1 | This is a layout 2 | -------------------------------------------------------------------------------- /src/Symfony/Bundle/TwigBundle/Tests/Fixtures/templates/Resources/views/layout.html.twig: -------------------------------------------------------------------------------- 1 | {# Twig template #} 2 | -------------------------------------------------------------------------------- /src/Symfony/Bundle/TwigBundle/Tests/Fixtures/templates/Resources/views/sub/sub.html.twig: -------------------------------------------------------------------------------- 1 | {# Twig template #} 2 | -------------------------------------------------------------------------------- /src/Symfony/Component/DependencyInjection/Tests/Fixtures/yaml/bad_parameters.yml: -------------------------------------------------------------------------------- 1 | parameters: 2 | foo:bar 3 | -------------------------------------------------------------------------------- /src/Symfony/Component/ErrorHandler/Tests/Fixtures/Throwing.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/Symfony/Component/DependencyInjection/Tests/Fixtures/directory/recurse/simple.ini: -------------------------------------------------------------------------------- 1 | [parameters] 2 | ini = ini 3 | -------------------------------------------------------------------------------- /src/Symfony/Component/DependencyInjection/Tests/Fixtures/php/return_foo_string.php: -------------------------------------------------------------------------------- 1 | widget($form) ?> 2 | -------------------------------------------------------------------------------- /src/Symfony/Bundle/FrameworkBundle/Tests/Command/CacheClearCommand/Fixture/config.yml: -------------------------------------------------------------------------------- 1 | framework: 2 | secret: test 3 | -------------------------------------------------------------------------------- /src/Symfony/Bundle/FrameworkBundle/Tests/Fixtures/Descriptor/parameter.json: -------------------------------------------------------------------------------- 1 | { 2 | "database_name": "symfony" 3 | } 4 | -------------------------------------------------------------------------------- /src/Symfony/Bundle/FrameworkBundle/Tests/Fixtures/Descriptor/parameter.md: -------------------------------------------------------------------------------- 1 | database_name 2 | ============= 3 | 4 | symfony -------------------------------------------------------------------------------- /src/Symfony/Bundle/FrameworkBundle/Tests/Fixtures/Resources/translations/domain.with.dots.en.yml: -------------------------------------------------------------------------------- 1 | message: It works! 2 | -------------------------------------------------------------------------------- /src/Symfony/Bundle/FrameworkBundle/Tests/Fixtures/TemplatePathsCache/templates-empty.php: -------------------------------------------------------------------------------- 1 | parent 2 | -------------------------------------------------------------------------------- /src/Symfony/Bundle/TwigBundle/Tests/Fixtures/templates/BarBundle/Resources/views/index.html.twig: -------------------------------------------------------------------------------- 1 | {# Twig template #} 2 | -------------------------------------------------------------------------------- /src/Symfony/Bundle/TwigBundle/Tests/Fixtures/templates/Resources/AcmeBundle/views/layout.html.twig: -------------------------------------------------------------------------------- 1 | {# Twig template #} 2 | -------------------------------------------------------------------------------- /src/Symfony/Component/Console/Tests/Fixtures/input_argument_2.txt: -------------------------------------------------------------------------------- 1 | argument_name argument description 2 | -------------------------------------------------------------------------------- /src/Symfony/Component/DependencyInjection/Tests/Fixtures/directory/recurse/simple.yml: -------------------------------------------------------------------------------- 1 | parameters: 2 | yaml: yaml 3 | -------------------------------------------------------------------------------- /src/Symfony/Component/DependencyInjection/Tests/Fixtures/xml/nonvalid.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/Symfony/Component/DependencyInjection/Tests/Fixtures/yaml/bad_empty_instanceof.yml: -------------------------------------------------------------------------------- 1 | services: 2 | _instanceof: 3 | -------------------------------------------------------------------------------- /src/Symfony/Component/DependencyInjection/Tests/Fixtures/yaml/services7.yml: -------------------------------------------------------------------------------- 1 | services: 2 | foo: { class: BarClass } 3 | -------------------------------------------------------------------------------- /src/Symfony/Component/Routing/Tests/Fixtures/withdoctype.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/Symfony/Component/Translation/Tests/fixtures/resourcebundle/dat/en.txt: -------------------------------------------------------------------------------- 1 | en{ 2 | symfony{"Symfony is great"} 3 | } -------------------------------------------------------------------------------- /src/Symfony/Component/Translation/Tests/fixtures/resourcebundle/dat/fr.txt: -------------------------------------------------------------------------------- 1 | fr{ 2 | symfony{"Symfony est génial"} 3 | } -------------------------------------------------------------------------------- /src/Symfony/Bundle/FrameworkBundle/Tests/Functional/app/config/default.yml: -------------------------------------------------------------------------------- 1 | imports: 2 | - { resource: framework.yml } 3 | -------------------------------------------------------------------------------- /src/Symfony/Component/Console/Tests/Fixtures/input_definition_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "arguments": [], 3 | "options": [] 4 | } 5 | -------------------------------------------------------------------------------- /src/Symfony/Component/DependencyInjection/Tests/Fixtures/ini/nonvalid.ini: -------------------------------------------------------------------------------- 1 | {NOT AN INI FILE} 2 | {JUST A PLAIN TEXT FILE} 3 | -------------------------------------------------------------------------------- /src/Symfony/Component/DependencyInjection/Tests/Fixtures/ini/parameters.ini: -------------------------------------------------------------------------------- 1 | [parameters] 2 | foo = bar 3 | bar = %foo% 4 | -------------------------------------------------------------------------------- /src/Symfony/Component/DependencyInjection/Tests/Fixtures/ini/parameters1.ini: -------------------------------------------------------------------------------- 1 | [parameters] 2 | FOO = foo 3 | baz = baz 4 | -------------------------------------------------------------------------------- /src/Symfony/Component/DependencyInjection/Tests/Fixtures/ini/parameters2.ini: -------------------------------------------------------------------------------- 1 | [parameters] 2 | imported_from_ini = true 3 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/regions/bo_IN.json: -------------------------------------------------------------------------------- 1 | { 2 | "Version": "2.1.47.82", 3 | "Names": [] 4 | } 5 | -------------------------------------------------------------------------------- /src/Symfony/Component/Routing/Tests/Fixtures/OtherAnnotatedClasses/NoStartTagClass.php: -------------------------------------------------------------------------------- 1 | class NoStartTagClass 2 | { 3 | } 4 | -------------------------------------------------------------------------------- /src/Symfony/Component/Translation/Tests/fixtures/resources.php: -------------------------------------------------------------------------------- 1 | 'bar', 5 | ); 6 | -------------------------------------------------------------------------------- /src/Symfony/Component/WebLink/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | CHANGELOG 2 | ========= 3 | 4 | 3.3.0 5 | ----- 6 | 7 | * added the component 8 | -------------------------------------------------------------------------------- /src/Symfony/Bridge/PhpUnit/Tests/DeprecationErrorHandler/fake_vendor/composer/installed.json: -------------------------------------------------------------------------------- 1 | {"just here": "for the detection"} 2 | -------------------------------------------------------------------------------- /src/Symfony/Bundle/FrameworkBundle/Tests/DependencyInjection/Fixtures/TestBundle/Resources/config/serializer_mapping/files/foo.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Symfony/Bundle/FrameworkBundle/Tests/DependencyInjection/Fixtures/TestBundle/Resources/config/serializer_mapping/files/foo.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Symfony/Bundle/FrameworkBundle/Tests/DependencyInjection/Fixtures/TestBundle/Resources/config/validation_mapping/files/foo.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Symfony/Bundle/FrameworkBundle/Tests/DependencyInjection/Fixtures/TestBundle/Resources/config/validation_mapping/files/foo.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Symfony/Bundle/FrameworkBundle/Tests/DependencyInjection/Fixtures/TestBundle/Resources/config/validation_mapping/validation.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Symfony/Bundle/FrameworkBundle/Tests/DependencyInjection/Fixtures/TestBundle/Resources/config/validation_mapping/validation.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Symfony/Bundle/FrameworkBundle/Tests/DependencyInjection/Fixtures/translations/test_paths.en.yml: -------------------------------------------------------------------------------- 1 | custom: 2 | paths: test 3 | -------------------------------------------------------------------------------- /src/Symfony/Bundle/FrameworkBundle/Tests/DependencyInjection/Fixtures/yml/workflows_enabled.yml: -------------------------------------------------------------------------------- 1 | framework: 2 | workflows: ~ 3 | -------------------------------------------------------------------------------- /src/Symfony/Bundle/FrameworkBundle/Tests/Fixtures/Descriptor/callable_1.md: -------------------------------------------------------------------------------- 1 | 2 | - Type: `function` 3 | - Name: `array_key_exists` 4 | -------------------------------------------------------------------------------- /src/Symfony/Bundle/TwigBundle/Tests/DependencyInjection/Fixtures/templates/bundles/BarBundle/layout.html.twig: -------------------------------------------------------------------------------- 1 | This is a layout 2 | -------------------------------------------------------------------------------- /src/Symfony/Component/Console/Tests/Fixtures/input_option_3.txt: -------------------------------------------------------------------------------- 1 | -o, --option_name=OPTION_NAME option description 2 | -------------------------------------------------------------------------------- /src/Symfony/Component/DependencyInjection/Tests/Fixtures/directory/import/import.yml: -------------------------------------------------------------------------------- 1 | imports: 2 | - { resource: ../recurse/ } 3 | -------------------------------------------------------------------------------- /src/Symfony/Component/DependencyInjection/Tests/Fixtures/php/simple.php: -------------------------------------------------------------------------------- 1 | setParameter('foo', 'foo'); 4 | -------------------------------------------------------------------------------- /src/Symfony/Component/ErrorHandler/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | CHANGELOG 2 | ========= 3 | 4 | 4.4.0 5 | ----- 6 | 7 | * added the component 8 | -------------------------------------------------------------------------------- /src/Symfony/Component/ErrorRenderer/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | CHANGELOG 2 | ========= 3 | 4 | 4.4.0 5 | ----- 6 | 7 | * added the component 8 | -------------------------------------------------------------------------------- /src/Symfony/Component/Routing/Tests/Fixtures/defaults.yml: -------------------------------------------------------------------------------- 1 | defaults: 2 | path: /defaults 3 | locale: en 4 | format: html 5 | -------------------------------------------------------------------------------- /src/Symfony/Component/Routing/Tests/Fixtures/incomplete.yml: -------------------------------------------------------------------------------- 1 | blog_show: 2 | defaults: { _controller: MyBlogBundle:Blog:show } 3 | -------------------------------------------------------------------------------- /src/Symfony/Component/VarExporter/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | CHANGELOG 2 | ========= 3 | 4 | 4.2.0 5 | ----- 6 | 7 | * added the component 8 | -------------------------------------------------------------------------------- /src/Symfony/Component/Yaml/Tests/Fixtures/nonStringKeys.yml: -------------------------------------------------------------------------------- 1 | - booleanMappingKeys 2 | - numericMappingKeys 3 | - nullMappingKey 4 | -------------------------------------------------------------------------------- /src/Symfony/Bundle/FrameworkBundle/Resources/views/Form/repeated_row.html.php: -------------------------------------------------------------------------------- 1 | block($form, 'form_rows') ?> 2 | -------------------------------------------------------------------------------- /src/Symfony/Bundle/FrameworkBundle/Tests/DependencyInjection/Fixtures/TestBundle/Resources/config/serializer_mapping/serialization.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Symfony/Bundle/FrameworkBundle/Tests/DependencyInjection/Fixtures/TestBundle/Resources/config/serializer_mapping/serialization.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Symfony/Bundle/FrameworkBundle/Tests/DependencyInjection/Fixtures/yml/csrf_needs_session.yml: -------------------------------------------------------------------------------- 1 | framework: 2 | csrf_protection: ~ 3 | -------------------------------------------------------------------------------- /src/Symfony/Bundle/FrameworkBundle/Tests/DependencyInjection/Fixtures/yml/templating_disabled.yml: -------------------------------------------------------------------------------- 1 | framework: 2 | templating: false 3 | -------------------------------------------------------------------------------- /src/Symfony/Bundle/FrameworkBundle/Tests/Functional/app/RouterDebug/config.yml: -------------------------------------------------------------------------------- 1 | imports: 2 | - { resource: ../config/default.yml } 3 | -------------------------------------------------------------------------------- /src/Symfony/Bundle/SecurityBundle/Tests/Functional/app/FirewallEntryPoint/routing.yml: -------------------------------------------------------------------------------- 1 | secure_resource: 2 | path: /secure/resource 3 | -------------------------------------------------------------------------------- /src/Symfony/Component/Console/Tests/Fixtures/input_definition_2.txt: -------------------------------------------------------------------------------- 1 | Arguments: 2 | argument_name 3 | -------------------------------------------------------------------------------- /src/Symfony/Component/Console/Tests/Fixtures/input_definition_3.txt: -------------------------------------------------------------------------------- 1 | Options: 2 | -o, --option_name 3 | -------------------------------------------------------------------------------- /src/Symfony/Component/DependencyInjection/Tests/Fixtures/directory/simple.php: -------------------------------------------------------------------------------- 1 | setParameter('php', 'php'); 4 | -------------------------------------------------------------------------------- /src/Symfony/Component/DependencyInjection/Tests/Fixtures/ini/ini_with_wrong_ext.xml: -------------------------------------------------------------------------------- 1 | [parameters] 2 | with_wrong_ext = 'from ini' 3 | -------------------------------------------------------------------------------- /src/Symfony/Component/DependencyInjection/Tests/Fixtures/xml/withdoctype.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/Symfony/Component/DependencyInjection/Tests/Fixtures/yaml/services_underscore.yml: -------------------------------------------------------------------------------- 1 | services: 2 | _foo: 3 | class: Foo 4 | -------------------------------------------------------------------------------- /src/Symfony/Component/DependencyInjection/Tests/Fixtures/yaml/yaml_with_wrong_ext.ini: -------------------------------------------------------------------------------- 1 | parameters: 2 | with_wrong_ext: from yaml 3 | -------------------------------------------------------------------------------- /src/Symfony/Component/Routing/Tests/Fixtures/nonvalidkeys.yml: -------------------------------------------------------------------------------- 1 | someroute: 2 | resource: path/to/some.yml 3 | not_valid_key: test_ 4 | -------------------------------------------------------------------------------- /.composer/config.json: -------------------------------------------------------------------------------- 1 | { 2 | "config": { 3 | "preferred-install": { 4 | "*": "dist" 5 | } 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | phpunit.xml 4 | .php_cs.cache 5 | composer.phar 6 | package.tar 7 | /packages.json 8 | /.phpunit 9 | -------------------------------------------------------------------------------- /src/Symfony/Bundle/FrameworkBundle/Tests/DependencyInjection/Fixtures/yml/request.yml: -------------------------------------------------------------------------------- 1 | framework: 2 | request: 3 | formats: ~ 4 | -------------------------------------------------------------------------------- /src/Symfony/Bundle/FrameworkBundle/Tests/Fixtures/Descriptor/alias_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "service": "service_1", 3 | "public": true 4 | } 5 | -------------------------------------------------------------------------------- /src/Symfony/Bundle/FrameworkBundle/Tests/Fixtures/Descriptor/alias_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "service": ".service_2", 3 | "public": false 4 | } 5 | -------------------------------------------------------------------------------- /src/Symfony/Bundle/FrameworkBundle/Tests/Templating/Helper/Resources/Child/form_label.html.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/Symfony/Component/Debug/Tests/Fixtures/PEARClass.php: -------------------------------------------------------------------------------- 1 | 2 | widget($form) ?> 3 | 4 | -------------------------------------------------------------------------------- /src/Symfony/Bundle/FrameworkBundle/Tests/DependencyInjection/Fixtures/yml/esi_disabled.yml: -------------------------------------------------------------------------------- 1 | framework: 2 | esi: 3 | enabled: false 4 | -------------------------------------------------------------------------------- /src/Symfony/Bundle/FrameworkBundle/Tests/DependencyInjection/Fixtures/yml/profiler.yml: -------------------------------------------------------------------------------- 1 | framework: 2 | profiler: 3 | enabled: true 4 | -------------------------------------------------------------------------------- /src/Symfony/Bundle/FrameworkBundle/Tests/DependencyInjection/Fixtures/yml/session.yml: -------------------------------------------------------------------------------- 1 | framework: 2 | session: 3 | handler_id: null 4 | -------------------------------------------------------------------------------- /src/Symfony/Bundle/FrameworkBundle/Tests/DependencyInjection/Fixtures/yml/ssi_disabled.yml: -------------------------------------------------------------------------------- 1 | framework: 2 | ssi: 3 | enabled: false 4 | -------------------------------------------------------------------------------- /src/Symfony/Bundle/FrameworkBundle/Tests/DependencyInjection/Fixtures/yml/web_link.yml: -------------------------------------------------------------------------------- 1 | framework: 2 | web_link: 3 | enabled: true 4 | -------------------------------------------------------------------------------- /src/Symfony/Bundle/FrameworkBundle/Tests/Functional/app/AnnotatedController/config.yml: -------------------------------------------------------------------------------- 1 | imports: 2 | - { resource: ../config/default.yml } 3 | -------------------------------------------------------------------------------- /src/Symfony/Component/Console/Tests/Fixtures/input_option_6.txt: -------------------------------------------------------------------------------- 1 | -o|O, --option_name=OPTION_NAME option with multiple shortcuts 2 | -------------------------------------------------------------------------------- /src/Symfony/Component/DependencyInjection/Tests/Fixtures/yaml/anonymous_services_in_parameters.yml: -------------------------------------------------------------------------------- 1 | parameters: 2 | foo: [ !service { } ] 3 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Tests/Data/Bundle/Writer/Fixtures/en_nofallback.txt: -------------------------------------------------------------------------------- 1 | en_nofallback:table(nofallback){ 2 | Entry{"Value"} 3 | } 4 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Tests/Data/Bundle/Writer/Fixtures/rb.json: -------------------------------------------------------------------------------- 1 | { 2 | "Entry": { 3 | "NestedEntry": "Value" 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /src/Symfony/Component/Routing/Tests/Fixtures/directory_import/import.yml: -------------------------------------------------------------------------------- 1 | _directory: 2 | resource: "../directory" 3 | type: directory 4 | -------------------------------------------------------------------------------- /src/Symfony/Component/Routing/Tests/Fixtures/localized/imported-with-utf8.yml: -------------------------------------------------------------------------------- 1 | utf8_one: 2 | path: /one 3 | 4 | utf8_two: 5 | path: /two 6 | -------------------------------------------------------------------------------- /src/Symfony/Component/Routing/Tests/Fixtures/localized/importing-localized-route.yml: -------------------------------------------------------------------------------- 1 | --- 2 | i_need: 3 | resource: ./localized-route.yml 4 | -------------------------------------------------------------------------------- /src/Symfony/Component/Routing/Tests/Fixtures/localized/not-localized.yml: -------------------------------------------------------------------------------- 1 | --- 2 | not_localized: 3 | controller: string 4 | path: /here 5 | -------------------------------------------------------------------------------- /src/Symfony/Component/Translation/Tests/fixtures/missing-plurals.po: -------------------------------------------------------------------------------- 1 | msgid "foo" 2 | msgid_plural "foos" 3 | msgstr[3] "bars" 4 | msgstr[1] "bar" 5 | -------------------------------------------------------------------------------- /src/Symfony/Component/VarExporter/Tests/Fixtures/external-references.php: -------------------------------------------------------------------------------- 1 | block($form, 'choice_widget_options') ?> 2 | -------------------------------------------------------------------------------- /src/Symfony/Bundle/FrameworkBundle/Tests/DependencyInjection/Fixtures/yml/assets_disabled.yml: -------------------------------------------------------------------------------- 1 | framework: 2 | assets: 3 | enabled: false 4 | -------------------------------------------------------------------------------- /src/Symfony/Bundle/FrameworkBundle/Tests/DependencyInjection/Fixtures/yml/php_errors_log_level.yml: -------------------------------------------------------------------------------- 1 | framework: 2 | php_errors: 3 | log: 8 4 | -------------------------------------------------------------------------------- /src/Symfony/Bundle/FrameworkBundle/Tests/Fixtures/Descriptor/callable_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "function", 3 | "name": "array_key_exists" 4 | } 5 | -------------------------------------------------------------------------------- /src/Symfony/Bundle/FrameworkBundle/Tests/Fixtures/Descriptor/callable_6.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/Symfony/Bundle/SecurityBundle/Tests/Functional/app/LogoutAccess/routing.yml: -------------------------------------------------------------------------------- 1 | login: 2 | path: /login 3 | 4 | logout: 5 | path: /logout 6 | -------------------------------------------------------------------------------- /src/Symfony/Component/Console/Tests/Fixtures/input_argument_4.txt: -------------------------------------------------------------------------------- 1 | argument_name multiline 2 | argument description 3 | -------------------------------------------------------------------------------- /src/Symfony/Component/DependencyInjection/Tests/Fixtures/includes/foo_lazy.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/Symfony/Component/Config/Tests/Fixtures/Util/valid.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/Symfony/Component/Console/Tests/Fixtures/input_argument_1.md: -------------------------------------------------------------------------------- 1 | #### `argument_name` 2 | 3 | * Is required: yes 4 | * Is array: no 5 | * Default: `NULL` 6 | -------------------------------------------------------------------------------- /src/Symfony/Component/DependencyInjection/Tests/Fixtures/php/php_with_wrong_ext.yml: -------------------------------------------------------------------------------- 1 | setParameter('with_wrong_ext', 'from php'); 4 | -------------------------------------------------------------------------------- /src/Symfony/Component/DependencyInjection/Tests/Fixtures/yaml/services4_bad_import.yml: -------------------------------------------------------------------------------- 1 | imports: 2 | - { resource: foo_fake.yml, ignore_errors: true } 3 | -------------------------------------------------------------------------------- /src/Symfony/Component/ErrorHandler/Tests/Fixtures/PEARClass.php: -------------------------------------------------------------------------------- 1 | block($form, 'widget_container_attributes') ?> 2 | -------------------------------------------------------------------------------- /src/Symfony/Bundle/FrameworkBundle/Tests/DependencyInjection/Fixtures/php/default_config.php: -------------------------------------------------------------------------------- 1 | loadFromExtension('framework', []); 4 | -------------------------------------------------------------------------------- /src/Symfony/Bundle/FrameworkBundle/Tests/DependencyInjection/Fixtures/translations/domain.with.dots.en.yml: -------------------------------------------------------------------------------- 1 | domain: 2 | with: 3 | dots: It works! 4 | -------------------------------------------------------------------------------- /src/Symfony/Bundle/FrameworkBundle/Tests/DependencyInjection/Fixtures/yml/serializer_disabled.yml: -------------------------------------------------------------------------------- 1 | framework: 2 | serializer: 3 | enabled: false 4 | -------------------------------------------------------------------------------- /src/Symfony/Bundle/FrameworkBundle/Tests/Fixtures/Descriptor/alias_1.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/Symfony/Bundle/FrameworkBundle/Tests/Fixtures/Descriptor/callable_2.txt: -------------------------------------------------------------------------------- 1 | Symfony\Bundle\FrameworkBundle\Tests\Console\Descriptor\CallableClass::staticMethod() -------------------------------------------------------------------------------- /src/Symfony/Bundle/FrameworkBundle/Tests/Fixtures/Descriptor/callable_4.txt: -------------------------------------------------------------------------------- 1 | Symfony\Bundle\FrameworkBundle\Tests\Console\Descriptor\CallableClass::staticMethod() -------------------------------------------------------------------------------- /src/Symfony/Bundle/FrameworkBundle/Tests/Functional/app/Fragment/routing.yml: -------------------------------------------------------------------------------- 1 | _fragmenttest_bundle: 2 | resource: '@TestBundle/Resources/config/routing.yml' 3 | -------------------------------------------------------------------------------- /src/Symfony/Bundle/FrameworkBundle/Tests/Functional/app/Profiler/routing.yml: -------------------------------------------------------------------------------- 1 | _sessiontest_bundle: 2 | resource: '@TestBundle/Resources/config/routing.yml' 3 | -------------------------------------------------------------------------------- /src/Symfony/Bundle/FrameworkBundle/Tests/Functional/app/Session/routing.yml: -------------------------------------------------------------------------------- 1 | _sessiontest_bundle: 2 | resource: '@TestBundle/Resources/config/routing.yml' 3 | -------------------------------------------------------------------------------- /src/Symfony/Component/DependencyInjection/Tests/Fixtures/yaml/bad_calls.yml: -------------------------------------------------------------------------------- 1 | services: 2 | method_call1: 3 | class: FooClass 4 | calls: foo 5 | -------------------------------------------------------------------------------- /src/Symfony/Component/DependencyInjection/Tests/Fixtures/yaml/services13.yml: -------------------------------------------------------------------------------- 1 | # used to test imports in XML 2 | parameters: 3 | imported_from_yaml: true 4 | -------------------------------------------------------------------------------- /src/Symfony/Component/DependencyInjection/Tests/Fixtures/yaml/services3.yml: -------------------------------------------------------------------------------- 1 | parameters: 2 | foo: foo 3 | values: 4 | - true 5 | - false 6 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/languages/en_IN.json: -------------------------------------------------------------------------------- 1 | { 2 | "Version": "2.1.49.14", 3 | "Names": { 4 | "bn": "Bengali" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/languages/en_NZ.json: -------------------------------------------------------------------------------- 1 | { 2 | "Version": "2.1.47.86", 3 | "Names": { 4 | "mi": "Māori" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/languages/kw.json: -------------------------------------------------------------------------------- 1 | { 2 | "Version": "2.1.48.56", 3 | "Names": { 4 | "kw": "kernewek" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/languages/xh.json: -------------------------------------------------------------------------------- 1 | { 2 | "Version": "2.1.49.82", 3 | "Names": { 4 | "xh": "isiXhosa" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/regions/pa_Arab.json: -------------------------------------------------------------------------------- 1 | { 2 | "Version": "2.1.47.82", 3 | "Names": { 4 | "PK": "پاکستان" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/regions/ro_MD.json: -------------------------------------------------------------------------------- 1 | { 2 | "Version": "2.1.48.43", 3 | "Names": { 4 | "MM": "Myanmar" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/scripts/az_Cyrl.json: -------------------------------------------------------------------------------- 1 | { 2 | "Version": "2.1.47.82", 3 | "Names": { 4 | "Cyrl": "Кирил" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/scripts/en_GB.json: -------------------------------------------------------------------------------- 1 | { 2 | "Version": "2.1.47.86", 3 | "Names": { 4 | "Thai": "Thai" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/scripts/fa_AF.json: -------------------------------------------------------------------------------- 1 | { 2 | "Version": "2.1.47.86", 3 | "Names": { 4 | "Mong": "مغلی" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/scripts/uz_Arab.json: -------------------------------------------------------------------------------- 1 | { 2 | "Version": "2.1.47.82", 3 | "Names": { 4 | "Arab": "عربی" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Tests/Data/Bundle/Writer/Fixtures/escaped.txt: -------------------------------------------------------------------------------- 1 | escaped{ 2 | "EntryWith:Colon"{"Value"} 3 | "Entry With Spaces"{"Value"} 4 | } 5 | -------------------------------------------------------------------------------- /src/Symfony/Component/Routing/Tests/Fixtures/localized/utf8.yml: -------------------------------------------------------------------------------- 1 | some_route: 2 | path: / 3 | 4 | some_utf8_route: 5 | path: /utf8 6 | utf8: true 7 | -------------------------------------------------------------------------------- /src/Symfony/Component/Routing/Tests/Fixtures/requirements_without_placeholder_name.yml: -------------------------------------------------------------------------------- 1 | foo: 2 | path: '/{foo}' 3 | requirements: 4 | - '\d+' 5 | -------------------------------------------------------------------------------- /src/Symfony/Bundle/FrameworkBundle/Resources/views/Form/form_enctype.html.php: -------------------------------------------------------------------------------- 1 | vars['multipart']): ?>enctype="multipart/form-data" 2 | -------------------------------------------------------------------------------- /src/Symfony/Bundle/FrameworkBundle/Tests/DependencyInjection/Fixtures/yml/templating_no_assets.yml: -------------------------------------------------------------------------------- 1 | framework: 2 | templating: 3 | engines: [php, twig] 4 | -------------------------------------------------------------------------------- /src/Symfony/Bundle/FrameworkBundle/Tests/DependencyInjection/Fixtures/yml/translator_fallbacks.yml: -------------------------------------------------------------------------------- 1 | framework: 2 | translator: 3 | fallbacks: [en, fr] 4 | -------------------------------------------------------------------------------- /src/Symfony/Bundle/FrameworkBundle/Tests/Fixtures/Descriptor/alias_2.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/Symfony/Bundle/FrameworkBundle/Tests/Fixtures/Descriptor/callable_from_callable.txt: -------------------------------------------------------------------------------- 1 | Symfony\Bundle\FrameworkBundle\Tests\Console\Descriptor\CallableClass::__invoke() -------------------------------------------------------------------------------- /src/Symfony/Component/Console/Tests/Fixtures/Style/SymfonyStyle/output/output_3.txt: -------------------------------------------------------------------------------- 1 | 2 | First title 3 | =========== 4 | 5 | Second title 6 | ============ 7 | 8 | -------------------------------------------------------------------------------- /src/Symfony/Component/Console/Tests/Fixtures/input_argument_3.txt: -------------------------------------------------------------------------------- 1 | argument_name argument description [default: "default_value"] 2 | -------------------------------------------------------------------------------- /src/Symfony/Component/Debug/Tests/Fixtures/casemismatch.php: -------------------------------------------------------------------------------- 1 | parent 3 | {% endblock form_label %} 4 | -------------------------------------------------------------------------------- /src/Symfony/Bundle/FrameworkBundle/Tests/Fixtures/Descriptor/parameter.xml: -------------------------------------------------------------------------------- 1 | 2 | symfony 3 | -------------------------------------------------------------------------------- /src/Symfony/Bundle/SecurityBundle/Tests/Functional/app/LogoutWithoutSessionInvalidation/routing.yml: -------------------------------------------------------------------------------- 1 | login: 2 | path: /login 3 | 4 | logout: 5 | path: /logout 6 | -------------------------------------------------------------------------------- /src/Symfony/Component/Console/Resources/bin/hiddeninput.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tweichart/symfony/4.4/src/Symfony/Component/Console/Resources/bin/hiddeninput.exe -------------------------------------------------------------------------------- /src/Symfony/Component/Debug/Tests/Fixtures2/RequiredTwice.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'NestedEntry' => 'Value', 6 | ], 7 | ]; 8 | -------------------------------------------------------------------------------- /src/Symfony/Component/Mime/Tests/Fixtures/mimetypes/test.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tweichart/symfony/4.4/src/Symfony/Component/Mime/Tests/Fixtures/mimetypes/test.gif -------------------------------------------------------------------------------- /src/Symfony/Component/Routing/Tests/Fixtures/imported-with-defaults.yml: -------------------------------------------------------------------------------- 1 | one: 2 | path: /one 3 | 4 | two: 5 | path: /two 6 | defaults: 7 | specific: imported 8 | -------------------------------------------------------------------------------- /src/Symfony/Component/Translation/Tests/fixtures/plurals.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tweichart/symfony/4.4/src/Symfony/Component/Translation/Tests/fixtures/plurals.mo -------------------------------------------------------------------------------- /src/Symfony/Component/Translation/Tests/fixtures/resources.csv: -------------------------------------------------------------------------------- 1 | "foo"; "bar" 2 | #"bar"; "foo" 3 | "incorrect"; "number"; "columns"; "will"; "be"; "ignored" 4 | "incorrect" -------------------------------------------------------------------------------- /src/Symfony/Bundle/FrameworkBundle/Tests/DependencyInjection/Fixtures/yml/php_errors_enabled.yml: -------------------------------------------------------------------------------- 1 | framework: 2 | php_errors: 3 | log: true 4 | throw: true 5 | -------------------------------------------------------------------------------- /src/Symfony/Bundle/FrameworkBundle/Tests/DependencyInjection/Fixtures/yml/validation_strict_email_disabled.yml: -------------------------------------------------------------------------------- 1 | framework: 2 | validation: 3 | strict_email: false 4 | -------------------------------------------------------------------------------- /src/Symfony/Bundle/FrameworkBundle/Tests/DependencyInjection/Fixtures/yml/validation_strict_email_enabled.yml: -------------------------------------------------------------------------------- 1 | framework: 2 | validation: 3 | strict_email: true 4 | -------------------------------------------------------------------------------- /src/Symfony/Bundle/FrameworkBundle/Tests/Fixtures/Descriptor/callable_1.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/Symfony/Bundle/FrameworkBundle/Tests/Fixtures/Descriptor/callable_5.txt: -------------------------------------------------------------------------------- 1 | Symfony\Bundle\FrameworkBundle\Tests\Console\Descriptor\ExtendedCallableClass::parent::staticMethod() -------------------------------------------------------------------------------- /src/Symfony/Component/Console/Tests/Fixtures/input_argument_with_default_inf_value.txt: -------------------------------------------------------------------------------- 1 | argument_name argument description [default: INF] 2 | -------------------------------------------------------------------------------- /src/Symfony/Component/ErrorHandler/Tests/Fixtures/notPsr0Bis.php: -------------------------------------------------------------------------------- 1 | {{ global }}child 3 | {% endblock form_label %} 4 | -------------------------------------------------------------------------------- /src/Symfony/Bundle/FrameworkBundle/Resources/views/Form/tel_widget.html.php: -------------------------------------------------------------------------------- 1 | block($form, 'form_widget_simple', ['type' => isset($type) ? $type : 'tel']); 2 | -------------------------------------------------------------------------------- /src/Symfony/Bundle/FrameworkBundle/Tests/DependencyInjection/Fixtures/yml/csrf.yml: -------------------------------------------------------------------------------- 1 | framework: 2 | secret: s3cr3t 3 | csrf_protection: ~ 4 | form: ~ 5 | session: ~ 6 | -------------------------------------------------------------------------------- /src/Symfony/Bundle/FrameworkBundle/Tests/DependencyInjection/Fixtures/yml/form_no_csrf.yml: -------------------------------------------------------------------------------- 1 | framework: 2 | form: 3 | csrf_protection: 4 | enabled: false 5 | -------------------------------------------------------------------------------- /src/Symfony/Bundle/FrameworkBundle/Tests/DependencyInjection/Fixtures/yml/validation_translation_domain.yml: -------------------------------------------------------------------------------- 1 | framework: 2 | validation: 3 | translation_domain: messages 4 | -------------------------------------------------------------------------------- /src/Symfony/Bundle/FrameworkBundle/Tests/Fixtures/Descriptor/alias_1.txt: -------------------------------------------------------------------------------- 1 | 2 |  // This service is a public alias for the service service_1 3 | 4 | -------------------------------------------------------------------------------- /src/Symfony/Bundle/SecurityBundle/Tests/Functional/app/CsrfFormLogin/routing.yml: -------------------------------------------------------------------------------- 1 | _csrf_form_login_bundle: 2 | resource: '@CsrfFormLoginBundle/Resources/config/routing.yml' 3 | -------------------------------------------------------------------------------- /src/Symfony/Component/Console/Tests/Fixtures/Style/SymfonyStyle/output/output_7.txt: -------------------------------------------------------------------------------- 1 | 2 | Title 3 | ===== 4 | 5 | Duis aute irure dolor in reprehenderit in voluptate velit esse 6 | -------------------------------------------------------------------------------- /src/Symfony/Component/Console/Tests/Fixtures/input_argument_with_style.txt: -------------------------------------------------------------------------------- 1 | argument_name argument description [default: "\style\"] 2 | -------------------------------------------------------------------------------- /src/Symfony/Component/Console/Tests/Fixtures/input_definition_1.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /src/Symfony/Component/Console/Tests/Fixtures/input_definition_2.md: -------------------------------------------------------------------------------- 1 | ### Arguments 2 | 3 | #### `argument_name` 4 | 5 | * Is required: yes 6 | * Is array: no 7 | * Default: `NULL` 8 | -------------------------------------------------------------------------------- /src/Symfony/Component/Console/Tests/Fixtures/input_option_2.txt: -------------------------------------------------------------------------------- 1 | -o, --option_name[=OPTION_NAME] option description [default: "default_value"] 2 | -------------------------------------------------------------------------------- /src/Symfony/Component/Console/Tests/Fixtures/input_option_4.txt: -------------------------------------------------------------------------------- 1 | -o, --option_name[=OPTION_NAME] option description (multiple values allowed) 2 | -------------------------------------------------------------------------------- /src/Symfony/Component/Console/Tests/Fixtures/input_option_5.txt: -------------------------------------------------------------------------------- 1 | -o, --option_name=OPTION_NAME multiline 2 | option description 3 | -------------------------------------------------------------------------------- /src/Symfony/Component/Debug/Tests/Fixtures/psr4/Psr4CaseMismatch.php: -------------------------------------------------------------------------------- 1 | true, 5 | 1 => true, 6 | 2 => true, 7 | true, 8 | ]; 9 | -------------------------------------------------------------------------------- /src/Symfony/Bundle/FrameworkBundle/Resources/views/Form/color_widget.html.php: -------------------------------------------------------------------------------- 1 | block($form, 'form_widget_simple', ['type' => isset($type) ? $type : 'color']); 2 | -------------------------------------------------------------------------------- /src/Symfony/Bundle/FrameworkBundle/Resources/views/Form/range_widget.html.php: -------------------------------------------------------------------------------- 1 | block($form, 'form_widget_simple', ['type' => isset($type) ? $type : 'range']); 2 | -------------------------------------------------------------------------------- /src/Symfony/Bundle/FrameworkBundle/Resources/views/Form/reset_widget.html.php: -------------------------------------------------------------------------------- 1 | block($form, 'button_widget', ['type' => isset($type) ? $type : 'reset']) ?> 2 | -------------------------------------------------------------------------------- /src/Symfony/Bundle/FrameworkBundle/Resources/views/Form/submit_widget.html.php: -------------------------------------------------------------------------------- 1 | block($form, 'button_widget', ['type' => isset($type) ? $type : 'submit']) ?> 2 | -------------------------------------------------------------------------------- /src/Symfony/Bundle/FrameworkBundle/Resources/views/Form/url_widget.html.php: -------------------------------------------------------------------------------- 1 | block($form, 'form_widget_simple', ['type' => isset($type) ? $type : 'url']) ?> 2 | -------------------------------------------------------------------------------- /src/Symfony/Bundle/FrameworkBundle/Tests/DependencyInjection/Fixtures/yml/serializer_legacy_cache.yml: -------------------------------------------------------------------------------- 1 | framework: 2 | serializer: 3 | enabled: true 4 | cache: foo 5 | -------------------------------------------------------------------------------- /src/Symfony/Bundle/FrameworkBundle/Tests/DependencyInjection/Fixtures/yml/validation_email_validation_mode.yml: -------------------------------------------------------------------------------- 1 | framework: 2 | validation: 3 | email_validation_mode: html5 4 | -------------------------------------------------------------------------------- /src/Symfony/Bundle/FrameworkBundle/Tests/Fixtures/BackslashClass.php: -------------------------------------------------------------------------------- 1 | 2 | widget($form) ?> 3 | 4 | -------------------------------------------------------------------------------- /src/Symfony/Bundle/WebServerBundle/Tests/DependencyInjection/composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "test-composer.json", 3 | "extra": { 4 | "public-dir": "test" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/Symfony/Component/Config/Tests/Fixtures/BadParent.php: -------------------------------------------------------------------------------- 1 | block($form, 'form_widget_simple', ['type' => isset($type) ? $type : 'email']) ?> 2 | -------------------------------------------------------------------------------- /src/Symfony/Bundle/FrameworkBundle/Resources/views/Form/hidden_widget.html.php: -------------------------------------------------------------------------------- 1 | block($form, 'form_widget_simple', ['type' => isset($type) ? $type : 'hidden']) ?> 2 | -------------------------------------------------------------------------------- /src/Symfony/Bundle/FrameworkBundle/Resources/views/Form/integer_widget.html.php: -------------------------------------------------------------------------------- 1 | block($form, 'form_widget_simple', ['type' => isset($type) ? $type : 'number']) ?> 2 | -------------------------------------------------------------------------------- /src/Symfony/Bundle/FrameworkBundle/Resources/views/Form/number_widget.html.php: -------------------------------------------------------------------------------- 1 | block($form, 'form_widget_simple', ['type' => isset($type) ? $type : 'text']) ?> 2 | -------------------------------------------------------------------------------- /src/Symfony/Bundle/FrameworkBundle/Resources/views/Form/search_widget.html.php: -------------------------------------------------------------------------------- 1 | block($form, 'form_widget_simple', ['type' => isset($type) ? $type : 'search']) ?> 2 | -------------------------------------------------------------------------------- /src/Symfony/Bundle/FrameworkBundle/Tests/DependencyInjection/Fixtures/yml/session_savepath.yml: -------------------------------------------------------------------------------- 1 | framework: 2 | session: 3 | handler_id: null 4 | save_path: /some/path 5 | -------------------------------------------------------------------------------- /src/Symfony/Bundle/FrameworkBundle/Tests/DependencyInjection/Fixtures/yml/templating_php_assets_disabled.yml: -------------------------------------------------------------------------------- 1 | framework: 2 | assets: false 3 | templating: 4 | engines: [php] 5 | -------------------------------------------------------------------------------- /src/Symfony/Component/Console/Tests/Fixtures/input_argument_2.md: -------------------------------------------------------------------------------- 1 | #### `argument_name` 2 | 3 | argument description 4 | 5 | * Is required: no 6 | * Is array: yes 7 | * Default: `array ()` 8 | -------------------------------------------------------------------------------- /src/Symfony/Component/Console/Tests/Fixtures/input_option_1.md: -------------------------------------------------------------------------------- 1 | #### `--option_name|-o` 2 | 3 | * Accept value: no 4 | * Is value required: no 5 | * Is multiple: no 6 | * Default: `false` 7 | -------------------------------------------------------------------------------- /src/Symfony/Component/Console/Tests/Fixtures/input_option_with_default_inf_value.txt: -------------------------------------------------------------------------------- 1 | -o, --option_name[=OPTION_NAME] option description [default: INF] 2 | -------------------------------------------------------------------------------- /src/Symfony/Component/Console/Tests/Fixtures/input_option_with_style.txt: -------------------------------------------------------------------------------- 1 | -o, --option_name=OPTION_NAME option description [default: "\style\"] 2 | -------------------------------------------------------------------------------- /src/Symfony/Component/DependencyInjection/Tests/Fixtures/yaml/bar/services.yml: -------------------------------------------------------------------------------- 1 | services: 2 | AppBundle\Foo: 3 | arguments: 4 | - !service {class: AppBundle\Bar } 5 | -------------------------------------------------------------------------------- /src/Symfony/Component/DependencyInjection/Tests/Fixtures/yaml/foo/services.yml: -------------------------------------------------------------------------------- 1 | services: 2 | AppBundle\Hello: 3 | arguments: 4 | - !service {class: AppBundle\World} 5 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/scripts/en_AU.json: -------------------------------------------------------------------------------- 1 | { 2 | "Version": "2.1.48.43", 3 | "Names": { 4 | "Beng": "Bengali", 5 | "Thai": "Thai" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/scripts/en_IN.json: -------------------------------------------------------------------------------- 1 | { 2 | "Version": "2.1.49.14", 3 | "Names": { 4 | "Beng": "Bengali", 5 | "Orya": "Oriya" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/scripts/es_US.json: -------------------------------------------------------------------------------- 1 | { 2 | "Version": "2.1.47.86", 3 | "Names": { 4 | "Hanb": "hanb", 5 | "Mlym": "malayálam" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Symfony/Component/Translation/Tests/fixtures/empty-translation.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tweichart/symfony/4.4/src/Symfony/Component/Translation/Tests/fixtures/empty-translation.mo -------------------------------------------------------------------------------- /src/Symfony/Component/VarExporter/Tests/Fixtures/multiline-string.php: -------------------------------------------------------------------------------- 1 | 'B'."\r" 6 | .'C'."\n" 7 | ."\n", 8 | ]; 9 | -------------------------------------------------------------------------------- /src/Symfony/Bridge/PhpUnit/Tests/DeprecationErrorHandler/deprecation.phar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tweichart/symfony/4.4/src/Symfony/Bridge/PhpUnit/Tests/DeprecationErrorHandler/deprecation.phar -------------------------------------------------------------------------------- /src/Symfony/Bundle/FrameworkBundle/Resources/views/Form/money_widget.html.php: -------------------------------------------------------------------------------- 1 | formEncodeCurrency($money_pattern, $view['form']->block($form, 'form_widget_simple')) ?> 2 | -------------------------------------------------------------------------------- /src/Symfony/Bundle/FrameworkBundle/Resources/views/Form/password_widget.html.php: -------------------------------------------------------------------------------- 1 | block($form, 'form_widget_simple', ['type' => isset($type) ? $type : 'password']) ?> 2 | -------------------------------------------------------------------------------- /src/Symfony/Bundle/FrameworkBundle/Tests/DependencyInjection/Fixtures/php/workflows_enabled.php: -------------------------------------------------------------------------------- 1 | loadFromExtension('framework', [ 4 | 'workflows' => null, 5 | ]); 6 | -------------------------------------------------------------------------------- /src/Symfony/Bundle/FrameworkBundle/Tests/DependencyInjection/Fixtures/yml/session_cookie_secure_auto.yml: -------------------------------------------------------------------------------- 1 | framework: 2 | session: 3 | handler_id: ~ 4 | cookie_secure: auto 5 | -------------------------------------------------------------------------------- /src/Symfony/Bundle/FrameworkBundle/Tests/DependencyInjection/Fixtures/yml/templating_php_translator_enabled.yml: -------------------------------------------------------------------------------- 1 | framework: 2 | translator: true 3 | templating: 4 | engines: [php] 5 | -------------------------------------------------------------------------------- /src/Symfony/Bundle/FrameworkBundle/Tests/Fixtures/Messenger/BarMessage.php: -------------------------------------------------------------------------------- 1 | 4 | How are you?: 5 | > 6 | Where do you come from?: 7 | > 8 | -------------------------------------------------------------------------------- /src/Symfony/Component/Console/Tests/Fixtures/input_argument_3.md: -------------------------------------------------------------------------------- 1 | #### `argument_name` 2 | 3 | argument description 4 | 5 | * Is required: no 6 | * Is array: no 7 | * Default: `'default_value'` 8 | -------------------------------------------------------------------------------- /src/Symfony/Component/Debug/Tests/Fixtures/ClassAlias.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | widget($form); ?> 5 | 6 | 7 | -------------------------------------------------------------------------------- /src/Symfony/Bundle/FrameworkBundle/Tests/DependencyInjection/Fixtures/php/templating_disabled.php: -------------------------------------------------------------------------------- 1 | loadFromExtension('framework', [ 4 | 'templating' => false, 5 | ]); 6 | -------------------------------------------------------------------------------- /src/Symfony/Bundle/FrameworkBundle/Tests/DependencyInjection/Fixtures/php/web_link.php: -------------------------------------------------------------------------------- 1 | loadFromExtension('framework', [ 4 | 'web_link' => ['enabled' => true], 5 | ]); 6 | -------------------------------------------------------------------------------- /src/Symfony/Bundle/FrameworkBundle/Tests/DependencyInjection/Fixtures/yml/templating_php_translator_disabled.yml: -------------------------------------------------------------------------------- 1 | framework: 2 | translator: false 3 | templating: 4 | engines: [php] 5 | -------------------------------------------------------------------------------- /src/Symfony/Bundle/FrameworkBundle/Tests/Fixtures/Descriptor/array_parameter.md: -------------------------------------------------------------------------------- 1 | twig.form.resources 2 | =================== 3 | 4 | ["bootstrap_3_horizontal_layout.html.twig","bootstrap_3_layo... 5 | -------------------------------------------------------------------------------- /src/Symfony/Bundle/FrameworkBundle/Tests/Fixtures/WarmedClass.php: -------------------------------------------------------------------------------- 1 | 2 | rest($form) ?> 3 | 4 | 5 | -------------------------------------------------------------------------------- /src/Symfony/Bundle/FrameworkBundle/Resources/views/Form/textarea_widget.html.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/Symfony/Bundle/FrameworkBundle/Tests/Fixtures/Descriptor/callable_3.md: -------------------------------------------------------------------------------- 1 | 2 | - Type: `function` 3 | - Name: `method` 4 | - Class: `Symfony\Bundle\FrameworkBundle\Tests\Console\Descriptor\CallableClass` 5 | -------------------------------------------------------------------------------- /src/Symfony/Bundle/FrameworkBundle/Tests/Fixtures/Descriptor/callable_7.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "object", 3 | "name": "Symfony\\Bundle\\FrameworkBundle\\Tests\\Console\\Descriptor\\CallableClass" 4 | } 5 | -------------------------------------------------------------------------------- /src/Symfony/Bundle/FrameworkBundle/Tests/Fixtures/TemplatePathsCache/templates.php: -------------------------------------------------------------------------------- 1 | __DIR__.'/../path/to/template.html.twig', 3 | ); 4 | -------------------------------------------------------------------------------- /src/Symfony/Component/Console/Tests/Fixtures/input_argument_with_default_inf_value.md: -------------------------------------------------------------------------------- 1 | #### `argument_name` 2 | 3 | argument description 4 | 5 | * Is required: no 6 | * Is array: no 7 | * Default: `INF` 8 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/regions/xh.json: -------------------------------------------------------------------------------- 1 | { 2 | "Version": "2.1.49.82", 3 | "Names": { 4 | "MK": "uMntla Macedonia", 5 | "ZA": "eMzantsi Afrika" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Symfony/Component/Routing/Tests/Fixtures/localized/missing-locale-in-importer.yml: -------------------------------------------------------------------------------- 1 | --- 2 | importing_with_missing_prefix: 3 | resource: ./localized-route.yml 4 | prefix: 5 | nl: /prefix 6 | -------------------------------------------------------------------------------- /src/Symfony/Component/Validator/Tests/Constraints/Fixtures/test_corrupted.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tweichart/symfony/4.4/src/Symfony/Component/Validator/Tests/Constraints/Fixtures/test_corrupted.gif -------------------------------------------------------------------------------- /src/Symfony/Component/Validator/Tests/Constraints/Fixtures/test_landscape.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tweichart/symfony/4.4/src/Symfony/Component/Validator/Tests/Constraints/Fixtures/test_landscape.gif -------------------------------------------------------------------------------- /src/Symfony/Component/Validator/Tests/Constraints/Fixtures/test_portrait.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tweichart/symfony/4.4/src/Symfony/Component/Validator/Tests/Constraints/Fixtures/test_portrait.gif -------------------------------------------------------------------------------- /src/Symfony/Component/Yaml/Tests/Fixtures/nullMappingKey.yml: -------------------------------------------------------------------------------- 1 | --- %YAML:1.0 2 | test: Miscellaneous 3 | spec: 2.21 4 | yaml: | 5 | null: ~ 6 | php: | 7 | [ 8 | 'null' => null, 9 | ] 10 | -------------------------------------------------------------------------------- /src/Symfony/Bridge/PhpUnit/Tests/DeprecationErrorHandler/fake_vendor/autoload.php: -------------------------------------------------------------------------------- 1 | start($form) ?> 2 | widget($form) ?> 3 | end($form) ?> 4 | -------------------------------------------------------------------------------- /src/Symfony/Bundle/FrameworkBundle/Tests/Functional/app/AutowiringTypes/no_annotations_cache.yml: -------------------------------------------------------------------------------- 1 | imports: 2 | - { resource: config.yml } 3 | 4 | framework: 5 | annotations: 6 | cache: none 7 | -------------------------------------------------------------------------------- /src/Symfony/Component/DependencyInjection/Tests/Fixtures/includes/HotPath/C2.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | widget($form); ?> 4 | 5 | 6 | -------------------------------------------------------------------------------- /src/Symfony/Bundle/FrameworkBundle/Tests/Fixtures/Validation/Author.php: -------------------------------------------------------------------------------- 1 | Arguments: 2 | argument_name 3 | 4 | Options: 5 | -o, --option_name 6 | -------------------------------------------------------------------------------- /src/Symfony/Component/Debug/Tests/Fixtures/InternalTrait.php: -------------------------------------------------------------------------------- 1 | loadFromExtension('framework', [ 4 | 'request' => [ 5 | 'formats' => [], 6 | ], 7 | ]); 8 | -------------------------------------------------------------------------------- /src/Symfony/Bundle/FrameworkBundle/Tests/Fixtures/Descriptor/callable_from_callable.md: -------------------------------------------------------------------------------- 1 | 2 | - Type: `closure` 3 | - Name: `__invoke` 4 | - Class: `Symfony\Bundle\FrameworkBundle\Tests\Console\Descriptor\CallableClass` 5 | -------------------------------------------------------------------------------- /src/Symfony/Bundle/FrameworkBundle/Tests/Fixtures/templates.php: -------------------------------------------------------------------------------- 1 | __DIR__.'/../Fixtures/Resources/views/this.is.a.template.format.engine', 5 | ]; 6 | -------------------------------------------------------------------------------- /src/Symfony/Bundle/FrameworkBundle/Tests/Functional/app/TestServiceContainer/config.yml: -------------------------------------------------------------------------------- 1 | imports: 2 | - { resource: ../config/default.yml } 3 | - { resource: services.yml } 4 | 5 | framework: 6 | test: true 7 | -------------------------------------------------------------------------------- /src/Symfony/Component/Console/Tests/Fixtures/input_option_3.md: -------------------------------------------------------------------------------- 1 | #### `--option_name|-o` 2 | 3 | option description 4 | 5 | * Accept value: yes 6 | * Is value required: yes 7 | * Is multiple: no 8 | * Default: `NULL` 9 | -------------------------------------------------------------------------------- /src/Symfony/Component/Debug/Tests/Fixtures/NonDeprecatedInterface.php: -------------------------------------------------------------------------------- 1 | loadFromExtension('framework', [ 4 | 'esi' => [ 5 | 'enabled' => false, 6 | ], 7 | ]); 8 | -------------------------------------------------------------------------------- /src/Symfony/Bundle/FrameworkBundle/Tests/DependencyInjection/Fixtures/php/profiler.php: -------------------------------------------------------------------------------- 1 | loadFromExtension('framework', [ 4 | 'profiler' => [ 5 | 'enabled' => true, 6 | ], 7 | ]); 8 | -------------------------------------------------------------------------------- /src/Symfony/Bundle/FrameworkBundle/Tests/DependencyInjection/Fixtures/php/session.php: -------------------------------------------------------------------------------- 1 | loadFromExtension('framework', [ 4 | 'session' => [ 5 | 'handler_id' => null, 6 | ], 7 | ]); 8 | -------------------------------------------------------------------------------- /src/Symfony/Bundle/FrameworkBundle/Tests/DependencyInjection/Fixtures/php/ssi_disabled.php: -------------------------------------------------------------------------------- 1 | loadFromExtension('framework', [ 4 | 'ssi' => [ 5 | 'enabled' => false, 6 | ], 7 | ]); 8 | -------------------------------------------------------------------------------- /src/Symfony/Bundle/FrameworkBundle/Tests/DependencyInjection/Fixtures/yml/validation_annotations.yml: -------------------------------------------------------------------------------- 1 | framework: 2 | secret: s3cr3t 3 | validation: 4 | enabled: true 5 | enable_annotations: true 6 | -------------------------------------------------------------------------------- /src/Symfony/Bundle/FrameworkBundle/Tests/DependencyInjection/Fixtures/yml/validation_no_static_method.yml: -------------------------------------------------------------------------------- 1 | framework: 2 | secret: s3cr3t 3 | validation: 4 | enabled: true 5 | static_method: false 6 | -------------------------------------------------------------------------------- /src/Symfony/Bundle/FrameworkBundle/Tests/DependencyInjection/Fixtures/yml/validation_strict_email_and_validation_mode.yml: -------------------------------------------------------------------------------- 1 | framework: 2 | validation: 3 | strict_email: true 4 | email_validation_mode: html5 5 | -------------------------------------------------------------------------------- /src/Symfony/Bundle/FrameworkBundle/Tests/Fixtures/Descriptor/callable_7.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/Symfony/Bundle/FrameworkBundle/Tests/Fixtures/Serialization/Author.php: -------------------------------------------------------------------------------- 1 | loadFromExtension('framework', [ 4 | 'assets' => [ 5 | 'enabled' => false, 6 | ], 7 | ]); 8 | -------------------------------------------------------------------------------- /src/Symfony/Bundle/FrameworkBundle/Tests/DependencyInjection/Fixtures/php/php_errors_log_level.php: -------------------------------------------------------------------------------- 1 | loadFromExtension('framework', [ 4 | 'php_errors' => [ 5 | 'log' => 8, 6 | ], 7 | ]); 8 | -------------------------------------------------------------------------------- /src/Symfony/Bundle/FrameworkBundle/Tests/Fixtures/Descriptor/callable_2.md: -------------------------------------------------------------------------------- 1 | 2 | - Type: `function` 3 | - Name: `staticMethod` 4 | - Class: `Symfony\Bundle\FrameworkBundle\Tests\Console\Descriptor\CallableClass` 5 | - Static: yes 6 | -------------------------------------------------------------------------------- /src/Symfony/Bundle/FrameworkBundle/Tests/Fixtures/Descriptor/callable_4.md: -------------------------------------------------------------------------------- 1 | 2 | - Type: `function` 3 | - Name: `staticMethod` 4 | - Class: `Symfony\Bundle\FrameworkBundle\Tests\Console\Descriptor\CallableClass` 5 | - Static: yes 6 | -------------------------------------------------------------------------------- /src/Symfony/Bundle/FrameworkBundle/Tests/Functional/app/TestServiceContainer/test_disabled.yml: -------------------------------------------------------------------------------- 1 | imports: 2 | - { resource: ../config/default.yml } 3 | - { resource: services.yml } 4 | 5 | framework: 6 | test: false 7 | -------------------------------------------------------------------------------- /src/Symfony/Bundle/TwigBundle/Resources/views/Exception/error.atom.twig: -------------------------------------------------------------------------------- 1 | {% deprecated 'The template "' ~ _self ~'" is deprecated since Symfony 4.4, will be removed in 5.0.' %} 2 | {{ include('@Twig/Exception/error.xml.twig') }} 3 | -------------------------------------------------------------------------------- /src/Symfony/Bundle/TwigBundle/Resources/views/Exception/error.rdf.twig: -------------------------------------------------------------------------------- 1 | {% deprecated 'The template "' ~ _self ~'" is deprecated since Symfony 4.4, will be removed in 5.0.' %} 2 | {{ include('@Twig/Exception/error.xml.twig') }} 3 | -------------------------------------------------------------------------------- /src/Symfony/Component/Console/Tests/Fixtures/application_renderexception4.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | Command "foo" is not define 4 | d. 5 | 6 | 7 | -------------------------------------------------------------------------------- /src/Symfony/Component/Console/Tests/Fixtures/input_option_2.md: -------------------------------------------------------------------------------- 1 | #### `--option_name|-o` 2 | 3 | option description 4 | 5 | * Accept value: yes 6 | * Is value required: no 7 | * Is multiple: no 8 | * Default: `'default_value'` 9 | -------------------------------------------------------------------------------- /src/Symfony/Component/Console/Tests/Fixtures/input_option_with_style.md: -------------------------------------------------------------------------------- 1 | #### `--option_name|-o` 2 | 3 | option description 4 | 5 | * Accept value: yes 6 | * Is value required: yes 7 | * Is multiple: no 8 | * Default: `'style'` 9 | -------------------------------------------------------------------------------- /src/Symfony/Component/Debug/Tests/Fixtures/VirtualTrait.php: -------------------------------------------------------------------------------- 1 | loadFromExtension('framework', [ 4 | 'property_info' => [ 5 | 'enabled' => true, 6 | ], 7 | ]); 8 | -------------------------------------------------------------------------------- /src/Symfony/Bundle/FrameworkBundle/Tests/DependencyInjection/Fixtures/php/serializer_disabled.php: -------------------------------------------------------------------------------- 1 | loadFromExtension('framework', [ 4 | 'serializer' => [ 5 | 'enabled' => false, 6 | ], 7 | ]); 8 | -------------------------------------------------------------------------------- /src/Symfony/Bundle/FrameworkBundle/Tests/DependencyInjection/Fixtures/php/serializer_enabled.php: -------------------------------------------------------------------------------- 1 | loadFromExtension('framework', [ 4 | 'serializer' => [ 5 | 'enabled' => true, 6 | ], 7 | ]); 8 | -------------------------------------------------------------------------------- /src/Symfony/Bundle/FrameworkBundle/Tests/DependencyInjection/Fixtures/yml/cache_env_var.yml: -------------------------------------------------------------------------------- 1 | parameters: 2 | env(REDIS_URL): redis://paas.com 3 | 4 | framework: 5 | cache: 6 | default_redis_provider: "%env(REDIS_URL)%" 7 | -------------------------------------------------------------------------------- /src/Symfony/Bundle/FrameworkBundle/Tests/Fixtures/Descriptor/callable_3.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "function", 3 | "name": "method", 4 | "class": "Symfony\\Bundle\\FrameworkBundle\\Tests\\Console\\Descriptor\\CallableClass" 5 | } 6 | -------------------------------------------------------------------------------- /src/Symfony/Bundle/FrameworkBundle/Tests/Fixtures/Descriptor/definition_without_class.md: -------------------------------------------------------------------------------- 1 | - Class: `` 2 | - Public: no 3 | - Synthetic: no 4 | - Lazy: no 5 | - Shared: yes 6 | - Abstract: no 7 | - Autowired: no 8 | - Autoconfigured: no 9 | -------------------------------------------------------------------------------- /src/Symfony/Bundle/FrameworkBundle/Tests/Functional/app/AnnotatedController/routing.yml: -------------------------------------------------------------------------------- 1 | annotated_controller: 2 | prefix: /annotated 3 | resource: "@TestBundle/Controller/AnnotatedController.php" 4 | type: annotation 5 | -------------------------------------------------------------------------------- /src/Symfony/Bundle/FrameworkBundle/Tests/Functional/app/Serializer/config.yml: -------------------------------------------------------------------------------- 1 | imports: 2 | - { resource: ../config/default.yml } 3 | 4 | framework: 5 | serializer: { enabled: true } 6 | property_info: { enabled: true } 7 | -------------------------------------------------------------------------------- /src/Symfony/Bundle/SecurityBundle/Tests/Functional/app/MissingUserProvider/config.yml: -------------------------------------------------------------------------------- 1 | imports: 2 | - { resource: ./../config/framework.yml } 3 | 4 | security: 5 | firewalls: 6 | default: 7 | http_basic: ~ 8 | -------------------------------------------------------------------------------- /src/Symfony/Bundle/SecurityBundle/Tests/Functional/app/PasswordEncode/bcrypt.yml: -------------------------------------------------------------------------------- 1 | imports: 2 | - { resource: config.yml } 3 | 4 | security: 5 | encoders: 6 | Custom\Class\Bcrypt\User: 7 | algorithm: bcrypt 8 | -------------------------------------------------------------------------------- /src/Symfony/Bundle/SecurityBundle/Tests/Functional/app/PasswordEncode/sodium.yml: -------------------------------------------------------------------------------- 1 | imports: 2 | - { resource: config.yml } 3 | 4 | security: 5 | encoders: 6 | Custom\Class\Sodium\User: 7 | algorithm: sodium 8 | -------------------------------------------------------------------------------- /src/Symfony/Bundle/TwigBundle/Resources/views/Exception/error.css.twig: -------------------------------------------------------------------------------- 1 | {% deprecated 'The template "' ~ _self ~'" is deprecated since Symfony 4.4, will be removed in 5.0.' %} 2 | /* 3 | {{ status_code }} {{ status_text }} 4 | 5 | */ 6 | -------------------------------------------------------------------------------- /src/Symfony/Bundle/TwigBundle/Resources/views/Exception/error.js.twig: -------------------------------------------------------------------------------- 1 | {% deprecated 'The template "' ~ _self ~'" is deprecated since Symfony 4.4, will be removed in 5.0.' %} 2 | /* 3 | {{ status_code }} {{ status_text }} 4 | 5 | */ 6 | -------------------------------------------------------------------------------- /src/Symfony/Bundle/TwigBundle/Tests/DependencyInjection/Fixtures/yml/empty.yml: -------------------------------------------------------------------------------- 1 | twig: 2 | strict_variables: false # to be removed in 5.0 relying on default 3 | exception_controller: ~ # to be removed in 5.0 relying on default 4 | -------------------------------------------------------------------------------- /src/Symfony/Component/Config/Tests/Fixtures/Util/document_type.xml: -------------------------------------------------------------------------------- 1 | 2 | ]> 3 | 4 | -------------------------------------------------------------------------------- /src/Symfony/Component/Console/Tests/Fixtures/input_argument_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "argument_name", 3 | "is_required": false, 4 | "is_array": true, 5 | "description": "argument description", 6 | "default": [] 7 | } 8 | -------------------------------------------------------------------------------- /src/Symfony/Component/Console/Tests/Fixtures/input_option_6.md: -------------------------------------------------------------------------------- 1 | #### `--option_name|-o|-O` 2 | 3 | option with multiple shortcuts 4 | 5 | * Accept value: yes 6 | * Is value required: yes 7 | * Is multiple: no 8 | * Default: `NULL` 9 | -------------------------------------------------------------------------------- /src/Symfony/Component/DependencyInjection/Tests/Fixtures/includes/HotPath/C1.php: -------------------------------------------------------------------------------- 1 |