composer.lock 165 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716
  1. {
  2. "_readme": [
  3. "This file locks the dependencies of your project to a known state",
  4. "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
  5. "This file is @generated automatically"
  6. ],
  7. "content-hash": "c258447a785bb926461a14e209314e76",
  8. "packages": [],
  9. "packages-dev": [
  10. {
  11. "name": "behat/behat",
  12. "version": "v3.12.0",
  13. "source": {
  14. "type": "git",
  15. "url": "https://github.com/Behat/Behat.git",
  16. "reference": "2f059c9172764ba1f1759b3679aca499b665330a"
  17. },
  18. "dist": {
  19. "type": "zip",
  20. "url": "https://api.github.com/repos/Behat/Behat/zipball/2f059c9172764ba1f1759b3679aca499b665330a",
  21. "reference": "2f059c9172764ba1f1759b3679aca499b665330a",
  22. "shasum": ""
  23. },
  24. "require": {
  25. "behat/gherkin": "^4.9.0",
  26. "behat/transliterator": "^1.2",
  27. "ext-mbstring": "*",
  28. "php": "^7.2 || ^8.0",
  29. "psr/container": "^1.0 || ^2.0",
  30. "symfony/config": "^4.4 || ^5.0 || ^6.0",
  31. "symfony/console": "^4.4 || ^5.0 || ^6.0",
  32. "symfony/dependency-injection": "^4.4 || ^5.0 || ^6.0",
  33. "symfony/event-dispatcher": "^4.4 || ^5.0 || ^6.0",
  34. "symfony/translation": "^4.4 || ^5.0 || ^6.0",
  35. "symfony/yaml": "^4.4 || ^5.0 || ^6.0"
  36. },
  37. "require-dev": {
  38. "herrera-io/box": "~1.6.1",
  39. "phpspec/prophecy": "^1.15",
  40. "phpunit/phpunit": "^8.5 || ^9.0",
  41. "symfony/process": "^4.4 || ^5.0 || ^6.0",
  42. "vimeo/psalm": "^4.8"
  43. },
  44. "suggest": {
  45. "ext-dom": "Needed to output test results in JUnit format."
  46. },
  47. "bin": [
  48. "bin/behat"
  49. ],
  50. "type": "library",
  51. "extra": {
  52. "branch-alias": {
  53. "dev-master": "3.x-dev"
  54. }
  55. },
  56. "autoload": {
  57. "psr-4": {
  58. "Behat\\Hook\\": "src/Behat/Hook/",
  59. "Behat\\Step\\": "src/Behat/Step/",
  60. "Behat\\Behat\\": "src/Behat/Behat/",
  61. "Behat\\Testwork\\": "src/Behat/Testwork/"
  62. }
  63. },
  64. "notification-url": "https://packagist.org/downloads/",
  65. "license": [
  66. "MIT"
  67. ],
  68. "authors": [
  69. {
  70. "name": "Konstantin Kudryashov",
  71. "email": "ever.zet@gmail.com",
  72. "homepage": "http://everzet.com"
  73. }
  74. ],
  75. "description": "Scenario-oriented BDD framework for PHP",
  76. "homepage": "http://behat.org/",
  77. "keywords": [
  78. "Agile",
  79. "BDD",
  80. "ScenarioBDD",
  81. "Scrum",
  82. "StoryBDD",
  83. "User story",
  84. "business",
  85. "development",
  86. "documentation",
  87. "examples",
  88. "symfony",
  89. "testing"
  90. ],
  91. "support": {
  92. "issues": "https://github.com/Behat/Behat/issues",
  93. "source": "https://github.com/Behat/Behat/tree/v3.12.0"
  94. },
  95. "time": "2022-11-29T15:30:11+00:00"
  96. },
  97. {
  98. "name": "behat/gherkin",
  99. "version": "v4.9.0",
  100. "source": {
  101. "type": "git",
  102. "url": "https://github.com/Behat/Gherkin.git",
  103. "reference": "0bc8d1e30e96183e4f36db9dc79caead300beff4"
  104. },
  105. "dist": {
  106. "type": "zip",
  107. "url": "https://api.github.com/repos/Behat/Gherkin/zipball/0bc8d1e30e96183e4f36db9dc79caead300beff4",
  108. "reference": "0bc8d1e30e96183e4f36db9dc79caead300beff4",
  109. "shasum": ""
  110. },
  111. "require": {
  112. "php": "~7.2|~8.0"
  113. },
  114. "require-dev": {
  115. "cucumber/cucumber": "dev-gherkin-22.0.0",
  116. "phpunit/phpunit": "~8|~9",
  117. "symfony/yaml": "~3|~4|~5"
  118. },
  119. "suggest": {
  120. "symfony/yaml": "If you want to parse features, represented in YAML files"
  121. },
  122. "type": "library",
  123. "extra": {
  124. "branch-alias": {
  125. "dev-master": "4.x-dev"
  126. }
  127. },
  128. "autoload": {
  129. "psr-0": {
  130. "Behat\\Gherkin": "src/"
  131. }
  132. },
  133. "notification-url": "https://packagist.org/downloads/",
  134. "license": [
  135. "MIT"
  136. ],
  137. "authors": [
  138. {
  139. "name": "Konstantin Kudryashov",
  140. "email": "ever.zet@gmail.com",
  141. "homepage": "http://everzet.com"
  142. }
  143. ],
  144. "description": "Gherkin DSL parser for PHP",
  145. "homepage": "http://behat.org/",
  146. "keywords": [
  147. "BDD",
  148. "Behat",
  149. "Cucumber",
  150. "DSL",
  151. "gherkin",
  152. "parser"
  153. ],
  154. "support": {
  155. "issues": "https://github.com/Behat/Gherkin/issues",
  156. "source": "https://github.com/Behat/Gherkin/tree/v4.9.0"
  157. },
  158. "time": "2021-10-12T13:05:09+00:00"
  159. },
  160. {
  161. "name": "behat/transliterator",
  162. "version": "v1.5.0",
  163. "source": {
  164. "type": "git",
  165. "url": "https://github.com/Behat/Transliterator.git",
  166. "reference": "baac5873bac3749887d28ab68e2f74db3a4408af"
  167. },
  168. "dist": {
  169. "type": "zip",
  170. "url": "https://api.github.com/repos/Behat/Transliterator/zipball/baac5873bac3749887d28ab68e2f74db3a4408af",
  171. "reference": "baac5873bac3749887d28ab68e2f74db3a4408af",
  172. "shasum": ""
  173. },
  174. "require": {
  175. "php": ">=7.2"
  176. },
  177. "require-dev": {
  178. "chuyskywalker/rolling-curl": "^3.1",
  179. "php-yaoi/php-yaoi": "^1.0",
  180. "phpunit/phpunit": "^8.5.25 || ^9.5.19"
  181. },
  182. "type": "library",
  183. "extra": {
  184. "branch-alias": {
  185. "dev-master": "1.x-dev"
  186. }
  187. },
  188. "autoload": {
  189. "psr-4": {
  190. "Behat\\Transliterator\\": "src/Behat/Transliterator"
  191. }
  192. },
  193. "notification-url": "https://packagist.org/downloads/",
  194. "license": [
  195. "Artistic-1.0"
  196. ],
  197. "description": "String transliterator",
  198. "keywords": [
  199. "i18n",
  200. "slug",
  201. "transliterator"
  202. ],
  203. "support": {
  204. "issues": "https://github.com/Behat/Transliterator/issues",
  205. "source": "https://github.com/Behat/Transliterator/tree/v1.5.0"
  206. },
  207. "time": "2022-03-30T09:27:43+00:00"
  208. },
  209. {
  210. "name": "dms/phpunit-arraysubset-asserts",
  211. "version": "v0.4.0",
  212. "source": {
  213. "type": "git",
  214. "url": "https://github.com/rdohms/phpunit-arraysubset-asserts.git",
  215. "reference": "428293c2a00eceefbad71a2dbdfb913febb35de2"
  216. },
  217. "dist": {
  218. "type": "zip",
  219. "url": "https://api.github.com/repos/rdohms/phpunit-arraysubset-asserts/zipball/428293c2a00eceefbad71a2dbdfb913febb35de2",
  220. "reference": "428293c2a00eceefbad71a2dbdfb913febb35de2",
  221. "shasum": ""
  222. },
  223. "require": {
  224. "php": "^5.4 || ^7.0 || ^8.0",
  225. "phpunit/phpunit": "^4.8.36 || ^5.7.21 || ^6.0 || ^7.0 || ^8.0 || ^9.0"
  226. },
  227. "require-dev": {
  228. "dms/coding-standard": "^9",
  229. "squizlabs/php_codesniffer": "^3.4"
  230. },
  231. "type": "library",
  232. "autoload": {
  233. "files": [
  234. "assertarraysubset-autoload.php"
  235. ]
  236. },
  237. "notification-url": "https://packagist.org/downloads/",
  238. "license": [
  239. "MIT"
  240. ],
  241. "authors": [
  242. {
  243. "name": "Rafael Dohms",
  244. "email": "rdohms@gmail.com"
  245. }
  246. ],
  247. "description": "This package provides ArraySubset and related asserts once deprecated in PHPUnit 8",
  248. "support": {
  249. "issues": "https://github.com/rdohms/phpunit-arraysubset-asserts/issues",
  250. "source": "https://github.com/rdohms/phpunit-arraysubset-asserts/tree/v0.4.0"
  251. },
  252. "time": "2022-02-13T15:00:28+00:00"
  253. },
  254. {
  255. "name": "doctrine/instantiator",
  256. "version": "1.4.1",
  257. "source": {
  258. "type": "git",
  259. "url": "https://github.com/doctrine/instantiator.git",
  260. "reference": "10dcfce151b967d20fde1b34ae6640712c3891bc"
  261. },
  262. "dist": {
  263. "type": "zip",
  264. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/10dcfce151b967d20fde1b34ae6640712c3891bc",
  265. "reference": "10dcfce151b967d20fde1b34ae6640712c3891bc",
  266. "shasum": ""
  267. },
  268. "require": {
  269. "php": "^7.1 || ^8.0"
  270. },
  271. "require-dev": {
  272. "doctrine/coding-standard": "^9",
  273. "ext-pdo": "*",
  274. "ext-phar": "*",
  275. "phpbench/phpbench": "^0.16 || ^1",
  276. "phpstan/phpstan": "^1.4",
  277. "phpstan/phpstan-phpunit": "^1",
  278. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  279. "vimeo/psalm": "^4.22"
  280. },
  281. "type": "library",
  282. "autoload": {
  283. "psr-4": {
  284. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  285. }
  286. },
  287. "notification-url": "https://packagist.org/downloads/",
  288. "license": [
  289. "MIT"
  290. ],
  291. "authors": [
  292. {
  293. "name": "Marco Pivetta",
  294. "email": "ocramius@gmail.com",
  295. "homepage": "https://ocramius.github.io/"
  296. }
  297. ],
  298. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  299. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  300. "keywords": [
  301. "constructor",
  302. "instantiate"
  303. ],
  304. "support": {
  305. "issues": "https://github.com/doctrine/instantiator/issues",
  306. "source": "https://github.com/doctrine/instantiator/tree/1.4.1"
  307. },
  308. "funding": [
  309. {
  310. "url": "https://www.doctrine-project.org/sponsorship.html",
  311. "type": "custom"
  312. },
  313. {
  314. "url": "https://www.patreon.com/phpdoctrine",
  315. "type": "patreon"
  316. },
  317. {
  318. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
  319. "type": "tidelift"
  320. }
  321. ],
  322. "time": "2022-03-03T08:28:38+00:00"
  323. },
  324. {
  325. "name": "guzzlehttp/guzzle",
  326. "version": "7.5.0",
  327. "source": {
  328. "type": "git",
  329. "url": "https://github.com/guzzle/guzzle.git",
  330. "reference": "b50a2a1251152e43f6a37f0fa053e730a67d25ba"
  331. },
  332. "dist": {
  333. "type": "zip",
  334. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/b50a2a1251152e43f6a37f0fa053e730a67d25ba",
  335. "reference": "b50a2a1251152e43f6a37f0fa053e730a67d25ba",
  336. "shasum": ""
  337. },
  338. "require": {
  339. "ext-json": "*",
  340. "guzzlehttp/promises": "^1.5",
  341. "guzzlehttp/psr7": "^1.9 || ^2.4",
  342. "php": "^7.2.5 || ^8.0",
  343. "psr/http-client": "^1.0",
  344. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  345. },
  346. "provide": {
  347. "psr/http-client-implementation": "1.0"
  348. },
  349. "require-dev": {
  350. "bamarni/composer-bin-plugin": "^1.8.1",
  351. "ext-curl": "*",
  352. "php-http/client-integration-tests": "^3.0",
  353. "phpunit/phpunit": "^8.5.29 || ^9.5.23",
  354. "psr/log": "^1.1 || ^2.0 || ^3.0"
  355. },
  356. "suggest": {
  357. "ext-curl": "Required for CURL handler support",
  358. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  359. "psr/log": "Required for using the Log middleware"
  360. },
  361. "type": "library",
  362. "extra": {
  363. "bamarni-bin": {
  364. "bin-links": true,
  365. "forward-command": false
  366. },
  367. "branch-alias": {
  368. "dev-master": "7.5-dev"
  369. }
  370. },
  371. "autoload": {
  372. "files": [
  373. "src/functions_include.php"
  374. ],
  375. "psr-4": {
  376. "GuzzleHttp\\": "src/"
  377. }
  378. },
  379. "notification-url": "https://packagist.org/downloads/",
  380. "license": [
  381. "MIT"
  382. ],
  383. "authors": [
  384. {
  385. "name": "Graham Campbell",
  386. "email": "hello@gjcampbell.co.uk",
  387. "homepage": "https://github.com/GrahamCampbell"
  388. },
  389. {
  390. "name": "Michael Dowling",
  391. "email": "mtdowling@gmail.com",
  392. "homepage": "https://github.com/mtdowling"
  393. },
  394. {
  395. "name": "Jeremy Lindblom",
  396. "email": "jeremeamia@gmail.com",
  397. "homepage": "https://github.com/jeremeamia"
  398. },
  399. {
  400. "name": "George Mponos",
  401. "email": "gmponos@gmail.com",
  402. "homepage": "https://github.com/gmponos"
  403. },
  404. {
  405. "name": "Tobias Nyholm",
  406. "email": "tobias.nyholm@gmail.com",
  407. "homepage": "https://github.com/Nyholm"
  408. },
  409. {
  410. "name": "Márk Sági-Kazár",
  411. "email": "mark.sagikazar@gmail.com",
  412. "homepage": "https://github.com/sagikazarmark"
  413. },
  414. {
  415. "name": "Tobias Schultze",
  416. "email": "webmaster@tubo-world.de",
  417. "homepage": "https://github.com/Tobion"
  418. }
  419. ],
  420. "description": "Guzzle is a PHP HTTP client library",
  421. "keywords": [
  422. "client",
  423. "curl",
  424. "framework",
  425. "http",
  426. "http client",
  427. "psr-18",
  428. "psr-7",
  429. "rest",
  430. "web service"
  431. ],
  432. "support": {
  433. "issues": "https://github.com/guzzle/guzzle/issues",
  434. "source": "https://github.com/guzzle/guzzle/tree/7.5.0"
  435. },
  436. "funding": [
  437. {
  438. "url": "https://github.com/GrahamCampbell",
  439. "type": "github"
  440. },
  441. {
  442. "url": "https://github.com/Nyholm",
  443. "type": "github"
  444. },
  445. {
  446. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
  447. "type": "tidelift"
  448. }
  449. ],
  450. "time": "2022-08-28T15:39:27+00:00"
  451. },
  452. {
  453. "name": "guzzlehttp/promises",
  454. "version": "1.5.2",
  455. "source": {
  456. "type": "git",
  457. "url": "https://github.com/guzzle/promises.git",
  458. "reference": "b94b2807d85443f9719887892882d0329d1e2598"
  459. },
  460. "dist": {
  461. "type": "zip",
  462. "url": "https://api.github.com/repos/guzzle/promises/zipball/b94b2807d85443f9719887892882d0329d1e2598",
  463. "reference": "b94b2807d85443f9719887892882d0329d1e2598",
  464. "shasum": ""
  465. },
  466. "require": {
  467. "php": ">=5.5"
  468. },
  469. "require-dev": {
  470. "symfony/phpunit-bridge": "^4.4 || ^5.1"
  471. },
  472. "type": "library",
  473. "extra": {
  474. "branch-alias": {
  475. "dev-master": "1.5-dev"
  476. }
  477. },
  478. "autoload": {
  479. "files": [
  480. "src/functions_include.php"
  481. ],
  482. "psr-4": {
  483. "GuzzleHttp\\Promise\\": "src/"
  484. }
  485. },
  486. "notification-url": "https://packagist.org/downloads/",
  487. "license": [
  488. "MIT"
  489. ],
  490. "authors": [
  491. {
  492. "name": "Graham Campbell",
  493. "email": "hello@gjcampbell.co.uk",
  494. "homepage": "https://github.com/GrahamCampbell"
  495. },
  496. {
  497. "name": "Michael Dowling",
  498. "email": "mtdowling@gmail.com",
  499. "homepage": "https://github.com/mtdowling"
  500. },
  501. {
  502. "name": "Tobias Nyholm",
  503. "email": "tobias.nyholm@gmail.com",
  504. "homepage": "https://github.com/Nyholm"
  505. },
  506. {
  507. "name": "Tobias Schultze",
  508. "email": "webmaster@tubo-world.de",
  509. "homepage": "https://github.com/Tobion"
  510. }
  511. ],
  512. "description": "Guzzle promises library",
  513. "keywords": [
  514. "promise"
  515. ],
  516. "support": {
  517. "issues": "https://github.com/guzzle/promises/issues",
  518. "source": "https://github.com/guzzle/promises/tree/1.5.2"
  519. },
  520. "funding": [
  521. {
  522. "url": "https://github.com/GrahamCampbell",
  523. "type": "github"
  524. },
  525. {
  526. "url": "https://github.com/Nyholm",
  527. "type": "github"
  528. },
  529. {
  530. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  531. "type": "tidelift"
  532. }
  533. ],
  534. "time": "2022-08-28T14:55:35+00:00"
  535. },
  536. {
  537. "name": "guzzlehttp/psr7",
  538. "version": "2.4.1",
  539. "source": {
  540. "type": "git",
  541. "url": "https://github.com/guzzle/psr7.git",
  542. "reference": "69568e4293f4fa993f3b0e51c9723e1e17c41379"
  543. },
  544. "dist": {
  545. "type": "zip",
  546. "url": "https://api.github.com/repos/guzzle/psr7/zipball/69568e4293f4fa993f3b0e51c9723e1e17c41379",
  547. "reference": "69568e4293f4fa993f3b0e51c9723e1e17c41379",
  548. "shasum": ""
  549. },
  550. "require": {
  551. "php": "^7.2.5 || ^8.0",
  552. "psr/http-factory": "^1.0",
  553. "psr/http-message": "^1.0",
  554. "ralouphie/getallheaders": "^3.0"
  555. },
  556. "provide": {
  557. "psr/http-factory-implementation": "1.0",
  558. "psr/http-message-implementation": "1.0"
  559. },
  560. "require-dev": {
  561. "bamarni/composer-bin-plugin": "^1.8.1",
  562. "http-interop/http-factory-tests": "^0.9",
  563. "phpunit/phpunit": "^8.5.29 || ^9.5.23"
  564. },
  565. "suggest": {
  566. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  567. },
  568. "type": "library",
  569. "extra": {
  570. "bamarni-bin": {
  571. "bin-links": true,
  572. "forward-command": false
  573. },
  574. "branch-alias": {
  575. "dev-master": "2.4-dev"
  576. }
  577. },
  578. "autoload": {
  579. "psr-4": {
  580. "GuzzleHttp\\Psr7\\": "src/"
  581. }
  582. },
  583. "notification-url": "https://packagist.org/downloads/",
  584. "license": [
  585. "MIT"
  586. ],
  587. "authors": [
  588. {
  589. "name": "Graham Campbell",
  590. "email": "hello@gjcampbell.co.uk",
  591. "homepage": "https://github.com/GrahamCampbell"
  592. },
  593. {
  594. "name": "Michael Dowling",
  595. "email": "mtdowling@gmail.com",
  596. "homepage": "https://github.com/mtdowling"
  597. },
  598. {
  599. "name": "George Mponos",
  600. "email": "gmponos@gmail.com",
  601. "homepage": "https://github.com/gmponos"
  602. },
  603. {
  604. "name": "Tobias Nyholm",
  605. "email": "tobias.nyholm@gmail.com",
  606. "homepage": "https://github.com/Nyholm"
  607. },
  608. {
  609. "name": "Márk Sági-Kazár",
  610. "email": "mark.sagikazar@gmail.com",
  611. "homepage": "https://github.com/sagikazarmark"
  612. },
  613. {
  614. "name": "Tobias Schultze",
  615. "email": "webmaster@tubo-world.de",
  616. "homepage": "https://github.com/Tobion"
  617. },
  618. {
  619. "name": "Márk Sági-Kazár",
  620. "email": "mark.sagikazar@gmail.com",
  621. "homepage": "https://sagikazarmark.hu"
  622. }
  623. ],
  624. "description": "PSR-7 message implementation that also provides common utility methods",
  625. "keywords": [
  626. "http",
  627. "message",
  628. "psr-7",
  629. "request",
  630. "response",
  631. "stream",
  632. "uri",
  633. "url"
  634. ],
  635. "support": {
  636. "issues": "https://github.com/guzzle/psr7/issues",
  637. "source": "https://github.com/guzzle/psr7/tree/2.4.1"
  638. },
  639. "funding": [
  640. {
  641. "url": "https://github.com/GrahamCampbell",
  642. "type": "github"
  643. },
  644. {
  645. "url": "https://github.com/Nyholm",
  646. "type": "github"
  647. },
  648. {
  649. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  650. "type": "tidelift"
  651. }
  652. ],
  653. "time": "2022-08-28T14:45:39+00:00"
  654. },
  655. {
  656. "name": "jarnaiz/behat-junit-formatter",
  657. "version": "v1.3.2",
  658. "source": {
  659. "type": "git",
  660. "url": "https://github.com/j-arnaiz/behat-junit-formatter.git",
  661. "reference": "2f80b3881e04d3cf43e05ab821c0e80675a9846d"
  662. },
  663. "dist": {
  664. "type": "zip",
  665. "url": "https://api.github.com/repos/j-arnaiz/behat-junit-formatter/zipball/2f80b3881e04d3cf43e05ab821c0e80675a9846d",
  666. "reference": "2f80b3881e04d3cf43e05ab821c0e80675a9846d",
  667. "shasum": ""
  668. },
  669. "require": {
  670. "behat/behat": "~3.0",
  671. "php": ">=5.3.0"
  672. },
  673. "type": "library",
  674. "extra": {
  675. "branch-alias": {
  676. "dev-master": "v1.0.x-dev"
  677. }
  678. },
  679. "autoload": {
  680. "psr-4": {
  681. "jarnaiz\\JUnitFormatter\\": "src/"
  682. }
  683. },
  684. "notification-url": "https://packagist.org/downloads/",
  685. "authors": [
  686. {
  687. "name": "Jesús Arnaiz",
  688. "email": "j.arnaiz@gmail.com"
  689. }
  690. ],
  691. "description": "Behat 3 JUnit xml formatter",
  692. "support": {
  693. "issues": "https://github.com/j-arnaiz/behat-junit-formatter/issues",
  694. "source": "https://github.com/j-arnaiz/behat-junit-formatter/tree/master"
  695. },
  696. "time": "2016-01-26T17:05:07+00:00"
  697. },
  698. {
  699. "name": "myclabs/deep-copy",
  700. "version": "1.11.0",
  701. "source": {
  702. "type": "git",
  703. "url": "https://github.com/myclabs/DeepCopy.git",
  704. "reference": "14daed4296fae74d9e3201d2c4925d1acb7aa614"
  705. },
  706. "dist": {
  707. "type": "zip",
  708. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/14daed4296fae74d9e3201d2c4925d1acb7aa614",
  709. "reference": "14daed4296fae74d9e3201d2c4925d1acb7aa614",
  710. "shasum": ""
  711. },
  712. "require": {
  713. "php": "^7.1 || ^8.0"
  714. },
  715. "conflict": {
  716. "doctrine/collections": "<1.6.8",
  717. "doctrine/common": "<2.13.3 || >=3,<3.2.2"
  718. },
  719. "require-dev": {
  720. "doctrine/collections": "^1.6.8",
  721. "doctrine/common": "^2.13.3 || ^3.2.2",
  722. "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
  723. },
  724. "type": "library",
  725. "autoload": {
  726. "files": [
  727. "src/DeepCopy/deep_copy.php"
  728. ],
  729. "psr-4": {
  730. "DeepCopy\\": "src/DeepCopy/"
  731. }
  732. },
  733. "notification-url": "https://packagist.org/downloads/",
  734. "license": [
  735. "MIT"
  736. ],
  737. "description": "Create deep copies (clones) of your objects",
  738. "keywords": [
  739. "clone",
  740. "copy",
  741. "duplicate",
  742. "object",
  743. "object graph"
  744. ],
  745. "support": {
  746. "issues": "https://github.com/myclabs/DeepCopy/issues",
  747. "source": "https://github.com/myclabs/DeepCopy/tree/1.11.0"
  748. },
  749. "funding": [
  750. {
  751. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  752. "type": "tidelift"
  753. }
  754. ],
  755. "time": "2022-03-03T13:19:32+00:00"
  756. },
  757. {
  758. "name": "nikic/php-parser",
  759. "version": "v4.15.2",
  760. "source": {
  761. "type": "git",
  762. "url": "https://github.com/nikic/PHP-Parser.git",
  763. "reference": "f59bbe44bf7d96f24f3e2b4ddc21cd52c1d2adbc"
  764. },
  765. "dist": {
  766. "type": "zip",
  767. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/f59bbe44bf7d96f24f3e2b4ddc21cd52c1d2adbc",
  768. "reference": "f59bbe44bf7d96f24f3e2b4ddc21cd52c1d2adbc",
  769. "shasum": ""
  770. },
  771. "require": {
  772. "ext-tokenizer": "*",
  773. "php": ">=7.0"
  774. },
  775. "require-dev": {
  776. "ircmaxell/php-yacc": "^0.0.7",
  777. "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0"
  778. },
  779. "bin": [
  780. "bin/php-parse"
  781. ],
  782. "type": "library",
  783. "extra": {
  784. "branch-alias": {
  785. "dev-master": "4.9-dev"
  786. }
  787. },
  788. "autoload": {
  789. "psr-4": {
  790. "PhpParser\\": "lib/PhpParser"
  791. }
  792. },
  793. "notification-url": "https://packagist.org/downloads/",
  794. "license": [
  795. "BSD-3-Clause"
  796. ],
  797. "authors": [
  798. {
  799. "name": "Nikita Popov"
  800. }
  801. ],
  802. "description": "A PHP parser written in PHP",
  803. "keywords": [
  804. "parser",
  805. "php"
  806. ],
  807. "support": {
  808. "issues": "https://github.com/nikic/PHP-Parser/issues",
  809. "source": "https://github.com/nikic/PHP-Parser/tree/v4.15.2"
  810. },
  811. "time": "2022-11-12T15:38:23+00:00"
  812. },
  813. {
  814. "name": "phar-io/manifest",
  815. "version": "2.0.3",
  816. "source": {
  817. "type": "git",
  818. "url": "https://github.com/phar-io/manifest.git",
  819. "reference": "97803eca37d319dfa7826cc2437fc020857acb53"
  820. },
  821. "dist": {
  822. "type": "zip",
  823. "url": "https://api.github.com/repos/phar-io/manifest/zipball/97803eca37d319dfa7826cc2437fc020857acb53",
  824. "reference": "97803eca37d319dfa7826cc2437fc020857acb53",
  825. "shasum": ""
  826. },
  827. "require": {
  828. "ext-dom": "*",
  829. "ext-phar": "*",
  830. "ext-xmlwriter": "*",
  831. "phar-io/version": "^3.0.1",
  832. "php": "^7.2 || ^8.0"
  833. },
  834. "type": "library",
  835. "extra": {
  836. "branch-alias": {
  837. "dev-master": "2.0.x-dev"
  838. }
  839. },
  840. "autoload": {
  841. "classmap": [
  842. "src/"
  843. ]
  844. },
  845. "notification-url": "https://packagist.org/downloads/",
  846. "license": [
  847. "BSD-3-Clause"
  848. ],
  849. "authors": [
  850. {
  851. "name": "Arne Blankerts",
  852. "email": "arne@blankerts.de",
  853. "role": "Developer"
  854. },
  855. {
  856. "name": "Sebastian Heuer",
  857. "email": "sebastian@phpeople.de",
  858. "role": "Developer"
  859. },
  860. {
  861. "name": "Sebastian Bergmann",
  862. "email": "sebastian@phpunit.de",
  863. "role": "Developer"
  864. }
  865. ],
  866. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  867. "support": {
  868. "issues": "https://github.com/phar-io/manifest/issues",
  869. "source": "https://github.com/phar-io/manifest/tree/2.0.3"
  870. },
  871. "time": "2021-07-20T11:28:43+00:00"
  872. },
  873. {
  874. "name": "phar-io/version",
  875. "version": "3.2.1",
  876. "source": {
  877. "type": "git",
  878. "url": "https://github.com/phar-io/version.git",
  879. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
  880. },
  881. "dist": {
  882. "type": "zip",
  883. "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  884. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  885. "shasum": ""
  886. },
  887. "require": {
  888. "php": "^7.2 || ^8.0"
  889. },
  890. "type": "library",
  891. "autoload": {
  892. "classmap": [
  893. "src/"
  894. ]
  895. },
  896. "notification-url": "https://packagist.org/downloads/",
  897. "license": [
  898. "BSD-3-Clause"
  899. ],
  900. "authors": [
  901. {
  902. "name": "Arne Blankerts",
  903. "email": "arne@blankerts.de",
  904. "role": "Developer"
  905. },
  906. {
  907. "name": "Sebastian Heuer",
  908. "email": "sebastian@phpeople.de",
  909. "role": "Developer"
  910. },
  911. {
  912. "name": "Sebastian Bergmann",
  913. "email": "sebastian@phpunit.de",
  914. "role": "Developer"
  915. }
  916. ],
  917. "description": "Library for handling version information and constraints",
  918. "support": {
  919. "issues": "https://github.com/phar-io/version/issues",
  920. "source": "https://github.com/phar-io/version/tree/3.2.1"
  921. },
  922. "time": "2022-02-21T01:04:05+00:00"
  923. },
  924. {
  925. "name": "phpunit/php-code-coverage",
  926. "version": "9.2.19",
  927. "source": {
  928. "type": "git",
  929. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  930. "reference": "c77b56b63e3d2031bd8997fcec43c1925ae46559"
  931. },
  932. "dist": {
  933. "type": "zip",
  934. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/c77b56b63e3d2031bd8997fcec43c1925ae46559",
  935. "reference": "c77b56b63e3d2031bd8997fcec43c1925ae46559",
  936. "shasum": ""
  937. },
  938. "require": {
  939. "ext-dom": "*",
  940. "ext-libxml": "*",
  941. "ext-xmlwriter": "*",
  942. "nikic/php-parser": "^4.14",
  943. "php": ">=7.3",
  944. "phpunit/php-file-iterator": "^3.0.3",
  945. "phpunit/php-text-template": "^2.0.2",
  946. "sebastian/code-unit-reverse-lookup": "^2.0.2",
  947. "sebastian/complexity": "^2.0",
  948. "sebastian/environment": "^5.1.2",
  949. "sebastian/lines-of-code": "^1.0.3",
  950. "sebastian/version": "^3.0.1",
  951. "theseer/tokenizer": "^1.2.0"
  952. },
  953. "require-dev": {
  954. "phpunit/phpunit": "^9.3"
  955. },
  956. "suggest": {
  957. "ext-pcov": "*",
  958. "ext-xdebug": "*"
  959. },
  960. "type": "library",
  961. "extra": {
  962. "branch-alias": {
  963. "dev-master": "9.2-dev"
  964. }
  965. },
  966. "autoload": {
  967. "classmap": [
  968. "src/"
  969. ]
  970. },
  971. "notification-url": "https://packagist.org/downloads/",
  972. "license": [
  973. "BSD-3-Clause"
  974. ],
  975. "authors": [
  976. {
  977. "name": "Sebastian Bergmann",
  978. "email": "sebastian@phpunit.de",
  979. "role": "lead"
  980. }
  981. ],
  982. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  983. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  984. "keywords": [
  985. "coverage",
  986. "testing",
  987. "xunit"
  988. ],
  989. "support": {
  990. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  991. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/9.2.19"
  992. },
  993. "funding": [
  994. {
  995. "url": "https://github.com/sebastianbergmann",
  996. "type": "github"
  997. }
  998. ],
  999. "time": "2022-11-18T07:47:47+00:00"
  1000. },
  1001. {
  1002. "name": "phpunit/php-file-iterator",
  1003. "version": "3.0.6",
  1004. "source": {
  1005. "type": "git",
  1006. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  1007. "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf"
  1008. },
  1009. "dist": {
  1010. "type": "zip",
  1011. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
  1012. "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
  1013. "shasum": ""
  1014. },
  1015. "require": {
  1016. "php": ">=7.3"
  1017. },
  1018. "require-dev": {
  1019. "phpunit/phpunit": "^9.3"
  1020. },
  1021. "type": "library",
  1022. "extra": {
  1023. "branch-alias": {
  1024. "dev-master": "3.0-dev"
  1025. }
  1026. },
  1027. "autoload": {
  1028. "classmap": [
  1029. "src/"
  1030. ]
  1031. },
  1032. "notification-url": "https://packagist.org/downloads/",
  1033. "license": [
  1034. "BSD-3-Clause"
  1035. ],
  1036. "authors": [
  1037. {
  1038. "name": "Sebastian Bergmann",
  1039. "email": "sebastian@phpunit.de",
  1040. "role": "lead"
  1041. }
  1042. ],
  1043. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  1044. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  1045. "keywords": [
  1046. "filesystem",
  1047. "iterator"
  1048. ],
  1049. "support": {
  1050. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  1051. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/3.0.6"
  1052. },
  1053. "funding": [
  1054. {
  1055. "url": "https://github.com/sebastianbergmann",
  1056. "type": "github"
  1057. }
  1058. ],
  1059. "time": "2021-12-02T12:48:52+00:00"
  1060. },
  1061. {
  1062. "name": "phpunit/php-invoker",
  1063. "version": "3.1.1",
  1064. "source": {
  1065. "type": "git",
  1066. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  1067. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67"
  1068. },
  1069. "dist": {
  1070. "type": "zip",
  1071. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  1072. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  1073. "shasum": ""
  1074. },
  1075. "require": {
  1076. "php": ">=7.3"
  1077. },
  1078. "require-dev": {
  1079. "ext-pcntl": "*",
  1080. "phpunit/phpunit": "^9.3"
  1081. },
  1082. "suggest": {
  1083. "ext-pcntl": "*"
  1084. },
  1085. "type": "library",
  1086. "extra": {
  1087. "branch-alias": {
  1088. "dev-master": "3.1-dev"
  1089. }
  1090. },
  1091. "autoload": {
  1092. "classmap": [
  1093. "src/"
  1094. ]
  1095. },
  1096. "notification-url": "https://packagist.org/downloads/",
  1097. "license": [
  1098. "BSD-3-Clause"
  1099. ],
  1100. "authors": [
  1101. {
  1102. "name": "Sebastian Bergmann",
  1103. "email": "sebastian@phpunit.de",
  1104. "role": "lead"
  1105. }
  1106. ],
  1107. "description": "Invoke callables with a timeout",
  1108. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  1109. "keywords": [
  1110. "process"
  1111. ],
  1112. "support": {
  1113. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  1114. "source": "https://github.com/sebastianbergmann/php-invoker/tree/3.1.1"
  1115. },
  1116. "funding": [
  1117. {
  1118. "url": "https://github.com/sebastianbergmann",
  1119. "type": "github"
  1120. }
  1121. ],
  1122. "time": "2020-09-28T05:58:55+00:00"
  1123. },
  1124. {
  1125. "name": "phpunit/php-text-template",
  1126. "version": "2.0.4",
  1127. "source": {
  1128. "type": "git",
  1129. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  1130. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28"
  1131. },
  1132. "dist": {
  1133. "type": "zip",
  1134. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  1135. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  1136. "shasum": ""
  1137. },
  1138. "require": {
  1139. "php": ">=7.3"
  1140. },
  1141. "require-dev": {
  1142. "phpunit/phpunit": "^9.3"
  1143. },
  1144. "type": "library",
  1145. "extra": {
  1146. "branch-alias": {
  1147. "dev-master": "2.0-dev"
  1148. }
  1149. },
  1150. "autoload": {
  1151. "classmap": [
  1152. "src/"
  1153. ]
  1154. },
  1155. "notification-url": "https://packagist.org/downloads/",
  1156. "license": [
  1157. "BSD-3-Clause"
  1158. ],
  1159. "authors": [
  1160. {
  1161. "name": "Sebastian Bergmann",
  1162. "email": "sebastian@phpunit.de",
  1163. "role": "lead"
  1164. }
  1165. ],
  1166. "description": "Simple template engine.",
  1167. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  1168. "keywords": [
  1169. "template"
  1170. ],
  1171. "support": {
  1172. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  1173. "source": "https://github.com/sebastianbergmann/php-text-template/tree/2.0.4"
  1174. },
  1175. "funding": [
  1176. {
  1177. "url": "https://github.com/sebastianbergmann",
  1178. "type": "github"
  1179. }
  1180. ],
  1181. "time": "2020-10-26T05:33:50+00:00"
  1182. },
  1183. {
  1184. "name": "phpunit/php-timer",
  1185. "version": "5.0.3",
  1186. "source": {
  1187. "type": "git",
  1188. "url": "https://github.com/sebastianbergmann/php-timer.git",
  1189. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2"
  1190. },
  1191. "dist": {
  1192. "type": "zip",
  1193. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  1194. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  1195. "shasum": ""
  1196. },
  1197. "require": {
  1198. "php": ">=7.3"
  1199. },
  1200. "require-dev": {
  1201. "phpunit/phpunit": "^9.3"
  1202. },
  1203. "type": "library",
  1204. "extra": {
  1205. "branch-alias": {
  1206. "dev-master": "5.0-dev"
  1207. }
  1208. },
  1209. "autoload": {
  1210. "classmap": [
  1211. "src/"
  1212. ]
  1213. },
  1214. "notification-url": "https://packagist.org/downloads/",
  1215. "license": [
  1216. "BSD-3-Clause"
  1217. ],
  1218. "authors": [
  1219. {
  1220. "name": "Sebastian Bergmann",
  1221. "email": "sebastian@phpunit.de",
  1222. "role": "lead"
  1223. }
  1224. ],
  1225. "description": "Utility class for timing",
  1226. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  1227. "keywords": [
  1228. "timer"
  1229. ],
  1230. "support": {
  1231. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  1232. "source": "https://github.com/sebastianbergmann/php-timer/tree/5.0.3"
  1233. },
  1234. "funding": [
  1235. {
  1236. "url": "https://github.com/sebastianbergmann",
  1237. "type": "github"
  1238. }
  1239. ],
  1240. "time": "2020-10-26T13:16:10+00:00"
  1241. },
  1242. {
  1243. "name": "phpunit/phpunit",
  1244. "version": "9.5.27",
  1245. "source": {
  1246. "type": "git",
  1247. "url": "https://github.com/sebastianbergmann/phpunit.git",
  1248. "reference": "a2bc7ffdca99f92d959b3f2270529334030bba38"
  1249. },
  1250. "dist": {
  1251. "type": "zip",
  1252. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/a2bc7ffdca99f92d959b3f2270529334030bba38",
  1253. "reference": "a2bc7ffdca99f92d959b3f2270529334030bba38",
  1254. "shasum": ""
  1255. },
  1256. "require": {
  1257. "doctrine/instantiator": "^1.3.1",
  1258. "ext-dom": "*",
  1259. "ext-json": "*",
  1260. "ext-libxml": "*",
  1261. "ext-mbstring": "*",
  1262. "ext-xml": "*",
  1263. "ext-xmlwriter": "*",
  1264. "myclabs/deep-copy": "^1.10.1",
  1265. "phar-io/manifest": "^2.0.3",
  1266. "phar-io/version": "^3.0.2",
  1267. "php": ">=7.3",
  1268. "phpunit/php-code-coverage": "^9.2.13",
  1269. "phpunit/php-file-iterator": "^3.0.5",
  1270. "phpunit/php-invoker": "^3.1.1",
  1271. "phpunit/php-text-template": "^2.0.3",
  1272. "phpunit/php-timer": "^5.0.2",
  1273. "sebastian/cli-parser": "^1.0.1",
  1274. "sebastian/code-unit": "^1.0.6",
  1275. "sebastian/comparator": "^4.0.8",
  1276. "sebastian/diff": "^4.0.3",
  1277. "sebastian/environment": "^5.1.3",
  1278. "sebastian/exporter": "^4.0.5",
  1279. "sebastian/global-state": "^5.0.1",
  1280. "sebastian/object-enumerator": "^4.0.3",
  1281. "sebastian/resource-operations": "^3.0.3",
  1282. "sebastian/type": "^3.2",
  1283. "sebastian/version": "^3.0.2"
  1284. },
  1285. "suggest": {
  1286. "ext-soap": "*",
  1287. "ext-xdebug": "*"
  1288. },
  1289. "bin": [
  1290. "phpunit"
  1291. ],
  1292. "type": "library",
  1293. "extra": {
  1294. "branch-alias": {
  1295. "dev-master": "9.5-dev"
  1296. }
  1297. },
  1298. "autoload": {
  1299. "files": [
  1300. "src/Framework/Assert/Functions.php"
  1301. ],
  1302. "classmap": [
  1303. "src/"
  1304. ]
  1305. },
  1306. "notification-url": "https://packagist.org/downloads/",
  1307. "license": [
  1308. "BSD-3-Clause"
  1309. ],
  1310. "authors": [
  1311. {
  1312. "name": "Sebastian Bergmann",
  1313. "email": "sebastian@phpunit.de",
  1314. "role": "lead"
  1315. }
  1316. ],
  1317. "description": "The PHP Unit Testing framework.",
  1318. "homepage": "https://phpunit.de/",
  1319. "keywords": [
  1320. "phpunit",
  1321. "testing",
  1322. "xunit"
  1323. ],
  1324. "support": {
  1325. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  1326. "source": "https://github.com/sebastianbergmann/phpunit/tree/9.5.27"
  1327. },
  1328. "funding": [
  1329. {
  1330. "url": "https://phpunit.de/sponsors.html",
  1331. "type": "custom"
  1332. },
  1333. {
  1334. "url": "https://github.com/sebastianbergmann",
  1335. "type": "github"
  1336. },
  1337. {
  1338. "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit",
  1339. "type": "tidelift"
  1340. }
  1341. ],
  1342. "time": "2022-12-09T07:31:23+00:00"
  1343. },
  1344. {
  1345. "name": "psr/container",
  1346. "version": "1.1.2",
  1347. "source": {
  1348. "type": "git",
  1349. "url": "https://github.com/php-fig/container.git",
  1350. "reference": "513e0666f7216c7459170d56df27dfcefe1689ea"
  1351. },
  1352. "dist": {
  1353. "type": "zip",
  1354. "url": "https://api.github.com/repos/php-fig/container/zipball/513e0666f7216c7459170d56df27dfcefe1689ea",
  1355. "reference": "513e0666f7216c7459170d56df27dfcefe1689ea",
  1356. "shasum": ""
  1357. },
  1358. "require": {
  1359. "php": ">=7.4.0"
  1360. },
  1361. "type": "library",
  1362. "autoload": {
  1363. "psr-4": {
  1364. "Psr\\Container\\": "src/"
  1365. }
  1366. },
  1367. "notification-url": "https://packagist.org/downloads/",
  1368. "license": [
  1369. "MIT"
  1370. ],
  1371. "authors": [
  1372. {
  1373. "name": "PHP-FIG",
  1374. "homepage": "https://www.php-fig.org/"
  1375. }
  1376. ],
  1377. "description": "Common Container Interface (PHP FIG PSR-11)",
  1378. "homepage": "https://github.com/php-fig/container",
  1379. "keywords": [
  1380. "PSR-11",
  1381. "container",
  1382. "container-interface",
  1383. "container-interop",
  1384. "psr"
  1385. ],
  1386. "support": {
  1387. "issues": "https://github.com/php-fig/container/issues",
  1388. "source": "https://github.com/php-fig/container/tree/1.1.2"
  1389. },
  1390. "time": "2021-11-05T16:50:12+00:00"
  1391. },
  1392. {
  1393. "name": "psr/event-dispatcher",
  1394. "version": "1.0.0",
  1395. "source": {
  1396. "type": "git",
  1397. "url": "https://github.com/php-fig/event-dispatcher.git",
  1398. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  1399. },
  1400. "dist": {
  1401. "type": "zip",
  1402. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  1403. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  1404. "shasum": ""
  1405. },
  1406. "require": {
  1407. "php": ">=7.2.0"
  1408. },
  1409. "type": "library",
  1410. "extra": {
  1411. "branch-alias": {
  1412. "dev-master": "1.0.x-dev"
  1413. }
  1414. },
  1415. "autoload": {
  1416. "psr-4": {
  1417. "Psr\\EventDispatcher\\": "src/"
  1418. }
  1419. },
  1420. "notification-url": "https://packagist.org/downloads/",
  1421. "license": [
  1422. "MIT"
  1423. ],
  1424. "authors": [
  1425. {
  1426. "name": "PHP-FIG",
  1427. "homepage": "http://www.php-fig.org/"
  1428. }
  1429. ],
  1430. "description": "Standard interfaces for event handling.",
  1431. "keywords": [
  1432. "events",
  1433. "psr",
  1434. "psr-14"
  1435. ],
  1436. "support": {
  1437. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  1438. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  1439. },
  1440. "time": "2019-01-08T18:20:26+00:00"
  1441. },
  1442. {
  1443. "name": "psr/http-client",
  1444. "version": "1.0.1",
  1445. "source": {
  1446. "type": "git",
  1447. "url": "https://github.com/php-fig/http-client.git",
  1448. "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621"
  1449. },
  1450. "dist": {
  1451. "type": "zip",
  1452. "url": "https://api.github.com/repos/php-fig/http-client/zipball/2dfb5f6c5eff0e91e20e913f8c5452ed95b86621",
  1453. "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621",
  1454. "shasum": ""
  1455. },
  1456. "require": {
  1457. "php": "^7.0 || ^8.0",
  1458. "psr/http-message": "^1.0"
  1459. },
  1460. "type": "library",
  1461. "extra": {
  1462. "branch-alias": {
  1463. "dev-master": "1.0.x-dev"
  1464. }
  1465. },
  1466. "autoload": {
  1467. "psr-4": {
  1468. "Psr\\Http\\Client\\": "src/"
  1469. }
  1470. },
  1471. "notification-url": "https://packagist.org/downloads/",
  1472. "license": [
  1473. "MIT"
  1474. ],
  1475. "authors": [
  1476. {
  1477. "name": "PHP-FIG",
  1478. "homepage": "http://www.php-fig.org/"
  1479. }
  1480. ],
  1481. "description": "Common interface for HTTP clients",
  1482. "homepage": "https://github.com/php-fig/http-client",
  1483. "keywords": [
  1484. "http",
  1485. "http-client",
  1486. "psr",
  1487. "psr-18"
  1488. ],
  1489. "support": {
  1490. "source": "https://github.com/php-fig/http-client/tree/master"
  1491. },
  1492. "time": "2020-06-29T06:28:15+00:00"
  1493. },
  1494. {
  1495. "name": "psr/http-factory",
  1496. "version": "1.0.1",
  1497. "source": {
  1498. "type": "git",
  1499. "url": "https://github.com/php-fig/http-factory.git",
  1500. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be"
  1501. },
  1502. "dist": {
  1503. "type": "zip",
  1504. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  1505. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  1506. "shasum": ""
  1507. },
  1508. "require": {
  1509. "php": ">=7.0.0",
  1510. "psr/http-message": "^1.0"
  1511. },
  1512. "type": "library",
  1513. "extra": {
  1514. "branch-alias": {
  1515. "dev-master": "1.0.x-dev"
  1516. }
  1517. },
  1518. "autoload": {
  1519. "psr-4": {
  1520. "Psr\\Http\\Message\\": "src/"
  1521. }
  1522. },
  1523. "notification-url": "https://packagist.org/downloads/",
  1524. "license": [
  1525. "MIT"
  1526. ],
  1527. "authors": [
  1528. {
  1529. "name": "PHP-FIG",
  1530. "homepage": "http://www.php-fig.org/"
  1531. }
  1532. ],
  1533. "description": "Common interfaces for PSR-7 HTTP message factories",
  1534. "keywords": [
  1535. "factory",
  1536. "http",
  1537. "message",
  1538. "psr",
  1539. "psr-17",
  1540. "psr-7",
  1541. "request",
  1542. "response"
  1543. ],
  1544. "support": {
  1545. "source": "https://github.com/php-fig/http-factory/tree/master"
  1546. },
  1547. "time": "2019-04-30T12:38:16+00:00"
  1548. },
  1549. {
  1550. "name": "psr/http-message",
  1551. "version": "1.0.1",
  1552. "source": {
  1553. "type": "git",
  1554. "url": "https://github.com/php-fig/http-message.git",
  1555. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  1556. },
  1557. "dist": {
  1558. "type": "zip",
  1559. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  1560. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  1561. "shasum": ""
  1562. },
  1563. "require": {
  1564. "php": ">=5.3.0"
  1565. },
  1566. "type": "library",
  1567. "extra": {
  1568. "branch-alias": {
  1569. "dev-master": "1.0.x-dev"
  1570. }
  1571. },
  1572. "autoload": {
  1573. "psr-4": {
  1574. "Psr\\Http\\Message\\": "src/"
  1575. }
  1576. },
  1577. "notification-url": "https://packagist.org/downloads/",
  1578. "license": [
  1579. "MIT"
  1580. ],
  1581. "authors": [
  1582. {
  1583. "name": "PHP-FIG",
  1584. "homepage": "http://www.php-fig.org/"
  1585. }
  1586. ],
  1587. "description": "Common interface for HTTP messages",
  1588. "homepage": "https://github.com/php-fig/http-message",
  1589. "keywords": [
  1590. "http",
  1591. "http-message",
  1592. "psr",
  1593. "psr-7",
  1594. "request",
  1595. "response"
  1596. ],
  1597. "support": {
  1598. "source": "https://github.com/php-fig/http-message/tree/master"
  1599. },
  1600. "time": "2016-08-06T14:39:51+00:00"
  1601. },
  1602. {
  1603. "name": "psr/log",
  1604. "version": "1.1.4",
  1605. "source": {
  1606. "type": "git",
  1607. "url": "https://github.com/php-fig/log.git",
  1608. "reference": "d49695b909c3b7628b6289db5479a1c204601f11"
  1609. },
  1610. "dist": {
  1611. "type": "zip",
  1612. "url": "https://api.github.com/repos/php-fig/log/zipball/d49695b909c3b7628b6289db5479a1c204601f11",
  1613. "reference": "d49695b909c3b7628b6289db5479a1c204601f11",
  1614. "shasum": ""
  1615. },
  1616. "require": {
  1617. "php": ">=5.3.0"
  1618. },
  1619. "type": "library",
  1620. "extra": {
  1621. "branch-alias": {
  1622. "dev-master": "1.1.x-dev"
  1623. }
  1624. },
  1625. "autoload": {
  1626. "psr-4": {
  1627. "Psr\\Log\\": "Psr/Log/"
  1628. }
  1629. },
  1630. "notification-url": "https://packagist.org/downloads/",
  1631. "license": [
  1632. "MIT"
  1633. ],
  1634. "authors": [
  1635. {
  1636. "name": "PHP-FIG",
  1637. "homepage": "https://www.php-fig.org/"
  1638. }
  1639. ],
  1640. "description": "Common interface for logging libraries",
  1641. "homepage": "https://github.com/php-fig/log",
  1642. "keywords": [
  1643. "log",
  1644. "psr",
  1645. "psr-3"
  1646. ],
  1647. "support": {
  1648. "source": "https://github.com/php-fig/log/tree/1.1.4"
  1649. },
  1650. "time": "2021-05-03T11:20:27+00:00"
  1651. },
  1652. {
  1653. "name": "ralouphie/getallheaders",
  1654. "version": "3.0.3",
  1655. "source": {
  1656. "type": "git",
  1657. "url": "https://github.com/ralouphie/getallheaders.git",
  1658. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  1659. },
  1660. "dist": {
  1661. "type": "zip",
  1662. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  1663. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  1664. "shasum": ""
  1665. },
  1666. "require": {
  1667. "php": ">=5.6"
  1668. },
  1669. "require-dev": {
  1670. "php-coveralls/php-coveralls": "^2.1",
  1671. "phpunit/phpunit": "^5 || ^6.5"
  1672. },
  1673. "type": "library",
  1674. "autoload": {
  1675. "files": [
  1676. "src/getallheaders.php"
  1677. ]
  1678. },
  1679. "notification-url": "https://packagist.org/downloads/",
  1680. "license": [
  1681. "MIT"
  1682. ],
  1683. "authors": [
  1684. {
  1685. "name": "Ralph Khattar",
  1686. "email": "ralph.khattar@gmail.com"
  1687. }
  1688. ],
  1689. "description": "A polyfill for getallheaders.",
  1690. "support": {
  1691. "issues": "https://github.com/ralouphie/getallheaders/issues",
  1692. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  1693. },
  1694. "time": "2019-03-08T08:55:37+00:00"
  1695. },
  1696. {
  1697. "name": "sabre/dav",
  1698. "version": "4.4.0",
  1699. "source": {
  1700. "type": "git",
  1701. "url": "https://github.com/sabre-io/dav.git",
  1702. "reference": "b65362abc926520eda2c57e219f022a6c288069d"
  1703. },
  1704. "dist": {
  1705. "type": "zip",
  1706. "url": "https://api.github.com/repos/sabre-io/dav/zipball/b65362abc926520eda2c57e219f022a6c288069d",
  1707. "reference": "b65362abc926520eda2c57e219f022a6c288069d",
  1708. "shasum": ""
  1709. },
  1710. "require": {
  1711. "ext-ctype": "*",
  1712. "ext-date": "*",
  1713. "ext-dom": "*",
  1714. "ext-iconv": "*",
  1715. "ext-json": "*",
  1716. "ext-mbstring": "*",
  1717. "ext-pcre": "*",
  1718. "ext-simplexml": "*",
  1719. "ext-spl": "*",
  1720. "lib-libxml": ">=2.7.0",
  1721. "php": "^7.1.0 || ^8.0",
  1722. "psr/log": "^1.0 || ^2.0 || ^3.0",
  1723. "sabre/event": "^5.0",
  1724. "sabre/http": "^5.0.5",
  1725. "sabre/uri": "^2.0",
  1726. "sabre/vobject": "^4.2.1",
  1727. "sabre/xml": "^2.0.1"
  1728. },
  1729. "require-dev": {
  1730. "evert/phpdoc-md": "~0.1.0",
  1731. "friendsofphp/php-cs-fixer": "^2.17.1",
  1732. "monolog/monolog": "^1.18",
  1733. "phpstan/phpstan": "^0.12",
  1734. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.0"
  1735. },
  1736. "suggest": {
  1737. "ext-curl": "*",
  1738. "ext-imap": "*",
  1739. "ext-pdo": "*"
  1740. },
  1741. "bin": [
  1742. "bin/sabredav",
  1743. "bin/naturalselection"
  1744. ],
  1745. "type": "library",
  1746. "autoload": {
  1747. "psr-4": {
  1748. "Sabre\\DAV\\": "lib/DAV/",
  1749. "Sabre\\CalDAV\\": "lib/CalDAV/",
  1750. "Sabre\\DAVACL\\": "lib/DAVACL/",
  1751. "Sabre\\CardDAV\\": "lib/CardDAV/"
  1752. }
  1753. },
  1754. "notification-url": "https://packagist.org/downloads/",
  1755. "license": [
  1756. "BSD-3-Clause"
  1757. ],
  1758. "authors": [
  1759. {
  1760. "name": "Evert Pot",
  1761. "email": "me@evertpot.com",
  1762. "homepage": "http://evertpot.com/",
  1763. "role": "Developer"
  1764. }
  1765. ],
  1766. "description": "WebDAV Framework for PHP",
  1767. "homepage": "http://sabre.io/",
  1768. "keywords": [
  1769. "CalDAV",
  1770. "CardDAV",
  1771. "WebDAV",
  1772. "framework",
  1773. "iCalendar"
  1774. ],
  1775. "support": {
  1776. "forum": "https://groups.google.com/group/sabredav-discuss",
  1777. "issues": "https://github.com/sabre-io/dav/issues",
  1778. "source": "https://github.com/fruux/sabre-dav"
  1779. },
  1780. "time": "2022-06-27T09:07:55+00:00"
  1781. },
  1782. {
  1783. "name": "sabre/event",
  1784. "version": "5.1.4",
  1785. "source": {
  1786. "type": "git",
  1787. "url": "https://github.com/sabre-io/event.git",
  1788. "reference": "d7da22897125d34d7eddf7977758191c06a74497"
  1789. },
  1790. "dist": {
  1791. "type": "zip",
  1792. "url": "https://api.github.com/repos/sabre-io/event/zipball/d7da22897125d34d7eddf7977758191c06a74497",
  1793. "reference": "d7da22897125d34d7eddf7977758191c06a74497",
  1794. "shasum": ""
  1795. },
  1796. "require": {
  1797. "php": "^7.1 || ^8.0"
  1798. },
  1799. "require-dev": {
  1800. "friendsofphp/php-cs-fixer": "~2.17.1",
  1801. "phpstan/phpstan": "^0.12",
  1802. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.0"
  1803. },
  1804. "type": "library",
  1805. "autoload": {
  1806. "files": [
  1807. "lib/coroutine.php",
  1808. "lib/Loop/functions.php",
  1809. "lib/Promise/functions.php"
  1810. ],
  1811. "psr-4": {
  1812. "Sabre\\Event\\": "lib/"
  1813. }
  1814. },
  1815. "notification-url": "https://packagist.org/downloads/",
  1816. "license": [
  1817. "BSD-3-Clause"
  1818. ],
  1819. "authors": [
  1820. {
  1821. "name": "Evert Pot",
  1822. "email": "me@evertpot.com",
  1823. "homepage": "http://evertpot.com/",
  1824. "role": "Developer"
  1825. }
  1826. ],
  1827. "description": "sabre/event is a library for lightweight event-based programming",
  1828. "homepage": "http://sabre.io/event/",
  1829. "keywords": [
  1830. "EventEmitter",
  1831. "async",
  1832. "coroutine",
  1833. "eventloop",
  1834. "events",
  1835. "hooks",
  1836. "plugin",
  1837. "promise",
  1838. "reactor",
  1839. "signal"
  1840. ],
  1841. "support": {
  1842. "forum": "https://groups.google.com/group/sabredav-discuss",
  1843. "issues": "https://github.com/sabre-io/event/issues",
  1844. "source": "https://github.com/fruux/sabre-event"
  1845. },
  1846. "time": "2021-11-04T06:51:17+00:00"
  1847. },
  1848. {
  1849. "name": "sabre/http",
  1850. "version": "5.1.6",
  1851. "source": {
  1852. "type": "git",
  1853. "url": "https://github.com/sabre-io/http.git",
  1854. "reference": "9976ac34ced206bd6579b7b37b401de9fac98dae"
  1855. },
  1856. "dist": {
  1857. "type": "zip",
  1858. "url": "https://api.github.com/repos/sabre-io/http/zipball/9976ac34ced206bd6579b7b37b401de9fac98dae",
  1859. "reference": "9976ac34ced206bd6579b7b37b401de9fac98dae",
  1860. "shasum": ""
  1861. },
  1862. "require": {
  1863. "ext-ctype": "*",
  1864. "ext-curl": "*",
  1865. "ext-mbstring": "*",
  1866. "php": "^7.1 || ^8.0",
  1867. "sabre/event": ">=4.0 <6.0",
  1868. "sabre/uri": "^2.0"
  1869. },
  1870. "require-dev": {
  1871. "friendsofphp/php-cs-fixer": "~2.17.1",
  1872. "phpstan/phpstan": "^0.12",
  1873. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.0"
  1874. },
  1875. "suggest": {
  1876. "ext-curl": " to make http requests with the Client class"
  1877. },
  1878. "type": "library",
  1879. "autoload": {
  1880. "files": [
  1881. "lib/functions.php"
  1882. ],
  1883. "psr-4": {
  1884. "Sabre\\HTTP\\": "lib/"
  1885. }
  1886. },
  1887. "notification-url": "https://packagist.org/downloads/",
  1888. "license": [
  1889. "BSD-3-Clause"
  1890. ],
  1891. "authors": [
  1892. {
  1893. "name": "Evert Pot",
  1894. "email": "me@evertpot.com",
  1895. "homepage": "http://evertpot.com/",
  1896. "role": "Developer"
  1897. }
  1898. ],
  1899. "description": "The sabre/http library provides utilities for dealing with http requests and responses. ",
  1900. "homepage": "https://github.com/fruux/sabre-http",
  1901. "keywords": [
  1902. "http"
  1903. ],
  1904. "support": {
  1905. "forum": "https://groups.google.com/group/sabredav-discuss",
  1906. "issues": "https://github.com/sabre-io/http/issues",
  1907. "source": "https://github.com/fruux/sabre-http"
  1908. },
  1909. "time": "2022-07-15T14:51:14+00:00"
  1910. },
  1911. {
  1912. "name": "sabre/uri",
  1913. "version": "2.3.0",
  1914. "source": {
  1915. "type": "git",
  1916. "url": "https://github.com/sabre-io/uri.git",
  1917. "reference": "4e84208b86d351e8a439613f318feda7a0152b48"
  1918. },
  1919. "dist": {
  1920. "type": "zip",
  1921. "url": "https://api.github.com/repos/sabre-io/uri/zipball/4e84208b86d351e8a439613f318feda7a0152b48",
  1922. "reference": "4e84208b86d351e8a439613f318feda7a0152b48",
  1923. "shasum": ""
  1924. },
  1925. "require": {
  1926. "php": "^7.4 || ^8.0"
  1927. },
  1928. "require-dev": {
  1929. "friendsofphp/php-cs-fixer": "^3.9",
  1930. "phpstan/phpstan": "^1.8",
  1931. "phpunit/phpunit": "^9.0"
  1932. },
  1933. "type": "library",
  1934. "autoload": {
  1935. "files": [
  1936. "lib/functions.php"
  1937. ],
  1938. "psr-4": {
  1939. "Sabre\\Uri\\": "lib/"
  1940. }
  1941. },
  1942. "notification-url": "https://packagist.org/downloads/",
  1943. "license": [
  1944. "BSD-3-Clause"
  1945. ],
  1946. "authors": [
  1947. {
  1948. "name": "Evert Pot",
  1949. "email": "me@evertpot.com",
  1950. "homepage": "http://evertpot.com/",
  1951. "role": "Developer"
  1952. }
  1953. ],
  1954. "description": "Functions for making sense out of URIs.",
  1955. "homepage": "http://sabre.io/uri/",
  1956. "keywords": [
  1957. "rfc3986",
  1958. "uri",
  1959. "url"
  1960. ],
  1961. "support": {
  1962. "forum": "https://groups.google.com/group/sabredav-discuss",
  1963. "issues": "https://github.com/sabre-io/uri/issues",
  1964. "source": "https://github.com/fruux/sabre-uri"
  1965. },
  1966. "time": "2022-08-17T09:51:38+00:00"
  1967. },
  1968. {
  1969. "name": "sabre/vobject",
  1970. "version": "4.5.0",
  1971. "source": {
  1972. "type": "git",
  1973. "url": "https://github.com/sabre-io/vobject.git",
  1974. "reference": "d1fdc0c3587a314bdd3aac4a1e1dcacadd91858e"
  1975. },
  1976. "dist": {
  1977. "type": "zip",
  1978. "url": "https://api.github.com/repos/sabre-io/vobject/zipball/d1fdc0c3587a314bdd3aac4a1e1dcacadd91858e",
  1979. "reference": "d1fdc0c3587a314bdd3aac4a1e1dcacadd91858e",
  1980. "shasum": ""
  1981. },
  1982. "require": {
  1983. "ext-mbstring": "*",
  1984. "php": "^7.1 || ^8.0",
  1985. "sabre/xml": "^2.1"
  1986. },
  1987. "require-dev": {
  1988. "friendsofphp/php-cs-fixer": "~2.17.1",
  1989. "phpstan/phpstan": "^0.12",
  1990. "phpunit/php-invoker": "^2.0 || ^3.1",
  1991. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.0"
  1992. },
  1993. "suggest": {
  1994. "hoa/bench": "If you would like to run the benchmark scripts"
  1995. },
  1996. "bin": [
  1997. "bin/vobject",
  1998. "bin/generate_vcards"
  1999. ],
  2000. "type": "library",
  2001. "extra": {
  2002. "branch-alias": {
  2003. "dev-master": "4.0.x-dev"
  2004. }
  2005. },
  2006. "autoload": {
  2007. "psr-4": {
  2008. "Sabre\\VObject\\": "lib/"
  2009. }
  2010. },
  2011. "notification-url": "https://packagist.org/downloads/",
  2012. "license": [
  2013. "BSD-3-Clause"
  2014. ],
  2015. "authors": [
  2016. {
  2017. "name": "Evert Pot",
  2018. "email": "me@evertpot.com",
  2019. "homepage": "http://evertpot.com/",
  2020. "role": "Developer"
  2021. },
  2022. {
  2023. "name": "Dominik Tobschall",
  2024. "email": "dominik@fruux.com",
  2025. "homepage": "http://tobschall.de/",
  2026. "role": "Developer"
  2027. },
  2028. {
  2029. "name": "Ivan Enderlin",
  2030. "email": "ivan.enderlin@hoa-project.net",
  2031. "homepage": "http://mnt.io/",
  2032. "role": "Developer"
  2033. }
  2034. ],
  2035. "description": "The VObject library for PHP allows you to easily parse and manipulate iCalendar and vCard objects",
  2036. "homepage": "http://sabre.io/vobject/",
  2037. "keywords": [
  2038. "availability",
  2039. "freebusy",
  2040. "iCalendar",
  2041. "ical",
  2042. "ics",
  2043. "jCal",
  2044. "jCard",
  2045. "recurrence",
  2046. "rfc2425",
  2047. "rfc2426",
  2048. "rfc2739",
  2049. "rfc4770",
  2050. "rfc5545",
  2051. "rfc5546",
  2052. "rfc6321",
  2053. "rfc6350",
  2054. "rfc6351",
  2055. "rfc6474",
  2056. "rfc6638",
  2057. "rfc6715",
  2058. "rfc6868",
  2059. "vCalendar",
  2060. "vCard",
  2061. "vcf",
  2062. "xCal",
  2063. "xCard"
  2064. ],
  2065. "support": {
  2066. "forum": "https://groups.google.com/group/sabredav-discuss",
  2067. "issues": "https://github.com/sabre-io/vobject/issues",
  2068. "source": "https://github.com/fruux/sabre-vobject"
  2069. },
  2070. "time": "2022-08-17T16:39:31+00:00"
  2071. },
  2072. {
  2073. "name": "sabre/xml",
  2074. "version": "2.2.5",
  2075. "source": {
  2076. "type": "git",
  2077. "url": "https://github.com/sabre-io/xml.git",
  2078. "reference": "a6af111850e7536d200d9637c34885cd3c77a86c"
  2079. },
  2080. "dist": {
  2081. "type": "zip",
  2082. "url": "https://api.github.com/repos/sabre-io/xml/zipball/a6af111850e7536d200d9637c34885cd3c77a86c",
  2083. "reference": "a6af111850e7536d200d9637c34885cd3c77a86c",
  2084. "shasum": ""
  2085. },
  2086. "require": {
  2087. "ext-dom": "*",
  2088. "ext-xmlreader": "*",
  2089. "ext-xmlwriter": "*",
  2090. "lib-libxml": ">=2.6.20",
  2091. "php": "^7.1 || ^8.0",
  2092. "sabre/uri": ">=1.0,<3.0.0"
  2093. },
  2094. "require-dev": {
  2095. "friendsofphp/php-cs-fixer": "~2.17.1",
  2096. "phpstan/phpstan": "^0.12",
  2097. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.0"
  2098. },
  2099. "type": "library",
  2100. "autoload": {
  2101. "files": [
  2102. "lib/Deserializer/functions.php",
  2103. "lib/Serializer/functions.php"
  2104. ],
  2105. "psr-4": {
  2106. "Sabre\\Xml\\": "lib/"
  2107. }
  2108. },
  2109. "notification-url": "https://packagist.org/downloads/",
  2110. "license": [
  2111. "BSD-3-Clause"
  2112. ],
  2113. "authors": [
  2114. {
  2115. "name": "Evert Pot",
  2116. "email": "me@evertpot.com",
  2117. "homepage": "http://evertpot.com/",
  2118. "role": "Developer"
  2119. },
  2120. {
  2121. "name": "Markus Staab",
  2122. "email": "markus.staab@redaxo.de",
  2123. "role": "Developer"
  2124. }
  2125. ],
  2126. "description": "sabre/xml is an XML library that you may not hate.",
  2127. "homepage": "https://sabre.io/xml/",
  2128. "keywords": [
  2129. "XMLReader",
  2130. "XMLWriter",
  2131. "dom",
  2132. "xml"
  2133. ],
  2134. "support": {
  2135. "forum": "https://groups.google.com/group/sabredav-discuss",
  2136. "issues": "https://github.com/sabre-io/xml/issues",
  2137. "source": "https://github.com/fruux/sabre-xml"
  2138. },
  2139. "time": "2021-11-04T06:37:27+00:00"
  2140. },
  2141. {
  2142. "name": "sebastian/cli-parser",
  2143. "version": "1.0.1",
  2144. "source": {
  2145. "type": "git",
  2146. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  2147. "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2"
  2148. },
  2149. "dist": {
  2150. "type": "zip",
  2151. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/442e7c7e687e42adc03470c7b668bc4b2402c0b2",
  2152. "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2",
  2153. "shasum": ""
  2154. },
  2155. "require": {
  2156. "php": ">=7.3"
  2157. },
  2158. "require-dev": {
  2159. "phpunit/phpunit": "^9.3"
  2160. },
  2161. "type": "library",
  2162. "extra": {
  2163. "branch-alias": {
  2164. "dev-master": "1.0-dev"
  2165. }
  2166. },
  2167. "autoload": {
  2168. "classmap": [
  2169. "src/"
  2170. ]
  2171. },
  2172. "notification-url": "https://packagist.org/downloads/",
  2173. "license": [
  2174. "BSD-3-Clause"
  2175. ],
  2176. "authors": [
  2177. {
  2178. "name": "Sebastian Bergmann",
  2179. "email": "sebastian@phpunit.de",
  2180. "role": "lead"
  2181. }
  2182. ],
  2183. "description": "Library for parsing CLI options",
  2184. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  2185. "support": {
  2186. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  2187. "source": "https://github.com/sebastianbergmann/cli-parser/tree/1.0.1"
  2188. },
  2189. "funding": [
  2190. {
  2191. "url": "https://github.com/sebastianbergmann",
  2192. "type": "github"
  2193. }
  2194. ],
  2195. "time": "2020-09-28T06:08:49+00:00"
  2196. },
  2197. {
  2198. "name": "sebastian/code-unit",
  2199. "version": "1.0.8",
  2200. "source": {
  2201. "type": "git",
  2202. "url": "https://github.com/sebastianbergmann/code-unit.git",
  2203. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120"
  2204. },
  2205. "dist": {
  2206. "type": "zip",
  2207. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/1fc9f64c0927627ef78ba436c9b17d967e68e120",
  2208. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120",
  2209. "shasum": ""
  2210. },
  2211. "require": {
  2212. "php": ">=7.3"
  2213. },
  2214. "require-dev": {
  2215. "phpunit/phpunit": "^9.3"
  2216. },
  2217. "type": "library",
  2218. "extra": {
  2219. "branch-alias": {
  2220. "dev-master": "1.0-dev"
  2221. }
  2222. },
  2223. "autoload": {
  2224. "classmap": [
  2225. "src/"
  2226. ]
  2227. },
  2228. "notification-url": "https://packagist.org/downloads/",
  2229. "license": [
  2230. "BSD-3-Clause"
  2231. ],
  2232. "authors": [
  2233. {
  2234. "name": "Sebastian Bergmann",
  2235. "email": "sebastian@phpunit.de",
  2236. "role": "lead"
  2237. }
  2238. ],
  2239. "description": "Collection of value objects that represent the PHP code units",
  2240. "homepage": "https://github.com/sebastianbergmann/code-unit",
  2241. "support": {
  2242. "issues": "https://github.com/sebastianbergmann/code-unit/issues",
  2243. "source": "https://github.com/sebastianbergmann/code-unit/tree/1.0.8"
  2244. },
  2245. "funding": [
  2246. {
  2247. "url": "https://github.com/sebastianbergmann",
  2248. "type": "github"
  2249. }
  2250. ],
  2251. "time": "2020-10-26T13:08:54+00:00"
  2252. },
  2253. {
  2254. "name": "sebastian/code-unit-reverse-lookup",
  2255. "version": "2.0.3",
  2256. "source": {
  2257. "type": "git",
  2258. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  2259. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5"
  2260. },
  2261. "dist": {
  2262. "type": "zip",
  2263. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  2264. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  2265. "shasum": ""
  2266. },
  2267. "require": {
  2268. "php": ">=7.3"
  2269. },
  2270. "require-dev": {
  2271. "phpunit/phpunit": "^9.3"
  2272. },
  2273. "type": "library",
  2274. "extra": {
  2275. "branch-alias": {
  2276. "dev-master": "2.0-dev"
  2277. }
  2278. },
  2279. "autoload": {
  2280. "classmap": [
  2281. "src/"
  2282. ]
  2283. },
  2284. "notification-url": "https://packagist.org/downloads/",
  2285. "license": [
  2286. "BSD-3-Clause"
  2287. ],
  2288. "authors": [
  2289. {
  2290. "name": "Sebastian Bergmann",
  2291. "email": "sebastian@phpunit.de"
  2292. }
  2293. ],
  2294. "description": "Looks up which function or method a line of code belongs to",
  2295. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  2296. "support": {
  2297. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  2298. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/2.0.3"
  2299. },
  2300. "funding": [
  2301. {
  2302. "url": "https://github.com/sebastianbergmann",
  2303. "type": "github"
  2304. }
  2305. ],
  2306. "time": "2020-09-28T05:30:19+00:00"
  2307. },
  2308. {
  2309. "name": "sebastian/comparator",
  2310. "version": "4.0.8",
  2311. "source": {
  2312. "type": "git",
  2313. "url": "https://github.com/sebastianbergmann/comparator.git",
  2314. "reference": "fa0f136dd2334583309d32b62544682ee972b51a"
  2315. },
  2316. "dist": {
  2317. "type": "zip",
  2318. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/fa0f136dd2334583309d32b62544682ee972b51a",
  2319. "reference": "fa0f136dd2334583309d32b62544682ee972b51a",
  2320. "shasum": ""
  2321. },
  2322. "require": {
  2323. "php": ">=7.3",
  2324. "sebastian/diff": "^4.0",
  2325. "sebastian/exporter": "^4.0"
  2326. },
  2327. "require-dev": {
  2328. "phpunit/phpunit": "^9.3"
  2329. },
  2330. "type": "library",
  2331. "extra": {
  2332. "branch-alias": {
  2333. "dev-master": "4.0-dev"
  2334. }
  2335. },
  2336. "autoload": {
  2337. "classmap": [
  2338. "src/"
  2339. ]
  2340. },
  2341. "notification-url": "https://packagist.org/downloads/",
  2342. "license": [
  2343. "BSD-3-Clause"
  2344. ],
  2345. "authors": [
  2346. {
  2347. "name": "Sebastian Bergmann",
  2348. "email": "sebastian@phpunit.de"
  2349. },
  2350. {
  2351. "name": "Jeff Welch",
  2352. "email": "whatthejeff@gmail.com"
  2353. },
  2354. {
  2355. "name": "Volker Dusch",
  2356. "email": "github@wallbash.com"
  2357. },
  2358. {
  2359. "name": "Bernhard Schussek",
  2360. "email": "bschussek@2bepublished.at"
  2361. }
  2362. ],
  2363. "description": "Provides the functionality to compare PHP values for equality",
  2364. "homepage": "https://github.com/sebastianbergmann/comparator",
  2365. "keywords": [
  2366. "comparator",
  2367. "compare",
  2368. "equality"
  2369. ],
  2370. "support": {
  2371. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  2372. "source": "https://github.com/sebastianbergmann/comparator/tree/4.0.8"
  2373. },
  2374. "funding": [
  2375. {
  2376. "url": "https://github.com/sebastianbergmann",
  2377. "type": "github"
  2378. }
  2379. ],
  2380. "time": "2022-09-14T12:41:17+00:00"
  2381. },
  2382. {
  2383. "name": "sebastian/complexity",
  2384. "version": "2.0.2",
  2385. "source": {
  2386. "type": "git",
  2387. "url": "https://github.com/sebastianbergmann/complexity.git",
  2388. "reference": "739b35e53379900cc9ac327b2147867b8b6efd88"
  2389. },
  2390. "dist": {
  2391. "type": "zip",
  2392. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/739b35e53379900cc9ac327b2147867b8b6efd88",
  2393. "reference": "739b35e53379900cc9ac327b2147867b8b6efd88",
  2394. "shasum": ""
  2395. },
  2396. "require": {
  2397. "nikic/php-parser": "^4.7",
  2398. "php": ">=7.3"
  2399. },
  2400. "require-dev": {
  2401. "phpunit/phpunit": "^9.3"
  2402. },
  2403. "type": "library",
  2404. "extra": {
  2405. "branch-alias": {
  2406. "dev-master": "2.0-dev"
  2407. }
  2408. },
  2409. "autoload": {
  2410. "classmap": [
  2411. "src/"
  2412. ]
  2413. },
  2414. "notification-url": "https://packagist.org/downloads/",
  2415. "license": [
  2416. "BSD-3-Clause"
  2417. ],
  2418. "authors": [
  2419. {
  2420. "name": "Sebastian Bergmann",
  2421. "email": "sebastian@phpunit.de",
  2422. "role": "lead"
  2423. }
  2424. ],
  2425. "description": "Library for calculating the complexity of PHP code units",
  2426. "homepage": "https://github.com/sebastianbergmann/complexity",
  2427. "support": {
  2428. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  2429. "source": "https://github.com/sebastianbergmann/complexity/tree/2.0.2"
  2430. },
  2431. "funding": [
  2432. {
  2433. "url": "https://github.com/sebastianbergmann",
  2434. "type": "github"
  2435. }
  2436. ],
  2437. "time": "2020-10-26T15:52:27+00:00"
  2438. },
  2439. {
  2440. "name": "sebastian/diff",
  2441. "version": "4.0.4",
  2442. "source": {
  2443. "type": "git",
  2444. "url": "https://github.com/sebastianbergmann/diff.git",
  2445. "reference": "3461e3fccc7cfdfc2720be910d3bd73c69be590d"
  2446. },
  2447. "dist": {
  2448. "type": "zip",
  2449. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/3461e3fccc7cfdfc2720be910d3bd73c69be590d",
  2450. "reference": "3461e3fccc7cfdfc2720be910d3bd73c69be590d",
  2451. "shasum": ""
  2452. },
  2453. "require": {
  2454. "php": ">=7.3"
  2455. },
  2456. "require-dev": {
  2457. "phpunit/phpunit": "^9.3",
  2458. "symfony/process": "^4.2 || ^5"
  2459. },
  2460. "type": "library",
  2461. "extra": {
  2462. "branch-alias": {
  2463. "dev-master": "4.0-dev"
  2464. }
  2465. },
  2466. "autoload": {
  2467. "classmap": [
  2468. "src/"
  2469. ]
  2470. },
  2471. "notification-url": "https://packagist.org/downloads/",
  2472. "license": [
  2473. "BSD-3-Clause"
  2474. ],
  2475. "authors": [
  2476. {
  2477. "name": "Sebastian Bergmann",
  2478. "email": "sebastian@phpunit.de"
  2479. },
  2480. {
  2481. "name": "Kore Nordmann",
  2482. "email": "mail@kore-nordmann.de"
  2483. }
  2484. ],
  2485. "description": "Diff implementation",
  2486. "homepage": "https://github.com/sebastianbergmann/diff",
  2487. "keywords": [
  2488. "diff",
  2489. "udiff",
  2490. "unidiff",
  2491. "unified diff"
  2492. ],
  2493. "support": {
  2494. "issues": "https://github.com/sebastianbergmann/diff/issues",
  2495. "source": "https://github.com/sebastianbergmann/diff/tree/4.0.4"
  2496. },
  2497. "funding": [
  2498. {
  2499. "url": "https://github.com/sebastianbergmann",
  2500. "type": "github"
  2501. }
  2502. ],
  2503. "time": "2020-10-26T13:10:38+00:00"
  2504. },
  2505. {
  2506. "name": "sebastian/environment",
  2507. "version": "5.1.4",
  2508. "source": {
  2509. "type": "git",
  2510. "url": "https://github.com/sebastianbergmann/environment.git",
  2511. "reference": "1b5dff7bb151a4db11d49d90e5408e4e938270f7"
  2512. },
  2513. "dist": {
  2514. "type": "zip",
  2515. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/1b5dff7bb151a4db11d49d90e5408e4e938270f7",
  2516. "reference": "1b5dff7bb151a4db11d49d90e5408e4e938270f7",
  2517. "shasum": ""
  2518. },
  2519. "require": {
  2520. "php": ">=7.3"
  2521. },
  2522. "require-dev": {
  2523. "phpunit/phpunit": "^9.3"
  2524. },
  2525. "suggest": {
  2526. "ext-posix": "*"
  2527. },
  2528. "type": "library",
  2529. "extra": {
  2530. "branch-alias": {
  2531. "dev-master": "5.1-dev"
  2532. }
  2533. },
  2534. "autoload": {
  2535. "classmap": [
  2536. "src/"
  2537. ]
  2538. },
  2539. "notification-url": "https://packagist.org/downloads/",
  2540. "license": [
  2541. "BSD-3-Clause"
  2542. ],
  2543. "authors": [
  2544. {
  2545. "name": "Sebastian Bergmann",
  2546. "email": "sebastian@phpunit.de"
  2547. }
  2548. ],
  2549. "description": "Provides functionality to handle HHVM/PHP environments",
  2550. "homepage": "http://www.github.com/sebastianbergmann/environment",
  2551. "keywords": [
  2552. "Xdebug",
  2553. "environment",
  2554. "hhvm"
  2555. ],
  2556. "support": {
  2557. "issues": "https://github.com/sebastianbergmann/environment/issues",
  2558. "source": "https://github.com/sebastianbergmann/environment/tree/5.1.4"
  2559. },
  2560. "funding": [
  2561. {
  2562. "url": "https://github.com/sebastianbergmann",
  2563. "type": "github"
  2564. }
  2565. ],
  2566. "time": "2022-04-03T09:37:03+00:00"
  2567. },
  2568. {
  2569. "name": "sebastian/exporter",
  2570. "version": "4.0.5",
  2571. "source": {
  2572. "type": "git",
  2573. "url": "https://github.com/sebastianbergmann/exporter.git",
  2574. "reference": "ac230ed27f0f98f597c8a2b6eb7ac563af5e5b9d"
  2575. },
  2576. "dist": {
  2577. "type": "zip",
  2578. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/ac230ed27f0f98f597c8a2b6eb7ac563af5e5b9d",
  2579. "reference": "ac230ed27f0f98f597c8a2b6eb7ac563af5e5b9d",
  2580. "shasum": ""
  2581. },
  2582. "require": {
  2583. "php": ">=7.3",
  2584. "sebastian/recursion-context": "^4.0"
  2585. },
  2586. "require-dev": {
  2587. "ext-mbstring": "*",
  2588. "phpunit/phpunit": "^9.3"
  2589. },
  2590. "type": "library",
  2591. "extra": {
  2592. "branch-alias": {
  2593. "dev-master": "4.0-dev"
  2594. }
  2595. },
  2596. "autoload": {
  2597. "classmap": [
  2598. "src/"
  2599. ]
  2600. },
  2601. "notification-url": "https://packagist.org/downloads/",
  2602. "license": [
  2603. "BSD-3-Clause"
  2604. ],
  2605. "authors": [
  2606. {
  2607. "name": "Sebastian Bergmann",
  2608. "email": "sebastian@phpunit.de"
  2609. },
  2610. {
  2611. "name": "Jeff Welch",
  2612. "email": "whatthejeff@gmail.com"
  2613. },
  2614. {
  2615. "name": "Volker Dusch",
  2616. "email": "github@wallbash.com"
  2617. },
  2618. {
  2619. "name": "Adam Harvey",
  2620. "email": "aharvey@php.net"
  2621. },
  2622. {
  2623. "name": "Bernhard Schussek",
  2624. "email": "bschussek@gmail.com"
  2625. }
  2626. ],
  2627. "description": "Provides the functionality to export PHP variables for visualization",
  2628. "homepage": "https://www.github.com/sebastianbergmann/exporter",
  2629. "keywords": [
  2630. "export",
  2631. "exporter"
  2632. ],
  2633. "support": {
  2634. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  2635. "source": "https://github.com/sebastianbergmann/exporter/tree/4.0.5"
  2636. },
  2637. "funding": [
  2638. {
  2639. "url": "https://github.com/sebastianbergmann",
  2640. "type": "github"
  2641. }
  2642. ],
  2643. "time": "2022-09-14T06:03:37+00:00"
  2644. },
  2645. {
  2646. "name": "sebastian/global-state",
  2647. "version": "5.0.5",
  2648. "source": {
  2649. "type": "git",
  2650. "url": "https://github.com/sebastianbergmann/global-state.git",
  2651. "reference": "0ca8db5a5fc9c8646244e629625ac486fa286bf2"
  2652. },
  2653. "dist": {
  2654. "type": "zip",
  2655. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/0ca8db5a5fc9c8646244e629625ac486fa286bf2",
  2656. "reference": "0ca8db5a5fc9c8646244e629625ac486fa286bf2",
  2657. "shasum": ""
  2658. },
  2659. "require": {
  2660. "php": ">=7.3",
  2661. "sebastian/object-reflector": "^2.0",
  2662. "sebastian/recursion-context": "^4.0"
  2663. },
  2664. "require-dev": {
  2665. "ext-dom": "*",
  2666. "phpunit/phpunit": "^9.3"
  2667. },
  2668. "suggest": {
  2669. "ext-uopz": "*"
  2670. },
  2671. "type": "library",
  2672. "extra": {
  2673. "branch-alias": {
  2674. "dev-master": "5.0-dev"
  2675. }
  2676. },
  2677. "autoload": {
  2678. "classmap": [
  2679. "src/"
  2680. ]
  2681. },
  2682. "notification-url": "https://packagist.org/downloads/",
  2683. "license": [
  2684. "BSD-3-Clause"
  2685. ],
  2686. "authors": [
  2687. {
  2688. "name": "Sebastian Bergmann",
  2689. "email": "sebastian@phpunit.de"
  2690. }
  2691. ],
  2692. "description": "Snapshotting of global state",
  2693. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  2694. "keywords": [
  2695. "global state"
  2696. ],
  2697. "support": {
  2698. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  2699. "source": "https://github.com/sebastianbergmann/global-state/tree/5.0.5"
  2700. },
  2701. "funding": [
  2702. {
  2703. "url": "https://github.com/sebastianbergmann",
  2704. "type": "github"
  2705. }
  2706. ],
  2707. "time": "2022-02-14T08:28:10+00:00"
  2708. },
  2709. {
  2710. "name": "sebastian/lines-of-code",
  2711. "version": "1.0.3",
  2712. "source": {
  2713. "type": "git",
  2714. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  2715. "reference": "c1c2e997aa3146983ed888ad08b15470a2e22ecc"
  2716. },
  2717. "dist": {
  2718. "type": "zip",
  2719. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/c1c2e997aa3146983ed888ad08b15470a2e22ecc",
  2720. "reference": "c1c2e997aa3146983ed888ad08b15470a2e22ecc",
  2721. "shasum": ""
  2722. },
  2723. "require": {
  2724. "nikic/php-parser": "^4.6",
  2725. "php": ">=7.3"
  2726. },
  2727. "require-dev": {
  2728. "phpunit/phpunit": "^9.3"
  2729. },
  2730. "type": "library",
  2731. "extra": {
  2732. "branch-alias": {
  2733. "dev-master": "1.0-dev"
  2734. }
  2735. },
  2736. "autoload": {
  2737. "classmap": [
  2738. "src/"
  2739. ]
  2740. },
  2741. "notification-url": "https://packagist.org/downloads/",
  2742. "license": [
  2743. "BSD-3-Clause"
  2744. ],
  2745. "authors": [
  2746. {
  2747. "name": "Sebastian Bergmann",
  2748. "email": "sebastian@phpunit.de",
  2749. "role": "lead"
  2750. }
  2751. ],
  2752. "description": "Library for counting the lines of code in PHP source code",
  2753. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  2754. "support": {
  2755. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  2756. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/1.0.3"
  2757. },
  2758. "funding": [
  2759. {
  2760. "url": "https://github.com/sebastianbergmann",
  2761. "type": "github"
  2762. }
  2763. ],
  2764. "time": "2020-11-28T06:42:11+00:00"
  2765. },
  2766. {
  2767. "name": "sebastian/object-enumerator",
  2768. "version": "4.0.4",
  2769. "source": {
  2770. "type": "git",
  2771. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  2772. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71"
  2773. },
  2774. "dist": {
  2775. "type": "zip",
  2776. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/5c9eeac41b290a3712d88851518825ad78f45c71",
  2777. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71",
  2778. "shasum": ""
  2779. },
  2780. "require": {
  2781. "php": ">=7.3",
  2782. "sebastian/object-reflector": "^2.0",
  2783. "sebastian/recursion-context": "^4.0"
  2784. },
  2785. "require-dev": {
  2786. "phpunit/phpunit": "^9.3"
  2787. },
  2788. "type": "library",
  2789. "extra": {
  2790. "branch-alias": {
  2791. "dev-master": "4.0-dev"
  2792. }
  2793. },
  2794. "autoload": {
  2795. "classmap": [
  2796. "src/"
  2797. ]
  2798. },
  2799. "notification-url": "https://packagist.org/downloads/",
  2800. "license": [
  2801. "BSD-3-Clause"
  2802. ],
  2803. "authors": [
  2804. {
  2805. "name": "Sebastian Bergmann",
  2806. "email": "sebastian@phpunit.de"
  2807. }
  2808. ],
  2809. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  2810. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  2811. "support": {
  2812. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  2813. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/4.0.4"
  2814. },
  2815. "funding": [
  2816. {
  2817. "url": "https://github.com/sebastianbergmann",
  2818. "type": "github"
  2819. }
  2820. ],
  2821. "time": "2020-10-26T13:12:34+00:00"
  2822. },
  2823. {
  2824. "name": "sebastian/object-reflector",
  2825. "version": "2.0.4",
  2826. "source": {
  2827. "type": "git",
  2828. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  2829. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7"
  2830. },
  2831. "dist": {
  2832. "type": "zip",
  2833. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  2834. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  2835. "shasum": ""
  2836. },
  2837. "require": {
  2838. "php": ">=7.3"
  2839. },
  2840. "require-dev": {
  2841. "phpunit/phpunit": "^9.3"
  2842. },
  2843. "type": "library",
  2844. "extra": {
  2845. "branch-alias": {
  2846. "dev-master": "2.0-dev"
  2847. }
  2848. },
  2849. "autoload": {
  2850. "classmap": [
  2851. "src/"
  2852. ]
  2853. },
  2854. "notification-url": "https://packagist.org/downloads/",
  2855. "license": [
  2856. "BSD-3-Clause"
  2857. ],
  2858. "authors": [
  2859. {
  2860. "name": "Sebastian Bergmann",
  2861. "email": "sebastian@phpunit.de"
  2862. }
  2863. ],
  2864. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  2865. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  2866. "support": {
  2867. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  2868. "source": "https://github.com/sebastianbergmann/object-reflector/tree/2.0.4"
  2869. },
  2870. "funding": [
  2871. {
  2872. "url": "https://github.com/sebastianbergmann",
  2873. "type": "github"
  2874. }
  2875. ],
  2876. "time": "2020-10-26T13:14:26+00:00"
  2877. },
  2878. {
  2879. "name": "sebastian/recursion-context",
  2880. "version": "4.0.4",
  2881. "source": {
  2882. "type": "git",
  2883. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  2884. "reference": "cd9d8cf3c5804de4341c283ed787f099f5506172"
  2885. },
  2886. "dist": {
  2887. "type": "zip",
  2888. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/cd9d8cf3c5804de4341c283ed787f099f5506172",
  2889. "reference": "cd9d8cf3c5804de4341c283ed787f099f5506172",
  2890. "shasum": ""
  2891. },
  2892. "require": {
  2893. "php": ">=7.3"
  2894. },
  2895. "require-dev": {
  2896. "phpunit/phpunit": "^9.3"
  2897. },
  2898. "type": "library",
  2899. "extra": {
  2900. "branch-alias": {
  2901. "dev-master": "4.0-dev"
  2902. }
  2903. },
  2904. "autoload": {
  2905. "classmap": [
  2906. "src/"
  2907. ]
  2908. },
  2909. "notification-url": "https://packagist.org/downloads/",
  2910. "license": [
  2911. "BSD-3-Clause"
  2912. ],
  2913. "authors": [
  2914. {
  2915. "name": "Sebastian Bergmann",
  2916. "email": "sebastian@phpunit.de"
  2917. },
  2918. {
  2919. "name": "Jeff Welch",
  2920. "email": "whatthejeff@gmail.com"
  2921. },
  2922. {
  2923. "name": "Adam Harvey",
  2924. "email": "aharvey@php.net"
  2925. }
  2926. ],
  2927. "description": "Provides functionality to recursively process PHP variables",
  2928. "homepage": "http://www.github.com/sebastianbergmann/recursion-context",
  2929. "support": {
  2930. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  2931. "source": "https://github.com/sebastianbergmann/recursion-context/tree/4.0.4"
  2932. },
  2933. "funding": [
  2934. {
  2935. "url": "https://github.com/sebastianbergmann",
  2936. "type": "github"
  2937. }
  2938. ],
  2939. "time": "2020-10-26T13:17:30+00:00"
  2940. },
  2941. {
  2942. "name": "sebastian/resource-operations",
  2943. "version": "3.0.3",
  2944. "source": {
  2945. "type": "git",
  2946. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  2947. "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8"
  2948. },
  2949. "dist": {
  2950. "type": "zip",
  2951. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8",
  2952. "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8",
  2953. "shasum": ""
  2954. },
  2955. "require": {
  2956. "php": ">=7.3"
  2957. },
  2958. "require-dev": {
  2959. "phpunit/phpunit": "^9.0"
  2960. },
  2961. "type": "library",
  2962. "extra": {
  2963. "branch-alias": {
  2964. "dev-master": "3.0-dev"
  2965. }
  2966. },
  2967. "autoload": {
  2968. "classmap": [
  2969. "src/"
  2970. ]
  2971. },
  2972. "notification-url": "https://packagist.org/downloads/",
  2973. "license": [
  2974. "BSD-3-Clause"
  2975. ],
  2976. "authors": [
  2977. {
  2978. "name": "Sebastian Bergmann",
  2979. "email": "sebastian@phpunit.de"
  2980. }
  2981. ],
  2982. "description": "Provides a list of PHP built-in functions that operate on resources",
  2983. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  2984. "support": {
  2985. "issues": "https://github.com/sebastianbergmann/resource-operations/issues",
  2986. "source": "https://github.com/sebastianbergmann/resource-operations/tree/3.0.3"
  2987. },
  2988. "funding": [
  2989. {
  2990. "url": "https://github.com/sebastianbergmann",
  2991. "type": "github"
  2992. }
  2993. ],
  2994. "time": "2020-09-28T06:45:17+00:00"
  2995. },
  2996. {
  2997. "name": "sebastian/type",
  2998. "version": "3.2.0",
  2999. "source": {
  3000. "type": "git",
  3001. "url": "https://github.com/sebastianbergmann/type.git",
  3002. "reference": "fb3fe09c5f0bae6bc27ef3ce933a1e0ed9464b6e"
  3003. },
  3004. "dist": {
  3005. "type": "zip",
  3006. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/fb3fe09c5f0bae6bc27ef3ce933a1e0ed9464b6e",
  3007. "reference": "fb3fe09c5f0bae6bc27ef3ce933a1e0ed9464b6e",
  3008. "shasum": ""
  3009. },
  3010. "require": {
  3011. "php": ">=7.3"
  3012. },
  3013. "require-dev": {
  3014. "phpunit/phpunit": "^9.5"
  3015. },
  3016. "type": "library",
  3017. "extra": {
  3018. "branch-alias": {
  3019. "dev-master": "3.2-dev"
  3020. }
  3021. },
  3022. "autoload": {
  3023. "classmap": [
  3024. "src/"
  3025. ]
  3026. },
  3027. "notification-url": "https://packagist.org/downloads/",
  3028. "license": [
  3029. "BSD-3-Clause"
  3030. ],
  3031. "authors": [
  3032. {
  3033. "name": "Sebastian Bergmann",
  3034. "email": "sebastian@phpunit.de",
  3035. "role": "lead"
  3036. }
  3037. ],
  3038. "description": "Collection of value objects that represent the types of the PHP type system",
  3039. "homepage": "https://github.com/sebastianbergmann/type",
  3040. "support": {
  3041. "issues": "https://github.com/sebastianbergmann/type/issues",
  3042. "source": "https://github.com/sebastianbergmann/type/tree/3.2.0"
  3043. },
  3044. "funding": [
  3045. {
  3046. "url": "https://github.com/sebastianbergmann",
  3047. "type": "github"
  3048. }
  3049. ],
  3050. "time": "2022-09-12T14:47:03+00:00"
  3051. },
  3052. {
  3053. "name": "sebastian/version",
  3054. "version": "3.0.2",
  3055. "source": {
  3056. "type": "git",
  3057. "url": "https://github.com/sebastianbergmann/version.git",
  3058. "reference": "c6c1022351a901512170118436c764e473f6de8c"
  3059. },
  3060. "dist": {
  3061. "type": "zip",
  3062. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c6c1022351a901512170118436c764e473f6de8c",
  3063. "reference": "c6c1022351a901512170118436c764e473f6de8c",
  3064. "shasum": ""
  3065. },
  3066. "require": {
  3067. "php": ">=7.3"
  3068. },
  3069. "type": "library",
  3070. "extra": {
  3071. "branch-alias": {
  3072. "dev-master": "3.0-dev"
  3073. }
  3074. },
  3075. "autoload": {
  3076. "classmap": [
  3077. "src/"
  3078. ]
  3079. },
  3080. "notification-url": "https://packagist.org/downloads/",
  3081. "license": [
  3082. "BSD-3-Clause"
  3083. ],
  3084. "authors": [
  3085. {
  3086. "name": "Sebastian Bergmann",
  3087. "email": "sebastian@phpunit.de",
  3088. "role": "lead"
  3089. }
  3090. ],
  3091. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  3092. "homepage": "https://github.com/sebastianbergmann/version",
  3093. "support": {
  3094. "issues": "https://github.com/sebastianbergmann/version/issues",
  3095. "source": "https://github.com/sebastianbergmann/version/tree/3.0.2"
  3096. },
  3097. "funding": [
  3098. {
  3099. "url": "https://github.com/sebastianbergmann",
  3100. "type": "github"
  3101. }
  3102. ],
  3103. "time": "2020-09-28T06:39:44+00:00"
  3104. },
  3105. {
  3106. "name": "symfony/config",
  3107. "version": "v5.4.11",
  3108. "source": {
  3109. "type": "git",
  3110. "url": "https://github.com/symfony/config.git",
  3111. "reference": "ec79e03125c1d2477e43dde8528535d90cc78379"
  3112. },
  3113. "dist": {
  3114. "type": "zip",
  3115. "url": "https://api.github.com/repos/symfony/config/zipball/ec79e03125c1d2477e43dde8528535d90cc78379",
  3116. "reference": "ec79e03125c1d2477e43dde8528535d90cc78379",
  3117. "shasum": ""
  3118. },
  3119. "require": {
  3120. "php": ">=7.2.5",
  3121. "symfony/deprecation-contracts": "^2.1|^3",
  3122. "symfony/filesystem": "^4.4|^5.0|^6.0",
  3123. "symfony/polyfill-ctype": "~1.8",
  3124. "symfony/polyfill-php80": "^1.16",
  3125. "symfony/polyfill-php81": "^1.22"
  3126. },
  3127. "conflict": {
  3128. "symfony/finder": "<4.4"
  3129. },
  3130. "require-dev": {
  3131. "symfony/event-dispatcher": "^4.4|^5.0|^6.0",
  3132. "symfony/finder": "^4.4|^5.0|^6.0",
  3133. "symfony/messenger": "^4.4|^5.0|^6.0",
  3134. "symfony/service-contracts": "^1.1|^2|^3",
  3135. "symfony/yaml": "^4.4|^5.0|^6.0"
  3136. },
  3137. "suggest": {
  3138. "symfony/yaml": "To use the yaml reference dumper"
  3139. },
  3140. "type": "library",
  3141. "autoload": {
  3142. "psr-4": {
  3143. "Symfony\\Component\\Config\\": ""
  3144. },
  3145. "exclude-from-classmap": [
  3146. "/Tests/"
  3147. ]
  3148. },
  3149. "notification-url": "https://packagist.org/downloads/",
  3150. "license": [
  3151. "MIT"
  3152. ],
  3153. "authors": [
  3154. {
  3155. "name": "Fabien Potencier",
  3156. "email": "fabien@symfony.com"
  3157. },
  3158. {
  3159. "name": "Symfony Community",
  3160. "homepage": "https://symfony.com/contributors"
  3161. }
  3162. ],
  3163. "description": "Helps you find, load, combine, autofill and validate configuration values of any kind",
  3164. "homepage": "https://symfony.com",
  3165. "support": {
  3166. "source": "https://github.com/symfony/config/tree/v5.4.11"
  3167. },
  3168. "funding": [
  3169. {
  3170. "url": "https://symfony.com/sponsor",
  3171. "type": "custom"
  3172. },
  3173. {
  3174. "url": "https://github.com/fabpot",
  3175. "type": "github"
  3176. },
  3177. {
  3178. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3179. "type": "tidelift"
  3180. }
  3181. ],
  3182. "time": "2022-07-20T13:00:38+00:00"
  3183. },
  3184. {
  3185. "name": "symfony/console",
  3186. "version": "v5.4.16",
  3187. "source": {
  3188. "type": "git",
  3189. "url": "https://github.com/symfony/console.git",
  3190. "reference": "8e9b9c8dfb33af6057c94e1b44846bee700dc5ef"
  3191. },
  3192. "dist": {
  3193. "type": "zip",
  3194. "url": "https://api.github.com/repos/symfony/console/zipball/8e9b9c8dfb33af6057c94e1b44846bee700dc5ef",
  3195. "reference": "8e9b9c8dfb33af6057c94e1b44846bee700dc5ef",
  3196. "shasum": ""
  3197. },
  3198. "require": {
  3199. "php": ">=7.2.5",
  3200. "symfony/deprecation-contracts": "^2.1|^3",
  3201. "symfony/polyfill-mbstring": "~1.0",
  3202. "symfony/polyfill-php73": "^1.9",
  3203. "symfony/polyfill-php80": "^1.16",
  3204. "symfony/service-contracts": "^1.1|^2|^3",
  3205. "symfony/string": "^5.1|^6.0"
  3206. },
  3207. "conflict": {
  3208. "psr/log": ">=3",
  3209. "symfony/dependency-injection": "<4.4",
  3210. "symfony/dotenv": "<5.1",
  3211. "symfony/event-dispatcher": "<4.4",
  3212. "symfony/lock": "<4.4",
  3213. "symfony/process": "<4.4"
  3214. },
  3215. "provide": {
  3216. "psr/log-implementation": "1.0|2.0"
  3217. },
  3218. "require-dev": {
  3219. "psr/log": "^1|^2",
  3220. "symfony/config": "^4.4|^5.0|^6.0",
  3221. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  3222. "symfony/event-dispatcher": "^4.4|^5.0|^6.0",
  3223. "symfony/lock": "^4.4|^5.0|^6.0",
  3224. "symfony/process": "^4.4|^5.0|^6.0",
  3225. "symfony/var-dumper": "^4.4|^5.0|^6.0"
  3226. },
  3227. "suggest": {
  3228. "psr/log": "For using the console logger",
  3229. "symfony/event-dispatcher": "",
  3230. "symfony/lock": "",
  3231. "symfony/process": ""
  3232. },
  3233. "type": "library",
  3234. "autoload": {
  3235. "psr-4": {
  3236. "Symfony\\Component\\Console\\": ""
  3237. },
  3238. "exclude-from-classmap": [
  3239. "/Tests/"
  3240. ]
  3241. },
  3242. "notification-url": "https://packagist.org/downloads/",
  3243. "license": [
  3244. "MIT"
  3245. ],
  3246. "authors": [
  3247. {
  3248. "name": "Fabien Potencier",
  3249. "email": "fabien@symfony.com"
  3250. },
  3251. {
  3252. "name": "Symfony Community",
  3253. "homepage": "https://symfony.com/contributors"
  3254. }
  3255. ],
  3256. "description": "Eases the creation of beautiful and testable command line interfaces",
  3257. "homepage": "https://symfony.com",
  3258. "keywords": [
  3259. "cli",
  3260. "command line",
  3261. "console",
  3262. "terminal"
  3263. ],
  3264. "support": {
  3265. "source": "https://github.com/symfony/console/tree/v5.4.16"
  3266. },
  3267. "funding": [
  3268. {
  3269. "url": "https://symfony.com/sponsor",
  3270. "type": "custom"
  3271. },
  3272. {
  3273. "url": "https://github.com/fabpot",
  3274. "type": "github"
  3275. },
  3276. {
  3277. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3278. "type": "tidelift"
  3279. }
  3280. ],
  3281. "time": "2022-11-25T14:09:27+00:00"
  3282. },
  3283. {
  3284. "name": "symfony/dependency-injection",
  3285. "version": "v5.4.16",
  3286. "source": {
  3287. "type": "git",
  3288. "url": "https://github.com/symfony/dependency-injection.git",
  3289. "reference": "a93e1863500940780fc1235f52d54397be2d14b3"
  3290. },
  3291. "dist": {
  3292. "type": "zip",
  3293. "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/a93e1863500940780fc1235f52d54397be2d14b3",
  3294. "reference": "a93e1863500940780fc1235f52d54397be2d14b3",
  3295. "shasum": ""
  3296. },
  3297. "require": {
  3298. "php": ">=7.2.5",
  3299. "psr/container": "^1.1.1",
  3300. "symfony/deprecation-contracts": "^2.1|^3",
  3301. "symfony/polyfill-php80": "^1.16",
  3302. "symfony/polyfill-php81": "^1.22",
  3303. "symfony/service-contracts": "^1.1.6|^2"
  3304. },
  3305. "conflict": {
  3306. "ext-psr": "<1.1|>=2",
  3307. "symfony/config": "<5.3",
  3308. "symfony/finder": "<4.4",
  3309. "symfony/proxy-manager-bridge": "<4.4",
  3310. "symfony/yaml": "<4.4.26"
  3311. },
  3312. "provide": {
  3313. "psr/container-implementation": "1.0",
  3314. "symfony/service-implementation": "1.0|2.0"
  3315. },
  3316. "require-dev": {
  3317. "symfony/config": "^5.3|^6.0",
  3318. "symfony/expression-language": "^4.4|^5.0|^6.0",
  3319. "symfony/yaml": "^4.4.26|^5.0|^6.0"
  3320. },
  3321. "suggest": {
  3322. "symfony/config": "",
  3323. "symfony/expression-language": "For using expressions in service container configuration",
  3324. "symfony/finder": "For using double-star glob patterns or when GLOB_BRACE portability is required",
  3325. "symfony/proxy-manager-bridge": "Generate service proxies to lazy load them",
  3326. "symfony/yaml": ""
  3327. },
  3328. "type": "library",
  3329. "autoload": {
  3330. "psr-4": {
  3331. "Symfony\\Component\\DependencyInjection\\": ""
  3332. },
  3333. "exclude-from-classmap": [
  3334. "/Tests/"
  3335. ]
  3336. },
  3337. "notification-url": "https://packagist.org/downloads/",
  3338. "license": [
  3339. "MIT"
  3340. ],
  3341. "authors": [
  3342. {
  3343. "name": "Fabien Potencier",
  3344. "email": "fabien@symfony.com"
  3345. },
  3346. {
  3347. "name": "Symfony Community",
  3348. "homepage": "https://symfony.com/contributors"
  3349. }
  3350. ],
  3351. "description": "Allows you to standardize and centralize the way objects are constructed in your application",
  3352. "homepage": "https://symfony.com",
  3353. "support": {
  3354. "source": "https://github.com/symfony/dependency-injection/tree/v5.4.16"
  3355. },
  3356. "funding": [
  3357. {
  3358. "url": "https://symfony.com/sponsor",
  3359. "type": "custom"
  3360. },
  3361. {
  3362. "url": "https://github.com/fabpot",
  3363. "type": "github"
  3364. },
  3365. {
  3366. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3367. "type": "tidelift"
  3368. }
  3369. ],
  3370. "time": "2022-11-25T07:33:13+00:00"
  3371. },
  3372. {
  3373. "name": "symfony/deprecation-contracts",
  3374. "version": "v2.5.2",
  3375. "source": {
  3376. "type": "git",
  3377. "url": "https://github.com/symfony/deprecation-contracts.git",
  3378. "reference": "e8b495ea28c1d97b5e0c121748d6f9b53d075c66"
  3379. },
  3380. "dist": {
  3381. "type": "zip",
  3382. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/e8b495ea28c1d97b5e0c121748d6f9b53d075c66",
  3383. "reference": "e8b495ea28c1d97b5e0c121748d6f9b53d075c66",
  3384. "shasum": ""
  3385. },
  3386. "require": {
  3387. "php": ">=7.1"
  3388. },
  3389. "type": "library",
  3390. "extra": {
  3391. "branch-alias": {
  3392. "dev-main": "2.5-dev"
  3393. },
  3394. "thanks": {
  3395. "name": "symfony/contracts",
  3396. "url": "https://github.com/symfony/contracts"
  3397. }
  3398. },
  3399. "autoload": {
  3400. "files": [
  3401. "function.php"
  3402. ]
  3403. },
  3404. "notification-url": "https://packagist.org/downloads/",
  3405. "license": [
  3406. "MIT"
  3407. ],
  3408. "authors": [
  3409. {
  3410. "name": "Nicolas Grekas",
  3411. "email": "p@tchwork.com"
  3412. },
  3413. {
  3414. "name": "Symfony Community",
  3415. "homepage": "https://symfony.com/contributors"
  3416. }
  3417. ],
  3418. "description": "A generic function and convention to trigger deprecation notices",
  3419. "homepage": "https://symfony.com",
  3420. "support": {
  3421. "source": "https://github.com/symfony/deprecation-contracts/tree/v2.5.2"
  3422. },
  3423. "funding": [
  3424. {
  3425. "url": "https://symfony.com/sponsor",
  3426. "type": "custom"
  3427. },
  3428. {
  3429. "url": "https://github.com/fabpot",
  3430. "type": "github"
  3431. },
  3432. {
  3433. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3434. "type": "tidelift"
  3435. }
  3436. ],
  3437. "time": "2022-01-02T09:53:40+00:00"
  3438. },
  3439. {
  3440. "name": "symfony/event-dispatcher",
  3441. "version": "v5.4.9",
  3442. "source": {
  3443. "type": "git",
  3444. "url": "https://github.com/symfony/event-dispatcher.git",
  3445. "reference": "8e6ce1cc0279e3ff3c8ff0f43813bc88d21ca1bc"
  3446. },
  3447. "dist": {
  3448. "type": "zip",
  3449. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/8e6ce1cc0279e3ff3c8ff0f43813bc88d21ca1bc",
  3450. "reference": "8e6ce1cc0279e3ff3c8ff0f43813bc88d21ca1bc",
  3451. "shasum": ""
  3452. },
  3453. "require": {
  3454. "php": ">=7.2.5",
  3455. "symfony/deprecation-contracts": "^2.1|^3",
  3456. "symfony/event-dispatcher-contracts": "^2|^3",
  3457. "symfony/polyfill-php80": "^1.16"
  3458. },
  3459. "conflict": {
  3460. "symfony/dependency-injection": "<4.4"
  3461. },
  3462. "provide": {
  3463. "psr/event-dispatcher-implementation": "1.0",
  3464. "symfony/event-dispatcher-implementation": "2.0"
  3465. },
  3466. "require-dev": {
  3467. "psr/log": "^1|^2|^3",
  3468. "symfony/config": "^4.4|^5.0|^6.0",
  3469. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  3470. "symfony/error-handler": "^4.4|^5.0|^6.0",
  3471. "symfony/expression-language": "^4.4|^5.0|^6.0",
  3472. "symfony/http-foundation": "^4.4|^5.0|^6.0",
  3473. "symfony/service-contracts": "^1.1|^2|^3",
  3474. "symfony/stopwatch": "^4.4|^5.0|^6.0"
  3475. },
  3476. "suggest": {
  3477. "symfony/dependency-injection": "",
  3478. "symfony/http-kernel": ""
  3479. },
  3480. "type": "library",
  3481. "autoload": {
  3482. "psr-4": {
  3483. "Symfony\\Component\\EventDispatcher\\": ""
  3484. },
  3485. "exclude-from-classmap": [
  3486. "/Tests/"
  3487. ]
  3488. },
  3489. "notification-url": "https://packagist.org/downloads/",
  3490. "license": [
  3491. "MIT"
  3492. ],
  3493. "authors": [
  3494. {
  3495. "name": "Fabien Potencier",
  3496. "email": "fabien@symfony.com"
  3497. },
  3498. {
  3499. "name": "Symfony Community",
  3500. "homepage": "https://symfony.com/contributors"
  3501. }
  3502. ],
  3503. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  3504. "homepage": "https://symfony.com",
  3505. "support": {
  3506. "source": "https://github.com/symfony/event-dispatcher/tree/v5.4.9"
  3507. },
  3508. "funding": [
  3509. {
  3510. "url": "https://symfony.com/sponsor",
  3511. "type": "custom"
  3512. },
  3513. {
  3514. "url": "https://github.com/fabpot",
  3515. "type": "github"
  3516. },
  3517. {
  3518. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3519. "type": "tidelift"
  3520. }
  3521. ],
  3522. "time": "2022-05-05T16:45:39+00:00"
  3523. },
  3524. {
  3525. "name": "symfony/event-dispatcher-contracts",
  3526. "version": "v2.5.2",
  3527. "source": {
  3528. "type": "git",
  3529. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  3530. "reference": "f98b54df6ad059855739db6fcbc2d36995283fe1"
  3531. },
  3532. "dist": {
  3533. "type": "zip",
  3534. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/f98b54df6ad059855739db6fcbc2d36995283fe1",
  3535. "reference": "f98b54df6ad059855739db6fcbc2d36995283fe1",
  3536. "shasum": ""
  3537. },
  3538. "require": {
  3539. "php": ">=7.2.5",
  3540. "psr/event-dispatcher": "^1"
  3541. },
  3542. "suggest": {
  3543. "symfony/event-dispatcher-implementation": ""
  3544. },
  3545. "type": "library",
  3546. "extra": {
  3547. "branch-alias": {
  3548. "dev-main": "2.5-dev"
  3549. },
  3550. "thanks": {
  3551. "name": "symfony/contracts",
  3552. "url": "https://github.com/symfony/contracts"
  3553. }
  3554. },
  3555. "autoload": {
  3556. "psr-4": {
  3557. "Symfony\\Contracts\\EventDispatcher\\": ""
  3558. }
  3559. },
  3560. "notification-url": "https://packagist.org/downloads/",
  3561. "license": [
  3562. "MIT"
  3563. ],
  3564. "authors": [
  3565. {
  3566. "name": "Nicolas Grekas",
  3567. "email": "p@tchwork.com"
  3568. },
  3569. {
  3570. "name": "Symfony Community",
  3571. "homepage": "https://symfony.com/contributors"
  3572. }
  3573. ],
  3574. "description": "Generic abstractions related to dispatching event",
  3575. "homepage": "https://symfony.com",
  3576. "keywords": [
  3577. "abstractions",
  3578. "contracts",
  3579. "decoupling",
  3580. "interfaces",
  3581. "interoperability",
  3582. "standards"
  3583. ],
  3584. "support": {
  3585. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v2.5.2"
  3586. },
  3587. "funding": [
  3588. {
  3589. "url": "https://symfony.com/sponsor",
  3590. "type": "custom"
  3591. },
  3592. {
  3593. "url": "https://github.com/fabpot",
  3594. "type": "github"
  3595. },
  3596. {
  3597. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3598. "type": "tidelift"
  3599. }
  3600. ],
  3601. "time": "2022-01-02T09:53:40+00:00"
  3602. },
  3603. {
  3604. "name": "symfony/filesystem",
  3605. "version": "v5.4.13",
  3606. "source": {
  3607. "type": "git",
  3608. "url": "https://github.com/symfony/filesystem.git",
  3609. "reference": "ac09569844a9109a5966b9438fc29113ce77cf51"
  3610. },
  3611. "dist": {
  3612. "type": "zip",
  3613. "url": "https://api.github.com/repos/symfony/filesystem/zipball/ac09569844a9109a5966b9438fc29113ce77cf51",
  3614. "reference": "ac09569844a9109a5966b9438fc29113ce77cf51",
  3615. "shasum": ""
  3616. },
  3617. "require": {
  3618. "php": ">=7.2.5",
  3619. "symfony/polyfill-ctype": "~1.8",
  3620. "symfony/polyfill-mbstring": "~1.8",
  3621. "symfony/polyfill-php80": "^1.16"
  3622. },
  3623. "type": "library",
  3624. "autoload": {
  3625. "psr-4": {
  3626. "Symfony\\Component\\Filesystem\\": ""
  3627. },
  3628. "exclude-from-classmap": [
  3629. "/Tests/"
  3630. ]
  3631. },
  3632. "notification-url": "https://packagist.org/downloads/",
  3633. "license": [
  3634. "MIT"
  3635. ],
  3636. "authors": [
  3637. {
  3638. "name": "Fabien Potencier",
  3639. "email": "fabien@symfony.com"
  3640. },
  3641. {
  3642. "name": "Symfony Community",
  3643. "homepage": "https://symfony.com/contributors"
  3644. }
  3645. ],
  3646. "description": "Provides basic utilities for the filesystem",
  3647. "homepage": "https://symfony.com",
  3648. "support": {
  3649. "source": "https://github.com/symfony/filesystem/tree/v5.4.13"
  3650. },
  3651. "funding": [
  3652. {
  3653. "url": "https://symfony.com/sponsor",
  3654. "type": "custom"
  3655. },
  3656. {
  3657. "url": "https://github.com/fabpot",
  3658. "type": "github"
  3659. },
  3660. {
  3661. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3662. "type": "tidelift"
  3663. }
  3664. ],
  3665. "time": "2022-09-21T19:53:16+00:00"
  3666. },
  3667. {
  3668. "name": "symfony/polyfill-ctype",
  3669. "version": "v1.27.0",
  3670. "source": {
  3671. "type": "git",
  3672. "url": "https://github.com/symfony/polyfill-ctype.git",
  3673. "reference": "5bbc823adecdae860bb64756d639ecfec17b050a"
  3674. },
  3675. "dist": {
  3676. "type": "zip",
  3677. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/5bbc823adecdae860bb64756d639ecfec17b050a",
  3678. "reference": "5bbc823adecdae860bb64756d639ecfec17b050a",
  3679. "shasum": ""
  3680. },
  3681. "require": {
  3682. "php": ">=7.1"
  3683. },
  3684. "provide": {
  3685. "ext-ctype": "*"
  3686. },
  3687. "suggest": {
  3688. "ext-ctype": "For best performance"
  3689. },
  3690. "type": "library",
  3691. "extra": {
  3692. "branch-alias": {
  3693. "dev-main": "1.27-dev"
  3694. },
  3695. "thanks": {
  3696. "name": "symfony/polyfill",
  3697. "url": "https://github.com/symfony/polyfill"
  3698. }
  3699. },
  3700. "autoload": {
  3701. "files": [
  3702. "bootstrap.php"
  3703. ],
  3704. "psr-4": {
  3705. "Symfony\\Polyfill\\Ctype\\": ""
  3706. }
  3707. },
  3708. "notification-url": "https://packagist.org/downloads/",
  3709. "license": [
  3710. "MIT"
  3711. ],
  3712. "authors": [
  3713. {
  3714. "name": "Gert de Pagter",
  3715. "email": "BackEndTea@gmail.com"
  3716. },
  3717. {
  3718. "name": "Symfony Community",
  3719. "homepage": "https://symfony.com/contributors"
  3720. }
  3721. ],
  3722. "description": "Symfony polyfill for ctype functions",
  3723. "homepage": "https://symfony.com",
  3724. "keywords": [
  3725. "compatibility",
  3726. "ctype",
  3727. "polyfill",
  3728. "portable"
  3729. ],
  3730. "support": {
  3731. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.27.0"
  3732. },
  3733. "funding": [
  3734. {
  3735. "url": "https://symfony.com/sponsor",
  3736. "type": "custom"
  3737. },
  3738. {
  3739. "url": "https://github.com/fabpot",
  3740. "type": "github"
  3741. },
  3742. {
  3743. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3744. "type": "tidelift"
  3745. }
  3746. ],
  3747. "time": "2022-11-03T14:55:06+00:00"
  3748. },
  3749. {
  3750. "name": "symfony/polyfill-intl-grapheme",
  3751. "version": "v1.27.0",
  3752. "source": {
  3753. "type": "git",
  3754. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  3755. "reference": "511a08c03c1960e08a883f4cffcacd219b758354"
  3756. },
  3757. "dist": {
  3758. "type": "zip",
  3759. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/511a08c03c1960e08a883f4cffcacd219b758354",
  3760. "reference": "511a08c03c1960e08a883f4cffcacd219b758354",
  3761. "shasum": ""
  3762. },
  3763. "require": {
  3764. "php": ">=7.1"
  3765. },
  3766. "suggest": {
  3767. "ext-intl": "For best performance"
  3768. },
  3769. "type": "library",
  3770. "extra": {
  3771. "branch-alias": {
  3772. "dev-main": "1.27-dev"
  3773. },
  3774. "thanks": {
  3775. "name": "symfony/polyfill",
  3776. "url": "https://github.com/symfony/polyfill"
  3777. }
  3778. },
  3779. "autoload": {
  3780. "files": [
  3781. "bootstrap.php"
  3782. ],
  3783. "psr-4": {
  3784. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  3785. }
  3786. },
  3787. "notification-url": "https://packagist.org/downloads/",
  3788. "license": [
  3789. "MIT"
  3790. ],
  3791. "authors": [
  3792. {
  3793. "name": "Nicolas Grekas",
  3794. "email": "p@tchwork.com"
  3795. },
  3796. {
  3797. "name": "Symfony Community",
  3798. "homepage": "https://symfony.com/contributors"
  3799. }
  3800. ],
  3801. "description": "Symfony polyfill for intl's grapheme_* functions",
  3802. "homepage": "https://symfony.com",
  3803. "keywords": [
  3804. "compatibility",
  3805. "grapheme",
  3806. "intl",
  3807. "polyfill",
  3808. "portable",
  3809. "shim"
  3810. ],
  3811. "support": {
  3812. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.27.0"
  3813. },
  3814. "funding": [
  3815. {
  3816. "url": "https://symfony.com/sponsor",
  3817. "type": "custom"
  3818. },
  3819. {
  3820. "url": "https://github.com/fabpot",
  3821. "type": "github"
  3822. },
  3823. {
  3824. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3825. "type": "tidelift"
  3826. }
  3827. ],
  3828. "time": "2022-11-03T14:55:06+00:00"
  3829. },
  3830. {
  3831. "name": "symfony/polyfill-intl-normalizer",
  3832. "version": "v1.27.0",
  3833. "source": {
  3834. "type": "git",
  3835. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  3836. "reference": "19bd1e4fcd5b91116f14d8533c57831ed00571b6"
  3837. },
  3838. "dist": {
  3839. "type": "zip",
  3840. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/19bd1e4fcd5b91116f14d8533c57831ed00571b6",
  3841. "reference": "19bd1e4fcd5b91116f14d8533c57831ed00571b6",
  3842. "shasum": ""
  3843. },
  3844. "require": {
  3845. "php": ">=7.1"
  3846. },
  3847. "suggest": {
  3848. "ext-intl": "For best performance"
  3849. },
  3850. "type": "library",
  3851. "extra": {
  3852. "branch-alias": {
  3853. "dev-main": "1.27-dev"
  3854. },
  3855. "thanks": {
  3856. "name": "symfony/polyfill",
  3857. "url": "https://github.com/symfony/polyfill"
  3858. }
  3859. },
  3860. "autoload": {
  3861. "files": [
  3862. "bootstrap.php"
  3863. ],
  3864. "psr-4": {
  3865. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  3866. },
  3867. "classmap": [
  3868. "Resources/stubs"
  3869. ]
  3870. },
  3871. "notification-url": "https://packagist.org/downloads/",
  3872. "license": [
  3873. "MIT"
  3874. ],
  3875. "authors": [
  3876. {
  3877. "name": "Nicolas Grekas",
  3878. "email": "p@tchwork.com"
  3879. },
  3880. {
  3881. "name": "Symfony Community",
  3882. "homepage": "https://symfony.com/contributors"
  3883. }
  3884. ],
  3885. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  3886. "homepage": "https://symfony.com",
  3887. "keywords": [
  3888. "compatibility",
  3889. "intl",
  3890. "normalizer",
  3891. "polyfill",
  3892. "portable",
  3893. "shim"
  3894. ],
  3895. "support": {
  3896. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.27.0"
  3897. },
  3898. "funding": [
  3899. {
  3900. "url": "https://symfony.com/sponsor",
  3901. "type": "custom"
  3902. },
  3903. {
  3904. "url": "https://github.com/fabpot",
  3905. "type": "github"
  3906. },
  3907. {
  3908. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3909. "type": "tidelift"
  3910. }
  3911. ],
  3912. "time": "2022-11-03T14:55:06+00:00"
  3913. },
  3914. {
  3915. "name": "symfony/polyfill-mbstring",
  3916. "version": "v1.27.0",
  3917. "source": {
  3918. "type": "git",
  3919. "url": "https://github.com/symfony/polyfill-mbstring.git",
  3920. "reference": "8ad114f6b39e2c98a8b0e3bd907732c207c2b534"
  3921. },
  3922. "dist": {
  3923. "type": "zip",
  3924. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/8ad114f6b39e2c98a8b0e3bd907732c207c2b534",
  3925. "reference": "8ad114f6b39e2c98a8b0e3bd907732c207c2b534",
  3926. "shasum": ""
  3927. },
  3928. "require": {
  3929. "php": ">=7.1"
  3930. },
  3931. "provide": {
  3932. "ext-mbstring": "*"
  3933. },
  3934. "suggest": {
  3935. "ext-mbstring": "For best performance"
  3936. },
  3937. "type": "library",
  3938. "extra": {
  3939. "branch-alias": {
  3940. "dev-main": "1.27-dev"
  3941. },
  3942. "thanks": {
  3943. "name": "symfony/polyfill",
  3944. "url": "https://github.com/symfony/polyfill"
  3945. }
  3946. },
  3947. "autoload": {
  3948. "files": [
  3949. "bootstrap.php"
  3950. ],
  3951. "psr-4": {
  3952. "Symfony\\Polyfill\\Mbstring\\": ""
  3953. }
  3954. },
  3955. "notification-url": "https://packagist.org/downloads/",
  3956. "license": [
  3957. "MIT"
  3958. ],
  3959. "authors": [
  3960. {
  3961. "name": "Nicolas Grekas",
  3962. "email": "p@tchwork.com"
  3963. },
  3964. {
  3965. "name": "Symfony Community",
  3966. "homepage": "https://symfony.com/contributors"
  3967. }
  3968. ],
  3969. "description": "Symfony polyfill for the Mbstring extension",
  3970. "homepage": "https://symfony.com",
  3971. "keywords": [
  3972. "compatibility",
  3973. "mbstring",
  3974. "polyfill",
  3975. "portable",
  3976. "shim"
  3977. ],
  3978. "support": {
  3979. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.27.0"
  3980. },
  3981. "funding": [
  3982. {
  3983. "url": "https://symfony.com/sponsor",
  3984. "type": "custom"
  3985. },
  3986. {
  3987. "url": "https://github.com/fabpot",
  3988. "type": "github"
  3989. },
  3990. {
  3991. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3992. "type": "tidelift"
  3993. }
  3994. ],
  3995. "time": "2022-11-03T14:55:06+00:00"
  3996. },
  3997. {
  3998. "name": "symfony/polyfill-php73",
  3999. "version": "v1.27.0",
  4000. "source": {
  4001. "type": "git",
  4002. "url": "https://github.com/symfony/polyfill-php73.git",
  4003. "reference": "9e8ecb5f92152187c4799efd3c96b78ccab18ff9"
  4004. },
  4005. "dist": {
  4006. "type": "zip",
  4007. "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/9e8ecb5f92152187c4799efd3c96b78ccab18ff9",
  4008. "reference": "9e8ecb5f92152187c4799efd3c96b78ccab18ff9",
  4009. "shasum": ""
  4010. },
  4011. "require": {
  4012. "php": ">=7.1"
  4013. },
  4014. "type": "library",
  4015. "extra": {
  4016. "branch-alias": {
  4017. "dev-main": "1.27-dev"
  4018. },
  4019. "thanks": {
  4020. "name": "symfony/polyfill",
  4021. "url": "https://github.com/symfony/polyfill"
  4022. }
  4023. },
  4024. "autoload": {
  4025. "files": [
  4026. "bootstrap.php"
  4027. ],
  4028. "psr-4": {
  4029. "Symfony\\Polyfill\\Php73\\": ""
  4030. },
  4031. "classmap": [
  4032. "Resources/stubs"
  4033. ]
  4034. },
  4035. "notification-url": "https://packagist.org/downloads/",
  4036. "license": [
  4037. "MIT"
  4038. ],
  4039. "authors": [
  4040. {
  4041. "name": "Nicolas Grekas",
  4042. "email": "p@tchwork.com"
  4043. },
  4044. {
  4045. "name": "Symfony Community",
  4046. "homepage": "https://symfony.com/contributors"
  4047. }
  4048. ],
  4049. "description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions",
  4050. "homepage": "https://symfony.com",
  4051. "keywords": [
  4052. "compatibility",
  4053. "polyfill",
  4054. "portable",
  4055. "shim"
  4056. ],
  4057. "support": {
  4058. "source": "https://github.com/symfony/polyfill-php73/tree/v1.27.0"
  4059. },
  4060. "funding": [
  4061. {
  4062. "url": "https://symfony.com/sponsor",
  4063. "type": "custom"
  4064. },
  4065. {
  4066. "url": "https://github.com/fabpot",
  4067. "type": "github"
  4068. },
  4069. {
  4070. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4071. "type": "tidelift"
  4072. }
  4073. ],
  4074. "time": "2022-11-03T14:55:06+00:00"
  4075. },
  4076. {
  4077. "name": "symfony/polyfill-php80",
  4078. "version": "v1.27.0",
  4079. "source": {
  4080. "type": "git",
  4081. "url": "https://github.com/symfony/polyfill-php80.git",
  4082. "reference": "7a6ff3f1959bb01aefccb463a0f2cd3d3d2fd936"
  4083. },
  4084. "dist": {
  4085. "type": "zip",
  4086. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/7a6ff3f1959bb01aefccb463a0f2cd3d3d2fd936",
  4087. "reference": "7a6ff3f1959bb01aefccb463a0f2cd3d3d2fd936",
  4088. "shasum": ""
  4089. },
  4090. "require": {
  4091. "php": ">=7.1"
  4092. },
  4093. "type": "library",
  4094. "extra": {
  4095. "branch-alias": {
  4096. "dev-main": "1.27-dev"
  4097. },
  4098. "thanks": {
  4099. "name": "symfony/polyfill",
  4100. "url": "https://github.com/symfony/polyfill"
  4101. }
  4102. },
  4103. "autoload": {
  4104. "files": [
  4105. "bootstrap.php"
  4106. ],
  4107. "psr-4": {
  4108. "Symfony\\Polyfill\\Php80\\": ""
  4109. },
  4110. "classmap": [
  4111. "Resources/stubs"
  4112. ]
  4113. },
  4114. "notification-url": "https://packagist.org/downloads/",
  4115. "license": [
  4116. "MIT"
  4117. ],
  4118. "authors": [
  4119. {
  4120. "name": "Ion Bazan",
  4121. "email": "ion.bazan@gmail.com"
  4122. },
  4123. {
  4124. "name": "Nicolas Grekas",
  4125. "email": "p@tchwork.com"
  4126. },
  4127. {
  4128. "name": "Symfony Community",
  4129. "homepage": "https://symfony.com/contributors"
  4130. }
  4131. ],
  4132. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  4133. "homepage": "https://symfony.com",
  4134. "keywords": [
  4135. "compatibility",
  4136. "polyfill",
  4137. "portable",
  4138. "shim"
  4139. ],
  4140. "support": {
  4141. "source": "https://github.com/symfony/polyfill-php80/tree/v1.27.0"
  4142. },
  4143. "funding": [
  4144. {
  4145. "url": "https://symfony.com/sponsor",
  4146. "type": "custom"
  4147. },
  4148. {
  4149. "url": "https://github.com/fabpot",
  4150. "type": "github"
  4151. },
  4152. {
  4153. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4154. "type": "tidelift"
  4155. }
  4156. ],
  4157. "time": "2022-11-03T14:55:06+00:00"
  4158. },
  4159. {
  4160. "name": "symfony/polyfill-php81",
  4161. "version": "v1.27.0",
  4162. "source": {
  4163. "type": "git",
  4164. "url": "https://github.com/symfony/polyfill-php81.git",
  4165. "reference": "707403074c8ea6e2edaf8794b0157a0bfa52157a"
  4166. },
  4167. "dist": {
  4168. "type": "zip",
  4169. "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/707403074c8ea6e2edaf8794b0157a0bfa52157a",
  4170. "reference": "707403074c8ea6e2edaf8794b0157a0bfa52157a",
  4171. "shasum": ""
  4172. },
  4173. "require": {
  4174. "php": ">=7.1"
  4175. },
  4176. "type": "library",
  4177. "extra": {
  4178. "branch-alias": {
  4179. "dev-main": "1.27-dev"
  4180. },
  4181. "thanks": {
  4182. "name": "symfony/polyfill",
  4183. "url": "https://github.com/symfony/polyfill"
  4184. }
  4185. },
  4186. "autoload": {
  4187. "files": [
  4188. "bootstrap.php"
  4189. ],
  4190. "psr-4": {
  4191. "Symfony\\Polyfill\\Php81\\": ""
  4192. },
  4193. "classmap": [
  4194. "Resources/stubs"
  4195. ]
  4196. },
  4197. "notification-url": "https://packagist.org/downloads/",
  4198. "license": [
  4199. "MIT"
  4200. ],
  4201. "authors": [
  4202. {
  4203. "name": "Nicolas Grekas",
  4204. "email": "p@tchwork.com"
  4205. },
  4206. {
  4207. "name": "Symfony Community",
  4208. "homepage": "https://symfony.com/contributors"
  4209. }
  4210. ],
  4211. "description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions",
  4212. "homepage": "https://symfony.com",
  4213. "keywords": [
  4214. "compatibility",
  4215. "polyfill",
  4216. "portable",
  4217. "shim"
  4218. ],
  4219. "support": {
  4220. "source": "https://github.com/symfony/polyfill-php81/tree/v1.27.0"
  4221. },
  4222. "funding": [
  4223. {
  4224. "url": "https://symfony.com/sponsor",
  4225. "type": "custom"
  4226. },
  4227. {
  4228. "url": "https://github.com/fabpot",
  4229. "type": "github"
  4230. },
  4231. {
  4232. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4233. "type": "tidelift"
  4234. }
  4235. ],
  4236. "time": "2022-11-03T14:55:06+00:00"
  4237. },
  4238. {
  4239. "name": "symfony/service-contracts",
  4240. "version": "v2.5.2",
  4241. "source": {
  4242. "type": "git",
  4243. "url": "https://github.com/symfony/service-contracts.git",
  4244. "reference": "4b426aac47d6427cc1a1d0f7e2ac724627f5966c"
  4245. },
  4246. "dist": {
  4247. "type": "zip",
  4248. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/4b426aac47d6427cc1a1d0f7e2ac724627f5966c",
  4249. "reference": "4b426aac47d6427cc1a1d0f7e2ac724627f5966c",
  4250. "shasum": ""
  4251. },
  4252. "require": {
  4253. "php": ">=7.2.5",
  4254. "psr/container": "^1.1",
  4255. "symfony/deprecation-contracts": "^2.1|^3"
  4256. },
  4257. "conflict": {
  4258. "ext-psr": "<1.1|>=2"
  4259. },
  4260. "suggest": {
  4261. "symfony/service-implementation": ""
  4262. },
  4263. "type": "library",
  4264. "extra": {
  4265. "branch-alias": {
  4266. "dev-main": "2.5-dev"
  4267. },
  4268. "thanks": {
  4269. "name": "symfony/contracts",
  4270. "url": "https://github.com/symfony/contracts"
  4271. }
  4272. },
  4273. "autoload": {
  4274. "psr-4": {
  4275. "Symfony\\Contracts\\Service\\": ""
  4276. }
  4277. },
  4278. "notification-url": "https://packagist.org/downloads/",
  4279. "license": [
  4280. "MIT"
  4281. ],
  4282. "authors": [
  4283. {
  4284. "name": "Nicolas Grekas",
  4285. "email": "p@tchwork.com"
  4286. },
  4287. {
  4288. "name": "Symfony Community",
  4289. "homepage": "https://symfony.com/contributors"
  4290. }
  4291. ],
  4292. "description": "Generic abstractions related to writing services",
  4293. "homepage": "https://symfony.com",
  4294. "keywords": [
  4295. "abstractions",
  4296. "contracts",
  4297. "decoupling",
  4298. "interfaces",
  4299. "interoperability",
  4300. "standards"
  4301. ],
  4302. "support": {
  4303. "source": "https://github.com/symfony/service-contracts/tree/v2.5.2"
  4304. },
  4305. "funding": [
  4306. {
  4307. "url": "https://symfony.com/sponsor",
  4308. "type": "custom"
  4309. },
  4310. {
  4311. "url": "https://github.com/fabpot",
  4312. "type": "github"
  4313. },
  4314. {
  4315. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4316. "type": "tidelift"
  4317. }
  4318. ],
  4319. "time": "2022-05-30T19:17:29+00:00"
  4320. },
  4321. {
  4322. "name": "symfony/string",
  4323. "version": "v5.4.15",
  4324. "source": {
  4325. "type": "git",
  4326. "url": "https://github.com/symfony/string.git",
  4327. "reference": "571334ce9f687e3e6af72db4d3b2a9431e4fd9ed"
  4328. },
  4329. "dist": {
  4330. "type": "zip",
  4331. "url": "https://api.github.com/repos/symfony/string/zipball/571334ce9f687e3e6af72db4d3b2a9431e4fd9ed",
  4332. "reference": "571334ce9f687e3e6af72db4d3b2a9431e4fd9ed",
  4333. "shasum": ""
  4334. },
  4335. "require": {
  4336. "php": ">=7.2.5",
  4337. "symfony/polyfill-ctype": "~1.8",
  4338. "symfony/polyfill-intl-grapheme": "~1.0",
  4339. "symfony/polyfill-intl-normalizer": "~1.0",
  4340. "symfony/polyfill-mbstring": "~1.0",
  4341. "symfony/polyfill-php80": "~1.15"
  4342. },
  4343. "conflict": {
  4344. "symfony/translation-contracts": ">=3.0"
  4345. },
  4346. "require-dev": {
  4347. "symfony/error-handler": "^4.4|^5.0|^6.0",
  4348. "symfony/http-client": "^4.4|^5.0|^6.0",
  4349. "symfony/translation-contracts": "^1.1|^2",
  4350. "symfony/var-exporter": "^4.4|^5.0|^6.0"
  4351. },
  4352. "type": "library",
  4353. "autoload": {
  4354. "files": [
  4355. "Resources/functions.php"
  4356. ],
  4357. "psr-4": {
  4358. "Symfony\\Component\\String\\": ""
  4359. },
  4360. "exclude-from-classmap": [
  4361. "/Tests/"
  4362. ]
  4363. },
  4364. "notification-url": "https://packagist.org/downloads/",
  4365. "license": [
  4366. "MIT"
  4367. ],
  4368. "authors": [
  4369. {
  4370. "name": "Nicolas Grekas",
  4371. "email": "p@tchwork.com"
  4372. },
  4373. {
  4374. "name": "Symfony Community",
  4375. "homepage": "https://symfony.com/contributors"
  4376. }
  4377. ],
  4378. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  4379. "homepage": "https://symfony.com",
  4380. "keywords": [
  4381. "grapheme",
  4382. "i18n",
  4383. "string",
  4384. "unicode",
  4385. "utf-8",
  4386. "utf8"
  4387. ],
  4388. "support": {
  4389. "source": "https://github.com/symfony/string/tree/v5.4.15"
  4390. },
  4391. "funding": [
  4392. {
  4393. "url": "https://symfony.com/sponsor",
  4394. "type": "custom"
  4395. },
  4396. {
  4397. "url": "https://github.com/fabpot",
  4398. "type": "github"
  4399. },
  4400. {
  4401. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4402. "type": "tidelift"
  4403. }
  4404. ],
  4405. "time": "2022-10-05T15:16:54+00:00"
  4406. },
  4407. {
  4408. "name": "symfony/translation",
  4409. "version": "v5.4.14",
  4410. "source": {
  4411. "type": "git",
  4412. "url": "https://github.com/symfony/translation.git",
  4413. "reference": "f0ed07675863aa6e3939df8b1bc879450b585cab"
  4414. },
  4415. "dist": {
  4416. "type": "zip",
  4417. "url": "https://api.github.com/repos/symfony/translation/zipball/f0ed07675863aa6e3939df8b1bc879450b585cab",
  4418. "reference": "f0ed07675863aa6e3939df8b1bc879450b585cab",
  4419. "shasum": ""
  4420. },
  4421. "require": {
  4422. "php": ">=7.2.5",
  4423. "symfony/deprecation-contracts": "^2.1|^3",
  4424. "symfony/polyfill-mbstring": "~1.0",
  4425. "symfony/polyfill-php80": "^1.16",
  4426. "symfony/translation-contracts": "^2.3"
  4427. },
  4428. "conflict": {
  4429. "symfony/config": "<4.4",
  4430. "symfony/console": "<5.3",
  4431. "symfony/dependency-injection": "<5.0",
  4432. "symfony/http-kernel": "<5.0",
  4433. "symfony/twig-bundle": "<5.0",
  4434. "symfony/yaml": "<4.4"
  4435. },
  4436. "provide": {
  4437. "symfony/translation-implementation": "2.3"
  4438. },
  4439. "require-dev": {
  4440. "psr/log": "^1|^2|^3",
  4441. "symfony/config": "^4.4|^5.0|^6.0",
  4442. "symfony/console": "^5.4|^6.0",
  4443. "symfony/dependency-injection": "^5.0|^6.0",
  4444. "symfony/finder": "^4.4|^5.0|^6.0",
  4445. "symfony/http-client-contracts": "^1.1|^2.0|^3.0",
  4446. "symfony/http-kernel": "^5.0|^6.0",
  4447. "symfony/intl": "^4.4|^5.0|^6.0",
  4448. "symfony/polyfill-intl-icu": "^1.21",
  4449. "symfony/service-contracts": "^1.1.2|^2|^3",
  4450. "symfony/yaml": "^4.4|^5.0|^6.0"
  4451. },
  4452. "suggest": {
  4453. "psr/log-implementation": "To use logging capability in translator",
  4454. "symfony/config": "",
  4455. "symfony/yaml": ""
  4456. },
  4457. "type": "library",
  4458. "autoload": {
  4459. "files": [
  4460. "Resources/functions.php"
  4461. ],
  4462. "psr-4": {
  4463. "Symfony\\Component\\Translation\\": ""
  4464. },
  4465. "exclude-from-classmap": [
  4466. "/Tests/"
  4467. ]
  4468. },
  4469. "notification-url": "https://packagist.org/downloads/",
  4470. "license": [
  4471. "MIT"
  4472. ],
  4473. "authors": [
  4474. {
  4475. "name": "Fabien Potencier",
  4476. "email": "fabien@symfony.com"
  4477. },
  4478. {
  4479. "name": "Symfony Community",
  4480. "homepage": "https://symfony.com/contributors"
  4481. }
  4482. ],
  4483. "description": "Provides tools to internationalize your application",
  4484. "homepage": "https://symfony.com",
  4485. "support": {
  4486. "source": "https://github.com/symfony/translation/tree/v5.4.14"
  4487. },
  4488. "funding": [
  4489. {
  4490. "url": "https://symfony.com/sponsor",
  4491. "type": "custom"
  4492. },
  4493. {
  4494. "url": "https://github.com/fabpot",
  4495. "type": "github"
  4496. },
  4497. {
  4498. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4499. "type": "tidelift"
  4500. }
  4501. ],
  4502. "time": "2022-10-07T08:01:20+00:00"
  4503. },
  4504. {
  4505. "name": "symfony/translation-contracts",
  4506. "version": "v2.5.2",
  4507. "source": {
  4508. "type": "git",
  4509. "url": "https://github.com/symfony/translation-contracts.git",
  4510. "reference": "136b19dd05cdf0709db6537d058bcab6dd6e2dbe"
  4511. },
  4512. "dist": {
  4513. "type": "zip",
  4514. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/136b19dd05cdf0709db6537d058bcab6dd6e2dbe",
  4515. "reference": "136b19dd05cdf0709db6537d058bcab6dd6e2dbe",
  4516. "shasum": ""
  4517. },
  4518. "require": {
  4519. "php": ">=7.2.5"
  4520. },
  4521. "suggest": {
  4522. "symfony/translation-implementation": ""
  4523. },
  4524. "type": "library",
  4525. "extra": {
  4526. "branch-alias": {
  4527. "dev-main": "2.5-dev"
  4528. },
  4529. "thanks": {
  4530. "name": "symfony/contracts",
  4531. "url": "https://github.com/symfony/contracts"
  4532. }
  4533. },
  4534. "autoload": {
  4535. "psr-4": {
  4536. "Symfony\\Contracts\\Translation\\": ""
  4537. }
  4538. },
  4539. "notification-url": "https://packagist.org/downloads/",
  4540. "license": [
  4541. "MIT"
  4542. ],
  4543. "authors": [
  4544. {
  4545. "name": "Nicolas Grekas",
  4546. "email": "p@tchwork.com"
  4547. },
  4548. {
  4549. "name": "Symfony Community",
  4550. "homepage": "https://symfony.com/contributors"
  4551. }
  4552. ],
  4553. "description": "Generic abstractions related to translation",
  4554. "homepage": "https://symfony.com",
  4555. "keywords": [
  4556. "abstractions",
  4557. "contracts",
  4558. "decoupling",
  4559. "interfaces",
  4560. "interoperability",
  4561. "standards"
  4562. ],
  4563. "support": {
  4564. "source": "https://github.com/symfony/translation-contracts/tree/v2.5.2"
  4565. },
  4566. "funding": [
  4567. {
  4568. "url": "https://symfony.com/sponsor",
  4569. "type": "custom"
  4570. },
  4571. {
  4572. "url": "https://github.com/fabpot",
  4573. "type": "github"
  4574. },
  4575. {
  4576. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4577. "type": "tidelift"
  4578. }
  4579. ],
  4580. "time": "2022-06-27T16:58:25+00:00"
  4581. },
  4582. {
  4583. "name": "symfony/yaml",
  4584. "version": "v5.4.16",
  4585. "source": {
  4586. "type": "git",
  4587. "url": "https://github.com/symfony/yaml.git",
  4588. "reference": "ebd37c71f62d5ec5f6e27de3e06fee492d4c6298"
  4589. },
  4590. "dist": {
  4591. "type": "zip",
  4592. "url": "https://api.github.com/repos/symfony/yaml/zipball/ebd37c71f62d5ec5f6e27de3e06fee492d4c6298",
  4593. "reference": "ebd37c71f62d5ec5f6e27de3e06fee492d4c6298",
  4594. "shasum": ""
  4595. },
  4596. "require": {
  4597. "php": ">=7.2.5",
  4598. "symfony/deprecation-contracts": "^2.1|^3",
  4599. "symfony/polyfill-ctype": "^1.8"
  4600. },
  4601. "conflict": {
  4602. "symfony/console": "<5.3"
  4603. },
  4604. "require-dev": {
  4605. "symfony/console": "^5.3|^6.0"
  4606. },
  4607. "suggest": {
  4608. "symfony/console": "For validating YAML files using the lint command"
  4609. },
  4610. "bin": [
  4611. "Resources/bin/yaml-lint"
  4612. ],
  4613. "type": "library",
  4614. "autoload": {
  4615. "psr-4": {
  4616. "Symfony\\Component\\Yaml\\": ""
  4617. },
  4618. "exclude-from-classmap": [
  4619. "/Tests/"
  4620. ]
  4621. },
  4622. "notification-url": "https://packagist.org/downloads/",
  4623. "license": [
  4624. "MIT"
  4625. ],
  4626. "authors": [
  4627. {
  4628. "name": "Fabien Potencier",
  4629. "email": "fabien@symfony.com"
  4630. },
  4631. {
  4632. "name": "Symfony Community",
  4633. "homepage": "https://symfony.com/contributors"
  4634. }
  4635. ],
  4636. "description": "Loads and dumps YAML files",
  4637. "homepage": "https://symfony.com",
  4638. "support": {
  4639. "source": "https://github.com/symfony/yaml/tree/v5.4.16"
  4640. },
  4641. "funding": [
  4642. {
  4643. "url": "https://symfony.com/sponsor",
  4644. "type": "custom"
  4645. },
  4646. {
  4647. "url": "https://github.com/fabpot",
  4648. "type": "github"
  4649. },
  4650. {
  4651. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4652. "type": "tidelift"
  4653. }
  4654. ],
  4655. "time": "2022-11-25T16:04:03+00:00"
  4656. },
  4657. {
  4658. "name": "theseer/tokenizer",
  4659. "version": "1.2.1",
  4660. "source": {
  4661. "type": "git",
  4662. "url": "https://github.com/theseer/tokenizer.git",
  4663. "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e"
  4664. },
  4665. "dist": {
  4666. "type": "zip",
  4667. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/34a41e998c2183e22995f158c581e7b5e755ab9e",
  4668. "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e",
  4669. "shasum": ""
  4670. },
  4671. "require": {
  4672. "ext-dom": "*",
  4673. "ext-tokenizer": "*",
  4674. "ext-xmlwriter": "*",
  4675. "php": "^7.2 || ^8.0"
  4676. },
  4677. "type": "library",
  4678. "autoload": {
  4679. "classmap": [
  4680. "src/"
  4681. ]
  4682. },
  4683. "notification-url": "https://packagist.org/downloads/",
  4684. "license": [
  4685. "BSD-3-Clause"
  4686. ],
  4687. "authors": [
  4688. {
  4689. "name": "Arne Blankerts",
  4690. "email": "arne@blankerts.de",
  4691. "role": "Developer"
  4692. }
  4693. ],
  4694. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  4695. "support": {
  4696. "issues": "https://github.com/theseer/tokenizer/issues",
  4697. "source": "https://github.com/theseer/tokenizer/tree/1.2.1"
  4698. },
  4699. "funding": [
  4700. {
  4701. "url": "https://github.com/theseer",
  4702. "type": "github"
  4703. }
  4704. ],
  4705. "time": "2021-07-28T10:34:58+00:00"
  4706. }
  4707. ],
  4708. "aliases": [],
  4709. "minimum-stability": "stable",
  4710. "stability-flags": [],
  4711. "prefer-stable": false,
  4712. "prefer-lowest": false,
  4713. "platform": [],
  4714. "platform-dev": [],
  4715. "plugin-api-version": "2.3.0"
  4716. }