composer.lock 190 KB

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