├── src └── Symfony │ ├── Component │ ├── Intl │ │ └── Resources │ │ │ ├── data │ │ │ ├── version.txt │ │ │ ├── transliterator │ │ │ │ └── emoji │ │ │ │ │ ├── emoji-ckb.php │ │ │ │ │ ├── emoji-mni.php │ │ │ │ │ ├── emoji-ceb.php │ │ │ │ │ ├── emoji-vec.php │ │ │ │ │ └── emoji-bgn.php │ │ │ ├── regions │ │ │ │ ├── bo_IN.php │ │ │ │ ├── ro_MD.php │ │ │ │ ├── za.php │ │ │ │ ├── kl.php │ │ │ │ ├── ko_KP.php │ │ │ │ ├── kw.php │ │ │ │ ├── pa_Arab.php │ │ │ │ ├── uz_Arab.php │ │ │ │ ├── de_AT.php │ │ │ │ ├── es_PR.php │ │ │ │ ├── es_SV.php │ │ │ │ ├── fr_BE.php │ │ │ │ ├── bn_IN.php │ │ │ │ ├── ar_LY.php │ │ │ │ ├── st.php │ │ │ │ ├── tn.php │ │ │ │ ├── gv.php │ │ │ │ ├── oc.php │ │ │ │ ├── rw.php │ │ │ │ ├── ar_SA.php │ │ │ │ ├── ps_PK.php │ │ │ │ ├── es_AR.php │ │ │ │ ├── es_BO.php │ │ │ │ ├── es_CO.php │ │ │ │ ├── es_CR.php │ │ │ │ ├── es_DO.php │ │ │ │ ├── es_EC.php │ │ │ │ ├── es_GT.php │ │ │ │ ├── es_HN.php │ │ │ │ ├── es_NI.php │ │ │ │ ├── es_PA.php │ │ │ │ ├── es_PE.php │ │ │ │ ├── es_PY.php │ │ │ │ ├── es_VE.php │ │ │ │ ├── se_FI.php │ │ │ │ ├── es_US.php │ │ │ │ ├── es_CL.php │ │ │ │ ├── de_CH.php │ │ │ │ ├── es_MX.php │ │ │ │ ├── ks_Deva.php │ │ │ │ ├── ii.php │ │ │ │ ├── sa.php │ │ │ │ ├── bo.php │ │ │ │ ├── os.php │ │ │ │ ├── sd_Deva.php │ │ │ │ ├── ru_UA.php │ │ │ │ ├── su.php │ │ │ │ ├── en_001.php │ │ │ │ ├── es_419.php │ │ │ │ ├── sr_XK.php │ │ │ │ └── sr_Cyrl_XK.php │ │ │ ├── scripts │ │ │ │ ├── fa_AF.php │ │ │ │ ├── oc.php │ │ │ │ ├── rw.php │ │ │ │ ├── st.php │ │ │ │ ├── tn.php │ │ │ │ ├── uz_Arab.php │ │ │ │ ├── az_Cyrl.php │ │ │ │ ├── en_AU.php │ │ │ │ ├── za.php │ │ │ │ ├── en_GB.php │ │ │ │ ├── pa_Arab.php │ │ │ │ ├── es_US.php │ │ │ │ ├── hi_Latn.php │ │ │ │ ├── su.php │ │ │ │ ├── bo.php │ │ │ │ ├── sa.php │ │ │ │ ├── se_FI.php │ │ │ │ ├── yi.php │ │ │ │ ├── ii.php │ │ │ │ ├── os.php │ │ │ │ ├── es_419.php │ │ │ │ ├── tt.php │ │ │ │ ├── wo.php │ │ │ │ ├── om.php │ │ │ │ ├── xh.php │ │ │ │ ├── fr_CA.php │ │ │ │ ├── mt.php │ │ │ │ ├── se.php │ │ │ │ ├── zh_HK.php │ │ │ │ ├── zh_Hant_HK.php │ │ │ │ └── ks_Deva.php │ │ │ ├── locales │ │ │ │ ├── ko_KP.php │ │ │ │ ├── ro_MD.php │ │ │ │ ├── es_PR.php │ │ │ │ ├── es_SV.php │ │ │ │ ├── fr_CH.php │ │ │ │ ├── gv.php │ │ │ │ ├── bn_IN.php │ │ │ │ ├── kw.php │ │ │ │ ├── es_MX.php │ │ │ │ ├── kl.php │ │ │ │ ├── za.php │ │ │ │ ├── ar_EG.php │ │ │ │ ├── fr_BE.php │ │ │ │ ├── es_AR.php │ │ │ │ ├── es_BO.php │ │ │ │ ├── es_CO.php │ │ │ │ ├── es_CR.php │ │ │ │ ├── es_DO.php │ │ │ │ ├── es_EC.php │ │ │ │ ├── es_GT.php │ │ │ │ ├── es_HN.php │ │ │ │ ├── es_NI.php │ │ │ │ ├── es_PA.php │ │ │ │ ├── es_PE.php │ │ │ │ ├── es_PY.php │ │ │ │ ├── es_VE.php │ │ │ │ ├── nn.php │ │ │ │ ├── es_CL.php │ │ │ │ ├── tn.php │ │ │ │ ├── oc.php │ │ │ │ ├── st.php │ │ │ │ ├── de_AT.php │ │ │ │ ├── ps_PK.php │ │ │ │ └── ru_UA.php │ │ │ ├── languages │ │ │ │ ├── gv.php │ │ │ │ ├── en_GB.php │ │ │ │ ├── kl.php │ │ │ │ ├── kw.php │ │ │ │ ├── pa_Arab.php │ │ │ │ ├── ar_EG.php │ │ │ │ ├── bn_IN.php │ │ │ │ ├── oc.php │ │ │ │ ├── tn.php │ │ │ │ ├── za.php │ │ │ │ ├── uz_Arab.php │ │ │ │ ├── ro_MD.php │ │ │ │ ├── st.php │ │ │ │ ├── en_001.php │ │ │ │ ├── fr_BE.php │ │ │ │ ├── en_AU.php │ │ │ │ ├── fr_CH.php │ │ │ │ ├── ps_PK.php │ │ │ │ ├── en_CA.php │ │ │ │ ├── es_PR.php │ │ │ │ ├── es_SV.php │ │ │ │ ├── de_CH.php │ │ │ │ └── ar_LY.php │ │ │ ├── timezones │ │ │ │ ├── uz_Arab.php │ │ │ │ ├── ko_KP.php │ │ │ │ ├── ms_ID.php │ │ │ │ ├── root.php │ │ │ │ ├── en_AU.php │ │ │ │ └── de_CH.php │ │ │ ├── currencies │ │ │ │ ├── en_AT.php │ │ │ │ ├── ff_GN.php │ │ │ │ ├── ii.php │ │ │ │ ├── rw.php │ │ │ │ ├── st.php │ │ │ │ ├── st_LS.php │ │ │ │ ├── tn.php │ │ │ │ ├── tn_BW.php │ │ │ │ ├── az_Cyrl.php │ │ │ │ ├── bo_IN.php │ │ │ │ ├── de_LI.php │ │ │ │ ├── en_150.php │ │ │ │ ├── en_GG.php │ │ │ │ ├── en_IM.php │ │ │ │ ├── en_JE.php │ │ │ │ ├── es_GT.php │ │ │ │ ├── ff_Latn_GN.php │ │ │ │ ├── om_KE.php │ │ │ │ ├── uz_Arab.php │ │ │ │ ├── zh_MO.php │ │ │ │ ├── ar_DJ.php │ │ │ │ ├── ar_ER.php │ │ │ │ ├── ar_LB.php │ │ │ │ ├── ar_SO.php │ │ │ │ ├── ca_FR.php │ │ │ │ ├── en_BW.php │ │ │ │ ├── en_BZ.php │ │ │ │ ├── en_DK.php │ │ │ │ ├── en_FJ.php │ │ │ │ ├── en_GE.php │ │ │ │ ├── en_GM.php │ │ │ │ ├── en_NG.php │ │ │ │ ├── en_NH.php │ │ │ │ ├── en_RW.php │ │ │ │ ├── en_SE.php │ │ │ │ ├── en_VU.php │ │ │ │ ├── en_WS.php │ │ │ │ ├── en_ZM.php │ │ │ │ ├── es_BO.php │ │ │ │ ├── es_BZ.php │ │ │ │ ├── es_PE.php │ │ │ │ ├── es_PH.php │ │ │ │ ├── ff_Latn_GH.php │ │ │ │ ├── fo_DK.php │ │ │ │ ├── fr_GN.php │ │ │ │ ├── ms_BN.php │ │ │ │ ├── ru_MD.php │ │ │ │ ├── ti_ER.php │ │ │ │ ├── zh_Hans_MY.php │ │ │ │ ├── zh_Hant_MO.php │ │ │ │ ├── af_NA.php │ │ │ │ ├── ar_KM.php │ │ │ │ ├── en_BB.php │ │ │ │ ├── en_BI.php │ │ │ │ ├── en_BM.php │ │ │ │ ├── en_BS.php │ │ │ │ ├── en_CC.php │ │ │ │ ├── en_CK.php │ │ │ │ ├── en_CX.php │ │ │ │ ├── en_ER.php │ │ │ │ ├── en_GH.php │ │ │ │ ├── en_GY.php │ │ │ │ ├── en_ID.php │ │ │ │ ├── en_JM.php │ │ │ │ ├── en_KE.php │ │ │ │ ├── en_KI.php │ │ │ │ ├── en_LR.php │ │ │ │ ├── en_LS.php │ │ │ │ ├── en_MG.php │ │ │ │ ├── en_MO.php │ │ │ │ ├── en_MT.php │ │ │ │ ├── en_MU.php │ │ │ │ ├── en_MV.php │ │ │ │ ├── en_MW.php │ │ │ │ ├── en_MY.php │ │ │ │ ├── en_NA.php │ │ │ │ ├── en_NF.php │ │ │ │ ├── en_NO.php │ │ │ │ ├── en_NR.php │ │ │ │ ├── en_NU.php │ │ │ │ ├── en_NZ.php │ │ │ │ ├── en_PK.php │ │ │ │ ├── en_PN.php │ │ │ │ ├── en_SC.php │ │ │ │ ├── en_SG.php │ │ │ │ ├── en_SZ.php │ │ │ │ ├── en_TK.php │ │ │ │ ├── en_TO.php │ │ │ │ ├── en_TV.php │ │ │ │ ├── en_UG.php │ │ │ │ ├── en_ZA.php │ │ │ │ ├── es_BR.php │ │ │ │ ├── es_CR.php │ │ │ │ ├── es_HN.php │ │ │ │ ├── es_PA.php │ │ │ │ ├── es_PY.php │ │ │ │ ├── ff_Latn_GM.php │ │ │ │ ├── ff_MR.php │ │ │ │ ├── fr_BI.php │ │ │ │ ├── fr_CD.php │ │ │ │ ├── fr_DJ.php │ │ │ │ ├── fr_DZ.php │ │ │ │ ├── fr_HT.php │ │ │ │ ├── fr_KM.php │ │ │ │ ├── fr_MG.php │ │ │ │ ├── fr_MU.php │ │ │ │ ├── fr_RW.php │ │ │ │ ├── fr_SY.php │ │ │ │ ├── fr_TN.php │ │ │ │ ├── fr_VU.php │ │ │ │ ├── ha_GH.php │ │ │ │ ├── ln_AO.php │ │ │ │ ├── ms_ID.php │ │ │ │ ├── ms_SG.php │ │ │ │ ├── nl_AW.php │ │ │ │ ├── nl_BQ.php │ │ │ │ ├── nl_SR.php │ │ │ │ ├── ps_PK.php │ │ │ │ ├── pt_AO.php │ │ │ │ ├── pt_LU.php │ │ │ │ ├── pt_MO.php │ │ │ │ ├── ro_MD.php │ │ │ │ ├── ru_KG.php │ │ │ │ ├── ru_KZ.php │ │ │ │ ├── so_DJ.php │ │ │ │ ├── so_ET.php │ │ │ │ ├── so_KE.php │ │ │ │ ├── sq_MK.php │ │ │ │ ├── ta_LK.php │ │ │ │ ├── de_LU.php │ │ │ │ ├── en_AG.php │ │ │ │ ├── en_AI.php │ │ │ │ ├── en_DM.php │ │ │ │ ├── en_GD.php │ │ │ │ ├── en_KN.php │ │ │ │ ├── en_KY.php │ │ │ │ ├── en_LC.php │ │ │ │ ├── en_MS.php │ │ │ │ ├── en_PG.php │ │ │ │ ├── en_SB.php │ │ │ │ ├── en_SL.php │ │ │ │ ├── en_TT.php │ │ │ │ ├── en_TZ.php │ │ │ │ ├── en_VC.php │ │ │ │ ├── es_EC.php │ │ │ │ ├── es_NI.php │ │ │ │ ├── es_PR.php │ │ │ │ ├── es_SV.php │ │ │ │ ├── ff_Latn_LR.php │ │ │ │ ├── ff_Latn_MR.php │ │ │ │ ├── ff_Latn_NG.php │ │ │ │ ├── ff_Latn_SL.php │ │ │ │ ├── fr_MR.php │ │ │ │ ├── fr_SC.php │ │ │ │ ├── hr_BA.php │ │ │ │ ├── pt_MZ.php │ │ │ │ ├── sw_UG.php │ │ │ │ ├── pt_ST.php │ │ │ │ ├── en_SX.php │ │ │ │ ├── es_GQ.php │ │ │ │ ├── ff_Adlm_BF.php │ │ │ │ ├── ff_Adlm_CM.php │ │ │ │ ├── ff_Adlm_GW.php │ │ │ │ ├── ff_Adlm_NE.php │ │ │ │ ├── ff_Adlm_SN.php │ │ │ │ ├── nl_CW.php │ │ │ │ ├── nl_SX.php │ │ │ │ ├── kl.php │ │ │ │ ├── os_RU.php │ │ │ │ ├── zh_SG.php │ │ │ │ ├── zh_Hans_MO.php │ │ │ │ ├── zh_Hans_SG.php │ │ │ │ ├── zh_Hans_HK.php │ │ │ │ ├── qu_BO.php │ │ │ │ ├── en_GI.php │ │ │ │ ├── en_SH.php │ │ │ │ ├── qu_EC.php │ │ │ │ ├── se_SE.php │ │ │ │ ├── ar_SS.php │ │ │ │ ├── en_SS.php │ │ │ │ ├── es_AR.php │ │ │ │ ├── es_CL.php │ │ │ │ ├── es_CU.php │ │ │ │ ├── fr_LU.php │ │ │ │ ├── ta_MY.php │ │ │ │ ├── en_FK.php │ │ │ │ ├── es_CO.php │ │ │ │ ├── es_DO.php │ │ │ │ ├── pt_CV.php │ │ │ │ ├── es_VE.php │ │ │ │ ├── ru_BY.php │ │ │ │ ├── ff_Adlm_GH.php │ │ │ │ ├── ff_Adlm_GM.php │ │ │ │ ├── ff_Adlm_LR.php │ │ │ │ ├── ff_Adlm_NG.php │ │ │ │ ├── ff_Adlm_SL.php │ │ │ │ ├── ff_Adlm_MR.php │ │ │ │ ├── mt.php │ │ │ │ ├── pa_Arab.php │ │ │ │ ├── bo.php │ │ │ │ ├── ta_SG.php │ │ │ │ ├── es_UY.php │ │ │ │ ├── en_IN.php │ │ │ │ └── de_CH.php │ │ │ └── git-info.txt │ │ │ └── bin │ │ │ └── compile │ ├── Security │ │ ├── .gitignore │ │ ├── Core │ │ │ └── Event │ │ │ │ └── AuthenticationSuccessEvent.php │ │ └── Csrf │ │ │ └── CHANGELOG.md │ ├── Cache │ │ └── Traits │ │ │ ├── ValueWrapper.php │ │ │ └── CachedValueInterface.php │ ├── Console │ │ └── Resources │ │ │ └── bin │ │ │ └── hiddeninput.exe │ ├── WebLink │ │ └── CHANGELOG.md │ ├── Webhook │ │ ├── CHANGELOG.md │ │ ├── Exception │ │ │ └── ExceptionInterface.php │ │ └── README.md │ ├── RemoteEvent │ │ ├── CHANGELOG.md │ │ └── Exception │ │ │ ├── ExceptionInterface.php │ │ │ └── ParseException.php │ ├── HtmlSanitizer │ │ └── CHANGELOG.md │ ├── PasswordHasher │ │ └── CHANGELOG.md │ ├── ErrorHandler │ │ ├── Resources │ │ │ └── assets │ │ │ │ ├── images │ │ │ │ ├── icon-copy.svg │ │ │ │ ├── chevron-right.svg │ │ │ │ ├── icon-minus-square.svg │ │ │ │ ├── icon-minus-square-o.svg │ │ │ │ └── icon-plus-square.svg │ │ │ │ └── css │ │ │ │ └── error.css │ │ └── Error │ │ │ └── OutOfMemoryError.php │ ├── Semaphore │ │ └── CHANGELOG.md │ ├── Templating │ │ └── CHANGELOG.md │ ├── RateLimiter │ │ └── CHANGELOG.md │ ├── CssSelector │ │ └── CHANGELOG.md │ ├── Workflow │ │ └── Event │ │ │ ├── EnterEvent.php │ │ │ ├── LeaveEvent.php │ │ │ ├── AnnounceEvent.php │ │ │ ├── EnteredEvent.php │ │ │ └── CompletedEvent.php │ ├── VarDumper │ │ └── Resources │ │ │ └── js │ │ │ └── htmlDescriptor.js │ ├── Form │ │ ├── Exception │ │ │ ├── AccessException.php │ │ │ ├── ErrorMappingException.php │ │ │ ├── StringCastException.php │ │ │ └── InvalidConfigurationException.php │ │ ├── FileUploadError.php │ │ └── Test │ │ │ └── FormInterface.php │ ├── String │ │ └── Exception │ │ │ ├── ExceptionInterface.php │ │ │ ├── RuntimeException.php │ │ │ └── InvalidArgumentException.php │ ├── Ldap │ │ └── Exception │ │ │ └── UpdateOperationException.php │ ├── Validator │ │ ├── Exception │ │ │ ├── MappingException.php │ │ │ ├── ValidatorException.php │ │ │ ├── GroupDefinitionException.php │ │ │ ├── LogicException.php │ │ │ └── ConstraintDefinitionException.php │ │ └── Attribute │ │ │ └── HasNamedArguments.php │ ├── AssetMapper │ │ ├── Exception │ │ │ ├── ExceptionInterface.php │ │ │ ├── LogicException.php │ │ │ └── RuntimeException.php │ │ └── ImportMap │ │ │ └── ImportMapType.php │ ├── VarExporter │ │ └── Exception │ │ │ ├── ExceptionInterface.php │ │ │ └── LogicException.php │ ├── HttpKernel │ │ ├── Exception │ │ │ └── InvalidMetadataException.php │ │ └── HttpCache │ │ │ └── CacheWasLockedException.php │ ├── Mailer │ │ └── Exception │ │ │ └── UnexpectedResponseException.php │ ├── BrowserKit │ │ └── Exception │ │ │ ├── JsonException.php │ │ │ ├── LogicException.php │ │ │ ├── RuntimeException.php │ │ │ ├── BadMethodCallException.php │ │ │ ├── InvalidArgumentException.php │ │ │ └── UnexpectedValueException.php │ ├── Scheduler │ │ ├── Exception │ │ │ ├── LogicException.php │ │ │ ├── InvalidArgumentException.php │ │ │ └── ExceptionInterface.php │ │ ├── ScheduleProviderInterface.php │ │ └── README.md │ ├── Routing │ │ └── Exception │ │ │ ├── RuntimeException.php │ │ │ └── InvalidArgumentException.php │ ├── HttpFoundation │ │ └── Exception │ │ │ └── UnexpectedValueException.php │ ├── Uid │ │ ├── MaxUlid.php │ │ ├── NilUlid.php │ │ └── MaxUuid.php │ ├── DependencyInjection │ │ ├── Attribute │ │ │ └── AutowireDecorated.php │ │ └── Loader │ │ │ └── Configurator │ │ │ └── ClosureReferenceConfigurator.php │ ├── Serializer │ │ └── Exception │ │ │ └── BadMethodCallException.php │ ├── Notifier │ │ ├── Recipient │ │ │ ├── RecipientInterface.php │ │ │ └── NoRecipient.php │ │ └── Exception │ │ │ └── LengthException.php │ ├── Mime │ │ ├── Exception │ │ │ ├── ExceptionInterface.php │ │ │ └── AddressEncoderException.php │ │ └── README.md │ ├── Messenger │ │ ├── Exception │ │ │ └── TransportException.php │ │ └── Stamp │ │ │ └── MessageDecodingFailedStamp.php │ ├── Clock │ │ └── CHANGELOG.md │ └── Yaml │ │ └── README.md │ ├── Bundle │ ├── WebProfilerBundle │ │ └── Resources │ │ │ ├── views │ │ │ ├── Profiler │ │ │ │ └── ajax_layout.html.twig │ │ │ ├── Icon │ │ │ │ ├── yes.svg │ │ │ │ ├── chevron-down.svg │ │ │ │ ├── referrer.svg │ │ │ │ ├── settings-width-fixed.svg │ │ │ │ ├── no.svg │ │ │ │ ├── close.svg │ │ │ │ ├── filter.svg │ │ │ │ ├── search.svg │ │ │ │ ├── settings-theme-dark.svg │ │ │ │ ├── mailer.svg │ │ │ │ ├── redirect.svg │ │ │ │ ├── settings-theme-system.svg │ │ │ │ ├── attachment.svg │ │ │ │ ├── file.svg │ │ │ │ ├── command.svg │ │ │ │ ├── request.svg │ │ │ │ ├── alert-circle.svg │ │ │ │ ├── forward.svg │ │ │ │ ├── download.svg │ │ │ │ ├── serializer.svg │ │ │ │ ├── menu.svg │ │ │ │ └── ajax.svg │ │ │ └── Collector │ │ │ │ └── router.html.twig │ │ │ ├── fonts │ │ │ ├── JetBrainsMono.woff2 │ │ │ └── LICENSE.txt │ │ │ └── config │ │ │ └── routing │ │ │ └── wdt.xml │ ├── DebugBundle │ │ └── CHANGELOG.md │ ├── TwigBundle │ │ └── README.md │ ├── SecurityBundle │ │ ├── Resources │ │ │ └── views │ │ │ │ └── Collector │ │ │ │ └── icon.svg │ │ └── README.md │ ├── FrameworkBundle │ │ └── Routing │ │ │ └── RouteLoaderInterface.php │ └── FullStack.php │ └── Bridge │ ├── Twig │ ├── Resources │ │ └── views │ │ │ └── Email │ │ │ ├── zurb_2 │ │ │ └── notification │ │ │ │ ├── content_markdown.html.twig │ │ │ │ ├── local.css │ │ │ │ └── body.txt.twig │ │ │ └── default │ │ │ └── notification │ │ │ ├── body.html.twig │ │ │ └── body.txt.twig │ └── README.md │ ├── ProxyManager │ └── CHANGELOG.md │ ├── PsrHttpMessage │ └── README.md │ ├── Monolog │ └── README.md │ └── Doctrine │ └── README.md ├── .github ├── psalm │ ├── .gitignore │ └── psalm.baseline.xml └── workflows │ └── fabbot.yml ├── .gitignore ├── .git-blame-ignore-revs ├── .editorconfig ├── CODE_OF_CONDUCT.md └── UPGRADE-7.0.md /src/Symfony/Component/Intl/Resources/data/version.txt: -------------------------------------------------------------------------------- 1 | 78.1 2 | -------------------------------------------------------------------------------- /.github/psalm/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | !stubs 4 | !stubs/* 5 | -------------------------------------------------------------------------------- /src/Symfony/Component/Security/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | phpunit.xml 4 | -------------------------------------------------------------------------------- /src/Symfony/Bundle/WebProfilerBundle/Resources/views/Profiler/ajax_layout.html.twig: -------------------------------------------------------------------------------- 1 | {% block panel '' %} 2 | -------------------------------------------------------------------------------- /.github/psalm/psalm.baseline.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/Symfony/Bridge/Twig/Resources/views/Email/zurb_2/notification/content_markdown.html.twig: -------------------------------------------------------------------------------- 1 | {{ content|markdown_to_html }} 2 | -------------------------------------------------------------------------------- /src/Symfony/Bridge/Twig/Resources/views/Email/default/notification/body.html.twig: -------------------------------------------------------------------------------- 1 | {% extends "@email/zurb_2/notification/body.html.twig" %} 2 | -------------------------------------------------------------------------------- /src/Symfony/Bridge/Twig/Resources/views/Email/default/notification/body.txt.twig: -------------------------------------------------------------------------------- 1 | {% extends "@email/zurb_2/notification/body.txt.twig" %} 2 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/transliterator/emoji/emoji-ckb.php: -------------------------------------------------------------------------------- 1 | 'دەمانچەی ئاوی', 5 | ]; 6 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/transliterator/emoji/emoji-mni.php: -------------------------------------------------------------------------------- 1 | 'ঈশিংকাপ্পী নোংমৈ', 5 | ]; 6 | -------------------------------------------------------------------------------- /src/Symfony/Component/Cache/Traits/ValueWrapper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabpot/symfony/HEAD/src/Symfony/Component/Cache/Traits/ValueWrapper.php -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/regions/bo_IN.php: -------------------------------------------------------------------------------- 1 | [], 5 | 'Names' => [], 6 | ]; 7 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/transliterator/emoji/emoji-ceb.php: -------------------------------------------------------------------------------- 1 | 'flag sa transgender', 5 | ]; 6 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/scripts/fa_AF.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'Mong' => 'مغلی', 6 | ], 7 | ]; 8 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/scripts/oc.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'Latn' => 'latin', 6 | ], 7 | ]; 8 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/scripts/rw.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'Latn' => 'Latin', 6 | ], 7 | ]; 8 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/scripts/st.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'Latn' => 'Selatine', 6 | ], 7 | ]; 8 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/scripts/tn.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'Latn' => 'Selatine', 6 | ], 7 | ]; 8 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/scripts/uz_Arab.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'Arab' => 'عربی', 6 | ], 7 | ]; 8 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/transliterator/emoji/emoji-vec.php: -------------------------------------------------------------------------------- 1 | 'ua', 5 | '🍈' => 'melon', 6 | ]; 7 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/scripts/az_Cyrl.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'Cyrl' => 'Кирил', 6 | ], 7 | ]; 8 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/scripts/en_AU.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'Beng' => 'Bengali', 6 | ], 7 | ]; 8 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/scripts/za.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'Latn' => 'Lahdinghvwnz', 6 | ], 7 | ]; 8 | -------------------------------------------------------------------------------- /src/Symfony/Component/Console/Resources/bin/hiddeninput.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabpot/symfony/HEAD/src/Symfony/Component/Console/Resources/bin/hiddeninput.exe -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/locales/ko_KP.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'ko_KP' => '한국어(조선민주주의인민공화국)', 6 | ], 7 | ]; 8 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/locales/ro_MD.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'my_MM' => 'birmană (Myanmar)', 6 | ], 7 | ]; 8 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/scripts/en_GB.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'Hrkt' => 'Japanese Syllabaries', 6 | ], 7 | ]; 8 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/languages/gv.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'gv' => 'Gaelg', 6 | ], 7 | 'LocalizedNames' => [], 8 | ]; 9 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/languages/en_GB.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'ff' => 'Fulah', 6 | ], 7 | 'LocalizedNames' => [], 8 | ]; 9 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/languages/kl.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'kl' => 'kalaallisut', 6 | ], 7 | 'LocalizedNames' => [], 8 | ]; 9 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/languages/kw.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'kw' => 'kernewek', 6 | ], 7 | 'LocalizedNames' => [], 8 | ]; 9 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/languages/pa_Arab.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'pa' => 'پنجابی', 6 | ], 7 | 'LocalizedNames' => [], 8 | ]; 9 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/regions/ro_MD.php: -------------------------------------------------------------------------------- 1 | [], 5 | 'Names' => [ 6 | 'MM' => 'Myanmar', 7 | ], 8 | ]; 9 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/regions/za.php: -------------------------------------------------------------------------------- 1 | [], 5 | 'Names' => [ 6 | 'CN' => 'Cunghgoz', 7 | ], 8 | ]; 9 | -------------------------------------------------------------------------------- /src/Symfony/Bundle/WebProfilerBundle/Resources/fonts/JetBrainsMono.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabpot/symfony/HEAD/src/Symfony/Bundle/WebProfilerBundle/Resources/fonts/JetBrainsMono.woff2 -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/languages/ar_EG.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'da' => 'الدنماركية', 6 | ], 7 | 'LocalizedNames' => [], 8 | ]; 9 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/languages/bn_IN.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'ksh' => 'কোলোনিয়ান', 6 | ], 7 | 'LocalizedNames' => [], 8 | ]; 9 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/locales/es_PR.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'wo' => 'wolof', 6 | 'wo_SN' => 'wolof (Senegal)', 7 | ], 8 | ]; 9 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/locales/es_SV.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'wo' => 'wolof', 6 | 'wo_SN' => 'wolof (Senegal)', 7 | ], 8 | ]; 9 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/regions/kl.php: -------------------------------------------------------------------------------- 1 | [], 5 | 'Names' => [ 6 | 'GL' => 'Kalaallit Nunaat', 7 | ], 8 | ]; 9 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/regions/ko_KP.php: -------------------------------------------------------------------------------- 1 | [], 5 | 'Names' => [ 6 | 'KP' => '조선민주주의인민공화국', 7 | ], 8 | ]; 9 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/regions/kw.php: -------------------------------------------------------------------------------- 1 | [], 5 | 'Names' => [ 6 | 'GB' => 'Rywvaneth Unys', 7 | ], 8 | ]; 9 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/regions/pa_Arab.php: -------------------------------------------------------------------------------- 1 | [], 5 | 'Names' => [ 6 | 'PK' => 'پاکستان', 7 | ], 8 | ]; 9 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/regions/uz_Arab.php: -------------------------------------------------------------------------------- 1 | [], 5 | 'Names' => [ 6 | 'AF' => 'افغانستان', 7 | ], 8 | ]; 9 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/locales/fr_CH.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'gu' => 'goudjrati', 6 | 'gu_IN' => 'goudjrati (Inde)', 7 | ], 8 | ]; 9 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/locales/gv.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'gv' => 'Gaelg', 6 | 'gv_IM' => 'Gaelg (Ellan Vannin)', 7 | ], 8 | ]; 9 | -------------------------------------------------------------------------------- /src/Symfony/Component/WebLink/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | CHANGELOG 2 | ========= 3 | 4 | 4.4.0 5 | ----- 6 | 7 | * implement PSR-13 directly 8 | 9 | 3.3.0 10 | ----- 11 | 12 | * added the component 13 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | phpunit.xml 4 | .php-cs-fixer.cache 5 | .php-cs-fixer.php 6 | .phpunit.result.cache 7 | composer.phar 8 | package.tar 9 | /packages.json 10 | /.phpunit 11 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/locales/bn_IN.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'en_UM' => 'ইংরেজি (মার্কিন যুক্তরাষ্ট্রের দূরবর্তী দ্বীপপুঞ্জ)', 6 | ], 7 | ]; 8 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/locales/kw.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'kw' => 'kernewek', 6 | 'kw_GB' => 'kernewek (Rywvaneth Unys)', 7 | ], 8 | ]; 9 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/regions/de_AT.php: -------------------------------------------------------------------------------- 1 | [], 5 | 'Names' => [ 6 | 'SJ' => 'Svalbard und Jan Mayen', 7 | ], 8 | ]; 9 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/timezones/uz_Arab.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'Asia/Kabul' => 'Afgʻoniston vaqti (کابل)', 6 | ], 7 | 'Meta' => [], 8 | ]; 9 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/locales/es_MX.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'en_GG' => 'inglés (Guernsey)', 6 | 'en_SZ' => 'inglés (Eswatini)', 7 | ], 8 | ]; 9 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/locales/kl.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'kl' => 'kalaallisut', 6 | 'kl_GL' => 'kalaallisut (Kalaallit Nunaat)', 7 | ], 8 | ]; 9 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/regions/es_PR.php: -------------------------------------------------------------------------------- 1 | [], 5 | 'Names' => [ 6 | 'UM' => 'Islas menores alejadas de EE. UU.', 7 | ], 8 | ]; 9 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/regions/es_SV.php: -------------------------------------------------------------------------------- 1 | [], 5 | 'Names' => [ 6 | 'UM' => 'Islas menores alejadas de EE. UU.', 7 | ], 8 | ]; 9 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/currencies/en_AT.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'EUR' => [ 6 | '€', 7 | 'Euro', 8 | ], 9 | ], 10 | ]; 11 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/currencies/ff_GN.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'GNF' => [ 6 | 'FG', 7 | 'GNF', 8 | ], 9 | ], 10 | ]; 11 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/currencies/ii.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'CNY' => [ 6 | '¥', 7 | 'CNY', 8 | ], 9 | ], 10 | ]; 11 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/currencies/rw.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'RWF' => [ 6 | 'RF', 7 | 'RWF', 8 | ], 9 | ], 10 | ]; 11 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/currencies/st.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'ZAR' => [ 6 | 'R', 7 | 'ZAR', 8 | ], 9 | ], 10 | ]; 11 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/currencies/st_LS.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'LSL' => [ 6 | 'M', 7 | 'LSL', 8 | ], 9 | ], 10 | ]; 11 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/currencies/tn.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'ZAR' => [ 6 | 'R', 7 | 'ZAR', 8 | ], 9 | ], 10 | ]; 11 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/currencies/tn_BW.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'BWP' => [ 6 | 'P', 7 | 'BWP', 8 | ], 9 | ], 10 | ]; 11 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/regions/fr_BE.php: -------------------------------------------------------------------------------- 1 | [], 5 | 'Names' => [ 6 | 'GS' => 'Îles Géorgie du Sud et Sandwich du Sud', 7 | ], 8 | ]; 9 | -------------------------------------------------------------------------------- /src/Symfony/Component/Webhook/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | CHANGELOG 2 | ========= 3 | 4 | 6.4 5 | --- 6 | 7 | * Mark the component as non experimental 8 | 9 | 6.3 10 | --- 11 | 12 | * Add the component (experimental) 13 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/currencies/az_Cyrl.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'AZN' => [ 6 | '₼', 7 | 'AZN', 8 | ], 9 | ], 10 | ]; 11 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/currencies/bo_IN.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'CNY' => [ 6 | 'CN¥', 7 | 'ཡུ་ཨན་', 8 | ], 9 | ], 10 | ]; 11 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/currencies/de_LI.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'EUR' => [ 6 | 'EUR', 7 | 'Euro', 8 | ], 9 | ], 10 | ]; 11 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/currencies/en_150.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'EUR' => [ 6 | '€', 7 | 'Euro', 8 | ], 9 | ], 10 | ]; 11 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/currencies/en_GG.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'GBP' => [ 6 | '£', 7 | 'UK Pound', 8 | ], 9 | ], 10 | ]; 11 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/currencies/en_IM.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'GBP' => [ 6 | '£', 7 | 'UK Pound', 8 | ], 9 | ], 10 | ]; 11 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/currencies/en_JE.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'GBP' => [ 6 | '£', 7 | 'UK Pound', 8 | ], 9 | ], 10 | ]; 11 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/currencies/es_GT.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'GTQ' => [ 6 | 'Q', 7 | 'quetzal', 8 | ], 9 | ], 10 | ]; 11 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/currencies/ff_Latn_GN.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'GNF' => [ 6 | 'FG', 7 | 'GNF', 8 | ], 9 | ], 10 | ]; 11 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/currencies/om_KE.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'KES' => [ 6 | 'Ksh', 7 | 'KES', 8 | ], 9 | ], 10 | ]; 11 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/currencies/uz_Arab.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'AFN' => [ 6 | '؋', 7 | 'افغانی', 8 | ], 9 | ], 10 | ]; 11 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/currencies/zh_MO.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'MOP' => [ 6 | 'MOP$', 7 | '澳門元', 8 | ], 9 | ], 10 | ]; 11 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/languages/oc.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'en' => 'anglés', 6 | 'oc' => 'occitan', 7 | ], 8 | 'LocalizedNames' => [], 9 | ]; 10 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/regions/bn_IN.php: -------------------------------------------------------------------------------- 1 | [], 5 | 'Names' => [ 6 | 'UM' => 'মার্কিন যুক্তরাষ্ট্রের দূরবর্তী দ্বীপপুঞ্জ', 7 | ], 8 | ]; 9 | -------------------------------------------------------------------------------- /src/Symfony/Component/RemoteEvent/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | CHANGELOG 2 | ========= 3 | 4 | 6.4 5 | --- 6 | 7 | * Mark the component as non experimental 8 | 9 | 6.3 10 | --- 11 | 12 | * Add the component (experimental) 13 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/currencies/ar_DJ.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'DJF' => [ 6 | 'Fdj', 7 | 'فرنك جيبوتي', 8 | ], 9 | ], 10 | ]; 11 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/currencies/ar_ER.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'ERN' => [ 6 | 'Nfk', 7 | 'ناكفا أريتري', 8 | ], 9 | ], 10 | ]; 11 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/currencies/ar_LB.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'SDG' => [ 6 | 'SDG', 7 | 'جنيه سوداني', 8 | ], 9 | ], 10 | ]; 11 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/currencies/ar_SO.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'SOS' => [ 6 | 'S', 7 | 'شلن صومالي', 8 | ], 9 | ], 10 | ]; 11 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/currencies/ca_FR.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'FRF' => [ 6 | 'F', 7 | 'franc francès', 8 | ], 9 | ], 10 | ]; 11 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/currencies/en_BW.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'BWP' => [ 6 | 'P', 7 | 'Botswanan Pula', 8 | ], 9 | ], 10 | ]; 11 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/currencies/en_BZ.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'BZD' => [ 6 | '$', 7 | 'Belize Dollar', 8 | ], 9 | ], 10 | ]; 11 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/currencies/en_DK.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'DKK' => [ 6 | 'kr.', 7 | 'Danish Krone', 8 | ], 9 | ], 10 | ]; 11 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/currencies/en_FJ.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'FJD' => [ 6 | '$', 7 | 'Fijian Dollar', 8 | ], 9 | ], 10 | ]; 11 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/currencies/en_GE.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'GEL' => [ 6 | '₾', 7 | 'Georgian Lari', 8 | ], 9 | ], 10 | ]; 11 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/currencies/en_GM.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'GMD' => [ 6 | 'D', 7 | 'Gambian Dalasi', 8 | ], 9 | ], 10 | ]; 11 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/currencies/en_NG.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'NGN' => [ 6 | '₦', 7 | 'Nigerian Naira', 8 | ], 9 | ], 10 | ]; 11 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/currencies/en_NH.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'VUV' => [ 6 | 'VT', 7 | 'Vanuatu Vatu', 8 | ], 9 | ], 10 | ]; 11 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/currencies/en_RW.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'RWF' => [ 6 | 'RF', 7 | 'Rwandan Franc', 8 | ], 9 | ], 10 | ]; 11 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/currencies/en_SE.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'SEK' => [ 6 | 'kr', 7 | 'Swedish Krona', 8 | ], 9 | ], 10 | ]; 11 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/currencies/en_VU.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'VUV' => [ 6 | 'VT', 7 | 'Vanuatu Vatu', 8 | ], 9 | ], 10 | ]; 11 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/currencies/en_WS.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'WST' => [ 6 | 'WS$', 7 | 'Samoan Tala', 8 | ], 9 | ], 10 | ]; 11 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/currencies/en_ZM.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'ZMW' => [ 6 | 'K', 7 | 'Zambian Kwacha', 8 | ], 9 | ], 10 | ]; 11 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/currencies/es_BO.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'BOB' => [ 6 | 'Bs', 7 | 'boliviano', 8 | ], 9 | ], 10 | ]; 11 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/currencies/es_BZ.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'BZD' => [ 6 | '$', 7 | 'dólar beliceño', 8 | ], 9 | ], 10 | ]; 11 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/currencies/es_PE.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'PEN' => [ 6 | 'S/', 7 | 'sol peruano', 8 | ], 9 | ], 10 | ]; 11 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/currencies/es_PH.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'PHP' => [ 6 | '₱', 7 | 'peso filipino', 8 | ], 9 | ], 10 | ]; 11 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/currencies/ff_Latn_GH.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'GHS' => [ 6 | 'GH₵', 7 | 'GHS', 8 | ], 9 | ], 10 | ]; 11 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/currencies/fo_DK.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'DKK' => [ 6 | 'kr.', 7 | 'donsk króna', 8 | ], 9 | ], 10 | ]; 11 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/currencies/fr_GN.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'GNF' => [ 6 | 'FG', 7 | 'franc guinéen', 8 | ], 9 | ], 10 | ]; 11 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/currencies/ms_BN.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'BND' => [ 6 | '$', 7 | 'Dolar Brunei', 8 | ], 9 | ], 10 | ]; 11 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/currencies/ru_MD.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'MDL' => [ 6 | 'L', 7 | 'молдавский лей', 8 | ], 9 | ], 10 | ]; 11 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/currencies/ti_ER.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'ERN' => [ 6 | 'Nfk', 7 | 'ኤርትራዊ ናቕፋ', 8 | ], 9 | ], 10 | ]; 11 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/currencies/zh_Hans_MY.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'MYR' => [ 6 | 'MYR', 7 | '马来西亚令吉', 8 | ], 9 | ], 10 | ]; 11 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/currencies/zh_Hant_MO.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'MOP' => [ 6 | 'MOP$', 7 | '澳門元', 8 | ], 9 | ], 10 | ]; 11 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/languages/tn.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'en' => 'Sekgoa', 6 | 'tn' => 'Setswana', 7 | ], 8 | 'LocalizedNames' => [], 9 | ]; 10 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/languages/za.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'en' => 'Yinghyij', 6 | 'za' => 'Vahcuengh', 7 | ], 8 | 'LocalizedNames' => [], 9 | ]; 10 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/currencies/af_NA.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'NAD' => [ 6 | '$', 7 | 'Namibiese dollar', 8 | ], 9 | ], 10 | ]; 11 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/currencies/ar_KM.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'KMF' => [ 6 | 'CF', 7 | 'فرنك جزر القمر', 8 | ], 9 | ], 10 | ]; 11 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/currencies/en_BB.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'BBD' => [ 6 | '$', 7 | 'Barbadian Dollar', 8 | ], 9 | ], 10 | ]; 11 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/currencies/en_BI.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'BIF' => [ 6 | 'FBu', 7 | 'Burundian Franc', 8 | ], 9 | ], 10 | ]; 11 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/currencies/en_BM.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'BMD' => [ 6 | '$', 7 | 'Bermudian Dollar', 8 | ], 9 | ], 10 | ]; 11 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/currencies/en_BS.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'BSD' => [ 6 | '$', 7 | 'Bahamian Dollar', 8 | ], 9 | ], 10 | ]; 11 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/currencies/en_CC.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'AUD' => [ 6 | '$', 7 | 'Australian Dollar', 8 | ], 9 | ], 10 | ]; 11 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/currencies/en_CK.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'NZD' => [ 6 | '$', 7 | 'New Zealand Dollar', 8 | ], 9 | ], 10 | ]; 11 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/currencies/en_CX.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'AUD' => [ 6 | '$', 7 | 'Australian Dollar', 8 | ], 9 | ], 10 | ]; 11 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/currencies/en_ER.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'ERN' => [ 6 | 'Nfk', 7 | 'Eritrean Nakfa', 8 | ], 9 | ], 10 | ]; 11 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/currencies/en_GH.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'GHS' => [ 6 | 'GH₵', 7 | 'Ghanaian Cedi', 8 | ], 9 | ], 10 | ]; 11 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/currencies/en_GY.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'GYD' => [ 6 | '$', 7 | 'Guyanaese Dollar', 8 | ], 9 | ], 10 | ]; 11 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/currencies/en_ID.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'IDR' => [ 6 | 'Rp', 7 | 'Indonesian Rupiah', 8 | ], 9 | ], 10 | ]; 11 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/currencies/en_JM.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'JMD' => [ 6 | '$', 7 | 'Jamaican Dollar', 8 | ], 9 | ], 10 | ]; 11 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/currencies/en_KE.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'KES' => [ 6 | 'Ksh', 7 | 'Kenyan Shilling', 8 | ], 9 | ], 10 | ]; 11 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/currencies/en_KI.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'AUD' => [ 6 | '$', 7 | 'Australian Dollar', 8 | ], 9 | ], 10 | ]; 11 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/currencies/en_LR.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'LRD' => [ 6 | '$', 7 | 'Liberian Dollar', 8 | ], 9 | ], 10 | ]; 11 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/currencies/en_LS.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'ZAR' => [ 6 | 'R', 7 | 'South African Rand', 8 | ], 9 | ], 10 | ]; 11 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/currencies/en_MG.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'MGA' => [ 6 | 'Ar', 7 | 'Malagasy Ariary', 8 | ], 9 | ], 10 | ]; 11 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/currencies/en_MO.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'MOP' => [ 6 | 'MOP$', 7 | 'Macanese Pataca', 8 | ], 9 | ], 10 | ]; 11 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/currencies/en_MT.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'GBP' => [ 6 | 'GB£', 7 | 'British Pound', 8 | ], 9 | ], 10 | ]; 11 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/currencies/en_MU.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'MUR' => [ 6 | 'Rs', 7 | 'Mauritian Rupee', 8 | ], 9 | ], 10 | ]; 11 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/currencies/en_MV.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'MVR' => [ 6 | 'Rf', 7 | 'Maldivian Rufiyaa', 8 | ], 9 | ], 10 | ]; 11 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/currencies/en_MW.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'MWK' => [ 6 | 'MK', 7 | 'Malawian Kwacha', 8 | ], 9 | ], 10 | ]; 11 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/currencies/en_MY.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'MYR' => [ 6 | 'RM', 7 | 'Malaysian Ringgit', 8 | ], 9 | ], 10 | ]; 11 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/currencies/en_NA.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'NAD' => [ 6 | '$', 7 | 'Namibian Dollar', 8 | ], 9 | ], 10 | ]; 11 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/currencies/en_NF.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'AUD' => [ 6 | '$', 7 | 'Australian Dollar', 8 | ], 9 | ], 10 | ]; 11 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/currencies/en_NO.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'NOK' => [ 6 | 'kr', 7 | 'Norwegian Krone', 8 | ], 9 | ], 10 | ]; 11 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/currencies/en_NR.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'AUD' => [ 6 | '$', 7 | 'Australian Dollar', 8 | ], 9 | ], 10 | ]; 11 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/currencies/en_NU.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'NZD' => [ 6 | '$', 7 | 'New Zealand Dollar', 8 | ], 9 | ], 10 | ]; 11 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/currencies/en_NZ.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'NZD' => [ 6 | '$', 7 | 'New Zealand Dollar', 8 | ], 9 | ], 10 | ]; 11 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/currencies/en_PK.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'PKR' => [ 6 | 'Rs', 7 | 'Pakistani Rupee', 8 | ], 9 | ], 10 | ]; 11 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/currencies/en_PN.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'NZD' => [ 6 | '$', 7 | 'New Zealand Dollar', 8 | ], 9 | ], 10 | ]; 11 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/currencies/en_SC.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'SCR' => [ 6 | 'SR', 7 | 'Seychellois Rupee', 8 | ], 9 | ], 10 | ]; 11 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/currencies/en_SG.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'SGD' => [ 6 | '$', 7 | 'Singapore Dollar', 8 | ], 9 | ], 10 | ]; 11 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/currencies/en_SZ.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'SZL' => [ 6 | 'E', 7 | 'Swazi Lilangeni', 8 | ], 9 | ], 10 | ]; 11 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/currencies/en_TK.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'NZD' => [ 6 | '$', 7 | 'New Zealand Dollar', 8 | ], 9 | ], 10 | ]; 11 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/currencies/en_TO.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'TOP' => [ 6 | 'T$', 7 | 'Tongan Paʻanga', 8 | ], 9 | ], 10 | ]; 11 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/currencies/en_TV.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'AUD' => [ 6 | '$', 7 | 'Australian Dollar', 8 | ], 9 | ], 10 | ]; 11 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/currencies/en_UG.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'UGX' => [ 6 | 'USh', 7 | 'Ugandan Shilling', 8 | ], 9 | ], 10 | ]; 11 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/currencies/en_ZA.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'ZAR' => [ 6 | 'R', 7 | 'South African Rand', 8 | ], 9 | ], 10 | ]; 11 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/currencies/es_BR.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'BRL' => [ 6 | 'R$', 7 | 'real brasileño', 8 | ], 9 | ], 10 | ]; 11 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/currencies/es_CR.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'CRC' => [ 6 | '₡', 7 | 'colón costarricense', 8 | ], 9 | ], 10 | ]; 11 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/currencies/es_HN.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'HNL' => [ 6 | 'L', 7 | 'lempira hondureño', 8 | ], 9 | ], 10 | ]; 11 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/currencies/es_PA.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'PAB' => [ 6 | 'B/.', 7 | 'balboa panameño', 8 | ], 9 | ], 10 | ]; 11 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/currencies/es_PY.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'PYG' => [ 6 | 'Gs.', 7 | 'guaraní paraguayo', 8 | ], 9 | ], 10 | ]; 11 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/currencies/ff_Latn_GM.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'GMD' => [ 6 | 'D', 7 | 'Dalasi Gammbi', 8 | ], 9 | ], 10 | ]; 11 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/currencies/ff_MR.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'MRU' => [ 6 | 'UM', 7 | 'Ugiyya Muritani', 8 | ], 9 | ], 10 | ]; 11 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/currencies/fr_BI.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'BIF' => [ 6 | 'FBu', 7 | 'franc burundais', 8 | ], 9 | ], 10 | ]; 11 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/currencies/fr_CD.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'CDF' => [ 6 | 'FC', 7 | 'franc congolais', 8 | ], 9 | ], 10 | ]; 11 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/currencies/fr_DJ.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'DJF' => [ 6 | 'Fdj', 7 | 'franc djiboutien', 8 | ], 9 | ], 10 | ]; 11 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/currencies/fr_DZ.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'DZD' => [ 6 | 'DA', 7 | 'dinar algérien', 8 | ], 9 | ], 10 | ]; 11 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/currencies/fr_HT.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'HTG' => [ 6 | 'G', 7 | 'gourde haïtienne', 8 | ], 9 | ], 10 | ]; 11 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/currencies/fr_KM.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'KMF' => [ 6 | 'CF', 7 | 'franc comorien', 8 | ], 9 | ], 10 | ]; 11 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/currencies/fr_MG.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'MGA' => [ 6 | 'Ar', 7 | 'ariary malgache', 8 | ], 9 | ], 10 | ]; 11 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/currencies/fr_MU.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'MUR' => [ 6 | 'Rs', 7 | 'roupie mauricienne', 8 | ], 9 | ], 10 | ]; 11 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/currencies/fr_RW.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'RWF' => [ 6 | 'RF', 7 | 'franc rwandais', 8 | ], 9 | ], 10 | ]; 11 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/currencies/fr_SY.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'SYP' => [ 6 | 'LS', 7 | 'livre syrienne', 8 | ], 9 | ], 10 | ]; 11 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/currencies/fr_TN.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'TND' => [ 6 | 'DT', 7 | 'dinar tunisien', 8 | ], 9 | ], 10 | ]; 11 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/currencies/fr_VU.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'VUV' => [ 6 | 'VT', 7 | 'vatu vanuatuan', 8 | ], 9 | ], 10 | ]; 11 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/currencies/ha_GH.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'GHS' => [ 6 | 'GH₵', 7 | 'Sidi na Ghana', 8 | ], 9 | ], 10 | ]; 11 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/currencies/ln_AO.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'AOA' => [ 6 | 'Kz', 7 | 'Kwanza ya Angóla', 8 | ], 9 | ], 10 | ]; 11 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/currencies/ms_ID.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'IDR' => [ 6 | 'Rp', 7 | 'Rupiah Indonesia', 8 | ], 9 | ], 10 | ]; 11 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/currencies/ms_SG.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'SGD' => [ 6 | '$', 7 | 'Dolar Singapura', 8 | ], 9 | ], 10 | ]; 11 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/currencies/nl_AW.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'AWG' => [ 6 | 'Afl.', 7 | 'Arubaanse gulden', 8 | ], 9 | ], 10 | ]; 11 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/currencies/nl_BQ.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'USD' => [ 6 | '$', 7 | 'Amerikaanse dollar', 8 | ], 9 | ], 10 | ]; 11 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/currencies/nl_SR.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'SRD' => [ 6 | '$', 7 | 'Surinaamse dollar', 8 | ], 9 | ], 10 | ]; 11 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/currencies/ps_PK.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'PKR' => [ 6 | 'Rs', 7 | 'پاکستانۍ کلداره', 8 | ], 9 | ], 10 | ]; 11 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/currencies/pt_AO.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'AOA' => [ 6 | 'Kz', 7 | 'kwanza angolano', 8 | ], 9 | ], 10 | ]; 11 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/currencies/pt_LU.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'LUF' => [ 6 | 'F', 7 | 'Franco luxemburguês', 8 | ], 9 | ], 10 | ]; 11 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/currencies/pt_MO.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'MOP' => [ 6 | 'MOP$', 7 | 'pataca macaense', 8 | ], 9 | ], 10 | ]; 11 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/currencies/ro_MD.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'MDL' => [ 6 | 'L', 7 | 'leu moldovenesc', 8 | ], 9 | ], 10 | ]; 11 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/currencies/ru_KG.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'KGS' => [ 6 | 'сом', 7 | 'киргизский сом', 8 | ], 9 | ], 10 | ]; 11 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/currencies/ru_KZ.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'KZT' => [ 6 | '₸', 7 | 'казахский тенге', 8 | ], 9 | ], 10 | ]; 11 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/currencies/so_DJ.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'DJF' => [ 6 | 'Fdj', 7 | 'Faran Jabuuti', 8 | ], 9 | ], 10 | ]; 11 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/currencies/so_ET.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'ETB' => [ 6 | 'Br', 7 | 'Birta Itoobbiya', 8 | ], 9 | ], 10 | ]; 11 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/currencies/so_KE.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'KES' => [ 6 | 'Ksh', 7 | 'Shilingka Kenya', 8 | ], 9 | ], 10 | ]; 11 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/currencies/sq_MK.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'MKD' => [ 6 | 'den', 7 | 'Denari maqedonas', 8 | ], 9 | ], 10 | ]; 11 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/currencies/ta_LK.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'LKR' => [ 6 | 'Rs.', 7 | 'இலங்கை ரூபாய்', 8 | ], 9 | ], 10 | ]; 11 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/regions/ar_LY.php: -------------------------------------------------------------------------------- 1 | [], 5 | 'Names' => [ 6 | 'MS' => 'مونتيسيرات', 7 | 'UY' => 'أوروغواي', 8 | ], 9 | ]; 10 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/regions/st.php: -------------------------------------------------------------------------------- 1 | [], 5 | 'Names' => [ 6 | 'LS' => 'Lesotho', 7 | 'ZA' => 'Afrika Borwa', 8 | ], 9 | ]; 10 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/regions/tn.php: -------------------------------------------------------------------------------- 1 | [], 5 | 'Names' => [ 6 | 'BW' => 'Botswana', 7 | 'ZA' => 'Aforika Borwa', 8 | ], 9 | ]; 10 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/scripts/pa_Arab.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'Arab' => 'عربی', 6 | 'Aran' => 'نستعلیق', 7 | 'Guru' => 'گُرمُکھی', 8 | ], 9 | ]; 10 | -------------------------------------------------------------------------------- /src/Symfony/Bundle/DebugBundle/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | CHANGELOG 2 | ========= 3 | 4 | 4.1.0 5 | ----- 6 | 7 | * Added the `server:dump` command to run a server collecting and displaying 8 | dumps on a single place with multiple formats support 9 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/currencies/de_LU.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'LUF' => [ 6 | 'F', 7 | 'Luxemburgischer Franc', 8 | ], 9 | ], 10 | ]; 11 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/currencies/en_AG.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'XCD' => [ 6 | '$', 7 | 'East Caribbean Dollar', 8 | ], 9 | ], 10 | ]; 11 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/currencies/en_AI.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'XCD' => [ 6 | '$', 7 | 'East Caribbean Dollar', 8 | ], 9 | ], 10 | ]; 11 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/currencies/en_DM.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'XCD' => [ 6 | '$', 7 | 'East Caribbean Dollar', 8 | ], 9 | ], 10 | ]; 11 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/currencies/en_GD.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'XCD' => [ 6 | '$', 7 | 'East Caribbean Dollar', 8 | ], 9 | ], 10 | ]; 11 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/currencies/en_KN.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'XCD' => [ 6 | '$', 7 | 'East Caribbean Dollar', 8 | ], 9 | ], 10 | ]; 11 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/currencies/en_KY.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'KYD' => [ 6 | '$', 7 | 'Cayman Islands Dollar', 8 | ], 9 | ], 10 | ]; 11 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/currencies/en_LC.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'XCD' => [ 6 | '$', 7 | 'East Caribbean Dollar', 8 | ], 9 | ], 10 | ]; 11 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/currencies/en_MS.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'XCD' => [ 6 | '$', 7 | 'East Caribbean Dollar', 8 | ], 9 | ], 10 | ]; 11 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/currencies/en_PG.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'PGK' => [ 6 | 'K', 7 | 'Papua New Guinean Kina', 8 | ], 9 | ], 10 | ]; 11 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/currencies/en_SB.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'SBD' => [ 6 | '$', 7 | 'Solomon Islands Dollar', 8 | ], 9 | ], 10 | ]; 11 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/currencies/en_SL.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'SLE' => [ 6 | 'Le', 7 | 'Sierra Leonean Leone', 8 | ], 9 | ], 10 | ]; 11 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/currencies/en_TT.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'TTD' => [ 6 | '$', 7 | 'Trinidad & Tobago Dollar', 8 | ], 9 | ], 10 | ]; 11 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/currencies/en_TZ.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'TZS' => [ 6 | 'TSh', 7 | 'Tanzanian Shilling', 8 | ], 9 | ], 10 | ]; 11 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/currencies/en_VC.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'XCD' => [ 6 | '$', 7 | 'East Caribbean Dollar', 8 | ], 9 | ], 10 | ]; 11 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/currencies/es_EC.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'USD' => [ 6 | '$', 7 | 'dólar estadounidense', 8 | ], 9 | ], 10 | ]; 11 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/currencies/es_NI.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'NIO' => [ 6 | 'C$', 7 | 'córdoba nicaragüense', 8 | ], 9 | ], 10 | ]; 11 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/currencies/es_PR.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'USD' => [ 6 | '$', 7 | 'dólar estadounidense', 8 | ], 9 | ], 10 | ]; 11 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/currencies/es_SV.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'USD' => [ 6 | '$', 7 | 'dólar estadounidense', 8 | ], 9 | ], 10 | ]; 11 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/currencies/ff_Latn_LR.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'LRD' => [ 6 | '$', 7 | 'Dolaar Liberiyaa', 8 | ], 9 | ], 10 | ]; 11 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/currencies/ff_Latn_MR.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'MRU' => [ 6 | 'UM', 7 | 'Ugiyya Muritani', 8 | ], 9 | ], 10 | ]; 11 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/currencies/ff_Latn_NG.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'NGN' => [ 6 | '₦', 7 | 'Nayraa Nijeriyaa', 8 | ], 9 | ], 10 | ]; 11 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/currencies/ff_Latn_SL.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'SLE' => [ 6 | 'Le', 7 | 'Lewoon Seraa Liyon', 8 | ], 9 | ], 10 | ]; 11 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/currencies/fr_MR.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'MRU' => [ 6 | 'UM', 7 | 'ouguiya mauritanien', 8 | ], 9 | ], 10 | ]; 11 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/currencies/fr_SC.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'SCR' => [ 6 | 'SR', 7 | 'roupie des Seychelles', 8 | ], 9 | ], 10 | ]; 11 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/currencies/hr_BA.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'BAM' => [ 6 | 'KM', 7 | 'konvertibilna marka', 8 | ], 9 | ], 10 | ]; 11 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/currencies/pt_MZ.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'MZN' => [ 6 | 'MTn', 7 | 'metical moçambicano', 8 | ], 9 | ], 10 | ]; 11 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/currencies/sw_UG.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'UGX' => [ 6 | 'USh', 7 | 'Shilingi ya Uganda', 8 | ], 9 | ], 10 | ]; 11 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/regions/gv.php: -------------------------------------------------------------------------------- 1 | [], 5 | 'Names' => [ 6 | 'GB' => 'Rywvaneth Unys', 7 | 'IM' => 'Ellan Vannin', 8 | ], 9 | ]; 10 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/currencies/pt_ST.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'STN' => [ 6 | 'Db', 7 | 'dobra de São Tomé e Príncipe', 8 | ], 9 | ], 10 | ]; 11 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/locales/za.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'en' => 'Yinghyij', 6 | 'za' => 'Vahcuengh', 7 | 'za_CN' => 'Vahcuengh (Cunghgoz)', 8 | ], 9 | ]; 10 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/scripts/es_US.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'Adlm' => 'adlam', 6 | 'Hrkt' => 'silabarios del japonés', 7 | 'Rohg' => 'hanafí', 8 | ], 9 | ]; 10 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/timezones/ko_KP.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'Asia/Pyongyang' => '조선 시간(평양)', 6 | 'Asia/Seoul' => '조선 시간(서울)', 7 | ], 8 | 'Meta' => [], 9 | ]; 10 | -------------------------------------------------------------------------------- /src/Symfony/Component/HtmlSanitizer/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | CHANGELOG 2 | ========= 3 | 4 | 6.4 5 | --- 6 | 7 | * Add support for sanitizing unlimited length of HTML document 8 | 9 | 6.1 10 | --- 11 | 12 | * Add the component as experimental 13 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/currencies/en_SX.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'ANG' => [ 6 | 'NAf.', 7 | 'Netherlands Antillean Guilder', 8 | ], 9 | ], 10 | ]; 11 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/currencies/es_GQ.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'XAF' => [ 6 | 'FCFA', 7 | 'franco CFA de África Central', 8 | ], 9 | ], 10 | ]; 11 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/currencies/ff_Adlm_BF.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'GNF' => [ 6 | 'GNF', 7 | '𞤊𞤢𞤪𞤢𞤲 𞤘𞤭𞤲𞤫𞤲𞤳𞤮', 8 | ], 9 | ], 10 | ]; 11 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/currencies/ff_Adlm_CM.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'GNF' => [ 6 | 'GNF', 7 | '𞤊𞤢𞤪𞤢𞤲 𞤘𞤭𞤲𞤫𞤲𞤳𞤮', 8 | ], 9 | ], 10 | ]; 11 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/currencies/ff_Adlm_GW.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'GNF' => [ 6 | 'GNF', 7 | '𞤊𞤢𞤪𞤢𞤲 𞤘𞤭𞤲𞤫𞤲𞤳𞤮', 8 | ], 9 | ], 10 | ]; 11 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/currencies/ff_Adlm_NE.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'GNF' => [ 6 | 'GNF', 7 | '𞤊𞤢𞤪𞤢𞤲 𞤘𞤭𞤲𞤫𞤲𞤳𞤮', 8 | ], 9 | ], 10 | ]; 11 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/currencies/ff_Adlm_SN.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'GNF' => [ 6 | 'GNF', 7 | '𞤊𞤢𞤪𞤢𞤲 𞤘𞤭𞤲𞤫𞤲𞤳𞤮', 8 | ], 9 | ], 10 | ]; 11 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/currencies/nl_CW.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'ANG' => [ 6 | 'NAf.', 7 | 'Nederlands-Antilliaanse gulden', 8 | ], 9 | ], 10 | ]; 11 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/currencies/nl_SX.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'ANG' => [ 6 | 'NAf.', 7 | 'Nederlands-Antilliaanse gulden', 8 | ], 9 | ], 10 | ]; 11 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/timezones/ms_ID.php: -------------------------------------------------------------------------------- 1 | [], 5 | 'Meta' => [ 6 | 'HourFormatPos' => '+%02d.%02d', 7 | 'HourFormatNeg' => '-%02d.%02d', 8 | ], 9 | ]; 10 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/languages/uz_Arab.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'fa' => 'دری', 6 | 'ps' => 'پشتو', 7 | 'uz' => 'اوزبیک', 8 | ], 9 | 'LocalizedNames' => [], 10 | ]; 11 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/languages/ro_MD.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'wal' => 'wolaytta', 6 | ], 7 | 'LocalizedNames' => [ 8 | 'sw_CD' => 'swahili (R. D. Congo)', 9 | ], 10 | ]; 11 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/regions/oc.php: -------------------------------------------------------------------------------- 1 | [], 5 | 'Names' => [ 6 | 'ES' => 'Espanha', 7 | 'FR' => 'França', 8 | 'HK' => 'Hong Kong', 9 | ], 10 | ]; 11 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/timezones/root.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'GmtFormat' => 'GMT%s', 6 | 'HourFormatPos' => '+%02d:%02d', 7 | 'HourFormatNeg' => '-%02d:%02d', 8 | ], 9 | ]; 10 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/git-info.txt: -------------------------------------------------------------------------------- 1 | Git information 2 | =============== 3 | 4 | URL: https://github.com/unicode-org/icu.git 5 | Revision: 049e0d6a420629ac7db77256987d083a563287b5 6 | Author: Fredrik Roubert 7 | Date: 2025-10-29T16:30:26+01:00 8 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/languages/st.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'cy' => 'Sewelsh', 6 | 'en' => 'Senyesemane', 7 | 'st' => 'Sesotho', 8 | ], 9 | 'LocalizedNames' => [], 10 | ]; 11 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/locales/ar_EG.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'da' => 'الدنماركية', 6 | 'da_DK' => 'الدنماركية (الدانمرك)', 7 | 'da_GL' => 'الدنماركية (غرينلاند)', 8 | ], 9 | ]; 10 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/scripts/hi_Latn.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'Bali' => 'Baali', 6 | 'Inds' => 'Sindhu', 7 | 'Mymr' => 'Burmese', 8 | 'Talu' => 'Naya Tai Lue', 9 | ], 10 | ]; 11 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/regions/rw.php: -------------------------------------------------------------------------------- 1 | [], 5 | 'Names' => [ 6 | 'MK' => 'Masedoniya y’Amajyaruguru', 7 | 'RW' => 'U Rwanda', 8 | 'TO' => 'Tonga', 9 | ], 10 | ]; 11 | -------------------------------------------------------------------------------- /.git-blame-ignore-revs: -------------------------------------------------------------------------------- 1 | # Apply php-cs-fixer fix --rules nullable_type_declaration_for_default_null_value 2 | f4118e110a46de3ffb799e7d79bf15128d1646ea 3 | 9519b54417c09c49496a4a6be238e63be9a73465 4 | ae0a783425b80b78376488619bf9106e69193fa4 5 | 77bd236b8da064c90b19b84a35becfb3e43348db 6 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/languages/en_001.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'bla' => 'Siksika', 6 | 'mus' => 'Creek', 7 | ], 8 | 'LocalizedNames' => [ 9 | 'nds_NL' => 'West Low German', 10 | ], 11 | ]; 12 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/locales/fr_BE.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'en_GS' => 'anglais (Îles Géorgie du Sud et Sandwich du Sud)', 6 | 'gu' => 'gujarati', 7 | 'gu_IN' => 'gujarati (Inde)', 8 | ], 9 | ]; 10 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/languages/fr_BE.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'frp' => 'franco-provençal', 6 | 'goh' => 'ancien haut-allemand', 7 | 'gu' => 'gujarati', 8 | ], 9 | 'LocalizedNames' => [], 10 | ]; 11 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/languages/en_AU.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'bn' => 'Bengali', 6 | ], 7 | 'LocalizedNames' => [ 8 | 'en_US' => 'United States English', 9 | 'ro_MD' => 'Moldovan', 10 | ], 11 | ]; 12 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/languages/fr_CH.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'gu' => 'goudjrati', 6 | 'pdc' => 'allemand de Pennsylvanie', 7 | 'sdh' => 'kurde méridional', 8 | ], 9 | 'LocalizedNames' => [], 10 | ]; 11 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/regions/ar_SA.php: -------------------------------------------------------------------------------- 1 | [], 5 | 'Names' => [ 6 | 'MO' => 'ماكاو الصينية (منطقة إدارية خاصة)', 7 | 'MS' => 'مونتيسيرات', 8 | 'UY' => 'أوروغواي', 9 | ], 10 | ]; 11 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/regions/ps_PK.php: -------------------------------------------------------------------------------- 1 | [], 5 | 'Names' => [ 6 | 'PS' => 'فلسطين سيمے', 7 | 'TC' => 'د ترکیے او کیکاسو ټاپو', 8 | 'TF' => 'د فرانسے جنوبي سیمے', 9 | ], 10 | ]; 11 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/currencies/kl.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'DKK' => [ 6 | 'kr.', 7 | 'DKK', 8 | ], 9 | 'EUR' => [ 10 | '€', 11 | 'euro', 12 | ], 13 | ], 14 | ]; 15 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/regions/es_AR.php: -------------------------------------------------------------------------------- 1 | [], 5 | 'Names' => [ 6 | 'BA' => 'Bosnia y Herzegovina', 7 | 'TL' => 'Timor-Leste', 8 | 'UM' => 'Islas menores alejadas de EE. UU.', 9 | ], 10 | ]; 11 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/regions/es_BO.php: -------------------------------------------------------------------------------- 1 | [], 5 | 'Names' => [ 6 | 'BA' => 'Bosnia y Herzegovina', 7 | 'TL' => 'Timor-Leste', 8 | 'UM' => 'Islas menores alejadas de EE. UU.', 9 | ], 10 | ]; 11 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/regions/es_CO.php: -------------------------------------------------------------------------------- 1 | [], 5 | 'Names' => [ 6 | 'BA' => 'Bosnia y Herzegovina', 7 | 'TL' => 'Timor-Leste', 8 | 'UM' => 'Islas menores alejadas de EE. UU.', 9 | ], 10 | ]; 11 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/regions/es_CR.php: -------------------------------------------------------------------------------- 1 | [], 5 | 'Names' => [ 6 | 'BA' => 'Bosnia y Herzegovina', 7 | 'TL' => 'Timor-Leste', 8 | 'UM' => 'Islas menores alejadas de EE. UU.', 9 | ], 10 | ]; 11 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/regions/es_DO.php: -------------------------------------------------------------------------------- 1 | [], 5 | 'Names' => [ 6 | 'BA' => 'Bosnia y Herzegovina', 7 | 'TL' => 'Timor-Leste', 8 | 'UM' => 'Islas menores alejadas de EE. UU.', 9 | ], 10 | ]; 11 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/regions/es_EC.php: -------------------------------------------------------------------------------- 1 | [], 5 | 'Names' => [ 6 | 'BA' => 'Bosnia y Herzegovina', 7 | 'TL' => 'Timor-Leste', 8 | 'UM' => 'Islas menores alejadas de EE. UU.', 9 | ], 10 | ]; 11 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/regions/es_GT.php: -------------------------------------------------------------------------------- 1 | [], 5 | 'Names' => [ 6 | 'BA' => 'Bosnia y Herzegovina', 7 | 'TL' => 'Timor-Leste', 8 | 'UM' => 'Islas menores alejadas de EE. UU.', 9 | ], 10 | ]; 11 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/regions/es_HN.php: -------------------------------------------------------------------------------- 1 | [], 5 | 'Names' => [ 6 | 'BA' => 'Bosnia y Herzegovina', 7 | 'TL' => 'Timor-Leste', 8 | 'UM' => 'Islas menores alejadas de EE. UU.', 9 | ], 10 | ]; 11 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/regions/es_NI.php: -------------------------------------------------------------------------------- 1 | [], 5 | 'Names' => [ 6 | 'BA' => 'Bosnia y Herzegovina', 7 | 'TL' => 'Timor-Leste', 8 | 'UM' => 'Islas menores alejadas de EE. UU.', 9 | ], 10 | ]; 11 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/regions/es_PA.php: -------------------------------------------------------------------------------- 1 | [], 5 | 'Names' => [ 6 | 'BA' => 'Bosnia y Herzegovina', 7 | 'TL' => 'Timor-Leste', 8 | 'UM' => 'Islas menores alejadas de EE. UU.', 9 | ], 10 | ]; 11 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/regions/es_PE.php: -------------------------------------------------------------------------------- 1 | [], 5 | 'Names' => [ 6 | 'BA' => 'Bosnia y Herzegovina', 7 | 'TL' => 'Timor-Leste', 8 | 'UM' => 'Islas menores alejadas de EE. UU.', 9 | ], 10 | ]; 11 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/regions/es_PY.php: -------------------------------------------------------------------------------- 1 | [], 5 | 'Names' => [ 6 | 'BA' => 'Bosnia y Herzegovina', 7 | 'TL' => 'Timor-Leste', 8 | 'UM' => 'Islas menores alejadas de EE. UU.', 9 | ], 10 | ]; 11 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/regions/es_VE.php: -------------------------------------------------------------------------------- 1 | [], 5 | 'Names' => [ 6 | 'BA' => 'Bosnia y Herzegovina', 7 | 'TL' => 'Timor-Leste', 8 | 'UM' => 'Islas menores alejadas de EE. UU.', 9 | ], 10 | ]; 11 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/regions/se_FI.php: -------------------------------------------------------------------------------- 1 | [], 5 | 'Names' => [ 6 | 'BA' => 'Bosnia ja Hercegovina', 7 | 'KH' => 'Kamboža', 8 | 'SD' => 'Sudan', 9 | 'TD' => 'Chad', 10 | ], 11 | ]; 12 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/scripts/su.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'Cyrl' => 'Sirilik', 6 | 'Hans' => 'Sederhana', 7 | 'Hant' => 'Tradisional', 8 | 'Latn' => 'Latin', 9 | 'Zxxx' => 'Non-tulisan', 10 | ], 11 | ]; 12 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/currencies/os_RU.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'GEL' => [ 6 | 'GEL', 7 | 'Лар', 8 | ], 9 | 'RUB' => [ 10 | '₽', 11 | 'Сом', 12 | ], 13 | ], 14 | ]; 15 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/currencies/zh_SG.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'CNY' => [ 6 | 'CN¥', 7 | '人民币', 8 | ], 9 | 'SGD' => [ 10 | '$', 11 | '新加坡元', 12 | ], 13 | ], 14 | ]; 15 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/currencies/zh_Hans_MO.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'CNY' => [ 6 | 'CN¥', 7 | '人民币', 8 | ], 9 | 'MOP' => [ 10 | 'MOP$', 11 | '澳门币', 12 | ], 13 | ], 14 | ]; 15 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/currencies/zh_Hans_SG.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'CNY' => [ 6 | 'CN¥', 7 | '人民币', 8 | ], 9 | 'SGD' => [ 10 | '$', 11 | '新加坡元', 12 | ], 13 | ], 14 | ]; 15 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/scripts/bo.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'Hans' => 'རྒྱ་ཡིག་གསར་པ།', 6 | 'Hant' => 'རྒྱ་ཡིག་རྙིང་པ།', 7 | 'Tibt' => 'བོད་ཡིག་', 8 | 'Zxxx' => 'སྙན་བརྒྱུད། ཡིག་རིགས་སུ་མ་བཀོད་པའི་ཟིན་ཐོ།', 9 | ], 10 | ]; 11 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/currencies/zh_Hans_HK.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'CNY' => [ 6 | 'CN¥', 7 | '人民币', 8 | ], 9 | 'KYD' => [ 10 | 'KYD', 11 | '开曼群岛元', 12 | ], 13 | ], 14 | ]; 15 | -------------------------------------------------------------------------------- /src/Symfony/Component/PasswordHasher/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | CHANGELOG 2 | ========= 3 | 4 | 6.2 5 | --- 6 | 7 | * Use `SensitiveParameter` attribute to redact sensitive values in back traces 8 | 9 | 5.3 10 | --- 11 | 12 | * Add the component 13 | * Use `bcrypt` as default algorithm in `NativePasswordHasher` 14 | -------------------------------------------------------------------------------- /.github/workflows/fabbot.yml: -------------------------------------------------------------------------------- 1 | name: CS 2 | 3 | on: 4 | pull_request: 5 | 6 | permissions: 7 | contents: read 8 | 9 | jobs: 10 | call-fabbot: 11 | name: Fabbot 12 | uses: symfony-tools/fabbot/.github/workflows/fabbot.yml@main 13 | with: 14 | package: Symfony 15 | check_license: true 16 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/currencies/qu_BO.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'BOB' => [ 6 | 'Bs', 7 | 'Boliviano', 8 | ], 9 | 'PEN' => [ 10 | 'PEN', 11 | 'Sol Peruano', 12 | ], 13 | ], 14 | ]; 15 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/timezones/en_AU.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'Indian/Kerguelen' => 'French Southern and Antarctic Time (Kerguelen Islands)', 6 | 'Pacific/Wallis' => 'Wallis & Futuna Time (Wallis and Futuna)', 7 | ], 8 | 'Meta' => [], 9 | ]; 10 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/currencies/en_GI.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'GBP' => [ 6 | 'GB£', 7 | 'British Pound', 8 | ], 9 | 'GIP' => [ 10 | '£', 11 | 'Gibraltar Pound', 12 | ], 13 | ], 14 | ]; 15 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/currencies/en_SH.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'GBP' => [ 6 | 'GB£', 7 | 'British Pound', 8 | ], 9 | 'SHP' => [ 10 | '£', 11 | 'St Helena Pound', 12 | ], 13 | ], 14 | ]; 15 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/currencies/qu_EC.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'PEN' => [ 6 | 'PEN', 7 | 'Sol Peruano', 8 | ], 9 | 'USD' => [ 10 | '$', 11 | 'Dólar Americano', 12 | ], 13 | ], 14 | ]; 15 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/currencies/se_SE.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'NOK' => [ 6 | 'Nkr', 7 | 'norgga kruvdno', 8 | ], 9 | 'SEK' => [ 10 | 'kr', 11 | 'ruoŧŧa kruvdno', 12 | ], 13 | ], 14 | ]; 15 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/scripts/sa.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'Arab' => 'अरबी', 6 | 'Cyrl' => 'सिरिलिक:', 7 | 'Hans' => 'सरलीकृत', 8 | 'Hant' => 'परम्परागत', 9 | 'Latn' => 'लैटिन:', 10 | 'Zxxx' => 'अलिखित:', 11 | ], 12 | ]; 13 | -------------------------------------------------------------------------------- /src/Symfony/Component/ErrorHandler/Resources/assets/images/icon-copy.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/currencies/ar_SS.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'GBP' => [ 6 | 'GB£', 7 | 'جنيه إسترليني', 8 | ], 9 | 'SSP' => [ 10 | '£', 11 | 'جنيه جنوب السودان', 12 | ], 13 | ], 14 | ]; 15 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/currencies/en_SS.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'GBP' => [ 6 | 'GB£', 7 | 'British Pound', 8 | ], 9 | 'SSP' => [ 10 | '£', 11 | 'South Sudanese Pound', 12 | ], 13 | ], 14 | ]; 15 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/currencies/es_AR.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'ARS' => [ 6 | '$', 7 | 'peso argentino', 8 | ], 9 | 'USD' => [ 10 | 'US$', 11 | 'dólar estadounidense', 12 | ], 13 | ], 14 | ]; 15 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/currencies/es_CL.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'CLP' => [ 6 | '$', 7 | 'Peso chileno', 8 | ], 9 | 'USD' => [ 10 | 'US$', 11 | 'dólar estadounidense', 12 | ], 13 | ], 14 | ]; 15 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/currencies/es_CU.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'CUP' => [ 6 | '$', 7 | 'peso cubano', 8 | ], 9 | 'USD' => [ 10 | 'US$', 11 | 'dólar estadounidense', 12 | ], 13 | ], 14 | ]; 15 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/currencies/fr_LU.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'FRF' => [ 6 | 'FRF', 7 | 'franc français', 8 | ], 9 | 'LUF' => [ 10 | 'F', 11 | 'franc luxembourgeois', 12 | ], 13 | ], 14 | ]; 15 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/currencies/ta_MY.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'MYR' => [ 6 | 'RM', 7 | 'மலேஷியன் ரிங்கிட்', 8 | ], 9 | 'SGD' => [ 10 | 'S$', 11 | 'சிங்கப்பூர் டாலர்', 12 | ], 13 | ], 14 | ]; 15 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/locales/es_AR.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'tn' => 'setswana', 6 | 'tn_BW' => 'setswana (Botsuana)', 7 | 'tn_ZA' => 'setswana (Sudáfrica)', 8 | 'wo' => 'wolof', 9 | 'wo_SN' => 'wolof (Senegal)', 10 | ], 11 | ]; 12 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/locales/es_BO.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'tn' => 'setswana', 6 | 'tn_BW' => 'setswana (Botsuana)', 7 | 'tn_ZA' => 'setswana (Sudáfrica)', 8 | 'wo' => 'wolof', 9 | 'wo_SN' => 'wolof (Senegal)', 10 | ], 11 | ]; 12 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/locales/es_CO.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'tn' => 'setswana', 6 | 'tn_BW' => 'setswana (Botsuana)', 7 | 'tn_ZA' => 'setswana (Sudáfrica)', 8 | 'wo' => 'wolof', 9 | 'wo_SN' => 'wolof (Senegal)', 10 | ], 11 | ]; 12 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/locales/es_CR.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'tn' => 'setswana', 6 | 'tn_BW' => 'setswana (Botsuana)', 7 | 'tn_ZA' => 'setswana (Sudáfrica)', 8 | 'wo' => 'wolof', 9 | 'wo_SN' => 'wolof (Senegal)', 10 | ], 11 | ]; 12 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/locales/es_DO.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'tn' => 'setswana', 6 | 'tn_BW' => 'setswana (Botsuana)', 7 | 'tn_ZA' => 'setswana (Sudáfrica)', 8 | 'wo' => 'wolof', 9 | 'wo_SN' => 'wolof (Senegal)', 10 | ], 11 | ]; 12 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/locales/es_EC.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'tn' => 'setswana', 6 | 'tn_BW' => 'setswana (Botsuana)', 7 | 'tn_ZA' => 'setswana (Sudáfrica)', 8 | 'wo' => 'wolof', 9 | 'wo_SN' => 'wolof (Senegal)', 10 | ], 11 | ]; 12 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/locales/es_GT.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'tn' => 'setswana', 6 | 'tn_BW' => 'setswana (Botsuana)', 7 | 'tn_ZA' => 'setswana (Sudáfrica)', 8 | 'wo' => 'wolof', 9 | 'wo_SN' => 'wolof (Senegal)', 10 | ], 11 | ]; 12 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/locales/es_HN.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'tn' => 'setswana', 6 | 'tn_BW' => 'setswana (Botsuana)', 7 | 'tn_ZA' => 'setswana (Sudáfrica)', 8 | 'wo' => 'wolof', 9 | 'wo_SN' => 'wolof (Senegal)', 10 | ], 11 | ]; 12 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/locales/es_NI.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'tn' => 'setswana', 6 | 'tn_BW' => 'setswana (Botsuana)', 7 | 'tn_ZA' => 'setswana (Sudáfrica)', 8 | 'wo' => 'wolof', 9 | 'wo_SN' => 'wolof (Senegal)', 10 | ], 11 | ]; 12 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/locales/es_PA.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'tn' => 'setswana', 6 | 'tn_BW' => 'setswana (Botsuana)', 7 | 'tn_ZA' => 'setswana (Sudáfrica)', 8 | 'wo' => 'wolof', 9 | 'wo_SN' => 'wolof (Senegal)', 10 | ], 11 | ]; 12 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/locales/es_PE.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'tn' => 'setswana', 6 | 'tn_BW' => 'setswana (Botsuana)', 7 | 'tn_ZA' => 'setswana (Sudáfrica)', 8 | 'wo' => 'wolof', 9 | 'wo_SN' => 'wolof (Senegal)', 10 | ], 11 | ]; 12 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/locales/es_PY.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'tn' => 'setswana', 6 | 'tn_BW' => 'setswana (Botsuana)', 7 | 'tn_ZA' => 'setswana (Sudáfrica)', 8 | 'wo' => 'wolof', 9 | 'wo_SN' => 'wolof (Senegal)', 10 | ], 11 | ]; 12 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/locales/es_VE.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'tn' => 'setswana', 6 | 'tn_BW' => 'setswana (Botsuana)', 7 | 'tn_ZA' => 'setswana (Sudáfrica)', 8 | 'wo' => 'wolof', 9 | 'wo_SN' => 'wolof (Senegal)', 10 | ], 11 | ]; 12 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/scripts/se_FI.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'Arab' => 'arábalaš', 6 | 'Hani' => 'kiinnálaš', 7 | 'Hans' => 'álkes kiinnálaš', 8 | 'Hant' => 'árbevirolaš kiinnálaš', 9 | 'Zxxx' => 'orrut čállojuvvot', 10 | ], 11 | ]; 12 | -------------------------------------------------------------------------------- /src/Symfony/Component/Semaphore/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | CHANGELOG 2 | ========= 3 | 4 | 6.3 5 | --- 6 | 7 | * Add support for Relay PHP extension for Redis 8 | 9 | 5.3 10 | --- 11 | 12 | * The component is not marked as `@experimental` anymore 13 | 14 | 5.2.0 15 | ----- 16 | 17 | * Introduced the component as experimental 18 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/currencies/en_FK.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'FKP' => [ 6 | '£', 7 | 'Falkland Islands Pound', 8 | ], 9 | 'GBP' => [ 10 | 'GB£', 11 | 'British Pound', 12 | ], 13 | ], 14 | ]; 15 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/currencies/es_CO.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'COP' => [ 6 | '$', 7 | 'peso colombiano', 8 | ], 9 | 'USD' => [ 10 | 'US$', 11 | 'dólar estadounidense', 12 | ], 13 | ], 14 | ]; 15 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/currencies/es_DO.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'DOP' => [ 6 | 'RD$', 7 | 'peso dominicano', 8 | ], 9 | 'USD' => [ 10 | 'US$', 11 | 'dólar estadounidense', 12 | ], 13 | ], 14 | ]; 15 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/currencies/pt_CV.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'CVE' => [ 6 | '​', 7 | 'escudo cabo-verdiano', 8 | ], 9 | 'PTE' => [ 10 | 'PTE', 11 | 'escudo português', 12 | ], 13 | ], 14 | ]; 15 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/scripts/yi.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'Arab' => 'אַראַביש', 6 | 'Cyrl' => 'ציריליש', 7 | 'Deva' => 'דעוואַנאַגאַרי', 8 | 'Grek' => 'גריכיש', 9 | 'Hebr' => 'העברעיש', 10 | 'Latn' => 'גַלחיש', 11 | ], 12 | ]; 13 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/regions/es_US.php: -------------------------------------------------------------------------------- 1 | [], 5 | 'Names' => [ 6 | 'BA' => 'Bosnia y Herzegovina', 7 | 'EH' => 'Sahara Occidental', 8 | 'GG' => 'Guernsey', 9 | 'UM' => 'Islas menores alejadas de EE. UU.', 10 | ], 11 | ]; 12 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/currencies/es_VE.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'VEF' => [ 6 | 'Bs.', 7 | 'bolívar venezolano (2008–2018)', 8 | ], 9 | 'VES' => [ 10 | 'Bs.S', 11 | 'bolívar soberano', 12 | ], 13 | ], 14 | ]; 15 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/currencies/ru_BY.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'BYN' => [ 6 | 'Br', 7 | 'белорусский рубль', 8 | ], 9 | 'RUR' => [ 10 | 'RUR', 11 | 'Российский рубль (1991–1998)', 12 | ], 13 | ], 14 | ]; 15 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/regions/es_CL.php: -------------------------------------------------------------------------------- 1 | [], 5 | 'Names' => [ 6 | 'BA' => 'Bosnia y Herzegovina', 7 | 'EH' => 'Sahara Occidental', 8 | 'TL' => 'Timor-Leste', 9 | 'UM' => 'Islas menores alejadas de EE. UU.', 10 | ], 11 | ]; 12 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/scripts/ii.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'Arab' => 'ꀊꇁꀨꁱꂷ', 6 | 'Cyrl' => 'ꀊꆨꌦꇁꃚꁱꂷ', 7 | 'Hans' => 'ꈝꐮꁱꂷ', 8 | 'Hant' => 'ꀎꋏꁱꂷ', 9 | 'Latn' => 'ꇁꄂꁱꂷ', 10 | 'Yiii' => 'ꆈꌠꁱꂷ', 11 | 'Zxxx' => 'ꁱꀋꉆꌠ', 12 | ], 13 | ]; 14 | -------------------------------------------------------------------------------- /src/Symfony/Component/ErrorHandler/Resources/assets/css/error.css: -------------------------------------------------------------------------------- 1 | body { background-color: #fff; color: #222; font: 16px/1.5 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif; margin: 0; } 2 | .container { margin: 30px; max-width: 600px; } 3 | h1 { color: #dc3545; font-size: 24px; } 4 | h2 { font-size: 18px; } 5 | -------------------------------------------------------------------------------- /src/Symfony/Component/ErrorHandler/Resources/assets/images/chevron-right.svg: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/languages/ps_PK.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'dsb' => 'لوړے سربي', 6 | 'fo' => 'فاروئے', 7 | 'kha' => 'خاسے', 8 | 'nb' => 'ناروے بوکمال', 9 | ], 10 | 'LocalizedNames' => [ 11 | 'ar_001' => 'نوے معياري عربي', 12 | ], 13 | ]; 14 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/scripts/os.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'Arab' => 'Араббаг', 6 | 'Cyrl' => 'Киррилицӕ', 7 | 'Hans' => 'Ӕнцонгонд китайаг', 8 | 'Hant' => 'Традицион китайаг', 9 | 'Latn' => 'Латинаг', 10 | 'Zxxx' => 'Нӕфысгӕ', 11 | ], 12 | ]; 13 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/currencies/ff_Adlm_GH.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'GHS' => [ 6 | 'GH₵', 7 | '𞤅𞤭𞤣𞤭 𞤘𞤢𞤲𞤢𞤲𞤳𞤮', 8 | ], 9 | 'GNF' => [ 10 | 'GNF', 11 | '𞤊𞤢𞤪𞤢𞤲 𞤘𞤭𞤲𞤫𞤲𞤳𞤮', 12 | ], 13 | ], 14 | ]; 15 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/currencies/ff_Adlm_GM.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'GMD' => [ 6 | 'D', 7 | '𞤁𞤢𞤤𞤢𞤧𞤭 𞤘𞤢𞤥𞤦𞤭𞤲𞤳𞤮', 8 | ], 9 | 'GNF' => [ 10 | 'GNF', 11 | '𞤊𞤢𞤪𞤢𞤲 𞤘𞤭𞤲𞤫𞤲𞤳𞤮', 12 | ], 13 | ], 14 | ]; 15 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/currencies/ff_Adlm_LR.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'GNF' => [ 6 | 'GNF', 7 | '𞤊𞤢𞤪𞤢𞤲 𞤘𞤭𞤲𞤫𞤲𞤳𞤮', 8 | ], 9 | 'LRD' => [ 10 | '$', 11 | '𞤁𞤢𞤤𞤢 𞤂𞤭𞤦𞤫𞤪𞤭𞤴𞤢𞤲𞤳𞤮', 12 | ], 13 | ], 14 | ]; 15 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/currencies/ff_Adlm_NG.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'GNF' => [ 6 | 'GNF', 7 | '𞤊𞤢𞤪𞤢𞤲 𞤘𞤭𞤲𞤫𞤲𞤳𞤮', 8 | ], 9 | 'NGN' => [ 10 | '₦', 11 | '𞤐𞤢𞤴𞤪𞤢 𞤐𞤢𞤶𞤭𞤪𞤢𞤴𞤢𞤲𞤳𞤮', 12 | ], 13 | ], 14 | ]; 15 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/currencies/ff_Adlm_SL.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'GNF' => [ 6 | 'GNF', 7 | '𞤊𞤢𞤪𞤢𞤲 𞤘𞤭𞤲𞤫𞤲𞤳𞤮', 8 | ], 9 | 'SLE' => [ 10 | 'Le', 11 | '𞤂𞤫𞤴𞤮𞤲 𞤅𞤫𞤪𞤢𞤤𞤭𞤴𞤢𞤲𞤳𞤮', 12 | ], 13 | ], 14 | ]; 15 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/currencies/ff_Adlm_MR.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'GNF' => [ 6 | 'GNF', 7 | '𞤊𞤢𞤪𞤢𞤲 𞤘𞤭𞤲𞤫𞤲𞤳𞤮', 8 | ], 9 | 'MRU' => [ 10 | 'UM', 11 | '𞤓𞤺𞤭𞤴𞤢 𞤃𞤮𞤪𞤭𞤼𞤢𞤲𞤭𞤴𞤢𞤲𞤳𞤮', 12 | ], 13 | ], 14 | ]; 15 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/regions/de_CH.php: -------------------------------------------------------------------------------- 1 | [], 5 | 'Names' => [ 6 | 'BN' => 'Brunei', 7 | 'BW' => 'Botswana', 8 | 'CV' => 'Kapverden', 9 | 'SB' => 'Salomon-Inseln', 10 | 'TL' => 'Osttimor', 11 | 'ZW' => 'Zimbabwe', 12 | ], 13 | ]; 14 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/locales/nn.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'cv' => 'tsjuvansk', 6 | 'gv' => 'manx', 7 | 'kl' => 'grønlandsk [kalaallisut]', 8 | 'mg' => 'madagassisk', 9 | 'ne' => 'nepalsk', 10 | 'sc' => 'sardinsk', 11 | 'st' => 'sørsotho', 12 | ], 13 | ]; 14 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/regions/es_MX.php: -------------------------------------------------------------------------------- 1 | [], 5 | 'Names' => [ 6 | 'BA' => 'Bosnia y Herzegovina', 7 | 'CI' => 'Côte d’Ivoire', 8 | 'GG' => 'Guernsey', 9 | 'SZ' => 'Eswatini', 10 | 'UM' => 'Islas menores alejadas de EE. UU.', 11 | ], 12 | ]; 13 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/scripts/es_419.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'Gujr' => 'gujarati', 6 | 'Hrkt' => 'katakana o hiragana', 7 | 'Laoo' => 'lao', 8 | 'Latn' => 'latín', 9 | 'Mlym' => 'malabar', 10 | 'Mtei' => 'manipuri', 11 | 'Syrc' => 'siríaco', 12 | ], 13 | ]; 14 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/languages/en_CA.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'bn' => 'Bengali', 6 | 'mfe' => 'Mauritian Creole', 7 | ], 8 | 'LocalizedNames' => [ 9 | 'ar_001' => 'Arabic (Modern Standard)', 10 | 'nds_NL' => 'West Low German', 11 | 'ro_MD' => 'Moldovan', 12 | ], 13 | ]; 14 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/locales/es_CL.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'ar_EH' => 'árabe (Sahara Occidental)', 6 | 'tn' => 'setswana', 7 | 'tn_BW' => 'setswana (Botsuana)', 8 | 'tn_ZA' => 'setswana (Sudáfrica)', 9 | 'wo' => 'wolof', 10 | 'wo_SN' => 'wolof (Senegal)', 11 | ], 12 | ]; 13 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/locales/tn.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'en' => 'Sekgoa', 6 | 'en_BW' => 'Sekgoa (Botswana)', 7 | 'en_ZA' => 'Sekgoa (Aforika Borwa)', 8 | 'tn' => 'Setswana', 9 | 'tn_BW' => 'Setswana (Botswana)', 10 | 'tn_ZA' => 'Setswana (Aforika Borwa)', 11 | ], 12 | ]; 13 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/timezones/de_CH.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'Asia/Brunei' => 'Brunei-Zeit', 6 | 'Asia/Macau' => 'Chinesische Zeit (Macao)', 7 | 'Europe/Saratov' => 'Samara-Zeit (Saratov)', 8 | 'Pacific/Guadalcanal' => 'Salomoninseln-Zeit (Guadalcanal)', 9 | ], 10 | 'Meta' => [], 11 | ]; 12 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- 1 | ; top-most EditorConfig file 2 | root = true 3 | 4 | ; Unix-style newlines 5 | [*] 6 | charset = utf-8 7 | end_of_line = LF 8 | insert_final_newline = true 9 | trim_trailing_whitespace = true 10 | 11 | [*.{php,html,twig}] 12 | indent_style = space 13 | indent_size = 4 14 | 15 | [*.md] 16 | max_line_length = 80 17 | 18 | [COMMIT_EDITMSG] 19 | max_line_length = 0 20 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/scripts/tt.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'Arab' => 'гарәп', 6 | 'Cyrl' => 'кирилл', 7 | 'Hans' => 'гадиләштерелгән', 8 | 'Hant' => 'традицион', 9 | 'Jpan' => 'япон', 10 | 'Kore' => 'корея', 11 | 'Latn' => 'латин', 12 | 'Zxxx' => 'язусыз', 13 | ], 14 | ]; 15 | -------------------------------------------------------------------------------- /src/Symfony/Bridge/ProxyManager/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | CHANGELOG 2 | ========= 3 | 4 | 6.3 5 | --- 6 | 7 | * Deprecate the bridge 8 | 9 | 4.2.0 10 | ----- 11 | 12 | * allowed creating lazy-proxies from interfaces 13 | 14 | 3.3.0 15 | ----- 16 | 17 | * [BC BREAK] The `ProxyDumper` class is now final 18 | 19 | 2.3.0 20 | ----- 21 | 22 | * First introduction of `Symfony\Bridge\ProxyManager` 23 | -------------------------------------------------------------------------------- /src/Symfony/Bundle/WebProfilerBundle/Resources/views/Icon/yes.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/currencies/mt.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'EUR' => [ 6 | '€', 7 | 'ewro', 8 | ], 9 | 'MTL' => [ 10 | 'MTL', 11 | 'Lira Maltija', 12 | ], 13 | 'PHP' => [ 14 | 'PHP', 15 | 'PHP', 16 | ], 17 | ], 18 | ]; 19 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/scripts/wo.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'Arab' => 'Araab', 6 | 'Cyrl' => 'Sirilik', 7 | 'Hans' => 'Buñ woyofal', 8 | 'Hant' => 'Cosaan', 9 | 'Jpan' => 'Nihon no', 10 | 'Kore' => 'hangug-ui', 11 | 'Latn' => 'Latin', 12 | 'Zxxx' => 'Luñ bindul', 13 | ], 14 | ]; 15 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/transliterator/emoji/emoji-bgn.php: -------------------------------------------------------------------------------- 1 | 'گوونڈک', 5 | '👦' => 'چوریکه', 6 | '👧' => 'جينيکو', 7 | '👨' => 'مردینزاگ', 8 | '👩' => 'جنینزاگ', 9 | '🧓' => 'پیرین', 10 | '👴' => 'پیره مرد', 11 | '👵' => 'پیره زال', 12 | '🏁' => 'شطرنجین بیرغ', 13 | '🚩' => 'سه کونجین بیرغ', 14 | ]; 15 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/currencies/pa_Arab.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'EUR' => [ 6 | '€', 7 | 'يورو', 8 | ], 9 | 'INR' => [ 10 | '₹', 11 | 'روپئیہ [INR]', 12 | ], 13 | 'PKR' => [ 14 | 'ر', 15 | 'روپئیہ', 16 | ], 17 | ], 18 | ]; 19 | -------------------------------------------------------------------------------- /src/Symfony/Component/Templating/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | CHANGELOG 2 | ========= 3 | 4 | 6.4 5 | --- 6 | 7 | * Deprecate the component, use Twig instead 8 | 9 | 2.5.0 10 | ----- 11 | 12 | * added ability to generate versioned URLs 13 | * added ability to generate absolute URLs 14 | 15 | 2.1.0 16 | ----- 17 | 18 | * added StreamingEngineInterface 19 | * added ENT_SUBSTITUTE for the HTML escaper 20 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/currencies/bo.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'CNY' => [ 6 | '¥', 7 | 'ཡུ་ཨན་', 8 | ], 9 | 'INR' => [ 10 | '₹', 11 | 'རྒྱ་གར་སྒོར་', 12 | ], 13 | 'USD' => [ 14 | 'US$', 15 | 'ཨ་རིའི་སྒོར་', 16 | ], 17 | ], 18 | ]; 19 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/languages/es_PR.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'ace' => 'acehnés', 6 | 'arp' => 'arapaho', 7 | 'bho' => 'bhojpuri', 8 | 'grc' => 'griego antiguo', 9 | 'nso' => 'sotho septentrional', 10 | 'ss' => 'siswati', 11 | 'wo' => 'wolof', 12 | ], 13 | 'LocalizedNames' => [], 14 | ]; 15 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/languages/es_SV.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'ace' => 'acehnés', 6 | 'arp' => 'arapaho', 7 | 'bho' => 'bhojpuri', 8 | 'grc' => 'griego antiguo', 9 | 'nso' => 'sotho septentrional', 10 | 'ss' => 'siswati', 11 | 'wo' => 'wolof', 12 | ], 13 | 'LocalizedNames' => [], 14 | ]; 15 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/locales/oc.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'en' => 'anglés', 6 | 'en_ES' => 'anglés (Espanha)', 7 | 'en_FR' => 'anglés (França)', 8 | 'en_HK' => 'anglés (Hong Kong)', 9 | 'oc' => 'occitan', 10 | 'oc_ES' => 'occitan (Espanha)', 11 | 'oc_FR' => 'occitan (França)', 12 | ], 13 | ]; 14 | -------------------------------------------------------------------------------- /src/Symfony/Bundle/WebProfilerBundle/Resources/views/Icon/chevron-down.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /src/Symfony/Component/ErrorHandler/Resources/assets/images/icon-minus-square.svg: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/locales/st.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'cy' => 'Sewelsh', 6 | 'en' => 'Senyesemane', 7 | 'en_LS' => 'Senyesemane (Lesotho)', 8 | 'en_ZA' => 'Senyesemane (Afrika Borwa)', 9 | 'st' => 'Sesotho', 10 | 'st_LS' => 'Sesotho (Lesotho)', 11 | 'st_ZA' => 'Sesotho (Afrika Borwa)', 12 | ], 13 | ]; 14 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/bin/compile: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | [[ ! -d /tmp/symfony/icu ]] && mkdir -p /tmp/symfony/icu 4 | 5 | docker run \ 6 | -it --rm --name symfony-intl \ 7 | -u $(id -u):$(id -g) \ 8 | -v /tmp/symfony/icu:/tmp \ 9 | -v $(pwd):/symfony \ 10 | -w /symfony \ 11 | jakzal/php-intl:8.4-77.1 \ 12 | php src/Symfony/Component/Intl/Resources/bin/update-data.php 13 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/currencies/ta_SG.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'MYR' => [ 6 | 'RM', 7 | 'மலேஷியன் ரிங்கிட்', 8 | ], 9 | 'SGD' => [ 10 | '$', 11 | 'சிங்கப்பூர் டாலர்', 12 | ], 13 | 'USD' => [ 14 | 'US$', 15 | 'அமெரிக்க டாலர்', 16 | ], 17 | ], 18 | ]; 19 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/scripts/om.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'Arab' => 'Arabiffa', 6 | 'Cyrl' => 'Saayiriilik', 7 | 'Hans' => 'Salphifame', 8 | 'Hant' => 'Kan Durii', 9 | 'Jpan' => 'Afaan Jaappaan', 10 | 'Kore' => 'Afaan Kooriyaa', 11 | 'Latn' => 'Laatinii', 12 | 'Zxxx' => 'Kan Hin Barreeffamne', 13 | ], 14 | ]; 15 | -------------------------------------------------------------------------------- /src/Symfony/Bridge/Twig/Resources/views/Email/zurb_2/notification/local.css: -------------------------------------------------------------------------------- 1 | body { 2 | background: #f3f3f3; 3 | } 4 | 5 | .wrapper.secondary { 6 | background: #f3f3f3; 7 | } 8 | 9 | .container.body_alert { 10 | border-top: 8px solid #ec5840; 11 | } 12 | 13 | .container.body_warning { 14 | border-top: 8px solid #ffae00; 15 | } 16 | 17 | .container.body_default { 18 | border-top: 8px solid #aaaaaa; 19 | } 20 | -------------------------------------------------------------------------------- /src/Symfony/Bundle/WebProfilerBundle/Resources/views/Icon/referrer.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /src/Symfony/Bundle/WebProfilerBundle/Resources/views/Icon/settings-width-fixed.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/currencies/es_UY.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'USD' => [ 6 | 'US$', 7 | 'dólar estadounidense', 8 | ], 9 | 'UYU' => [ 10 | '$', 11 | 'peso uruguayo', 12 | ], 13 | 'UYW' => [ 14 | 'UP', 15 | 'unidad previsional uruguayo', 16 | ], 17 | ], 18 | ]; 19 | -------------------------------------------------------------------------------- /src/Symfony/Component/RateLimiter/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | CHANGELOG 2 | ========= 3 | 4 | 6.4 5 | --- 6 | 7 | * Add `SlidingWindowLimiter::reserve()` 8 | 9 | 6.2 10 | --- 11 | 12 | * Move `symfony/lock` to dev dependency in `composer.json` 13 | 14 | 5.4 15 | --- 16 | 17 | * The component is not experimental anymore 18 | * Add support for long intervals (months and years) 19 | 20 | 5.2.0 21 | ----- 22 | 23 | * added the component 24 | -------------------------------------------------------------------------------- /src/Symfony/Bundle/WebProfilerBundle/Resources/fonts/LICENSE.txt: -------------------------------------------------------------------------------- 1 | JetBrains Mono typeface (https://www.jetbrains.com/lp/mono/) is available 2 | under the SIL Open Font License 1.1 and can be used free of charge, for both 3 | commercial and non-commercial purposes. You do not need to give credit to 4 | JetBrains, although we will appreciate it very much if you do. 5 | 6 | Licence: https://github.com/JetBrains/JetBrainsMono/blob/master/OFL.txt 7 | -------------------------------------------------------------------------------- /src/Symfony/Component/CssSelector/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | CHANGELOG 2 | ========= 3 | 4 | 6.3 5 | ----- 6 | 7 | * Add support for `:scope` 8 | 9 | 4.4.0 10 | ----- 11 | 12 | * Added support for `*:only-of-type` 13 | 14 | 2.8.0 15 | ----- 16 | 17 | * Added the `CssSelectorConverter` class as a non-static API for the component. 18 | * Deprecated the `CssSelector` static API of the component. 19 | 20 | 2.1.0 21 | ----- 22 | 23 | * none 24 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/scripts/xh.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'Arab' => 'Isi-Arabhu', 6 | 'Cyrl' => 'IsiCyrillic', 7 | 'Hans' => 'IsiHans Esenziwe Lula', 8 | 'Hant' => 'IsiHant Esiqhelekileyo', 9 | 'Jpan' => 'IsiJapanese', 10 | 'Kore' => 'IsiKorean', 11 | 'Latn' => 'IsiLatin', 12 | 'Zxxx' => 'Engabhalwanga', 13 | ], 14 | ]; 15 | -------------------------------------------------------------------------------- /src/Symfony/Component/Workflow/Event/EnterEvent.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | namespace Symfony\Component\Workflow\Event; 13 | 14 | final class EnterEvent extends Event 15 | { 16 | } 17 | -------------------------------------------------------------------------------- /src/Symfony/Component/Workflow/Event/LeaveEvent.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | namespace Symfony\Component\Workflow\Event; 13 | 14 | final class LeaveEvent extends Event 15 | { 16 | } 17 | -------------------------------------------------------------------------------- /src/Symfony/Bundle/WebProfilerBundle/Resources/views/Icon/no.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/scripts/fr_CA.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'Deva' => 'devanagari', 6 | 'Gujr' => 'gujarati', 7 | 'Hanb' => 'hanb', 8 | 'Hans' => 'idéogrammes han simplifiés', 9 | 'Hant' => 'idéogrammes han traditionnels', 10 | 'Hrkt' => 'syllabaires japonais', 11 | 'Olck' => 'ol chiki', 12 | 'Zsye' => 'émoji', 13 | ], 14 | ]; 15 | -------------------------------------------------------------------------------- /src/Symfony/Component/Workflow/Event/AnnounceEvent.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | namespace Symfony\Component\Workflow\Event; 13 | 14 | final class AnnounceEvent extends Event 15 | { 16 | } 17 | -------------------------------------------------------------------------------- /src/Symfony/Component/Workflow/Event/EnteredEvent.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | namespace Symfony\Component\Workflow\Event; 13 | 14 | final class EnteredEvent extends Event 15 | { 16 | } 17 | -------------------------------------------------------------------------------- /src/Symfony/Bundle/WebProfilerBundle/Resources/views/Icon/close.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/locales/de_AT.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'ha' => 'Hausa', 6 | 'ha_GH' => 'Hausa (Ghana)', 7 | 'ha_NE' => 'Hausa (Niger)', 8 | 'ha_NG' => 'Hausa (Nigeria)', 9 | 'nb_SJ' => 'Norwegisch [Bokmål] (Svalbard und Jan Mayen)', 10 | 'sh' => 'Serbokroatisch', 11 | 'sh_BA' => 'Serbokroatisch (Bosnien und Herzegowina)', 12 | ], 13 | ]; 14 | -------------------------------------------------------------------------------- /src/Symfony/Component/VarDumper/Resources/js/htmlDescriptor.js: -------------------------------------------------------------------------------- 1 | document.addEventListener('DOMContentLoaded', function() { 2 | let prev = null; 3 | Array.from(document.getElementsByTagName('article')).reverse().forEach(function (article) { 4 | const dedupId = article.dataset.dedupId; 5 | if (dedupId === prev) { 6 | article.getElementsByTagName('header')[0].classList.add('hidden'); 7 | } 8 | prev = dedupId; 9 | }); 10 | }); 11 | -------------------------------------------------------------------------------- /src/Symfony/Component/Workflow/Event/CompletedEvent.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | namespace Symfony\Component\Workflow\Event; 13 | 14 | final class CompletedEvent extends Event 15 | { 16 | } 17 | -------------------------------------------------------------------------------- /src/Symfony/Bundle/WebProfilerBundle/Resources/views/Icon/filter.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /src/Symfony/Bundle/WebProfilerBundle/Resources/views/Icon/search.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /src/Symfony/Component/Form/Exception/AccessException.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | namespace Symfony\Component\Form\Exception; 13 | 14 | class AccessException extends RuntimeException 15 | { 16 | } 17 | -------------------------------------------------------------------------------- /src/Symfony/Bundle/WebProfilerBundle/Resources/views/Icon/settings-theme-dark.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /src/Symfony/Component/ErrorHandler/Error/OutOfMemoryError.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | namespace Symfony\Component\ErrorHandler\Error; 13 | 14 | class OutOfMemoryError extends FatalError 15 | { 16 | } 17 | -------------------------------------------------------------------------------- /src/Symfony/Component/Form/Exception/ErrorMappingException.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | namespace Symfony\Component\Form\Exception; 13 | 14 | class ErrorMappingException extends RuntimeException 15 | { 16 | } 17 | -------------------------------------------------------------------------------- /src/Symfony/Component/Form/Exception/StringCastException.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | namespace Symfony\Component\Form\Exception; 13 | 14 | class StringCastException extends RuntimeException 15 | { 16 | } 17 | -------------------------------------------------------------------------------- /src/Symfony/Component/Form/FileUploadError.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | namespace Symfony\Component\Form; 13 | 14 | /** 15 | * @internal 16 | */ 17 | class FileUploadError extends FormError 18 | { 19 | } 20 | -------------------------------------------------------------------------------- /src/Symfony/Component/String/Exception/ExceptionInterface.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | namespace Symfony\Component\String\Exception; 13 | 14 | interface ExceptionInterface extends \Throwable 15 | { 16 | } 17 | -------------------------------------------------------------------------------- /src/Symfony/Component/Ldap/Exception/UpdateOperationException.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | namespace Symfony\Component\Ldap\Exception; 13 | 14 | class UpdateOperationException extends LdapException 15 | { 16 | } 17 | -------------------------------------------------------------------------------- /src/Symfony/Component/Validator/Exception/MappingException.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | namespace Symfony\Component\Validator\Exception; 13 | 14 | class MappingException extends ValidatorException 15 | { 16 | } 17 | -------------------------------------------------------------------------------- /src/Symfony/Component/Validator/Exception/ValidatorException.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | namespace Symfony\Component\Validator\Exception; 13 | 14 | class ValidatorException extends RuntimeException 15 | { 16 | } 17 | -------------------------------------------------------------------------------- /src/Symfony/Bundle/WebProfilerBundle/Resources/views/Icon/mailer.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /src/Symfony/Bundle/WebProfilerBundle/Resources/views/Icon/redirect.svg: -------------------------------------------------------------------------------- 1 | 2 | Redirect 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /src/Symfony/Bundle/WebProfilerBundle/Resources/views/Icon/settings-theme-system.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /src/Symfony/Component/AssetMapper/Exception/ExceptionInterface.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | namespace Symfony\Component\AssetMapper\Exception; 13 | 14 | interface ExceptionInterface extends \Throwable 15 | { 16 | } 17 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/regions/ks_Deva.php: -------------------------------------------------------------------------------- 1 | [], 5 | 'Names' => [ 6 | 'BR' => 'ब्राज़ील', 7 | 'CN' => 'चीन', 8 | 'DE' => 'जर्मन', 9 | 'FR' => 'फ्रांस', 10 | 'GB' => 'मुतहीद बादशाहत', 11 | 'IN' => 'हिंदोस्तान', 12 | 'IT' => 'इटली', 13 | 'JP' => 'जापान', 14 | 'RU' => 'रूस', 15 | 'US' => 'मूतहीद रियासत', 16 | ], 17 | ]; 18 | -------------------------------------------------------------------------------- /src/Symfony/Component/VarExporter/Exception/ExceptionInterface.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | namespace Symfony\Component\VarExporter\Exception; 13 | 14 | interface ExceptionInterface extends \Throwable 15 | { 16 | } 17 | -------------------------------------------------------------------------------- /src/Symfony/Bundle/WebProfilerBundle/Resources/views/Icon/attachment.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/regions/ii.php: -------------------------------------------------------------------------------- 1 | [], 5 | 'Names' => [ 6 | 'BE' => 'ꀘꆹꏃ', 7 | 'BR' => 'ꀠꑭ', 8 | 'CN' => 'ꍏꇩ', 9 | 'DE' => 'ꄓꇩ', 10 | 'FR' => 'ꃔꇩ', 11 | 'GB' => 'ꑱꇩ', 12 | 'IN' => 'ꑴꄗ', 13 | 'IT' => 'ꑴꄊꆺ', 14 | 'JP' => 'ꏝꀪ', 15 | 'MX' => 'ꃀꑭꇬ', 16 | 'RU' => 'ꊉꇆꌦ', 17 | 'US' => 'ꂰꇩ', 18 | ], 19 | ]; 20 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/regions/sa.php: -------------------------------------------------------------------------------- 1 | [], 5 | 'Names' => [ 6 | 'BR' => 'ब्राजील', 7 | 'CN' => 'चीन:', 8 | 'DE' => 'जर्मनीदेश:', 9 | 'FR' => 'फ़्रांस:', 10 | 'GB' => 'संयुक्त राष्ट्र:', 11 | 'IN' => 'भारतः', 12 | 'IT' => 'इटली:', 13 | 'JP' => 'जापन:', 14 | 'RU' => 'रष्यदेश:', 15 | 'US' => 'संयुक्त राज्य:', 16 | ], 17 | ]; 18 | -------------------------------------------------------------------------------- /src/Symfony/Bridge/Twig/Resources/views/Email/zurb_2/notification/body.txt.twig: -------------------------------------------------------------------------------- 1 | {% block lead %} 2 | {{ email.subject }} 3 | {% endblock %} 4 | 5 | {% block content %} 6 | {{ content }} 7 | {% endblock %} 8 | 9 | {% block action %} 10 | {% if action_url %} 11 | {{ action_text }}: {{ action_url }} 12 | {% endif %} 13 | {% endblock %} 14 | 15 | {% block exception %} 16 | {% if exception %} 17 | Exception stack trace attached. 18 | {{ exception }} 19 | {% endif %} 20 | {% endblock %} 21 | -------------------------------------------------------------------------------- /src/Symfony/Component/HttpKernel/Exception/InvalidMetadataException.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | namespace Symfony\Component\HttpKernel\Exception; 13 | 14 | class InvalidMetadataException extends \LogicException 15 | { 16 | } 17 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/regions/bo.php: -------------------------------------------------------------------------------- 1 | [], 5 | 'Names' => [ 6 | 'CN' => 'རྒྱ་ནག', 7 | 'DE' => 'འཇར་མན་', 8 | 'GB' => 'དབྱིན་ཇི་', 9 | 'IN' => 'རྒྱ་གར་', 10 | 'IT' => 'ཨི་ཀྲར་ལི་', 11 | 'JP' => 'ཉི་ཧོང་', 12 | 'KR' => 'ལྷོ་ཀོ་རི་ཡ།', 13 | 'NP' => 'བལ་ཡུལ་', 14 | 'RU' => 'ཨུ་རུ་སུ་', 15 | 'US' => 'ཨ་མེ་རི་ཀ།', 16 | ], 17 | ]; 18 | -------------------------------------------------------------------------------- /src/Symfony/Component/Mailer/Exception/UnexpectedResponseException.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | namespace Symfony\Component\Mailer\Exception; 13 | 14 | class UnexpectedResponseException extends TransportException 15 | { 16 | } 17 | -------------------------------------------------------------------------------- /src/Symfony/Component/Validator/Exception/GroupDefinitionException.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | namespace Symfony\Component\Validator\Exception; 13 | 14 | class GroupDefinitionException extends ValidatorException 15 | { 16 | } 17 | -------------------------------------------------------------------------------- /src/Symfony/Component/BrowserKit/Exception/JsonException.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | namespace Symfony\Component\BrowserKit\Exception; 13 | 14 | class JsonException extends \JsonException implements ExceptionInterface 15 | { 16 | } 17 | -------------------------------------------------------------------------------- /src/Symfony/Component/Form/Exception/InvalidConfigurationException.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | namespace Symfony\Component\Form\Exception; 13 | 14 | class InvalidConfigurationException extends InvalidArgumentException 15 | { 16 | } 17 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/locales/ps_PK.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'ar_PS' => 'عربي (فلسطين سيمے)', 6 | 'en_TC' => 'انګليسي (د ترکیے او کیکاسو ټاپو)', 7 | 'fo' => 'فاروئے', 8 | 'fo_DK' => 'فاروئے (ډنمارک)', 9 | 'fo_FO' => 'فاروئے (فارو ټاپو)', 10 | 'nb' => 'ناروے بوکمال', 11 | 'nb_NO' => 'ناروے بوکمال (ناروۍ)', 12 | 'nb_SJ' => 'ناروے بوکمال (سوالبارد او جان ميين)', 13 | ], 14 | ]; 15 | -------------------------------------------------------------------------------- /src/Symfony/Component/Scheduler/Exception/LogicException.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | namespace Symfony\Component\Scheduler\Exception; 13 | 14 | class LogicException extends \LogicException implements ExceptionInterface 15 | { 16 | } 17 | -------------------------------------------------------------------------------- /src/Symfony/Component/String/Exception/RuntimeException.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | namespace Symfony\Component\String\Exception; 13 | 14 | class RuntimeException extends \RuntimeException implements ExceptionInterface 15 | { 16 | } 17 | -------------------------------------------------------------------------------- /src/Symfony/Component/Validator/Exception/LogicException.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | namespace Symfony\Component\Validator\Exception; 13 | 14 | class LogicException extends \LogicException implements ExceptionInterface 15 | { 16 | } 17 | -------------------------------------------------------------------------------- /src/Symfony/Bundle/WebProfilerBundle/Resources/views/Icon/file.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /src/Symfony/Component/AssetMapper/Exception/LogicException.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | namespace Symfony\Component\AssetMapper\Exception; 13 | 14 | class LogicException extends \LogicException implements ExceptionInterface 15 | { 16 | } 17 | -------------------------------------------------------------------------------- /src/Symfony/Component/BrowserKit/Exception/LogicException.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | namespace Symfony\Component\BrowserKit\Exception; 13 | 14 | class LogicException extends \LogicException implements ExceptionInterface 15 | { 16 | } 17 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/languages/de_CH.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'ach' => 'Acholi-Sprache', 6 | 'bik' => 'Bikol-Sprache', 7 | 'chb' => 'Chibcha-Sprache', 8 | 'din' => 'Dinka-Sprache', 9 | 'fan' => 'Pangwe-Sprache', 10 | 'gba' => 'Gbaya-Sprache', 11 | 'prg' => 'Altpreussisch', 12 | 'rhg' => 'Rohingya', 13 | 'tgx' => 'Tagisch', 14 | ], 15 | 'LocalizedNames' => [], 16 | ]; 17 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/regions/os.php: -------------------------------------------------------------------------------- 1 | [], 5 | 'Names' => [ 6 | 'BR' => 'Бразили', 7 | 'CN' => 'Китай', 8 | 'DE' => 'Герман', 9 | 'FR' => 'Франц', 10 | 'GB' => 'Стыр Британи', 11 | 'GE' => 'Гуырдзыстон', 12 | 'IN' => 'Инди', 13 | 'IT' => 'Итали', 14 | 'JP' => 'Япон', 15 | 'RU' => 'Уӕрӕсе', 16 | 'US' => 'АИШ', 17 | ], 18 | ]; 19 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/regions/sd_Deva.php: -------------------------------------------------------------------------------- 1 | [], 5 | 'Names' => [ 6 | 'BR' => 'ब्राज़ील', 7 | 'CN' => 'चीन', 8 | 'DE' => 'जर्मनी', 9 | 'FR' => 'फ़्रांस', 10 | 'GB' => 'बरतानी', 11 | 'IN' => 'भारत', 12 | 'IT' => 'इटली', 13 | 'JP' => 'जापान', 14 | 'PK' => 'पाकिस्तान', 15 | 'RU' => 'रशिया', 16 | 'US' => 'अमेरिका', 17 | ], 18 | ]; 19 | -------------------------------------------------------------------------------- /src/Symfony/Component/Routing/Exception/RuntimeException.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | namespace Symfony\Component\Routing\Exception; 13 | 14 | class RuntimeException extends \RuntimeException implements ExceptionInterface 15 | { 16 | } 17 | -------------------------------------------------------------------------------- /src/Symfony/Component/Scheduler/ScheduleProviderInterface.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | namespace Symfony\Component\Scheduler; 13 | 14 | interface ScheduleProviderInterface 15 | { 16 | public function getSchedule(): Schedule; 17 | } 18 | -------------------------------------------------------------------------------- /src/Symfony/Component/Security/Core/Event/AuthenticationSuccessEvent.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | namespace Symfony\Component\Security\Core\Event; 13 | 14 | final class AuthenticationSuccessEvent extends AuthenticationEvent 15 | { 16 | } 17 | -------------------------------------------------------------------------------- /src/Symfony/Component/Validator/Attribute/HasNamedArguments.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | namespace Symfony\Component\Validator\Attribute; 13 | 14 | #[\Attribute(\Attribute::TARGET_METHOD)] 15 | final class HasNamedArguments 16 | { 17 | } 18 | -------------------------------------------------------------------------------- /src/Symfony/Component/Validator/Exception/ConstraintDefinitionException.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | namespace Symfony\Component\Validator\Exception; 13 | 14 | class ConstraintDefinitionException extends ValidatorException 15 | { 16 | } 17 | -------------------------------------------------------------------------------- /src/Symfony/Component/VarExporter/Exception/LogicException.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | namespace Symfony\Component\VarExporter\Exception; 13 | 14 | class LogicException extends \LogicException implements ExceptionInterface 15 | { 16 | } 17 | -------------------------------------------------------------------------------- /src/Symfony/Bundle/TwigBundle/README.md: -------------------------------------------------------------------------------- 1 | TwigBundle 2 | ========== 3 | 4 | TwigBundle provides a tight integration of Twig into the Symfony full-stack 5 | framework. 6 | 7 | Resources 8 | --------- 9 | 10 | * [Contributing](https://symfony.com/doc/current/contributing/index.html) 11 | * [Report issues](https://github.com/symfony/symfony/issues) and 12 | [send Pull Requests](https://github.com/symfony/symfony/pulls) 13 | in the [main Symfony repository](https://github.com/symfony/symfony) 14 | -------------------------------------------------------------------------------- /src/Symfony/Component/AssetMapper/Exception/RuntimeException.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | namespace Symfony\Component\AssetMapper\Exception; 13 | 14 | class RuntimeException extends \RuntimeException implements ExceptionInterface 15 | { 16 | } 17 | -------------------------------------------------------------------------------- /src/Symfony/Component/AssetMapper/ImportMap/ImportMapType.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | namespace Symfony\Component\AssetMapper\ImportMap; 13 | 14 | enum ImportMapType: string 15 | { 16 | case JS = 'js'; 17 | case CSS = 'css'; 18 | } 19 | -------------------------------------------------------------------------------- /src/Symfony/Component/BrowserKit/Exception/RuntimeException.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | namespace Symfony\Component\BrowserKit\Exception; 13 | 14 | class RuntimeException extends \RuntimeException implements ExceptionInterface 15 | { 16 | } 17 | -------------------------------------------------------------------------------- /src/Symfony/Component/ErrorHandler/Resources/assets/images/icon-minus-square-o.svg: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/Symfony/Component/HttpFoundation/Exception/UnexpectedValueException.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | namespace Symfony\Component\HttpFoundation\Exception; 13 | 14 | class UnexpectedValueException extends \UnexpectedValueException 15 | { 16 | } 17 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/regions/ru_UA.php: -------------------------------------------------------------------------------- 1 | [], 5 | 'Names' => [ 6 | 'AE' => 'Объединенные Арабские Эмираты', 7 | 'BV' => 'О-в Буве', 8 | 'CK' => 'О-ва Кука', 9 | 'CX' => 'О-в Рождества', 10 | 'HM' => 'О-ва Херд и Макдональд', 11 | 'NF' => 'О-в Норфолк', 12 | 'TL' => 'Тимор-Лесте', 13 | 'UM' => 'Малые Тихоокеанские Отдаленные Острова США', 14 | ], 15 | ]; 16 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- 1 | # Code of Conduct 2 | 3 | This project follows a [Code of Conduct][code_of_conduct] in order to ensure an open and welcoming environment. 4 | Please read the full text for understanding the accepted and unaccepted behavior. 5 | Please read also the [reporting guidelines][guidelines], in case you encountered or witnessed any misbehavior. 6 | 7 | [code_of_conduct]: https://symfony.com/coc 8 | [guidelines]: https://symfony.com/doc/current/contributing/code_of_conduct/reporting_guidelines.html 9 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/languages/ar_LY.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'arn' => 'المابودونجونية', 6 | 'gn' => 'الغورانية', 7 | 'hsb' => 'صوربيا العليا', 8 | 'lo' => 'اللاوو', 9 | 'sh' => 'الكرواتية الصربية', 10 | 'sma' => 'سامي الجنوبية', 11 | 'sw' => 'السواحيلية', 12 | 'ti' => 'التيغرينية', 13 | ], 14 | 'LocalizedNames' => [ 15 | 'sw_CD' => 'السواحيلية الكونغولية', 16 | ], 17 | ]; 18 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/scripts/mt.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'Arab' => 'Għarbi', 6 | 'Brai' => 'Braille', 7 | 'Cyrl' => 'Ċirilliku', 8 | 'Grek' => 'Grieg', 9 | 'Hans' => 'Simplifikat', 10 | 'Hant' => 'Tradizzjonali', 11 | 'Jpan' => 'Ġappuniż', 12 | 'Latn' => 'Latin', 13 | 'Xpeo' => 'Persjan Antik', 14 | 'Zxxx' => 'Mhux Miktub', 15 | 'Zyyy' => 'Komuni', 16 | ], 17 | ]; 18 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/scripts/se.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'Arab' => 'arába', 6 | 'Cyrl' => 'kyrillalaš', 7 | 'Grek' => 'greikkalaš', 8 | 'Hang' => 'hangul', 9 | 'Hani' => 'kiinnaš', 10 | 'Hans' => 'álki', 11 | 'Hant' => 'árbevirolaš', 12 | 'Hira' => 'hiragana', 13 | 'Kana' => 'katakana', 14 | 'Latn' => 'láhtenaš', 15 | 'Zxxx' => 'orrut chállojuvvot', 16 | ], 17 | ]; 18 | -------------------------------------------------------------------------------- /src/Symfony/Component/Uid/MaxUlid.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | namespace Symfony\Component\Uid; 13 | 14 | class MaxUlid extends Ulid 15 | { 16 | public function __construct() 17 | { 18 | $this->uid = parent::MAX; 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /src/Symfony/Component/Uid/NilUlid.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | namespace Symfony\Component\Uid; 13 | 14 | class NilUlid extends Ulid 15 | { 16 | public function __construct() 17 | { 18 | $this->uid = parent::NIL; 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /src/Symfony/Bundle/SecurityBundle/Resources/views/Collector/icon.svg: -------------------------------------------------------------------------------- 1 | 2 | Security 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /src/Symfony/Component/ErrorHandler/Resources/assets/images/icon-plus-square.svg: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/regions/su.php: -------------------------------------------------------------------------------- 1 | [], 5 | 'Names' => [ 6 | 'BR' => 'Brasil', 7 | 'CN' => 'Tiongkok', 8 | 'DE' => 'Jérman', 9 | 'FR' => 'Prancis', 10 | 'GB' => 'Britania Raya', 11 | 'ID' => 'Indonesia', 12 | 'IN' => 'India', 13 | 'IT' => 'Italia', 14 | 'JP' => 'Jepang', 15 | 'RU' => 'Rusia', 16 | 'US' => 'Amérika Sarikat', 17 | ], 18 | ]; 19 | -------------------------------------------------------------------------------- /src/Symfony/Bridge/Twig/README.md: -------------------------------------------------------------------------------- 1 | Twig Bridge 2 | =========== 3 | 4 | The Twig bridge provides integration for [Twig](https://twig.symfony.com/) with 5 | various Symfony components. 6 | 7 | Resources 8 | --------- 9 | 10 | * [Contributing](https://symfony.com/doc/current/contributing/index.html) 11 | * [Report issues](https://github.com/symfony/symfony/issues) and 12 | [send Pull Requests](https://github.com/symfony/symfony/pulls) 13 | in the [main Symfony repository](https://github.com/symfony/symfony) 14 | -------------------------------------------------------------------------------- /src/Symfony/Bundle/WebProfilerBundle/Resources/views/Icon/command.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /src/Symfony/Component/DependencyInjection/Attribute/AutowireDecorated.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | namespace Symfony\Component\DependencyInjection\Attribute; 13 | 14 | #[\Attribute(\Attribute::TARGET_PARAMETER)] 15 | class AutowireDecorated 16 | { 17 | } 18 | -------------------------------------------------------------------------------- /src/Symfony/Component/HttpKernel/HttpCache/CacheWasLockedException.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | namespace Symfony\Component\HttpKernel\HttpCache; 13 | 14 | /** 15 | * @internal 16 | */ 17 | class CacheWasLockedException extends \Exception 18 | { 19 | } 20 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/currencies/en_IN.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'KGS' => [ 6 | 'KGS', 7 | 'Kyrgyzstani Som', 8 | ], 9 | 'USD' => [ 10 | '$', 11 | 'US Dollar', 12 | ], 13 | 'VEF' => [ 14 | 'VEF', 15 | 'Venezuelan Bolívar', 16 | ], 17 | 'XCG' => [ 18 | 'Cg.', 19 | 'Caribbean Guilder', 20 | ], 21 | ], 22 | ]; 23 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/regions/en_001.php: -------------------------------------------------------------------------------- 1 | [], 5 | 'Names' => [ 6 | 'BL' => 'St Barthélemy', 7 | 'KN' => 'St Kitts & Nevis', 8 | 'LC' => 'St Lucia', 9 | 'MF' => 'St Martin', 10 | 'PM' => 'St Pierre & Miquelon', 11 | 'SH' => 'St Helena', 12 | 'UM' => 'US Outlying Islands', 13 | 'VC' => 'St Vincent & the Grenadines', 14 | 'VI' => 'US Virgin Islands', 15 | ], 16 | ]; 17 | -------------------------------------------------------------------------------- /src/Symfony/Component/String/Exception/InvalidArgumentException.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | namespace Symfony\Component\String\Exception; 13 | 14 | class InvalidArgumentException extends \InvalidArgumentException implements ExceptionInterface 15 | { 16 | } 17 | -------------------------------------------------------------------------------- /src/Symfony/Bundle/WebProfilerBundle/Resources/config/routing/wdt.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | 7 | 8 | web_profiler.controller.profiler::toolbarAction 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/Symfony/Bundle/WebProfilerBundle/Resources/views/Collector/router.html.twig: -------------------------------------------------------------------------------- 1 | {% extends '@WebProfiler/Profiler/layout.html.twig' %} 2 | 3 | {% block toolbar %}{% endblock %} 4 | 5 | {% block menu %} 6 | 7 | {{ source('@WebProfiler/Icon/router.svg') }} 8 | Routing 9 | 10 | {% endblock %} 11 | 12 | {% block panel %} 13 | {{ render(controller('web_profiler.controller.router::panelAction', { token: token })) }} 14 | {% endblock %} 15 | -------------------------------------------------------------------------------- /src/Symfony/Bundle/WebProfilerBundle/Resources/views/Icon/request.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /src/Symfony/Component/BrowserKit/Exception/BadMethodCallException.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | namespace Symfony\Component\BrowserKit\Exception; 13 | 14 | class BadMethodCallException extends \BadMethodCallException implements ExceptionInterface 15 | { 16 | } 17 | -------------------------------------------------------------------------------- /src/Symfony/Component/Cache/Traits/CachedValueInterface.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | namespace Symfony\Component\Cache\Traits; 13 | 14 | /** 15 | * @internal 16 | */ 17 | interface CachedValueInterface 18 | { 19 | public function getValue(): mixed; 20 | } 21 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/scripts/zh_HK.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'Ethi' => '埃塞俄比亞文', 6 | 'Geor' => '格魯吉亞文', 7 | 'Guru' => '古木基文', 8 | 'Hans' => '簡體字', 9 | 'Hant' => '繁體字', 10 | 'Knda' => '坎納達文', 11 | 'Laoo' => '老撾文', 12 | 'Mlym' => '馬拉雅拉姆文', 13 | 'Newa' => '尼瓦爾文', 14 | 'Orya' => '奧里雅文', 15 | 'Sinh' => '僧伽羅文', 16 | 'Taml' => '泰米爾文', 17 | 'Thaa' => '它拿字母', 18 | ], 19 | ]; 20 | -------------------------------------------------------------------------------- /src/Symfony/Component/Routing/Exception/InvalidArgumentException.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | namespace Symfony\Component\Routing\Exception; 13 | 14 | class InvalidArgumentException extends \InvalidArgumentException implements ExceptionInterface 15 | { 16 | } 17 | -------------------------------------------------------------------------------- /src/Symfony/Component/Scheduler/Exception/InvalidArgumentException.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | namespace Symfony\Component\Scheduler\Exception; 13 | 14 | class InvalidArgumentException extends \InvalidArgumentException implements ExceptionInterface 15 | { 16 | } 17 | -------------------------------------------------------------------------------- /src/Symfony/Component/Serializer/Exception/BadMethodCallException.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | namespace Symfony\Component\Serializer\Exception; 13 | 14 | class BadMethodCallException extends \BadMethodCallException implements ExceptionInterface 15 | { 16 | } 17 | -------------------------------------------------------------------------------- /UPGRADE-7.0.md: -------------------------------------------------------------------------------- 1 | UPGRADE FROM 6.4 to 7.0 2 | ======================= 3 | 4 | Symfony 6.4 and Symfony 7.0 are released simultaneously at the end of November 2023. According to the Symfony 5 | release process, both versions have the same features, but Symfony 7.0 doesn't include any deprecated features. 6 | To upgrade, make sure to resolve all deprecation notices. 7 | 8 | This file will be updated on the [7.0 branch](https://github.com/symfony/symfony/blob/7.0/UPGRADE-7.0.md) for each 9 | deprecated feature that is removed. 10 | -------------------------------------------------------------------------------- /src/Symfony/Bridge/PsrHttpMessage/README.md: -------------------------------------------------------------------------------- 1 | PSR-7 Bridge 2 | ============ 3 | 4 | Provides integration for PSR7. 5 | 6 | Resources 7 | --------- 8 | 9 | * [Documentation](https://symfony.com/doc/current/components/psr7.html) 10 | * [Contributing](https://symfony.com/doc/current/contributing/index.html) 11 | * [Report issues](https://github.com/symfony/symfony/issues) and 12 | [send Pull Requests](https://github.com/symfony/symfony/pulls) 13 | in the [main Symfony repository](https://github.com/symfony/symfony) 14 | -------------------------------------------------------------------------------- /src/Symfony/Bundle/FrameworkBundle/Routing/RouteLoaderInterface.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | namespace Symfony\Bundle\FrameworkBundle\Routing; 13 | 14 | /** 15 | * Marker interface for service route loaders. 16 | */ 17 | interface RouteLoaderInterface 18 | { 19 | } 20 | -------------------------------------------------------------------------------- /src/Symfony/Bundle/WebProfilerBundle/Resources/views/Icon/alert-circle.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /src/Symfony/Bundle/WebProfilerBundle/Resources/views/Icon/forward.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /src/Symfony/Component/BrowserKit/Exception/InvalidArgumentException.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | namespace Symfony\Component\BrowserKit\Exception; 13 | 14 | class InvalidArgumentException extends \InvalidArgumentException implements ExceptionInterface 15 | { 16 | } 17 | -------------------------------------------------------------------------------- /src/Symfony/Component/BrowserKit/Exception/UnexpectedValueException.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | namespace Symfony\Component\BrowserKit\Exception; 13 | 14 | class UnexpectedValueException extends \UnexpectedValueException implements ExceptionInterface 15 | { 16 | } 17 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/scripts/zh_Hant_HK.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'Ethi' => '埃塞俄比亞文', 6 | 'Geor' => '格魯吉亞文', 7 | 'Guru' => '古木基文', 8 | 'Hans' => '簡體字', 9 | 'Hant' => '繁體字', 10 | 'Knda' => '坎納達文', 11 | 'Laoo' => '老撾文', 12 | 'Mlym' => '馬拉雅拉姆文', 13 | 'Newa' => '尼瓦爾文', 14 | 'Orya' => '奧里雅文', 15 | 'Sinh' => '僧伽羅文', 16 | 'Taml' => '泰米爾文', 17 | 'Thaa' => '它拿字母', 18 | ], 19 | ]; 20 | -------------------------------------------------------------------------------- /src/Symfony/Component/Notifier/Recipient/RecipientInterface.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | namespace Symfony\Component\Notifier\Recipient; 13 | 14 | /** 15 | * @author Jan Schädlich 16 | */ 17 | interface RecipientInterface 18 | { 19 | } 20 | -------------------------------------------------------------------------------- /src/Symfony/Component/Form/Test/FormInterface.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | namespace Symfony\Component\Form\Test; 13 | 14 | use Symfony\Component\Form\FormInterface as BaseFormInterface; 15 | 16 | interface FormInterface extends \Iterator, BaseFormInterface 17 | { 18 | } 19 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/scripts/ks_Deva.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'Arab' => 'अरबी', 6 | 'Cyrl' => 'सिरिलिक', 7 | 'Deva' => 'देवनागरी', 8 | 'Hans' => 'आसान (तरजुम इशार: स्क्रिप्ट नवुक यि वर्ज़न छु चीनी बापथ ज़बान नाव किस मुरकब कि इस्तिमल करान।)', 9 | 'Hant' => 'रिवायाती (तरजुम इशार: स्क्रिप्ट नवुक यि वर्ज़न छु चीनी बापथ ज़बान नाव किस मुरकब कि इस्तिमल करान।)', 10 | 'Latn' => 'लातिनी', 11 | 'Zxxx' => 'गेर तहरीर', 12 | ], 13 | ]; 14 | -------------------------------------------------------------------------------- /src/Symfony/Component/Mime/Exception/ExceptionInterface.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | namespace Symfony\Component\Mime\Exception; 13 | 14 | /** 15 | * @author Fabien Potencier 16 | */ 17 | interface ExceptionInterface extends \Throwable 18 | { 19 | } 20 | -------------------------------------------------------------------------------- /src/Symfony/Component/Notifier/Recipient/NoRecipient.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | namespace Symfony\Component\Notifier\Recipient; 13 | 14 | /** 15 | * @author Fabien Potencier 16 | */ 17 | class NoRecipient implements RecipientInterface 18 | { 19 | } 20 | -------------------------------------------------------------------------------- /src/Symfony/Bundle/SecurityBundle/README.md: -------------------------------------------------------------------------------- 1 | SecurityBundle 2 | ============== 3 | 4 | SecurityBundle provides a tight integration of the Security component into the 5 | Symfony full-stack framework. 6 | 7 | Resources 8 | --------- 9 | 10 | * [Contributing](https://symfony.com/doc/current/contributing/index.html) 11 | * [Report issues](https://github.com/symfony/symfony/issues) and 12 | [send Pull Requests](https://github.com/symfony/symfony/pulls) 13 | in the [main Symfony repository](https://github.com/symfony/symfony) 14 | -------------------------------------------------------------------------------- /src/Symfony/Bundle/WebProfilerBundle/Resources/views/Icon/download.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /src/Symfony/Component/DependencyInjection/Loader/Configurator/ClosureReferenceConfigurator.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | namespace Symfony\Component\DependencyInjection\Loader\Configurator; 13 | 14 | class ClosureReferenceConfigurator extends ReferenceConfigurator 15 | { 16 | } 17 | -------------------------------------------------------------------------------- /src/Symfony/Component/Messenger/Exception/TransportException.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | namespace Symfony\Component\Messenger\Exception; 13 | 14 | /** 15 | * @author Eric Masoero 16 | */ 17 | class TransportException extends RuntimeException 18 | { 19 | } 20 | -------------------------------------------------------------------------------- /src/Symfony/Component/Notifier/Exception/LengthException.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | namespace Symfony\Component\Notifier\Exception; 13 | 14 | /** 15 | * @author Oskar Stark 16 | */ 17 | class LengthException extends LogicException 18 | { 19 | } 20 | -------------------------------------------------------------------------------- /src/Symfony/Component/Scheduler/Exception/ExceptionInterface.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | namespace Symfony\Component\Scheduler\Exception; 13 | 14 | /** 15 | * Base Scheduler component's exception. 16 | */ 17 | interface ExceptionInterface extends \Throwable 18 | { 19 | } 20 | -------------------------------------------------------------------------------- /src/Symfony/Component/Webhook/Exception/ExceptionInterface.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | namespace Symfony\Component\Webhook\Exception; 13 | 14 | /** 15 | * @author Fabien Potencier 16 | */ 17 | interface ExceptionInterface extends \Throwable 18 | { 19 | } 20 | -------------------------------------------------------------------------------- /src/Symfony/Bridge/Monolog/README.md: -------------------------------------------------------------------------------- 1 | Monolog Bridge 2 | ============== 3 | 4 | The Monolog bridge provides integration for 5 | [Monolog](https://seldaek.github.io/monolog/) with various Symfony components. 6 | 7 | Resources 8 | --------- 9 | 10 | * [Contributing](https://symfony.com/doc/current/contributing/index.html) 11 | * [Report issues](https://github.com/symfony/symfony/issues) and 12 | [send Pull Requests](https://github.com/symfony/symfony/pulls) 13 | in the [main Symfony repository](https://github.com/symfony/symfony) 14 | -------------------------------------------------------------------------------- /src/Symfony/Bundle/WebProfilerBundle/Resources/views/Icon/serializer.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /src/Symfony/Component/Clock/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | CHANGELOG 2 | ========= 3 | 4 | 6.4 5 | --- 6 | 7 | * Add `DatePoint`: an immutable DateTime implementation with stricter error handling and return types 8 | * Throw `DateMalformedStringException`/`DateInvalidTimeZoneException` when appropriate 9 | * Add `$modifier` argument to the `now()` helper 10 | 11 | 6.3 12 | --- 13 | 14 | * Add `ClockAwareTrait` to help write time-sensitive classes 15 | * Add `Clock` class and `now()` function 16 | 17 | 6.2 18 | --- 19 | 20 | * Add the component 21 | -------------------------------------------------------------------------------- /src/Symfony/Component/Yaml/README.md: -------------------------------------------------------------------------------- 1 | Yaml Component 2 | ============== 3 | 4 | The Yaml component loads and dumps YAML files. 5 | 6 | Resources 7 | --------- 8 | 9 | * [Documentation](https://symfony.com/doc/current/components/yaml.html) 10 | * [Contributing](https://symfony.com/doc/current/contributing/index.html) 11 | * [Report issues](https://github.com/symfony/symfony/issues) and 12 | [send Pull Requests](https://github.com/symfony/symfony/pulls) 13 | in the [main Symfony repository](https://github.com/symfony/symfony) 14 | -------------------------------------------------------------------------------- /src/Symfony/Bridge/Doctrine/README.md: -------------------------------------------------------------------------------- 1 | Doctrine Bridge 2 | =============== 3 | 4 | The Doctrine bridge provides integration for 5 | [Doctrine](http://www.doctrine-project.org/) with various Symfony components. 6 | 7 | Resources 8 | --------- 9 | 10 | * [Contributing](https://symfony.com/doc/current/contributing/index.html) 11 | * [Report issues](https://github.com/symfony/symfony/issues) and 12 | [send Pull Requests](https://github.com/symfony/symfony/pulls) 13 | in the [main Symfony repository](https://github.com/symfony/symfony) 14 | -------------------------------------------------------------------------------- /src/Symfony/Bundle/FullStack.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | namespace Symfony\Bundle; 13 | 14 | /** 15 | * A marker to be able to check if symfony/symfony is installed instead of the individual components/bundles. 16 | * 17 | * @internal 18 | */ 19 | final class FullStack 20 | { 21 | } 22 | -------------------------------------------------------------------------------- /src/Symfony/Bundle/WebProfilerBundle/Resources/views/Icon/menu.svg: -------------------------------------------------------------------------------- 1 | 2 | Menu 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/currencies/de_CH.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'BYN' => [ 6 | 'BYN', 7 | 'Weissrussischer Rubel', 8 | ], 9 | 'BYR' => [ 10 | 'BYR', 11 | 'Weissrussischer Rubel (2000–2016)', 12 | ], 13 | 'EUR' => [ 14 | 'EUR', 15 | 'Euro', 16 | ], 17 | 'STN' => [ 18 | 'STN', 19 | 'São-toméischer Dobra (2018)', 20 | ], 21 | ], 22 | ]; 23 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/regions/es_419.php: -------------------------------------------------------------------------------- 1 | [], 5 | 'Names' => [ 6 | 'AX' => 'Islas Åland', 7 | 'BA' => 'Bosnia-Herzegovina', 8 | 'CG' => 'República del Congo', 9 | 'CI' => 'Costa de Marfil', 10 | 'GS' => 'Islas Georgia del Sur y Sándwich del Sur', 11 | 'RO' => 'Rumania', 12 | 'SA' => 'Arabia Saudita', 13 | 'TL' => 'Timor Oriental', 14 | 'UM' => 'Islas Ultramarinas de EE.UU.', 15 | ], 16 | ]; 17 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/regions/sr_XK.php: -------------------------------------------------------------------------------- 1 | [], 5 | 'Names' => [ 6 | 'CG' => 'Конго', 7 | 'CV' => 'Кабо Верде', 8 | 'CZ' => 'Чешка Република', 9 | 'HK' => 'САР Хонгконг', 10 | 'KN' => 'Свети Китс и Невис', 11 | 'MO' => 'САР Макао', 12 | 'PM' => 'Свети Пјер и Микелон', 13 | 'RE' => 'Реунион', 14 | 'UM' => 'Мања удаљена острва САД', 15 | 'VC' => 'Свети Винсент и Гренадини', 16 | ], 17 | ]; 18 | -------------------------------------------------------------------------------- /src/Symfony/Component/Mime/README.md: -------------------------------------------------------------------------------- 1 | MIME Component 2 | ============== 3 | 4 | The MIME component allows manipulating MIME messages. 5 | 6 | Resources 7 | --------- 8 | 9 | * [Documentation](https://symfony.com/doc/current/components/mime.html) 10 | * [Contributing](https://symfony.com/doc/current/contributing/index.html) 11 | * [Report issues](https://github.com/symfony/symfony/issues) and 12 | [send Pull Requests](https://github.com/symfony/symfony/pulls) 13 | in the [main Symfony repository](https://github.com/symfony/symfony) 14 | -------------------------------------------------------------------------------- /src/Symfony/Component/RemoteEvent/Exception/ExceptionInterface.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | namespace Symfony\Component\RemoteEvent\Exception; 13 | 14 | /** 15 | * @author Fabien Potencier 16 | */ 17 | interface ExceptionInterface extends \Throwable 18 | { 19 | } 20 | -------------------------------------------------------------------------------- /src/Symfony/Component/RemoteEvent/Exception/ParseException.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | namespace Symfony\Component\RemoteEvent\Exception; 13 | 14 | /** 15 | * @author Fabien Potencier 16 | */ 17 | class ParseException extends InvalidArgumentException 18 | { 19 | } 20 | -------------------------------------------------------------------------------- /src/Symfony/Component/Scheduler/README.md: -------------------------------------------------------------------------------- 1 | Scheduler Component 2 | =================== 3 | 4 | Provides scheduling through Symfony Messenger. 5 | 6 | Resources 7 | --------- 8 | 9 | * [Documentation](https://symfony.com/doc/current/scheduler.html) 10 | * [Contributing](https://symfony.com/doc/current/contributing/index.html) 11 | * [Report issues](https://github.com/symfony/symfony/issues) and 12 | [send Pull Requests](https://github.com/symfony/symfony/pulls) 13 | in the [main Symfony repository](https://github.com/symfony/symfony) 14 | -------------------------------------------------------------------------------- /src/Symfony/Component/Security/Csrf/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | CHANGELOG 2 | ========= 3 | 4 | 6.0 5 | --- 6 | 7 | * Remove the `SessionInterface $session` constructor argument of `SessionTokenStorage`, inject a `\Symfony\Component\HttpFoundation\RequestStack $requestStack` instead 8 | * Using `SessionTokenStorage` outside a request context throws a `SessionNotFoundException` 9 | 10 | 5.3 11 | --- 12 | 13 | The CHANGELOG for version 5.3 and earlier can be found at https://github.com/symfony/symfony/blob/5.3/src/Symfony/Component/Security/CHANGELOG.md 14 | -------------------------------------------------------------------------------- /src/Symfony/Component/Uid/MaxUuid.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | namespace Symfony\Component\Uid; 13 | 14 | class MaxUuid extends Uuid 15 | { 16 | protected const TYPE = -1; 17 | 18 | public function __construct() 19 | { 20 | $this->uid = parent::MAX; 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /src/Symfony/Component/Webhook/README.md: -------------------------------------------------------------------------------- 1 | Webhook Component 2 | ================= 3 | 4 | Symfony Webhook eases sending and consuming webhooks. 5 | 6 | Resources 7 | --------- 8 | 9 | * [Documentation](https://symfony.com/doc/current/webhook.html) 10 | * [Contributing](https://symfony.com/doc/current/contributing/index.html) 11 | * [Report issues](https://github.com/symfony/symfony/issues) and 12 | [send Pull Requests](https://github.com/symfony/symfony/pulls) 13 | in the [main Symfony repository](https://github.com/symfony/symfony) 14 | -------------------------------------------------------------------------------- /src/Symfony/Bundle/WebProfilerBundle/Resources/views/Icon/ajax.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/locales/ru_UA.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'ar_AE' => 'арабский (Объединенные Арабские Эмираты)', 6 | 'en_AE' => 'английский (Объединенные Арабские Эмираты)', 7 | 'en_CK' => 'английский (О-ва Кука)', 8 | 'en_CX' => 'английский (О-в Рождества)', 9 | 'en_NF' => 'английский (О-в Норфолк)', 10 | 'en_UM' => 'английский (Малые Тихоокеанские Отдаленные Острова США)', 11 | 'pt_TL' => 'португальский (Тимор-Лесте)', 12 | ], 13 | ]; 14 | -------------------------------------------------------------------------------- /src/Symfony/Component/Intl/Resources/data/regions/sr_Cyrl_XK.php: -------------------------------------------------------------------------------- 1 | [], 5 | 'Names' => [ 6 | 'CG' => 'Конго', 7 | 'CV' => 'Кабо Верде', 8 | 'CZ' => 'Чешка Република', 9 | 'HK' => 'САР Хонгконг', 10 | 'KN' => 'Свети Китс и Невис', 11 | 'MO' => 'САР Макао', 12 | 'PM' => 'Свети Пјер и Микелон', 13 | 'RE' => 'Реунион', 14 | 'UM' => 'Мања удаљена острва САД', 15 | 'VC' => 'Свети Винсент и Гренадини', 16 | ], 17 | ]; 18 | -------------------------------------------------------------------------------- /src/Symfony/Component/Messenger/Stamp/MessageDecodingFailedStamp.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | namespace Symfony\Component\Messenger\Stamp; 13 | 14 | /** 15 | * @author Grégoire Pineau 16 | */ 17 | class MessageDecodingFailedStamp implements StampInterface 18 | { 19 | } 20 | -------------------------------------------------------------------------------- /src/Symfony/Component/Mime/Exception/AddressEncoderException.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | namespace Symfony\Component\Mime\Exception; 13 | 14 | /** 15 | * @author Fabien Potencier 16 | */ 17 | class AddressEncoderException extends RfcComplianceException 18 | { 19 | } 20 | --------------------------------------------------------------------------------