composer.lock 176 KB

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