composer.lock 165 KB

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