├── src
└── Symfony
│ ├── Component
│ ├── Form
│ │ ├── Tests
│ │ │ ├── Fixtures
│ │ │ │ ├── foo
│ │ │ │ ├── foo2
│ │ │ │ └── foo3
│ │ │ └── Extension
│ │ │ │ └── Core
│ │ │ │ └── EventListener
│ │ │ │ └── Fixtures
│ │ │ │ └── randomhash
│ │ └── .gitignore
│ ├── Config
│ │ ├── Tests
│ │ │ └── Fixtures
│ │ │ │ ├── foo.xml
│ │ │ │ ├── Again
│ │ │ │ └── foo.xml
│ │ │ │ └── Util
│ │ │ │ ├── invalid.xml
│ │ │ │ ├── invalid_schema.xml
│ │ │ │ ├── valid.xml
│ │ │ │ └── document_type.xml
│ │ └── .gitignore
│ ├── Finder
│ │ ├── Tests
│ │ │ └── Fixtures
│ │ │ │ ├── A
│ │ │ │ ├── a.dat
│ │ │ │ └── B
│ │ │ │ │ ├── C
│ │ │ │ │ └── abc.dat
│ │ │ │ │ └── ab.dat
│ │ │ │ ├── one
│ │ │ │ ├── a
│ │ │ │ └── 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
│ │ │ │ ├── special_route_name.yml
│ │ │ │ ├── withdoctype.xml
│ │ │ │ ├── incomplete.yml
│ │ │ │ ├── nonvalidkeys.yml
│ │ │ │ ├── directory_import
│ │ │ │ └── import.yml
│ │ │ │ ├── nonesense_resource_plus_path.yml
│ │ │ │ ├── nonesense_type_without_resource.yml
│ │ │ │ ├── bad_format.yml
│ │ │ │ └── with_define_path_variable.php
│ │ └── .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
│ │ │ │ ├── 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
│ │ │ │ ├── plurals.po
│ │ │ │ ├── plurals.mo
│ │ │ │ ├── resources.csv
│ │ │ │ ├── encoding.xlf
│ │ │ │ ├── resources.mo
│ │ │ │ ├── empty-translation.mo
│ │ │ │ ├── resources.po
│ │ │ │ └── escaped-id.po
│ │ └── .gitignore
│ ├── Intl
│ │ ├── Resources
│ │ │ └── data
│ │ │ │ ├── version.txt
│ │ │ │ ├── locales
│ │ │ │ ├── in.json
│ │ │ │ ├── iw.json
│ │ │ │ ├── no.json
│ │ │ │ ├── mo.json
│ │ │ │ ├── sh.json
│ │ │ │ ├── tl.json
│ │ │ │ ├── en_NH.json
│ │ │ │ ├── en_RH.json
│ │ │ │ ├── in_ID.json
│ │ │ │ ├── iw_IL.json
│ │ │ │ ├── no_NO.json
│ │ │ │ ├── no_NO_NY.json
│ │ │ │ ├── tl_PH.json
│ │ │ │ ├── az_AZ.json
│ │ │ │ ├── bs_BA.json
│ │ │ │ ├── ha_GH.json
│ │ │ │ ├── ha_NE.json
│ │ │ │ ├── ha_NG.json
│ │ │ │ ├── kk_KZ.json
│ │ │ │ ├── ks_IN.json
│ │ │ │ ├── ky_KG.json
│ │ │ │ ├── mn_MN.json
│ │ │ │ ├── ms_BN.json
│ │ │ │ ├── ms_MY.json
│ │ │ │ ├── ms_SG.json
│ │ │ │ ├── pa_IN.json
│ │ │ │ ├── pa_PK.json
│ │ │ │ ├── sh_BA.json
│ │ │ │ ├── sh_CS.json
│ │ │ │ ├── sh_YU.json
│ │ │ │ ├── sr_BA.json
│ │ │ │ ├── sr_CS.json
│ │ │ │ ├── sr_ME.json
│ │ │ │ ├── sr_RS.json
│ │ │ │ ├── sr_XK.json
│ │ │ │ ├── sr_YU.json
│ │ │ │ ├── ug_CN.json
│ │ │ │ ├── uz_AF.json
│ │ │ │ ├── uz_UZ.json
│ │ │ │ ├── zh_CN.json
│ │ │ │ ├── zh_HK.json
│ │ │ │ ├── zh_MO.json
│ │ │ │ ├── zh_SG.json
│ │ │ │ ├── zh_TW.json
│ │ │ │ ├── sr_Cyrl_CS.json
│ │ │ │ ├── sr_Cyrl_YU.json
│ │ │ │ ├── sr_Latn_CS.json
│ │ │ │ ├── sr_Latn_YU.json
│ │ │ │ ├── es_CL.json
│ │ │ │ ├── as.json
│ │ │ │ ├── gv.json
│ │ │ │ ├── kw.json
│ │ │ │ ├── kl.json
│ │ │ │ └── en_AU.json
│ │ │ │ ├── regions
│ │ │ │ ├── bo_IN.json
│ │ │ │ ├── pa_Arab.json
│ │ │ │ ├── kl.json
│ │ │ │ ├── kw.json
│ │ │ │ ├── nl_BE.json
│ │ │ │ ├── uz_Arab.json
│ │ │ │ ├── es_CL.json
│ │ │ │ ├── rw.json
│ │ │ │ ├── zh_SG.json
│ │ │ │ ├── zh_Hans_MO.json
│ │ │ │ ├── zh_Hans_SG.json
│ │ │ │ ├── gv.json
│ │ │ │ ├── zh_Hans_HK.json
│ │ │ │ └── bn_IN.json
│ │ │ │ ├── languages
│ │ │ │ ├── gv.json
│ │ │ │ ├── ar_AE.json
│ │ │ │ ├── as.json
│ │ │ │ ├── en_GB.json
│ │ │ │ ├── kl.json
│ │ │ │ ├── kw.json
│ │ │ │ ├── pa_Arab.json
│ │ │ │ ├── ne_IN.json
│ │ │ │ ├── de_CH.json
│ │ │ │ ├── en_AU.json
│ │ │ │ ├── nl_BE.json
│ │ │ │ ├── uz_Arab.json
│ │ │ │ └── ru_UA.json
│ │ │ │ ├── scripts
│ │ │ │ ├── as.json
│ │ │ │ ├── om.json
│ │ │ │ ├── ps.json
│ │ │ │ ├── bo.json
│ │ │ │ ├── en_GB.json
│ │ │ │ ├── fa_AF.json
│ │ │ │ ├── fo.json
│ │ │ │ ├── uz_Arab.json
│ │ │ │ ├── bn_IN.json
│ │ │ │ ├── ti.json
│ │ │ │ ├── pa_Arab.json
│ │ │ │ ├── sv_FI.json
│ │ │ │ ├── so.json
│ │ │ │ ├── es_419.json
│ │ │ │ ├── zh_SG.json
│ │ │ │ ├── zh_Hans_HK.json
│ │ │ │ ├── zh_Hans_MO.json
│ │ │ │ └── zh_Hans_SG.json
│ │ │ │ ├── currencies
│ │ │ │ ├── ii.json
│ │ │ │ ├── or.json
│ │ │ │ ├── ps.json
│ │ │ │ ├── qu.json
│ │ │ │ ├── rw.json
│ │ │ │ ├── az_Cyrl.json
│ │ │ │ ├── bo_IN.json
│ │ │ │ ├── ff_GN.json
│ │ │ │ ├── ha_GH.json
│ │ │ │ ├── om_KE.json
│ │ │ │ ├── os_RU.json
│ │ │ │ ├── so_KE.json
│ │ │ │ ├── ti_ER.json
│ │ │ │ ├── uz_Arab.json
│ │ │ │ ├── zh_MO.json
│ │ │ │ ├── ar_DJ.json
│ │ │ │ ├── ar_LB.json
│ │ │ │ ├── ar_SO.json
│ │ │ │ ├── ca_FR.json
│ │ │ │ ├── en_001.json
│ │ │ │ ├── en_BZ.json
│ │ │ │ ├── en_FJ.json
│ │ │ │ ├── en_NH.json
│ │ │ │ ├── en_VU.json
│ │ │ │ ├── en_WS.json
│ │ │ │ ├── es_BO.json
│ │ │ │ ├── es_PH.json
│ │ │ │ ├── ha_Latn_GH.json
│ │ │ │ ├── mo.json
│ │ │ │ ├── ms_BN.json
│ │ │ │ ├── zh_Hant_MO.json
│ │ │ │ ├── af_NA.json
│ │ │ │ ├── ar_ER.json
│ │ │ │ ├── en_BB.json
│ │ │ │ ├── en_BM.json
│ │ │ │ ├── en_BS.json
│ │ │ │ ├── en_BW.json
│ │ │ │ ├── en_CC.json
│ │ │ │ ├── en_CK.json
│ │ │ │ ├── en_CX.json
│ │ │ │ ├── en_ER.json
│ │ │ │ ├── en_GH.json
│ │ │ │ ├── en_GM.json
│ │ │ │ ├── en_GY.json
│ │ │ │ ├── en_JM.json
│ │ │ │ ├── en_KE.json
│ │ │ │ ├── en_KI.json
│ │ │ │ ├── en_LR.json
│ │ │ │ ├── en_LS.json
│ │ │ │ ├── en_MG.json
│ │ │ │ ├── en_MO.json
│ │ │ │ ├── en_MU.json
│ │ │ │ ├── en_MW.json
│ │ │ │ ├── en_MY.json
│ │ │ │ ├── en_NA.json
│ │ │ │ ├── en_NF.json
│ │ │ │ ├── en_NG.json
│ │ │ │ ├── en_NR.json
│ │ │ │ ├── en_NU.json
│ │ │ │ ├── en_NZ.json
│ │ │ │ ├── en_PH.json
│ │ │ │ ├── en_PK.json
│ │ │ │ ├── en_PN.json
│ │ │ │ ├── en_RW.json
│ │ │ │ ├── en_SC.json
│ │ │ │ ├── en_SG.json
│ │ │ │ ├── en_SZ.json
│ │ │ │ ├── en_TK.json
│ │ │ │ ├── en_TO.json
│ │ │ │ ├── en_TV.json
│ │ │ │ ├── en_UG.json
│ │ │ │ ├── en_ZA.json
│ │ │ │ ├── en_ZM.json
│ │ │ │ ├── es_GQ.json
│ │ │ │ ├── es_HN.json
│ │ │ │ ├── es_PA.json
│ │ │ │ ├── es_PY.json
│ │ │ │ ├── ff_MR.json
│ │ │ │ ├── fr_BI.json
│ │ │ │ ├── fr_CD.json
│ │ │ │ ├── fr_DJ.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_Latn_BN.json
│ │ │ │ ├── ms_SG.json
│ │ │ │ ├── ne_IN.json
│ │ │ │ ├── nl_BQ.json
│ │ │ │ ├── nl_SR.json
│ │ │ │ ├── pt_AO.json
│ │ │ │ ├── pt_MO.json
│ │ │ │ ├── ro_MD.json
│ │ │ │ ├── ru_KG.json
│ │ │ │ ├── ru_KZ.json
│ │ │ │ ├── ru_MD.json
│ │ │ │ ├── so_DJ.json
│ │ │ │ ├── so_ET.json
│ │ │ │ ├── sq_MK.json
│ │ │ │ ├── ta_LK.json
│ │ │ │ ├── en_AG.json
│ │ │ │ ├── en_AI.json
│ │ │ │ ├── en_DM.json
│ │ │ │ ├── en_GD.json
│ │ │ │ ├── en_KN.json
│ │ │ │ ├── en_KY.json
│ │ │ │ ├── en_LC.json
│ │ │ │ ├── en_MS.json
│ │ │ │ ├── en_PG.json
│ │ │ │ ├── en_SB.json
│ │ │ │ ├── en_SL.json
│ │ │ │ ├── en_TZ.json
│ │ │ │ ├── en_VC.json
│ │ │ │ ├── es_CR.json
│ │ │ │ ├── es_EC.json
│ │ │ │ ├── es_GT.json
│ │ │ │ ├── es_NI.json
│ │ │ │ ├── es_PE.json
│ │ │ │ ├── es_PR.json
│ │ │ │ ├── es_SV.json
│ │ │ │ ├── es_VE.json
│ │ │ │ ├── fr_MR.json
│ │ │ │ ├── fr_MU.json
│ │ │ │ ├── fr_SC.json
│ │ │ │ ├── hr_BA.json
│ │ │ │ ├── ms_Latn_SG.json
│ │ │ │ ├── nl_AW.json
│ │ │ │ ├── pt_MZ.json
│ │ │ │ ├── sh_BA.json
│ │ │ │ ├── sr_BA.json
│ │ │ │ ├── sw_UG.json
│ │ │ │ ├── en_MT.json
│ │ │ │ ├── en_TT.json
│ │ │ │ ├── sr_Cyrl_BA.json
│ │ │ │ ├── sr_Latn_BA.json
│ │ │ │ ├── en_SX.json
│ │ │ │ ├── nl_CW.json
│ │ │ │ ├── nl_SX.json
│ │ │ │ ├── pt_ST.json
│ │ │ │ └── de_LU.json
│ │ │ │ └── svn-info.txt
│ │ ├── .gitignore
│ │ └── Tests
│ │ │ └── Data
│ │ │ └── Bundle
│ │ │ ├── Reader
│ │ │ └── Fixtures
│ │ │ │ ├── NotAFile
│ │ │ │ └── en.php
│ │ │ │ │ └── .gitkeep
│ │ │ │ ├── json
│ │ │ │ ├── en.json
│ │ │ │ └── en_Invalid.json
│ │ │ │ ├── en.txt
│ │ │ │ ├── txt
│ │ │ │ ├── ro.txt
│ │ │ │ ├── mo.txt
│ │ │ │ ├── ro_MD.txt
│ │ │ │ ├── alias.txt
│ │ │ │ └── root.txt
│ │ │ │ ├── en.res
│ │ │ │ └── res
│ │ │ │ ├── mo.res
│ │ │ │ ├── ro.res
│ │ │ │ ├── alias.res
│ │ │ │ ├── ro_MD.res
│ │ │ │ └── root.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_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_run4.txt
│ │ │ │ ├── application_gethelp.txt
│ │ │ │ ├── input_argument_1.txt
│ │ │ │ ├── input_definition_1.json
│ │ │ │ ├── input_option_1.txt
│ │ │ │ ├── input_argument_2.txt
│ │ │ │ ├── input_option_3.txt
│ │ │ │ ├── input_definition_2.txt
│ │ │ │ ├── input_definition_3.txt
│ │ │ │ ├── input_option_6.txt
│ │ │ │ ├── input_argument_1.json
│ │ │ │ ├── Style
│ │ │ │ └── SymfonyStyle
│ │ │ │ │ └── output
│ │ │ │ │ ├── output_3.txt
│ │ │ │ │ ├── output_7.txt
│ │ │ │ │ └── output_0.txt
│ │ │ │ ├── input_argument_3.txt
│ │ │ │ ├── input_argument_4.txt
│ │ │ │ ├── input_argument_2.json
│ │ │ │ ├── input_definition_1.xml
│ │ │ │ ├── input_option_2.txt
│ │ │ │ ├── input_option_4.txt
│ │ │ │ ├── input_argument_4.json
│ │ │ │ ├── input_option_5.txt
│ │ │ │ ├── command_1.txt
│ │ │ │ ├── input_argument_3.json
│ │ │ │ ├── application_renderexception_doublewidth1.txt
│ │ │ │ ├── input_argument_1.md
│ │ │ │ ├── input_definition_2.json
│ │ │ │ ├── input_option_1.json
│ │ │ │ ├── input_definition_4.txt
│ │ │ │ ├── input_option_4.json
│ │ │ │ ├── input_argument_2.md
│ │ │ │ ├── input_option_3.json
│ │ │ │ ├── input_argument_3.md
│ │ │ │ ├── input_argument_4.md
│ │ │ │ ├── input_option_2.json
│ │ │ │ ├── input_option_5.json
│ │ │ │ ├── input_argument_1.xml
│ │ │ │ ├── input_option_6.json
│ │ │ │ ├── input_definition_2.md
│ │ │ │ ├── Foo5Command.php
│ │ │ │ ├── command_1.json
│ │ │ │ ├── input_definition_3.json
│ │ │ │ ├── input_option_1.xml
│ │ │ │ └── input_argument_2.xml
│ │ ├── .gitignore
│ │ └── Resources
│ │ │ └── bin
│ │ │ └── hiddeninput.exe
│ ├── 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
│ │ └── .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
│ ├── DependencyInjection
│ │ ├── Tests
│ │ │ └── Fixtures
│ │ │ │ ├── yaml
│ │ │ │ ├── services1.yml
│ │ │ │ ├── nonvalid2.yml
│ │ │ │ ├── bad_services.yml
│ │ │ │ ├── nonvalid1.yml
│ │ │ │ ├── services11.yml
│ │ │ │ ├── bad_format.yml
│ │ │ │ ├── bad_import.yml
│ │ │ │ ├── bad_imports.yml
│ │ │ │ ├── bad_service.yml
│ │ │ │ ├── bad_parameters.yml
│ │ │ │ ├── services7.yml
│ │ │ │ ├── services4_bad_import.yml
│ │ │ │ ├── bad_calls.yml
│ │ │ │ ├── services13.yml
│ │ │ │ ├── services3.yml
│ │ │ │ ├── services23.yml
│ │ │ │ ├── legacy_invalid_alias_definition.yml
│ │ │ │ ├── badtag1.yml
│ │ │ │ ├── badtag4.yml
│ │ │ │ ├── bad_types1.yml
│ │ │ │ ├── services24.yml
│ │ │ │ ├── bad_types2.yml
│ │ │ │ ├── badtag2.yml
│ │ │ │ ├── services14.yml
│ │ │ │ ├── tag_name_no_string.yml
│ │ │ │ ├── tag_name_empty_string.yml
│ │ │ │ ├── badtag3.yml
│ │ │ │ └── services10.yml
│ │ │ │ ├── directory
│ │ │ │ ├── recurse
│ │ │ │ │ ├── simple.ini
│ │ │ │ │ └── simple.yml
│ │ │ │ ├── import
│ │ │ │ │ └── import.yml
│ │ │ │ └── simple.php
│ │ │ │ ├── xml
│ │ │ │ ├── nonvalid.xml
│ │ │ │ └── withdoctype.xml
│ │ │ │ ├── ini
│ │ │ │ ├── nonvalid.ini
│ │ │ │ ├── parameters.ini
│ │ │ │ ├── parameters1.ini
│ │ │ │ └── parameters2.ini
│ │ │ │ ├── php
│ │ │ │ └── simple.php
│ │ │ │ └── includes
│ │ │ │ └── ProjectWithXsdExtensionInPhar.phar
│ │ └── .gitignore
│ ├── Ldap
│ │ └── .gitignore
│ ├── Yaml
│ │ ├── .gitignore
│ │ └── Tests
│ │ │ └── Fixtures
│ │ │ └── embededPhp.yml
│ ├── Asset
│ │ ├── .gitignore
│ │ └── CHANGELOG.md
│ ├── Cache
│ │ └── .gitignore
│ ├── Debug
│ │ ├── .gitignore
│ │ └── Tests
│ │ │ ├── Fixtures
│ │ │ ├── PEARClass.php
│ │ │ ├── casemismatch.php
│ │ │ ├── notPsr0Bis.php
│ │ │ ├── reallyNotPsr0.php
│ │ │ ├── psr4
│ │ │ │ └── Psr4CaseMismatch.php
│ │ │ ├── ClassAlias.php
│ │ │ └── NonDeprecatedInterface.php
│ │ │ └── Fixtures2
│ │ │ └── RequiredTwice.php
│ ├── Process
│ │ └── .gitignore
│ ├── Security
│ │ ├── .gitignore
│ │ ├── Core
│ │ │ └── .gitignore
│ │ ├── Csrf
│ │ │ └── .gitignore
│ │ ├── Guard
│ │ │ └── .gitignore
│ │ └── Http
│ │ │ └── .gitignore
│ ├── Stopwatch
│ │ └── .gitignore
│ ├── Templating
│ │ ├── Tests
│ │ │ └── Fixtures
│ │ │ │ └── templates
│ │ │ │ └── foo.php
│ │ └── .gitignore
│ ├── VarDumper
│ │ ├── .gitignore
│ │ └── CHANGELOG.md
│ ├── BrowserKit
│ │ └── .gitignore
│ ├── ClassLoader
│ │ ├── .gitignore
│ │ └── Tests
│ │ │ └── Fixtures
│ │ │ ├── classmap
│ │ │ ├── notPhpFile.md
│ │ │ └── notAClass.php
│ │ │ ├── includepath
│ │ │ └── Foo.php
│ │ │ ├── psr-4
│ │ │ ├── Foo.php
│ │ │ ├── Lets
│ │ │ │ └── Go
│ │ │ │ │ └── Deeper
│ │ │ │ │ ├── Foo.php
│ │ │ │ │ └── Class_With_Underscores.php
│ │ │ └── Class_With_Underscores.php
│ │ │ ├── Pearlike
│ │ │ ├── Bar.php
│ │ │ ├── Baz.php
│ │ │ └── Foo.php
│ │ │ ├── Pearlike2
│ │ │ ├── Bar.php
│ │ │ ├── Baz.php
│ │ │ └── Foo.php
│ │ │ ├── Apc
│ │ │ ├── Pearlike
│ │ │ │ ├── Bar.php
│ │ │ │ ├── Baz.php
│ │ │ │ └── Foo.php
│ │ │ ├── fallback
│ │ │ │ └── Apc
│ │ │ │ │ └── Pearlike
│ │ │ │ │ └── FooBar.php
│ │ │ ├── alpha
│ │ │ │ └── Apc
│ │ │ │ │ └── ApcPrefixCollision
│ │ │ │ │ └── A
│ │ │ │ │ ├── Bar.php
│ │ │ │ │ └── Foo.php
│ │ │ └── beta
│ │ │ │ └── Apc
│ │ │ │ └── ApcPrefixCollision
│ │ │ │ └── A
│ │ │ │ └── B
│ │ │ │ ├── Bar.php
│ │ │ │ └── Foo.php
│ │ │ ├── ClassesWithParents
│ │ │ ├── A.php
│ │ │ ├── ATrait.php
│ │ │ ├── CTrait.php
│ │ │ ├── B.php
│ │ │ ├── F.php
│ │ │ ├── G.php
│ │ │ ├── GInterface.php
│ │ │ ├── BTrait.php
│ │ │ ├── D.php
│ │ │ ├── E.php
│ │ │ └── CInterface.php
│ │ │ ├── fallback
│ │ │ ├── Pearlike
│ │ │ │ └── FooBar.php
│ │ │ ├── Pearlike2
│ │ │ │ └── FooBar.php
│ │ │ └── Namespaced2
│ │ │ │ └── FooBar.php
│ │ │ ├── alpha
│ │ │ ├── PrefixCollision
│ │ │ │ ├── A
│ │ │ │ │ ├── Bar.php
│ │ │ │ │ └── Foo.php
│ │ │ │ └── C
│ │ │ │ │ ├── Bar.php
│ │ │ │ │ └── Foo.php
│ │ │ └── NamespaceCollision
│ │ │ │ └── C
│ │ │ │ ├── Bar.php
│ │ │ │ └── Foo.php
│ │ │ ├── Namespaced2
│ │ │ ├── Bar.php
│ │ │ ├── Baz.php
│ │ │ └── Foo.php
│ │ │ ├── beta
│ │ │ ├── PrefixCollision
│ │ │ │ ├── A
│ │ │ │ │ └── B
│ │ │ │ │ │ ├── Bar.php
│ │ │ │ │ │ └── Foo.php
│ │ │ │ └── C
│ │ │ │ │ └── B
│ │ │ │ │ ├── Bar.php
│ │ │ │ │ └── Foo.php
│ │ │ └── NamespaceCollision
│ │ │ │ └── C
│ │ │ │ └── B
│ │ │ │ ├── Bar.php
│ │ │ │ └── Foo.php
│ │ │ └── php5.5
│ │ │ └── class_cons.php
│ ├── CssSelector
│ │ └── .gitignore
│ ├── Filesystem
│ │ └── .gitignore
│ ├── PropertyAccess
│ │ └── .gitignore
│ ├── EventDispatcher
│ │ └── .gitignore
│ ├── ExpressionLanguage
│ │ ├── .gitignore
│ │ └── CHANGELOG.md
│ └── OptionsResolver
│ │ └── .gitignore
│ ├── Bundle
│ ├── FrameworkBundle
│ │ ├── Resources
│ │ │ ├── views
│ │ │ │ ├── Form
│ │ │ │ │ ├── button_label.html.php
│ │ │ │ │ ├── hidden_row.html.php
│ │ │ │ │ ├── repeated_row.html.php
│ │ │ │ │ ├── attributes.html.php
│ │ │ │ │ ├── button_row.html.php
│ │ │ │ │ ├── choice_options.html.php
│ │ │ │ │ ├── container_attributes.html.php
│ │ │ │ │ ├── form_enctype.html.php
│ │ │ │ │ ├── form_rows.html.php
│ │ │ │ │ ├── money_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
│ │ │ │ │ ├── percent_widget.html.php
│ │ │ │ │ ├── search_widget.html.php
│ │ │ │ │ ├── password_widget.html.php
│ │ │ │ │ ├── form_end.html.php
│ │ │ │ │ ├── textarea_widget.html.php
│ │ │ │ │ ├── form.html.php
│ │ │ │ │ ├── form_row.html.php
│ │ │ │ │ └── form_rest.html.php
│ │ │ │ └── FormTable
│ │ │ │ │ ├── button_row.html.php
│ │ │ │ │ └── hidden_row.html.php
│ │ │ └── public
│ │ │ │ └── images
│ │ │ │ ├── logo_symfony.png
│ │ │ │ ├── grey_magnifier.png
│ │ │ │ ├── blue_picto_less.gif
│ │ │ │ └── blue_picto_more.gif
│ │ ├── Tests
│ │ │ ├── Fixtures
│ │ │ │ ├── Descriptor
│ │ │ │ │ ├── callable_6.txt
│ │ │ │ │ ├── callable_1.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
│ │ │ │ │ ├── alias_1.txt
│ │ │ │ │ ├── alias_2.txt
│ │ │ │ │ ├── callable_1.json
│ │ │ │ │ ├── callable_6.xml
│ │ │ │ │ ├── callable_3.txt
│ │ │ │ │ ├── callable_7.txt
│ │ │ │ │ ├── alias_1.xml
│ │ │ │ │ ├── alias_2.xml
│ │ │ │ │ ├── callable_2.txt
│ │ │ │ │ ├── callable_4.txt
│ │ │ │ │ ├── parameter.xml
│ │ │ │ │ ├── callable_1.xml
│ │ │ │ │ ├── callable_5.txt
│ │ │ │ │ ├── callable_7.md
│ │ │ │ │ ├── array_parameter.md
│ │ │ │ │ ├── callable_3.md
│ │ │ │ │ ├── callable_7.json
│ │ │ │ │ ├── callable_7.xml
│ │ │ │ │ ├── callable_2.md
│ │ │ │ │ ├── callable_4.md
│ │ │ │ │ ├── callable_3.json
│ │ │ │ │ ├── array_parameter.xml
│ │ │ │ │ ├── callable_3.xml
│ │ │ │ │ ├── parameters_1.md
│ │ │ │ │ ├── array_parameter.json
│ │ │ │ │ ├── callable_5.md
│ │ │ │ │ ├── callable_2.xml
│ │ │ │ │ ├── callable_4.xml
│ │ │ │ │ ├── parameter.txt
│ │ │ │ │ ├── callable_2.json
│ │ │ │ │ └── callable_4.json
│ │ │ │ ├── Resources
│ │ │ │ │ ├── views
│ │ │ │ │ │ ├── resource.format.engine
│ │ │ │ │ │ └── this.is.a.template.format.engine
│ │ │ │ │ ├── BaseBundle
│ │ │ │ │ │ └── views
│ │ │ │ │ │ │ ├── base.format.engine
│ │ │ │ │ │ │ └── controller
│ │ │ │ │ │ │ └── custom.format.engine
│ │ │ │ │ └── translations
│ │ │ │ │ │ └── messages.fr.yml
│ │ │ │ └── BaseBundle
│ │ │ │ │ └── Resources
│ │ │ │ │ └── views
│ │ │ │ │ ├── base.format.engine
│ │ │ │ │ ├── controller
│ │ │ │ │ └── base.format.engine
│ │ │ │ │ └── this.is.a.template.format.engine
│ │ │ ├── DependencyInjection
│ │ │ │ └── Fixtures
│ │ │ │ │ ├── TestBundle
│ │ │ │ │ └── Resources
│ │ │ │ │ │ └── config
│ │ │ │ │ │ ├── validation.xml
│ │ │ │ │ │ └── validation.yml
│ │ │ │ │ ├── yml
│ │ │ │ │ ├── default_config.yml
│ │ │ │ │ ├── csrf_needs_session.yml
│ │ │ │ │ ├── request.yml
│ │ │ │ │ ├── profiler.yml
│ │ │ │ │ ├── session.yml
│ │ │ │ │ ├── property_info.yml
│ │ │ │ │ ├── serializer_enabled.yml
│ │ │ │ │ ├── serializer_disabled.yml
│ │ │ │ │ ├── translator_fallbacks.yml
│ │ │ │ │ ├── csrf.yml
│ │ │ │ │ ├── form_no_csrf.yml
│ │ │ │ │ ├── property_accessor.yml
│ │ │ │ │ ├── validation_annotations.yml
│ │ │ │ │ ├── validation_no_static_method.yml
│ │ │ │ │ ├── validation_multiple_static_methods.yml
│ │ │ │ │ └── assets_version_strategy_as_service.yml
│ │ │ │ │ ├── translations
│ │ │ │ │ └── test_paths.en.yml
│ │ │ │ │ └── php
│ │ │ │ │ ├── default_config.php
│ │ │ │ │ ├── profiler.php
│ │ │ │ │ ├── request.php
│ │ │ │ │ ├── session.php
│ │ │ │ │ ├── property_info.php
│ │ │ │ │ ├── serializer_disabled.php
│ │ │ │ │ ├── serializer_enabled.php
│ │ │ │ │ ├── csrf_needs_session.php
│ │ │ │ │ └── translator_fallbacks.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
│ │ │ │ ├── ConfigDump
│ │ │ │ └── config.yml
│ │ │ │ ├── Session
│ │ │ │ ├── config.yml
│ │ │ │ └── routing.yml
│ │ │ │ ├── Fragment
│ │ │ │ ├── routing.yml
│ │ │ │ └── config.yml
│ │ │ │ └── Profiler
│ │ │ │ ├── routing.yml
│ │ │ │ └── config.yml
│ │ └── .gitignore
│ ├── TwigBundle
│ │ ├── Tests
│ │ │ ├── Functional
│ │ │ │ └── Resources
│ │ │ │ │ ├── config
│ │ │ │ │ └── empty_routing.yml
│ │ │ │ │ └── views
│ │ │ │ │ └── index.html.twig
│ │ │ ├── DependencyInjection
│ │ │ │ └── Fixtures
│ │ │ │ │ ├── yml
│ │ │ │ │ ├── empty.yml
│ │ │ │ │ ├── extra.yml
│ │ │ │ │ └── customTemplateEscapingGuesser.yml
│ │ │ │ │ ├── Resources
│ │ │ │ │ ├── views
│ │ │ │ │ │ └── layout.html.twig
│ │ │ │ │ └── TwigBundle
│ │ │ │ │ │ └── views
│ │ │ │ │ │ └── layout.html.twig
│ │ │ │ │ └── php
│ │ │ │ │ ├── empty.php
│ │ │ │ │ └── extra.php
│ │ │ └── Fixtures
│ │ │ │ └── templates
│ │ │ │ ├── Foo
│ │ │ │ └── index.html.twig
│ │ │ │ ├── Resources
│ │ │ │ └── views
│ │ │ │ │ ├── layout.html.twig
│ │ │ │ │ └── sub
│ │ │ │ │ └── sub.html.twig
│ │ │ │ └── BarBundle
│ │ │ │ └── Resources
│ │ │ │ └── views
│ │ │ │ └── index.html.twig
│ │ ├── .gitignore
│ │ └── Resources
│ │ │ └── views
│ │ │ └── Exception
│ │ │ ├── error.atom.twig
│ │ │ ├── error.rdf.twig
│ │ │ ├── error.js.twig
│ │ │ ├── error.css.twig
│ │ │ ├── error.json.twig
│ │ │ ├── exception.atom.twig
│ │ │ ├── exception.rdf.twig
│ │ │ ├── exception.css.twig
│ │ │ ├── exception.js.twig
│ │ │ ├── error.xml.twig
│ │ │ ├── exception.json.twig
│ │ │ └── traces.txt.twig
│ ├── DebugBundle
│ │ └── .gitignore
│ ├── SecurityBundle
│ │ ├── .gitignore
│ │ └── Tests
│ │ │ ├── Functional
│ │ │ └── app
│ │ │ │ ├── FirewallEntryPoint
│ │ │ │ └── routing.yml
│ │ │ │ ├── config
│ │ │ │ ├── default.yml
│ │ │ │ └── twig.yml
│ │ │ │ └── CsrfFormLogin
│ │ │ │ └── routing.yml
│ │ │ └── DependencyInjection
│ │ │ └── Fixtures
│ │ │ └── yml
│ │ │ └── custom_acl_provider.yml
│ └── WebProfilerBundle
│ │ ├── .gitignore
│ │ └── Resources
│ │ ├── views
│ │ └── Profiler
│ │ │ └── ajax_layout.html.twig
│ │ └── ICONS_LICENSE.txt
│ └── Bridge
│ ├── Monolog
│ └── .gitignore
│ ├── PhpUnit
│ └── .gitignore
│ ├── Twig
│ ├── .gitignore
│ └── Tests
│ │ ├── Fixtures
│ │ └── extractor
│ │ │ ├── syntax_error.twig
│ │ │ └── with_translations.html.twig
│ │ └── Extension
│ │ └── Fixtures
│ │ └── templates
│ │ └── form
│ │ ├── page_dynamic_extends.html.twig
│ │ ├── parent_label.html.twig
│ │ └── child_label.html.twig
│ ├── Doctrine
│ └── .gitignore
│ └── ProxyManager
│ ├── .gitignore
│ └── CHANGELOG.md
├── .gitignore
└── .editorconfig
/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/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/A/B/C/abc.dat:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/src/Symfony/Component/Finder/Tests/Fixtures/A/B/ab.dat:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/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/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 | 54.1
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/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/Routing/Tests/Fixtures/nonvalid.yml:
--------------------------------------------------------------------------------
1 | foo
2 |
--------------------------------------------------------------------------------
/src/Symfony/Component/Serializer/Tests/Fixtures/empty-mapping.yml:
--------------------------------------------------------------------------------
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/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/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/Bundle/TwigBundle/Tests/Functional/Resources/config/empty_routing.yml:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/src/Symfony/Component/Console/Tests/Fixtures/application_run4.txt:
--------------------------------------------------------------------------------
1 | Console Tool
2 |
--------------------------------------------------------------------------------
/src/Symfony/Component/DependencyInjection/Tests/Fixtures/yaml/services1.yml:
--------------------------------------------------------------------------------
1 |
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/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/Bundle/DebugBundle/.gitignore:
--------------------------------------------------------------------------------
1 | vendor/
2 | composer.lock
3 | phpunit.xml
4 |
--------------------------------------------------------------------------------
/src/Symfony/Bundle/FrameworkBundle/Tests/Fixtures/Descriptor/callable_6.txt:
--------------------------------------------------------------------------------
1 | \Closure()
--------------------------------------------------------------------------------
/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/Bundle/TwigBundle/Tests/DependencyInjection/Fixtures/yml/empty.yml:
--------------------------------------------------------------------------------
1 | twig:
2 |
--------------------------------------------------------------------------------
/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/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/yaml/nonvalid2.yml:
--------------------------------------------------------------------------------
1 | false
2 |
--------------------------------------------------------------------------------
/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/Bundle/FrameworkBundle/.gitignore:
--------------------------------------------------------------------------------
1 | vendor/
2 | composer.lock
3 | phpunit.xml
4 |
--------------------------------------------------------------------------------
/src/Symfony/Bundle/FrameworkBundle/Tests/Fixtures/Descriptor/callable_1.txt:
--------------------------------------------------------------------------------
1 | array_key_exists()
--------------------------------------------------------------------------------
/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/ClassLoader/.gitignore:
--------------------------------------------------------------------------------
1 | vendor/
2 | composer.lock
3 | phpunit.xml
4 |
--------------------------------------------------------------------------------
/src/Symfony/Component/Console/Tests/Fixtures/application_gethelp.txt:
--------------------------------------------------------------------------------
1 | Console Tool
--------------------------------------------------------------------------------
/src/Symfony/Component/CssSelector/.gitignore:
--------------------------------------------------------------------------------
1 | vendor/
2 | composer.lock
3 | phpunit.xml
4 |
--------------------------------------------------------------------------------
/src/Symfony/Component/DomCrawler/.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/Resources/data/locales/in.json:
--------------------------------------------------------------------------------
1 | {
2 | "%%ALIAS": "id"
3 | }
4 |
--------------------------------------------------------------------------------
/src/Symfony/Component/Intl/Resources/data/locales/iw.json:
--------------------------------------------------------------------------------
1 | {
2 | "%%ALIAS": "he"
3 | }
4 |
--------------------------------------------------------------------------------
/src/Symfony/Component/Intl/Resources/data/locales/no.json:
--------------------------------------------------------------------------------
1 | {
2 | "%%ALIAS": "nb"
3 | }
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/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/Yaml/Tests/Fixtures/embededPhp.yml:
--------------------------------------------------------------------------------
1 | value:
2 |
--------------------------------------------------------------------------------
/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/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/Resources/data/locales/mo.json:
--------------------------------------------------------------------------------
1 | {
2 | "%%ALIAS": "ro_MD"
3 | }
4 |
--------------------------------------------------------------------------------
/src/Symfony/Component/Intl/Resources/data/locales/sh.json:
--------------------------------------------------------------------------------
1 | {
2 | "%%ALIAS": "sr_Latn"
3 | }
4 |
--------------------------------------------------------------------------------
/src/Symfony/Component/Intl/Resources/data/locales/tl.json:
--------------------------------------------------------------------------------
1 | {
2 | "%%ALIAS": "fil"
3 | }
4 |
--------------------------------------------------------------------------------
/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/Component/Console/Tests/Fixtures/input_definition_1.json:
--------------------------------------------------------------------------------
1 | {"arguments":[],"options":[]}
2 |
--------------------------------------------------------------------------------
/src/Symfony/Component/Console/Tests/Fixtures/input_option_1.txt:
--------------------------------------------------------------------------------
1 | -o, --option_name
2 |
--------------------------------------------------------------------------------
/src/Symfony/Component/Intl/Resources/data/locales/en_NH.json:
--------------------------------------------------------------------------------
1 | {
2 | "%%ALIAS": "en_VU"
3 | }
4 |
--------------------------------------------------------------------------------
/src/Symfony/Component/Intl/Resources/data/locales/en_RH.json:
--------------------------------------------------------------------------------
1 | {
2 | "%%ALIAS": "en_ZW"
3 | }
4 |
--------------------------------------------------------------------------------
/src/Symfony/Component/Intl/Resources/data/locales/in_ID.json:
--------------------------------------------------------------------------------
1 | {
2 | "%%ALIAS": "id_ID"
3 | }
4 |
--------------------------------------------------------------------------------
/src/Symfony/Component/Intl/Resources/data/locales/iw_IL.json:
--------------------------------------------------------------------------------
1 | {
2 | "%%ALIAS": "he_IL"
3 | }
4 |
--------------------------------------------------------------------------------
/src/Symfony/Component/Intl/Resources/data/locales/no_NO.json:
--------------------------------------------------------------------------------
1 | {
2 | "%%ALIAS": "nb_NO"
3 | }
4 |
--------------------------------------------------------------------------------
/src/Symfony/Component/Intl/Resources/data/locales/no_NO_NY.json:
--------------------------------------------------------------------------------
1 | {
2 | "%%ALIAS": "nn_NO"
3 | }
4 |
--------------------------------------------------------------------------------
/src/Symfony/Component/Intl/Resources/data/locales/tl_PH.json:
--------------------------------------------------------------------------------
1 | {
2 | "%%ALIAS": "fil_PH"
3 | }
4 |
--------------------------------------------------------------------------------
/src/Symfony/Component/Intl/Tests/Data/Bundle/Reader/Fixtures/en.txt:
--------------------------------------------------------------------------------
1 | en{
2 | Foo{"Bar"}
3 | }
4 |
--------------------------------------------------------------------------------
/src/Symfony/Component/Routing/Tests/Fixtures/directory/routes3.yml:
--------------------------------------------------------------------------------
1 | route3:
2 | path: /route/3
3 |
--------------------------------------------------------------------------------
/src/Symfony/Bridge/Twig/Tests/Fixtures/extractor/with_translations.html.twig:
--------------------------------------------------------------------------------
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/ClassLoader/Tests/Fixtures/classmap/notPhpFile.md:
--------------------------------------------------------------------------------
1 | This file should be skipped.
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_import.yml:
--------------------------------------------------------------------------------
1 | imports:
2 | - foo.yml
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/Resources/data/locales/az_AZ.json:
--------------------------------------------------------------------------------
1 | {
2 | "%%ALIAS": "az_Latn_AZ"
3 | }
4 |
--------------------------------------------------------------------------------
/src/Symfony/Component/Intl/Resources/data/locales/bs_BA.json:
--------------------------------------------------------------------------------
1 | {
2 | "%%ALIAS": "bs_Latn_BA"
3 | }
4 |
--------------------------------------------------------------------------------
/src/Symfony/Component/Intl/Resources/data/locales/ha_GH.json:
--------------------------------------------------------------------------------
1 | {
2 | "%%ALIAS": "ha_Latn_GH"
3 | }
4 |
--------------------------------------------------------------------------------
/src/Symfony/Component/Intl/Resources/data/locales/ha_NE.json:
--------------------------------------------------------------------------------
1 | {
2 | "%%ALIAS": "ha_Latn_NE"
3 | }
4 |
--------------------------------------------------------------------------------
/src/Symfony/Component/Intl/Resources/data/locales/ha_NG.json:
--------------------------------------------------------------------------------
1 | {
2 | "%%ALIAS": "ha_Latn_NG"
3 | }
4 |
--------------------------------------------------------------------------------
/src/Symfony/Component/Intl/Resources/data/locales/kk_KZ.json:
--------------------------------------------------------------------------------
1 | {
2 | "%%ALIAS": "kk_Cyrl_KZ"
3 | }
4 |
--------------------------------------------------------------------------------
/src/Symfony/Component/Intl/Resources/data/locales/ks_IN.json:
--------------------------------------------------------------------------------
1 | {
2 | "%%ALIAS": "ks_Arab_IN"
3 | }
4 |
--------------------------------------------------------------------------------
/src/Symfony/Component/Intl/Resources/data/locales/ky_KG.json:
--------------------------------------------------------------------------------
1 | {
2 | "%%ALIAS": "ky_Cyrl_KG"
3 | }
4 |
--------------------------------------------------------------------------------
/src/Symfony/Component/Intl/Resources/data/locales/mn_MN.json:
--------------------------------------------------------------------------------
1 | {
2 | "%%ALIAS": "mn_Cyrl_MN"
3 | }
4 |
--------------------------------------------------------------------------------
/src/Symfony/Component/Intl/Resources/data/locales/ms_BN.json:
--------------------------------------------------------------------------------
1 | {
2 | "%%ALIAS": "ms_Latn_BN"
3 | }
4 |
--------------------------------------------------------------------------------
/src/Symfony/Component/Intl/Resources/data/locales/ms_MY.json:
--------------------------------------------------------------------------------
1 | {
2 | "%%ALIAS": "ms_Latn_MY"
3 | }
4 |
--------------------------------------------------------------------------------
/src/Symfony/Component/Intl/Resources/data/locales/ms_SG.json:
--------------------------------------------------------------------------------
1 | {
2 | "%%ALIAS": "ms_Latn_SG"
3 | }
4 |
--------------------------------------------------------------------------------
/src/Symfony/Component/Intl/Resources/data/locales/pa_IN.json:
--------------------------------------------------------------------------------
1 | {
2 | "%%ALIAS": "pa_Guru_IN"
3 | }
4 |
--------------------------------------------------------------------------------
/src/Symfony/Component/Intl/Resources/data/locales/pa_PK.json:
--------------------------------------------------------------------------------
1 | {
2 | "%%ALIAS": "pa_Arab_PK"
3 | }
4 |
--------------------------------------------------------------------------------
/src/Symfony/Component/Intl/Resources/data/locales/sh_BA.json:
--------------------------------------------------------------------------------
1 | {
2 | "%%ALIAS": "sr_Latn_BA"
3 | }
4 |
--------------------------------------------------------------------------------
/src/Symfony/Component/Intl/Resources/data/locales/sh_CS.json:
--------------------------------------------------------------------------------
1 | {
2 | "%%ALIAS": "sr_Latn_RS"
3 | }
4 |
--------------------------------------------------------------------------------
/src/Symfony/Component/Intl/Resources/data/locales/sh_YU.json:
--------------------------------------------------------------------------------
1 | {
2 | "%%ALIAS": "sr_Latn_RS"
3 | }
4 |
--------------------------------------------------------------------------------
/src/Symfony/Component/Intl/Resources/data/locales/sr_BA.json:
--------------------------------------------------------------------------------
1 | {
2 | "%%ALIAS": "sr_Cyrl_BA"
3 | }
4 |
--------------------------------------------------------------------------------
/src/Symfony/Component/Intl/Resources/data/locales/sr_CS.json:
--------------------------------------------------------------------------------
1 | {
2 | "%%ALIAS": "sr_Cyrl_RS"
3 | }
4 |
--------------------------------------------------------------------------------
/src/Symfony/Component/Intl/Resources/data/locales/sr_ME.json:
--------------------------------------------------------------------------------
1 | {
2 | "%%ALIAS": "sr_Latn_ME"
3 | }
4 |
--------------------------------------------------------------------------------
/src/Symfony/Component/Intl/Resources/data/locales/sr_RS.json:
--------------------------------------------------------------------------------
1 | {
2 | "%%ALIAS": "sr_Cyrl_RS"
3 | }
4 |
--------------------------------------------------------------------------------
/src/Symfony/Component/Intl/Resources/data/locales/sr_XK.json:
--------------------------------------------------------------------------------
1 | {
2 | "%%ALIAS": "sr_Cyrl_XK"
3 | }
4 |
--------------------------------------------------------------------------------
/src/Symfony/Component/Intl/Resources/data/locales/sr_YU.json:
--------------------------------------------------------------------------------
1 | {
2 | "%%ALIAS": "sr_Cyrl_RS"
3 | }
4 |
--------------------------------------------------------------------------------
/src/Symfony/Component/Intl/Resources/data/locales/ug_CN.json:
--------------------------------------------------------------------------------
1 | {
2 | "%%ALIAS": "ug_Arab_CN"
3 | }
4 |
--------------------------------------------------------------------------------
/src/Symfony/Component/Intl/Resources/data/locales/uz_AF.json:
--------------------------------------------------------------------------------
1 | {
2 | "%%ALIAS": "uz_Arab_AF"
3 | }
4 |
--------------------------------------------------------------------------------
/src/Symfony/Component/Intl/Resources/data/locales/uz_UZ.json:
--------------------------------------------------------------------------------
1 | {
2 | "%%ALIAS": "uz_Latn_UZ"
3 | }
4 |
--------------------------------------------------------------------------------
/src/Symfony/Component/Intl/Resources/data/locales/zh_CN.json:
--------------------------------------------------------------------------------
1 | {
2 | "%%ALIAS": "zh_Hans_CN"
3 | }
4 |
--------------------------------------------------------------------------------
/src/Symfony/Component/Intl/Resources/data/locales/zh_HK.json:
--------------------------------------------------------------------------------
1 | {
2 | "%%ALIAS": "zh_Hant_HK"
3 | }
4 |
--------------------------------------------------------------------------------
/src/Symfony/Component/Intl/Resources/data/locales/zh_MO.json:
--------------------------------------------------------------------------------
1 | {
2 | "%%ALIAS": "zh_Hant_MO"
3 | }
4 |
--------------------------------------------------------------------------------
/src/Symfony/Component/Intl/Resources/data/locales/zh_SG.json:
--------------------------------------------------------------------------------
1 | {
2 | "%%ALIAS": "zh_Hans_SG"
3 | }
4 |
--------------------------------------------------------------------------------
/src/Symfony/Component/Intl/Resources/data/locales/zh_TW.json:
--------------------------------------------------------------------------------
1 | {
2 | "%%ALIAS": "zh_Hant_TW"
3 | }
4 |
--------------------------------------------------------------------------------
/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/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/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/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/Descriptor/alias_2.md:
--------------------------------------------------------------------------------
1 | - Service: `service_2`
2 | - Public: no
--------------------------------------------------------------------------------
/src/Symfony/Bundle/FrameworkBundle/Tests/Fixtures/Resources/translations/messages.fr.yml:
--------------------------------------------------------------------------------
1 | folder: répertoire
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/Bundle/TwigBundle/Tests/Functional/Resources/views/index.html.twig:
--------------------------------------------------------------------------------
1 | {{ {a: 'b'}|yaml_encode }}
2 |
--------------------------------------------------------------------------------
/src/Symfony/Component/ClassLoader/Tests/Fixtures/classmap/notAClass.php:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/src/Symfony/Component/DependencyInjection/Tests/Fixtures/directory/recurse/simple.ini:
--------------------------------------------------------------------------------
1 | [parameters]
2 | ini = ini
3 |
--------------------------------------------------------------------------------
/src/Symfony/Component/Intl/Tests/Data/Bundle/Reader/Fixtures/txt/alias.txt:
--------------------------------------------------------------------------------
1 | alias{
2 | "%%ALIAS"{"ro"}
3 | }
4 |
--------------------------------------------------------------------------------
/src/Symfony/Bundle/FrameworkBundle/Resources/views/Form/hidden_row.html.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/Templating/Helper/Resources/Parent/form_label.html.php:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/src/Symfony/Bundle/TwigBundle/Resources/views/Exception/error.atom.twig:
--------------------------------------------------------------------------------
1 | {% include '@Twig/Exception/error.xml.twig' %}
2 |
--------------------------------------------------------------------------------
/src/Symfony/Bundle/TwigBundle/Resources/views/Exception/error.rdf.twig:
--------------------------------------------------------------------------------
1 | {% include '@Twig/Exception/error.xml.twig' %}
2 |
--------------------------------------------------------------------------------
/src/Symfony/Bundle/TwigBundle/Tests/Fixtures/templates/BarBundle/Resources/views/index.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/services7.yml:
--------------------------------------------------------------------------------
1 | services:
2 | foo: { class: BarClass }
3 |
--------------------------------------------------------------------------------
/src/Symfony/Component/Intl/Resources/data/regions/bo_IN.json:
--------------------------------------------------------------------------------
1 | {
2 | "Version": "2.1.6.69",
3 | "Names": []
4 | }
5 |
--------------------------------------------------------------------------------
/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/Bundle/TwigBundle/Resources/views/Exception/error.js.twig:
--------------------------------------------------------------------------------
1 | /*
2 | {{ status_code }} {{ status_text }}
3 |
4 | */
5 |
--------------------------------------------------------------------------------
/src/Symfony/Component/Asset/CHANGELOG.md:
--------------------------------------------------------------------------------
1 | CHANGELOG
2 | =========
3 |
4 | 2.7.0
5 | -----
6 |
7 | * added the component
8 |
--------------------------------------------------------------------------------
/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/Translation/Tests/fixtures/resources.php:
--------------------------------------------------------------------------------
1 | 'bar',
5 | );
6 |
--------------------------------------------------------------------------------
/src/Symfony/Bundle/FrameworkBundle/Tests/DependencyInjection/Fixtures/translations/test_paths.en.yml:
--------------------------------------------------------------------------------
1 | custom:
2 | paths: test
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/Resources/views/Exception/error.css.twig:
--------------------------------------------------------------------------------
1 | /*
2 | {{ status_code }} {{ status_text }}
3 |
4 | */
5 |
--------------------------------------------------------------------------------
/src/Symfony/Bundle/TwigBundle/Tests/DependencyInjection/Fixtures/Resources/TwigBundle/views/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/Routing/Tests/Fixtures/incomplete.yml:
--------------------------------------------------------------------------------
1 | blog_show:
2 | defaults: { _controller: MyBlogBundle:Blog:show }
3 |
--------------------------------------------------------------------------------
/src/Symfony/Bundle/FrameworkBundle/Resources/views/Form/repeated_row.html.php:
--------------------------------------------------------------------------------
1 | block($form, 'form_rows') ?>
2 |
--------------------------------------------------------------------------------
/src/Symfony/Bundle/FrameworkBundle/Tests/DependencyInjection/Fixtures/yml/csrf_needs_session.yml:
--------------------------------------------------------------------------------
1 | framework:
2 | csrf_protection: ~
3 |
--------------------------------------------------------------------------------
/src/Symfony/Bundle/FrameworkBundle/Tests/Functional/app/ConfigDump/config.yml:
--------------------------------------------------------------------------------
1 | imports:
2 | - { resource: ../config/default.yml }
3 |
--------------------------------------------------------------------------------
/src/Symfony/Bundle/FrameworkBundle/Tests/Functional/app/Session/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/ClassLoader/Tests/Fixtures/psr-4/Foo.php:
--------------------------------------------------------------------------------
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/xml/withdoctype.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
--------------------------------------------------------------------------------
/src/Symfony/Component/Routing/Tests/Fixtures/nonvalidkeys.yml:
--------------------------------------------------------------------------------
1 | someroute:
2 | resource: path/to/some.yml
3 | name_prefix: test_
4 |
--------------------------------------------------------------------------------
/.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/Resources/views/Form/attributes.html.php:
--------------------------------------------------------------------------------
1 | block($form, 'widget_attributes') ?>
2 |
--------------------------------------------------------------------------------
/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/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/TwigBundle/Tests/DependencyInjection/Fixtures/php/empty.php:
--------------------------------------------------------------------------------
1 | loadFromExtension('twig', array());
4 |
--------------------------------------------------------------------------------
/src/Symfony/Bundle/TwigBundle/Tests/DependencyInjection/Fixtures/yml/extra.yml:
--------------------------------------------------------------------------------
1 | twig:
2 | paths:
3 | namespaced_path3: namespace3
4 |
--------------------------------------------------------------------------------
/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/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/Translation/Tests/fixtures/plurals.po:
--------------------------------------------------------------------------------
1 | msgid "foo"
2 | msgid_plural "foos"
3 | msgstr[0] "bar"
4 | msgstr[1] "bars"
5 |
6 |
--------------------------------------------------------------------------------
/src/Symfony/Bridge/Twig/Tests/Extension/Fixtures/templates/form/page_dynamic_extends.html.twig:
--------------------------------------------------------------------------------
1 | {% extends dynamic_template_name ~ '.html.twig' %}
2 |
--------------------------------------------------------------------------------
/src/Symfony/Bundle/FrameworkBundle/Resources/views/Form/choice_options.html.php:
--------------------------------------------------------------------------------
1 | block($form, 'choice_widget_options') ?>
2 |
--------------------------------------------------------------------------------
/src/Symfony/Bundle/FrameworkBundle/Tests/Fixtures/Descriptor/alias_1.txt:
--------------------------------------------------------------------------------
1 |
2 | // This service is an alias for the service [32mservice_1[39m
3 |
4 |
--------------------------------------------------------------------------------
/src/Symfony/Bundle/FrameworkBundle/Tests/Fixtures/Descriptor/alias_2.txt:
--------------------------------------------------------------------------------
1 |
2 | // This service is an alias for the service [32mservice_2[39m
3 |
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/Component/ClassLoader/Tests/Fixtures/Pearlike/Bar.php:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/src/Symfony/Component/Config/Tests/Fixtures/Util/valid.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
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/Intl/Resources/data/languages/gv.json:
--------------------------------------------------------------------------------
1 | {
2 | "Version": "2.1.6.69",
3 | "Names": {
4 | "gv": "Gaelg"
5 | }
6 | }
7 |
--------------------------------------------------------------------------------
/src/Symfony/Component/Intl/Resources/data/scripts/as.json:
--------------------------------------------------------------------------------
1 | {
2 | "Version": "2.1.7.39",
3 | "Names": {
4 | "Beng": "বঙালী"
5 | }
6 | }
7 |
--------------------------------------------------------------------------------
/src/Symfony/Component/Intl/Resources/data/scripts/om.json:
--------------------------------------------------------------------------------
1 | {
2 | "Version": "2.1.6.69",
3 | "Names": {
4 | "Latn": "Latin"
5 | }
6 | }
7 |
--------------------------------------------------------------------------------
/src/Symfony/Component/Intl/Resources/data/scripts/ps.json:
--------------------------------------------------------------------------------
1 | {
2 | "Version": "2.1.6.69",
3 | "Names": {
4 | "Arab": "عربي"
5 | }
6 | }
7 |
--------------------------------------------------------------------------------
/src/Symfony/Component/Routing/Tests/Fixtures/bad_format.yml:
--------------------------------------------------------------------------------
1 | blog_show:
2 | path: /blog/{slug}
3 | defaults: { _controller: "MyBundle:Blog:show" }
4 |
--------------------------------------------------------------------------------
/src/Symfony/Bridge/ProxyManager/CHANGELOG.md:
--------------------------------------------------------------------------------
1 | CHANGELOG
2 | =========
3 |
4 | 2.3.0
5 | -----
6 |
7 | * First introduction of `Symfony\Bridge\ProxyManager`
8 |
--------------------------------------------------------------------------------
/src/Symfony/Bundle/FrameworkBundle/Resources/views/Form/container_attributes.html.php:
--------------------------------------------------------------------------------
1 | block($form, 'widget_container_attributes') ?>
2 |
--------------------------------------------------------------------------------
/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/alias_2.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/Bundle/TwigBundle/Resources/views/Exception/exception.atom.twig:
--------------------------------------------------------------------------------
1 | {% include '@Twig/Exception/exception.xml.twig' with { 'exception': exception } %}
2 |
--------------------------------------------------------------------------------
/src/Symfony/Bundle/TwigBundle/Resources/views/Exception/exception.rdf.twig:
--------------------------------------------------------------------------------
1 | {% include '@Twig/Exception/exception.xml.twig' with { 'exception': exception } %}
2 |
--------------------------------------------------------------------------------
/src/Symfony/Component/ClassLoader/Tests/Fixtures/Apc/Pearlike/Bar.php:
--------------------------------------------------------------------------------
1 | vars['multipart']): ?>enctype="multipart/form-data"
2 |
--------------------------------------------------------------------------------
/src/Symfony/Bundle/FrameworkBundle/Tests/DependencyInjection/Fixtures/php/default_config.php:
--------------------------------------------------------------------------------
1 | loadFromExtension('framework', array());
4 |
--------------------------------------------------------------------------------
/src/Symfony/Bundle/FrameworkBundle/Tests/DependencyInjection/Fixtures/yml/translator_fallbacks.yml:
--------------------------------------------------------------------------------
1 | framework:
2 | translator:
3 | fallbacks: [en, fr]
4 |
--------------------------------------------------------------------------------
/src/Symfony/Component/ClassLoader/Tests/Fixtures/fallback/Pearlike/FooBar.php:
--------------------------------------------------------------------------------
1 | argument_name argument description [default: "default_value"]
2 |
--------------------------------------------------------------------------------
/src/Symfony/Component/Console/Tests/Fixtures/input_argument_4.txt:
--------------------------------------------------------------------------------
1 | argument_name multiline
2 | argument description
3 |
--------------------------------------------------------------------------------
/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/Component/ClassLoader/Tests/Fixtures/ClassesWithParents/B.php:
--------------------------------------------------------------------------------
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/Bundle/TwigBundle/Resources/views/Exception/exception.css.twig:
--------------------------------------------------------------------------------
1 | /*
2 | {% include '@Twig/Exception/exception.txt.twig' with { 'exception': exception } %}
3 | */
4 |
--------------------------------------------------------------------------------
/src/Symfony/Bundle/TwigBundle/Resources/views/Exception/exception.js.twig:
--------------------------------------------------------------------------------
1 | /*
2 | {% include '@Twig/Exception/exception.txt.twig' with { 'exception': exception } %}
3 | */
4 |
--------------------------------------------------------------------------------
/src/Symfony/Component/ClassLoader/Tests/Fixtures/alpha/PrefixCollision/A/Bar.php:
--------------------------------------------------------------------------------
1 | {{ global }}child
3 | {% endblock form_label %}
4 |
--------------------------------------------------------------------------------
/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/SecurityBundle/Tests/Functional/app/CsrfFormLogin/routing.yml:
--------------------------------------------------------------------------------
1 | _csrf_form_login_bundle:
2 | resource: '@CsrfFormLoginBundle/Resources/config/routing.yml'
3 |
--------------------------------------------------------------------------------
/src/Symfony/Component/ClassLoader/Tests/Fixtures/Apc/fallback/Apc/Pearlike/FooBar.php:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/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/Debug/Tests/Fixtures/psr4/Psr4CaseMismatch.php:
--------------------------------------------------------------------------------
1 | array(
5 | 'NestedEntry' => 'Value',
6 | ),
7 | );
8 |
--------------------------------------------------------------------------------
/src/Symfony/Bundle/FrameworkBundle/Tests/Fixtures/Descriptor/callable_7.md:
--------------------------------------------------------------------------------
1 |
2 | - Type: `object`
3 | - Name: `Symfony\Bundle\FrameworkBundle\Tests\Console\Descriptor\CallableClass`
4 |
--------------------------------------------------------------------------------
/src/Symfony/Bundle/FrameworkBundle/Tests/Templating/Helper/Resources/Custom/_text_id_widget.html.php:
--------------------------------------------------------------------------------
1 |
2 | widget($form) ?>
3 |
4 |
--------------------------------------------------------------------------------
/src/Symfony/Component/Intl/Resources/data/locales/kl.json:
--------------------------------------------------------------------------------
1 | {
2 | "Names": {
3 | "kl": "kalaallisut",
4 | "kl_GL": "kalaallisut (Kalaallit Nunaat)"
5 | }
6 | }
7 |
--------------------------------------------------------------------------------
/src/Symfony/Component/Intl/Resources/data/regions/rw.json:
--------------------------------------------------------------------------------
1 | {
2 | "Version": "2.1.7.39",
3 | "Names": {
4 | "RW": "Rwanda",
5 | "TO": "Igitonga"
6 | }
7 | }
8 |
--------------------------------------------------------------------------------
/src/Symfony/Component/Intl/Resources/data/regions/zh_SG.json:
--------------------------------------------------------------------------------
1 | {
2 | "Version": "2.1.8.19",
3 | "Names": {
4 | "ME": "黑山",
5 | "PM": "圣皮埃尔和密克隆"
6 | }
7 | }
8 |
--------------------------------------------------------------------------------
/src/Symfony/Component/Intl/Tests/Data/Bundle/Reader/Fixtures/en.res:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/webmozart/symfony/HEAD/src/Symfony/Component/Intl/Tests/Data/Bundle/Reader/Fixtures/en.res
--------------------------------------------------------------------------------
/src/Symfony/Component/Intl/Tests/Data/Bundle/Writer/Fixtures/en.res:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/webmozart/symfony/HEAD/src/Symfony/Component/Intl/Tests/Data/Bundle/Writer/Fixtures/en.res
--------------------------------------------------------------------------------
/src/Symfony/Component/Intl/Tests/Data/Bundle/Writer/Fixtures/rb.res:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/webmozart/symfony/HEAD/src/Symfony/Component/Intl/Tests/Data/Bundle/Writer/Fixtures/rb.res
--------------------------------------------------------------------------------
/src/Symfony/Component/Validator/Tests/Constraints/Fixtures/test.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/webmozart/symfony/HEAD/src/Symfony/Component/Validator/Tests/Constraints/Fixtures/test.gif
--------------------------------------------------------------------------------
/src/Symfony/Bundle/FrameworkBundle/Resources/views/Form/form_rows.html.php:
--------------------------------------------------------------------------------
1 |
2 | row($child) ?>
3 |
4 |
--------------------------------------------------------------------------------
/src/Symfony/Bundle/FrameworkBundle/Resources/views/Form/money_widget.html.php:
--------------------------------------------------------------------------------
1 | block($form, 'form_widget_simple'), $money_pattern) ?>
2 |
--------------------------------------------------------------------------------
/src/Symfony/Bundle/FrameworkBundle/Resources/views/Form/range_widget.html.php:
--------------------------------------------------------------------------------
1 | block($form, 'form_widget_simple', array('type' => isset($type) ? $type : 'range'));
2 |
--------------------------------------------------------------------------------
/src/Symfony/Bundle/FrameworkBundle/Resources/views/Form/reset_widget.html.php:
--------------------------------------------------------------------------------
1 | block($form, 'button_widget', array('type' => isset($type) ? $type : 'reset')) ?>
2 |
--------------------------------------------------------------------------------
/src/Symfony/Bundle/FrameworkBundle/Resources/views/Form/submit_widget.html.php:
--------------------------------------------------------------------------------
1 | block($form, 'button_widget', array('type' => isset($type) ? $type : 'submit')) ?>
2 |
--------------------------------------------------------------------------------
/src/Symfony/Bundle/FrameworkBundle/Resources/views/Form/url_widget.html.php:
--------------------------------------------------------------------------------
1 | block($form, 'form_widget_simple', array('type' => isset($type) ? $type : 'url')) ?>
2 |
--------------------------------------------------------------------------------
/src/Symfony/Component/ClassLoader/Tests/Fixtures/Apc/alpha/Apc/ApcPrefixCollision/A/Bar.php:
--------------------------------------------------------------------------------
1 | -o, --option_name=OPTION_NAME multiline
2 | option description
3 |
--------------------------------------------------------------------------------
/src/Symfony/Component/Intl/Resources/data/regions/zh_Hans_MO.json:
--------------------------------------------------------------------------------
1 | {
2 | "Version": "2.1.8.19",
3 | "Names": {
4 | "ME": "黑山",
5 | "PM": "圣皮埃尔和密克隆"
6 | }
7 | }
8 |
--------------------------------------------------------------------------------
/src/Symfony/Component/Intl/Resources/data/regions/zh_Hans_SG.json:
--------------------------------------------------------------------------------
1 | {
2 | "Version": "2.1.8.19",
3 | "Names": {
4 | "ME": "黑山",
5 | "PM": "圣皮埃尔和密克隆"
6 | }
7 | }
8 |
--------------------------------------------------------------------------------
/src/Symfony/Component/Intl/Resources/data/scripts/pa_Arab.json:
--------------------------------------------------------------------------------
1 | {
2 | "Version": "2.1.6.69",
3 | "Names": {
4 | "Arab": "عربی",
5 | "Guru": "گُرمُکھی"
6 | }
7 | }
8 |
--------------------------------------------------------------------------------
/src/Symfony/Component/Intl/Resources/data/scripts/sv_FI.json:
--------------------------------------------------------------------------------
1 | {
2 | "Version": "2.1.8.19",
3 | "Names": {
4 | "Hrkt": "kana",
5 | "Mero": "meroitiska"
6 | }
7 | }
8 |
--------------------------------------------------------------------------------
/src/Symfony/Component/Translation/Tests/fixtures/empty-translation.mo:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/webmozart/symfony/HEAD/src/Symfony/Component/Translation/Tests/fixtures/empty-translation.mo
--------------------------------------------------------------------------------
/.editorconfig:
--------------------------------------------------------------------------------
1 | ; top-most EditorConfig file
2 | root = true
3 |
4 | ; Unix-style newlines
5 | [*]
6 | end_of_line = LF
7 |
8 | [*.php]
9 | indent_style = space
10 | indent_size = 4
11 |
--------------------------------------------------------------------------------
/src/Symfony/Bundle/FrameworkBundle/Resources/views/Form/email_widget.html.php:
--------------------------------------------------------------------------------
1 | block($form, 'form_widget_simple', array('type' => isset($type) ? $type : 'email')) ?>
2 |
--------------------------------------------------------------------------------
/src/Symfony/Bundle/FrameworkBundle/Resources/views/Form/hidden_widget.html.php:
--------------------------------------------------------------------------------
1 | block($form, 'form_widget_simple', array('type' => isset($type) ? $type : 'hidden')) ?>
2 |
--------------------------------------------------------------------------------
/src/Symfony/Bundle/FrameworkBundle/Resources/views/Form/integer_widget.html.php:
--------------------------------------------------------------------------------
1 | block($form, 'form_widget_simple', array('type' => isset($type) ? $type : 'number')) ?>
2 |
--------------------------------------------------------------------------------
/src/Symfony/Bundle/FrameworkBundle/Resources/views/Form/number_widget.html.php:
--------------------------------------------------------------------------------
1 | block($form, 'form_widget_simple', array('type' => isset($type) ? $type : 'text')) ?>
2 |
--------------------------------------------------------------------------------
/src/Symfony/Bundle/FrameworkBundle/Resources/views/Form/percent_widget.html.php:
--------------------------------------------------------------------------------
1 | block($form, 'form_widget_simple', array('type' => isset($type) ? $type : 'text')) ?> %
2 |
--------------------------------------------------------------------------------
/src/Symfony/Bundle/FrameworkBundle/Resources/views/Form/search_widget.html.php:
--------------------------------------------------------------------------------
1 | block($form, 'form_widget_simple', array('type' => isset($type) ? $type : 'search')) ?>
2 |
--------------------------------------------------------------------------------
/src/Symfony/Bundle/TwigBundle/Resources/views/Exception/error.xml.twig:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
--------------------------------------------------------------------------------
/src/Symfony/Bundle/TwigBundle/Resources/views/Exception/exception.json.twig:
--------------------------------------------------------------------------------
1 | {{ { 'error': { 'code': status_code, 'message': status_text, 'exception': exception.toarray } }|json_encode|raw }}
2 |
--------------------------------------------------------------------------------
/src/Symfony/Component/ClassLoader/Tests/Fixtures/Apc/beta/Apc/ApcPrefixCollision/A/B/Bar.php:
--------------------------------------------------------------------------------
1 | Usage:
2 | descriptor:command1
3 | alias1
4 | alias2
5 |
6 | Help:
7 | command 1 help
8 |
--------------------------------------------------------------------------------
/src/Symfony/Component/Console/Tests/Fixtures/input_argument_3.json:
--------------------------------------------------------------------------------
1 | {"name":"argument_name","is_required":false,"is_array":false,"description":"argument description","default":"default_value"}
2 |
--------------------------------------------------------------------------------
/src/Symfony/Component/Debug/Tests/Fixtures/ClassAlias.php:
--------------------------------------------------------------------------------
1 | block($form, 'form_widget_simple', array('type' => isset($type) ? $type : 'password')) ?>
2 |
--------------------------------------------------------------------------------
/src/Symfony/Bundle/FrameworkBundle/Resources/views/FormTable/button_row.html.php:
--------------------------------------------------------------------------------
1 |
2 | |
3 |
4 | widget($form) ?>
5 | |
6 |
7 |
--------------------------------------------------------------------------------
/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/Component/ClassLoader/Tests/Fixtures/alpha/NamespaceCollision/C/Bar.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/SecurityBundle/Tests/DependencyInjection/Fixtures/yml/custom_acl_provider.yml:
--------------------------------------------------------------------------------
1 | imports:
2 | - { resource: container1.yml }
3 |
4 | security:
5 | acl:
6 | provider: foo
7 |
--------------------------------------------------------------------------------
/src/Symfony/Component/ClassLoader/Tests/Fixtures/beta/NamespaceCollision/C/B/Bar.php:
--------------------------------------------------------------------------------
1 |
7 | * Default: `NULL`
8 |
--------------------------------------------------------------------------------
/src/Symfony/Component/Intl/Resources/data/languages/de_CH.json:
--------------------------------------------------------------------------------
1 | {
2 | "Version": "2.1.8.21",
3 | "Names": {
4 | "be": "Weissrussisch",
5 | "prg": "Altpreussisch"
6 | }
7 | }
8 |
--------------------------------------------------------------------------------
/src/Symfony/Component/Intl/Resources/data/languages/en_AU.json:
--------------------------------------------------------------------------------
1 | {
2 | "Version": "2.1.8.19",
3 | "Names": {
4 | "bax": "Bamum",
5 | "en_US": "United States English"
6 | }
7 | }
8 |
--------------------------------------------------------------------------------
/src/Symfony/Component/Validator/Tests/Constraints/Fixtures/test_landscape.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/webmozart/symfony/HEAD/src/Symfony/Component/Validator/Tests/Constraints/Fixtures/test_landscape.gif
--------------------------------------------------------------------------------
/src/Symfony/Component/Validator/Tests/Constraints/Fixtures/test_portrait.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/webmozart/symfony/HEAD/src/Symfony/Component/Validator/Tests/Constraints/Fixtures/test_portrait.gif
--------------------------------------------------------------------------------
/src/Symfony/Bundle/FrameworkBundle/Resources/public/images/blue_picto_less.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/webmozart/symfony/HEAD/src/Symfony/Bundle/FrameworkBundle/Resources/public/images/blue_picto_less.gif
--------------------------------------------------------------------------------
/src/Symfony/Bundle/FrameworkBundle/Resources/public/images/blue_picto_more.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/webmozart/symfony/HEAD/src/Symfony/Bundle/FrameworkBundle/Resources/public/images/blue_picto_more.gif
--------------------------------------------------------------------------------
/src/Symfony/Bundle/FrameworkBundle/Resources/views/Form/form.html.php:
--------------------------------------------------------------------------------
1 | start($form) ?>
2 | widget($form) ?>
3 | end($form) ?>
4 |
--------------------------------------------------------------------------------
/src/Symfony/Component/Console/Tests/Fixtures/input_definition_2.json:
--------------------------------------------------------------------------------
1 | {"arguments":{"argument_name":{"name":"argument_name","is_required":true,"is_array":false,"description":"","default":null}},"options":[]}
2 |
--------------------------------------------------------------------------------
/src/Symfony/Component/Console/Tests/Fixtures/input_option_1.json:
--------------------------------------------------------------------------------
1 | {"name":"--option_name","shortcut":"-o","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"","default":false}
2 |
--------------------------------------------------------------------------------
/src/Symfony/Component/DependencyInjection/Tests/Fixtures/yaml/badtag4.yml:
--------------------------------------------------------------------------------
1 | services:
2 | foo_service:
3 | class: FooClass
4 | tags:
5 | # tag is not an array
6 | - foo
7 |
--------------------------------------------------------------------------------
/src/Symfony/Bundle/FrameworkBundle/Resources/views/FormTable/hidden_row.html.php:
--------------------------------------------------------------------------------
1 |
2 | |
3 | widget($form) ?>
4 | |
5 |
6 |
--------------------------------------------------------------------------------
/src/Symfony/Bundle/FrameworkBundle/Tests/DependencyInjection/Fixtures/yml/property_accessor.yml:
--------------------------------------------------------------------------------
1 | framework:
2 | property_access:
3 | magic_call: true
4 | throw_exception_on_invalid_index: true
5 |
--------------------------------------------------------------------------------
/src/Symfony/Component/Console/Tests/Fixtures/Style/SymfonyStyle/output/output_0.txt:
--------------------------------------------------------------------------------
1 |
2 | ! [CAUTION] Lorem ipsum dolor sit amet
3 |
4 |
--------------------------------------------------------------------------------
/src/Symfony/Component/Console/Tests/Fixtures/input_definition_4.txt:
--------------------------------------------------------------------------------
1 | Arguments:
2 | argument_name
3 |
4 | Options:
5 | -o, --option_name
6 |
--------------------------------------------------------------------------------
/src/Symfony/Component/DependencyInjection/Tests/Fixtures/yaml/bad_types1.yml:
--------------------------------------------------------------------------------
1 | services:
2 | foo_service:
3 | class: FooClass
4 | # types is not an array
5 | autowiring_types: 1
6 |
--------------------------------------------------------------------------------
/src/Symfony/Component/Form/Tests/Extension/Core/EventListener/Fixtures/randomhash:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/webmozart/symfony/HEAD/src/Symfony/Component/Form/Tests/Extension/Core/EventListener/Fixtures/randomhash
--------------------------------------------------------------------------------
/src/Symfony/Component/Intl/Resources/data/languages/nl_BE.json:
--------------------------------------------------------------------------------
1 | {
2 | "Version": "2.1.8.19",
3 | "Names": {
4 | "oc": "Occitaans; Provençaals",
5 | "sh": "Servo-Kroatisch"
6 | }
7 | }
8 |
--------------------------------------------------------------------------------
/src/Symfony/Component/Intl/Resources/data/languages/uz_Arab.json:
--------------------------------------------------------------------------------
1 | {
2 | "Version": "2.1.6.69",
3 | "Names": {
4 | "fa": "دری",
5 | "ps": "پشتو",
6 | "uz": "اوزبیک"
7 | }
8 | }
9 |
--------------------------------------------------------------------------------
/src/Symfony/Component/Intl/Resources/data/regions/zh_Hans_HK.json:
--------------------------------------------------------------------------------
1 | {
2 | "Version": "2.1.8.19",
3 | "Names": {
4 | "GP": "瓜德罗普岛",
5 | "ME": "黑山",
6 | "PM": "圣皮埃尔和密克隆"
7 | }
8 | }
9 |
--------------------------------------------------------------------------------
/src/Symfony/Component/Translation/Tests/fixtures/resourcebundle/dat/resources.dat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/webmozart/symfony/HEAD/src/Symfony/Component/Translation/Tests/fixtures/resourcebundle/dat/resources.dat
--------------------------------------------------------------------------------
/src/Symfony/Component/VarDumper/CHANGELOG.md:
--------------------------------------------------------------------------------
1 | CHANGELOG
2 | =========
3 |
4 | 2.7.0
5 | -----
6 |
7 | * deprecated Cloner\Data::getLimitedClone(). Use withMaxDepth, withMaxItemsPerDepth or withRefHandles instead.
8 |
--------------------------------------------------------------------------------
/src/Symfony/Component/Console/Tests/Fixtures/input_option_4.json:
--------------------------------------------------------------------------------
1 | {"name":"--option_name","shortcut":"-o","accept_value":true,"is_value_required":false,"is_multiple":true,"description":"option description","default":[]}
2 |
--------------------------------------------------------------------------------
/src/Symfony/Component/Debug/Tests/Fixtures/NonDeprecatedInterface.php:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/src/Symfony/Bundle/FrameworkBundle/Tests/Functional/app/Fragment/config.yml:
--------------------------------------------------------------------------------
1 | imports:
2 | - { resource: ../config/default.yml }
3 |
4 | framework:
5 | fragments: ~
6 | templating:
7 | engines: ['php']
8 |
--------------------------------------------------------------------------------
/src/Symfony/Bundle/FrameworkBundle/Tests/Functional/app/Profiler/config.yml:
--------------------------------------------------------------------------------
1 | imports:
2 | - { resource: ../config/default.yml }
3 |
4 | framework:
5 | profiler:
6 | enabled: true
7 | collect: false
8 |
--------------------------------------------------------------------------------
/src/Symfony/Component/Console/Tests/Fixtures/input_argument_2.md:
--------------------------------------------------------------------------------
1 | **argument_name:**
2 |
3 | * Name: argument_name
4 | * Is required: no
5 | * Is array: yes
6 | * Description: argument description
7 | * Default: `array ()`
8 |
--------------------------------------------------------------------------------
/src/Symfony/Component/Console/Tests/Fixtures/input_option_3.json:
--------------------------------------------------------------------------------
1 | {"name":"--option_name","shortcut":"-o","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"option description","default":null}
2 |
--------------------------------------------------------------------------------
/src/Symfony/Component/DependencyInjection/Tests/Fixtures/yaml/services24.yml:
--------------------------------------------------------------------------------
1 |
2 | services:
3 | foo:
4 | class: Foo
5 | autowire: true
6 | autowiring_types:
7 | - A
8 | - B
9 |
--------------------------------------------------------------------------------
/src/Symfony/Component/Intl/Resources/data/currencies/az_Cyrl.json:
--------------------------------------------------------------------------------
1 | {
2 | "Version": "2.1.6.69",
3 | "Names": {
4 | "AZN": [
5 | "ман.",
6 | "AZN"
7 | ]
8 | }
9 | }
10 |
--------------------------------------------------------------------------------
/src/Symfony/Component/Intl/Resources/data/currencies/bo_IN.json:
--------------------------------------------------------------------------------
1 | {
2 | "Version": "2.1.6.69",
3 | "Names": {
4 | "CNY": [
5 | "CN¥",
6 | "ཡུ་ཨན་"
7 | ]
8 | }
9 | }
10 |
--------------------------------------------------------------------------------
/src/Symfony/Component/Intl/Resources/data/currencies/ff_GN.json:
--------------------------------------------------------------------------------
1 | {
2 | "Version": "2.1.6.69",
3 | "Names": {
4 | "GNF": [
5 | "FG",
6 | "GNF"
7 | ]
8 | }
9 | }
10 |
--------------------------------------------------------------------------------
/src/Symfony/Component/Intl/Resources/data/currencies/ha_GH.json:
--------------------------------------------------------------------------------
1 | {
2 | "Version": "2.1.6.69",
3 | "Names": {
4 | "GHS": [
5 | "GH₵",
6 | "GHS"
7 | ]
8 | }
9 | }
10 |
--------------------------------------------------------------------------------
/src/Symfony/Component/Intl/Resources/data/currencies/om_KE.json:
--------------------------------------------------------------------------------
1 | {
2 | "Version": "2.1.6.69",
3 | "Names": {
4 | "KES": [
5 | "Ksh",
6 | "KES"
7 | ]
8 | }
9 | }
10 |
--------------------------------------------------------------------------------
/src/Symfony/Component/Intl/Resources/data/currencies/os_RU.json:
--------------------------------------------------------------------------------
1 | {
2 | "Version": "2.1.6.69",
3 | "Names": {
4 | "RUB": [
5 | "руб.",
6 | "Сом"
7 | ]
8 | }
9 | }
10 |
--------------------------------------------------------------------------------
/src/Symfony/Component/Intl/Resources/data/currencies/so_KE.json:
--------------------------------------------------------------------------------
1 | {
2 | "Version": "2.1.6.69",
3 | "Names": {
4 | "KES": [
5 | "Ksh",
6 | "KES"
7 | ]
8 | }
9 | }
10 |
--------------------------------------------------------------------------------
/src/Symfony/Component/Intl/Resources/data/currencies/ti_ER.json:
--------------------------------------------------------------------------------
1 | {
2 | "Version": "2.1.6.69",
3 | "Names": {
4 | "ERN": [
5 | "Nfk",
6 | "ERN"
7 | ]
8 | }
9 | }
10 |
--------------------------------------------------------------------------------
/src/Symfony/Component/Intl/Resources/data/currencies/uz_Arab.json:
--------------------------------------------------------------------------------
1 | {
2 | "Version": "2.1.6.69",
3 | "Names": {
4 | "AFN": [
5 | "؋",
6 | "افغانی"
7 | ]
8 | }
9 | }
10 |
--------------------------------------------------------------------------------
/src/Symfony/Component/Intl/Resources/data/currencies/zh_MO.json:
--------------------------------------------------------------------------------
1 | {
2 | "Version": "2.1.8.19",
3 | "Names": {
4 | "MOP": [
5 | "MOP$",
6 | "澳門元"
7 | ]
8 | }
9 | }
10 |
--------------------------------------------------------------------------------
/src/Symfony/Component/Intl/Resources/data/languages/ru_UA.json:
--------------------------------------------------------------------------------
1 | {
2 | "Version": "2.1.8.19",
3 | "Names": {
4 | "den": "слэйви",
5 | "mh": "маршальский",
6 | "tlh": "клингон"
7 | }
8 | }
9 |
--------------------------------------------------------------------------------
/src/Symfony/Component/Intl/Resources/data/scripts/es_419.json:
--------------------------------------------------------------------------------
1 | {
2 | "Version": "2.1.8.19",
3 | "Names": {
4 | "Laoo": "laosiano",
5 | "Mlym": "malayalam",
6 | "Sinh": "sinhala"
7 | }
8 | }
9 |
--------------------------------------------------------------------------------
/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/TwigBundle/Tests/DependencyInjection/Fixtures/yml/customTemplateEscapingGuesser.yml:
--------------------------------------------------------------------------------
1 | twig:
2 | autoescape_service: my_project.some_bundle.template_escaping_guesser
3 | autoescape_service_method: guess
4 |
--------------------------------------------------------------------------------
/src/Symfony/Component/Console/Tests/Fixtures/input_argument_3.md:
--------------------------------------------------------------------------------
1 | **argument_name:**
2 |
3 | * Name: argument_name
4 | * Is required: no
5 | * Is array: no
6 | * Description: argument description
7 | * Default: `'default_value'`
8 |
--------------------------------------------------------------------------------
/src/Symfony/Component/DependencyInjection/Tests/Fixtures/yaml/bad_types2.yml:
--------------------------------------------------------------------------------
1 | services:
2 | foo_service:
3 | class: FooClass
4 | # autowiring_types is not a string
5 | autowiring_types: [ 1 ]
6 |
--------------------------------------------------------------------------------
/src/Symfony/Component/Intl/Resources/data/currencies/ar_DJ.json:
--------------------------------------------------------------------------------
1 | {
2 | "Version": "2.1.6.69",
3 | "Names": {
4 | "DJF": [
5 | "Fdj",
6 | "فرنك جيبوتي"
7 | ]
8 | }
9 | }
10 |
--------------------------------------------------------------------------------
/src/Symfony/Component/Intl/Resources/data/currencies/ar_LB.json:
--------------------------------------------------------------------------------
1 | {
2 | "Version": "2.1.8.19",
3 | "Names": {
4 | "SDG": [
5 | "SDG",
6 | "جنيه سوداني"
7 | ]
8 | }
9 | }
10 |
--------------------------------------------------------------------------------
/src/Symfony/Component/Intl/Resources/data/currencies/ar_SO.json:
--------------------------------------------------------------------------------
1 | {
2 | "Version": "2.1.6.69",
3 | "Names": {
4 | "SOS": [
5 | "S",
6 | "شلن صومالي"
7 | ]
8 | }
9 | }
10 |
--------------------------------------------------------------------------------
/src/Symfony/Component/Intl/Resources/data/currencies/ca_FR.json:
--------------------------------------------------------------------------------
1 | {
2 | "Version": "2.1.6.69",
3 | "Names": {
4 | "FRF": [
5 | "F",
6 | "franc francès"
7 | ]
8 | }
9 | }
10 |
--------------------------------------------------------------------------------
/src/Symfony/Component/Intl/Resources/data/currencies/en_001.json:
--------------------------------------------------------------------------------
1 | {
2 | "Version": "2.1.6.69",
3 | "Names": {
4 | "USD": [
5 | "US$",
6 | "US Dollar"
7 | ]
8 | }
9 | }
10 |
--------------------------------------------------------------------------------
/src/Symfony/Component/Intl/Resources/data/currencies/en_BZ.json:
--------------------------------------------------------------------------------
1 | {
2 | "Version": "2.1.6.69",
3 | "Names": {
4 | "BZD": [
5 | "$",
6 | "Belize Dollar"
7 | ]
8 | }
9 | }
10 |
--------------------------------------------------------------------------------
/src/Symfony/Component/Intl/Resources/data/currencies/en_FJ.json:
--------------------------------------------------------------------------------
1 | {
2 | "Version": "2.1.6.69",
3 | "Names": {
4 | "FJD": [
5 | "$",
6 | "Fijian Dollar"
7 | ]
8 | }
9 | }
10 |
--------------------------------------------------------------------------------
/src/Symfony/Component/Intl/Resources/data/currencies/en_NH.json:
--------------------------------------------------------------------------------
1 | {
2 | "Version": "2.1.6.69",
3 | "Names": {
4 | "VUV": [
5 | "VT",
6 | "Vanuatu Vatu"
7 | ]
8 | }
9 | }
10 |
--------------------------------------------------------------------------------
/src/Symfony/Component/Intl/Resources/data/currencies/en_VU.json:
--------------------------------------------------------------------------------
1 | {
2 | "Version": "2.1.6.69",
3 | "Names": {
4 | "VUV": [
5 | "VT",
6 | "Vanuatu Vatu"
7 | ]
8 | }
9 | }
10 |
--------------------------------------------------------------------------------
/src/Symfony/Component/Intl/Resources/data/currencies/en_WS.json:
--------------------------------------------------------------------------------
1 | {
2 | "Version": "2.1.6.69",
3 | "Names": {
4 | "WST": [
5 | "WS$",
6 | "Samoan Tala"
7 | ]
8 | }
9 | }
10 |
--------------------------------------------------------------------------------
/src/Symfony/Component/Intl/Resources/data/currencies/es_BO.json:
--------------------------------------------------------------------------------
1 | {
2 | "Version": "2.1.6.69",
3 | "Names": {
4 | "BOB": [
5 | "Bs",
6 | "boliviano"
7 | ]
8 | }
9 | }
10 |
--------------------------------------------------------------------------------
/src/Symfony/Component/Intl/Resources/data/currencies/es_PH.json:
--------------------------------------------------------------------------------
1 | {
2 | "Version": "2.1.6.69",
3 | "Names": {
4 | "PHP": [
5 | "₱",
6 | "peso filipino"
7 | ]
8 | }
9 | }
10 |
--------------------------------------------------------------------------------
/src/Symfony/Component/Intl/Resources/data/currencies/ha_Latn_GH.json:
--------------------------------------------------------------------------------
1 | {
2 | "Version": "2.1.6.69",
3 | "Names": {
4 | "GHS": [
5 | "GH₵",
6 | "GHS"
7 | ]
8 | }
9 | }
10 |
--------------------------------------------------------------------------------
/src/Symfony/Component/Intl/Resources/data/currencies/mo.json:
--------------------------------------------------------------------------------
1 | {
2 | "Version": "2.1.6.69",
3 | "Names": {
4 | "MDL": [
5 | "L",
6 | "leu moldovenesc"
7 | ]
8 | }
9 | }
10 |
--------------------------------------------------------------------------------
/src/Symfony/Component/Intl/Resources/data/currencies/ms_BN.json:
--------------------------------------------------------------------------------
1 | {
2 | "Version": "2.1.6.69",
3 | "Names": {
4 | "BND": [
5 | "$",
6 | "Dolar Brunei"
7 | ]
8 | }
9 | }
10 |
--------------------------------------------------------------------------------
/src/Symfony/Component/Intl/Resources/data/currencies/zh_Hant_MO.json:
--------------------------------------------------------------------------------
1 | {
2 | "Version": "2.1.8.19",
3 | "Names": {
4 | "MOP": [
5 | "MOP$",
6 | "澳門元"
7 | ]
8 | }
9 | }
10 |
--------------------------------------------------------------------------------
/src/Symfony/Component/Intl/Resources/data/locales/en_AU.json:
--------------------------------------------------------------------------------
1 | {
2 | "Names": {
3 | "en_UM": "English (U.S. Minor Outlying Islands)",
4 | "en_VC": "English (Saint Vincent and the Grenadines)"
5 | }
6 | }
7 |
--------------------------------------------------------------------------------
/src/Symfony/Component/Translation/Tests/fixtures/resources.po:
--------------------------------------------------------------------------------
1 | msgid ""
2 | msgstr ""
3 | "Content-Type: text/plain; charset=UTF-8\n"
4 | "Content-Transfer-Encoding: 8bit\n"
5 | "Language: en\n"
6 |
7 | msgid "foo"
8 | msgstr "bar"
--------------------------------------------------------------------------------
/src/Symfony/Bundle/FrameworkBundle/Tests/DependencyInjection/Fixtures/php/profiler.php:
--------------------------------------------------------------------------------
1 | loadFromExtension('framework', array(
4 | 'profiler' => array(
5 | 'enabled' => true,
6 | ),
7 | ));
8 |
--------------------------------------------------------------------------------
/src/Symfony/Bundle/FrameworkBundle/Tests/DependencyInjection/Fixtures/php/request.php:
--------------------------------------------------------------------------------
1 | loadFromExtension('framework', array(
4 | 'request' => array(
5 | 'formats' => array(),
6 | ),
7 | ));
8 |
--------------------------------------------------------------------------------
/src/Symfony/Bundle/FrameworkBundle/Tests/DependencyInjection/Fixtures/php/session.php:
--------------------------------------------------------------------------------
1 | loadFromExtension('framework', array(
4 | 'session' => array(
5 | 'handler_id' => null,
6 | ),
7 | ));
8 |
--------------------------------------------------------------------------------
/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/Component/Config/Tests/Fixtures/Util/document_type.xml:
--------------------------------------------------------------------------------
1 |
2 | ]>
3 |
4 |
--------------------------------------------------------------------------------
/src/Symfony/Component/Console/Tests/Fixtures/input_argument_4.md:
--------------------------------------------------------------------------------
1 | **argument_name:**
2 |
3 | * Name: argument_name
4 | * Is required: yes
5 | * Is array: no
6 | * Description: multiline
7 | argument description
8 | * Default: `NULL`
9 |
--------------------------------------------------------------------------------
/src/Symfony/Component/Console/Tests/Fixtures/input_option_2.json:
--------------------------------------------------------------------------------
1 | {"name":"--option_name","shortcut":"-o","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"option description","default":"default_value"}
2 |
--------------------------------------------------------------------------------
/src/Symfony/Component/Console/Tests/Fixtures/input_option_5.json:
--------------------------------------------------------------------------------
1 | {"name":"--option_name","shortcut":"-o","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"multiline option description","default":null}
2 |
--------------------------------------------------------------------------------
/src/Symfony/Component/Intl/Resources/data/currencies/af_NA.json:
--------------------------------------------------------------------------------
1 | {
2 | "Version": "2.1.8.19",
3 | "Names": {
4 | "NAD": [
5 | "$",
6 | "Namibiese dollar"
7 | ]
8 | }
9 | }
10 |
--------------------------------------------------------------------------------
/src/Symfony/Component/Intl/Resources/data/currencies/ar_ER.json:
--------------------------------------------------------------------------------
1 | {
2 | "Version": "2.1.6.69",
3 | "Names": {
4 | "ERN": [
5 | "Nfk",
6 | "ناكفا أريتري"
7 | ]
8 | }
9 | }
10 |
--------------------------------------------------------------------------------
/src/Symfony/Component/Intl/Resources/data/currencies/en_BB.json:
--------------------------------------------------------------------------------
1 | {
2 | "Version": "2.1.6.69",
3 | "Names": {
4 | "BBD": [
5 | "$",
6 | "Barbadian Dollar"
7 | ]
8 | }
9 | }
10 |
--------------------------------------------------------------------------------
/src/Symfony/Component/Intl/Resources/data/currencies/en_BM.json:
--------------------------------------------------------------------------------
1 | {
2 | "Version": "2.1.6.69",
3 | "Names": {
4 | "BMD": [
5 | "$",
6 | "Bermudan Dollar"
7 | ]
8 | }
9 | }
10 |
--------------------------------------------------------------------------------
/src/Symfony/Component/Intl/Resources/data/currencies/en_BS.json:
--------------------------------------------------------------------------------
1 | {
2 | "Version": "2.1.6.69",
3 | "Names": {
4 | "BSD": [
5 | "$",
6 | "Bahamian Dollar"
7 | ]
8 | }
9 | }
10 |
--------------------------------------------------------------------------------
/src/Symfony/Component/Intl/Resources/data/currencies/en_BW.json:
--------------------------------------------------------------------------------
1 | {
2 | "Version": "2.1.6.69",
3 | "Names": {
4 | "BWP": [
5 | "P",
6 | "Botswanan Pula"
7 | ]
8 | }
9 | }
10 |
--------------------------------------------------------------------------------
/src/Symfony/Component/Intl/Resources/data/currencies/en_CC.json:
--------------------------------------------------------------------------------
1 | {
2 | "Version": "2.1.6.69",
3 | "Names": {
4 | "AUD": [
5 | "$",
6 | "Australian Dollar"
7 | ]
8 | }
9 | }
10 |
--------------------------------------------------------------------------------
/src/Symfony/Component/Intl/Resources/data/currencies/en_CK.json:
--------------------------------------------------------------------------------
1 | {
2 | "Version": "2.1.6.69",
3 | "Names": {
4 | "NZD": [
5 | "$",
6 | "New Zealand Dollar"
7 | ]
8 | }
9 | }
10 |
--------------------------------------------------------------------------------
/src/Symfony/Component/Intl/Resources/data/currencies/en_CX.json:
--------------------------------------------------------------------------------
1 | {
2 | "Version": "2.1.6.69",
3 | "Names": {
4 | "AUD": [
5 | "$",
6 | "Australian Dollar"
7 | ]
8 | }
9 | }
10 |
--------------------------------------------------------------------------------
/src/Symfony/Component/Intl/Resources/data/currencies/en_ER.json:
--------------------------------------------------------------------------------
1 | {
2 | "Version": "2.1.6.69",
3 | "Names": {
4 | "ERN": [
5 | "Nfk",
6 | "Eritrean Nakfa"
7 | ]
8 | }
9 | }
10 |
--------------------------------------------------------------------------------
/src/Symfony/Component/Intl/Resources/data/currencies/en_GH.json:
--------------------------------------------------------------------------------
1 | {
2 | "Version": "2.1.6.69",
3 | "Names": {
4 | "GHS": [
5 | "GH₵",
6 | "Ghanaian Cedi"
7 | ]
8 | }
9 | }
10 |
--------------------------------------------------------------------------------
/src/Symfony/Component/Intl/Resources/data/currencies/en_GM.json:
--------------------------------------------------------------------------------
1 | {
2 | "Version": "2.1.6.69",
3 | "Names": {
4 | "GMD": [
5 | "D",
6 | "Gambian Dalasi"
7 | ]
8 | }
9 | }
10 |
--------------------------------------------------------------------------------
/src/Symfony/Component/Intl/Resources/data/currencies/en_GY.json:
--------------------------------------------------------------------------------
1 | {
2 | "Version": "2.1.6.69",
3 | "Names": {
4 | "GYD": [
5 | "$",
6 | "Guyanaese Dollar"
7 | ]
8 | }
9 | }
10 |
--------------------------------------------------------------------------------
/src/Symfony/Component/Intl/Resources/data/currencies/en_JM.json:
--------------------------------------------------------------------------------
1 | {
2 | "Version": "2.1.6.69",
3 | "Names": {
4 | "JMD": [
5 | "$",
6 | "Jamaican Dollar"
7 | ]
8 | }
9 | }
10 |
--------------------------------------------------------------------------------
/src/Symfony/Component/Intl/Resources/data/currencies/en_KE.json:
--------------------------------------------------------------------------------
1 | {
2 | "Version": "2.1.6.69",
3 | "Names": {
4 | "KES": [
5 | "Ksh",
6 | "Kenyan Shilling"
7 | ]
8 | }
9 | }
10 |
--------------------------------------------------------------------------------
/src/Symfony/Component/Intl/Resources/data/currencies/en_KI.json:
--------------------------------------------------------------------------------
1 | {
2 | "Version": "2.1.6.69",
3 | "Names": {
4 | "AUD": [
5 | "$",
6 | "Australian Dollar"
7 | ]
8 | }
9 | }
10 |
--------------------------------------------------------------------------------
/src/Symfony/Component/Intl/Resources/data/currencies/en_LR.json:
--------------------------------------------------------------------------------
1 | {
2 | "Version": "2.1.6.69",
3 | "Names": {
4 | "LRD": [
5 | "$",
6 | "Liberian Dollar"
7 | ]
8 | }
9 | }
10 |
--------------------------------------------------------------------------------
/src/Symfony/Component/Intl/Resources/data/currencies/en_LS.json:
--------------------------------------------------------------------------------
1 | {
2 | "Version": "2.1.6.69",
3 | "Names": {
4 | "ZAR": [
5 | "R",
6 | "South African Rand"
7 | ]
8 | }
9 | }
10 |
--------------------------------------------------------------------------------
/src/Symfony/Component/Intl/Resources/data/currencies/en_MG.json:
--------------------------------------------------------------------------------
1 | {
2 | "Version": "2.1.6.69",
3 | "Names": {
4 | "MGA": [
5 | "Ar",
6 | "Malagasy Ariary"
7 | ]
8 | }
9 | }
10 |
--------------------------------------------------------------------------------
/src/Symfony/Component/Intl/Resources/data/currencies/en_MO.json:
--------------------------------------------------------------------------------
1 | {
2 | "Version": "2.1.8.19",
3 | "Names": {
4 | "MOP": [
5 | "MOP$",
6 | "Macanese Pataca"
7 | ]
8 | }
9 | }
10 |
--------------------------------------------------------------------------------
/src/Symfony/Component/Intl/Resources/data/currencies/en_MU.json:
--------------------------------------------------------------------------------
1 | {
2 | "Version": "2.1.6.69",
3 | "Names": {
4 | "MUR": [
5 | "Rs",
6 | "Mauritian Rupee"
7 | ]
8 | }
9 | }
10 |
--------------------------------------------------------------------------------
/src/Symfony/Component/Intl/Resources/data/currencies/en_MW.json:
--------------------------------------------------------------------------------
1 | {
2 | "Version": "2.1.6.69",
3 | "Names": {
4 | "MWK": [
5 | "MK",
6 | "Malawian Kwacha"
7 | ]
8 | }
9 | }
10 |
--------------------------------------------------------------------------------
/src/Symfony/Component/Intl/Resources/data/currencies/en_MY.json:
--------------------------------------------------------------------------------
1 | {
2 | "Version": "2.1.3.1",
3 | "Names": {
4 | "MYR": [
5 | "RM",
6 | "Malaysian Ringgit"
7 | ]
8 | }
9 | }
10 |
--------------------------------------------------------------------------------
/src/Symfony/Component/Intl/Resources/data/currencies/en_NA.json:
--------------------------------------------------------------------------------
1 | {
2 | "Version": "2.1.6.69",
3 | "Names": {
4 | "NAD": [
5 | "$",
6 | "Namibian Dollar"
7 | ]
8 | }
9 | }
10 |
--------------------------------------------------------------------------------
/src/Symfony/Component/Intl/Resources/data/currencies/en_NF.json:
--------------------------------------------------------------------------------
1 | {
2 | "Version": "2.1.6.69",
3 | "Names": {
4 | "AUD": [
5 | "$",
6 | "Australian Dollar"
7 | ]
8 | }
9 | }
10 |
--------------------------------------------------------------------------------
/src/Symfony/Component/Intl/Resources/data/currencies/en_NG.json:
--------------------------------------------------------------------------------
1 | {
2 | "Version": "2.1.6.69",
3 | "Names": {
4 | "NGN": [
5 | "₦",
6 | "Nigerian Naira"
7 | ]
8 | }
9 | }
10 |
--------------------------------------------------------------------------------
/src/Symfony/Component/Intl/Resources/data/currencies/en_NR.json:
--------------------------------------------------------------------------------
1 | {
2 | "Version": "2.1.6.69",
3 | "Names": {
4 | "AUD": [
5 | "$",
6 | "Australian Dollar"
7 | ]
8 | }
9 | }
10 |
--------------------------------------------------------------------------------
/src/Symfony/Component/Intl/Resources/data/currencies/en_NU.json:
--------------------------------------------------------------------------------
1 | {
2 | "Version": "2.1.6.69",
3 | "Names": {
4 | "NZD": [
5 | "$",
6 | "New Zealand Dollar"
7 | ]
8 | }
9 | }
10 |
--------------------------------------------------------------------------------
/src/Symfony/Component/Intl/Resources/data/currencies/en_NZ.json:
--------------------------------------------------------------------------------
1 | {
2 | "Version": "2.1.8.19",
3 | "Names": {
4 | "NZD": [
5 | "$",
6 | "New Zealand Dollar"
7 | ]
8 | }
9 | }
10 |
--------------------------------------------------------------------------------
/src/Symfony/Component/Intl/Resources/data/currencies/en_PH.json:
--------------------------------------------------------------------------------
1 | {
2 | "Version": "2.1.6.69",
3 | "Names": {
4 | "PHP": [
5 | "₱",
6 | "Philippine Peso"
7 | ]
8 | }
9 | }
10 |
--------------------------------------------------------------------------------
/src/Symfony/Component/Intl/Resources/data/currencies/en_PK.json:
--------------------------------------------------------------------------------
1 | {
2 | "Version": "2.1.8.19",
3 | "Names": {
4 | "PKR": [
5 | "Rs",
6 | "Pakistani Rupee"
7 | ]
8 | }
9 | }
10 |
--------------------------------------------------------------------------------
/src/Symfony/Component/Intl/Resources/data/currencies/en_PN.json:
--------------------------------------------------------------------------------
1 | {
2 | "Version": "2.1.6.69",
3 | "Names": {
4 | "NZD": [
5 | "$",
6 | "New Zealand Dollar"
7 | ]
8 | }
9 | }
10 |
--------------------------------------------------------------------------------
/src/Symfony/Component/Intl/Resources/data/currencies/en_RW.json:
--------------------------------------------------------------------------------
1 | {
2 | "Version": "2.1.6.69",
3 | "Names": {
4 | "RWF": [
5 | "RF",
6 | "Rwandan Franc"
7 | ]
8 | }
9 | }
10 |
--------------------------------------------------------------------------------
/src/Symfony/Component/Intl/Resources/data/currencies/en_SC.json:
--------------------------------------------------------------------------------
1 | {
2 | "Version": "2.1.6.69",
3 | "Names": {
4 | "SCR": [
5 | "SR",
6 | "Seychellois Rupee"
7 | ]
8 | }
9 | }
10 |
--------------------------------------------------------------------------------
/src/Symfony/Component/Intl/Resources/data/currencies/en_SG.json:
--------------------------------------------------------------------------------
1 | {
2 | "Version": "2.1.8.19",
3 | "Names": {
4 | "SGD": [
5 | "$",
6 | "Singapore Dollar"
7 | ]
8 | }
9 | }
10 |
--------------------------------------------------------------------------------
/src/Symfony/Component/Intl/Resources/data/currencies/en_SZ.json:
--------------------------------------------------------------------------------
1 | {
2 | "Version": "2.1.6.69",
3 | "Names": {
4 | "SZL": [
5 | "E",
6 | "Swazi Lilangeni"
7 | ]
8 | }
9 | }
10 |
--------------------------------------------------------------------------------
/src/Symfony/Component/Intl/Resources/data/currencies/en_TK.json:
--------------------------------------------------------------------------------
1 | {
2 | "Version": "2.1.6.69",
3 | "Names": {
4 | "NZD": [
5 | "$",
6 | "New Zealand Dollar"
7 | ]
8 | }
9 | }
10 |
--------------------------------------------------------------------------------
/src/Symfony/Component/Intl/Resources/data/currencies/en_TO.json:
--------------------------------------------------------------------------------
1 | {
2 | "Version": "2.1.6.69",
3 | "Names": {
4 | "TOP": [
5 | "T$",
6 | "Tongan Paʻanga"
7 | ]
8 | }
9 | }
10 |
--------------------------------------------------------------------------------
/src/Symfony/Component/Intl/Resources/data/currencies/en_TV.json:
--------------------------------------------------------------------------------
1 | {
2 | "Version": "2.1.6.69",
3 | "Names": {
4 | "AUD": [
5 | "$",
6 | "Australian Dollar"
7 | ]
8 | }
9 | }
10 |
--------------------------------------------------------------------------------
/src/Symfony/Component/Intl/Resources/data/currencies/en_UG.json:
--------------------------------------------------------------------------------
1 | {
2 | "Version": "2.1.6.69",
3 | "Names": {
4 | "UGX": [
5 | "USh",
6 | "Ugandan Shilling"
7 | ]
8 | }
9 | }
10 |
--------------------------------------------------------------------------------
/src/Symfony/Component/Intl/Resources/data/currencies/en_ZA.json:
--------------------------------------------------------------------------------
1 | {
2 | "Version": "2.1.6.69",
3 | "Names": {
4 | "ZAR": [
5 | "R",
6 | "South African Rand"
7 | ]
8 | }
9 | }
10 |
--------------------------------------------------------------------------------
/src/Symfony/Component/Intl/Resources/data/currencies/en_ZM.json:
--------------------------------------------------------------------------------
1 | {
2 | "Version": "2.1.6.69",
3 | "Names": {
4 | "ZMW": [
5 | "K",
6 | "Zambian Kwacha"
7 | ]
8 | }
9 | }
10 |
--------------------------------------------------------------------------------
/src/Symfony/Component/Intl/Resources/data/currencies/es_GQ.json:
--------------------------------------------------------------------------------
1 | {
2 | "Version": "2.1.6.69",
3 | "Names": {
4 | "XAF": [
5 | "FCFA",
6 | "franco CFA BEAC"
7 | ]
8 | }
9 | }
10 |
--------------------------------------------------------------------------------
/src/Symfony/Component/Intl/Resources/data/currencies/es_HN.json:
--------------------------------------------------------------------------------
1 | {
2 | "Version": "2.1.8.19",
3 | "Names": {
4 | "HNL": [
5 | "L",
6 | "lempira hondureño"
7 | ]
8 | }
9 | }
10 |
--------------------------------------------------------------------------------
/src/Symfony/Component/Intl/Resources/data/currencies/es_PA.json:
--------------------------------------------------------------------------------
1 | {
2 | "Version": "2.1.8.19",
3 | "Names": {
4 | "PAB": [
5 | "B\/.",
6 | "balboa panameño"
7 | ]
8 | }
9 | }
10 |
--------------------------------------------------------------------------------
/src/Symfony/Component/Intl/Resources/data/currencies/es_PY.json:
--------------------------------------------------------------------------------
1 | {
2 | "Version": "2.1.6.69",
3 | "Names": {
4 | "PYG": [
5 | "₲",
6 | "guaraní paraguayo"
7 | ]
8 | }
9 | }
10 |
--------------------------------------------------------------------------------
/src/Symfony/Component/Intl/Resources/data/currencies/ff_MR.json:
--------------------------------------------------------------------------------
1 | {
2 | "Version": "2.1.6.69",
3 | "Names": {
4 | "MRO": [
5 | "UM",
6 | "Ugiyya Muritani"
7 | ]
8 | }
9 | }
10 |
--------------------------------------------------------------------------------
/src/Symfony/Component/Intl/Resources/data/currencies/fr_BI.json:
--------------------------------------------------------------------------------
1 | {
2 | "Version": "2.1.6.69",
3 | "Names": {
4 | "BIF": [
5 | "FBu",
6 | "franc burundais"
7 | ]
8 | }
9 | }
10 |
--------------------------------------------------------------------------------
/src/Symfony/Component/Intl/Resources/data/currencies/fr_CD.json:
--------------------------------------------------------------------------------
1 | {
2 | "Version": "2.1.6.69",
3 | "Names": {
4 | "CDF": [
5 | "FC",
6 | "franc congolais"
7 | ]
8 | }
9 | }
10 |
--------------------------------------------------------------------------------
/src/Symfony/Component/Intl/Resources/data/currencies/fr_DJ.json:
--------------------------------------------------------------------------------
1 | {
2 | "Version": "2.1.6.69",
3 | "Names": {
4 | "DJF": [
5 | "Fdj",
6 | "franc djiboutien"
7 | ]
8 | }
9 | }
10 |
--------------------------------------------------------------------------------
/src/Symfony/Component/Intl/Resources/data/currencies/fr_DZ.json:
--------------------------------------------------------------------------------
1 | {
2 | "Version": "2.1.6.69",
3 | "Names": {
4 | "DZD": [
5 | "DA",
6 | "dinar algérien"
7 | ]
8 | }
9 | }
10 |
--------------------------------------------------------------------------------
/src/Symfony/Component/Intl/Resources/data/currencies/fr_GN.json:
--------------------------------------------------------------------------------
1 | {
2 | "Version": "2.1.6.69",
3 | "Names": {
4 | "GNF": [
5 | "FG",
6 | "franc guinéen"
7 | ]
8 | }
9 | }
10 |
--------------------------------------------------------------------------------
/src/Symfony/Component/Intl/Resources/data/currencies/fr_HT.json:
--------------------------------------------------------------------------------
1 | {
2 | "Version": "2.1.6.69",
3 | "Names": {
4 | "HTG": [
5 | "G",
6 | "gourde haïtienne"
7 | ]
8 | }
9 | }
10 |
--------------------------------------------------------------------------------
/src/Symfony/Component/Intl/Resources/data/currencies/fr_KM.json:
--------------------------------------------------------------------------------
1 | {
2 | "Version": "2.1.6.69",
3 | "Names": {
4 | "KMF": [
5 | "CF",
6 | "franc comorien"
7 | ]
8 | }
9 | }
10 |
--------------------------------------------------------------------------------
/src/Symfony/Component/Intl/Resources/data/currencies/fr_MG.json:
--------------------------------------------------------------------------------
1 | {
2 | "Version": "2.1.6.69",
3 | "Names": {
4 | "MGA": [
5 | "Ar",
6 | "ariary malgache"
7 | ]
8 | }
9 | }
10 |
--------------------------------------------------------------------------------
/src/Symfony/Component/Intl/Resources/data/currencies/fr_RW.json:
--------------------------------------------------------------------------------
1 | {
2 | "Version": "2.1.6.69",
3 | "Names": {
4 | "RWF": [
5 | "RF",
6 | "franc rwandais"
7 | ]
8 | }
9 | }
10 |
--------------------------------------------------------------------------------
/src/Symfony/Component/Intl/Resources/data/currencies/fr_SY.json:
--------------------------------------------------------------------------------
1 | {
2 | "Version": "2.1.6.69",
3 | "Names": {
4 | "SYP": [
5 | "LS",
6 | "livre syrienne"
7 | ]
8 | }
9 | }
10 |
--------------------------------------------------------------------------------
/src/Symfony/Component/Intl/Resources/data/currencies/fr_TN.json:
--------------------------------------------------------------------------------
1 | {
2 | "Version": "2.1.6.69",
3 | "Names": {
4 | "TND": [
5 | "DT",
6 | "dinar tunisien"
7 | ]
8 | }
9 | }
10 |
--------------------------------------------------------------------------------
/src/Symfony/Component/Intl/Resources/data/currencies/fr_VU.json:
--------------------------------------------------------------------------------
1 | {
2 | "Version": "2.1.6.69",
3 | "Names": {
4 | "VUV": [
5 | "VT",
6 | "vatu vanuatuan"
7 | ]
8 | }
9 | }
10 |
--------------------------------------------------------------------------------
/src/Symfony/Component/Intl/Resources/data/currencies/ln_AO.json:
--------------------------------------------------------------------------------
1 | {
2 | "Version": "2.1.6.69",
3 | "Names": {
4 | "AOA": [
5 | "Kz",
6 | "Kwanza ya Angóla"
7 | ]
8 | }
9 | }
10 |
--------------------------------------------------------------------------------
/src/Symfony/Component/Intl/Resources/data/currencies/ms_Latn_BN.json:
--------------------------------------------------------------------------------
1 | {
2 | "Version": "2.1.6.69",
3 | "Names": {
4 | "BND": [
5 | "$",
6 | "Dolar Brunei"
7 | ]
8 | }
9 | }
10 |
--------------------------------------------------------------------------------
/src/Symfony/Component/Intl/Resources/data/currencies/ms_SG.json:
--------------------------------------------------------------------------------
1 | {
2 | "Version": "2.1.6.69",
3 | "Names": {
4 | "SGD": [
5 | "$",
6 | "Dolar Singapura"
7 | ]
8 | }
9 | }
10 |
--------------------------------------------------------------------------------
/src/Symfony/Component/Intl/Resources/data/currencies/ne_IN.json:
--------------------------------------------------------------------------------
1 | {
2 | "Version": "2.1.8.19",
3 | "Names": {
4 | "INR": [
5 | "₹",
6 | "भारतीय रूपिँया"
7 | ]
8 | }
9 | }
10 |
--------------------------------------------------------------------------------
/src/Symfony/Component/Intl/Resources/data/currencies/nl_BQ.json:
--------------------------------------------------------------------------------
1 | {
2 | "Version": "2.1.6.69",
3 | "Names": {
4 | "USD": [
5 | "$",
6 | "Amerikaanse dollar"
7 | ]
8 | }
9 | }
10 |
--------------------------------------------------------------------------------
/src/Symfony/Component/Intl/Resources/data/currencies/nl_SR.json:
--------------------------------------------------------------------------------
1 | {
2 | "Version": "2.1.6.69",
3 | "Names": {
4 | "SRD": [
5 | "$",
6 | "Surinaamse dollar"
7 | ]
8 | }
9 | }
10 |
--------------------------------------------------------------------------------
/src/Symfony/Component/Intl/Resources/data/currencies/pt_AO.json:
--------------------------------------------------------------------------------
1 | {
2 | "Version": "2.1.6.69",
3 | "Names": {
4 | "AOA": [
5 | "Kz",
6 | "Kwanza angolano"
7 | ]
8 | }
9 | }
10 |
--------------------------------------------------------------------------------
/src/Symfony/Component/Intl/Resources/data/currencies/pt_MO.json:
--------------------------------------------------------------------------------
1 | {
2 | "Version": "2.1.6.69",
3 | "Names": {
4 | "MOP": [
5 | "MOP$",
6 | "Pataca de Macau"
7 | ]
8 | }
9 | }
10 |
--------------------------------------------------------------------------------
/src/Symfony/Component/Intl/Resources/data/currencies/ro_MD.json:
--------------------------------------------------------------------------------
1 | {
2 | "Version": "2.1.6.69",
3 | "Names": {
4 | "MDL": [
5 | "L",
6 | "leu moldovenesc"
7 | ]
8 | }
9 | }
10 |
--------------------------------------------------------------------------------
/src/Symfony/Component/Intl/Resources/data/currencies/ru_KG.json:
--------------------------------------------------------------------------------
1 | {
2 | "Version": "2.1.6.69",
3 | "Names": {
4 | "KGS": [
5 | "сом",
6 | "Киргизский сом"
7 | ]
8 | }
9 | }
10 |
--------------------------------------------------------------------------------
/src/Symfony/Component/Intl/Resources/data/currencies/ru_KZ.json:
--------------------------------------------------------------------------------
1 | {
2 | "Version": "2.1.6.69",
3 | "Names": {
4 | "KZT": [
5 | "₸",
6 | "Казахский тенге"
7 | ]
8 | }
9 | }
10 |
--------------------------------------------------------------------------------
/src/Symfony/Component/Intl/Resources/data/currencies/ru_MD.json:
--------------------------------------------------------------------------------
1 | {
2 | "Version": "2.1.6.69",
3 | "Names": {
4 | "MDL": [
5 | "L",
6 | "Молдавский лей"
7 | ]
8 | }
9 | }
10 |
--------------------------------------------------------------------------------
/src/Symfony/Component/Intl/Resources/data/currencies/so_DJ.json:
--------------------------------------------------------------------------------
1 | {
2 | "Version": "2.1.6.69",
3 | "Names": {
4 | "DJF": [
5 | "Fdj",
6 | "Faran Jabbuuti"
7 | ]
8 | }
9 | }
10 |
--------------------------------------------------------------------------------
/src/Symfony/Component/Intl/Resources/data/currencies/so_ET.json:
--------------------------------------------------------------------------------
1 | {
2 | "Version": "2.1.6.69",
3 | "Names": {
4 | "ETB": [
5 | "Br",
6 | "Birta Itoobbiya"
7 | ]
8 | }
9 | }
10 |
--------------------------------------------------------------------------------
/src/Symfony/Component/Intl/Resources/data/currencies/sq_MK.json:
--------------------------------------------------------------------------------
1 | {
2 | "Version": "2.1.6.69",
3 | "Names": {
4 | "MKD": [
5 | "den",
6 | "Denari maqedonas"
7 | ]
8 | }
9 | }
10 |
--------------------------------------------------------------------------------
/src/Symfony/Component/Intl/Resources/data/currencies/ta_LK.json:
--------------------------------------------------------------------------------
1 | {
2 | "Version": "2.1.8.19",
3 | "Names": {
4 | "LKR": [
5 | "Rs.",
6 | "இலங்கை ரூபாய்"
7 | ]
8 | }
9 | }
10 |
--------------------------------------------------------------------------------
/src/Symfony/Bundle/FrameworkBundle/Tests/Fixtures/Descriptor/array_parameter.xml:
--------------------------------------------------------------------------------
1 |
2 | ["bootstrap_3_horizontal_layout.html.twig","bootstrap_3_layo...
3 |
--------------------------------------------------------------------------------
/src/Symfony/Bundle/FrameworkBundle/Tests/Fixtures/Descriptor/callable_3.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/src/Symfony/Bundle/TwigBundle/Tests/DependencyInjection/Fixtures/php/extra.php:
--------------------------------------------------------------------------------
1 | loadFromExtension('twig', array(
4 | 'paths' => array(
5 | 'namespaced_path3' => 'namespace3',
6 | ),
7 | ));
8 |
--------------------------------------------------------------------------------
/src/Symfony/Component/Console/Tests/Fixtures/input_argument_1.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/src/Symfony/Component/Console/Tests/Fixtures/input_option_6.json:
--------------------------------------------------------------------------------
1 | {"name":"--option_name","shortcut":"-o|-O","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"option with multiple shortcuts","default":null}
2 |
--------------------------------------------------------------------------------
/src/Symfony/Component/DependencyInjection/Tests/Fixtures/yaml/badtag2.yml:
--------------------------------------------------------------------------------
1 | services:
2 | foo_service:
3 | class: FooClass
4 | tags:
5 | # tag is missing the name key
6 | foo_tag: { foo: bar }
7 |
--------------------------------------------------------------------------------
/src/Symfony/Component/Intl/Resources/data/currencies/en_AG.json:
--------------------------------------------------------------------------------
1 | {
2 | "Version": "2.1.7.12",
3 | "Names": {
4 | "XCD": [
5 | "$",
6 | "East Caribbean Dollar"
7 | ]
8 | }
9 | }
10 |
--------------------------------------------------------------------------------
/src/Symfony/Component/Intl/Resources/data/currencies/en_AI.json:
--------------------------------------------------------------------------------
1 | {
2 | "Version": "2.1.7.12",
3 | "Names": {
4 | "XCD": [
5 | "$",
6 | "East Caribbean Dollar"
7 | ]
8 | }
9 | }
10 |
--------------------------------------------------------------------------------
/src/Symfony/Component/Intl/Resources/data/currencies/en_DM.json:
--------------------------------------------------------------------------------
1 | {
2 | "Version": "2.1.7.12",
3 | "Names": {
4 | "XCD": [
5 | "$",
6 | "East Caribbean Dollar"
7 | ]
8 | }
9 | }
10 |
--------------------------------------------------------------------------------
/src/Symfony/Component/Intl/Resources/data/currencies/en_GD.json:
--------------------------------------------------------------------------------
1 | {
2 | "Version": "2.1.7.12",
3 | "Names": {
4 | "XCD": [
5 | "$",
6 | "East Caribbean Dollar"
7 | ]
8 | }
9 | }
10 |
--------------------------------------------------------------------------------
/src/Symfony/Component/Intl/Resources/data/currencies/en_KN.json:
--------------------------------------------------------------------------------
1 | {
2 | "Version": "2.1.7.12",
3 | "Names": {
4 | "XCD": [
5 | "$",
6 | "East Caribbean Dollar"
7 | ]
8 | }
9 | }
10 |
--------------------------------------------------------------------------------
/src/Symfony/Component/Intl/Resources/data/currencies/en_KY.json:
--------------------------------------------------------------------------------
1 | {
2 | "Version": "2.1.6.69",
3 | "Names": {
4 | "KYD": [
5 | "$",
6 | "Cayman Islands Dollar"
7 | ]
8 | }
9 | }
10 |
--------------------------------------------------------------------------------
/src/Symfony/Component/Intl/Resources/data/currencies/en_LC.json:
--------------------------------------------------------------------------------
1 | {
2 | "Version": "2.1.7.12",
3 | "Names": {
4 | "XCD": [
5 | "$",
6 | "East Caribbean Dollar"
7 | ]
8 | }
9 | }
10 |
--------------------------------------------------------------------------------
/src/Symfony/Component/Intl/Resources/data/currencies/en_MS.json:
--------------------------------------------------------------------------------
1 | {
2 | "Version": "2.1.7.12",
3 | "Names": {
4 | "XCD": [
5 | "$",
6 | "East Caribbean Dollar"
7 | ]
8 | }
9 | }
10 |
--------------------------------------------------------------------------------
/src/Symfony/Component/Intl/Resources/data/currencies/en_PG.json:
--------------------------------------------------------------------------------
1 | {
2 | "Version": "2.1.6.69",
3 | "Names": {
4 | "PGK": [
5 | "K",
6 | "Papua New Guinean Kina"
7 | ]
8 | }
9 | }
10 |
--------------------------------------------------------------------------------
/src/Symfony/Component/Intl/Resources/data/currencies/en_SB.json:
--------------------------------------------------------------------------------
1 | {
2 | "Version": "2.1.6.69",
3 | "Names": {
4 | "SBD": [
5 | "$",
6 | "Solomon Islands Dollar"
7 | ]
8 | }
9 | }
10 |
--------------------------------------------------------------------------------
/src/Symfony/Component/Intl/Resources/data/currencies/en_SL.json:
--------------------------------------------------------------------------------
1 | {
2 | "Version": "2.1.6.69",
3 | "Names": {
4 | "SLL": [
5 | "Le",
6 | "Sierra Leonean Leone"
7 | ]
8 | }
9 | }
10 |
--------------------------------------------------------------------------------
/src/Symfony/Component/Intl/Resources/data/currencies/en_TZ.json:
--------------------------------------------------------------------------------
1 | {
2 | "Version": "2.1.6.69",
3 | "Names": {
4 | "TZS": [
5 | "TSh",
6 | "Tanzanian Shilling"
7 | ]
8 | }
9 | }
10 |
--------------------------------------------------------------------------------
/src/Symfony/Component/Intl/Resources/data/currencies/en_VC.json:
--------------------------------------------------------------------------------
1 | {
2 | "Version": "2.1.7.12",
3 | "Names": {
4 | "XCD": [
5 | "$",
6 | "East Caribbean Dollar"
7 | ]
8 | }
9 | }
10 |
--------------------------------------------------------------------------------
/src/Symfony/Component/Intl/Resources/data/currencies/es_CR.json:
--------------------------------------------------------------------------------
1 | {
2 | "Version": "2.1.6.69",
3 | "Names": {
4 | "CRC": [
5 | "₡",
6 | "colón costarricense"
7 | ]
8 | }
9 | }
10 |
--------------------------------------------------------------------------------
/src/Symfony/Component/Intl/Resources/data/currencies/es_EC.json:
--------------------------------------------------------------------------------
1 | {
2 | "Version": "2.1.8.19",
3 | "Names": {
4 | "USD": [
5 | "$",
6 | "dólar estadounidense"
7 | ]
8 | }
9 | }
10 |
--------------------------------------------------------------------------------
/src/Symfony/Component/Intl/Resources/data/currencies/es_GT.json:
--------------------------------------------------------------------------------
1 | {
2 | "Version": "2.1.8.19",
3 | "Names": {
4 | "GTQ": [
5 | "Q",
6 | "quetzal guatemalteco"
7 | ]
8 | }
9 | }
10 |
--------------------------------------------------------------------------------
/src/Symfony/Component/Intl/Resources/data/currencies/es_NI.json:
--------------------------------------------------------------------------------
1 | {
2 | "Version": "2.1.6.69",
3 | "Names": {
4 | "NIO": [
5 | "C$",
6 | "córdoba nicaragüense"
7 | ]
8 | }
9 | }
10 |
--------------------------------------------------------------------------------
/src/Symfony/Component/Intl/Resources/data/currencies/es_PE.json:
--------------------------------------------------------------------------------
1 | {
2 | "Version": "2.1.8.19",
3 | "Names": {
4 | "PEN": [
5 | "S\/.",
6 | "nuevo sol peruano"
7 | ]
8 | }
9 | }
10 |
--------------------------------------------------------------------------------
/src/Symfony/Component/Intl/Resources/data/currencies/es_PR.json:
--------------------------------------------------------------------------------
1 | {
2 | "Version": "2.1.8.19",
3 | "Names": {
4 | "USD": [
5 | "$",
6 | "dólar estadounidense"
7 | ]
8 | }
9 | }
10 |
--------------------------------------------------------------------------------
/src/Symfony/Component/Intl/Resources/data/currencies/es_SV.json:
--------------------------------------------------------------------------------
1 | {
2 | "Version": "2.1.6.69",
3 | "Names": {
4 | "USD": [
5 | "$",
6 | "dólar estadounidense"
7 | ]
8 | }
9 | }
10 |
--------------------------------------------------------------------------------
/src/Symfony/Component/Intl/Resources/data/currencies/es_VE.json:
--------------------------------------------------------------------------------
1 | {
2 | "Version": "2.1.6.69",
3 | "Names": {
4 | "VEF": [
5 | "Bs.",
6 | "bolívar venezolano"
7 | ]
8 | }
9 | }
10 |
--------------------------------------------------------------------------------
/src/Symfony/Component/Intl/Resources/data/currencies/fr_MR.json:
--------------------------------------------------------------------------------
1 | {
2 | "Version": "2.1.6.69",
3 | "Names": {
4 | "MRO": [
5 | "UM",
6 | "ouguiya mauritanien"
7 | ]
8 | }
9 | }
10 |
--------------------------------------------------------------------------------
/src/Symfony/Component/Intl/Resources/data/currencies/fr_MU.json:
--------------------------------------------------------------------------------
1 | {
2 | "Version": "2.1.6.69",
3 | "Names": {
4 | "MUR": [
5 | "Rs",
6 | "roupie mauricienne"
7 | ]
8 | }
9 | }
10 |
--------------------------------------------------------------------------------
/src/Symfony/Component/Intl/Resources/data/currencies/fr_SC.json:
--------------------------------------------------------------------------------
1 | {
2 | "Version": "2.1.6.69",
3 | "Names": {
4 | "SCR": [
5 | "SR",
6 | "roupie des Seychelles"
7 | ]
8 | }
9 | }
10 |
--------------------------------------------------------------------------------
/src/Symfony/Component/Intl/Resources/data/currencies/hr_BA.json:
--------------------------------------------------------------------------------
1 | {
2 | "Version": "2.1.6.69",
3 | "Names": {
4 | "BAM": [
5 | "KM",
6 | "konvertibilna marka"
7 | ]
8 | }
9 | }
10 |
--------------------------------------------------------------------------------
/src/Symfony/Component/Intl/Resources/data/currencies/ms_Latn_SG.json:
--------------------------------------------------------------------------------
1 | {
2 | "Version": "2.1.6.69",
3 | "Names": {
4 | "SGD": [
5 | "$",
6 | "Dolar Singapura"
7 | ]
8 | }
9 | }
10 |
--------------------------------------------------------------------------------
/src/Symfony/Component/Intl/Resources/data/currencies/nl_AW.json:
--------------------------------------------------------------------------------
1 | {
2 | "Version": "2.1.6.69",
3 | "Names": {
4 | "AWG": [
5 | "Afl.",
6 | "Arubaanse gulden"
7 | ]
8 | }
9 | }
10 |
--------------------------------------------------------------------------------
/src/Symfony/Component/Intl/Resources/data/currencies/pt_MZ.json:
--------------------------------------------------------------------------------
1 | {
2 | "Version": "2.1.6.69",
3 | "Names": {
4 | "MZN": [
5 | "MTn",
6 | "Metical de Moçambique"
7 | ]
8 | }
9 | }
10 |
--------------------------------------------------------------------------------
/src/Symfony/Component/Intl/Resources/data/currencies/sh_BA.json:
--------------------------------------------------------------------------------
1 | {
2 | "Version": "2.1.8.20",
3 | "Names": {
4 | "BAM": [
5 | "KM",
6 | "Konvertibilna Marka"
7 | ]
8 | }
9 | }
10 |
--------------------------------------------------------------------------------
/src/Symfony/Component/Intl/Resources/data/currencies/sr_BA.json:
--------------------------------------------------------------------------------
1 | {
2 | "Version": "2.1.8.19",
3 | "Names": {
4 | "BAM": [
5 | "КМ",
6 | "Конвертибилна Марка"
7 | ]
8 | }
9 | }
10 |
--------------------------------------------------------------------------------
/src/Symfony/Component/Intl/Resources/data/currencies/sw_UG.json:
--------------------------------------------------------------------------------
1 | {
2 | "Version": "2.1.6.69",
3 | "Names": {
4 | "UGX": [
5 | "USh",
6 | "shilingi ya Uganda"
7 | ]
8 | }
9 | }
10 |
--------------------------------------------------------------------------------
/src/Symfony/Bundle/FrameworkBundle/Resources/views/Form/form_row.html.php:
--------------------------------------------------------------------------------
1 |
2 | label($form) ?>
3 | errors($form) ?>
4 | widget($form) ?>
5 |
6 |
--------------------------------------------------------------------------------
/src/Symfony/Bundle/FrameworkBundle/Tests/DependencyInjection/Fixtures/php/property_info.php:
--------------------------------------------------------------------------------
1 | loadFromExtension('framework', array(
4 | 'property_info' => array(
5 | 'enabled' => true,
6 | ),
7 | ));
8 |
--------------------------------------------------------------------------------
/src/Symfony/Bundle/FrameworkBundle/Tests/DependencyInjection/Fixtures/php/serializer_disabled.php:
--------------------------------------------------------------------------------
1 | loadFromExtension('framework', array(
4 | 'serializer' => array(
5 | 'enabled' => false,
6 | ),
7 | ));
8 |
--------------------------------------------------------------------------------
/src/Symfony/Bundle/FrameworkBundle/Tests/DependencyInjection/Fixtures/php/serializer_enabled.php:
--------------------------------------------------------------------------------
1 | loadFromExtension('framework', array(
4 | 'serializer' => array(
5 | 'enabled' => true,
6 | ),
7 | ));
8 |
--------------------------------------------------------------------------------
/src/Symfony/Bundle/FrameworkBundle/Tests/DependencyInjection/Fixtures/yml/validation_multiple_static_methods.yml:
--------------------------------------------------------------------------------
1 | framework:
2 | secret: s3cr3t
3 | validation:
4 | enabled: true
5 | static_method: [loadFoo, loadBar]
6 |
--------------------------------------------------------------------------------
/src/Symfony/Bundle/FrameworkBundle/Tests/Fixtures/Descriptor/parameters_1.md:
--------------------------------------------------------------------------------
1 | Container parameters
2 | ====================
3 |
4 | - `array`: `[12,"Hello world!",true]`
5 | - `boolean`: `true`
6 | - `integer`: `12`
7 | - `string`: `Hello world!`
--------------------------------------------------------------------------------
/src/Symfony/Component/Console/Tests/Fixtures/input_definition_2.md:
--------------------------------------------------------------------------------
1 | ### Arguments:
2 |
3 | **argument_name:**
4 |
5 | * Name: argument_name
6 | * Is required: yes
7 | * Is array: no
8 | * Description:
9 | * Default: `NULL`
10 |
--------------------------------------------------------------------------------
/src/Symfony/Component/DependencyInjection/Tests/Fixtures/yaml/services14.yml:
--------------------------------------------------------------------------------
1 | services:
2 | factory: { class: FooBarClass, factory: baz:getClass}
3 | factory_with_static_call: { class: FooBarClass, factory: FooBacFactory::createFooBar}
4 |
--------------------------------------------------------------------------------
/src/Symfony/Component/DependencyInjection/Tests/Fixtures/yaml/tag_name_no_string.yml:
--------------------------------------------------------------------------------
1 | services:
2 | foo_service:
3 | class: FooClass
4 | tags:
5 | # tag name is not a string
6 | - { name: [], foo: bar }
7 |
--------------------------------------------------------------------------------
/src/Symfony/Component/Intl/Resources/data/currencies/en_MT.json:
--------------------------------------------------------------------------------
1 | {
2 | "Version": "2.1.8.19",
3 | "Names": {
4 | "GBP": [
5 | "GB£",
6 | "British Pound Sterling"
7 | ]
8 | }
9 | }
10 |
--------------------------------------------------------------------------------
/src/Symfony/Component/Intl/Resources/data/currencies/en_TT.json:
--------------------------------------------------------------------------------
1 | {
2 | "Version": "2.1.6.69",
3 | "Names": {
4 | "TTD": [
5 | "$",
6 | "Trinidad & Tobago Dollar"
7 | ]
8 | }
9 | }
10 |
--------------------------------------------------------------------------------
/src/Symfony/Component/Intl/Resources/data/currencies/sr_Cyrl_BA.json:
--------------------------------------------------------------------------------
1 | {
2 | "Version": "2.1.8.19",
3 | "Names": {
4 | "BAM": [
5 | "КМ",
6 | "Конвертибилна Марка"
7 | ]
8 | }
9 | }
10 |
--------------------------------------------------------------------------------
/src/Symfony/Component/Intl/Resources/data/currencies/sr_Latn_BA.json:
--------------------------------------------------------------------------------
1 | {
2 | "Version": "2.1.8.20",
3 | "Names": {
4 | "BAM": [
5 | "KM",
6 | "Konvertibilna Marka"
7 | ]
8 | }
9 | }
10 |
--------------------------------------------------------------------------------
/src/Symfony/Bundle/FrameworkBundle/Tests/DependencyInjection/Fixtures/php/csrf_needs_session.php:
--------------------------------------------------------------------------------
1 | loadFromExtension('framework', array(
4 | 'csrf_protection' => array(
5 | 'enabled' => true,
6 | ),
7 | ));
8 |
--------------------------------------------------------------------------------
/src/Symfony/Bundle/FrameworkBundle/Tests/DependencyInjection/Fixtures/yml/assets_version_strategy_as_service.yml:
--------------------------------------------------------------------------------
1 | framework:
2 | assets:
3 | version_strategy: assets.custom_version_strategy
4 | base_urls: http://cdn.example.com
5 |
--------------------------------------------------------------------------------
/src/Symfony/Bundle/SecurityBundle/Tests/Functional/app/config/twig.yml:
--------------------------------------------------------------------------------
1 | framework:
2 | templating: { engines: ['twig'] }
3 |
4 | # Twig Configuration
5 | twig:
6 | debug: %kernel.debug%
7 | strict_variables: %kernel.debug%
8 |
--------------------------------------------------------------------------------
/src/Symfony/Component/ClassLoader/Tests/Fixtures/php5.5/class_cons.php:
--------------------------------------------------------------------------------
1 |
2 |
5 |
--------------------------------------------------------------------------------
/src/Symfony/Component/DependencyInjection/Tests/Fixtures/yaml/tag_name_empty_string.yml:
--------------------------------------------------------------------------------
1 | services:
2 | foo_service:
3 | class: FooClass
4 | tags:
5 | # tag name is an empty string
6 | - { name: '', foo: bar }
7 |
--------------------------------------------------------------------------------
/src/Symfony/Component/Intl/Resources/data/scripts/zh_SG.json:
--------------------------------------------------------------------------------
1 | {
2 | "Version": "2.1.8.19",
3 | "Names": {
4 | "Knda": "卡纳塔克文",
5 | "Sinh": "辛哈拉文",
6 | "Thaa": "塔安娜文",
7 | "Zzzz": "未知语系"
8 | }
9 | }
10 |
--------------------------------------------------------------------------------
/src/Symfony/Bundle/FrameworkBundle/Resources/views/Form/form_rest.html.php:
--------------------------------------------------------------------------------
1 |
2 | isRendered()): ?>
3 | row($child) ?>
4 |
5 |
6 |
--------------------------------------------------------------------------------
/src/Symfony/Bundle/FrameworkBundle/Tests/DependencyInjection/Fixtures/php/translator_fallbacks.php:
--------------------------------------------------------------------------------
1 | loadFromExtension('framework', array(
4 | 'translator' => array(
5 | 'fallbacks' => array('en', 'fr'),
6 | ),
7 | ));
8 |
--------------------------------------------------------------------------------
/src/Symfony/Bundle/FrameworkBundle/Tests/Fixtures/Descriptor/callable_2.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/src/Symfony/Bundle/FrameworkBundle/Tests/Fixtures/Descriptor/callable_4.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/src/Symfony/Bundle/FrameworkBundle/Tests/Fixtures/Descriptor/parameter.txt:
--------------------------------------------------------------------------------
1 | --------------- ---------
2 | [32mParameter[39m [32mValue[39m
3 | --------------- ---------
4 | database_name symfony
5 | --------------- ---------
6 |
7 |
--------------------------------------------------------------------------------
/src/Symfony/Bundle/WebProfilerBundle/Resources/ICONS_LICENSE.txt:
--------------------------------------------------------------------------------
1 | Icons License
2 | =============
3 |
4 | Icons created by Sensio (http://www.sensio.com/) are shared under a Creative
5 | Commons Attribution license (http://creativecommons.org/licenses/by-sa/3.0/).
--------------------------------------------------------------------------------
/src/Symfony/Component/Console/Tests/Fixtures/input_argument_2.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | argument description
4 |
5 |
6 |
--------------------------------------------------------------------------------
/src/Symfony/Component/DependencyInjection/Tests/Fixtures/yaml/badtag3.yml:
--------------------------------------------------------------------------------
1 | services:
2 | foo_service:
3 | class: FooClass
4 | tags:
5 | # tag-attribute is not a scalar
6 | - { name: foo, bar: { foo: foo, bar: bar } }
7 |
--------------------------------------------------------------------------------
/src/Symfony/Component/Intl/Resources/data/currencies/de_LU.json:
--------------------------------------------------------------------------------
1 | {
2 | "Version": "2.1.6.69",
3 | "Names": {
4 | "LUF": [
5 | "F",
6 | "Luxemburgischer Franc",
7 | {}
8 | ]
9 | }
10 | }
11 |
--------------------------------------------------------------------------------
/src/Symfony/Component/Intl/Resources/data/scripts/zh_Hans_HK.json:
--------------------------------------------------------------------------------
1 | {
2 | "Version": "2.1.8.19",
3 | "Names": {
4 | "Knda": "卡纳塔克文",
5 | "Sinh": "辛哈拉文",
6 | "Thaa": "塔安娜文",
7 | "Zzzz": "未知语系"
8 | }
9 | }
10 |
--------------------------------------------------------------------------------
/src/Symfony/Component/Intl/Resources/data/scripts/zh_Hans_MO.json:
--------------------------------------------------------------------------------
1 | {
2 | "Version": "2.1.8.19",
3 | "Names": {
4 | "Knda": "卡纳塔克文",
5 | "Sinh": "辛哈拉文",
6 | "Thaa": "塔安娜文",
7 | "Zzzz": "未知语系"
8 | }
9 | }
10 |
--------------------------------------------------------------------------------
/src/Symfony/Component/Intl/Resources/data/scripts/zh_Hans_SG.json:
--------------------------------------------------------------------------------
1 | {
2 | "Version": "2.1.8.19",
3 | "Names": {
4 | "Knda": "卡纳塔克文",
5 | "Sinh": "辛哈拉文",
6 | "Thaa": "塔安娜文",
7 | "Zzzz": "未知语系"
8 | }
9 | }
10 |
--------------------------------------------------------------------------------
/src/Symfony/Component/Translation/Tests/fixtures/escaped-id.po:
--------------------------------------------------------------------------------
1 | msgid ""
2 | msgstr ""
3 | "Content-Type: text/plain; charset=UTF-8\n"
4 | "Content-Transfer-Encoding: 8bit\n"
5 | "Language: en\n"
6 |
7 | msgid "escaped \"foo\""
8 | msgstr "escaped \"bar\""
9 |
--------------------------------------------------------------------------------
/src/Symfony/Bundle/FrameworkBundle/Tests/Fixtures/Descriptor/callable_2.json:
--------------------------------------------------------------------------------
1 | {
2 | "type": "function",
3 | "name": "staticMethod",
4 | "class": "Symfony\\Bundle\\FrameworkBundle\\Tests\\Console\\Descriptor\\CallableClass",
5 | "static": true
6 | }
7 |
--------------------------------------------------------------------------------
/src/Symfony/Bundle/FrameworkBundle/Tests/Fixtures/Descriptor/callable_4.json:
--------------------------------------------------------------------------------
1 | {
2 | "type": "function",
3 | "name": "staticMethod",
4 | "class": "Symfony\\Bundle\\FrameworkBundle\\Tests\\Console\\Descriptor\\CallableClass",
5 | "static": true
6 | }
7 |
--------------------------------------------------------------------------------
/src/Symfony/Bundle/TwigBundle/Resources/views/Exception/traces.txt.twig:
--------------------------------------------------------------------------------
1 | {% if exception.trace|length %}
2 | {% for trace in exception.trace %}
3 | {% include '@Twig/Exception/trace.txt.twig' with { 'trace': trace } only %}
4 |
5 | {% endfor %}
6 | {% endif %}
7 |
--------------------------------------------------------------------------------
/src/Symfony/Component/DependencyInjection/Tests/Fixtures/yaml/services10.yml:
--------------------------------------------------------------------------------
1 | parameters:
2 | project.parameter.foo: BAR
3 |
4 | services:
5 | project.service.foo:
6 | class: BAR
7 |
8 | project:
9 | test: %project.parameter.foo%
10 |
--------------------------------------------------------------------------------