composer.lock 156 KB

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