composer.lock 165 KB

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