composer.lock 352 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822
  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": "66edd1d7c18e1ab1ea38f347439a847a",
  8. "packages": [
  9. {
  10. "name": "asm89/stack-cors",
  11. "version": "v2.1.1",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/asm89/stack-cors.git",
  15. "reference": "73e5b88775c64ccc0b84fb60836b30dc9d92ac4a"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/asm89/stack-cors/zipball/73e5b88775c64ccc0b84fb60836b30dc9d92ac4a",
  20. "reference": "73e5b88775c64ccc0b84fb60836b30dc9d92ac4a",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "php": "^7.2|^8.0",
  25. "symfony/http-foundation": "^4|^5|^6",
  26. "symfony/http-kernel": "^4|^5|^6"
  27. },
  28. "require-dev": {
  29. "phpunit/phpunit": "^7|^9",
  30. "squizlabs/php_codesniffer": "^3.5"
  31. },
  32. "type": "library",
  33. "extra": {
  34. "branch-alias": {
  35. "dev-master": "2.1-dev"
  36. }
  37. },
  38. "autoload": {
  39. "psr-4": {
  40. "Asm89\\Stack\\": "src/"
  41. }
  42. },
  43. "notification-url": "https://packagist.org/downloads/",
  44. "license": [
  45. "MIT"
  46. ],
  47. "authors": [
  48. {
  49. "name": "Alexander",
  50. "email": "iam.asm89@gmail.com"
  51. }
  52. ],
  53. "description": "Cross-origin resource sharing library and stack middleware",
  54. "homepage": "https://github.com/asm89/stack-cors",
  55. "keywords": [
  56. "cors",
  57. "stack"
  58. ],
  59. "support": {
  60. "issues": "https://github.com/asm89/stack-cors/issues",
  61. "source": "https://github.com/asm89/stack-cors/tree/v2.1.1"
  62. },
  63. "time": "2022-01-18T09:12:03+00:00"
  64. },
  65. {
  66. "name": "bacon/bacon-qr-code",
  67. "version": "2.0.7",
  68. "source": {
  69. "type": "git",
  70. "url": "https://github.com/Bacon/BaconQrCode.git",
  71. "reference": "d70c840f68657ce49094b8d91f9ee0cc07fbf66c"
  72. },
  73. "dist": {
  74. "type": "zip",
  75. "url": "https://api.github.com/repos/Bacon/BaconQrCode/zipball/d70c840f68657ce49094b8d91f9ee0cc07fbf66c",
  76. "reference": "d70c840f68657ce49094b8d91f9ee0cc07fbf66c",
  77. "shasum": ""
  78. },
  79. "require": {
  80. "dasprid/enum": "^1.0.3",
  81. "ext-iconv": "*",
  82. "php": "^7.1 || ^8.0"
  83. },
  84. "require-dev": {
  85. "phly/keep-a-changelog": "^2.1",
  86. "phpunit/phpunit": "^7 | ^8 | ^9",
  87. "spatie/phpunit-snapshot-assertions": "^4.2.9",
  88. "squizlabs/php_codesniffer": "^3.4"
  89. },
  90. "suggest": {
  91. "ext-imagick": "to generate QR code images"
  92. },
  93. "type": "library",
  94. "autoload": {
  95. "psr-4": {
  96. "BaconQrCode\\": "src/"
  97. }
  98. },
  99. "notification-url": "https://packagist.org/downloads/",
  100. "license": [
  101. "BSD-2-Clause"
  102. ],
  103. "authors": [
  104. {
  105. "name": "Ben Scholzen 'DASPRiD'",
  106. "email": "mail@dasprids.de",
  107. "homepage": "https://dasprids.de/",
  108. "role": "Developer"
  109. }
  110. ],
  111. "description": "BaconQrCode is a QR code generator for PHP.",
  112. "homepage": "https://github.com/Bacon/BaconQrCode",
  113. "support": {
  114. "issues": "https://github.com/Bacon/BaconQrCode/issues",
  115. "source": "https://github.com/Bacon/BaconQrCode/tree/2.0.7"
  116. },
  117. "time": "2022-03-14T02:02:36+00:00"
  118. },
  119. {
  120. "name": "bitwasp/bech32",
  121. "version": "v0.0.1",
  122. "source": {
  123. "type": "git",
  124. "url": "https://github.com/Bit-Wasp/bech32.git",
  125. "reference": "e1ea58c848a4ec59d81b697b3dfe9cc99968d0e7"
  126. },
  127. "dist": {
  128. "type": "zip",
  129. "url": "https://api.github.com/repos/Bit-Wasp/bech32/zipball/e1ea58c848a4ec59d81b697b3dfe9cc99968d0e7",
  130. "reference": "e1ea58c848a4ec59d81b697b3dfe9cc99968d0e7",
  131. "shasum": ""
  132. },
  133. "require-dev": {
  134. "phpunit/phpunit": "^5.4.0",
  135. "squizlabs/php_codesniffer": "^2.0.0"
  136. },
  137. "type": "library",
  138. "autoload": {
  139. "files": [
  140. "src/bech32.php"
  141. ],
  142. "psr-4": {
  143. "BitWasp\\Bech32\\": "src/"
  144. }
  145. },
  146. "notification-url": "https://packagist.org/downloads/",
  147. "license": [
  148. "Unlicense"
  149. ],
  150. "authors": [
  151. {
  152. "name": "Thomas Kerin",
  153. "homepage": "https://thomaskerin.io",
  154. "role": "Author"
  155. }
  156. ],
  157. "description": "Pure (no dependencies) implementation of bech32",
  158. "homepage": "https://github.com/bit-wasp/bech32",
  159. "support": {
  160. "issues": "https://github.com/Bit-Wasp/bech32/issues",
  161. "source": "https://github.com/Bit-Wasp/bech32/tree/more-tests"
  162. },
  163. "time": "2018-02-05T22:23:47+00:00"
  164. },
  165. {
  166. "name": "bitwasp/bitcoin",
  167. "version": "v1.0.4",
  168. "source": {
  169. "type": "git",
  170. "url": "https://github.com/Bit-Wasp/bitcoin-php.git",
  171. "reference": "65ff8384a15e805effcf600fb08cef3a0fc63824"
  172. },
  173. "dist": {
  174. "type": "zip",
  175. "url": "https://api.github.com/repos/Bit-Wasp/bitcoin-php/zipball/65ff8384a15e805effcf600fb08cef3a0fc63824",
  176. "reference": "65ff8384a15e805effcf600fb08cef3a0fc63824",
  177. "shasum": ""
  178. },
  179. "require": {
  180. "bitwasp/bech32": "^0.0.1",
  181. "bitwasp/buffertools": "^0.5.0",
  182. "composer/semver": "^1.4.0",
  183. "lastguest/murmurhash": "v2.0.0",
  184. "mdanter/ecc": "^0.5.0",
  185. "php-64bit": ">=7.0",
  186. "pleonasm/merkle-tree": "1.0.0"
  187. },
  188. "require-dev": {
  189. "bitwasp/bitcoinconsensus": "v3.0.0",
  190. "bitwasp/secp256k1-php": "^v0.2.0",
  191. "ext-json": "*",
  192. "nbobtc/bitcoind-php": "v2.0.2",
  193. "phpunit/phpunit": "^5.4.0",
  194. "squizlabs/php_codesniffer": "^2.0.0"
  195. },
  196. "suggest": {
  197. "ext-bitcoinconsensus": "The bitcoinconsensus library for safest possible script verification",
  198. "ext-secp256k1": "The secp256k1 library for fast and safe elliptic curve operations"
  199. },
  200. "type": "library",
  201. "autoload": {
  202. "files": [
  203. "src/Script/functions.php"
  204. ],
  205. "psr-4": {
  206. "BitWasp\\Bitcoin\\": "src/"
  207. }
  208. },
  209. "notification-url": "https://packagist.org/downloads/",
  210. "license": [
  211. "Unlicense"
  212. ],
  213. "authors": [
  214. {
  215. "name": "Thomas Kerin",
  216. "homepage": "https://thomaskerin.io",
  217. "role": "Author"
  218. }
  219. ],
  220. "description": "PHP Bitcoin library with functions for transactions, signatures, serialization, Random/Deterministic ECDSA keys, blocks, RPC bindings",
  221. "homepage": "https://github.com/bit-wasp/bitcoin-php",
  222. "support": {
  223. "issues": "https://github.com/Bit-Wasp/bitcoin-php/issues",
  224. "source": "https://github.com/Bit-Wasp/bitcoin-php/tree/v1.0.4"
  225. },
  226. "time": "2019-12-10T23:28:26+00:00"
  227. },
  228. {
  229. "name": "bitwasp/buffertools",
  230. "version": "v0.5.7",
  231. "source": {
  232. "type": "git",
  233. "url": "https://github.com/Bit-Wasp/buffertools-php.git",
  234. "reference": "133746d0b514e0016d8479b54aa97475405a9f1f"
  235. },
  236. "dist": {
  237. "type": "zip",
  238. "url": "https://api.github.com/repos/Bit-Wasp/buffertools-php/zipball/133746d0b514e0016d8479b54aa97475405a9f1f",
  239. "reference": "133746d0b514e0016d8479b54aa97475405a9f1f",
  240. "shasum": ""
  241. },
  242. "require": {
  243. "php-64bit": ">=7.0.0"
  244. },
  245. "require-dev": {
  246. "phpunit/phpunit": "^6.0",
  247. "squizlabs/php_codesniffer": "~2.0"
  248. },
  249. "type": "library",
  250. "autoload": {
  251. "psr-4": {
  252. "BitWasp\\Buffertools\\": "src/Buffertools/"
  253. }
  254. },
  255. "notification-url": "https://packagist.org/downloads/",
  256. "license": [
  257. "MIT"
  258. ],
  259. "authors": [
  260. {
  261. "name": "Thomas Kerin",
  262. "homepage": "https://thomaskerin.io"
  263. },
  264. {
  265. "name": "Ruben de Vries",
  266. "email": "ruben@rubensayshi.com"
  267. }
  268. ],
  269. "description": "Toolbox for working with binary and hex data. Similar to NodeJS Buffer.",
  270. "support": {
  271. "issues": "https://github.com/Bit-Wasp/buffertools-php/issues",
  272. "source": "https://github.com/Bit-Wasp/buffertools-php/tree/v0.5.7"
  273. },
  274. "time": "2020-01-17T21:31:49+00:00"
  275. },
  276. {
  277. "name": "brick/math",
  278. "version": "0.9.3",
  279. "source": {
  280. "type": "git",
  281. "url": "https://github.com/brick/math.git",
  282. "reference": "ca57d18f028f84f777b2168cd1911b0dee2343ae"
  283. },
  284. "dist": {
  285. "type": "zip",
  286. "url": "https://api.github.com/repos/brick/math/zipball/ca57d18f028f84f777b2168cd1911b0dee2343ae",
  287. "reference": "ca57d18f028f84f777b2168cd1911b0dee2343ae",
  288. "shasum": ""
  289. },
  290. "require": {
  291. "ext-json": "*",
  292. "php": "^7.1 || ^8.0"
  293. },
  294. "require-dev": {
  295. "php-coveralls/php-coveralls": "^2.2",
  296. "phpunit/phpunit": "^7.5.15 || ^8.5 || ^9.0",
  297. "vimeo/psalm": "4.9.2"
  298. },
  299. "type": "library",
  300. "autoload": {
  301. "psr-4": {
  302. "Brick\\Math\\": "src/"
  303. }
  304. },
  305. "notification-url": "https://packagist.org/downloads/",
  306. "license": [
  307. "MIT"
  308. ],
  309. "description": "Arbitrary-precision arithmetic library",
  310. "keywords": [
  311. "Arbitrary-precision",
  312. "BigInteger",
  313. "BigRational",
  314. "arithmetic",
  315. "bigdecimal",
  316. "bignum",
  317. "brick",
  318. "math"
  319. ],
  320. "support": {
  321. "issues": "https://github.com/brick/math/issues",
  322. "source": "https://github.com/brick/math/tree/0.9.3"
  323. },
  324. "funding": [
  325. {
  326. "url": "https://github.com/BenMorel",
  327. "type": "github"
  328. },
  329. {
  330. "url": "https://tidelift.com/funding/github/packagist/brick/math",
  331. "type": "tidelift"
  332. }
  333. ],
  334. "time": "2021-08-15T20:50:18+00:00"
  335. },
  336. {
  337. "name": "composer/semver",
  338. "version": "1.7.2",
  339. "source": {
  340. "type": "git",
  341. "url": "https://github.com/composer/semver.git",
  342. "reference": "647490bbcaf7fc4891c58f47b825eb99d19c377a"
  343. },
  344. "dist": {
  345. "type": "zip",
  346. "url": "https://api.github.com/repos/composer/semver/zipball/647490bbcaf7fc4891c58f47b825eb99d19c377a",
  347. "reference": "647490bbcaf7fc4891c58f47b825eb99d19c377a",
  348. "shasum": ""
  349. },
  350. "require": {
  351. "php": "^5.3.2 || ^7.0 || ^8.0"
  352. },
  353. "require-dev": {
  354. "phpunit/phpunit": "^4.5 || ^5.0.5"
  355. },
  356. "type": "library",
  357. "extra": {
  358. "branch-alias": {
  359. "dev-master": "1.x-dev"
  360. }
  361. },
  362. "autoload": {
  363. "psr-4": {
  364. "Composer\\Semver\\": "src"
  365. }
  366. },
  367. "notification-url": "https://packagist.org/downloads/",
  368. "license": [
  369. "MIT"
  370. ],
  371. "authors": [
  372. {
  373. "name": "Nils Adermann",
  374. "email": "naderman@naderman.de",
  375. "homepage": "http://www.naderman.de"
  376. },
  377. {
  378. "name": "Jordi Boggiano",
  379. "email": "j.boggiano@seld.be",
  380. "homepage": "http://seld.be"
  381. },
  382. {
  383. "name": "Rob Bast",
  384. "email": "rob.bast@gmail.com",
  385. "homepage": "http://robbast.nl"
  386. }
  387. ],
  388. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  389. "keywords": [
  390. "semantic",
  391. "semver",
  392. "validation",
  393. "versioning"
  394. ],
  395. "support": {
  396. "irc": "irc://irc.freenode.org/composer",
  397. "issues": "https://github.com/composer/semver/issues",
  398. "source": "https://github.com/composer/semver/tree/1.7.2"
  399. },
  400. "funding": [
  401. {
  402. "url": "https://packagist.com",
  403. "type": "custom"
  404. },
  405. {
  406. "url": "https://github.com/composer",
  407. "type": "github"
  408. },
  409. {
  410. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  411. "type": "tidelift"
  412. }
  413. ],
  414. "time": "2020-12-03T15:47:16+00:00"
  415. },
  416. {
  417. "name": "dasprid/enum",
  418. "version": "1.0.3",
  419. "source": {
  420. "type": "git",
  421. "url": "https://github.com/DASPRiD/Enum.git",
  422. "reference": "5abf82f213618696dda8e3bf6f64dd042d8542b2"
  423. },
  424. "dist": {
  425. "type": "zip",
  426. "url": "https://api.github.com/repos/DASPRiD/Enum/zipball/5abf82f213618696dda8e3bf6f64dd042d8542b2",
  427. "reference": "5abf82f213618696dda8e3bf6f64dd042d8542b2",
  428. "shasum": ""
  429. },
  430. "require-dev": {
  431. "phpunit/phpunit": "^7 | ^8 | ^9",
  432. "squizlabs/php_codesniffer": "^3.4"
  433. },
  434. "type": "library",
  435. "autoload": {
  436. "psr-4": {
  437. "DASPRiD\\Enum\\": "src/"
  438. }
  439. },
  440. "notification-url": "https://packagist.org/downloads/",
  441. "license": [
  442. "BSD-2-Clause"
  443. ],
  444. "authors": [
  445. {
  446. "name": "Ben Scholzen 'DASPRiD'",
  447. "email": "mail@dasprids.de",
  448. "homepage": "https://dasprids.de/",
  449. "role": "Developer"
  450. }
  451. ],
  452. "description": "PHP 7.1 enum implementation",
  453. "keywords": [
  454. "enum",
  455. "map"
  456. ],
  457. "support": {
  458. "issues": "https://github.com/DASPRiD/Enum/issues",
  459. "source": "https://github.com/DASPRiD/Enum/tree/1.0.3"
  460. },
  461. "time": "2020-10-02T16:03:48+00:00"
  462. },
  463. {
  464. "name": "doctrine/inflector",
  465. "version": "2.0.4",
  466. "source": {
  467. "type": "git",
  468. "url": "https://github.com/doctrine/inflector.git",
  469. "reference": "8b7ff3e4b7de6b2c84da85637b59fd2880ecaa89"
  470. },
  471. "dist": {
  472. "type": "zip",
  473. "url": "https://api.github.com/repos/doctrine/inflector/zipball/8b7ff3e4b7de6b2c84da85637b59fd2880ecaa89",
  474. "reference": "8b7ff3e4b7de6b2c84da85637b59fd2880ecaa89",
  475. "shasum": ""
  476. },
  477. "require": {
  478. "php": "^7.2 || ^8.0"
  479. },
  480. "require-dev": {
  481. "doctrine/coding-standard": "^8.2",
  482. "phpstan/phpstan": "^0.12",
  483. "phpstan/phpstan-phpunit": "^0.12",
  484. "phpstan/phpstan-strict-rules": "^0.12",
  485. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0",
  486. "vimeo/psalm": "^4.10"
  487. },
  488. "type": "library",
  489. "autoload": {
  490. "psr-4": {
  491. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  492. }
  493. },
  494. "notification-url": "https://packagist.org/downloads/",
  495. "license": [
  496. "MIT"
  497. ],
  498. "authors": [
  499. {
  500. "name": "Guilherme Blanco",
  501. "email": "guilhermeblanco@gmail.com"
  502. },
  503. {
  504. "name": "Roman Borschel",
  505. "email": "roman@code-factory.org"
  506. },
  507. {
  508. "name": "Benjamin Eberlei",
  509. "email": "kontakt@beberlei.de"
  510. },
  511. {
  512. "name": "Jonathan Wage",
  513. "email": "jonwage@gmail.com"
  514. },
  515. {
  516. "name": "Johannes Schmitt",
  517. "email": "schmittjoh@gmail.com"
  518. }
  519. ],
  520. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  521. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  522. "keywords": [
  523. "inflection",
  524. "inflector",
  525. "lowercase",
  526. "manipulation",
  527. "php",
  528. "plural",
  529. "singular",
  530. "strings",
  531. "uppercase",
  532. "words"
  533. ],
  534. "support": {
  535. "issues": "https://github.com/doctrine/inflector/issues",
  536. "source": "https://github.com/doctrine/inflector/tree/2.0.4"
  537. },
  538. "funding": [
  539. {
  540. "url": "https://www.doctrine-project.org/sponsorship.html",
  541. "type": "custom"
  542. },
  543. {
  544. "url": "https://www.patreon.com/phpdoctrine",
  545. "type": "patreon"
  546. },
  547. {
  548. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  549. "type": "tidelift"
  550. }
  551. ],
  552. "time": "2021-10-22T20:16:43+00:00"
  553. },
  554. {
  555. "name": "doctrine/lexer",
  556. "version": "1.2.3",
  557. "source": {
  558. "type": "git",
  559. "url": "https://github.com/doctrine/lexer.git",
  560. "reference": "c268e882d4dbdd85e36e4ad69e02dc284f89d229"
  561. },
  562. "dist": {
  563. "type": "zip",
  564. "url": "https://api.github.com/repos/doctrine/lexer/zipball/c268e882d4dbdd85e36e4ad69e02dc284f89d229",
  565. "reference": "c268e882d4dbdd85e36e4ad69e02dc284f89d229",
  566. "shasum": ""
  567. },
  568. "require": {
  569. "php": "^7.1 || ^8.0"
  570. },
  571. "require-dev": {
  572. "doctrine/coding-standard": "^9.0",
  573. "phpstan/phpstan": "^1.3",
  574. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  575. "vimeo/psalm": "^4.11"
  576. },
  577. "type": "library",
  578. "autoload": {
  579. "psr-4": {
  580. "Doctrine\\Common\\Lexer\\": "lib/Doctrine/Common/Lexer"
  581. }
  582. },
  583. "notification-url": "https://packagist.org/downloads/",
  584. "license": [
  585. "MIT"
  586. ],
  587. "authors": [
  588. {
  589. "name": "Guilherme Blanco",
  590. "email": "guilhermeblanco@gmail.com"
  591. },
  592. {
  593. "name": "Roman Borschel",
  594. "email": "roman@code-factory.org"
  595. },
  596. {
  597. "name": "Johannes Schmitt",
  598. "email": "schmittjoh@gmail.com"
  599. }
  600. ],
  601. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  602. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  603. "keywords": [
  604. "annotations",
  605. "docblock",
  606. "lexer",
  607. "parser",
  608. "php"
  609. ],
  610. "support": {
  611. "issues": "https://github.com/doctrine/lexer/issues",
  612. "source": "https://github.com/doctrine/lexer/tree/1.2.3"
  613. },
  614. "funding": [
  615. {
  616. "url": "https://www.doctrine-project.org/sponsorship.html",
  617. "type": "custom"
  618. },
  619. {
  620. "url": "https://www.patreon.com/phpdoctrine",
  621. "type": "patreon"
  622. },
  623. {
  624. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  625. "type": "tidelift"
  626. }
  627. ],
  628. "time": "2022-02-28T11:07:21+00:00"
  629. },
  630. {
  631. "name": "dragonmantank/cron-expression",
  632. "version": "v3.3.1",
  633. "source": {
  634. "type": "git",
  635. "url": "https://github.com/dragonmantank/cron-expression.git",
  636. "reference": "be85b3f05b46c39bbc0d95f6c071ddff669510fa"
  637. },
  638. "dist": {
  639. "type": "zip",
  640. "url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/be85b3f05b46c39bbc0d95f6c071ddff669510fa",
  641. "reference": "be85b3f05b46c39bbc0d95f6c071ddff669510fa",
  642. "shasum": ""
  643. },
  644. "require": {
  645. "php": "^7.2|^8.0",
  646. "webmozart/assert": "^1.0"
  647. },
  648. "replace": {
  649. "mtdowling/cron-expression": "^1.0"
  650. },
  651. "require-dev": {
  652. "phpstan/extension-installer": "^1.0",
  653. "phpstan/phpstan": "^1.0",
  654. "phpstan/phpstan-webmozart-assert": "^1.0",
  655. "phpunit/phpunit": "^7.0|^8.0|^9.0"
  656. },
  657. "type": "library",
  658. "autoload": {
  659. "psr-4": {
  660. "Cron\\": "src/Cron/"
  661. }
  662. },
  663. "notification-url": "https://packagist.org/downloads/",
  664. "license": [
  665. "MIT"
  666. ],
  667. "authors": [
  668. {
  669. "name": "Chris Tankersley",
  670. "email": "chris@ctankersley.com",
  671. "homepage": "https://github.com/dragonmantank"
  672. }
  673. ],
  674. "description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due",
  675. "keywords": [
  676. "cron",
  677. "schedule"
  678. ],
  679. "support": {
  680. "issues": "https://github.com/dragonmantank/cron-expression/issues",
  681. "source": "https://github.com/dragonmantank/cron-expression/tree/v3.3.1"
  682. },
  683. "funding": [
  684. {
  685. "url": "https://github.com/dragonmantank",
  686. "type": "github"
  687. }
  688. ],
  689. "time": "2022-01-18T15:43:28+00:00"
  690. },
  691. {
  692. "name": "earnp/laravel-google-authenticator",
  693. "version": "dev-master",
  694. "source": {
  695. "type": "git",
  696. "url": "https://github.com/lusongcn/laravel-google-authenticator.git",
  697. "reference": "dfecec37b8c3961eb124888b93539d7b0e05b00d"
  698. },
  699. "dist": {
  700. "type": "zip",
  701. "url": "https://api.github.com/repos/lusongcn/laravel-google-authenticator/zipball/dfecec37b8c3961eb124888b93539d7b0e05b00d",
  702. "reference": "dfecec37b8c3961eb124888b93539d7b0e05b00d",
  703. "shasum": ""
  704. },
  705. "default-branch": true,
  706. "type": "library",
  707. "autoload": {
  708. "psr-4": {
  709. "Earnp\\GoogleAuthenticator\\": "src/"
  710. }
  711. },
  712. "notification-url": "https://packagist.org/downloads/",
  713. "license": [
  714. "MIT"
  715. ],
  716. "authors": [
  717. {
  718. "name": "lusong",
  719. "email": "714628712@qq.com",
  720. "homepage": "https://phpartisan.cn"
  721. }
  722. ],
  723. "description": "Laravel 5 GoogleAuthenticator Package",
  724. "support": {
  725. "issues": "https://github.com/lusongcn/laravel-google-authenticator/issues",
  726. "source": "https://github.com/lusongcn/laravel-google-authenticator/tree/master"
  727. },
  728. "time": "2020-09-10T15:15:35+00:00"
  729. },
  730. {
  731. "name": "egulias/email-validator",
  732. "version": "2.1.25",
  733. "source": {
  734. "type": "git",
  735. "url": "https://github.com/egulias/EmailValidator.git",
  736. "reference": "0dbf5d78455d4d6a41d186da50adc1122ec066f4"
  737. },
  738. "dist": {
  739. "type": "zip",
  740. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/0dbf5d78455d4d6a41d186da50adc1122ec066f4",
  741. "reference": "0dbf5d78455d4d6a41d186da50adc1122ec066f4",
  742. "shasum": ""
  743. },
  744. "require": {
  745. "doctrine/lexer": "^1.0.1",
  746. "php": ">=5.5",
  747. "symfony/polyfill-intl-idn": "^1.10"
  748. },
  749. "require-dev": {
  750. "dominicsayers/isemail": "^3.0.7",
  751. "phpunit/phpunit": "^4.8.36|^7.5.15",
  752. "satooshi/php-coveralls": "^1.0.1"
  753. },
  754. "suggest": {
  755. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  756. },
  757. "type": "library",
  758. "extra": {
  759. "branch-alias": {
  760. "dev-master": "2.1.x-dev"
  761. }
  762. },
  763. "autoload": {
  764. "psr-4": {
  765. "Egulias\\EmailValidator\\": "src"
  766. }
  767. },
  768. "notification-url": "https://packagist.org/downloads/",
  769. "license": [
  770. "MIT"
  771. ],
  772. "authors": [
  773. {
  774. "name": "Eduardo Gulias Davis"
  775. }
  776. ],
  777. "description": "A library for validating emails against several RFCs",
  778. "homepage": "https://github.com/egulias/EmailValidator",
  779. "keywords": [
  780. "email",
  781. "emailvalidation",
  782. "emailvalidator",
  783. "validation",
  784. "validator"
  785. ],
  786. "support": {
  787. "issues": "https://github.com/egulias/EmailValidator/issues",
  788. "source": "https://github.com/egulias/EmailValidator/tree/2.1.25"
  789. },
  790. "funding": [
  791. {
  792. "url": "https://github.com/egulias",
  793. "type": "github"
  794. }
  795. ],
  796. "time": "2020-12-29T14:50:06+00:00"
  797. },
  798. {
  799. "name": "ezyang/htmlpurifier",
  800. "version": "v4.14.0",
  801. "source": {
  802. "type": "git",
  803. "url": "https://github.com/ezyang/htmlpurifier.git",
  804. "reference": "12ab42bd6e742c70c0a52f7b82477fcd44e64b75"
  805. },
  806. "dist": {
  807. "type": "zip",
  808. "url": "https://api.github.com/repos/ezyang/htmlpurifier/zipball/12ab42bd6e742c70c0a52f7b82477fcd44e64b75",
  809. "reference": "12ab42bd6e742c70c0a52f7b82477fcd44e64b75",
  810. "shasum": ""
  811. },
  812. "require": {
  813. "php": ">=5.2"
  814. },
  815. "type": "library",
  816. "autoload": {
  817. "files": [
  818. "library/HTMLPurifier.composer.php"
  819. ],
  820. "psr-0": {
  821. "HTMLPurifier": "library/"
  822. },
  823. "exclude-from-classmap": [
  824. "/library/HTMLPurifier/Language/"
  825. ]
  826. },
  827. "notification-url": "https://packagist.org/downloads/",
  828. "license": [
  829. "LGPL-2.1-or-later"
  830. ],
  831. "authors": [
  832. {
  833. "name": "Edward Z. Yang",
  834. "email": "admin@htmlpurifier.org",
  835. "homepage": "http://ezyang.com"
  836. }
  837. ],
  838. "description": "Standards compliant HTML filter written in PHP",
  839. "homepage": "http://htmlpurifier.org/",
  840. "keywords": [
  841. "html"
  842. ],
  843. "support": {
  844. "issues": "https://github.com/ezyang/htmlpurifier/issues",
  845. "source": "https://github.com/ezyang/htmlpurifier/tree/v4.14.0"
  846. },
  847. "time": "2021-12-25T01:21:49+00:00"
  848. },
  849. {
  850. "name": "fenguoz/tron-php",
  851. "version": "1.3.0",
  852. "source": {
  853. "type": "git",
  854. "url": "https://github.com/Fenguoz/tron-php.git",
  855. "reference": "6e39e8e1fb9e7c6bd3e2f589c7eb13378d8bdf5d"
  856. },
  857. "dist": {
  858. "type": "zip",
  859. "url": "https://api.github.com/repos/Fenguoz/tron-php/zipball/6e39e8e1fb9e7c6bd3e2f589c7eb13378d8bdf5d",
  860. "reference": "6e39e8e1fb9e7c6bd3e2f589c7eb13378d8bdf5d",
  861. "shasum": ""
  862. },
  863. "require": {
  864. "iexbase/tron-api": "^2.0 || ^3.0 || ^3.1",
  865. "ionux/phactor": "1.0.8",
  866. "kornrunner/keccak": "^1.0"
  867. },
  868. "require-dev": {
  869. "phpunit/phpunit": "^5.7 || ^7.5"
  870. },
  871. "type": "library",
  872. "autoload": {
  873. "psr-4": {
  874. "Tron\\": "src/"
  875. }
  876. },
  877. "notification-url": "https://packagist.org/downloads/",
  878. "license": [
  879. "MIT"
  880. ],
  881. "authors": [
  882. {
  883. "name": "Fenguoz",
  884. "email": "243944672@qq.com"
  885. }
  886. ],
  887. "description": "Support TRON's TRX and TRC20, which include functions such as address creation, balance query, transaction transfer, query the latest blockchain, query information based on the blockchain, and query information based on the transaction hash",
  888. "homepage": "https://github.com/Fenguoz/tron-php",
  889. "keywords": [
  890. "php",
  891. "trc20",
  892. "tron",
  893. "trx"
  894. ],
  895. "support": {
  896. "issues": "https://github.com/Fenguoz/tron-php/issues",
  897. "source": "https://github.com/Fenguoz/tron-php/tree/1.3.0"
  898. },
  899. "time": "2021-06-01T08:57:59+00:00"
  900. },
  901. {
  902. "name": "fgrosse/phpasn1",
  903. "version": "v2.4.0",
  904. "source": {
  905. "type": "git",
  906. "url": "https://github.com/fgrosse/PHPASN1.git",
  907. "reference": "eef488991d53e58e60c9554b09b1201ca5ba9296"
  908. },
  909. "dist": {
  910. "type": "zip",
  911. "url": "https://api.github.com/repos/fgrosse/PHPASN1/zipball/eef488991d53e58e60c9554b09b1201ca5ba9296",
  912. "reference": "eef488991d53e58e60c9554b09b1201ca5ba9296",
  913. "shasum": ""
  914. },
  915. "require": {
  916. "php": "~7.1.0 || ~7.2.0 || ~7.3.0 || ~7.4.0 || ~8.0.0 || ~8.1.0"
  917. },
  918. "require-dev": {
  919. "php-coveralls/php-coveralls": "~2.0",
  920. "phpunit/phpunit": "^6.3 || ^7.0 || ^8.0"
  921. },
  922. "suggest": {
  923. "ext-bcmath": "BCmath is the fallback extension for big integer calculations",
  924. "ext-curl": "For loading OID information from the web if they have not bee defined statically",
  925. "ext-gmp": "GMP is the preferred extension for big integer calculations",
  926. "phpseclib/bcmath_compat": "BCmath polyfill for servers where neither GMP nor BCmath is available"
  927. },
  928. "type": "library",
  929. "extra": {
  930. "branch-alias": {
  931. "dev-master": "2.0.x-dev"
  932. }
  933. },
  934. "autoload": {
  935. "psr-4": {
  936. "FG\\": "lib/"
  937. }
  938. },
  939. "notification-url": "https://packagist.org/downloads/",
  940. "license": [
  941. "MIT"
  942. ],
  943. "authors": [
  944. {
  945. "name": "Friedrich Große",
  946. "email": "friedrich.grosse@gmail.com",
  947. "homepage": "https://github.com/FGrosse",
  948. "role": "Author"
  949. },
  950. {
  951. "name": "All contributors",
  952. "homepage": "https://github.com/FGrosse/PHPASN1/contributors"
  953. }
  954. ],
  955. "description": "A PHP Framework that allows you to encode and decode arbitrary ASN.1 structures using the ITU-T X.690 Encoding Rules.",
  956. "homepage": "https://github.com/FGrosse/PHPASN1",
  957. "keywords": [
  958. "DER",
  959. "asn.1",
  960. "asn1",
  961. "ber",
  962. "binary",
  963. "decoding",
  964. "encoding",
  965. "x.509",
  966. "x.690",
  967. "x509",
  968. "x690"
  969. ],
  970. "support": {
  971. "issues": "https://github.com/fgrosse/PHPASN1/issues",
  972. "source": "https://github.com/fgrosse/PHPASN1/tree/v2.4.0"
  973. },
  974. "time": "2021-12-11T12:41:06+00:00"
  975. },
  976. {
  977. "name": "fideloper/proxy",
  978. "version": "4.4.2",
  979. "source": {
  980. "type": "git",
  981. "url": "https://github.com/fideloper/TrustedProxy.git",
  982. "reference": "a751f2bc86dd8e6cfef12dc0cbdada82f5a18750"
  983. },
  984. "dist": {
  985. "type": "zip",
  986. "url": "https://api.github.com/repos/fideloper/TrustedProxy/zipball/a751f2bc86dd8e6cfef12dc0cbdada82f5a18750",
  987. "reference": "a751f2bc86dd8e6cfef12dc0cbdada82f5a18750",
  988. "shasum": ""
  989. },
  990. "require": {
  991. "illuminate/contracts": "^5.0|^6.0|^7.0|^8.0|^9.0",
  992. "php": ">=5.4.0"
  993. },
  994. "require-dev": {
  995. "illuminate/http": "^5.0|^6.0|^7.0|^8.0|^9.0",
  996. "mockery/mockery": "^1.0",
  997. "phpunit/phpunit": "^8.5.8|^9.3.3"
  998. },
  999. "type": "library",
  1000. "extra": {
  1001. "laravel": {
  1002. "providers": [
  1003. "Fideloper\\Proxy\\TrustedProxyServiceProvider"
  1004. ]
  1005. }
  1006. },
  1007. "autoload": {
  1008. "psr-4": {
  1009. "Fideloper\\Proxy\\": "src/"
  1010. }
  1011. },
  1012. "notification-url": "https://packagist.org/downloads/",
  1013. "license": [
  1014. "MIT"
  1015. ],
  1016. "authors": [
  1017. {
  1018. "name": "Chris Fidao",
  1019. "email": "fideloper@gmail.com"
  1020. }
  1021. ],
  1022. "description": "Set trusted proxies for Laravel",
  1023. "keywords": [
  1024. "load balancing",
  1025. "proxy",
  1026. "trusted proxy"
  1027. ],
  1028. "support": {
  1029. "issues": "https://github.com/fideloper/TrustedProxy/issues",
  1030. "source": "https://github.com/fideloper/TrustedProxy/tree/4.4.2"
  1031. },
  1032. "time": "2022-02-09T13:33:34+00:00"
  1033. },
  1034. {
  1035. "name": "fruitcake/laravel-cors",
  1036. "version": "v2.2.0",
  1037. "source": {
  1038. "type": "git",
  1039. "url": "https://github.com/fruitcake/laravel-cors.git",
  1040. "reference": "783a74f5e3431d7b9805be8afb60fd0a8f743534"
  1041. },
  1042. "dist": {
  1043. "type": "zip",
  1044. "url": "https://api.github.com/repos/fruitcake/laravel-cors/zipball/783a74f5e3431d7b9805be8afb60fd0a8f743534",
  1045. "reference": "783a74f5e3431d7b9805be8afb60fd0a8f743534",
  1046. "shasum": ""
  1047. },
  1048. "require": {
  1049. "asm89/stack-cors": "^2.0.1",
  1050. "illuminate/contracts": "^6|^7|^8|^9",
  1051. "illuminate/support": "^6|^7|^8|^9",
  1052. "php": ">=7.2"
  1053. },
  1054. "require-dev": {
  1055. "laravel/framework": "^6|^7.24|^8",
  1056. "orchestra/testbench-dusk": "^4|^5|^6|^7",
  1057. "phpunit/phpunit": "^6|^7|^8|^9",
  1058. "squizlabs/php_codesniffer": "^3.5"
  1059. },
  1060. "type": "library",
  1061. "extra": {
  1062. "branch-alias": {
  1063. "dev-master": "2.1-dev"
  1064. },
  1065. "laravel": {
  1066. "providers": [
  1067. "Fruitcake\\Cors\\CorsServiceProvider"
  1068. ]
  1069. }
  1070. },
  1071. "autoload": {
  1072. "psr-4": {
  1073. "Fruitcake\\Cors\\": "src/"
  1074. }
  1075. },
  1076. "notification-url": "https://packagist.org/downloads/",
  1077. "license": [
  1078. "MIT"
  1079. ],
  1080. "authors": [
  1081. {
  1082. "name": "Fruitcake",
  1083. "homepage": "https://fruitcake.nl"
  1084. },
  1085. {
  1086. "name": "Barry vd. Heuvel",
  1087. "email": "barryvdh@gmail.com"
  1088. }
  1089. ],
  1090. "description": "Adds CORS (Cross-Origin Resource Sharing) headers support in your Laravel application",
  1091. "keywords": [
  1092. "api",
  1093. "cors",
  1094. "crossdomain",
  1095. "laravel"
  1096. ],
  1097. "support": {
  1098. "issues": "https://github.com/fruitcake/laravel-cors/issues",
  1099. "source": "https://github.com/fruitcake/laravel-cors/tree/v2.2.0"
  1100. },
  1101. "funding": [
  1102. {
  1103. "url": "https://fruitcake.nl",
  1104. "type": "custom"
  1105. },
  1106. {
  1107. "url": "https://github.com/barryvdh",
  1108. "type": "github"
  1109. }
  1110. ],
  1111. "time": "2022-02-23T14:25:13+00:00"
  1112. },
  1113. {
  1114. "name": "graham-campbell/result-type",
  1115. "version": "v1.0.4",
  1116. "source": {
  1117. "type": "git",
  1118. "url": "https://github.com/GrahamCampbell/Result-Type.git",
  1119. "reference": "0690bde05318336c7221785f2a932467f98b64ca"
  1120. },
  1121. "dist": {
  1122. "type": "zip",
  1123. "url": "https://api.github.com/repos/GrahamCampbell/Result-Type/zipball/0690bde05318336c7221785f2a932467f98b64ca",
  1124. "reference": "0690bde05318336c7221785f2a932467f98b64ca",
  1125. "shasum": ""
  1126. },
  1127. "require": {
  1128. "php": "^7.0 || ^8.0",
  1129. "phpoption/phpoption": "^1.8"
  1130. },
  1131. "require-dev": {
  1132. "phpunit/phpunit": "^6.5.14 || ^7.5.20 || ^8.5.19 || ^9.5.8"
  1133. },
  1134. "type": "library",
  1135. "autoload": {
  1136. "psr-4": {
  1137. "GrahamCampbell\\ResultType\\": "src/"
  1138. }
  1139. },
  1140. "notification-url": "https://packagist.org/downloads/",
  1141. "license": [
  1142. "MIT"
  1143. ],
  1144. "authors": [
  1145. {
  1146. "name": "Graham Campbell",
  1147. "email": "hello@gjcampbell.co.uk",
  1148. "homepage": "https://github.com/GrahamCampbell"
  1149. }
  1150. ],
  1151. "description": "An Implementation Of The Result Type",
  1152. "keywords": [
  1153. "Graham Campbell",
  1154. "GrahamCampbell",
  1155. "Result Type",
  1156. "Result-Type",
  1157. "result"
  1158. ],
  1159. "support": {
  1160. "issues": "https://github.com/GrahamCampbell/Result-Type/issues",
  1161. "source": "https://github.com/GrahamCampbell/Result-Type/tree/v1.0.4"
  1162. },
  1163. "funding": [
  1164. {
  1165. "url": "https://github.com/GrahamCampbell",
  1166. "type": "github"
  1167. },
  1168. {
  1169. "url": "https://tidelift.com/funding/github/packagist/graham-campbell/result-type",
  1170. "type": "tidelift"
  1171. }
  1172. ],
  1173. "time": "2021-11-21T21:41:47+00:00"
  1174. },
  1175. {
  1176. "name": "gregwar/captcha",
  1177. "version": "v1.1.9",
  1178. "source": {
  1179. "type": "git",
  1180. "url": "https://github.com/Gregwar/Captcha.git",
  1181. "reference": "4bb668e6b40e3205a020ca5ee4ca8cff8b8780c5"
  1182. },
  1183. "dist": {
  1184. "type": "zip",
  1185. "url": "https://api.github.com/repos/Gregwar/Captcha/zipball/4bb668e6b40e3205a020ca5ee4ca8cff8b8780c5",
  1186. "reference": "4bb668e6b40e3205a020ca5ee4ca8cff8b8780c5",
  1187. "shasum": ""
  1188. },
  1189. "require": {
  1190. "ext-gd": "*",
  1191. "ext-mbstring": "*",
  1192. "php": ">=5.3.0",
  1193. "symfony/finder": "*"
  1194. },
  1195. "require-dev": {
  1196. "phpunit/phpunit": "^6.4"
  1197. },
  1198. "type": "captcha",
  1199. "autoload": {
  1200. "psr-4": {
  1201. "Gregwar\\": "src/Gregwar"
  1202. }
  1203. },
  1204. "notification-url": "https://packagist.org/downloads/",
  1205. "license": [
  1206. "MIT"
  1207. ],
  1208. "authors": [
  1209. {
  1210. "name": "Grégoire Passault",
  1211. "email": "g.passault@gmail.com",
  1212. "homepage": "http://www.gregwar.com/"
  1213. },
  1214. {
  1215. "name": "Jeremy Livingston",
  1216. "email": "jeremy.j.livingston@gmail.com"
  1217. }
  1218. ],
  1219. "description": "Captcha generator",
  1220. "homepage": "https://github.com/Gregwar/Captcha",
  1221. "keywords": [
  1222. "bot",
  1223. "captcha",
  1224. "spam"
  1225. ],
  1226. "support": {
  1227. "issues": "https://github.com/Gregwar/Captcha/issues",
  1228. "source": "https://github.com/Gregwar/Captcha/tree/master"
  1229. },
  1230. "time": "2020-03-24T14:39:05+00:00"
  1231. },
  1232. {
  1233. "name": "guzzlehttp/guzzle",
  1234. "version": "7.4.5",
  1235. "source": {
  1236. "type": "git",
  1237. "url": "https://github.com/guzzle/guzzle.git",
  1238. "reference": "1dd98b0564cb3f6bd16ce683cb755f94c10fbd82"
  1239. },
  1240. "dist": {
  1241. "type": "zip",
  1242. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/1dd98b0564cb3f6bd16ce683cb755f94c10fbd82",
  1243. "reference": "1dd98b0564cb3f6bd16ce683cb755f94c10fbd82",
  1244. "shasum": ""
  1245. },
  1246. "require": {
  1247. "ext-json": "*",
  1248. "guzzlehttp/promises": "^1.5",
  1249. "guzzlehttp/psr7": "^1.9 || ^2.4",
  1250. "php": "^7.2.5 || ^8.0",
  1251. "psr/http-client": "^1.0",
  1252. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  1253. },
  1254. "provide": {
  1255. "psr/http-client-implementation": "1.0"
  1256. },
  1257. "require-dev": {
  1258. "bamarni/composer-bin-plugin": "^1.4.1",
  1259. "ext-curl": "*",
  1260. "php-http/client-integration-tests": "^3.0",
  1261. "phpunit/phpunit": "^8.5.5 || ^9.3.5",
  1262. "psr/log": "^1.1 || ^2.0 || ^3.0"
  1263. },
  1264. "suggest": {
  1265. "ext-curl": "Required for CURL handler support",
  1266. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  1267. "psr/log": "Required for using the Log middleware"
  1268. },
  1269. "type": "library",
  1270. "extra": {
  1271. "branch-alias": {
  1272. "dev-master": "7.4-dev"
  1273. }
  1274. },
  1275. "autoload": {
  1276. "files": [
  1277. "src/functions_include.php"
  1278. ],
  1279. "psr-4": {
  1280. "GuzzleHttp\\": "src/"
  1281. }
  1282. },
  1283. "notification-url": "https://packagist.org/downloads/",
  1284. "license": [
  1285. "MIT"
  1286. ],
  1287. "authors": [
  1288. {
  1289. "name": "Graham Campbell",
  1290. "email": "hello@gjcampbell.co.uk",
  1291. "homepage": "https://github.com/GrahamCampbell"
  1292. },
  1293. {
  1294. "name": "Michael Dowling",
  1295. "email": "mtdowling@gmail.com",
  1296. "homepage": "https://github.com/mtdowling"
  1297. },
  1298. {
  1299. "name": "Jeremy Lindblom",
  1300. "email": "jeremeamia@gmail.com",
  1301. "homepage": "https://github.com/jeremeamia"
  1302. },
  1303. {
  1304. "name": "George Mponos",
  1305. "email": "gmponos@gmail.com",
  1306. "homepage": "https://github.com/gmponos"
  1307. },
  1308. {
  1309. "name": "Tobias Nyholm",
  1310. "email": "tobias.nyholm@gmail.com",
  1311. "homepage": "https://github.com/Nyholm"
  1312. },
  1313. {
  1314. "name": "Márk Sági-Kazár",
  1315. "email": "mark.sagikazar@gmail.com",
  1316. "homepage": "https://github.com/sagikazarmark"
  1317. },
  1318. {
  1319. "name": "Tobias Schultze",
  1320. "email": "webmaster@tubo-world.de",
  1321. "homepage": "https://github.com/Tobion"
  1322. }
  1323. ],
  1324. "description": "Guzzle is a PHP HTTP client library",
  1325. "keywords": [
  1326. "client",
  1327. "curl",
  1328. "framework",
  1329. "http",
  1330. "http client",
  1331. "psr-18",
  1332. "psr-7",
  1333. "rest",
  1334. "web service"
  1335. ],
  1336. "support": {
  1337. "issues": "https://github.com/guzzle/guzzle/issues",
  1338. "source": "https://github.com/guzzle/guzzle/tree/7.4.5"
  1339. },
  1340. "funding": [
  1341. {
  1342. "url": "https://github.com/GrahamCampbell",
  1343. "type": "github"
  1344. },
  1345. {
  1346. "url": "https://github.com/Nyholm",
  1347. "type": "github"
  1348. },
  1349. {
  1350. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
  1351. "type": "tidelift"
  1352. }
  1353. ],
  1354. "time": "2022-06-20T22:16:13+00:00"
  1355. },
  1356. {
  1357. "name": "guzzlehttp/promises",
  1358. "version": "1.5.1",
  1359. "source": {
  1360. "type": "git",
  1361. "url": "https://github.com/guzzle/promises.git",
  1362. "reference": "fe752aedc9fd8fcca3fe7ad05d419d32998a06da"
  1363. },
  1364. "dist": {
  1365. "type": "zip",
  1366. "url": "https://api.github.com/repos/guzzle/promises/zipball/fe752aedc9fd8fcca3fe7ad05d419d32998a06da",
  1367. "reference": "fe752aedc9fd8fcca3fe7ad05d419d32998a06da",
  1368. "shasum": ""
  1369. },
  1370. "require": {
  1371. "php": ">=5.5"
  1372. },
  1373. "require-dev": {
  1374. "symfony/phpunit-bridge": "^4.4 || ^5.1"
  1375. },
  1376. "type": "library",
  1377. "extra": {
  1378. "branch-alias": {
  1379. "dev-master": "1.5-dev"
  1380. }
  1381. },
  1382. "autoload": {
  1383. "files": [
  1384. "src/functions_include.php"
  1385. ],
  1386. "psr-4": {
  1387. "GuzzleHttp\\Promise\\": "src/"
  1388. }
  1389. },
  1390. "notification-url": "https://packagist.org/downloads/",
  1391. "license": [
  1392. "MIT"
  1393. ],
  1394. "authors": [
  1395. {
  1396. "name": "Graham Campbell",
  1397. "email": "hello@gjcampbell.co.uk",
  1398. "homepage": "https://github.com/GrahamCampbell"
  1399. },
  1400. {
  1401. "name": "Michael Dowling",
  1402. "email": "mtdowling@gmail.com",
  1403. "homepage": "https://github.com/mtdowling"
  1404. },
  1405. {
  1406. "name": "Tobias Nyholm",
  1407. "email": "tobias.nyholm@gmail.com",
  1408. "homepage": "https://github.com/Nyholm"
  1409. },
  1410. {
  1411. "name": "Tobias Schultze",
  1412. "email": "webmaster@tubo-world.de",
  1413. "homepage": "https://github.com/Tobion"
  1414. }
  1415. ],
  1416. "description": "Guzzle promises library",
  1417. "keywords": [
  1418. "promise"
  1419. ],
  1420. "support": {
  1421. "issues": "https://github.com/guzzle/promises/issues",
  1422. "source": "https://github.com/guzzle/promises/tree/1.5.1"
  1423. },
  1424. "funding": [
  1425. {
  1426. "url": "https://github.com/GrahamCampbell",
  1427. "type": "github"
  1428. },
  1429. {
  1430. "url": "https://github.com/Nyholm",
  1431. "type": "github"
  1432. },
  1433. {
  1434. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  1435. "type": "tidelift"
  1436. }
  1437. ],
  1438. "time": "2021-10-22T20:56:57+00:00"
  1439. },
  1440. {
  1441. "name": "guzzlehttp/psr7",
  1442. "version": "2.4.0",
  1443. "source": {
  1444. "type": "git",
  1445. "url": "https://github.com/guzzle/psr7.git",
  1446. "reference": "13388f00956b1503577598873fffb5ae994b5737"
  1447. },
  1448. "dist": {
  1449. "type": "zip",
  1450. "url": "https://api.github.com/repos/guzzle/psr7/zipball/13388f00956b1503577598873fffb5ae994b5737",
  1451. "reference": "13388f00956b1503577598873fffb5ae994b5737",
  1452. "shasum": ""
  1453. },
  1454. "require": {
  1455. "php": "^7.2.5 || ^8.0",
  1456. "psr/http-factory": "^1.0",
  1457. "psr/http-message": "^1.0",
  1458. "ralouphie/getallheaders": "^3.0"
  1459. },
  1460. "provide": {
  1461. "psr/http-factory-implementation": "1.0",
  1462. "psr/http-message-implementation": "1.0"
  1463. },
  1464. "require-dev": {
  1465. "bamarni/composer-bin-plugin": "^1.4.1",
  1466. "http-interop/http-factory-tests": "^0.9",
  1467. "phpunit/phpunit": "^8.5.8 || ^9.3.10"
  1468. },
  1469. "suggest": {
  1470. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  1471. },
  1472. "type": "library",
  1473. "extra": {
  1474. "branch-alias": {
  1475. "dev-master": "2.4-dev"
  1476. }
  1477. },
  1478. "autoload": {
  1479. "psr-4": {
  1480. "GuzzleHttp\\Psr7\\": "src/"
  1481. }
  1482. },
  1483. "notification-url": "https://packagist.org/downloads/",
  1484. "license": [
  1485. "MIT"
  1486. ],
  1487. "authors": [
  1488. {
  1489. "name": "Graham Campbell",
  1490. "email": "hello@gjcampbell.co.uk",
  1491. "homepage": "https://github.com/GrahamCampbell"
  1492. },
  1493. {
  1494. "name": "Michael Dowling",
  1495. "email": "mtdowling@gmail.com",
  1496. "homepage": "https://github.com/mtdowling"
  1497. },
  1498. {
  1499. "name": "George Mponos",
  1500. "email": "gmponos@gmail.com",
  1501. "homepage": "https://github.com/gmponos"
  1502. },
  1503. {
  1504. "name": "Tobias Nyholm",
  1505. "email": "tobias.nyholm@gmail.com",
  1506. "homepage": "https://github.com/Nyholm"
  1507. },
  1508. {
  1509. "name": "Márk Sági-Kazár",
  1510. "email": "mark.sagikazar@gmail.com",
  1511. "homepage": "https://github.com/sagikazarmark"
  1512. },
  1513. {
  1514. "name": "Tobias Schultze",
  1515. "email": "webmaster@tubo-world.de",
  1516. "homepage": "https://github.com/Tobion"
  1517. },
  1518. {
  1519. "name": "Márk Sági-Kazár",
  1520. "email": "mark.sagikazar@gmail.com",
  1521. "homepage": "https://sagikazarmark.hu"
  1522. }
  1523. ],
  1524. "description": "PSR-7 message implementation that also provides common utility methods",
  1525. "keywords": [
  1526. "http",
  1527. "message",
  1528. "psr-7",
  1529. "request",
  1530. "response",
  1531. "stream",
  1532. "uri",
  1533. "url"
  1534. ],
  1535. "support": {
  1536. "issues": "https://github.com/guzzle/psr7/issues",
  1537. "source": "https://github.com/guzzle/psr7/tree/2.4.0"
  1538. },
  1539. "funding": [
  1540. {
  1541. "url": "https://github.com/GrahamCampbell",
  1542. "type": "github"
  1543. },
  1544. {
  1545. "url": "https://github.com/Nyholm",
  1546. "type": "github"
  1547. },
  1548. {
  1549. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  1550. "type": "tidelift"
  1551. }
  1552. ],
  1553. "time": "2022-06-20T21:43:11+00:00"
  1554. },
  1555. {
  1556. "name": "hhxsv5/laravel-s",
  1557. "version": "v3.7.31",
  1558. "source": {
  1559. "type": "git",
  1560. "url": "https://github.com/hhxsv5/laravel-s.git",
  1561. "reference": "f2bb2f70e1761e49c37be26ecb042ff2f3e25bc2"
  1562. },
  1563. "dist": {
  1564. "type": "zip",
  1565. "url": "https://api.github.com/repos/hhxsv5/laravel-s/zipball/f2bb2f70e1761e49c37be26ecb042ff2f3e25bc2",
  1566. "reference": "f2bb2f70e1761e49c37be26ecb042ff2f3e25bc2",
  1567. "shasum": ""
  1568. },
  1569. "require": {
  1570. "ext-curl": "*",
  1571. "ext-json": "*",
  1572. "ext-pcntl": "*",
  1573. "php": ">=5.5.9",
  1574. "swoole/ide-helper": "@dev",
  1575. "symfony/console": ">=2.7.0"
  1576. },
  1577. "require-dev": {
  1578. "phpunit/phpunit": ">=4.8.36"
  1579. },
  1580. "suggest": {
  1581. "ext-inotify": "Inotify, used to real-time reload.",
  1582. "ext-swoole": "Coroutine-based concurrency library for PHP, require >= 1.7.19."
  1583. },
  1584. "bin": [
  1585. "bin/fswatch"
  1586. ],
  1587. "type": "library",
  1588. "extra": {
  1589. "laravel": {
  1590. "providers": [
  1591. "Hhxsv5\\LaravelS\\Illuminate\\LaravelSServiceProvider"
  1592. ]
  1593. }
  1594. },
  1595. "autoload": {
  1596. "psr-4": {
  1597. "Hhxsv5\\LaravelS\\": "src"
  1598. }
  1599. },
  1600. "notification-url": "https://packagist.org/downloads/",
  1601. "license": [
  1602. "MIT"
  1603. ],
  1604. "authors": [
  1605. {
  1606. "name": "Xie Biao",
  1607. "email": "hhxsv5@sina.com"
  1608. }
  1609. ],
  1610. "description": "🚀 LaravelS is an out-of-the-box adapter between Swoole and Laravel/Lumen.",
  1611. "homepage": "https://github.com/hhxsv5/laravel-s",
  1612. "keywords": [
  1613. "LaravelS",
  1614. "async",
  1615. "coroutine",
  1616. "http",
  1617. "inotify",
  1618. "laravel",
  1619. "laravel-s",
  1620. "lumen",
  1621. "performance",
  1622. "process",
  1623. "server",
  1624. "swoole",
  1625. "task",
  1626. "tcp",
  1627. "timer",
  1628. "udp",
  1629. "websocket"
  1630. ],
  1631. "support": {
  1632. "issues": "https://github.com/hhxsv5/laravel-s/issues",
  1633. "source": "https://github.com/hhxsv5/laravel-s"
  1634. },
  1635. "funding": [
  1636. {
  1637. "url": "https://gitee.com/hhxsv5/laravel-s?donate=true",
  1638. "type": "custom"
  1639. },
  1640. {
  1641. "url": "https://www.blockchain.com/btc/address/367HnAzVTAEk8offesDhcsCQswnugsE54u",
  1642. "type": "custom"
  1643. },
  1644. {
  1645. "url": "https://www.paypal.me/hhxsv5",
  1646. "type": "custom"
  1647. }
  1648. ],
  1649. "time": "2022-04-18T10:42:39+00:00"
  1650. },
  1651. {
  1652. "name": "iexbase/tron-api",
  1653. "version": "v3.1.2",
  1654. "source": {
  1655. "type": "git",
  1656. "url": "https://github.com/iexbase/tron-api.git",
  1657. "reference": "fafeab39c4a7344aee8e8d222ce8f796c74d1df4"
  1658. },
  1659. "dist": {
  1660. "type": "zip",
  1661. "url": "https://api.github.com/repos/iexbase/tron-api/zipball/fafeab39c4a7344aee8e8d222ce8f796c74d1df4",
  1662. "reference": "fafeab39c4a7344aee8e8d222ce8f796c74d1df4",
  1663. "shasum": ""
  1664. },
  1665. "require": {
  1666. "guzzlehttp/guzzle": "^7.0",
  1667. "iexbase/web3.php": "^2.0.1",
  1668. "kornrunner/secp256k1": "^0.1.2",
  1669. "php": "^7.2",
  1670. "simplito/elliptic-php": "^1.0"
  1671. },
  1672. "require-dev": {
  1673. "phpunit/phpunit": "^6.0"
  1674. },
  1675. "type": "library",
  1676. "autoload": {
  1677. "psr-4": {
  1678. "IEXBase\\TronAPI\\": "src"
  1679. }
  1680. },
  1681. "notification-url": "https://packagist.org/downloads/",
  1682. "license": [
  1683. "MIT"
  1684. ],
  1685. "authors": [
  1686. {
  1687. "name": "Shamsudin Serderov",
  1688. "email": "steein.shamsudin@gmail.com"
  1689. }
  1690. ],
  1691. "description": "A PHP API for interacting with Tron (Trx)",
  1692. "homepage": "https://github.com/iexbase/tron-api",
  1693. "keywords": [
  1694. "iexbase",
  1695. "tron-api",
  1696. "tron-lib",
  1697. "tron-php",
  1698. "tron-rest-api"
  1699. ],
  1700. "support": {
  1701. "issues": "https://github.com/iexbase/tron-api/issues",
  1702. "source": "https://github.com/iexbase/tron-api/tree/v3.1.2"
  1703. },
  1704. "time": "2020-10-15T18:21:16+00:00"
  1705. },
  1706. {
  1707. "name": "iexbase/web3.php",
  1708. "version": "2.0.1",
  1709. "source": {
  1710. "type": "git",
  1711. "url": "https://github.com/iexbase/web3.php.git",
  1712. "reference": "f25ed954a7586ead86046dd7e02a333a8098511b"
  1713. },
  1714. "dist": {
  1715. "type": "zip",
  1716. "url": "https://api.github.com/repos/iexbase/web3.php/zipball/f25ed954a7586ead86046dd7e02a333a8098511b",
  1717. "reference": "f25ed954a7586ead86046dd7e02a333a8098511b",
  1718. "shasum": ""
  1719. },
  1720. "require": {
  1721. "ext-mbstring": "*",
  1722. "guzzlehttp/guzzle": "^7.0",
  1723. "kornrunner/keccak": "~1.0",
  1724. "php": "^7.1",
  1725. "phpseclib/phpseclib": "~2.0.11"
  1726. },
  1727. "require-dev": {
  1728. "phpunit/phpunit": "~6.0"
  1729. },
  1730. "type": "library",
  1731. "autoload": {
  1732. "psr-4": {
  1733. "Web3\\": "src/"
  1734. }
  1735. },
  1736. "notification-url": "https://packagist.org/downloads/",
  1737. "license": [
  1738. "MIT"
  1739. ],
  1740. "description": "Ethereum web3 interface.",
  1741. "support": {
  1742. "source": "https://github.com/iexbase/web3.php/tree/2.0.1"
  1743. },
  1744. "time": "2020-10-15T18:16:13+00:00"
  1745. },
  1746. {
  1747. "name": "ionux/phactor",
  1748. "version": "v1.0.8",
  1749. "source": {
  1750. "type": "git",
  1751. "url": "https://github.com/ionux/phactor.git",
  1752. "reference": "271373b65cffe75a8c28f7f8c392fe460251f4f7"
  1753. },
  1754. "dist": {
  1755. "type": "zip",
  1756. "url": "https://api.github.com/repos/ionux/phactor/zipball/271373b65cffe75a8c28f7f8c392fe460251f4f7",
  1757. "reference": "271373b65cffe75a8c28f7f8c392fe460251f4f7",
  1758. "shasum": ""
  1759. },
  1760. "require": {
  1761. "ext-bcmath": "*",
  1762. "ext-openssl": "*",
  1763. "php": ">=5.6.0"
  1764. },
  1765. "require-dev": {
  1766. "phpunit/phpunit": "^5.7.9"
  1767. },
  1768. "suggest": {
  1769. "ext-gmp": "Highest performing math library and preferred for this library's Elliptic Curve calculations."
  1770. },
  1771. "type": "library",
  1772. "autoload": {
  1773. "psr-4": {
  1774. "Phactor\\": "src/"
  1775. }
  1776. },
  1777. "notification-url": "https://packagist.org/downloads/",
  1778. "license": [
  1779. "MIT"
  1780. ],
  1781. "authors": [
  1782. {
  1783. "name": "Rich Morgan",
  1784. "email": "rich@richmorgan.me",
  1785. "role": "Creator and Lead Developer"
  1786. }
  1787. ],
  1788. "description": "Phactor is a high-performance PHP implementation of the elliptic curve math functions required to generate & verify private/public (asymmetric) EC keypairs and ECDSA signatures based on secp256k1 curve parameters. This library also includes a class to generate Service Identification Numbers (SINs) based on the published Identity Protocol v1 spec.",
  1789. "homepage": "https://github.com/ionux/phactor",
  1790. "keywords": [
  1791. "Algorithm",
  1792. "BIP",
  1793. "ECDSA",
  1794. "SIN",
  1795. "arbitrary",
  1796. "asymmetric",
  1797. "base",
  1798. "base58",
  1799. "bcmath",
  1800. "binary",
  1801. "bitcoin",
  1802. "calculator",
  1803. "coprime",
  1804. "crypto",
  1805. "cryptography",
  1806. "curve",
  1807. "digital",
  1808. "dsa",
  1809. "ec",
  1810. "elliptic",
  1811. "encryption",
  1812. "generate",
  1813. "gmp",
  1814. "hex",
  1815. "identification",
  1816. "identity",
  1817. "integer",
  1818. "key",
  1819. "keygen",
  1820. "keypair",
  1821. "keys",
  1822. "library",
  1823. "math",
  1824. "number",
  1825. "performance",
  1826. "phactor",
  1827. "precision",
  1828. "prime",
  1829. "private",
  1830. "protocol",
  1831. "public",
  1832. "secp256k1",
  1833. "service",
  1834. "signature",
  1835. "verify"
  1836. ],
  1837. "support": {
  1838. "email": "rich@richmorgan.me",
  1839. "issues": "https://github.com/ionux/phactor/issues",
  1840. "source": "https://github.com/ionux/phactor"
  1841. },
  1842. "time": "2018-04-27T16:49:28+00:00"
  1843. },
  1844. {
  1845. "name": "kornrunner/keccak",
  1846. "version": "1.1.0",
  1847. "source": {
  1848. "type": "git",
  1849. "url": "https://github.com/kornrunner/php-keccak.git",
  1850. "reference": "433749d28e117fb97baf9f2631b92b5d9ab3c890"
  1851. },
  1852. "dist": {
  1853. "type": "zip",
  1854. "url": "https://api.github.com/repos/kornrunner/php-keccak/zipball/433749d28e117fb97baf9f2631b92b5d9ab3c890",
  1855. "reference": "433749d28e117fb97baf9f2631b92b5d9ab3c890",
  1856. "shasum": ""
  1857. },
  1858. "require": {
  1859. "php": ">=7.3",
  1860. "symfony/polyfill-mbstring": "^1.8"
  1861. },
  1862. "require-dev": {
  1863. "phpunit/phpunit": "^8.2"
  1864. },
  1865. "type": "library",
  1866. "autoload": {
  1867. "psr-4": {
  1868. "kornrunner\\": "src"
  1869. }
  1870. },
  1871. "notification-url": "https://packagist.org/downloads/",
  1872. "license": [
  1873. "MIT"
  1874. ],
  1875. "authors": [
  1876. {
  1877. "name": "Boris Momcilovic",
  1878. "homepage": "https://github.com/kornrunner/php-keccak"
  1879. }
  1880. ],
  1881. "description": "Pure PHP implementation of Keccak",
  1882. "keywords": [
  1883. "keccak",
  1884. "sha-3",
  1885. "sha3-256"
  1886. ],
  1887. "support": {
  1888. "issues": "https://github.com/kornrunner/php-keccak/issues",
  1889. "source": "https://github.com/kornrunner/php-keccak/tree/1.1.0"
  1890. },
  1891. "time": "2020-12-07T15:40:44+00:00"
  1892. },
  1893. {
  1894. "name": "kornrunner/secp256k1",
  1895. "version": "0.1.2",
  1896. "source": {
  1897. "type": "git",
  1898. "url": "https://github.com/kornrunner/php-secp256k1.git",
  1899. "reference": "915f0ef1ec748606a1117b171093266de349b058"
  1900. },
  1901. "dist": {
  1902. "type": "zip",
  1903. "url": "https://api.github.com/repos/kornrunner/php-secp256k1/zipball/915f0ef1ec748606a1117b171093266de349b058",
  1904. "reference": "915f0ef1ec748606a1117b171093266de349b058",
  1905. "shasum": ""
  1906. },
  1907. "require": {
  1908. "mdanter/ecc": "^0.5",
  1909. "php": ">=7.1"
  1910. },
  1911. "require-dev": {
  1912. "php-coveralls/php-coveralls": "^2.1",
  1913. "phpunit/phpunit": "^7"
  1914. },
  1915. "type": "library",
  1916. "autoload": {
  1917. "psr-4": {
  1918. "kornrunner\\": "src/"
  1919. }
  1920. },
  1921. "notification-url": "https://packagist.org/downloads/",
  1922. "license": [
  1923. "MIT"
  1924. ],
  1925. "authors": [
  1926. {
  1927. "name": "Boris Momčilović",
  1928. "email": "boris.momcilovic@gmail.com"
  1929. }
  1930. ],
  1931. "description": "Pure PHP secp256k1",
  1932. "keywords": [
  1933. "curve",
  1934. "ecc",
  1935. "elliptic",
  1936. "secp256k1"
  1937. ],
  1938. "support": {
  1939. "issues": "https://github.com/kornrunner/php-secp256k1/issues",
  1940. "source": "https://github.com/kornrunner/php-secp256k1/tree/master"
  1941. },
  1942. "time": "2019-01-16T17:01:51+00:00"
  1943. },
  1944. {
  1945. "name": "laravel/framework",
  1946. "version": "v8.83.20",
  1947. "source": {
  1948. "type": "git",
  1949. "url": "https://github.com/laravel/framework.git",
  1950. "reference": "aa5908e83fccb18b135ca31aa0342cf4bd6909a8"
  1951. },
  1952. "dist": {
  1953. "type": "zip",
  1954. "url": "https://api.github.com/repos/laravel/framework/zipball/aa5908e83fccb18b135ca31aa0342cf4bd6909a8",
  1955. "reference": "aa5908e83fccb18b135ca31aa0342cf4bd6909a8",
  1956. "shasum": ""
  1957. },
  1958. "require": {
  1959. "doctrine/inflector": "^1.4|^2.0",
  1960. "dragonmantank/cron-expression": "^3.0.2",
  1961. "egulias/email-validator": "^2.1.10",
  1962. "ext-json": "*",
  1963. "ext-mbstring": "*",
  1964. "ext-openssl": "*",
  1965. "laravel/serializable-closure": "^1.0",
  1966. "league/commonmark": "^1.3|^2.0.2",
  1967. "league/flysystem": "^1.1",
  1968. "monolog/monolog": "^2.0",
  1969. "nesbot/carbon": "^2.53.1",
  1970. "opis/closure": "^3.6",
  1971. "php": "^7.3|^8.0",
  1972. "psr/container": "^1.0",
  1973. "psr/log": "^1.0|^2.0",
  1974. "psr/simple-cache": "^1.0",
  1975. "ramsey/uuid": "^4.2.2",
  1976. "swiftmailer/swiftmailer": "^6.3",
  1977. "symfony/console": "^5.4",
  1978. "symfony/error-handler": "^5.4",
  1979. "symfony/finder": "^5.4",
  1980. "symfony/http-foundation": "^5.4",
  1981. "symfony/http-kernel": "^5.4",
  1982. "symfony/mime": "^5.4",
  1983. "symfony/process": "^5.4",
  1984. "symfony/routing": "^5.4",
  1985. "symfony/var-dumper": "^5.4",
  1986. "tijsverkoyen/css-to-inline-styles": "^2.2.2",
  1987. "vlucas/phpdotenv": "^5.4.1",
  1988. "voku/portable-ascii": "^1.6.1"
  1989. },
  1990. "conflict": {
  1991. "tightenco/collect": "<5.5.33"
  1992. },
  1993. "provide": {
  1994. "psr/container-implementation": "1.0",
  1995. "psr/simple-cache-implementation": "1.0"
  1996. },
  1997. "replace": {
  1998. "illuminate/auth": "self.version",
  1999. "illuminate/broadcasting": "self.version",
  2000. "illuminate/bus": "self.version",
  2001. "illuminate/cache": "self.version",
  2002. "illuminate/collections": "self.version",
  2003. "illuminate/config": "self.version",
  2004. "illuminate/console": "self.version",
  2005. "illuminate/container": "self.version",
  2006. "illuminate/contracts": "self.version",
  2007. "illuminate/cookie": "self.version",
  2008. "illuminate/database": "self.version",
  2009. "illuminate/encryption": "self.version",
  2010. "illuminate/events": "self.version",
  2011. "illuminate/filesystem": "self.version",
  2012. "illuminate/hashing": "self.version",
  2013. "illuminate/http": "self.version",
  2014. "illuminate/log": "self.version",
  2015. "illuminate/macroable": "self.version",
  2016. "illuminate/mail": "self.version",
  2017. "illuminate/notifications": "self.version",
  2018. "illuminate/pagination": "self.version",
  2019. "illuminate/pipeline": "self.version",
  2020. "illuminate/queue": "self.version",
  2021. "illuminate/redis": "self.version",
  2022. "illuminate/routing": "self.version",
  2023. "illuminate/session": "self.version",
  2024. "illuminate/support": "self.version",
  2025. "illuminate/testing": "self.version",
  2026. "illuminate/translation": "self.version",
  2027. "illuminate/validation": "self.version",
  2028. "illuminate/view": "self.version"
  2029. },
  2030. "require-dev": {
  2031. "aws/aws-sdk-php": "^3.198.1",
  2032. "doctrine/dbal": "^2.13.3|^3.1.4",
  2033. "filp/whoops": "^2.14.3",
  2034. "guzzlehttp/guzzle": "^6.5.5|^7.0.1",
  2035. "league/flysystem-cached-adapter": "^1.0",
  2036. "mockery/mockery": "^1.4.4",
  2037. "orchestra/testbench-core": "^6.27",
  2038. "pda/pheanstalk": "^4.0",
  2039. "phpunit/phpunit": "^8.5.19|^9.5.8",
  2040. "predis/predis": "^1.1.9",
  2041. "symfony/cache": "^5.4"
  2042. },
  2043. "suggest": {
  2044. "ably/ably-php": "Required to use the Ably broadcast driver (^1.0).",
  2045. "aws/aws-sdk-php": "Required to use the SQS queue driver, DynamoDb failed job storage and SES mail driver (^3.198.1).",
  2046. "brianium/paratest": "Required to run tests in parallel (^6.0).",
  2047. "doctrine/dbal": "Required to rename columns and drop SQLite columns (^2.13.3|^3.1.4).",
  2048. "ext-bcmath": "Required to use the multiple_of validation rule.",
  2049. "ext-ftp": "Required to use the Flysystem FTP driver.",
  2050. "ext-gd": "Required to use Illuminate\\Http\\Testing\\FileFactory::image().",
  2051. "ext-memcached": "Required to use the memcache cache driver.",
  2052. "ext-pcntl": "Required to use all features of the queue worker.",
  2053. "ext-posix": "Required to use all features of the queue worker.",
  2054. "ext-redis": "Required to use the Redis cache and queue drivers (^4.0|^5.0).",
  2055. "fakerphp/faker": "Required to use the eloquent factory builder (^1.9.1).",
  2056. "filp/whoops": "Required for friendly error pages in development (^2.14.3).",
  2057. "guzzlehttp/guzzle": "Required to use the HTTP Client, Mailgun mail driver and the ping methods on schedules (^6.5.5|^7.0.1).",
  2058. "laravel/tinker": "Required to use the tinker console command (^2.0).",
  2059. "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (^1.0).",
  2060. "league/flysystem-cached-adapter": "Required to use the Flysystem cache (^1.0).",
  2061. "league/flysystem-sftp": "Required to use the Flysystem SFTP driver (^1.0).",
  2062. "mockery/mockery": "Required to use mocking (^1.4.4).",
  2063. "nyholm/psr7": "Required to use PSR-7 bridging features (^1.2).",
  2064. "pda/pheanstalk": "Required to use the beanstalk queue driver (^4.0).",
  2065. "phpunit/phpunit": "Required to use assertions and run tests (^8.5.19|^9.5.8).",
  2066. "predis/predis": "Required to use the predis connector (^1.1.9).",
  2067. "psr/http-message": "Required to allow Storage::put to accept a StreamInterface (^1.0).",
  2068. "pusher/pusher-php-server": "Required to use the Pusher broadcast driver (^4.0|^5.0|^6.0|^7.0).",
  2069. "symfony/cache": "Required to PSR-6 cache bridge (^5.4).",
  2070. "symfony/filesystem": "Required to enable support for relative symbolic links (^5.4).",
  2071. "symfony/psr-http-message-bridge": "Required to use PSR-7 bridging features (^2.0).",
  2072. "wildbit/swiftmailer-postmark": "Required to use Postmark mail driver (^3.0)."
  2073. },
  2074. "type": "library",
  2075. "extra": {
  2076. "branch-alias": {
  2077. "dev-master": "8.x-dev"
  2078. }
  2079. },
  2080. "autoload": {
  2081. "files": [
  2082. "src/Illuminate/Collections/helpers.php",
  2083. "src/Illuminate/Events/functions.php",
  2084. "src/Illuminate/Foundation/helpers.php",
  2085. "src/Illuminate/Support/helpers.php"
  2086. ],
  2087. "psr-4": {
  2088. "Illuminate\\": "src/Illuminate/",
  2089. "Illuminate\\Support\\": [
  2090. "src/Illuminate/Macroable/",
  2091. "src/Illuminate/Collections/"
  2092. ]
  2093. }
  2094. },
  2095. "notification-url": "https://packagist.org/downloads/",
  2096. "license": [
  2097. "MIT"
  2098. ],
  2099. "authors": [
  2100. {
  2101. "name": "Taylor Otwell",
  2102. "email": "taylor@laravel.com"
  2103. }
  2104. ],
  2105. "description": "The Laravel Framework.",
  2106. "homepage": "https://laravel.com",
  2107. "keywords": [
  2108. "framework",
  2109. "laravel"
  2110. ],
  2111. "support": {
  2112. "issues": "https://github.com/laravel/framework/issues",
  2113. "source": "https://github.com/laravel/framework"
  2114. },
  2115. "time": "2022-07-19T14:11:02+00:00"
  2116. },
  2117. {
  2118. "name": "laravel/serializable-closure",
  2119. "version": "v1.2.0",
  2120. "source": {
  2121. "type": "git",
  2122. "url": "https://github.com/laravel/serializable-closure.git",
  2123. "reference": "09f0e9fb61829f628205b7c94906c28740ff9540"
  2124. },
  2125. "dist": {
  2126. "type": "zip",
  2127. "url": "https://api.github.com/repos/laravel/serializable-closure/zipball/09f0e9fb61829f628205b7c94906c28740ff9540",
  2128. "reference": "09f0e9fb61829f628205b7c94906c28740ff9540",
  2129. "shasum": ""
  2130. },
  2131. "require": {
  2132. "php": "^7.3|^8.0"
  2133. },
  2134. "require-dev": {
  2135. "pestphp/pest": "^1.18",
  2136. "phpstan/phpstan": "^0.12.98",
  2137. "symfony/var-dumper": "^5.3"
  2138. },
  2139. "type": "library",
  2140. "extra": {
  2141. "branch-alias": {
  2142. "dev-master": "1.x-dev"
  2143. }
  2144. },
  2145. "autoload": {
  2146. "psr-4": {
  2147. "Laravel\\SerializableClosure\\": "src/"
  2148. }
  2149. },
  2150. "notification-url": "https://packagist.org/downloads/",
  2151. "license": [
  2152. "MIT"
  2153. ],
  2154. "authors": [
  2155. {
  2156. "name": "Taylor Otwell",
  2157. "email": "taylor@laravel.com"
  2158. },
  2159. {
  2160. "name": "Nuno Maduro",
  2161. "email": "nuno@laravel.com"
  2162. }
  2163. ],
  2164. "description": "Laravel Serializable Closure provides an easy and secure way to serialize closures in PHP.",
  2165. "keywords": [
  2166. "closure",
  2167. "laravel",
  2168. "serializable"
  2169. ],
  2170. "support": {
  2171. "issues": "https://github.com/laravel/serializable-closure/issues",
  2172. "source": "https://github.com/laravel/serializable-closure"
  2173. },
  2174. "time": "2022-05-16T17:09:47+00:00"
  2175. },
  2176. {
  2177. "name": "laravel/tinker",
  2178. "version": "v2.7.2",
  2179. "source": {
  2180. "type": "git",
  2181. "url": "https://github.com/laravel/tinker.git",
  2182. "reference": "dff39b661e827dae6e092412f976658df82dbac5"
  2183. },
  2184. "dist": {
  2185. "type": "zip",
  2186. "url": "https://api.github.com/repos/laravel/tinker/zipball/dff39b661e827dae6e092412f976658df82dbac5",
  2187. "reference": "dff39b661e827dae6e092412f976658df82dbac5",
  2188. "shasum": ""
  2189. },
  2190. "require": {
  2191. "illuminate/console": "^6.0|^7.0|^8.0|^9.0",
  2192. "illuminate/contracts": "^6.0|^7.0|^8.0|^9.0",
  2193. "illuminate/support": "^6.0|^7.0|^8.0|^9.0",
  2194. "php": "^7.2.5|^8.0",
  2195. "psy/psysh": "^0.10.4|^0.11.1",
  2196. "symfony/var-dumper": "^4.3.4|^5.0|^6.0"
  2197. },
  2198. "require-dev": {
  2199. "mockery/mockery": "~1.3.3|^1.4.2",
  2200. "phpunit/phpunit": "^8.5.8|^9.3.3"
  2201. },
  2202. "suggest": {
  2203. "illuminate/database": "The Illuminate Database package (^6.0|^7.0|^8.0|^9.0)."
  2204. },
  2205. "type": "library",
  2206. "extra": {
  2207. "branch-alias": {
  2208. "dev-master": "2.x-dev"
  2209. },
  2210. "laravel": {
  2211. "providers": [
  2212. "Laravel\\Tinker\\TinkerServiceProvider"
  2213. ]
  2214. }
  2215. },
  2216. "autoload": {
  2217. "psr-4": {
  2218. "Laravel\\Tinker\\": "src/"
  2219. }
  2220. },
  2221. "notification-url": "https://packagist.org/downloads/",
  2222. "license": [
  2223. "MIT"
  2224. ],
  2225. "authors": [
  2226. {
  2227. "name": "Taylor Otwell",
  2228. "email": "taylor@laravel.com"
  2229. }
  2230. ],
  2231. "description": "Powerful REPL for the Laravel framework.",
  2232. "keywords": [
  2233. "REPL",
  2234. "Tinker",
  2235. "laravel",
  2236. "psysh"
  2237. ],
  2238. "support": {
  2239. "issues": "https://github.com/laravel/tinker/issues",
  2240. "source": "https://github.com/laravel/tinker/tree/v2.7.2"
  2241. },
  2242. "time": "2022-03-23T12:38:24+00:00"
  2243. },
  2244. {
  2245. "name": "lastguest/murmurhash",
  2246. "version": "2.0.0",
  2247. "source": {
  2248. "type": "git",
  2249. "url": "https://github.com/lastguest/murmurhash-php.git",
  2250. "reference": "4fb7516f67e695e5d7fa129d1bbb925ec0ebe408"
  2251. },
  2252. "dist": {
  2253. "type": "zip",
  2254. "url": "https://api.github.com/repos/lastguest/murmurhash-php/zipball/4fb7516f67e695e5d7fa129d1bbb925ec0ebe408",
  2255. "reference": "4fb7516f67e695e5d7fa129d1bbb925ec0ebe408",
  2256. "shasum": ""
  2257. },
  2258. "require": {
  2259. "php": "^7"
  2260. },
  2261. "require-dev": {
  2262. "phpstan/phpstan": "^0.6.3",
  2263. "phpunit/phpunit": "^5"
  2264. },
  2265. "type": "library",
  2266. "autoload": {
  2267. "psr-4": {
  2268. "lastguest\\": "src/lastguest/"
  2269. }
  2270. },
  2271. "notification-url": "https://packagist.org/downloads/",
  2272. "license": [
  2273. "MIT"
  2274. ],
  2275. "authors": [
  2276. {
  2277. "name": "Stefano Azzolini",
  2278. "email": "lastguest@gmail.com",
  2279. "homepage": "https://github.com/lastguest/murmurhash-php"
  2280. }
  2281. ],
  2282. "description": "MurmurHash3 Hash",
  2283. "homepage": "https://github.com/lastguest/murmurhash-php",
  2284. "keywords": [
  2285. "hash",
  2286. "hashing",
  2287. "murmur"
  2288. ],
  2289. "support": {
  2290. "issues": "https://github.com/lastguest/murmurhash-php/issues",
  2291. "source": "https://github.com/lastguest/murmurhash-php/tree/master"
  2292. },
  2293. "time": "2017-10-10T15:16:12+00:00"
  2294. },
  2295. {
  2296. "name": "league/commonmark",
  2297. "version": "1.6.7",
  2298. "source": {
  2299. "type": "git",
  2300. "url": "https://github.com/thephpleague/commonmark.git",
  2301. "reference": "2b8185c13bc9578367a5bf901881d1c1b5bbd09b"
  2302. },
  2303. "dist": {
  2304. "type": "zip",
  2305. "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/2b8185c13bc9578367a5bf901881d1c1b5bbd09b",
  2306. "reference": "2b8185c13bc9578367a5bf901881d1c1b5bbd09b",
  2307. "shasum": ""
  2308. },
  2309. "require": {
  2310. "ext-mbstring": "*",
  2311. "php": "^7.1 || ^8.0"
  2312. },
  2313. "conflict": {
  2314. "scrutinizer/ocular": "1.7.*"
  2315. },
  2316. "require-dev": {
  2317. "cebe/markdown": "~1.0",
  2318. "commonmark/commonmark.js": "0.29.2",
  2319. "erusev/parsedown": "~1.0",
  2320. "ext-json": "*",
  2321. "github/gfm": "0.29.0",
  2322. "michelf/php-markdown": "~1.4",
  2323. "mikehaertl/php-shellcommand": "^1.4",
  2324. "phpstan/phpstan": "^0.12.90",
  2325. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.2",
  2326. "scrutinizer/ocular": "^1.5",
  2327. "symfony/finder": "^4.2"
  2328. },
  2329. "bin": [
  2330. "bin/commonmark"
  2331. ],
  2332. "type": "library",
  2333. "autoload": {
  2334. "psr-4": {
  2335. "League\\CommonMark\\": "src"
  2336. }
  2337. },
  2338. "notification-url": "https://packagist.org/downloads/",
  2339. "license": [
  2340. "BSD-3-Clause"
  2341. ],
  2342. "authors": [
  2343. {
  2344. "name": "Colin O'Dell",
  2345. "email": "colinodell@gmail.com",
  2346. "homepage": "https://www.colinodell.com",
  2347. "role": "Lead Developer"
  2348. }
  2349. ],
  2350. "description": "Highly-extensible PHP Markdown parser which fully supports the CommonMark spec and Github-Flavored Markdown (GFM)",
  2351. "homepage": "https://commonmark.thephpleague.com",
  2352. "keywords": [
  2353. "commonmark",
  2354. "flavored",
  2355. "gfm",
  2356. "github",
  2357. "github-flavored",
  2358. "markdown",
  2359. "md",
  2360. "parser"
  2361. ],
  2362. "support": {
  2363. "docs": "https://commonmark.thephpleague.com/",
  2364. "issues": "https://github.com/thephpleague/commonmark/issues",
  2365. "rss": "https://github.com/thephpleague/commonmark/releases.atom",
  2366. "source": "https://github.com/thephpleague/commonmark"
  2367. },
  2368. "funding": [
  2369. {
  2370. "url": "https://www.colinodell.com/sponsor",
  2371. "type": "custom"
  2372. },
  2373. {
  2374. "url": "https://www.paypal.me/colinpodell/10.00",
  2375. "type": "custom"
  2376. },
  2377. {
  2378. "url": "https://github.com/colinodell",
  2379. "type": "github"
  2380. },
  2381. {
  2382. "url": "https://tidelift.com/funding/github/packagist/league/commonmark",
  2383. "type": "tidelift"
  2384. }
  2385. ],
  2386. "time": "2022-01-13T17:18:13+00:00"
  2387. },
  2388. {
  2389. "name": "league/flysystem",
  2390. "version": "1.1.9",
  2391. "source": {
  2392. "type": "git",
  2393. "url": "https://github.com/thephpleague/flysystem.git",
  2394. "reference": "094defdb4a7001845300334e7c1ee2335925ef99"
  2395. },
  2396. "dist": {
  2397. "type": "zip",
  2398. "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/094defdb4a7001845300334e7c1ee2335925ef99",
  2399. "reference": "094defdb4a7001845300334e7c1ee2335925ef99",
  2400. "shasum": ""
  2401. },
  2402. "require": {
  2403. "ext-fileinfo": "*",
  2404. "league/mime-type-detection": "^1.3",
  2405. "php": "^7.2.5 || ^8.0"
  2406. },
  2407. "conflict": {
  2408. "league/flysystem-sftp": "<1.0.6"
  2409. },
  2410. "require-dev": {
  2411. "phpspec/prophecy": "^1.11.1",
  2412. "phpunit/phpunit": "^8.5.8"
  2413. },
  2414. "suggest": {
  2415. "ext-ftp": "Allows you to use FTP server storage",
  2416. "ext-openssl": "Allows you to use FTPS server storage",
  2417. "league/flysystem-aws-s3-v2": "Allows you to use S3 storage with AWS SDK v2",
  2418. "league/flysystem-aws-s3-v3": "Allows you to use S3 storage with AWS SDK v3",
  2419. "league/flysystem-azure": "Allows you to use Windows Azure Blob storage",
  2420. "league/flysystem-cached-adapter": "Flysystem adapter decorator for metadata caching",
  2421. "league/flysystem-eventable-filesystem": "Allows you to use EventableFilesystem",
  2422. "league/flysystem-rackspace": "Allows you to use Rackspace Cloud Files",
  2423. "league/flysystem-sftp": "Allows you to use SFTP server storage via phpseclib",
  2424. "league/flysystem-webdav": "Allows you to use WebDAV storage",
  2425. "league/flysystem-ziparchive": "Allows you to use ZipArchive adapter",
  2426. "spatie/flysystem-dropbox": "Allows you to use Dropbox storage",
  2427. "srmklive/flysystem-dropbox-v2": "Allows you to use Dropbox storage for PHP 5 applications"
  2428. },
  2429. "type": "library",
  2430. "extra": {
  2431. "branch-alias": {
  2432. "dev-master": "1.1-dev"
  2433. }
  2434. },
  2435. "autoload": {
  2436. "psr-4": {
  2437. "League\\Flysystem\\": "src/"
  2438. }
  2439. },
  2440. "notification-url": "https://packagist.org/downloads/",
  2441. "license": [
  2442. "MIT"
  2443. ],
  2444. "authors": [
  2445. {
  2446. "name": "Frank de Jonge",
  2447. "email": "info@frenky.net"
  2448. }
  2449. ],
  2450. "description": "Filesystem abstraction: Many filesystems, one API.",
  2451. "keywords": [
  2452. "Cloud Files",
  2453. "WebDAV",
  2454. "abstraction",
  2455. "aws",
  2456. "cloud",
  2457. "copy.com",
  2458. "dropbox",
  2459. "file systems",
  2460. "files",
  2461. "filesystem",
  2462. "filesystems",
  2463. "ftp",
  2464. "rackspace",
  2465. "remote",
  2466. "s3",
  2467. "sftp",
  2468. "storage"
  2469. ],
  2470. "support": {
  2471. "issues": "https://github.com/thephpleague/flysystem/issues",
  2472. "source": "https://github.com/thephpleague/flysystem/tree/1.1.9"
  2473. },
  2474. "funding": [
  2475. {
  2476. "url": "https://offset.earth/frankdejonge",
  2477. "type": "other"
  2478. }
  2479. ],
  2480. "time": "2021-12-09T09:40:50+00:00"
  2481. },
  2482. {
  2483. "name": "league/mime-type-detection",
  2484. "version": "1.11.0",
  2485. "source": {
  2486. "type": "git",
  2487. "url": "https://github.com/thephpleague/mime-type-detection.git",
  2488. "reference": "ff6248ea87a9f116e78edd6002e39e5128a0d4dd"
  2489. },
  2490. "dist": {
  2491. "type": "zip",
  2492. "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/ff6248ea87a9f116e78edd6002e39e5128a0d4dd",
  2493. "reference": "ff6248ea87a9f116e78edd6002e39e5128a0d4dd",
  2494. "shasum": ""
  2495. },
  2496. "require": {
  2497. "ext-fileinfo": "*",
  2498. "php": "^7.2 || ^8.0"
  2499. },
  2500. "require-dev": {
  2501. "friendsofphp/php-cs-fixer": "^3.2",
  2502. "phpstan/phpstan": "^0.12.68",
  2503. "phpunit/phpunit": "^8.5.8 || ^9.3"
  2504. },
  2505. "type": "library",
  2506. "autoload": {
  2507. "psr-4": {
  2508. "League\\MimeTypeDetection\\": "src"
  2509. }
  2510. },
  2511. "notification-url": "https://packagist.org/downloads/",
  2512. "license": [
  2513. "MIT"
  2514. ],
  2515. "authors": [
  2516. {
  2517. "name": "Frank de Jonge",
  2518. "email": "info@frankdejonge.nl"
  2519. }
  2520. ],
  2521. "description": "Mime-type detection for Flysystem",
  2522. "support": {
  2523. "issues": "https://github.com/thephpleague/mime-type-detection/issues",
  2524. "source": "https://github.com/thephpleague/mime-type-detection/tree/1.11.0"
  2525. },
  2526. "funding": [
  2527. {
  2528. "url": "https://github.com/frankdejonge",
  2529. "type": "github"
  2530. },
  2531. {
  2532. "url": "https://tidelift.com/funding/github/packagist/league/flysystem",
  2533. "type": "tidelift"
  2534. }
  2535. ],
  2536. "time": "2022-04-17T13:12:02+00:00"
  2537. },
  2538. {
  2539. "name": "maatwebsite/excel",
  2540. "version": "3.1.40",
  2541. "source": {
  2542. "type": "git",
  2543. "url": "https://github.com/SpartnerNL/Laravel-Excel.git",
  2544. "reference": "8a54972e3d616c74687c3cbff15765555761885c"
  2545. },
  2546. "dist": {
  2547. "type": "zip",
  2548. "url": "https://api.github.com/repos/SpartnerNL/Laravel-Excel/zipball/8a54972e3d616c74687c3cbff15765555761885c",
  2549. "reference": "8a54972e3d616c74687c3cbff15765555761885c",
  2550. "shasum": ""
  2551. },
  2552. "require": {
  2553. "ext-json": "*",
  2554. "illuminate/support": "5.8.*|^6.0|^7.0|^8.0|^9.0",
  2555. "php": "^7.0|^8.0",
  2556. "phpoffice/phpspreadsheet": "^1.18"
  2557. },
  2558. "require-dev": {
  2559. "orchestra/testbench": "^6.0|^7.0",
  2560. "predis/predis": "^1.1"
  2561. },
  2562. "type": "library",
  2563. "extra": {
  2564. "laravel": {
  2565. "providers": [
  2566. "Maatwebsite\\Excel\\ExcelServiceProvider"
  2567. ],
  2568. "aliases": {
  2569. "Excel": "Maatwebsite\\Excel\\Facades\\Excel"
  2570. }
  2571. }
  2572. },
  2573. "autoload": {
  2574. "psr-4": {
  2575. "Maatwebsite\\Excel\\": "src/"
  2576. }
  2577. },
  2578. "notification-url": "https://packagist.org/downloads/",
  2579. "license": [
  2580. "MIT"
  2581. ],
  2582. "authors": [
  2583. {
  2584. "name": "Patrick Brouwers",
  2585. "email": "patrick@spartner.nl"
  2586. }
  2587. ],
  2588. "description": "Supercharged Excel exports and imports in Laravel",
  2589. "keywords": [
  2590. "PHPExcel",
  2591. "batch",
  2592. "csv",
  2593. "excel",
  2594. "export",
  2595. "import",
  2596. "laravel",
  2597. "php",
  2598. "phpspreadsheet"
  2599. ],
  2600. "support": {
  2601. "issues": "https://github.com/SpartnerNL/Laravel-Excel/issues",
  2602. "source": "https://github.com/SpartnerNL/Laravel-Excel/tree/3.1.40"
  2603. },
  2604. "funding": [
  2605. {
  2606. "url": "https://laravel-excel.com/commercial-support",
  2607. "type": "custom"
  2608. },
  2609. {
  2610. "url": "https://github.com/patrickbrouwers",
  2611. "type": "github"
  2612. }
  2613. ],
  2614. "time": "2022-05-02T13:50:01+00:00"
  2615. },
  2616. {
  2617. "name": "maennchen/zipstream-php",
  2618. "version": "2.1.0",
  2619. "source": {
  2620. "type": "git",
  2621. "url": "https://github.com/maennchen/ZipStream-PHP.git",
  2622. "reference": "c4c5803cc1f93df3d2448478ef79394a5981cc58"
  2623. },
  2624. "dist": {
  2625. "type": "zip",
  2626. "url": "https://api.github.com/repos/maennchen/ZipStream-PHP/zipball/c4c5803cc1f93df3d2448478ef79394a5981cc58",
  2627. "reference": "c4c5803cc1f93df3d2448478ef79394a5981cc58",
  2628. "shasum": ""
  2629. },
  2630. "require": {
  2631. "myclabs/php-enum": "^1.5",
  2632. "php": ">= 7.1",
  2633. "psr/http-message": "^1.0",
  2634. "symfony/polyfill-mbstring": "^1.0"
  2635. },
  2636. "require-dev": {
  2637. "ext-zip": "*",
  2638. "guzzlehttp/guzzle": ">= 6.3",
  2639. "mikey179/vfsstream": "^1.6",
  2640. "phpunit/phpunit": ">= 7.5"
  2641. },
  2642. "type": "library",
  2643. "autoload": {
  2644. "psr-4": {
  2645. "ZipStream\\": "src/"
  2646. }
  2647. },
  2648. "notification-url": "https://packagist.org/downloads/",
  2649. "license": [
  2650. "MIT"
  2651. ],
  2652. "authors": [
  2653. {
  2654. "name": "Paul Duncan",
  2655. "email": "pabs@pablotron.org"
  2656. },
  2657. {
  2658. "name": "Jonatan Männchen",
  2659. "email": "jonatan@maennchen.ch"
  2660. },
  2661. {
  2662. "name": "Jesse Donat",
  2663. "email": "donatj@gmail.com"
  2664. },
  2665. {
  2666. "name": "András Kolesár",
  2667. "email": "kolesar@kolesar.hu"
  2668. }
  2669. ],
  2670. "description": "ZipStream is a library for dynamically streaming dynamic zip files from PHP without writing to the disk at all on the server.",
  2671. "keywords": [
  2672. "stream",
  2673. "zip"
  2674. ],
  2675. "support": {
  2676. "issues": "https://github.com/maennchen/ZipStream-PHP/issues",
  2677. "source": "https://github.com/maennchen/ZipStream-PHP/tree/master"
  2678. },
  2679. "funding": [
  2680. {
  2681. "url": "https://opencollective.com/zipstream",
  2682. "type": "open_collective"
  2683. }
  2684. ],
  2685. "time": "2020-05-30T13:11:16+00:00"
  2686. },
  2687. {
  2688. "name": "markbaker/complex",
  2689. "version": "3.0.1",
  2690. "source": {
  2691. "type": "git",
  2692. "url": "https://github.com/MarkBaker/PHPComplex.git",
  2693. "reference": "ab8bc271e404909db09ff2d5ffa1e538085c0f22"
  2694. },
  2695. "dist": {
  2696. "type": "zip",
  2697. "url": "https://api.github.com/repos/MarkBaker/PHPComplex/zipball/ab8bc271e404909db09ff2d5ffa1e538085c0f22",
  2698. "reference": "ab8bc271e404909db09ff2d5ffa1e538085c0f22",
  2699. "shasum": ""
  2700. },
  2701. "require": {
  2702. "php": "^7.2 || ^8.0"
  2703. },
  2704. "require-dev": {
  2705. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  2706. "phpcompatibility/php-compatibility": "^9.0",
  2707. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.3",
  2708. "squizlabs/php_codesniffer": "^3.4"
  2709. },
  2710. "type": "library",
  2711. "autoload": {
  2712. "psr-4": {
  2713. "Complex\\": "classes/src/"
  2714. }
  2715. },
  2716. "notification-url": "https://packagist.org/downloads/",
  2717. "license": [
  2718. "MIT"
  2719. ],
  2720. "authors": [
  2721. {
  2722. "name": "Mark Baker",
  2723. "email": "mark@lange.demon.co.uk"
  2724. }
  2725. ],
  2726. "description": "PHP Class for working with complex numbers",
  2727. "homepage": "https://github.com/MarkBaker/PHPComplex",
  2728. "keywords": [
  2729. "complex",
  2730. "mathematics"
  2731. ],
  2732. "support": {
  2733. "issues": "https://github.com/MarkBaker/PHPComplex/issues",
  2734. "source": "https://github.com/MarkBaker/PHPComplex/tree/3.0.1"
  2735. },
  2736. "time": "2021-06-29T15:32:53+00:00"
  2737. },
  2738. {
  2739. "name": "markbaker/matrix",
  2740. "version": "3.0.0",
  2741. "source": {
  2742. "type": "git",
  2743. "url": "https://github.com/MarkBaker/PHPMatrix.git",
  2744. "reference": "c66aefcafb4f6c269510e9ac46b82619a904c576"
  2745. },
  2746. "dist": {
  2747. "type": "zip",
  2748. "url": "https://api.github.com/repos/MarkBaker/PHPMatrix/zipball/c66aefcafb4f6c269510e9ac46b82619a904c576",
  2749. "reference": "c66aefcafb4f6c269510e9ac46b82619a904c576",
  2750. "shasum": ""
  2751. },
  2752. "require": {
  2753. "php": "^7.1 || ^8.0"
  2754. },
  2755. "require-dev": {
  2756. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  2757. "phpcompatibility/php-compatibility": "^9.0",
  2758. "phpdocumentor/phpdocumentor": "2.*",
  2759. "phploc/phploc": "^4.0",
  2760. "phpmd/phpmd": "2.*",
  2761. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.3",
  2762. "sebastian/phpcpd": "^4.0",
  2763. "squizlabs/php_codesniffer": "^3.4"
  2764. },
  2765. "type": "library",
  2766. "autoload": {
  2767. "psr-4": {
  2768. "Matrix\\": "classes/src/"
  2769. }
  2770. },
  2771. "notification-url": "https://packagist.org/downloads/",
  2772. "license": [
  2773. "MIT"
  2774. ],
  2775. "authors": [
  2776. {
  2777. "name": "Mark Baker",
  2778. "email": "mark@demon-angel.eu"
  2779. }
  2780. ],
  2781. "description": "PHP Class for working with matrices",
  2782. "homepage": "https://github.com/MarkBaker/PHPMatrix",
  2783. "keywords": [
  2784. "mathematics",
  2785. "matrix",
  2786. "vector"
  2787. ],
  2788. "support": {
  2789. "issues": "https://github.com/MarkBaker/PHPMatrix/issues",
  2790. "source": "https://github.com/MarkBaker/PHPMatrix/tree/3.0.0"
  2791. },
  2792. "time": "2021-07-01T19:01:15+00:00"
  2793. },
  2794. {
  2795. "name": "mdanter/ecc",
  2796. "version": "v0.5.2",
  2797. "source": {
  2798. "type": "git",
  2799. "url": "https://github.com/phpecc/phpecc.git",
  2800. "reference": "b95f25cc1bacc83a9f0ccd375900b7cfd343029e"
  2801. },
  2802. "dist": {
  2803. "type": "zip",
  2804. "url": "https://api.github.com/repos/phpecc/phpecc/zipball/b95f25cc1bacc83a9f0ccd375900b7cfd343029e",
  2805. "reference": "b95f25cc1bacc83a9f0ccd375900b7cfd343029e",
  2806. "shasum": ""
  2807. },
  2808. "require": {
  2809. "ext-gmp": "*",
  2810. "fgrosse/phpasn1": "^2.0",
  2811. "php": "^7.0"
  2812. },
  2813. "require-dev": {
  2814. "phpunit/phpunit": "^6.0",
  2815. "squizlabs/php_codesniffer": "^2.0",
  2816. "symfony/yaml": "^2.6|^3.0"
  2817. },
  2818. "type": "library",
  2819. "autoload": {
  2820. "psr-4": {
  2821. "Mdanter\\Ecc\\": "src/"
  2822. }
  2823. },
  2824. "notification-url": "https://packagist.org/downloads/",
  2825. "license": [
  2826. "MIT"
  2827. ],
  2828. "authors": [
  2829. {
  2830. "name": "Matyas Danter",
  2831. "homepage": "http://matejdanter.com/",
  2832. "role": "Author"
  2833. },
  2834. {
  2835. "name": "Thibaud Fabre",
  2836. "email": "thibaud@aztech.io",
  2837. "homepage": "http://aztech.io",
  2838. "role": "Maintainer"
  2839. },
  2840. {
  2841. "name": "Thomas Kerin",
  2842. "email": "afk11@users.noreply.github.com",
  2843. "role": "Maintainer"
  2844. }
  2845. ],
  2846. "description": "PHP Elliptic Curve Cryptography library",
  2847. "homepage": "https://github.com/phpecc/phpecc",
  2848. "keywords": [
  2849. "Diffie",
  2850. "ECDSA",
  2851. "Hellman",
  2852. "curve",
  2853. "ecdh",
  2854. "elliptic",
  2855. "nistp192",
  2856. "nistp224",
  2857. "nistp256",
  2858. "nistp384",
  2859. "nistp521",
  2860. "phpecc",
  2861. "secp256k1",
  2862. "secp256r1"
  2863. ],
  2864. "support": {
  2865. "issues": "https://github.com/phpecc/phpecc/issues",
  2866. "source": "https://github.com/phpecc/phpecc/tree/master"
  2867. },
  2868. "time": "2018-12-03T18:17:01+00:00"
  2869. },
  2870. {
  2871. "name": "monolog/monolog",
  2872. "version": "2.7.0",
  2873. "source": {
  2874. "type": "git",
  2875. "url": "https://github.com/Seldaek/monolog.git",
  2876. "reference": "5579edf28aee1190a798bfa5be8bc16c563bd524"
  2877. },
  2878. "dist": {
  2879. "type": "zip",
  2880. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/5579edf28aee1190a798bfa5be8bc16c563bd524",
  2881. "reference": "5579edf28aee1190a798bfa5be8bc16c563bd524",
  2882. "shasum": ""
  2883. },
  2884. "require": {
  2885. "php": ">=7.2",
  2886. "psr/log": "^1.0.1 || ^2.0 || ^3.0"
  2887. },
  2888. "provide": {
  2889. "psr/log-implementation": "1.0.0 || 2.0.0 || 3.0.0"
  2890. },
  2891. "require-dev": {
  2892. "aws/aws-sdk-php": "^2.4.9 || ^3.0",
  2893. "doctrine/couchdb": "~1.0@dev",
  2894. "elasticsearch/elasticsearch": "^7 || ^8",
  2895. "ext-json": "*",
  2896. "graylog2/gelf-php": "^1.4.2",
  2897. "guzzlehttp/guzzle": "^7.4",
  2898. "guzzlehttp/psr7": "^2.2",
  2899. "mongodb/mongodb": "^1.8",
  2900. "php-amqplib/php-amqplib": "~2.4 || ^3",
  2901. "php-console/php-console": "^3.1.3",
  2902. "phpspec/prophecy": "^1.15",
  2903. "phpstan/phpstan": "^0.12.91",
  2904. "phpunit/phpunit": "^8.5.14",
  2905. "predis/predis": "^1.1",
  2906. "rollbar/rollbar": "^1.3 || ^2 || ^3",
  2907. "ruflin/elastica": "^7",
  2908. "swiftmailer/swiftmailer": "^5.3|^6.0",
  2909. "symfony/mailer": "^5.4 || ^6",
  2910. "symfony/mime": "^5.4 || ^6"
  2911. },
  2912. "suggest": {
  2913. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  2914. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  2915. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  2916. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  2917. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  2918. "ext-mbstring": "Allow to work properly with unicode symbols",
  2919. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  2920. "ext-openssl": "Required to send log messages using SSL",
  2921. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  2922. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  2923. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  2924. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  2925. "php-console/php-console": "Allow sending log messages to Google Chrome",
  2926. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  2927. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  2928. },
  2929. "type": "library",
  2930. "extra": {
  2931. "branch-alias": {
  2932. "dev-main": "2.x-dev"
  2933. }
  2934. },
  2935. "autoload": {
  2936. "psr-4": {
  2937. "Monolog\\": "src/Monolog"
  2938. }
  2939. },
  2940. "notification-url": "https://packagist.org/downloads/",
  2941. "license": [
  2942. "MIT"
  2943. ],
  2944. "authors": [
  2945. {
  2946. "name": "Jordi Boggiano",
  2947. "email": "j.boggiano@seld.be",
  2948. "homepage": "https://seld.be"
  2949. }
  2950. ],
  2951. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  2952. "homepage": "https://github.com/Seldaek/monolog",
  2953. "keywords": [
  2954. "log",
  2955. "logging",
  2956. "psr-3"
  2957. ],
  2958. "support": {
  2959. "issues": "https://github.com/Seldaek/monolog/issues",
  2960. "source": "https://github.com/Seldaek/monolog/tree/2.7.0"
  2961. },
  2962. "funding": [
  2963. {
  2964. "url": "https://github.com/Seldaek",
  2965. "type": "github"
  2966. },
  2967. {
  2968. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  2969. "type": "tidelift"
  2970. }
  2971. ],
  2972. "time": "2022-06-09T08:59:12+00:00"
  2973. },
  2974. {
  2975. "name": "myclabs/php-enum",
  2976. "version": "1.8.3",
  2977. "source": {
  2978. "type": "git",
  2979. "url": "https://github.com/myclabs/php-enum.git",
  2980. "reference": "b942d263c641ddb5190929ff840c68f78713e937"
  2981. },
  2982. "dist": {
  2983. "type": "zip",
  2984. "url": "https://api.github.com/repos/myclabs/php-enum/zipball/b942d263c641ddb5190929ff840c68f78713e937",
  2985. "reference": "b942d263c641ddb5190929ff840c68f78713e937",
  2986. "shasum": ""
  2987. },
  2988. "require": {
  2989. "ext-json": "*",
  2990. "php": "^7.3 || ^8.0"
  2991. },
  2992. "require-dev": {
  2993. "phpunit/phpunit": "^9.5",
  2994. "squizlabs/php_codesniffer": "1.*",
  2995. "vimeo/psalm": "^4.6.2"
  2996. },
  2997. "type": "library",
  2998. "autoload": {
  2999. "psr-4": {
  3000. "MyCLabs\\Enum\\": "src/"
  3001. }
  3002. },
  3003. "notification-url": "https://packagist.org/downloads/",
  3004. "license": [
  3005. "MIT"
  3006. ],
  3007. "authors": [
  3008. {
  3009. "name": "PHP Enum contributors",
  3010. "homepage": "https://github.com/myclabs/php-enum/graphs/contributors"
  3011. }
  3012. ],
  3013. "description": "PHP Enum implementation",
  3014. "homepage": "http://github.com/myclabs/php-enum",
  3015. "keywords": [
  3016. "enum"
  3017. ],
  3018. "support": {
  3019. "issues": "https://github.com/myclabs/php-enum/issues",
  3020. "source": "https://github.com/myclabs/php-enum/tree/1.8.3"
  3021. },
  3022. "funding": [
  3023. {
  3024. "url": "https://github.com/mnapoli",
  3025. "type": "github"
  3026. },
  3027. {
  3028. "url": "https://tidelift.com/funding/github/packagist/myclabs/php-enum",
  3029. "type": "tidelift"
  3030. }
  3031. ],
  3032. "time": "2021-07-05T08:18:36+00:00"
  3033. },
  3034. {
  3035. "name": "nesbot/carbon",
  3036. "version": "2.59.1",
  3037. "source": {
  3038. "type": "git",
  3039. "url": "https://github.com/briannesbitt/Carbon.git",
  3040. "reference": "a9000603ea337c8df16cc41f8b6be95a65f4d0f5"
  3041. },
  3042. "dist": {
  3043. "type": "zip",
  3044. "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/a9000603ea337c8df16cc41f8b6be95a65f4d0f5",
  3045. "reference": "a9000603ea337c8df16cc41f8b6be95a65f4d0f5",
  3046. "shasum": ""
  3047. },
  3048. "require": {
  3049. "ext-json": "*",
  3050. "php": "^7.1.8 || ^8.0",
  3051. "symfony/polyfill-mbstring": "^1.0",
  3052. "symfony/polyfill-php80": "^1.16",
  3053. "symfony/translation": "^3.4 || ^4.0 || ^5.0 || ^6.0"
  3054. },
  3055. "require-dev": {
  3056. "doctrine/dbal": "^2.0 || ^3.0",
  3057. "doctrine/orm": "^2.7",
  3058. "friendsofphp/php-cs-fixer": "^3.0",
  3059. "kylekatarnls/multi-tester": "^2.0",
  3060. "ondrejmirtes/better-reflection": "*",
  3061. "phpmd/phpmd": "^2.9",
  3062. "phpstan/extension-installer": "^1.0",
  3063. "phpstan/phpstan": "^0.12.99 || ^1.7.14",
  3064. "phpunit/php-file-iterator": "^2.0.5 || ^3.0.6",
  3065. "phpunit/phpunit": "^7.5.20 || ^8.5.26 || ^9.5.20",
  3066. "squizlabs/php_codesniffer": "^3.4"
  3067. },
  3068. "bin": [
  3069. "bin/carbon"
  3070. ],
  3071. "type": "library",
  3072. "extra": {
  3073. "branch-alias": {
  3074. "dev-3.x": "3.x-dev",
  3075. "dev-master": "2.x-dev"
  3076. },
  3077. "laravel": {
  3078. "providers": [
  3079. "Carbon\\Laravel\\ServiceProvider"
  3080. ]
  3081. },
  3082. "phpstan": {
  3083. "includes": [
  3084. "extension.neon"
  3085. ]
  3086. }
  3087. },
  3088. "autoload": {
  3089. "psr-4": {
  3090. "Carbon\\": "src/Carbon/"
  3091. }
  3092. },
  3093. "notification-url": "https://packagist.org/downloads/",
  3094. "license": [
  3095. "MIT"
  3096. ],
  3097. "authors": [
  3098. {
  3099. "name": "Brian Nesbitt",
  3100. "email": "brian@nesbot.com",
  3101. "homepage": "https://markido.com"
  3102. },
  3103. {
  3104. "name": "kylekatarnls",
  3105. "homepage": "https://github.com/kylekatarnls"
  3106. }
  3107. ],
  3108. "description": "An API extension for DateTime that supports 281 different languages.",
  3109. "homepage": "https://carbon.nesbot.com",
  3110. "keywords": [
  3111. "date",
  3112. "datetime",
  3113. "time"
  3114. ],
  3115. "support": {
  3116. "docs": "https://carbon.nesbot.com/docs",
  3117. "issues": "https://github.com/briannesbitt/Carbon/issues",
  3118. "source": "https://github.com/briannesbitt/Carbon"
  3119. },
  3120. "funding": [
  3121. {
  3122. "url": "https://github.com/sponsors/kylekatarnls",
  3123. "type": "github"
  3124. },
  3125. {
  3126. "url": "https://opencollective.com/Carbon#sponsor",
  3127. "type": "opencollective"
  3128. },
  3129. {
  3130. "url": "https://tidelift.com/subscription/pkg/packagist-nesbot-carbon?utm_source=packagist-nesbot-carbon&utm_medium=referral&utm_campaign=readme",
  3131. "type": "tidelift"
  3132. }
  3133. ],
  3134. "time": "2022-06-29T21:43:55+00:00"
  3135. },
  3136. {
  3137. "name": "nikic/php-parser",
  3138. "version": "v4.14.0",
  3139. "source": {
  3140. "type": "git",
  3141. "url": "https://github.com/nikic/PHP-Parser.git",
  3142. "reference": "34bea19b6e03d8153165d8f30bba4c3be86184c1"
  3143. },
  3144. "dist": {
  3145. "type": "zip",
  3146. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/34bea19b6e03d8153165d8f30bba4c3be86184c1",
  3147. "reference": "34bea19b6e03d8153165d8f30bba4c3be86184c1",
  3148. "shasum": ""
  3149. },
  3150. "require": {
  3151. "ext-tokenizer": "*",
  3152. "php": ">=7.0"
  3153. },
  3154. "require-dev": {
  3155. "ircmaxell/php-yacc": "^0.0.7",
  3156. "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0"
  3157. },
  3158. "bin": [
  3159. "bin/php-parse"
  3160. ],
  3161. "type": "library",
  3162. "extra": {
  3163. "branch-alias": {
  3164. "dev-master": "4.9-dev"
  3165. }
  3166. },
  3167. "autoload": {
  3168. "psr-4": {
  3169. "PhpParser\\": "lib/PhpParser"
  3170. }
  3171. },
  3172. "notification-url": "https://packagist.org/downloads/",
  3173. "license": [
  3174. "BSD-3-Clause"
  3175. ],
  3176. "authors": [
  3177. {
  3178. "name": "Nikita Popov"
  3179. }
  3180. ],
  3181. "description": "A PHP parser written in PHP",
  3182. "keywords": [
  3183. "parser",
  3184. "php"
  3185. ],
  3186. "support": {
  3187. "issues": "https://github.com/nikic/PHP-Parser/issues",
  3188. "source": "https://github.com/nikic/PHP-Parser/tree/v4.14.0"
  3189. },
  3190. "time": "2022-05-31T20:59:12+00:00"
  3191. },
  3192. {
  3193. "name": "opis/closure",
  3194. "version": "3.6.3",
  3195. "source": {
  3196. "type": "git",
  3197. "url": "https://github.com/opis/closure.git",
  3198. "reference": "3d81e4309d2a927abbe66df935f4bb60082805ad"
  3199. },
  3200. "dist": {
  3201. "type": "zip",
  3202. "url": "https://api.github.com/repos/opis/closure/zipball/3d81e4309d2a927abbe66df935f4bb60082805ad",
  3203. "reference": "3d81e4309d2a927abbe66df935f4bb60082805ad",
  3204. "shasum": ""
  3205. },
  3206. "require": {
  3207. "php": "^5.4 || ^7.0 || ^8.0"
  3208. },
  3209. "require-dev": {
  3210. "jeremeamia/superclosure": "^2.0",
  3211. "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.0"
  3212. },
  3213. "type": "library",
  3214. "extra": {
  3215. "branch-alias": {
  3216. "dev-master": "3.6.x-dev"
  3217. }
  3218. },
  3219. "autoload": {
  3220. "files": [
  3221. "functions.php"
  3222. ],
  3223. "psr-4": {
  3224. "Opis\\Closure\\": "src/"
  3225. }
  3226. },
  3227. "notification-url": "https://packagist.org/downloads/",
  3228. "license": [
  3229. "MIT"
  3230. ],
  3231. "authors": [
  3232. {
  3233. "name": "Marius Sarca",
  3234. "email": "marius.sarca@gmail.com"
  3235. },
  3236. {
  3237. "name": "Sorin Sarca",
  3238. "email": "sarca_sorin@hotmail.com"
  3239. }
  3240. ],
  3241. "description": "A library that can be used to serialize closures (anonymous functions) and arbitrary objects.",
  3242. "homepage": "https://opis.io/closure",
  3243. "keywords": [
  3244. "anonymous functions",
  3245. "closure",
  3246. "function",
  3247. "serializable",
  3248. "serialization",
  3249. "serialize"
  3250. ],
  3251. "support": {
  3252. "issues": "https://github.com/opis/closure/issues",
  3253. "source": "https://github.com/opis/closure/tree/3.6.3"
  3254. },
  3255. "time": "2022-01-27T09:35:39+00:00"
  3256. },
  3257. {
  3258. "name": "phpmailer/phpmailer",
  3259. "version": "v6.6.3",
  3260. "source": {
  3261. "type": "git",
  3262. "url": "https://github.com/PHPMailer/PHPMailer.git",
  3263. "reference": "9400f305a898f194caff5521f64e5dfa926626f3"
  3264. },
  3265. "dist": {
  3266. "type": "zip",
  3267. "url": "https://api.github.com/repos/PHPMailer/PHPMailer/zipball/9400f305a898f194caff5521f64e5dfa926626f3",
  3268. "reference": "9400f305a898f194caff5521f64e5dfa926626f3",
  3269. "shasum": ""
  3270. },
  3271. "require": {
  3272. "ext-ctype": "*",
  3273. "ext-filter": "*",
  3274. "ext-hash": "*",
  3275. "php": ">=5.5.0"
  3276. },
  3277. "require-dev": {
  3278. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  3279. "doctrine/annotations": "^1.2",
  3280. "php-parallel-lint/php-console-highlighter": "^1.0.0",
  3281. "php-parallel-lint/php-parallel-lint": "^1.3.2",
  3282. "phpcompatibility/php-compatibility": "^9.3.5",
  3283. "roave/security-advisories": "dev-latest",
  3284. "squizlabs/php_codesniffer": "^3.6.2",
  3285. "yoast/phpunit-polyfills": "^1.0.0"
  3286. },
  3287. "suggest": {
  3288. "ext-mbstring": "Needed to send email in multibyte encoding charset or decode encoded addresses",
  3289. "hayageek/oauth2-yahoo": "Needed for Yahoo XOAUTH2 authentication",
  3290. "league/oauth2-google": "Needed for Google XOAUTH2 authentication",
  3291. "psr/log": "For optional PSR-3 debug logging",
  3292. "stevenmaguire/oauth2-microsoft": "Needed for Microsoft XOAUTH2 authentication",
  3293. "symfony/polyfill-mbstring": "To support UTF-8 if the Mbstring PHP extension is not enabled (^1.2)"
  3294. },
  3295. "type": "library",
  3296. "autoload": {
  3297. "psr-4": {
  3298. "PHPMailer\\PHPMailer\\": "src/"
  3299. }
  3300. },
  3301. "notification-url": "https://packagist.org/downloads/",
  3302. "license": [
  3303. "LGPL-2.1-only"
  3304. ],
  3305. "authors": [
  3306. {
  3307. "name": "Marcus Bointon",
  3308. "email": "phpmailer@synchromedia.co.uk"
  3309. },
  3310. {
  3311. "name": "Jim Jagielski",
  3312. "email": "jimjag@gmail.com"
  3313. },
  3314. {
  3315. "name": "Andy Prevost",
  3316. "email": "codeworxtech@users.sourceforge.net"
  3317. },
  3318. {
  3319. "name": "Brent R. Matzelle"
  3320. }
  3321. ],
  3322. "description": "PHPMailer is a full-featured email creation and transfer class for PHP",
  3323. "support": {
  3324. "issues": "https://github.com/PHPMailer/PHPMailer/issues",
  3325. "source": "https://github.com/PHPMailer/PHPMailer/tree/v6.6.3"
  3326. },
  3327. "funding": [
  3328. {
  3329. "url": "https://github.com/Synchro",
  3330. "type": "github"
  3331. }
  3332. ],
  3333. "time": "2022-06-20T09:21:02+00:00"
  3334. },
  3335. {
  3336. "name": "phpoffice/phpspreadsheet",
  3337. "version": "1.24.1",
  3338. "source": {
  3339. "type": "git",
  3340. "url": "https://github.com/PHPOffice/PhpSpreadsheet.git",
  3341. "reference": "69991111e05fca3ff7398e1e7fca9ebed33efec6"
  3342. },
  3343. "dist": {
  3344. "type": "zip",
  3345. "url": "https://api.github.com/repos/PHPOffice/PhpSpreadsheet/zipball/69991111e05fca3ff7398e1e7fca9ebed33efec6",
  3346. "reference": "69991111e05fca3ff7398e1e7fca9ebed33efec6",
  3347. "shasum": ""
  3348. },
  3349. "require": {
  3350. "ext-ctype": "*",
  3351. "ext-dom": "*",
  3352. "ext-fileinfo": "*",
  3353. "ext-gd": "*",
  3354. "ext-iconv": "*",
  3355. "ext-libxml": "*",
  3356. "ext-mbstring": "*",
  3357. "ext-simplexml": "*",
  3358. "ext-xml": "*",
  3359. "ext-xmlreader": "*",
  3360. "ext-xmlwriter": "*",
  3361. "ext-zip": "*",
  3362. "ext-zlib": "*",
  3363. "ezyang/htmlpurifier": "^4.13",
  3364. "maennchen/zipstream-php": "^2.1",
  3365. "markbaker/complex": "^3.0",
  3366. "markbaker/matrix": "^3.0",
  3367. "php": "^7.3 || ^8.0",
  3368. "psr/http-client": "^1.0",
  3369. "psr/http-factory": "^1.0",
  3370. "psr/simple-cache": "^1.0 || ^2.0"
  3371. },
  3372. "require-dev": {
  3373. "dealerdirect/phpcodesniffer-composer-installer": "dev-master",
  3374. "dompdf/dompdf": "^1.0 || ^2.0",
  3375. "friendsofphp/php-cs-fixer": "^3.2",
  3376. "jpgraph/jpgraph": "^4.0",
  3377. "mpdf/mpdf": "8.1.1",
  3378. "phpcompatibility/php-compatibility": "^9.3",
  3379. "phpstan/phpstan": "^1.1",
  3380. "phpstan/phpstan-phpunit": "^1.0",
  3381. "phpunit/phpunit": "^8.5 || ^9.0",
  3382. "squizlabs/php_codesniffer": "^3.7",
  3383. "tecnickcom/tcpdf": "^6.4"
  3384. },
  3385. "suggest": {
  3386. "dompdf/dompdf": "Option for rendering PDF with PDF Writer (doesn't yet support PHP8)",
  3387. "jpgraph/jpgraph": "Option for rendering charts, or including charts with PDF or HTML Writers",
  3388. "mpdf/mpdf": "Option for rendering PDF with PDF Writer",
  3389. "tecnickcom/tcpdf": "Option for rendering PDF with PDF Writer (doesn't yet support PHP8)"
  3390. },
  3391. "type": "library",
  3392. "autoload": {
  3393. "psr-4": {
  3394. "PhpOffice\\PhpSpreadsheet\\": "src/PhpSpreadsheet"
  3395. }
  3396. },
  3397. "notification-url": "https://packagist.org/downloads/",
  3398. "license": [
  3399. "MIT"
  3400. ],
  3401. "authors": [
  3402. {
  3403. "name": "Maarten Balliauw",
  3404. "homepage": "https://blog.maartenballiauw.be"
  3405. },
  3406. {
  3407. "name": "Mark Baker",
  3408. "homepage": "https://markbakeruk.net"
  3409. },
  3410. {
  3411. "name": "Franck Lefevre",
  3412. "homepage": "https://rootslabs.net"
  3413. },
  3414. {
  3415. "name": "Erik Tilt"
  3416. },
  3417. {
  3418. "name": "Adrien Crivelli"
  3419. }
  3420. ],
  3421. "description": "PHPSpreadsheet - Read, Create and Write Spreadsheet documents in PHP - Spreadsheet engine",
  3422. "homepage": "https://github.com/PHPOffice/PhpSpreadsheet",
  3423. "keywords": [
  3424. "OpenXML",
  3425. "excel",
  3426. "gnumeric",
  3427. "ods",
  3428. "php",
  3429. "spreadsheet",
  3430. "xls",
  3431. "xlsx"
  3432. ],
  3433. "support": {
  3434. "issues": "https://github.com/PHPOffice/PhpSpreadsheet/issues",
  3435. "source": "https://github.com/PHPOffice/PhpSpreadsheet/tree/1.24.1"
  3436. },
  3437. "time": "2022-07-18T19:50:48+00:00"
  3438. },
  3439. {
  3440. "name": "phpoption/phpoption",
  3441. "version": "1.8.1",
  3442. "source": {
  3443. "type": "git",
  3444. "url": "https://github.com/schmittjoh/php-option.git",
  3445. "reference": "eab7a0df01fe2344d172bff4cd6dbd3f8b84ad15"
  3446. },
  3447. "dist": {
  3448. "type": "zip",
  3449. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/eab7a0df01fe2344d172bff4cd6dbd3f8b84ad15",
  3450. "reference": "eab7a0df01fe2344d172bff4cd6dbd3f8b84ad15",
  3451. "shasum": ""
  3452. },
  3453. "require": {
  3454. "php": "^7.0 || ^8.0"
  3455. },
  3456. "require-dev": {
  3457. "bamarni/composer-bin-plugin": "^1.4.1",
  3458. "phpunit/phpunit": "^6.5.14 || ^7.5.20 || ^8.5.19 || ^9.5.8"
  3459. },
  3460. "type": "library",
  3461. "extra": {
  3462. "branch-alias": {
  3463. "dev-master": "1.8-dev"
  3464. }
  3465. },
  3466. "autoload": {
  3467. "psr-4": {
  3468. "PhpOption\\": "src/PhpOption/"
  3469. }
  3470. },
  3471. "notification-url": "https://packagist.org/downloads/",
  3472. "license": [
  3473. "Apache-2.0"
  3474. ],
  3475. "authors": [
  3476. {
  3477. "name": "Johannes M. Schmitt",
  3478. "email": "schmittjoh@gmail.com",
  3479. "homepage": "https://github.com/schmittjoh"
  3480. },
  3481. {
  3482. "name": "Graham Campbell",
  3483. "email": "hello@gjcampbell.co.uk",
  3484. "homepage": "https://github.com/GrahamCampbell"
  3485. }
  3486. ],
  3487. "description": "Option Type for PHP",
  3488. "keywords": [
  3489. "language",
  3490. "option",
  3491. "php",
  3492. "type"
  3493. ],
  3494. "support": {
  3495. "issues": "https://github.com/schmittjoh/php-option/issues",
  3496. "source": "https://github.com/schmittjoh/php-option/tree/1.8.1"
  3497. },
  3498. "funding": [
  3499. {
  3500. "url": "https://github.com/GrahamCampbell",
  3501. "type": "github"
  3502. },
  3503. {
  3504. "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption",
  3505. "type": "tidelift"
  3506. }
  3507. ],
  3508. "time": "2021-12-04T23:24:31+00:00"
  3509. },
  3510. {
  3511. "name": "phpseclib/phpseclib",
  3512. "version": "2.0.37",
  3513. "source": {
  3514. "type": "git",
  3515. "url": "https://github.com/phpseclib/phpseclib.git",
  3516. "reference": "c812fbb4d6b4d7f30235ab7298a12f09ba13b37c"
  3517. },
  3518. "dist": {
  3519. "type": "zip",
  3520. "url": "https://api.github.com/repos/phpseclib/phpseclib/zipball/c812fbb4d6b4d7f30235ab7298a12f09ba13b37c",
  3521. "reference": "c812fbb4d6b4d7f30235ab7298a12f09ba13b37c",
  3522. "shasum": ""
  3523. },
  3524. "require": {
  3525. "php": ">=5.3.3"
  3526. },
  3527. "require-dev": {
  3528. "phing/phing": "~2.7",
  3529. "phpunit/phpunit": "^4.8.35|^5.7|^6.0|^9.4",
  3530. "squizlabs/php_codesniffer": "~2.0"
  3531. },
  3532. "suggest": {
  3533. "ext-gmp": "Install the GMP (GNU Multiple Precision) extension in order to speed up arbitrary precision integer arithmetic operations.",
  3534. "ext-libsodium": "SSH2/SFTP can make use of some algorithms provided by the libsodium-php extension.",
  3535. "ext-mcrypt": "Install the Mcrypt extension in order to speed up a few other cryptographic operations.",
  3536. "ext-openssl": "Install the OpenSSL extension in order to speed up a wide variety of cryptographic operations."
  3537. },
  3538. "type": "library",
  3539. "autoload": {
  3540. "files": [
  3541. "phpseclib/bootstrap.php"
  3542. ],
  3543. "psr-4": {
  3544. "phpseclib\\": "phpseclib/"
  3545. }
  3546. },
  3547. "notification-url": "https://packagist.org/downloads/",
  3548. "license": [
  3549. "MIT"
  3550. ],
  3551. "authors": [
  3552. {
  3553. "name": "Jim Wigginton",
  3554. "email": "terrafrost@php.net",
  3555. "role": "Lead Developer"
  3556. },
  3557. {
  3558. "name": "Patrick Monnerat",
  3559. "email": "pm@datasphere.ch",
  3560. "role": "Developer"
  3561. },
  3562. {
  3563. "name": "Andreas Fischer",
  3564. "email": "bantu@phpbb.com",
  3565. "role": "Developer"
  3566. },
  3567. {
  3568. "name": "Hans-Jürgen Petrich",
  3569. "email": "petrich@tronic-media.com",
  3570. "role": "Developer"
  3571. },
  3572. {
  3573. "name": "Graham Campbell",
  3574. "email": "graham@alt-three.com",
  3575. "role": "Developer"
  3576. }
  3577. ],
  3578. "description": "PHP Secure Communications Library - Pure-PHP implementations of RSA, AES, SSH2, SFTP, X.509 etc.",
  3579. "homepage": "http://phpseclib.sourceforge.net",
  3580. "keywords": [
  3581. "BigInteger",
  3582. "aes",
  3583. "asn.1",
  3584. "asn1",
  3585. "blowfish",
  3586. "crypto",
  3587. "cryptography",
  3588. "encryption",
  3589. "rsa",
  3590. "security",
  3591. "sftp",
  3592. "signature",
  3593. "signing",
  3594. "ssh",
  3595. "twofish",
  3596. "x.509",
  3597. "x509"
  3598. ],
  3599. "support": {
  3600. "issues": "https://github.com/phpseclib/phpseclib/issues",
  3601. "source": "https://github.com/phpseclib/phpseclib/tree/2.0.37"
  3602. },
  3603. "funding": [
  3604. {
  3605. "url": "https://github.com/terrafrost",
  3606. "type": "github"
  3607. },
  3608. {
  3609. "url": "https://www.patreon.com/phpseclib",
  3610. "type": "patreon"
  3611. },
  3612. {
  3613. "url": "https://tidelift.com/funding/github/packagist/phpseclib/phpseclib",
  3614. "type": "tidelift"
  3615. }
  3616. ],
  3617. "time": "2022-04-04T04:57:45+00:00"
  3618. },
  3619. {
  3620. "name": "pleonasm/merkle-tree",
  3621. "version": "1.0.0",
  3622. "source": {
  3623. "type": "git",
  3624. "url": "https://github.com/pleonasm/merkle-tree.git",
  3625. "reference": "9ddc9d0a0e396750fada378f3aa90f6c02dd56a1"
  3626. },
  3627. "dist": {
  3628. "type": "zip",
  3629. "url": "https://api.github.com/repos/pleonasm/merkle-tree/zipball/9ddc9d0a0e396750fada378f3aa90f6c02dd56a1",
  3630. "reference": "9ddc9d0a0e396750fada378f3aa90f6c02dd56a1",
  3631. "shasum": ""
  3632. },
  3633. "require": {
  3634. "php": ">=5.4.0"
  3635. },
  3636. "require-dev": {
  3637. "ext-xdebug": ">=2.2.0",
  3638. "phpunit/php-invoker": ">=1.0.0,<1.2.0",
  3639. "phpunit/phpunit": "3.7.19",
  3640. "satooshi/php-coveralls": "*@dev",
  3641. "squizlabs/php_codesniffer": "*"
  3642. },
  3643. "type": "library",
  3644. "autoload": {
  3645. "psr-0": {
  3646. "Pleo": "src/"
  3647. }
  3648. },
  3649. "notification-url": "https://packagist.org/downloads/",
  3650. "license": [
  3651. "BSD-2-Clause"
  3652. ],
  3653. "authors": [
  3654. {
  3655. "name": "Matthew Nagi",
  3656. "email": "matthew.nagi@base-2.net"
  3657. }
  3658. ],
  3659. "description": "An implementation of a Merkle Tree in PHP",
  3660. "support": {
  3661. "issues": "https://github.com/pleonasm/merkle-tree/issues",
  3662. "source": "https://github.com/pleonasm/merkle-tree/tree/master"
  3663. },
  3664. "time": "2013-05-22T20:46:20+00:00"
  3665. },
  3666. {
  3667. "name": "predis/predis",
  3668. "version": "v1.1.10",
  3669. "source": {
  3670. "type": "git",
  3671. "url": "https://github.com/predis/predis.git",
  3672. "reference": "a2fb02d738bedadcffdbb07efa3a5e7bd57f8d6e"
  3673. },
  3674. "dist": {
  3675. "type": "zip",
  3676. "url": "https://api.github.com/repos/predis/predis/zipball/a2fb02d738bedadcffdbb07efa3a5e7bd57f8d6e",
  3677. "reference": "a2fb02d738bedadcffdbb07efa3a5e7bd57f8d6e",
  3678. "shasum": ""
  3679. },
  3680. "require": {
  3681. "php": ">=5.3.9"
  3682. },
  3683. "require-dev": {
  3684. "phpunit/phpunit": "~4.8"
  3685. },
  3686. "suggest": {
  3687. "ext-curl": "Allows access to Webdis when paired with phpiredis",
  3688. "ext-phpiredis": "Allows faster serialization and deserialization of the Redis protocol"
  3689. },
  3690. "type": "library",
  3691. "autoload": {
  3692. "psr-4": {
  3693. "Predis\\": "src/"
  3694. }
  3695. },
  3696. "notification-url": "https://packagist.org/downloads/",
  3697. "license": [
  3698. "MIT"
  3699. ],
  3700. "authors": [
  3701. {
  3702. "name": "Daniele Alessandri",
  3703. "email": "suppakilla@gmail.com",
  3704. "homepage": "http://clorophilla.net",
  3705. "role": "Creator & Maintainer"
  3706. },
  3707. {
  3708. "name": "Till Krüss",
  3709. "homepage": "https://till.im",
  3710. "role": "Maintainer"
  3711. }
  3712. ],
  3713. "description": "Flexible and feature-complete Redis client for PHP and HHVM",
  3714. "homepage": "http://github.com/predis/predis",
  3715. "keywords": [
  3716. "nosql",
  3717. "predis",
  3718. "redis"
  3719. ],
  3720. "support": {
  3721. "issues": "https://github.com/predis/predis/issues",
  3722. "source": "https://github.com/predis/predis/tree/v1.1.10"
  3723. },
  3724. "funding": [
  3725. {
  3726. "url": "https://github.com/sponsors/tillkruss",
  3727. "type": "github"
  3728. }
  3729. ],
  3730. "time": "2022-01-05T17:46:08+00:00"
  3731. },
  3732. {
  3733. "name": "psr/container",
  3734. "version": "1.1.1",
  3735. "source": {
  3736. "type": "git",
  3737. "url": "https://github.com/php-fig/container.git",
  3738. "reference": "8622567409010282b7aeebe4bb841fe98b58dcaf"
  3739. },
  3740. "dist": {
  3741. "type": "zip",
  3742. "url": "https://api.github.com/repos/php-fig/container/zipball/8622567409010282b7aeebe4bb841fe98b58dcaf",
  3743. "reference": "8622567409010282b7aeebe4bb841fe98b58dcaf",
  3744. "shasum": ""
  3745. },
  3746. "require": {
  3747. "php": ">=7.2.0"
  3748. },
  3749. "type": "library",
  3750. "autoload": {
  3751. "psr-4": {
  3752. "Psr\\Container\\": "src/"
  3753. }
  3754. },
  3755. "notification-url": "https://packagist.org/downloads/",
  3756. "license": [
  3757. "MIT"
  3758. ],
  3759. "authors": [
  3760. {
  3761. "name": "PHP-FIG",
  3762. "homepage": "https://www.php-fig.org/"
  3763. }
  3764. ],
  3765. "description": "Common Container Interface (PHP FIG PSR-11)",
  3766. "homepage": "https://github.com/php-fig/container",
  3767. "keywords": [
  3768. "PSR-11",
  3769. "container",
  3770. "container-interface",
  3771. "container-interop",
  3772. "psr"
  3773. ],
  3774. "support": {
  3775. "issues": "https://github.com/php-fig/container/issues",
  3776. "source": "https://github.com/php-fig/container/tree/1.1.1"
  3777. },
  3778. "time": "2021-03-05T17:36:06+00:00"
  3779. },
  3780. {
  3781. "name": "psr/event-dispatcher",
  3782. "version": "1.0.0",
  3783. "source": {
  3784. "type": "git",
  3785. "url": "https://github.com/php-fig/event-dispatcher.git",
  3786. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  3787. },
  3788. "dist": {
  3789. "type": "zip",
  3790. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  3791. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  3792. "shasum": ""
  3793. },
  3794. "require": {
  3795. "php": ">=7.2.0"
  3796. },
  3797. "type": "library",
  3798. "extra": {
  3799. "branch-alias": {
  3800. "dev-master": "1.0.x-dev"
  3801. }
  3802. },
  3803. "autoload": {
  3804. "psr-4": {
  3805. "Psr\\EventDispatcher\\": "src/"
  3806. }
  3807. },
  3808. "notification-url": "https://packagist.org/downloads/",
  3809. "license": [
  3810. "MIT"
  3811. ],
  3812. "authors": [
  3813. {
  3814. "name": "PHP-FIG",
  3815. "homepage": "http://www.php-fig.org/"
  3816. }
  3817. ],
  3818. "description": "Standard interfaces for event handling.",
  3819. "keywords": [
  3820. "events",
  3821. "psr",
  3822. "psr-14"
  3823. ],
  3824. "support": {
  3825. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  3826. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  3827. },
  3828. "time": "2019-01-08T18:20:26+00:00"
  3829. },
  3830. {
  3831. "name": "psr/http-client",
  3832. "version": "1.0.1",
  3833. "source": {
  3834. "type": "git",
  3835. "url": "https://github.com/php-fig/http-client.git",
  3836. "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621"
  3837. },
  3838. "dist": {
  3839. "type": "zip",
  3840. "url": "https://api.github.com/repos/php-fig/http-client/zipball/2dfb5f6c5eff0e91e20e913f8c5452ed95b86621",
  3841. "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621",
  3842. "shasum": ""
  3843. },
  3844. "require": {
  3845. "php": "^7.0 || ^8.0",
  3846. "psr/http-message": "^1.0"
  3847. },
  3848. "type": "library",
  3849. "extra": {
  3850. "branch-alias": {
  3851. "dev-master": "1.0.x-dev"
  3852. }
  3853. },
  3854. "autoload": {
  3855. "psr-4": {
  3856. "Psr\\Http\\Client\\": "src/"
  3857. }
  3858. },
  3859. "notification-url": "https://packagist.org/downloads/",
  3860. "license": [
  3861. "MIT"
  3862. ],
  3863. "authors": [
  3864. {
  3865. "name": "PHP-FIG",
  3866. "homepage": "http://www.php-fig.org/"
  3867. }
  3868. ],
  3869. "description": "Common interface for HTTP clients",
  3870. "homepage": "https://github.com/php-fig/http-client",
  3871. "keywords": [
  3872. "http",
  3873. "http-client",
  3874. "psr",
  3875. "psr-18"
  3876. ],
  3877. "support": {
  3878. "source": "https://github.com/php-fig/http-client/tree/master"
  3879. },
  3880. "time": "2020-06-29T06:28:15+00:00"
  3881. },
  3882. {
  3883. "name": "psr/http-factory",
  3884. "version": "1.0.1",
  3885. "source": {
  3886. "type": "git",
  3887. "url": "https://github.com/php-fig/http-factory.git",
  3888. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be"
  3889. },
  3890. "dist": {
  3891. "type": "zip",
  3892. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  3893. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  3894. "shasum": ""
  3895. },
  3896. "require": {
  3897. "php": ">=7.0.0",
  3898. "psr/http-message": "^1.0"
  3899. },
  3900. "type": "library",
  3901. "extra": {
  3902. "branch-alias": {
  3903. "dev-master": "1.0.x-dev"
  3904. }
  3905. },
  3906. "autoload": {
  3907. "psr-4": {
  3908. "Psr\\Http\\Message\\": "src/"
  3909. }
  3910. },
  3911. "notification-url": "https://packagist.org/downloads/",
  3912. "license": [
  3913. "MIT"
  3914. ],
  3915. "authors": [
  3916. {
  3917. "name": "PHP-FIG",
  3918. "homepage": "http://www.php-fig.org/"
  3919. }
  3920. ],
  3921. "description": "Common interfaces for PSR-7 HTTP message factories",
  3922. "keywords": [
  3923. "factory",
  3924. "http",
  3925. "message",
  3926. "psr",
  3927. "psr-17",
  3928. "psr-7",
  3929. "request",
  3930. "response"
  3931. ],
  3932. "support": {
  3933. "source": "https://github.com/php-fig/http-factory/tree/master"
  3934. },
  3935. "time": "2019-04-30T12:38:16+00:00"
  3936. },
  3937. {
  3938. "name": "psr/http-message",
  3939. "version": "1.0.1",
  3940. "source": {
  3941. "type": "git",
  3942. "url": "https://github.com/php-fig/http-message.git",
  3943. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  3944. },
  3945. "dist": {
  3946. "type": "zip",
  3947. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  3948. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  3949. "shasum": ""
  3950. },
  3951. "require": {
  3952. "php": ">=5.3.0"
  3953. },
  3954. "type": "library",
  3955. "extra": {
  3956. "branch-alias": {
  3957. "dev-master": "1.0.x-dev"
  3958. }
  3959. },
  3960. "autoload": {
  3961. "psr-4": {
  3962. "Psr\\Http\\Message\\": "src/"
  3963. }
  3964. },
  3965. "notification-url": "https://packagist.org/downloads/",
  3966. "license": [
  3967. "MIT"
  3968. ],
  3969. "authors": [
  3970. {
  3971. "name": "PHP-FIG",
  3972. "homepage": "http://www.php-fig.org/"
  3973. }
  3974. ],
  3975. "description": "Common interface for HTTP messages",
  3976. "homepage": "https://github.com/php-fig/http-message",
  3977. "keywords": [
  3978. "http",
  3979. "http-message",
  3980. "psr",
  3981. "psr-7",
  3982. "request",
  3983. "response"
  3984. ],
  3985. "support": {
  3986. "source": "https://github.com/php-fig/http-message/tree/master"
  3987. },
  3988. "time": "2016-08-06T14:39:51+00:00"
  3989. },
  3990. {
  3991. "name": "psr/log",
  3992. "version": "1.1.4",
  3993. "source": {
  3994. "type": "git",
  3995. "url": "https://github.com/php-fig/log.git",
  3996. "reference": "d49695b909c3b7628b6289db5479a1c204601f11"
  3997. },
  3998. "dist": {
  3999. "type": "zip",
  4000. "url": "https://api.github.com/repos/php-fig/log/zipball/d49695b909c3b7628b6289db5479a1c204601f11",
  4001. "reference": "d49695b909c3b7628b6289db5479a1c204601f11",
  4002. "shasum": ""
  4003. },
  4004. "require": {
  4005. "php": ">=5.3.0"
  4006. },
  4007. "type": "library",
  4008. "extra": {
  4009. "branch-alias": {
  4010. "dev-master": "1.1.x-dev"
  4011. }
  4012. },
  4013. "autoload": {
  4014. "psr-4": {
  4015. "Psr\\Log\\": "Psr/Log/"
  4016. }
  4017. },
  4018. "notification-url": "https://packagist.org/downloads/",
  4019. "license": [
  4020. "MIT"
  4021. ],
  4022. "authors": [
  4023. {
  4024. "name": "PHP-FIG",
  4025. "homepage": "https://www.php-fig.org/"
  4026. }
  4027. ],
  4028. "description": "Common interface for logging libraries",
  4029. "homepage": "https://github.com/php-fig/log",
  4030. "keywords": [
  4031. "log",
  4032. "psr",
  4033. "psr-3"
  4034. ],
  4035. "support": {
  4036. "source": "https://github.com/php-fig/log/tree/1.1.4"
  4037. },
  4038. "time": "2021-05-03T11:20:27+00:00"
  4039. },
  4040. {
  4041. "name": "psr/simple-cache",
  4042. "version": "1.0.1",
  4043. "source": {
  4044. "type": "git",
  4045. "url": "https://github.com/php-fig/simple-cache.git",
  4046. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b"
  4047. },
  4048. "dist": {
  4049. "type": "zip",
  4050. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  4051. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  4052. "shasum": ""
  4053. },
  4054. "require": {
  4055. "php": ">=5.3.0"
  4056. },
  4057. "type": "library",
  4058. "extra": {
  4059. "branch-alias": {
  4060. "dev-master": "1.0.x-dev"
  4061. }
  4062. },
  4063. "autoload": {
  4064. "psr-4": {
  4065. "Psr\\SimpleCache\\": "src/"
  4066. }
  4067. },
  4068. "notification-url": "https://packagist.org/downloads/",
  4069. "license": [
  4070. "MIT"
  4071. ],
  4072. "authors": [
  4073. {
  4074. "name": "PHP-FIG",
  4075. "homepage": "http://www.php-fig.org/"
  4076. }
  4077. ],
  4078. "description": "Common interfaces for simple caching",
  4079. "keywords": [
  4080. "cache",
  4081. "caching",
  4082. "psr",
  4083. "psr-16",
  4084. "simple-cache"
  4085. ],
  4086. "support": {
  4087. "source": "https://github.com/php-fig/simple-cache/tree/master"
  4088. },
  4089. "time": "2017-10-23T01:57:42+00:00"
  4090. },
  4091. {
  4092. "name": "psy/psysh",
  4093. "version": "v0.11.7",
  4094. "source": {
  4095. "type": "git",
  4096. "url": "https://github.com/bobthecow/psysh.git",
  4097. "reference": "77fc7270031fbc28f9a7bea31385da5c4855cb7a"
  4098. },
  4099. "dist": {
  4100. "type": "zip",
  4101. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/77fc7270031fbc28f9a7bea31385da5c4855cb7a",
  4102. "reference": "77fc7270031fbc28f9a7bea31385da5c4855cb7a",
  4103. "shasum": ""
  4104. },
  4105. "require": {
  4106. "ext-json": "*",
  4107. "ext-tokenizer": "*",
  4108. "nikic/php-parser": "^4.0 || ^3.1",
  4109. "php": "^8.0 || ^7.0.8",
  4110. "symfony/console": "^6.0 || ^5.0 || ^4.0 || ^3.4",
  4111. "symfony/var-dumper": "^6.0 || ^5.0 || ^4.0 || ^3.4"
  4112. },
  4113. "conflict": {
  4114. "symfony/console": "4.4.37 || 5.3.14 || 5.3.15 || 5.4.3 || 5.4.4 || 6.0.3 || 6.0.4"
  4115. },
  4116. "require-dev": {
  4117. "bamarni/composer-bin-plugin": "^1.2"
  4118. },
  4119. "suggest": {
  4120. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  4121. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  4122. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.",
  4123. "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history."
  4124. },
  4125. "bin": [
  4126. "bin/psysh"
  4127. ],
  4128. "type": "library",
  4129. "extra": {
  4130. "branch-alias": {
  4131. "dev-main": "0.11.x-dev"
  4132. }
  4133. },
  4134. "autoload": {
  4135. "files": [
  4136. "src/functions.php"
  4137. ],
  4138. "psr-4": {
  4139. "Psy\\": "src/"
  4140. }
  4141. },
  4142. "notification-url": "https://packagist.org/downloads/",
  4143. "license": [
  4144. "MIT"
  4145. ],
  4146. "authors": [
  4147. {
  4148. "name": "Justin Hileman",
  4149. "email": "justin@justinhileman.info",
  4150. "homepage": "http://justinhileman.com"
  4151. }
  4152. ],
  4153. "description": "An interactive shell for modern PHP.",
  4154. "homepage": "http://psysh.org",
  4155. "keywords": [
  4156. "REPL",
  4157. "console",
  4158. "interactive",
  4159. "shell"
  4160. ],
  4161. "support": {
  4162. "issues": "https://github.com/bobthecow/psysh/issues",
  4163. "source": "https://github.com/bobthecow/psysh/tree/v0.11.7"
  4164. },
  4165. "time": "2022-07-07T13:49:11+00:00"
  4166. },
  4167. {
  4168. "name": "ralouphie/getallheaders",
  4169. "version": "3.0.3",
  4170. "source": {
  4171. "type": "git",
  4172. "url": "https://github.com/ralouphie/getallheaders.git",
  4173. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  4174. },
  4175. "dist": {
  4176. "type": "zip",
  4177. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  4178. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  4179. "shasum": ""
  4180. },
  4181. "require": {
  4182. "php": ">=5.6"
  4183. },
  4184. "require-dev": {
  4185. "php-coveralls/php-coveralls": "^2.1",
  4186. "phpunit/phpunit": "^5 || ^6.5"
  4187. },
  4188. "type": "library",
  4189. "autoload": {
  4190. "files": [
  4191. "src/getallheaders.php"
  4192. ]
  4193. },
  4194. "notification-url": "https://packagist.org/downloads/",
  4195. "license": [
  4196. "MIT"
  4197. ],
  4198. "authors": [
  4199. {
  4200. "name": "Ralph Khattar",
  4201. "email": "ralph.khattar@gmail.com"
  4202. }
  4203. ],
  4204. "description": "A polyfill for getallheaders.",
  4205. "support": {
  4206. "issues": "https://github.com/ralouphie/getallheaders/issues",
  4207. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  4208. },
  4209. "time": "2019-03-08T08:55:37+00:00"
  4210. },
  4211. {
  4212. "name": "ramsey/collection",
  4213. "version": "1.2.2",
  4214. "source": {
  4215. "type": "git",
  4216. "url": "https://github.com/ramsey/collection.git",
  4217. "reference": "cccc74ee5e328031b15640b51056ee8d3bb66c0a"
  4218. },
  4219. "dist": {
  4220. "type": "zip",
  4221. "url": "https://api.github.com/repos/ramsey/collection/zipball/cccc74ee5e328031b15640b51056ee8d3bb66c0a",
  4222. "reference": "cccc74ee5e328031b15640b51056ee8d3bb66c0a",
  4223. "shasum": ""
  4224. },
  4225. "require": {
  4226. "php": "^7.3 || ^8",
  4227. "symfony/polyfill-php81": "^1.23"
  4228. },
  4229. "require-dev": {
  4230. "captainhook/captainhook": "^5.3",
  4231. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  4232. "ergebnis/composer-normalize": "^2.6",
  4233. "fakerphp/faker": "^1.5",
  4234. "hamcrest/hamcrest-php": "^2",
  4235. "jangregor/phpstan-prophecy": "^0.8",
  4236. "mockery/mockery": "^1.3",
  4237. "phpspec/prophecy-phpunit": "^2.0",
  4238. "phpstan/extension-installer": "^1",
  4239. "phpstan/phpstan": "^0.12.32",
  4240. "phpstan/phpstan-mockery": "^0.12.5",
  4241. "phpstan/phpstan-phpunit": "^0.12.11",
  4242. "phpunit/phpunit": "^8.5 || ^9",
  4243. "psy/psysh": "^0.10.4",
  4244. "slevomat/coding-standard": "^6.3",
  4245. "squizlabs/php_codesniffer": "^3.5",
  4246. "vimeo/psalm": "^4.4"
  4247. },
  4248. "type": "library",
  4249. "autoload": {
  4250. "psr-4": {
  4251. "Ramsey\\Collection\\": "src/"
  4252. }
  4253. },
  4254. "notification-url": "https://packagist.org/downloads/",
  4255. "license": [
  4256. "MIT"
  4257. ],
  4258. "authors": [
  4259. {
  4260. "name": "Ben Ramsey",
  4261. "email": "ben@benramsey.com",
  4262. "homepage": "https://benramsey.com"
  4263. }
  4264. ],
  4265. "description": "A PHP library for representing and manipulating collections.",
  4266. "keywords": [
  4267. "array",
  4268. "collection",
  4269. "hash",
  4270. "map",
  4271. "queue",
  4272. "set"
  4273. ],
  4274. "support": {
  4275. "issues": "https://github.com/ramsey/collection/issues",
  4276. "source": "https://github.com/ramsey/collection/tree/1.2.2"
  4277. },
  4278. "funding": [
  4279. {
  4280. "url": "https://github.com/ramsey",
  4281. "type": "github"
  4282. },
  4283. {
  4284. "url": "https://tidelift.com/funding/github/packagist/ramsey/collection",
  4285. "type": "tidelift"
  4286. }
  4287. ],
  4288. "time": "2021-10-10T03:01:02+00:00"
  4289. },
  4290. {
  4291. "name": "ramsey/uuid",
  4292. "version": "4.2.3",
  4293. "source": {
  4294. "type": "git",
  4295. "url": "https://github.com/ramsey/uuid.git",
  4296. "reference": "fc9bb7fb5388691fd7373cd44dcb4d63bbcf24df"
  4297. },
  4298. "dist": {
  4299. "type": "zip",
  4300. "url": "https://api.github.com/repos/ramsey/uuid/zipball/fc9bb7fb5388691fd7373cd44dcb4d63bbcf24df",
  4301. "reference": "fc9bb7fb5388691fd7373cd44dcb4d63bbcf24df",
  4302. "shasum": ""
  4303. },
  4304. "require": {
  4305. "brick/math": "^0.8 || ^0.9",
  4306. "ext-json": "*",
  4307. "php": "^7.2 || ^8.0",
  4308. "ramsey/collection": "^1.0",
  4309. "symfony/polyfill-ctype": "^1.8",
  4310. "symfony/polyfill-php80": "^1.14"
  4311. },
  4312. "replace": {
  4313. "rhumsaa/uuid": "self.version"
  4314. },
  4315. "require-dev": {
  4316. "captainhook/captainhook": "^5.10",
  4317. "captainhook/plugin-composer": "^5.3",
  4318. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  4319. "doctrine/annotations": "^1.8",
  4320. "ergebnis/composer-normalize": "^2.15",
  4321. "mockery/mockery": "^1.3",
  4322. "moontoast/math": "^1.1",
  4323. "paragonie/random-lib": "^2",
  4324. "php-mock/php-mock": "^2.2",
  4325. "php-mock/php-mock-mockery": "^1.3",
  4326. "php-parallel-lint/php-parallel-lint": "^1.1",
  4327. "phpbench/phpbench": "^1.0",
  4328. "phpstan/extension-installer": "^1.0",
  4329. "phpstan/phpstan": "^0.12",
  4330. "phpstan/phpstan-mockery": "^0.12",
  4331. "phpstan/phpstan-phpunit": "^0.12",
  4332. "phpunit/phpunit": "^8.5 || ^9",
  4333. "slevomat/coding-standard": "^7.0",
  4334. "squizlabs/php_codesniffer": "^3.5",
  4335. "vimeo/psalm": "^4.9"
  4336. },
  4337. "suggest": {
  4338. "ext-bcmath": "Enables faster math with arbitrary-precision integers using BCMath.",
  4339. "ext-ctype": "Enables faster processing of character classification using ctype functions.",
  4340. "ext-gmp": "Enables faster math with arbitrary-precision integers using GMP.",
  4341. "ext-uuid": "Enables the use of PeclUuidTimeGenerator and PeclUuidRandomGenerator.",
  4342. "paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
  4343. "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type."
  4344. },
  4345. "type": "library",
  4346. "extra": {
  4347. "branch-alias": {
  4348. "dev-main": "4.x-dev"
  4349. },
  4350. "captainhook": {
  4351. "force-install": true
  4352. }
  4353. },
  4354. "autoload": {
  4355. "files": [
  4356. "src/functions.php"
  4357. ],
  4358. "psr-4": {
  4359. "Ramsey\\Uuid\\": "src/"
  4360. }
  4361. },
  4362. "notification-url": "https://packagist.org/downloads/",
  4363. "license": [
  4364. "MIT"
  4365. ],
  4366. "description": "A PHP library for generating and working with universally unique identifiers (UUIDs).",
  4367. "keywords": [
  4368. "guid",
  4369. "identifier",
  4370. "uuid"
  4371. ],
  4372. "support": {
  4373. "issues": "https://github.com/ramsey/uuid/issues",
  4374. "source": "https://github.com/ramsey/uuid/tree/4.2.3"
  4375. },
  4376. "funding": [
  4377. {
  4378. "url": "https://github.com/ramsey",
  4379. "type": "github"
  4380. },
  4381. {
  4382. "url": "https://tidelift.com/funding/github/packagist/ramsey/uuid",
  4383. "type": "tidelift"
  4384. }
  4385. ],
  4386. "time": "2021-09-25T23:10:38+00:00"
  4387. },
  4388. {
  4389. "name": "sc0vu/web3.php",
  4390. "version": "dev-master",
  4391. "source": {
  4392. "type": "git",
  4393. "url": "https://github.com/sc0Vu/web3.php.git",
  4394. "reference": "fb94ea92c565dd6e9b8a522d821d2b22b3e271f2"
  4395. },
  4396. "dist": {
  4397. "type": "zip",
  4398. "url": "https://api.github.com/repos/sc0Vu/web3.php/zipball/fb94ea92c565dd6e9b8a522d821d2b22b3e271f2",
  4399. "reference": "fb94ea92c565dd6e9b8a522d821d2b22b3e271f2",
  4400. "shasum": ""
  4401. },
  4402. "require": {
  4403. "ext-mbstring": "*",
  4404. "guzzlehttp/guzzle": "^6.3|^7.0",
  4405. "kornrunner/keccak": "~1.0",
  4406. "php": "^7.1",
  4407. "phpseclib/phpseclib": "~2.0.11"
  4408. },
  4409. "require-dev": {
  4410. "phpunit/phpunit": "~6.0"
  4411. },
  4412. "default-branch": true,
  4413. "type": "library",
  4414. "autoload": {
  4415. "psr-4": {
  4416. "Web3\\": "src/"
  4417. }
  4418. },
  4419. "notification-url": "https://packagist.org/downloads/",
  4420. "license": [
  4421. "MIT"
  4422. ],
  4423. "authors": [
  4424. {
  4425. "name": "sc0Vu",
  4426. "email": "alk03073135@gmail.com"
  4427. }
  4428. ],
  4429. "description": "Ethereum web3 interface.",
  4430. "support": {
  4431. "source": "https://github.com/sc0Vu/web3.php/tree/master"
  4432. },
  4433. "time": "2021-08-15T03:28:10+00:00"
  4434. },
  4435. {
  4436. "name": "simplesoftwareio/simple-qrcode",
  4437. "version": "4.2.0",
  4438. "source": {
  4439. "type": "git",
  4440. "url": "https://github.com/SimpleSoftwareIO/simple-qrcode.git",
  4441. "reference": "916db7948ca6772d54bb617259c768c9cdc8d537"
  4442. },
  4443. "dist": {
  4444. "type": "zip",
  4445. "url": "https://api.github.com/repos/SimpleSoftwareIO/simple-qrcode/zipball/916db7948ca6772d54bb617259c768c9cdc8d537",
  4446. "reference": "916db7948ca6772d54bb617259c768c9cdc8d537",
  4447. "shasum": ""
  4448. },
  4449. "require": {
  4450. "bacon/bacon-qr-code": "^2.0",
  4451. "ext-gd": "*",
  4452. "php": ">=7.2|^8.0"
  4453. },
  4454. "require-dev": {
  4455. "mockery/mockery": "~1",
  4456. "phpunit/phpunit": "~9"
  4457. },
  4458. "suggest": {
  4459. "ext-imagick": "Allows the generation of PNG QrCodes.",
  4460. "illuminate/support": "Allows for use within Laravel."
  4461. },
  4462. "type": "library",
  4463. "extra": {
  4464. "laravel": {
  4465. "providers": [
  4466. "SimpleSoftwareIO\\QrCode\\QrCodeServiceProvider"
  4467. ],
  4468. "aliases": {
  4469. "QrCode": "SimpleSoftwareIO\\QrCode\\Facades\\QrCode"
  4470. }
  4471. }
  4472. },
  4473. "autoload": {
  4474. "psr-4": {
  4475. "SimpleSoftwareIO\\QrCode\\": "src"
  4476. }
  4477. },
  4478. "notification-url": "https://packagist.org/downloads/",
  4479. "license": [
  4480. "MIT"
  4481. ],
  4482. "authors": [
  4483. {
  4484. "name": "Simple Software LLC",
  4485. "email": "support@simplesoftware.io"
  4486. }
  4487. ],
  4488. "description": "Simple QrCode is a QR code generator made for Laravel.",
  4489. "homepage": "https://www.simplesoftware.io/#/docs/simple-qrcode",
  4490. "keywords": [
  4491. "Simple",
  4492. "generator",
  4493. "laravel",
  4494. "qrcode",
  4495. "wrapper"
  4496. ],
  4497. "support": {
  4498. "issues": "https://github.com/SimpleSoftwareIO/simple-qrcode/issues",
  4499. "source": "https://github.com/SimpleSoftwareIO/simple-qrcode/tree/4.2.0"
  4500. },
  4501. "time": "2021-02-08T20:43:55+00:00"
  4502. },
  4503. {
  4504. "name": "simplito/bigint-wrapper-php",
  4505. "version": "1.0.0",
  4506. "source": {
  4507. "type": "git",
  4508. "url": "https://github.com/simplito/bigint-wrapper-php.git",
  4509. "reference": "cf21ec76d33f103add487b3eadbd9f5033a25930"
  4510. },
  4511. "dist": {
  4512. "type": "zip",
  4513. "url": "https://api.github.com/repos/simplito/bigint-wrapper-php/zipball/cf21ec76d33f103add487b3eadbd9f5033a25930",
  4514. "reference": "cf21ec76d33f103add487b3eadbd9f5033a25930",
  4515. "shasum": ""
  4516. },
  4517. "type": "library",
  4518. "autoload": {
  4519. "psr-4": {
  4520. "BI\\": "lib/"
  4521. }
  4522. },
  4523. "notification-url": "https://packagist.org/downloads/",
  4524. "license": [
  4525. "MIT"
  4526. ],
  4527. "authors": [
  4528. {
  4529. "name": "Simplito Team",
  4530. "email": "s.smyczynski@simplito.com",
  4531. "homepage": "https://simplito.com"
  4532. }
  4533. ],
  4534. "description": "Common interface for php_gmp and php_bcmath modules",
  4535. "support": {
  4536. "issues": "https://github.com/simplito/bigint-wrapper-php/issues",
  4537. "source": "https://github.com/simplito/bigint-wrapper-php/tree/1.0.0"
  4538. },
  4539. "time": "2018-02-27T12:38:08+00:00"
  4540. },
  4541. {
  4542. "name": "simplito/bn-php",
  4543. "version": "1.1.2",
  4544. "source": {
  4545. "type": "git",
  4546. "url": "https://github.com/simplito/bn-php.git",
  4547. "reference": "e852fcd27e4acbc32459606d7606e45a85e42465"
  4548. },
  4549. "dist": {
  4550. "type": "zip",
  4551. "url": "https://api.github.com/repos/simplito/bn-php/zipball/e852fcd27e4acbc32459606d7606e45a85e42465",
  4552. "reference": "e852fcd27e4acbc32459606d7606e45a85e42465",
  4553. "shasum": ""
  4554. },
  4555. "require": {
  4556. "simplito/bigint-wrapper-php": "~1.0.0"
  4557. },
  4558. "require-dev": {
  4559. "phpunit/phpunit": "*"
  4560. },
  4561. "type": "library",
  4562. "autoload": {
  4563. "psr-4": {
  4564. "BN\\": "lib/"
  4565. }
  4566. },
  4567. "notification-url": "https://packagist.org/downloads/",
  4568. "license": [
  4569. "MIT"
  4570. ],
  4571. "authors": [
  4572. {
  4573. "name": "Simplito Team",
  4574. "email": "s.smyczynski@simplito.com",
  4575. "homepage": "https://simplito.com"
  4576. }
  4577. ],
  4578. "description": "Big number implementation compatible with bn.js",
  4579. "support": {
  4580. "issues": "https://github.com/simplito/bn-php/issues",
  4581. "source": "https://github.com/simplito/bn-php/tree/1.1.2"
  4582. },
  4583. "time": "2018-04-12T11:07:43+00:00"
  4584. },
  4585. {
  4586. "name": "simplito/elliptic-php",
  4587. "version": "1.0.9",
  4588. "source": {
  4589. "type": "git",
  4590. "url": "https://github.com/simplito/elliptic-php.git",
  4591. "reference": "18a72b837b845bf9a2ad2c0050eaf864a22b7550"
  4592. },
  4593. "dist": {
  4594. "type": "zip",
  4595. "url": "https://api.github.com/repos/simplito/elliptic-php/zipball/18a72b837b845bf9a2ad2c0050eaf864a22b7550",
  4596. "reference": "18a72b837b845bf9a2ad2c0050eaf864a22b7550",
  4597. "shasum": ""
  4598. },
  4599. "require": {
  4600. "ext-gmp": "*",
  4601. "simplito/bn-php": "~1.1.0"
  4602. },
  4603. "require-dev": {
  4604. "phpbench/phpbench": "@dev",
  4605. "phpunit/phpunit": "*"
  4606. },
  4607. "type": "library",
  4608. "autoload": {
  4609. "psr-4": {
  4610. "Elliptic\\": "lib/"
  4611. }
  4612. },
  4613. "notification-url": "https://packagist.org/downloads/",
  4614. "license": [
  4615. "MIT"
  4616. ],
  4617. "authors": [
  4618. {
  4619. "name": "Simplito Team",
  4620. "email": "s.smyczynski@simplito.com",
  4621. "homepage": "https://simplito.com"
  4622. }
  4623. ],
  4624. "description": "Fast elliptic curve cryptography",
  4625. "homepage": "https://github.com/simplito/elliptic-php",
  4626. "keywords": [
  4627. "Curve25519",
  4628. "ECDSA",
  4629. "Ed25519",
  4630. "EdDSA",
  4631. "cryptography",
  4632. "curve",
  4633. "curve25519-weier",
  4634. "ecc",
  4635. "ecdh",
  4636. "elliptic",
  4637. "nistp192",
  4638. "nistp224",
  4639. "nistp256",
  4640. "nistp384",
  4641. "nistp521",
  4642. "secp256k1"
  4643. ],
  4644. "support": {
  4645. "issues": "https://github.com/simplito/elliptic-php/issues",
  4646. "source": "https://github.com/simplito/elliptic-php/tree/1.0.9"
  4647. },
  4648. "time": "2021-10-19T08:42:33+00:00"
  4649. },
  4650. {
  4651. "name": "swiftmailer/swiftmailer",
  4652. "version": "v6.3.0",
  4653. "source": {
  4654. "type": "git",
  4655. "url": "https://github.com/swiftmailer/swiftmailer.git",
  4656. "reference": "8a5d5072dca8f48460fce2f4131fcc495eec654c"
  4657. },
  4658. "dist": {
  4659. "type": "zip",
  4660. "url": "https://api.github.com/repos/swiftmailer/swiftmailer/zipball/8a5d5072dca8f48460fce2f4131fcc495eec654c",
  4661. "reference": "8a5d5072dca8f48460fce2f4131fcc495eec654c",
  4662. "shasum": ""
  4663. },
  4664. "require": {
  4665. "egulias/email-validator": "^2.0|^3.1",
  4666. "php": ">=7.0.0",
  4667. "symfony/polyfill-iconv": "^1.0",
  4668. "symfony/polyfill-intl-idn": "^1.10",
  4669. "symfony/polyfill-mbstring": "^1.0"
  4670. },
  4671. "require-dev": {
  4672. "mockery/mockery": "^1.0",
  4673. "symfony/phpunit-bridge": "^4.4|^5.4"
  4674. },
  4675. "suggest": {
  4676. "ext-intl": "Needed to support internationalized email addresses"
  4677. },
  4678. "type": "library",
  4679. "extra": {
  4680. "branch-alias": {
  4681. "dev-master": "6.2-dev"
  4682. }
  4683. },
  4684. "autoload": {
  4685. "files": [
  4686. "lib/swift_required.php"
  4687. ]
  4688. },
  4689. "notification-url": "https://packagist.org/downloads/",
  4690. "license": [
  4691. "MIT"
  4692. ],
  4693. "authors": [
  4694. {
  4695. "name": "Chris Corbyn"
  4696. },
  4697. {
  4698. "name": "Fabien Potencier",
  4699. "email": "fabien@symfony.com"
  4700. }
  4701. ],
  4702. "description": "Swiftmailer, free feature-rich PHP mailer",
  4703. "homepage": "https://swiftmailer.symfony.com",
  4704. "keywords": [
  4705. "email",
  4706. "mail",
  4707. "mailer"
  4708. ],
  4709. "support": {
  4710. "issues": "https://github.com/swiftmailer/swiftmailer/issues",
  4711. "source": "https://github.com/swiftmailer/swiftmailer/tree/v6.3.0"
  4712. },
  4713. "funding": [
  4714. {
  4715. "url": "https://github.com/fabpot",
  4716. "type": "github"
  4717. },
  4718. {
  4719. "url": "https://tidelift.com/funding/github/packagist/swiftmailer/swiftmailer",
  4720. "type": "tidelift"
  4721. }
  4722. ],
  4723. "abandoned": "symfony/mailer",
  4724. "time": "2021-10-18T15:26:12+00:00"
  4725. },
  4726. {
  4727. "name": "swoole/ide-helper",
  4728. "version": "4.8.11",
  4729. "source": {
  4730. "type": "git",
  4731. "url": "https://github.com/swoole/ide-helper.git",
  4732. "reference": "edcf955501271b1fd5d77efef31027b1e08f4a85"
  4733. },
  4734. "dist": {
  4735. "type": "zip",
  4736. "url": "https://api.github.com/repos/swoole/ide-helper/zipball/edcf955501271b1fd5d77efef31027b1e08f4a85",
  4737. "reference": "edcf955501271b1fd5d77efef31027b1e08f4a85",
  4738. "shasum": ""
  4739. },
  4740. "type": "library",
  4741. "notification-url": "https://packagist.org/downloads/",
  4742. "license": [
  4743. "Apache-2.0"
  4744. ],
  4745. "authors": [
  4746. {
  4747. "name": "Team Swoole",
  4748. "email": "team@swoole.com"
  4749. }
  4750. ],
  4751. "description": "IDE help files for Swoole.",
  4752. "support": {
  4753. "issues": "https://github.com/swoole/ide-helper/issues",
  4754. "source": "https://github.com/swoole/ide-helper/tree/4.8.11"
  4755. },
  4756. "funding": [
  4757. {
  4758. "url": "https://gitee.com/swoole/swoole?donate=true",
  4759. "type": "custom"
  4760. },
  4761. {
  4762. "url": "https://github.com/swoole",
  4763. "type": "github"
  4764. }
  4765. ],
  4766. "time": "2022-07-09T06:20:31+00:00"
  4767. },
  4768. {
  4769. "name": "swooletw/laravel-swoole",
  4770. "version": "v2.12.1",
  4771. "source": {
  4772. "type": "git",
  4773. "url": "https://github.com/swooletw/laravel-swoole.git",
  4774. "reference": "b9b766a68a532600d1e20d66f698a40ebb434ca0"
  4775. },
  4776. "dist": {
  4777. "type": "zip",
  4778. "url": "https://api.github.com/repos/swooletw/laravel-swoole/zipball/b9b766a68a532600d1e20d66f698a40ebb434ca0",
  4779. "reference": "b9b766a68a532600d1e20d66f698a40ebb434ca0",
  4780. "shasum": ""
  4781. },
  4782. "require": {
  4783. "illuminate/console": "~5.4|~6.0|~7.0|~8.0|~9.0",
  4784. "illuminate/contracts": "~5.4|~6.0|~7.0|~8.0|~9.0",
  4785. "illuminate/http": "~5.4|~6.0|~7.0|~8.0|~9.0",
  4786. "illuminate/support": "~5.4|~6.0|~7.0|~8.0|~9.0",
  4787. "php": "^7.2|^8.0",
  4788. "predis/predis": "^1.1"
  4789. },
  4790. "require-dev": {
  4791. "codedungeon/phpunit-result-printer": "^0.31.0",
  4792. "laravel/lumen-framework": "~5.4|~6.0|~7.0|~8.0|~9.0",
  4793. "mockery/mockery": "~1.5",
  4794. "php-coveralls/php-coveralls": "^2.1",
  4795. "php-mock/php-mock": "^2.3",
  4796. "phpunit/php-code-coverage": "^9",
  4797. "phpunit/phpunit": "^9",
  4798. "swoole/ide-helper": "@dev"
  4799. },
  4800. "type": "library",
  4801. "extra": {
  4802. "laravel": {
  4803. "providers": [
  4804. "SwooleTW\\Http\\LaravelServiceProvider"
  4805. ],
  4806. "aliases": {
  4807. "Server": "SwooleTW\\Http\\Server\\Facades\\Server",
  4808. "Table": "SwooleTW\\Http\\Server\\Facades\\Table",
  4809. "Room": "SwooleTW\\Http\\Websocket\\Facades\\Room",
  4810. "Websocket": "SwooleTW\\Http\\Websocket\\Facades\\Websocket"
  4811. }
  4812. }
  4813. },
  4814. "autoload": {
  4815. "files": [
  4816. "src/Server/helpers.php"
  4817. ],
  4818. "psr-4": {
  4819. "SwooleTW\\Http\\": "src"
  4820. }
  4821. },
  4822. "notification-url": "https://packagist.org/downloads/",
  4823. "license": [
  4824. "MIT"
  4825. ],
  4826. "authors": [
  4827. {
  4828. "name": "Albert Chen",
  4829. "email": "albert@unisharp.com"
  4830. },
  4831. {
  4832. "name": "Huang Yi",
  4833. "email": "coodeer@163.com"
  4834. }
  4835. ],
  4836. "description": "High performance HTTP server based on Swoole. Speed up your Laravel and Lumen applications.",
  4837. "keywords": [
  4838. "http",
  4839. "laravel",
  4840. "lumen",
  4841. "performance",
  4842. "server",
  4843. "swoole"
  4844. ],
  4845. "support": {
  4846. "issues": "https://github.com/swooletw/laravel-swoole/issues",
  4847. "source": "https://github.com/swooletw/laravel-swoole/tree/v2.12.1"
  4848. },
  4849. "time": "2022-03-19T04:41:32+00:00"
  4850. },
  4851. {
  4852. "name": "symfony/console",
  4853. "version": "v5.4.10",
  4854. "source": {
  4855. "type": "git",
  4856. "url": "https://github.com/symfony/console.git",
  4857. "reference": "4d671ab4ddac94ee439ea73649c69d9d200b5000"
  4858. },
  4859. "dist": {
  4860. "type": "zip",
  4861. "url": "https://api.github.com/repos/symfony/console/zipball/4d671ab4ddac94ee439ea73649c69d9d200b5000",
  4862. "reference": "4d671ab4ddac94ee439ea73649c69d9d200b5000",
  4863. "shasum": ""
  4864. },
  4865. "require": {
  4866. "php": ">=7.2.5",
  4867. "symfony/deprecation-contracts": "^2.1|^3",
  4868. "symfony/polyfill-mbstring": "~1.0",
  4869. "symfony/polyfill-php73": "^1.9",
  4870. "symfony/polyfill-php80": "^1.16",
  4871. "symfony/service-contracts": "^1.1|^2|^3",
  4872. "symfony/string": "^5.1|^6.0"
  4873. },
  4874. "conflict": {
  4875. "psr/log": ">=3",
  4876. "symfony/dependency-injection": "<4.4",
  4877. "symfony/dotenv": "<5.1",
  4878. "symfony/event-dispatcher": "<4.4",
  4879. "symfony/lock": "<4.4",
  4880. "symfony/process": "<4.4"
  4881. },
  4882. "provide": {
  4883. "psr/log-implementation": "1.0|2.0"
  4884. },
  4885. "require-dev": {
  4886. "psr/log": "^1|^2",
  4887. "symfony/config": "^4.4|^5.0|^6.0",
  4888. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  4889. "symfony/event-dispatcher": "^4.4|^5.0|^6.0",
  4890. "symfony/lock": "^4.4|^5.0|^6.0",
  4891. "symfony/process": "^4.4|^5.0|^6.0",
  4892. "symfony/var-dumper": "^4.4|^5.0|^6.0"
  4893. },
  4894. "suggest": {
  4895. "psr/log": "For using the console logger",
  4896. "symfony/event-dispatcher": "",
  4897. "symfony/lock": "",
  4898. "symfony/process": ""
  4899. },
  4900. "type": "library",
  4901. "autoload": {
  4902. "psr-4": {
  4903. "Symfony\\Component\\Console\\": ""
  4904. },
  4905. "exclude-from-classmap": [
  4906. "/Tests/"
  4907. ]
  4908. },
  4909. "notification-url": "https://packagist.org/downloads/",
  4910. "license": [
  4911. "MIT"
  4912. ],
  4913. "authors": [
  4914. {
  4915. "name": "Fabien Potencier",
  4916. "email": "fabien@symfony.com"
  4917. },
  4918. {
  4919. "name": "Symfony Community",
  4920. "homepage": "https://symfony.com/contributors"
  4921. }
  4922. ],
  4923. "description": "Eases the creation of beautiful and testable command line interfaces",
  4924. "homepage": "https://symfony.com",
  4925. "keywords": [
  4926. "cli",
  4927. "command line",
  4928. "console",
  4929. "terminal"
  4930. ],
  4931. "support": {
  4932. "source": "https://github.com/symfony/console/tree/v5.4.10"
  4933. },
  4934. "funding": [
  4935. {
  4936. "url": "https://symfony.com/sponsor",
  4937. "type": "custom"
  4938. },
  4939. {
  4940. "url": "https://github.com/fabpot",
  4941. "type": "github"
  4942. },
  4943. {
  4944. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4945. "type": "tidelift"
  4946. }
  4947. ],
  4948. "time": "2022-06-26T13:00:04+00:00"
  4949. },
  4950. {
  4951. "name": "symfony/css-selector",
  4952. "version": "v5.4.3",
  4953. "source": {
  4954. "type": "git",
  4955. "url": "https://github.com/symfony/css-selector.git",
  4956. "reference": "b0a190285cd95cb019237851205b8140ef6e368e"
  4957. },
  4958. "dist": {
  4959. "type": "zip",
  4960. "url": "https://api.github.com/repos/symfony/css-selector/zipball/b0a190285cd95cb019237851205b8140ef6e368e",
  4961. "reference": "b0a190285cd95cb019237851205b8140ef6e368e",
  4962. "shasum": ""
  4963. },
  4964. "require": {
  4965. "php": ">=7.2.5",
  4966. "symfony/polyfill-php80": "^1.16"
  4967. },
  4968. "type": "library",
  4969. "autoload": {
  4970. "psr-4": {
  4971. "Symfony\\Component\\CssSelector\\": ""
  4972. },
  4973. "exclude-from-classmap": [
  4974. "/Tests/"
  4975. ]
  4976. },
  4977. "notification-url": "https://packagist.org/downloads/",
  4978. "license": [
  4979. "MIT"
  4980. ],
  4981. "authors": [
  4982. {
  4983. "name": "Fabien Potencier",
  4984. "email": "fabien@symfony.com"
  4985. },
  4986. {
  4987. "name": "Jean-François Simon",
  4988. "email": "jeanfrancois.simon@sensiolabs.com"
  4989. },
  4990. {
  4991. "name": "Symfony Community",
  4992. "homepage": "https://symfony.com/contributors"
  4993. }
  4994. ],
  4995. "description": "Converts CSS selectors to XPath expressions",
  4996. "homepage": "https://symfony.com",
  4997. "support": {
  4998. "source": "https://github.com/symfony/css-selector/tree/v5.4.3"
  4999. },
  5000. "funding": [
  5001. {
  5002. "url": "https://symfony.com/sponsor",
  5003. "type": "custom"
  5004. },
  5005. {
  5006. "url": "https://github.com/fabpot",
  5007. "type": "github"
  5008. },
  5009. {
  5010. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5011. "type": "tidelift"
  5012. }
  5013. ],
  5014. "time": "2022-01-02T09:53:40+00:00"
  5015. },
  5016. {
  5017. "name": "symfony/deprecation-contracts",
  5018. "version": "v2.5.2",
  5019. "source": {
  5020. "type": "git",
  5021. "url": "https://github.com/symfony/deprecation-contracts.git",
  5022. "reference": "e8b495ea28c1d97b5e0c121748d6f9b53d075c66"
  5023. },
  5024. "dist": {
  5025. "type": "zip",
  5026. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/e8b495ea28c1d97b5e0c121748d6f9b53d075c66",
  5027. "reference": "e8b495ea28c1d97b5e0c121748d6f9b53d075c66",
  5028. "shasum": ""
  5029. },
  5030. "require": {
  5031. "php": ">=7.1"
  5032. },
  5033. "type": "library",
  5034. "extra": {
  5035. "branch-alias": {
  5036. "dev-main": "2.5-dev"
  5037. },
  5038. "thanks": {
  5039. "name": "symfony/contracts",
  5040. "url": "https://github.com/symfony/contracts"
  5041. }
  5042. },
  5043. "autoload": {
  5044. "files": [
  5045. "function.php"
  5046. ]
  5047. },
  5048. "notification-url": "https://packagist.org/downloads/",
  5049. "license": [
  5050. "MIT"
  5051. ],
  5052. "authors": [
  5053. {
  5054. "name": "Nicolas Grekas",
  5055. "email": "p@tchwork.com"
  5056. },
  5057. {
  5058. "name": "Symfony Community",
  5059. "homepage": "https://symfony.com/contributors"
  5060. }
  5061. ],
  5062. "description": "A generic function and convention to trigger deprecation notices",
  5063. "homepage": "https://symfony.com",
  5064. "support": {
  5065. "source": "https://github.com/symfony/deprecation-contracts/tree/v2.5.2"
  5066. },
  5067. "funding": [
  5068. {
  5069. "url": "https://symfony.com/sponsor",
  5070. "type": "custom"
  5071. },
  5072. {
  5073. "url": "https://github.com/fabpot",
  5074. "type": "github"
  5075. },
  5076. {
  5077. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5078. "type": "tidelift"
  5079. }
  5080. ],
  5081. "time": "2022-01-02T09:53:40+00:00"
  5082. },
  5083. {
  5084. "name": "symfony/error-handler",
  5085. "version": "v5.4.9",
  5086. "source": {
  5087. "type": "git",
  5088. "url": "https://github.com/symfony/error-handler.git",
  5089. "reference": "c116cda1f51c678782768dce89a45f13c949455d"
  5090. },
  5091. "dist": {
  5092. "type": "zip",
  5093. "url": "https://api.github.com/repos/symfony/error-handler/zipball/c116cda1f51c678782768dce89a45f13c949455d",
  5094. "reference": "c116cda1f51c678782768dce89a45f13c949455d",
  5095. "shasum": ""
  5096. },
  5097. "require": {
  5098. "php": ">=7.2.5",
  5099. "psr/log": "^1|^2|^3",
  5100. "symfony/var-dumper": "^4.4|^5.0|^6.0"
  5101. },
  5102. "require-dev": {
  5103. "symfony/deprecation-contracts": "^2.1|^3",
  5104. "symfony/http-kernel": "^4.4|^5.0|^6.0",
  5105. "symfony/serializer": "^4.4|^5.0|^6.0"
  5106. },
  5107. "bin": [
  5108. "Resources/bin/patch-type-declarations"
  5109. ],
  5110. "type": "library",
  5111. "autoload": {
  5112. "psr-4": {
  5113. "Symfony\\Component\\ErrorHandler\\": ""
  5114. },
  5115. "exclude-from-classmap": [
  5116. "/Tests/"
  5117. ]
  5118. },
  5119. "notification-url": "https://packagist.org/downloads/",
  5120. "license": [
  5121. "MIT"
  5122. ],
  5123. "authors": [
  5124. {
  5125. "name": "Fabien Potencier",
  5126. "email": "fabien@symfony.com"
  5127. },
  5128. {
  5129. "name": "Symfony Community",
  5130. "homepage": "https://symfony.com/contributors"
  5131. }
  5132. ],
  5133. "description": "Provides tools to manage errors and ease debugging PHP code",
  5134. "homepage": "https://symfony.com",
  5135. "support": {
  5136. "source": "https://github.com/symfony/error-handler/tree/v5.4.9"
  5137. },
  5138. "funding": [
  5139. {
  5140. "url": "https://symfony.com/sponsor",
  5141. "type": "custom"
  5142. },
  5143. {
  5144. "url": "https://github.com/fabpot",
  5145. "type": "github"
  5146. },
  5147. {
  5148. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5149. "type": "tidelift"
  5150. }
  5151. ],
  5152. "time": "2022-05-21T13:57:48+00:00"
  5153. },
  5154. {
  5155. "name": "symfony/event-dispatcher",
  5156. "version": "v5.4.9",
  5157. "source": {
  5158. "type": "git",
  5159. "url": "https://github.com/symfony/event-dispatcher.git",
  5160. "reference": "8e6ce1cc0279e3ff3c8ff0f43813bc88d21ca1bc"
  5161. },
  5162. "dist": {
  5163. "type": "zip",
  5164. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/8e6ce1cc0279e3ff3c8ff0f43813bc88d21ca1bc",
  5165. "reference": "8e6ce1cc0279e3ff3c8ff0f43813bc88d21ca1bc",
  5166. "shasum": ""
  5167. },
  5168. "require": {
  5169. "php": ">=7.2.5",
  5170. "symfony/deprecation-contracts": "^2.1|^3",
  5171. "symfony/event-dispatcher-contracts": "^2|^3",
  5172. "symfony/polyfill-php80": "^1.16"
  5173. },
  5174. "conflict": {
  5175. "symfony/dependency-injection": "<4.4"
  5176. },
  5177. "provide": {
  5178. "psr/event-dispatcher-implementation": "1.0",
  5179. "symfony/event-dispatcher-implementation": "2.0"
  5180. },
  5181. "require-dev": {
  5182. "psr/log": "^1|^2|^3",
  5183. "symfony/config": "^4.4|^5.0|^6.0",
  5184. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  5185. "symfony/error-handler": "^4.4|^5.0|^6.0",
  5186. "symfony/expression-language": "^4.4|^5.0|^6.0",
  5187. "symfony/http-foundation": "^4.4|^5.0|^6.0",
  5188. "symfony/service-contracts": "^1.1|^2|^3",
  5189. "symfony/stopwatch": "^4.4|^5.0|^6.0"
  5190. },
  5191. "suggest": {
  5192. "symfony/dependency-injection": "",
  5193. "symfony/http-kernel": ""
  5194. },
  5195. "type": "library",
  5196. "autoload": {
  5197. "psr-4": {
  5198. "Symfony\\Component\\EventDispatcher\\": ""
  5199. },
  5200. "exclude-from-classmap": [
  5201. "/Tests/"
  5202. ]
  5203. },
  5204. "notification-url": "https://packagist.org/downloads/",
  5205. "license": [
  5206. "MIT"
  5207. ],
  5208. "authors": [
  5209. {
  5210. "name": "Fabien Potencier",
  5211. "email": "fabien@symfony.com"
  5212. },
  5213. {
  5214. "name": "Symfony Community",
  5215. "homepage": "https://symfony.com/contributors"
  5216. }
  5217. ],
  5218. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  5219. "homepage": "https://symfony.com",
  5220. "support": {
  5221. "source": "https://github.com/symfony/event-dispatcher/tree/v5.4.9"
  5222. },
  5223. "funding": [
  5224. {
  5225. "url": "https://symfony.com/sponsor",
  5226. "type": "custom"
  5227. },
  5228. {
  5229. "url": "https://github.com/fabpot",
  5230. "type": "github"
  5231. },
  5232. {
  5233. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5234. "type": "tidelift"
  5235. }
  5236. ],
  5237. "time": "2022-05-05T16:45:39+00:00"
  5238. },
  5239. {
  5240. "name": "symfony/event-dispatcher-contracts",
  5241. "version": "v2.5.2",
  5242. "source": {
  5243. "type": "git",
  5244. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  5245. "reference": "f98b54df6ad059855739db6fcbc2d36995283fe1"
  5246. },
  5247. "dist": {
  5248. "type": "zip",
  5249. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/f98b54df6ad059855739db6fcbc2d36995283fe1",
  5250. "reference": "f98b54df6ad059855739db6fcbc2d36995283fe1",
  5251. "shasum": ""
  5252. },
  5253. "require": {
  5254. "php": ">=7.2.5",
  5255. "psr/event-dispatcher": "^1"
  5256. },
  5257. "suggest": {
  5258. "symfony/event-dispatcher-implementation": ""
  5259. },
  5260. "type": "library",
  5261. "extra": {
  5262. "branch-alias": {
  5263. "dev-main": "2.5-dev"
  5264. },
  5265. "thanks": {
  5266. "name": "symfony/contracts",
  5267. "url": "https://github.com/symfony/contracts"
  5268. }
  5269. },
  5270. "autoload": {
  5271. "psr-4": {
  5272. "Symfony\\Contracts\\EventDispatcher\\": ""
  5273. }
  5274. },
  5275. "notification-url": "https://packagist.org/downloads/",
  5276. "license": [
  5277. "MIT"
  5278. ],
  5279. "authors": [
  5280. {
  5281. "name": "Nicolas Grekas",
  5282. "email": "p@tchwork.com"
  5283. },
  5284. {
  5285. "name": "Symfony Community",
  5286. "homepage": "https://symfony.com/contributors"
  5287. }
  5288. ],
  5289. "description": "Generic abstractions related to dispatching event",
  5290. "homepage": "https://symfony.com",
  5291. "keywords": [
  5292. "abstractions",
  5293. "contracts",
  5294. "decoupling",
  5295. "interfaces",
  5296. "interoperability",
  5297. "standards"
  5298. ],
  5299. "support": {
  5300. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v2.5.2"
  5301. },
  5302. "funding": [
  5303. {
  5304. "url": "https://symfony.com/sponsor",
  5305. "type": "custom"
  5306. },
  5307. {
  5308. "url": "https://github.com/fabpot",
  5309. "type": "github"
  5310. },
  5311. {
  5312. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5313. "type": "tidelift"
  5314. }
  5315. ],
  5316. "time": "2022-01-02T09:53:40+00:00"
  5317. },
  5318. {
  5319. "name": "symfony/finder",
  5320. "version": "v5.4.8",
  5321. "source": {
  5322. "type": "git",
  5323. "url": "https://github.com/symfony/finder.git",
  5324. "reference": "9b630f3427f3ebe7cd346c277a1408b00249dad9"
  5325. },
  5326. "dist": {
  5327. "type": "zip",
  5328. "url": "https://api.github.com/repos/symfony/finder/zipball/9b630f3427f3ebe7cd346c277a1408b00249dad9",
  5329. "reference": "9b630f3427f3ebe7cd346c277a1408b00249dad9",
  5330. "shasum": ""
  5331. },
  5332. "require": {
  5333. "php": ">=7.2.5",
  5334. "symfony/deprecation-contracts": "^2.1|^3",
  5335. "symfony/polyfill-php80": "^1.16"
  5336. },
  5337. "type": "library",
  5338. "autoload": {
  5339. "psr-4": {
  5340. "Symfony\\Component\\Finder\\": ""
  5341. },
  5342. "exclude-from-classmap": [
  5343. "/Tests/"
  5344. ]
  5345. },
  5346. "notification-url": "https://packagist.org/downloads/",
  5347. "license": [
  5348. "MIT"
  5349. ],
  5350. "authors": [
  5351. {
  5352. "name": "Fabien Potencier",
  5353. "email": "fabien@symfony.com"
  5354. },
  5355. {
  5356. "name": "Symfony Community",
  5357. "homepage": "https://symfony.com/contributors"
  5358. }
  5359. ],
  5360. "description": "Finds files and directories via an intuitive fluent interface",
  5361. "homepage": "https://symfony.com",
  5362. "support": {
  5363. "source": "https://github.com/symfony/finder/tree/v5.4.8"
  5364. },
  5365. "funding": [
  5366. {
  5367. "url": "https://symfony.com/sponsor",
  5368. "type": "custom"
  5369. },
  5370. {
  5371. "url": "https://github.com/fabpot",
  5372. "type": "github"
  5373. },
  5374. {
  5375. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5376. "type": "tidelift"
  5377. }
  5378. ],
  5379. "time": "2022-04-15T08:07:45+00:00"
  5380. },
  5381. {
  5382. "name": "symfony/http-foundation",
  5383. "version": "v5.4.10",
  5384. "source": {
  5385. "type": "git",
  5386. "url": "https://github.com/symfony/http-foundation.git",
  5387. "reference": "e7793b7906f72a8cc51054fbca9dcff7a8af1c1e"
  5388. },
  5389. "dist": {
  5390. "type": "zip",
  5391. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/e7793b7906f72a8cc51054fbca9dcff7a8af1c1e",
  5392. "reference": "e7793b7906f72a8cc51054fbca9dcff7a8af1c1e",
  5393. "shasum": ""
  5394. },
  5395. "require": {
  5396. "php": ">=7.2.5",
  5397. "symfony/deprecation-contracts": "^2.1|^3",
  5398. "symfony/polyfill-mbstring": "~1.1",
  5399. "symfony/polyfill-php80": "^1.16"
  5400. },
  5401. "require-dev": {
  5402. "predis/predis": "~1.0",
  5403. "symfony/cache": "^4.4|^5.0|^6.0",
  5404. "symfony/expression-language": "^4.4|^5.0|^6.0",
  5405. "symfony/mime": "^4.4|^5.0|^6.0"
  5406. },
  5407. "suggest": {
  5408. "symfony/mime": "To use the file extension guesser"
  5409. },
  5410. "type": "library",
  5411. "autoload": {
  5412. "psr-4": {
  5413. "Symfony\\Component\\HttpFoundation\\": ""
  5414. },
  5415. "exclude-from-classmap": [
  5416. "/Tests/"
  5417. ]
  5418. },
  5419. "notification-url": "https://packagist.org/downloads/",
  5420. "license": [
  5421. "MIT"
  5422. ],
  5423. "authors": [
  5424. {
  5425. "name": "Fabien Potencier",
  5426. "email": "fabien@symfony.com"
  5427. },
  5428. {
  5429. "name": "Symfony Community",
  5430. "homepage": "https://symfony.com/contributors"
  5431. }
  5432. ],
  5433. "description": "Defines an object-oriented layer for the HTTP specification",
  5434. "homepage": "https://symfony.com",
  5435. "support": {
  5436. "source": "https://github.com/symfony/http-foundation/tree/v5.4.10"
  5437. },
  5438. "funding": [
  5439. {
  5440. "url": "https://symfony.com/sponsor",
  5441. "type": "custom"
  5442. },
  5443. {
  5444. "url": "https://github.com/fabpot",
  5445. "type": "github"
  5446. },
  5447. {
  5448. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5449. "type": "tidelift"
  5450. }
  5451. ],
  5452. "time": "2022-06-19T13:13:40+00:00"
  5453. },
  5454. {
  5455. "name": "symfony/http-kernel",
  5456. "version": "v5.4.10",
  5457. "source": {
  5458. "type": "git",
  5459. "url": "https://github.com/symfony/http-kernel.git",
  5460. "reference": "255ae3b0a488d78fbb34da23d3e0c059874b5948"
  5461. },
  5462. "dist": {
  5463. "type": "zip",
  5464. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/255ae3b0a488d78fbb34da23d3e0c059874b5948",
  5465. "reference": "255ae3b0a488d78fbb34da23d3e0c059874b5948",
  5466. "shasum": ""
  5467. },
  5468. "require": {
  5469. "php": ">=7.2.5",
  5470. "psr/log": "^1|^2",
  5471. "symfony/deprecation-contracts": "^2.1|^3",
  5472. "symfony/error-handler": "^4.4|^5.0|^6.0",
  5473. "symfony/event-dispatcher": "^5.0|^6.0",
  5474. "symfony/http-foundation": "^5.3.7|^6.0",
  5475. "symfony/polyfill-ctype": "^1.8",
  5476. "symfony/polyfill-php73": "^1.9",
  5477. "symfony/polyfill-php80": "^1.16"
  5478. },
  5479. "conflict": {
  5480. "symfony/browser-kit": "<5.4",
  5481. "symfony/cache": "<5.0",
  5482. "symfony/config": "<5.0",
  5483. "symfony/console": "<4.4",
  5484. "symfony/dependency-injection": "<5.3",
  5485. "symfony/doctrine-bridge": "<5.0",
  5486. "symfony/form": "<5.0",
  5487. "symfony/http-client": "<5.0",
  5488. "symfony/mailer": "<5.0",
  5489. "symfony/messenger": "<5.0",
  5490. "symfony/translation": "<5.0",
  5491. "symfony/twig-bridge": "<5.0",
  5492. "symfony/validator": "<5.0",
  5493. "twig/twig": "<2.13"
  5494. },
  5495. "provide": {
  5496. "psr/log-implementation": "1.0|2.0"
  5497. },
  5498. "require-dev": {
  5499. "psr/cache": "^1.0|^2.0|^3.0",
  5500. "symfony/browser-kit": "^5.4|^6.0",
  5501. "symfony/config": "^5.0|^6.0",
  5502. "symfony/console": "^4.4|^5.0|^6.0",
  5503. "symfony/css-selector": "^4.4|^5.0|^6.0",
  5504. "symfony/dependency-injection": "^5.3|^6.0",
  5505. "symfony/dom-crawler": "^4.4|^5.0|^6.0",
  5506. "symfony/expression-language": "^4.4|^5.0|^6.0",
  5507. "symfony/finder": "^4.4|^5.0|^6.0",
  5508. "symfony/http-client-contracts": "^1.1|^2|^3",
  5509. "symfony/process": "^4.4|^5.0|^6.0",
  5510. "symfony/routing": "^4.4|^5.0|^6.0",
  5511. "symfony/stopwatch": "^4.4|^5.0|^6.0",
  5512. "symfony/translation": "^4.4|^5.0|^6.0",
  5513. "symfony/translation-contracts": "^1.1|^2|^3",
  5514. "twig/twig": "^2.13|^3.0.4"
  5515. },
  5516. "suggest": {
  5517. "symfony/browser-kit": "",
  5518. "symfony/config": "",
  5519. "symfony/console": "",
  5520. "symfony/dependency-injection": ""
  5521. },
  5522. "type": "library",
  5523. "autoload": {
  5524. "psr-4": {
  5525. "Symfony\\Component\\HttpKernel\\": ""
  5526. },
  5527. "exclude-from-classmap": [
  5528. "/Tests/"
  5529. ]
  5530. },
  5531. "notification-url": "https://packagist.org/downloads/",
  5532. "license": [
  5533. "MIT"
  5534. ],
  5535. "authors": [
  5536. {
  5537. "name": "Fabien Potencier",
  5538. "email": "fabien@symfony.com"
  5539. },
  5540. {
  5541. "name": "Symfony Community",
  5542. "homepage": "https://symfony.com/contributors"
  5543. }
  5544. ],
  5545. "description": "Provides a structured process for converting a Request into a Response",
  5546. "homepage": "https://symfony.com",
  5547. "support": {
  5548. "source": "https://github.com/symfony/http-kernel/tree/v5.4.10"
  5549. },
  5550. "funding": [
  5551. {
  5552. "url": "https://symfony.com/sponsor",
  5553. "type": "custom"
  5554. },
  5555. {
  5556. "url": "https://github.com/fabpot",
  5557. "type": "github"
  5558. },
  5559. {
  5560. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5561. "type": "tidelift"
  5562. }
  5563. ],
  5564. "time": "2022-06-26T16:57:59+00:00"
  5565. },
  5566. {
  5567. "name": "symfony/mime",
  5568. "version": "v5.4.10",
  5569. "source": {
  5570. "type": "git",
  5571. "url": "https://github.com/symfony/mime.git",
  5572. "reference": "02265e1e5111c3cd7480387af25e82378b7ab9cc"
  5573. },
  5574. "dist": {
  5575. "type": "zip",
  5576. "url": "https://api.github.com/repos/symfony/mime/zipball/02265e1e5111c3cd7480387af25e82378b7ab9cc",
  5577. "reference": "02265e1e5111c3cd7480387af25e82378b7ab9cc",
  5578. "shasum": ""
  5579. },
  5580. "require": {
  5581. "php": ">=7.2.5",
  5582. "symfony/deprecation-contracts": "^2.1|^3",
  5583. "symfony/polyfill-intl-idn": "^1.10",
  5584. "symfony/polyfill-mbstring": "^1.0",
  5585. "symfony/polyfill-php80": "^1.16"
  5586. },
  5587. "conflict": {
  5588. "egulias/email-validator": "~3.0.0",
  5589. "phpdocumentor/reflection-docblock": "<3.2.2",
  5590. "phpdocumentor/type-resolver": "<1.4.0",
  5591. "symfony/mailer": "<4.4"
  5592. },
  5593. "require-dev": {
  5594. "egulias/email-validator": "^2.1.10|^3.1",
  5595. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  5596. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  5597. "symfony/property-access": "^4.4|^5.1|^6.0",
  5598. "symfony/property-info": "^4.4|^5.1|^6.0",
  5599. "symfony/serializer": "^5.2|^6.0"
  5600. },
  5601. "type": "library",
  5602. "autoload": {
  5603. "psr-4": {
  5604. "Symfony\\Component\\Mime\\": ""
  5605. },
  5606. "exclude-from-classmap": [
  5607. "/Tests/"
  5608. ]
  5609. },
  5610. "notification-url": "https://packagist.org/downloads/",
  5611. "license": [
  5612. "MIT"
  5613. ],
  5614. "authors": [
  5615. {
  5616. "name": "Fabien Potencier",
  5617. "email": "fabien@symfony.com"
  5618. },
  5619. {
  5620. "name": "Symfony Community",
  5621. "homepage": "https://symfony.com/contributors"
  5622. }
  5623. ],
  5624. "description": "Allows manipulating MIME messages",
  5625. "homepage": "https://symfony.com",
  5626. "keywords": [
  5627. "mime",
  5628. "mime-type"
  5629. ],
  5630. "support": {
  5631. "source": "https://github.com/symfony/mime/tree/v5.4.10"
  5632. },
  5633. "funding": [
  5634. {
  5635. "url": "https://symfony.com/sponsor",
  5636. "type": "custom"
  5637. },
  5638. {
  5639. "url": "https://github.com/fabpot",
  5640. "type": "github"
  5641. },
  5642. {
  5643. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5644. "type": "tidelift"
  5645. }
  5646. ],
  5647. "time": "2022-06-09T12:22:40+00:00"
  5648. },
  5649. {
  5650. "name": "symfony/polyfill-ctype",
  5651. "version": "v1.26.0",
  5652. "source": {
  5653. "type": "git",
  5654. "url": "https://github.com/symfony/polyfill-ctype.git",
  5655. "reference": "6fd1b9a79f6e3cf65f9e679b23af304cd9e010d4"
  5656. },
  5657. "dist": {
  5658. "type": "zip",
  5659. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/6fd1b9a79f6e3cf65f9e679b23af304cd9e010d4",
  5660. "reference": "6fd1b9a79f6e3cf65f9e679b23af304cd9e010d4",
  5661. "shasum": ""
  5662. },
  5663. "require": {
  5664. "php": ">=7.1"
  5665. },
  5666. "provide": {
  5667. "ext-ctype": "*"
  5668. },
  5669. "suggest": {
  5670. "ext-ctype": "For best performance"
  5671. },
  5672. "type": "library",
  5673. "extra": {
  5674. "branch-alias": {
  5675. "dev-main": "1.26-dev"
  5676. },
  5677. "thanks": {
  5678. "name": "symfony/polyfill",
  5679. "url": "https://github.com/symfony/polyfill"
  5680. }
  5681. },
  5682. "autoload": {
  5683. "files": [
  5684. "bootstrap.php"
  5685. ],
  5686. "psr-4": {
  5687. "Symfony\\Polyfill\\Ctype\\": ""
  5688. }
  5689. },
  5690. "notification-url": "https://packagist.org/downloads/",
  5691. "license": [
  5692. "MIT"
  5693. ],
  5694. "authors": [
  5695. {
  5696. "name": "Gert de Pagter",
  5697. "email": "BackEndTea@gmail.com"
  5698. },
  5699. {
  5700. "name": "Symfony Community",
  5701. "homepage": "https://symfony.com/contributors"
  5702. }
  5703. ],
  5704. "description": "Symfony polyfill for ctype functions",
  5705. "homepage": "https://symfony.com",
  5706. "keywords": [
  5707. "compatibility",
  5708. "ctype",
  5709. "polyfill",
  5710. "portable"
  5711. ],
  5712. "support": {
  5713. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.26.0"
  5714. },
  5715. "funding": [
  5716. {
  5717. "url": "https://symfony.com/sponsor",
  5718. "type": "custom"
  5719. },
  5720. {
  5721. "url": "https://github.com/fabpot",
  5722. "type": "github"
  5723. },
  5724. {
  5725. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5726. "type": "tidelift"
  5727. }
  5728. ],
  5729. "time": "2022-05-24T11:49:31+00:00"
  5730. },
  5731. {
  5732. "name": "symfony/polyfill-iconv",
  5733. "version": "v1.26.0",
  5734. "source": {
  5735. "type": "git",
  5736. "url": "https://github.com/symfony/polyfill-iconv.git",
  5737. "reference": "143f1881e655bebca1312722af8068de235ae5dc"
  5738. },
  5739. "dist": {
  5740. "type": "zip",
  5741. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/143f1881e655bebca1312722af8068de235ae5dc",
  5742. "reference": "143f1881e655bebca1312722af8068de235ae5dc",
  5743. "shasum": ""
  5744. },
  5745. "require": {
  5746. "php": ">=7.1"
  5747. },
  5748. "provide": {
  5749. "ext-iconv": "*"
  5750. },
  5751. "suggest": {
  5752. "ext-iconv": "For best performance"
  5753. },
  5754. "type": "library",
  5755. "extra": {
  5756. "branch-alias": {
  5757. "dev-main": "1.26-dev"
  5758. },
  5759. "thanks": {
  5760. "name": "symfony/polyfill",
  5761. "url": "https://github.com/symfony/polyfill"
  5762. }
  5763. },
  5764. "autoload": {
  5765. "files": [
  5766. "bootstrap.php"
  5767. ],
  5768. "psr-4": {
  5769. "Symfony\\Polyfill\\Iconv\\": ""
  5770. }
  5771. },
  5772. "notification-url": "https://packagist.org/downloads/",
  5773. "license": [
  5774. "MIT"
  5775. ],
  5776. "authors": [
  5777. {
  5778. "name": "Nicolas Grekas",
  5779. "email": "p@tchwork.com"
  5780. },
  5781. {
  5782. "name": "Symfony Community",
  5783. "homepage": "https://symfony.com/contributors"
  5784. }
  5785. ],
  5786. "description": "Symfony polyfill for the Iconv extension",
  5787. "homepage": "https://symfony.com",
  5788. "keywords": [
  5789. "compatibility",
  5790. "iconv",
  5791. "polyfill",
  5792. "portable",
  5793. "shim"
  5794. ],
  5795. "support": {
  5796. "source": "https://github.com/symfony/polyfill-iconv/tree/v1.26.0"
  5797. },
  5798. "funding": [
  5799. {
  5800. "url": "https://symfony.com/sponsor",
  5801. "type": "custom"
  5802. },
  5803. {
  5804. "url": "https://github.com/fabpot",
  5805. "type": "github"
  5806. },
  5807. {
  5808. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5809. "type": "tidelift"
  5810. }
  5811. ],
  5812. "time": "2022-05-24T11:49:31+00:00"
  5813. },
  5814. {
  5815. "name": "symfony/polyfill-intl-grapheme",
  5816. "version": "v1.26.0",
  5817. "source": {
  5818. "type": "git",
  5819. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  5820. "reference": "433d05519ce6990bf3530fba6957499d327395c2"
  5821. },
  5822. "dist": {
  5823. "type": "zip",
  5824. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/433d05519ce6990bf3530fba6957499d327395c2",
  5825. "reference": "433d05519ce6990bf3530fba6957499d327395c2",
  5826. "shasum": ""
  5827. },
  5828. "require": {
  5829. "php": ">=7.1"
  5830. },
  5831. "suggest": {
  5832. "ext-intl": "For best performance"
  5833. },
  5834. "type": "library",
  5835. "extra": {
  5836. "branch-alias": {
  5837. "dev-main": "1.26-dev"
  5838. },
  5839. "thanks": {
  5840. "name": "symfony/polyfill",
  5841. "url": "https://github.com/symfony/polyfill"
  5842. }
  5843. },
  5844. "autoload": {
  5845. "files": [
  5846. "bootstrap.php"
  5847. ],
  5848. "psr-4": {
  5849. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  5850. }
  5851. },
  5852. "notification-url": "https://packagist.org/downloads/",
  5853. "license": [
  5854. "MIT"
  5855. ],
  5856. "authors": [
  5857. {
  5858. "name": "Nicolas Grekas",
  5859. "email": "p@tchwork.com"
  5860. },
  5861. {
  5862. "name": "Symfony Community",
  5863. "homepage": "https://symfony.com/contributors"
  5864. }
  5865. ],
  5866. "description": "Symfony polyfill for intl's grapheme_* functions",
  5867. "homepage": "https://symfony.com",
  5868. "keywords": [
  5869. "compatibility",
  5870. "grapheme",
  5871. "intl",
  5872. "polyfill",
  5873. "portable",
  5874. "shim"
  5875. ],
  5876. "support": {
  5877. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.26.0"
  5878. },
  5879. "funding": [
  5880. {
  5881. "url": "https://symfony.com/sponsor",
  5882. "type": "custom"
  5883. },
  5884. {
  5885. "url": "https://github.com/fabpot",
  5886. "type": "github"
  5887. },
  5888. {
  5889. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5890. "type": "tidelift"
  5891. }
  5892. ],
  5893. "time": "2022-05-24T11:49:31+00:00"
  5894. },
  5895. {
  5896. "name": "symfony/polyfill-intl-idn",
  5897. "version": "v1.26.0",
  5898. "source": {
  5899. "type": "git",
  5900. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  5901. "reference": "59a8d271f00dd0e4c2e518104cc7963f655a1aa8"
  5902. },
  5903. "dist": {
  5904. "type": "zip",
  5905. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/59a8d271f00dd0e4c2e518104cc7963f655a1aa8",
  5906. "reference": "59a8d271f00dd0e4c2e518104cc7963f655a1aa8",
  5907. "shasum": ""
  5908. },
  5909. "require": {
  5910. "php": ">=7.1",
  5911. "symfony/polyfill-intl-normalizer": "^1.10",
  5912. "symfony/polyfill-php72": "^1.10"
  5913. },
  5914. "suggest": {
  5915. "ext-intl": "For best performance"
  5916. },
  5917. "type": "library",
  5918. "extra": {
  5919. "branch-alias": {
  5920. "dev-main": "1.26-dev"
  5921. },
  5922. "thanks": {
  5923. "name": "symfony/polyfill",
  5924. "url": "https://github.com/symfony/polyfill"
  5925. }
  5926. },
  5927. "autoload": {
  5928. "files": [
  5929. "bootstrap.php"
  5930. ],
  5931. "psr-4": {
  5932. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  5933. }
  5934. },
  5935. "notification-url": "https://packagist.org/downloads/",
  5936. "license": [
  5937. "MIT"
  5938. ],
  5939. "authors": [
  5940. {
  5941. "name": "Laurent Bassin",
  5942. "email": "laurent@bassin.info"
  5943. },
  5944. {
  5945. "name": "Trevor Rowbotham",
  5946. "email": "trevor.rowbotham@pm.me"
  5947. },
  5948. {
  5949. "name": "Symfony Community",
  5950. "homepage": "https://symfony.com/contributors"
  5951. }
  5952. ],
  5953. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  5954. "homepage": "https://symfony.com",
  5955. "keywords": [
  5956. "compatibility",
  5957. "idn",
  5958. "intl",
  5959. "polyfill",
  5960. "portable",
  5961. "shim"
  5962. ],
  5963. "support": {
  5964. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.26.0"
  5965. },
  5966. "funding": [
  5967. {
  5968. "url": "https://symfony.com/sponsor",
  5969. "type": "custom"
  5970. },
  5971. {
  5972. "url": "https://github.com/fabpot",
  5973. "type": "github"
  5974. },
  5975. {
  5976. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5977. "type": "tidelift"
  5978. }
  5979. ],
  5980. "time": "2022-05-24T11:49:31+00:00"
  5981. },
  5982. {
  5983. "name": "symfony/polyfill-intl-normalizer",
  5984. "version": "v1.26.0",
  5985. "source": {
  5986. "type": "git",
  5987. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  5988. "reference": "219aa369ceff116e673852dce47c3a41794c14bd"
  5989. },
  5990. "dist": {
  5991. "type": "zip",
  5992. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/219aa369ceff116e673852dce47c3a41794c14bd",
  5993. "reference": "219aa369ceff116e673852dce47c3a41794c14bd",
  5994. "shasum": ""
  5995. },
  5996. "require": {
  5997. "php": ">=7.1"
  5998. },
  5999. "suggest": {
  6000. "ext-intl": "For best performance"
  6001. },
  6002. "type": "library",
  6003. "extra": {
  6004. "branch-alias": {
  6005. "dev-main": "1.26-dev"
  6006. },
  6007. "thanks": {
  6008. "name": "symfony/polyfill",
  6009. "url": "https://github.com/symfony/polyfill"
  6010. }
  6011. },
  6012. "autoload": {
  6013. "files": [
  6014. "bootstrap.php"
  6015. ],
  6016. "psr-4": {
  6017. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  6018. },
  6019. "classmap": [
  6020. "Resources/stubs"
  6021. ]
  6022. },
  6023. "notification-url": "https://packagist.org/downloads/",
  6024. "license": [
  6025. "MIT"
  6026. ],
  6027. "authors": [
  6028. {
  6029. "name": "Nicolas Grekas",
  6030. "email": "p@tchwork.com"
  6031. },
  6032. {
  6033. "name": "Symfony Community",
  6034. "homepage": "https://symfony.com/contributors"
  6035. }
  6036. ],
  6037. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  6038. "homepage": "https://symfony.com",
  6039. "keywords": [
  6040. "compatibility",
  6041. "intl",
  6042. "normalizer",
  6043. "polyfill",
  6044. "portable",
  6045. "shim"
  6046. ],
  6047. "support": {
  6048. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.26.0"
  6049. },
  6050. "funding": [
  6051. {
  6052. "url": "https://symfony.com/sponsor",
  6053. "type": "custom"
  6054. },
  6055. {
  6056. "url": "https://github.com/fabpot",
  6057. "type": "github"
  6058. },
  6059. {
  6060. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6061. "type": "tidelift"
  6062. }
  6063. ],
  6064. "time": "2022-05-24T11:49:31+00:00"
  6065. },
  6066. {
  6067. "name": "symfony/polyfill-mbstring",
  6068. "version": "v1.26.0",
  6069. "source": {
  6070. "type": "git",
  6071. "url": "https://github.com/symfony/polyfill-mbstring.git",
  6072. "reference": "9344f9cb97f3b19424af1a21a3b0e75b0a7d8d7e"
  6073. },
  6074. "dist": {
  6075. "type": "zip",
  6076. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/9344f9cb97f3b19424af1a21a3b0e75b0a7d8d7e",
  6077. "reference": "9344f9cb97f3b19424af1a21a3b0e75b0a7d8d7e",
  6078. "shasum": ""
  6079. },
  6080. "require": {
  6081. "php": ">=7.1"
  6082. },
  6083. "provide": {
  6084. "ext-mbstring": "*"
  6085. },
  6086. "suggest": {
  6087. "ext-mbstring": "For best performance"
  6088. },
  6089. "type": "library",
  6090. "extra": {
  6091. "branch-alias": {
  6092. "dev-main": "1.26-dev"
  6093. },
  6094. "thanks": {
  6095. "name": "symfony/polyfill",
  6096. "url": "https://github.com/symfony/polyfill"
  6097. }
  6098. },
  6099. "autoload": {
  6100. "files": [
  6101. "bootstrap.php"
  6102. ],
  6103. "psr-4": {
  6104. "Symfony\\Polyfill\\Mbstring\\": ""
  6105. }
  6106. },
  6107. "notification-url": "https://packagist.org/downloads/",
  6108. "license": [
  6109. "MIT"
  6110. ],
  6111. "authors": [
  6112. {
  6113. "name": "Nicolas Grekas",
  6114. "email": "p@tchwork.com"
  6115. },
  6116. {
  6117. "name": "Symfony Community",
  6118. "homepage": "https://symfony.com/contributors"
  6119. }
  6120. ],
  6121. "description": "Symfony polyfill for the Mbstring extension",
  6122. "homepage": "https://symfony.com",
  6123. "keywords": [
  6124. "compatibility",
  6125. "mbstring",
  6126. "polyfill",
  6127. "portable",
  6128. "shim"
  6129. ],
  6130. "support": {
  6131. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.26.0"
  6132. },
  6133. "funding": [
  6134. {
  6135. "url": "https://symfony.com/sponsor",
  6136. "type": "custom"
  6137. },
  6138. {
  6139. "url": "https://github.com/fabpot",
  6140. "type": "github"
  6141. },
  6142. {
  6143. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6144. "type": "tidelift"
  6145. }
  6146. ],
  6147. "time": "2022-05-24T11:49:31+00:00"
  6148. },
  6149. {
  6150. "name": "symfony/polyfill-php72",
  6151. "version": "v1.26.0",
  6152. "source": {
  6153. "type": "git",
  6154. "url": "https://github.com/symfony/polyfill-php72.git",
  6155. "reference": "bf44a9fd41feaac72b074de600314a93e2ae78e2"
  6156. },
  6157. "dist": {
  6158. "type": "zip",
  6159. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/bf44a9fd41feaac72b074de600314a93e2ae78e2",
  6160. "reference": "bf44a9fd41feaac72b074de600314a93e2ae78e2",
  6161. "shasum": ""
  6162. },
  6163. "require": {
  6164. "php": ">=7.1"
  6165. },
  6166. "type": "library",
  6167. "extra": {
  6168. "branch-alias": {
  6169. "dev-main": "1.26-dev"
  6170. },
  6171. "thanks": {
  6172. "name": "symfony/polyfill",
  6173. "url": "https://github.com/symfony/polyfill"
  6174. }
  6175. },
  6176. "autoload": {
  6177. "files": [
  6178. "bootstrap.php"
  6179. ],
  6180. "psr-4": {
  6181. "Symfony\\Polyfill\\Php72\\": ""
  6182. }
  6183. },
  6184. "notification-url": "https://packagist.org/downloads/",
  6185. "license": [
  6186. "MIT"
  6187. ],
  6188. "authors": [
  6189. {
  6190. "name": "Nicolas Grekas",
  6191. "email": "p@tchwork.com"
  6192. },
  6193. {
  6194. "name": "Symfony Community",
  6195. "homepage": "https://symfony.com/contributors"
  6196. }
  6197. ],
  6198. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  6199. "homepage": "https://symfony.com",
  6200. "keywords": [
  6201. "compatibility",
  6202. "polyfill",
  6203. "portable",
  6204. "shim"
  6205. ],
  6206. "support": {
  6207. "source": "https://github.com/symfony/polyfill-php72/tree/v1.26.0"
  6208. },
  6209. "funding": [
  6210. {
  6211. "url": "https://symfony.com/sponsor",
  6212. "type": "custom"
  6213. },
  6214. {
  6215. "url": "https://github.com/fabpot",
  6216. "type": "github"
  6217. },
  6218. {
  6219. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6220. "type": "tidelift"
  6221. }
  6222. ],
  6223. "time": "2022-05-24T11:49:31+00:00"
  6224. },
  6225. {
  6226. "name": "symfony/polyfill-php73",
  6227. "version": "v1.26.0",
  6228. "source": {
  6229. "type": "git",
  6230. "url": "https://github.com/symfony/polyfill-php73.git",
  6231. "reference": "e440d35fa0286f77fb45b79a03fedbeda9307e85"
  6232. },
  6233. "dist": {
  6234. "type": "zip",
  6235. "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/e440d35fa0286f77fb45b79a03fedbeda9307e85",
  6236. "reference": "e440d35fa0286f77fb45b79a03fedbeda9307e85",
  6237. "shasum": ""
  6238. },
  6239. "require": {
  6240. "php": ">=7.1"
  6241. },
  6242. "type": "library",
  6243. "extra": {
  6244. "branch-alias": {
  6245. "dev-main": "1.26-dev"
  6246. },
  6247. "thanks": {
  6248. "name": "symfony/polyfill",
  6249. "url": "https://github.com/symfony/polyfill"
  6250. }
  6251. },
  6252. "autoload": {
  6253. "files": [
  6254. "bootstrap.php"
  6255. ],
  6256. "psr-4": {
  6257. "Symfony\\Polyfill\\Php73\\": ""
  6258. },
  6259. "classmap": [
  6260. "Resources/stubs"
  6261. ]
  6262. },
  6263. "notification-url": "https://packagist.org/downloads/",
  6264. "license": [
  6265. "MIT"
  6266. ],
  6267. "authors": [
  6268. {
  6269. "name": "Nicolas Grekas",
  6270. "email": "p@tchwork.com"
  6271. },
  6272. {
  6273. "name": "Symfony Community",
  6274. "homepage": "https://symfony.com/contributors"
  6275. }
  6276. ],
  6277. "description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions",
  6278. "homepage": "https://symfony.com",
  6279. "keywords": [
  6280. "compatibility",
  6281. "polyfill",
  6282. "portable",
  6283. "shim"
  6284. ],
  6285. "support": {
  6286. "source": "https://github.com/symfony/polyfill-php73/tree/v1.26.0"
  6287. },
  6288. "funding": [
  6289. {
  6290. "url": "https://symfony.com/sponsor",
  6291. "type": "custom"
  6292. },
  6293. {
  6294. "url": "https://github.com/fabpot",
  6295. "type": "github"
  6296. },
  6297. {
  6298. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6299. "type": "tidelift"
  6300. }
  6301. ],
  6302. "time": "2022-05-24T11:49:31+00:00"
  6303. },
  6304. {
  6305. "name": "symfony/polyfill-php80",
  6306. "version": "v1.26.0",
  6307. "source": {
  6308. "type": "git",
  6309. "url": "https://github.com/symfony/polyfill-php80.git",
  6310. "reference": "cfa0ae98841b9e461207c13ab093d76b0fa7bace"
  6311. },
  6312. "dist": {
  6313. "type": "zip",
  6314. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/cfa0ae98841b9e461207c13ab093d76b0fa7bace",
  6315. "reference": "cfa0ae98841b9e461207c13ab093d76b0fa7bace",
  6316. "shasum": ""
  6317. },
  6318. "require": {
  6319. "php": ">=7.1"
  6320. },
  6321. "type": "library",
  6322. "extra": {
  6323. "branch-alias": {
  6324. "dev-main": "1.26-dev"
  6325. },
  6326. "thanks": {
  6327. "name": "symfony/polyfill",
  6328. "url": "https://github.com/symfony/polyfill"
  6329. }
  6330. },
  6331. "autoload": {
  6332. "files": [
  6333. "bootstrap.php"
  6334. ],
  6335. "psr-4": {
  6336. "Symfony\\Polyfill\\Php80\\": ""
  6337. },
  6338. "classmap": [
  6339. "Resources/stubs"
  6340. ]
  6341. },
  6342. "notification-url": "https://packagist.org/downloads/",
  6343. "license": [
  6344. "MIT"
  6345. ],
  6346. "authors": [
  6347. {
  6348. "name": "Ion Bazan",
  6349. "email": "ion.bazan@gmail.com"
  6350. },
  6351. {
  6352. "name": "Nicolas Grekas",
  6353. "email": "p@tchwork.com"
  6354. },
  6355. {
  6356. "name": "Symfony Community",
  6357. "homepage": "https://symfony.com/contributors"
  6358. }
  6359. ],
  6360. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  6361. "homepage": "https://symfony.com",
  6362. "keywords": [
  6363. "compatibility",
  6364. "polyfill",
  6365. "portable",
  6366. "shim"
  6367. ],
  6368. "support": {
  6369. "source": "https://github.com/symfony/polyfill-php80/tree/v1.26.0"
  6370. },
  6371. "funding": [
  6372. {
  6373. "url": "https://symfony.com/sponsor",
  6374. "type": "custom"
  6375. },
  6376. {
  6377. "url": "https://github.com/fabpot",
  6378. "type": "github"
  6379. },
  6380. {
  6381. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6382. "type": "tidelift"
  6383. }
  6384. ],
  6385. "time": "2022-05-10T07:21:04+00:00"
  6386. },
  6387. {
  6388. "name": "symfony/polyfill-php81",
  6389. "version": "v1.26.0",
  6390. "source": {
  6391. "type": "git",
  6392. "url": "https://github.com/symfony/polyfill-php81.git",
  6393. "reference": "13f6d1271c663dc5ae9fb843a8f16521db7687a1"
  6394. },
  6395. "dist": {
  6396. "type": "zip",
  6397. "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/13f6d1271c663dc5ae9fb843a8f16521db7687a1",
  6398. "reference": "13f6d1271c663dc5ae9fb843a8f16521db7687a1",
  6399. "shasum": ""
  6400. },
  6401. "require": {
  6402. "php": ">=7.1"
  6403. },
  6404. "type": "library",
  6405. "extra": {
  6406. "branch-alias": {
  6407. "dev-main": "1.26-dev"
  6408. },
  6409. "thanks": {
  6410. "name": "symfony/polyfill",
  6411. "url": "https://github.com/symfony/polyfill"
  6412. }
  6413. },
  6414. "autoload": {
  6415. "files": [
  6416. "bootstrap.php"
  6417. ],
  6418. "psr-4": {
  6419. "Symfony\\Polyfill\\Php81\\": ""
  6420. },
  6421. "classmap": [
  6422. "Resources/stubs"
  6423. ]
  6424. },
  6425. "notification-url": "https://packagist.org/downloads/",
  6426. "license": [
  6427. "MIT"
  6428. ],
  6429. "authors": [
  6430. {
  6431. "name": "Nicolas Grekas",
  6432. "email": "p@tchwork.com"
  6433. },
  6434. {
  6435. "name": "Symfony Community",
  6436. "homepage": "https://symfony.com/contributors"
  6437. }
  6438. ],
  6439. "description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions",
  6440. "homepage": "https://symfony.com",
  6441. "keywords": [
  6442. "compatibility",
  6443. "polyfill",
  6444. "portable",
  6445. "shim"
  6446. ],
  6447. "support": {
  6448. "source": "https://github.com/symfony/polyfill-php81/tree/v1.26.0"
  6449. },
  6450. "funding": [
  6451. {
  6452. "url": "https://symfony.com/sponsor",
  6453. "type": "custom"
  6454. },
  6455. {
  6456. "url": "https://github.com/fabpot",
  6457. "type": "github"
  6458. },
  6459. {
  6460. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6461. "type": "tidelift"
  6462. }
  6463. ],
  6464. "time": "2022-05-24T11:49:31+00:00"
  6465. },
  6466. {
  6467. "name": "symfony/process",
  6468. "version": "v5.4.8",
  6469. "source": {
  6470. "type": "git",
  6471. "url": "https://github.com/symfony/process.git",
  6472. "reference": "597f3fff8e3e91836bb0bd38f5718b56ddbde2f3"
  6473. },
  6474. "dist": {
  6475. "type": "zip",
  6476. "url": "https://api.github.com/repos/symfony/process/zipball/597f3fff8e3e91836bb0bd38f5718b56ddbde2f3",
  6477. "reference": "597f3fff8e3e91836bb0bd38f5718b56ddbde2f3",
  6478. "shasum": ""
  6479. },
  6480. "require": {
  6481. "php": ">=7.2.5",
  6482. "symfony/polyfill-php80": "^1.16"
  6483. },
  6484. "type": "library",
  6485. "autoload": {
  6486. "psr-4": {
  6487. "Symfony\\Component\\Process\\": ""
  6488. },
  6489. "exclude-from-classmap": [
  6490. "/Tests/"
  6491. ]
  6492. },
  6493. "notification-url": "https://packagist.org/downloads/",
  6494. "license": [
  6495. "MIT"
  6496. ],
  6497. "authors": [
  6498. {
  6499. "name": "Fabien Potencier",
  6500. "email": "fabien@symfony.com"
  6501. },
  6502. {
  6503. "name": "Symfony Community",
  6504. "homepage": "https://symfony.com/contributors"
  6505. }
  6506. ],
  6507. "description": "Executes commands in sub-processes",
  6508. "homepage": "https://symfony.com",
  6509. "support": {
  6510. "source": "https://github.com/symfony/process/tree/v5.4.8"
  6511. },
  6512. "funding": [
  6513. {
  6514. "url": "https://symfony.com/sponsor",
  6515. "type": "custom"
  6516. },
  6517. {
  6518. "url": "https://github.com/fabpot",
  6519. "type": "github"
  6520. },
  6521. {
  6522. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6523. "type": "tidelift"
  6524. }
  6525. ],
  6526. "time": "2022-04-08T05:07:18+00:00"
  6527. },
  6528. {
  6529. "name": "symfony/routing",
  6530. "version": "v5.4.8",
  6531. "source": {
  6532. "type": "git",
  6533. "url": "https://github.com/symfony/routing.git",
  6534. "reference": "e07817bb6244ea33ef5ad31abc4a9288bef3f2f7"
  6535. },
  6536. "dist": {
  6537. "type": "zip",
  6538. "url": "https://api.github.com/repos/symfony/routing/zipball/e07817bb6244ea33ef5ad31abc4a9288bef3f2f7",
  6539. "reference": "e07817bb6244ea33ef5ad31abc4a9288bef3f2f7",
  6540. "shasum": ""
  6541. },
  6542. "require": {
  6543. "php": ">=7.2.5",
  6544. "symfony/deprecation-contracts": "^2.1|^3",
  6545. "symfony/polyfill-php80": "^1.16"
  6546. },
  6547. "conflict": {
  6548. "doctrine/annotations": "<1.12",
  6549. "symfony/config": "<5.3",
  6550. "symfony/dependency-injection": "<4.4",
  6551. "symfony/yaml": "<4.4"
  6552. },
  6553. "require-dev": {
  6554. "doctrine/annotations": "^1.12",
  6555. "psr/log": "^1|^2|^3",
  6556. "symfony/config": "^5.3|^6.0",
  6557. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  6558. "symfony/expression-language": "^4.4|^5.0|^6.0",
  6559. "symfony/http-foundation": "^4.4|^5.0|^6.0",
  6560. "symfony/yaml": "^4.4|^5.0|^6.0"
  6561. },
  6562. "suggest": {
  6563. "symfony/config": "For using the all-in-one router or any loader",
  6564. "symfony/expression-language": "For using expression matching",
  6565. "symfony/http-foundation": "For using a Symfony Request object",
  6566. "symfony/yaml": "For using the YAML loader"
  6567. },
  6568. "type": "library",
  6569. "autoload": {
  6570. "psr-4": {
  6571. "Symfony\\Component\\Routing\\": ""
  6572. },
  6573. "exclude-from-classmap": [
  6574. "/Tests/"
  6575. ]
  6576. },
  6577. "notification-url": "https://packagist.org/downloads/",
  6578. "license": [
  6579. "MIT"
  6580. ],
  6581. "authors": [
  6582. {
  6583. "name": "Fabien Potencier",
  6584. "email": "fabien@symfony.com"
  6585. },
  6586. {
  6587. "name": "Symfony Community",
  6588. "homepage": "https://symfony.com/contributors"
  6589. }
  6590. ],
  6591. "description": "Maps an HTTP request to a set of configuration variables",
  6592. "homepage": "https://symfony.com",
  6593. "keywords": [
  6594. "router",
  6595. "routing",
  6596. "uri",
  6597. "url"
  6598. ],
  6599. "support": {
  6600. "source": "https://github.com/symfony/routing/tree/v5.4.8"
  6601. },
  6602. "funding": [
  6603. {
  6604. "url": "https://symfony.com/sponsor",
  6605. "type": "custom"
  6606. },
  6607. {
  6608. "url": "https://github.com/fabpot",
  6609. "type": "github"
  6610. },
  6611. {
  6612. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6613. "type": "tidelift"
  6614. }
  6615. ],
  6616. "time": "2022-04-18T21:45:37+00:00"
  6617. },
  6618. {
  6619. "name": "symfony/service-contracts",
  6620. "version": "v2.5.2",
  6621. "source": {
  6622. "type": "git",
  6623. "url": "https://github.com/symfony/service-contracts.git",
  6624. "reference": "4b426aac47d6427cc1a1d0f7e2ac724627f5966c"
  6625. },
  6626. "dist": {
  6627. "type": "zip",
  6628. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/4b426aac47d6427cc1a1d0f7e2ac724627f5966c",
  6629. "reference": "4b426aac47d6427cc1a1d0f7e2ac724627f5966c",
  6630. "shasum": ""
  6631. },
  6632. "require": {
  6633. "php": ">=7.2.5",
  6634. "psr/container": "^1.1",
  6635. "symfony/deprecation-contracts": "^2.1|^3"
  6636. },
  6637. "conflict": {
  6638. "ext-psr": "<1.1|>=2"
  6639. },
  6640. "suggest": {
  6641. "symfony/service-implementation": ""
  6642. },
  6643. "type": "library",
  6644. "extra": {
  6645. "branch-alias": {
  6646. "dev-main": "2.5-dev"
  6647. },
  6648. "thanks": {
  6649. "name": "symfony/contracts",
  6650. "url": "https://github.com/symfony/contracts"
  6651. }
  6652. },
  6653. "autoload": {
  6654. "psr-4": {
  6655. "Symfony\\Contracts\\Service\\": ""
  6656. }
  6657. },
  6658. "notification-url": "https://packagist.org/downloads/",
  6659. "license": [
  6660. "MIT"
  6661. ],
  6662. "authors": [
  6663. {
  6664. "name": "Nicolas Grekas",
  6665. "email": "p@tchwork.com"
  6666. },
  6667. {
  6668. "name": "Symfony Community",
  6669. "homepage": "https://symfony.com/contributors"
  6670. }
  6671. ],
  6672. "description": "Generic abstractions related to writing services",
  6673. "homepage": "https://symfony.com",
  6674. "keywords": [
  6675. "abstractions",
  6676. "contracts",
  6677. "decoupling",
  6678. "interfaces",
  6679. "interoperability",
  6680. "standards"
  6681. ],
  6682. "support": {
  6683. "source": "https://github.com/symfony/service-contracts/tree/v2.5.2"
  6684. },
  6685. "funding": [
  6686. {
  6687. "url": "https://symfony.com/sponsor",
  6688. "type": "custom"
  6689. },
  6690. {
  6691. "url": "https://github.com/fabpot",
  6692. "type": "github"
  6693. },
  6694. {
  6695. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6696. "type": "tidelift"
  6697. }
  6698. ],
  6699. "time": "2022-05-30T19:17:29+00:00"
  6700. },
  6701. {
  6702. "name": "symfony/string",
  6703. "version": "v5.4.10",
  6704. "source": {
  6705. "type": "git",
  6706. "url": "https://github.com/symfony/string.git",
  6707. "reference": "4432bc7df82a554b3e413a8570ce2fea90e94097"
  6708. },
  6709. "dist": {
  6710. "type": "zip",
  6711. "url": "https://api.github.com/repos/symfony/string/zipball/4432bc7df82a554b3e413a8570ce2fea90e94097",
  6712. "reference": "4432bc7df82a554b3e413a8570ce2fea90e94097",
  6713. "shasum": ""
  6714. },
  6715. "require": {
  6716. "php": ">=7.2.5",
  6717. "symfony/polyfill-ctype": "~1.8",
  6718. "symfony/polyfill-intl-grapheme": "~1.0",
  6719. "symfony/polyfill-intl-normalizer": "~1.0",
  6720. "symfony/polyfill-mbstring": "~1.0",
  6721. "symfony/polyfill-php80": "~1.15"
  6722. },
  6723. "conflict": {
  6724. "symfony/translation-contracts": ">=3.0"
  6725. },
  6726. "require-dev": {
  6727. "symfony/error-handler": "^4.4|^5.0|^6.0",
  6728. "symfony/http-client": "^4.4|^5.0|^6.0",
  6729. "symfony/translation-contracts": "^1.1|^2",
  6730. "symfony/var-exporter": "^4.4|^5.0|^6.0"
  6731. },
  6732. "type": "library",
  6733. "autoload": {
  6734. "files": [
  6735. "Resources/functions.php"
  6736. ],
  6737. "psr-4": {
  6738. "Symfony\\Component\\String\\": ""
  6739. },
  6740. "exclude-from-classmap": [
  6741. "/Tests/"
  6742. ]
  6743. },
  6744. "notification-url": "https://packagist.org/downloads/",
  6745. "license": [
  6746. "MIT"
  6747. ],
  6748. "authors": [
  6749. {
  6750. "name": "Nicolas Grekas",
  6751. "email": "p@tchwork.com"
  6752. },
  6753. {
  6754. "name": "Symfony Community",
  6755. "homepage": "https://symfony.com/contributors"
  6756. }
  6757. ],
  6758. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  6759. "homepage": "https://symfony.com",
  6760. "keywords": [
  6761. "grapheme",
  6762. "i18n",
  6763. "string",
  6764. "unicode",
  6765. "utf-8",
  6766. "utf8"
  6767. ],
  6768. "support": {
  6769. "source": "https://github.com/symfony/string/tree/v5.4.10"
  6770. },
  6771. "funding": [
  6772. {
  6773. "url": "https://symfony.com/sponsor",
  6774. "type": "custom"
  6775. },
  6776. {
  6777. "url": "https://github.com/fabpot",
  6778. "type": "github"
  6779. },
  6780. {
  6781. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6782. "type": "tidelift"
  6783. }
  6784. ],
  6785. "time": "2022-06-26T15:57:47+00:00"
  6786. },
  6787. {
  6788. "name": "symfony/translation",
  6789. "version": "v5.4.9",
  6790. "source": {
  6791. "type": "git",
  6792. "url": "https://github.com/symfony/translation.git",
  6793. "reference": "1639abc1177d26bcd4320e535e664cef067ab0ca"
  6794. },
  6795. "dist": {
  6796. "type": "zip",
  6797. "url": "https://api.github.com/repos/symfony/translation/zipball/1639abc1177d26bcd4320e535e664cef067ab0ca",
  6798. "reference": "1639abc1177d26bcd4320e535e664cef067ab0ca",
  6799. "shasum": ""
  6800. },
  6801. "require": {
  6802. "php": ">=7.2.5",
  6803. "symfony/deprecation-contracts": "^2.1|^3",
  6804. "symfony/polyfill-mbstring": "~1.0",
  6805. "symfony/polyfill-php80": "^1.16",
  6806. "symfony/translation-contracts": "^2.3"
  6807. },
  6808. "conflict": {
  6809. "symfony/config": "<4.4",
  6810. "symfony/console": "<5.3",
  6811. "symfony/dependency-injection": "<5.0",
  6812. "symfony/http-kernel": "<5.0",
  6813. "symfony/twig-bundle": "<5.0",
  6814. "symfony/yaml": "<4.4"
  6815. },
  6816. "provide": {
  6817. "symfony/translation-implementation": "2.3"
  6818. },
  6819. "require-dev": {
  6820. "psr/log": "^1|^2|^3",
  6821. "symfony/config": "^4.4|^5.0|^6.0",
  6822. "symfony/console": "^5.4|^6.0",
  6823. "symfony/dependency-injection": "^5.0|^6.0",
  6824. "symfony/finder": "^4.4|^5.0|^6.0",
  6825. "symfony/http-client-contracts": "^1.1|^2.0|^3.0",
  6826. "symfony/http-kernel": "^5.0|^6.0",
  6827. "symfony/intl": "^4.4|^5.0|^6.0",
  6828. "symfony/polyfill-intl-icu": "^1.21",
  6829. "symfony/service-contracts": "^1.1.2|^2|^3",
  6830. "symfony/yaml": "^4.4|^5.0|^6.0"
  6831. },
  6832. "suggest": {
  6833. "psr/log-implementation": "To use logging capability in translator",
  6834. "symfony/config": "",
  6835. "symfony/yaml": ""
  6836. },
  6837. "type": "library",
  6838. "autoload": {
  6839. "files": [
  6840. "Resources/functions.php"
  6841. ],
  6842. "psr-4": {
  6843. "Symfony\\Component\\Translation\\": ""
  6844. },
  6845. "exclude-from-classmap": [
  6846. "/Tests/"
  6847. ]
  6848. },
  6849. "notification-url": "https://packagist.org/downloads/",
  6850. "license": [
  6851. "MIT"
  6852. ],
  6853. "authors": [
  6854. {
  6855. "name": "Fabien Potencier",
  6856. "email": "fabien@symfony.com"
  6857. },
  6858. {
  6859. "name": "Symfony Community",
  6860. "homepage": "https://symfony.com/contributors"
  6861. }
  6862. ],
  6863. "description": "Provides tools to internationalize your application",
  6864. "homepage": "https://symfony.com",
  6865. "support": {
  6866. "source": "https://github.com/symfony/translation/tree/v5.4.9"
  6867. },
  6868. "funding": [
  6869. {
  6870. "url": "https://symfony.com/sponsor",
  6871. "type": "custom"
  6872. },
  6873. {
  6874. "url": "https://github.com/fabpot",
  6875. "type": "github"
  6876. },
  6877. {
  6878. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6879. "type": "tidelift"
  6880. }
  6881. ],
  6882. "time": "2022-05-06T12:33:37+00:00"
  6883. },
  6884. {
  6885. "name": "symfony/translation-contracts",
  6886. "version": "v2.5.2",
  6887. "source": {
  6888. "type": "git",
  6889. "url": "https://github.com/symfony/translation-contracts.git",
  6890. "reference": "136b19dd05cdf0709db6537d058bcab6dd6e2dbe"
  6891. },
  6892. "dist": {
  6893. "type": "zip",
  6894. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/136b19dd05cdf0709db6537d058bcab6dd6e2dbe",
  6895. "reference": "136b19dd05cdf0709db6537d058bcab6dd6e2dbe",
  6896. "shasum": ""
  6897. },
  6898. "require": {
  6899. "php": ">=7.2.5"
  6900. },
  6901. "suggest": {
  6902. "symfony/translation-implementation": ""
  6903. },
  6904. "type": "library",
  6905. "extra": {
  6906. "branch-alias": {
  6907. "dev-main": "2.5-dev"
  6908. },
  6909. "thanks": {
  6910. "name": "symfony/contracts",
  6911. "url": "https://github.com/symfony/contracts"
  6912. }
  6913. },
  6914. "autoload": {
  6915. "psr-4": {
  6916. "Symfony\\Contracts\\Translation\\": ""
  6917. }
  6918. },
  6919. "notification-url": "https://packagist.org/downloads/",
  6920. "license": [
  6921. "MIT"
  6922. ],
  6923. "authors": [
  6924. {
  6925. "name": "Nicolas Grekas",
  6926. "email": "p@tchwork.com"
  6927. },
  6928. {
  6929. "name": "Symfony Community",
  6930. "homepage": "https://symfony.com/contributors"
  6931. }
  6932. ],
  6933. "description": "Generic abstractions related to translation",
  6934. "homepage": "https://symfony.com",
  6935. "keywords": [
  6936. "abstractions",
  6937. "contracts",
  6938. "decoupling",
  6939. "interfaces",
  6940. "interoperability",
  6941. "standards"
  6942. ],
  6943. "support": {
  6944. "source": "https://github.com/symfony/translation-contracts/tree/v2.5.2"
  6945. },
  6946. "funding": [
  6947. {
  6948. "url": "https://symfony.com/sponsor",
  6949. "type": "custom"
  6950. },
  6951. {
  6952. "url": "https://github.com/fabpot",
  6953. "type": "github"
  6954. },
  6955. {
  6956. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6957. "type": "tidelift"
  6958. }
  6959. ],
  6960. "time": "2022-06-27T16:58:25+00:00"
  6961. },
  6962. {
  6963. "name": "symfony/var-dumper",
  6964. "version": "v5.4.9",
  6965. "source": {
  6966. "type": "git",
  6967. "url": "https://github.com/symfony/var-dumper.git",
  6968. "reference": "af52239a330fafd192c773795520dc2dd62b5657"
  6969. },
  6970. "dist": {
  6971. "type": "zip",
  6972. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/af52239a330fafd192c773795520dc2dd62b5657",
  6973. "reference": "af52239a330fafd192c773795520dc2dd62b5657",
  6974. "shasum": ""
  6975. },
  6976. "require": {
  6977. "php": ">=7.2.5",
  6978. "symfony/polyfill-mbstring": "~1.0",
  6979. "symfony/polyfill-php80": "^1.16"
  6980. },
  6981. "conflict": {
  6982. "phpunit/phpunit": "<5.4.3",
  6983. "symfony/console": "<4.4"
  6984. },
  6985. "require-dev": {
  6986. "ext-iconv": "*",
  6987. "symfony/console": "^4.4|^5.0|^6.0",
  6988. "symfony/process": "^4.4|^5.0|^6.0",
  6989. "symfony/uid": "^5.1|^6.0",
  6990. "twig/twig": "^2.13|^3.0.4"
  6991. },
  6992. "suggest": {
  6993. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  6994. "ext-intl": "To show region name in time zone dump",
  6995. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  6996. },
  6997. "bin": [
  6998. "Resources/bin/var-dump-server"
  6999. ],
  7000. "type": "library",
  7001. "autoload": {
  7002. "files": [
  7003. "Resources/functions/dump.php"
  7004. ],
  7005. "psr-4": {
  7006. "Symfony\\Component\\VarDumper\\": ""
  7007. },
  7008. "exclude-from-classmap": [
  7009. "/Tests/"
  7010. ]
  7011. },
  7012. "notification-url": "https://packagist.org/downloads/",
  7013. "license": [
  7014. "MIT"
  7015. ],
  7016. "authors": [
  7017. {
  7018. "name": "Nicolas Grekas",
  7019. "email": "p@tchwork.com"
  7020. },
  7021. {
  7022. "name": "Symfony Community",
  7023. "homepage": "https://symfony.com/contributors"
  7024. }
  7025. ],
  7026. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  7027. "homepage": "https://symfony.com",
  7028. "keywords": [
  7029. "debug",
  7030. "dump"
  7031. ],
  7032. "support": {
  7033. "source": "https://github.com/symfony/var-dumper/tree/v5.4.9"
  7034. },
  7035. "funding": [
  7036. {
  7037. "url": "https://symfony.com/sponsor",
  7038. "type": "custom"
  7039. },
  7040. {
  7041. "url": "https://github.com/fabpot",
  7042. "type": "github"
  7043. },
  7044. {
  7045. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7046. "type": "tidelift"
  7047. }
  7048. ],
  7049. "time": "2022-05-21T10:24:18+00:00"
  7050. },
  7051. {
  7052. "name": "tijsverkoyen/css-to-inline-styles",
  7053. "version": "2.2.4",
  7054. "source": {
  7055. "type": "git",
  7056. "url": "https://github.com/tijsverkoyen/CssToInlineStyles.git",
  7057. "reference": "da444caae6aca7a19c0c140f68c6182e337d5b1c"
  7058. },
  7059. "dist": {
  7060. "type": "zip",
  7061. "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/da444caae6aca7a19c0c140f68c6182e337d5b1c",
  7062. "reference": "da444caae6aca7a19c0c140f68c6182e337d5b1c",
  7063. "shasum": ""
  7064. },
  7065. "require": {
  7066. "ext-dom": "*",
  7067. "ext-libxml": "*",
  7068. "php": "^5.5 || ^7.0 || ^8.0",
  7069. "symfony/css-selector": "^2.7 || ^3.0 || ^4.0 || ^5.0 || ^6.0"
  7070. },
  7071. "require-dev": {
  7072. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0 || ^7.5 || ^8.5.21 || ^9.5.10"
  7073. },
  7074. "type": "library",
  7075. "extra": {
  7076. "branch-alias": {
  7077. "dev-master": "2.2.x-dev"
  7078. }
  7079. },
  7080. "autoload": {
  7081. "psr-4": {
  7082. "TijsVerkoyen\\CssToInlineStyles\\": "src"
  7083. }
  7084. },
  7085. "notification-url": "https://packagist.org/downloads/",
  7086. "license": [
  7087. "BSD-3-Clause"
  7088. ],
  7089. "authors": [
  7090. {
  7091. "name": "Tijs Verkoyen",
  7092. "email": "css_to_inline_styles@verkoyen.eu",
  7093. "role": "Developer"
  7094. }
  7095. ],
  7096. "description": "CssToInlineStyles is a class that enables you to convert HTML-pages/files into HTML-pages/files with inline styles. This is very useful when you're sending emails.",
  7097. "homepage": "https://github.com/tijsverkoyen/CssToInlineStyles",
  7098. "support": {
  7099. "issues": "https://github.com/tijsverkoyen/CssToInlineStyles/issues",
  7100. "source": "https://github.com/tijsverkoyen/CssToInlineStyles/tree/2.2.4"
  7101. },
  7102. "time": "2021-12-08T09:12:39+00:00"
  7103. },
  7104. {
  7105. "name": "vlucas/phpdotenv",
  7106. "version": "v5.4.1",
  7107. "source": {
  7108. "type": "git",
  7109. "url": "https://github.com/vlucas/phpdotenv.git",
  7110. "reference": "264dce589e7ce37a7ba99cb901eed8249fbec92f"
  7111. },
  7112. "dist": {
  7113. "type": "zip",
  7114. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/264dce589e7ce37a7ba99cb901eed8249fbec92f",
  7115. "reference": "264dce589e7ce37a7ba99cb901eed8249fbec92f",
  7116. "shasum": ""
  7117. },
  7118. "require": {
  7119. "ext-pcre": "*",
  7120. "graham-campbell/result-type": "^1.0.2",
  7121. "php": "^7.1.3 || ^8.0",
  7122. "phpoption/phpoption": "^1.8",
  7123. "symfony/polyfill-ctype": "^1.23",
  7124. "symfony/polyfill-mbstring": "^1.23.1",
  7125. "symfony/polyfill-php80": "^1.23.1"
  7126. },
  7127. "require-dev": {
  7128. "bamarni/composer-bin-plugin": "^1.4.1",
  7129. "ext-filter": "*",
  7130. "phpunit/phpunit": "^7.5.20 || ^8.5.21 || ^9.5.10"
  7131. },
  7132. "suggest": {
  7133. "ext-filter": "Required to use the boolean validator."
  7134. },
  7135. "type": "library",
  7136. "extra": {
  7137. "branch-alias": {
  7138. "dev-master": "5.4-dev"
  7139. }
  7140. },
  7141. "autoload": {
  7142. "psr-4": {
  7143. "Dotenv\\": "src/"
  7144. }
  7145. },
  7146. "notification-url": "https://packagist.org/downloads/",
  7147. "license": [
  7148. "BSD-3-Clause"
  7149. ],
  7150. "authors": [
  7151. {
  7152. "name": "Graham Campbell",
  7153. "email": "hello@gjcampbell.co.uk",
  7154. "homepage": "https://github.com/GrahamCampbell"
  7155. },
  7156. {
  7157. "name": "Vance Lucas",
  7158. "email": "vance@vancelucas.com",
  7159. "homepage": "https://github.com/vlucas"
  7160. }
  7161. ],
  7162. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  7163. "keywords": [
  7164. "dotenv",
  7165. "env",
  7166. "environment"
  7167. ],
  7168. "support": {
  7169. "issues": "https://github.com/vlucas/phpdotenv/issues",
  7170. "source": "https://github.com/vlucas/phpdotenv/tree/v5.4.1"
  7171. },
  7172. "funding": [
  7173. {
  7174. "url": "https://github.com/GrahamCampbell",
  7175. "type": "github"
  7176. },
  7177. {
  7178. "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
  7179. "type": "tidelift"
  7180. }
  7181. ],
  7182. "time": "2021-12-12T23:22:04+00:00"
  7183. },
  7184. {
  7185. "name": "voku/portable-ascii",
  7186. "version": "1.6.1",
  7187. "source": {
  7188. "type": "git",
  7189. "url": "https://github.com/voku/portable-ascii.git",
  7190. "reference": "87337c91b9dfacee02452244ee14ab3c43bc485a"
  7191. },
  7192. "dist": {
  7193. "type": "zip",
  7194. "url": "https://api.github.com/repos/voku/portable-ascii/zipball/87337c91b9dfacee02452244ee14ab3c43bc485a",
  7195. "reference": "87337c91b9dfacee02452244ee14ab3c43bc485a",
  7196. "shasum": ""
  7197. },
  7198. "require": {
  7199. "php": ">=7.0.0"
  7200. },
  7201. "require-dev": {
  7202. "phpunit/phpunit": "~6.0 || ~7.0 || ~9.0"
  7203. },
  7204. "suggest": {
  7205. "ext-intl": "Use Intl for transliterator_transliterate() support"
  7206. },
  7207. "type": "library",
  7208. "autoload": {
  7209. "psr-4": {
  7210. "voku\\": "src/voku/"
  7211. }
  7212. },
  7213. "notification-url": "https://packagist.org/downloads/",
  7214. "license": [
  7215. "MIT"
  7216. ],
  7217. "authors": [
  7218. {
  7219. "name": "Lars Moelleken",
  7220. "homepage": "http://www.moelleken.org/"
  7221. }
  7222. ],
  7223. "description": "Portable ASCII library - performance optimized (ascii) string functions for php.",
  7224. "homepage": "https://github.com/voku/portable-ascii",
  7225. "keywords": [
  7226. "ascii",
  7227. "clean",
  7228. "php"
  7229. ],
  7230. "support": {
  7231. "issues": "https://github.com/voku/portable-ascii/issues",
  7232. "source": "https://github.com/voku/portable-ascii/tree/1.6.1"
  7233. },
  7234. "funding": [
  7235. {
  7236. "url": "https://www.paypal.me/moelleken",
  7237. "type": "custom"
  7238. },
  7239. {
  7240. "url": "https://github.com/voku",
  7241. "type": "github"
  7242. },
  7243. {
  7244. "url": "https://opencollective.com/portable-ascii",
  7245. "type": "open_collective"
  7246. },
  7247. {
  7248. "url": "https://www.patreon.com/voku",
  7249. "type": "patreon"
  7250. },
  7251. {
  7252. "url": "https://tidelift.com/funding/github/packagist/voku/portable-ascii",
  7253. "type": "tidelift"
  7254. }
  7255. ],
  7256. "time": "2022-01-24T18:55:24+00:00"
  7257. },
  7258. {
  7259. "name": "web3p/ethereum-util",
  7260. "version": "0.1.3",
  7261. "source": {
  7262. "type": "git",
  7263. "url": "https://github.com/web3p/ethereum-util.git",
  7264. "reference": "77a860f35028eae57cd7e7a044ab6c11ffe1ad9e"
  7265. },
  7266. "dist": {
  7267. "type": "zip",
  7268. "url": "https://api.github.com/repos/web3p/ethereum-util/zipball/77a860f35028eae57cd7e7a044ab6c11ffe1ad9e",
  7269. "reference": "77a860f35028eae57cd7e7a044ab6c11ffe1ad9e",
  7270. "shasum": ""
  7271. },
  7272. "require": {
  7273. "kornrunner/keccak": "~1",
  7274. "php": "^7.1 | ^8.0",
  7275. "simplito/elliptic-php": "~1.0.6"
  7276. },
  7277. "require-dev": {
  7278. "phpunit/phpunit": "~7 | ~8.0"
  7279. },
  7280. "type": "library",
  7281. "autoload": {
  7282. "psr-4": {
  7283. "Web3p\\EthereumUtil\\": "src/"
  7284. }
  7285. },
  7286. "notification-url": "https://packagist.org/downloads/",
  7287. "license": [
  7288. "MIT"
  7289. ],
  7290. "authors": [
  7291. {
  7292. "name": "sc0Vu",
  7293. "email": "alk03073135@gmail.com"
  7294. }
  7295. ],
  7296. "description": "A collection of utility functions for Ethereum written in PHP.",
  7297. "support": {
  7298. "issues": "https://github.com/web3p/ethereum-util/issues",
  7299. "source": "https://github.com/web3p/ethereum-util/tree/0.1.3"
  7300. },
  7301. "time": "2021-06-05T05:35:13+00:00"
  7302. },
  7303. {
  7304. "name": "webmozart/assert",
  7305. "version": "1.11.0",
  7306. "source": {
  7307. "type": "git",
  7308. "url": "https://github.com/webmozarts/assert.git",
  7309. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991"
  7310. },
  7311. "dist": {
  7312. "type": "zip",
  7313. "url": "https://api.github.com/repos/webmozarts/assert/zipball/11cb2199493b2f8a3b53e7f19068fc6aac760991",
  7314. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991",
  7315. "shasum": ""
  7316. },
  7317. "require": {
  7318. "ext-ctype": "*",
  7319. "php": "^7.2 || ^8.0"
  7320. },
  7321. "conflict": {
  7322. "phpstan/phpstan": "<0.12.20",
  7323. "vimeo/psalm": "<4.6.1 || 4.6.2"
  7324. },
  7325. "require-dev": {
  7326. "phpunit/phpunit": "^8.5.13"
  7327. },
  7328. "type": "library",
  7329. "extra": {
  7330. "branch-alias": {
  7331. "dev-master": "1.10-dev"
  7332. }
  7333. },
  7334. "autoload": {
  7335. "psr-4": {
  7336. "Webmozart\\Assert\\": "src/"
  7337. }
  7338. },
  7339. "notification-url": "https://packagist.org/downloads/",
  7340. "license": [
  7341. "MIT"
  7342. ],
  7343. "authors": [
  7344. {
  7345. "name": "Bernhard Schussek",
  7346. "email": "bschussek@gmail.com"
  7347. }
  7348. ],
  7349. "description": "Assertions to validate method input/output with nice error messages.",
  7350. "keywords": [
  7351. "assert",
  7352. "check",
  7353. "validate"
  7354. ],
  7355. "support": {
  7356. "issues": "https://github.com/webmozarts/assert/issues",
  7357. "source": "https://github.com/webmozarts/assert/tree/1.11.0"
  7358. },
  7359. "time": "2022-06-03T18:03:27+00:00"
  7360. }
  7361. ],
  7362. "packages-dev": [
  7363. {
  7364. "name": "doctrine/instantiator",
  7365. "version": "1.4.1",
  7366. "source": {
  7367. "type": "git",
  7368. "url": "https://github.com/doctrine/instantiator.git",
  7369. "reference": "10dcfce151b967d20fde1b34ae6640712c3891bc"
  7370. },
  7371. "dist": {
  7372. "type": "zip",
  7373. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/10dcfce151b967d20fde1b34ae6640712c3891bc",
  7374. "reference": "10dcfce151b967d20fde1b34ae6640712c3891bc",
  7375. "shasum": ""
  7376. },
  7377. "require": {
  7378. "php": "^7.1 || ^8.0"
  7379. },
  7380. "require-dev": {
  7381. "doctrine/coding-standard": "^9",
  7382. "ext-pdo": "*",
  7383. "ext-phar": "*",
  7384. "phpbench/phpbench": "^0.16 || ^1",
  7385. "phpstan/phpstan": "^1.4",
  7386. "phpstan/phpstan-phpunit": "^1",
  7387. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  7388. "vimeo/psalm": "^4.22"
  7389. },
  7390. "type": "library",
  7391. "autoload": {
  7392. "psr-4": {
  7393. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  7394. }
  7395. },
  7396. "notification-url": "https://packagist.org/downloads/",
  7397. "license": [
  7398. "MIT"
  7399. ],
  7400. "authors": [
  7401. {
  7402. "name": "Marco Pivetta",
  7403. "email": "ocramius@gmail.com",
  7404. "homepage": "https://ocramius.github.io/"
  7405. }
  7406. ],
  7407. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  7408. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  7409. "keywords": [
  7410. "constructor",
  7411. "instantiate"
  7412. ],
  7413. "support": {
  7414. "issues": "https://github.com/doctrine/instantiator/issues",
  7415. "source": "https://github.com/doctrine/instantiator/tree/1.4.1"
  7416. },
  7417. "funding": [
  7418. {
  7419. "url": "https://www.doctrine-project.org/sponsorship.html",
  7420. "type": "custom"
  7421. },
  7422. {
  7423. "url": "https://www.patreon.com/phpdoctrine",
  7424. "type": "patreon"
  7425. },
  7426. {
  7427. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
  7428. "type": "tidelift"
  7429. }
  7430. ],
  7431. "time": "2022-03-03T08:28:38+00:00"
  7432. },
  7433. {
  7434. "name": "facade/flare-client-php",
  7435. "version": "1.9.1",
  7436. "source": {
  7437. "type": "git",
  7438. "url": "https://github.com/facade/flare-client-php.git",
  7439. "reference": "b2adf1512755637d0cef4f7d1b54301325ac78ed"
  7440. },
  7441. "dist": {
  7442. "type": "zip",
  7443. "url": "https://api.github.com/repos/facade/flare-client-php/zipball/b2adf1512755637d0cef4f7d1b54301325ac78ed",
  7444. "reference": "b2adf1512755637d0cef4f7d1b54301325ac78ed",
  7445. "shasum": ""
  7446. },
  7447. "require": {
  7448. "facade/ignition-contracts": "~1.0",
  7449. "illuminate/pipeline": "^5.5|^6.0|^7.0|^8.0",
  7450. "php": "^7.1|^8.0",
  7451. "symfony/http-foundation": "^3.3|^4.1|^5.0",
  7452. "symfony/mime": "^3.4|^4.0|^5.1",
  7453. "symfony/var-dumper": "^3.4|^4.0|^5.0"
  7454. },
  7455. "require-dev": {
  7456. "friendsofphp/php-cs-fixer": "^2.14",
  7457. "phpunit/phpunit": "^7.5.16",
  7458. "spatie/phpunit-snapshot-assertions": "^2.0"
  7459. },
  7460. "type": "library",
  7461. "extra": {
  7462. "branch-alias": {
  7463. "dev-master": "1.0-dev"
  7464. }
  7465. },
  7466. "autoload": {
  7467. "files": [
  7468. "src/helpers.php"
  7469. ],
  7470. "psr-4": {
  7471. "Facade\\FlareClient\\": "src"
  7472. }
  7473. },
  7474. "notification-url": "https://packagist.org/downloads/",
  7475. "license": [
  7476. "MIT"
  7477. ],
  7478. "description": "Send PHP errors to Flare",
  7479. "homepage": "https://github.com/facade/flare-client-php",
  7480. "keywords": [
  7481. "exception",
  7482. "facade",
  7483. "flare",
  7484. "reporting"
  7485. ],
  7486. "support": {
  7487. "issues": "https://github.com/facade/flare-client-php/issues",
  7488. "source": "https://github.com/facade/flare-client-php/tree/1.9.1"
  7489. },
  7490. "funding": [
  7491. {
  7492. "url": "https://github.com/spatie",
  7493. "type": "github"
  7494. }
  7495. ],
  7496. "time": "2021-09-13T12:16:46+00:00"
  7497. },
  7498. {
  7499. "name": "facade/ignition",
  7500. "version": "2.17.6",
  7501. "source": {
  7502. "type": "git",
  7503. "url": "https://github.com/facade/ignition.git",
  7504. "reference": "6acd82e986a2ecee89e2e68adfc30a1936d1ab7c"
  7505. },
  7506. "dist": {
  7507. "type": "zip",
  7508. "url": "https://api.github.com/repos/facade/ignition/zipball/6acd82e986a2ecee89e2e68adfc30a1936d1ab7c",
  7509. "reference": "6acd82e986a2ecee89e2e68adfc30a1936d1ab7c",
  7510. "shasum": ""
  7511. },
  7512. "require": {
  7513. "ext-curl": "*",
  7514. "ext-json": "*",
  7515. "ext-mbstring": "*",
  7516. "facade/flare-client-php": "^1.9.1",
  7517. "facade/ignition-contracts": "^1.0.2",
  7518. "illuminate/support": "^7.0|^8.0",
  7519. "monolog/monolog": "^2.0",
  7520. "php": "^7.2.5|^8.0",
  7521. "symfony/console": "^5.0",
  7522. "symfony/var-dumper": "^5.0"
  7523. },
  7524. "require-dev": {
  7525. "friendsofphp/php-cs-fixer": "^2.14",
  7526. "livewire/livewire": "^2.4",
  7527. "mockery/mockery": "^1.3",
  7528. "orchestra/testbench": "^5.0|^6.0",
  7529. "psalm/plugin-laravel": "^1.2"
  7530. },
  7531. "suggest": {
  7532. "laravel/telescope": "^3.1"
  7533. },
  7534. "type": "library",
  7535. "extra": {
  7536. "branch-alias": {
  7537. "dev-master": "2.x-dev"
  7538. },
  7539. "laravel": {
  7540. "providers": [
  7541. "Facade\\Ignition\\IgnitionServiceProvider"
  7542. ],
  7543. "aliases": {
  7544. "Flare": "Facade\\Ignition\\Facades\\Flare"
  7545. }
  7546. }
  7547. },
  7548. "autoload": {
  7549. "files": [
  7550. "src/helpers.php"
  7551. ],
  7552. "psr-4": {
  7553. "Facade\\Ignition\\": "src"
  7554. }
  7555. },
  7556. "notification-url": "https://packagist.org/downloads/",
  7557. "license": [
  7558. "MIT"
  7559. ],
  7560. "description": "A beautiful error page for Laravel applications.",
  7561. "homepage": "https://github.com/facade/ignition",
  7562. "keywords": [
  7563. "error",
  7564. "flare",
  7565. "laravel",
  7566. "page"
  7567. ],
  7568. "support": {
  7569. "docs": "https://flareapp.io/docs/ignition-for-laravel/introduction",
  7570. "forum": "https://twitter.com/flareappio",
  7571. "issues": "https://github.com/facade/ignition/issues",
  7572. "source": "https://github.com/facade/ignition"
  7573. },
  7574. "time": "2022-06-30T18:26:59+00:00"
  7575. },
  7576. {
  7577. "name": "facade/ignition-contracts",
  7578. "version": "1.0.2",
  7579. "source": {
  7580. "type": "git",
  7581. "url": "https://github.com/facade/ignition-contracts.git",
  7582. "reference": "3c921a1cdba35b68a7f0ccffc6dffc1995b18267"
  7583. },
  7584. "dist": {
  7585. "type": "zip",
  7586. "url": "https://api.github.com/repos/facade/ignition-contracts/zipball/3c921a1cdba35b68a7f0ccffc6dffc1995b18267",
  7587. "reference": "3c921a1cdba35b68a7f0ccffc6dffc1995b18267",
  7588. "shasum": ""
  7589. },
  7590. "require": {
  7591. "php": "^7.3|^8.0"
  7592. },
  7593. "require-dev": {
  7594. "friendsofphp/php-cs-fixer": "^v2.15.8",
  7595. "phpunit/phpunit": "^9.3.11",
  7596. "vimeo/psalm": "^3.17.1"
  7597. },
  7598. "type": "library",
  7599. "autoload": {
  7600. "psr-4": {
  7601. "Facade\\IgnitionContracts\\": "src"
  7602. }
  7603. },
  7604. "notification-url": "https://packagist.org/downloads/",
  7605. "license": [
  7606. "MIT"
  7607. ],
  7608. "authors": [
  7609. {
  7610. "name": "Freek Van der Herten",
  7611. "email": "freek@spatie.be",
  7612. "homepage": "https://flareapp.io",
  7613. "role": "Developer"
  7614. }
  7615. ],
  7616. "description": "Solution contracts for Ignition",
  7617. "homepage": "https://github.com/facade/ignition-contracts",
  7618. "keywords": [
  7619. "contracts",
  7620. "flare",
  7621. "ignition"
  7622. ],
  7623. "support": {
  7624. "issues": "https://github.com/facade/ignition-contracts/issues",
  7625. "source": "https://github.com/facade/ignition-contracts/tree/1.0.2"
  7626. },
  7627. "time": "2020-10-16T08:27:54+00:00"
  7628. },
  7629. {
  7630. "name": "fakerphp/faker",
  7631. "version": "v1.19.0",
  7632. "source": {
  7633. "type": "git",
  7634. "url": "https://github.com/FakerPHP/Faker.git",
  7635. "reference": "d7f08a622b3346766325488aa32ddc93ccdecc75"
  7636. },
  7637. "dist": {
  7638. "type": "zip",
  7639. "url": "https://api.github.com/repos/FakerPHP/Faker/zipball/d7f08a622b3346766325488aa32ddc93ccdecc75",
  7640. "reference": "d7f08a622b3346766325488aa32ddc93ccdecc75",
  7641. "shasum": ""
  7642. },
  7643. "require": {
  7644. "php": "^7.1 || ^8.0",
  7645. "psr/container": "^1.0 || ^2.0",
  7646. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  7647. },
  7648. "conflict": {
  7649. "fzaninotto/faker": "*"
  7650. },
  7651. "require-dev": {
  7652. "bamarni/composer-bin-plugin": "^1.4.1",
  7653. "doctrine/persistence": "^1.3 || ^2.0",
  7654. "ext-intl": "*",
  7655. "symfony/phpunit-bridge": "^4.4 || ^5.2"
  7656. },
  7657. "suggest": {
  7658. "doctrine/orm": "Required to use Faker\\ORM\\Doctrine",
  7659. "ext-curl": "Required by Faker\\Provider\\Image to download images.",
  7660. "ext-dom": "Required by Faker\\Provider\\HtmlLorem for generating random HTML.",
  7661. "ext-iconv": "Required by Faker\\Provider\\ru_RU\\Text::realText() for generating real Russian text.",
  7662. "ext-mbstring": "Required for multibyte Unicode string functionality."
  7663. },
  7664. "type": "library",
  7665. "extra": {
  7666. "branch-alias": {
  7667. "dev-main": "v1.19-dev"
  7668. }
  7669. },
  7670. "autoload": {
  7671. "psr-4": {
  7672. "Faker\\": "src/Faker/"
  7673. }
  7674. },
  7675. "notification-url": "https://packagist.org/downloads/",
  7676. "license": [
  7677. "MIT"
  7678. ],
  7679. "authors": [
  7680. {
  7681. "name": "François Zaninotto"
  7682. }
  7683. ],
  7684. "description": "Faker is a PHP library that generates fake data for you.",
  7685. "keywords": [
  7686. "data",
  7687. "faker",
  7688. "fixtures"
  7689. ],
  7690. "support": {
  7691. "issues": "https://github.com/FakerPHP/Faker/issues",
  7692. "source": "https://github.com/FakerPHP/Faker/tree/v1.19.0"
  7693. },
  7694. "time": "2022-02-02T17:38:57+00:00"
  7695. },
  7696. {
  7697. "name": "filp/whoops",
  7698. "version": "2.14.5",
  7699. "source": {
  7700. "type": "git",
  7701. "url": "https://github.com/filp/whoops.git",
  7702. "reference": "a63e5e8f26ebbebf8ed3c5c691637325512eb0dc"
  7703. },
  7704. "dist": {
  7705. "type": "zip",
  7706. "url": "https://api.github.com/repos/filp/whoops/zipball/a63e5e8f26ebbebf8ed3c5c691637325512eb0dc",
  7707. "reference": "a63e5e8f26ebbebf8ed3c5c691637325512eb0dc",
  7708. "shasum": ""
  7709. },
  7710. "require": {
  7711. "php": "^5.5.9 || ^7.0 || ^8.0",
  7712. "psr/log": "^1.0.1 || ^2.0 || ^3.0"
  7713. },
  7714. "require-dev": {
  7715. "mockery/mockery": "^0.9 || ^1.0",
  7716. "phpunit/phpunit": "^4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.3",
  7717. "symfony/var-dumper": "^2.6 || ^3.0 || ^4.0 || ^5.0"
  7718. },
  7719. "suggest": {
  7720. "symfony/var-dumper": "Pretty print complex values better with var-dumper available",
  7721. "whoops/soap": "Formats errors as SOAP responses"
  7722. },
  7723. "type": "library",
  7724. "extra": {
  7725. "branch-alias": {
  7726. "dev-master": "2.7-dev"
  7727. }
  7728. },
  7729. "autoload": {
  7730. "psr-4": {
  7731. "Whoops\\": "src/Whoops/"
  7732. }
  7733. },
  7734. "notification-url": "https://packagist.org/downloads/",
  7735. "license": [
  7736. "MIT"
  7737. ],
  7738. "authors": [
  7739. {
  7740. "name": "Filipe Dobreira",
  7741. "homepage": "https://github.com/filp",
  7742. "role": "Developer"
  7743. }
  7744. ],
  7745. "description": "php error handling for cool kids",
  7746. "homepage": "https://filp.github.io/whoops/",
  7747. "keywords": [
  7748. "error",
  7749. "exception",
  7750. "handling",
  7751. "library",
  7752. "throwable",
  7753. "whoops"
  7754. ],
  7755. "support": {
  7756. "issues": "https://github.com/filp/whoops/issues",
  7757. "source": "https://github.com/filp/whoops/tree/2.14.5"
  7758. },
  7759. "funding": [
  7760. {
  7761. "url": "https://github.com/denis-sokolov",
  7762. "type": "github"
  7763. }
  7764. ],
  7765. "time": "2022-01-07T12:00:00+00:00"
  7766. },
  7767. {
  7768. "name": "hamcrest/hamcrest-php",
  7769. "version": "v2.0.1",
  7770. "source": {
  7771. "type": "git",
  7772. "url": "https://github.com/hamcrest/hamcrest-php.git",
  7773. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3"
  7774. },
  7775. "dist": {
  7776. "type": "zip",
  7777. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  7778. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  7779. "shasum": ""
  7780. },
  7781. "require": {
  7782. "php": "^5.3|^7.0|^8.0"
  7783. },
  7784. "replace": {
  7785. "cordoval/hamcrest-php": "*",
  7786. "davedevelopment/hamcrest-php": "*",
  7787. "kodova/hamcrest-php": "*"
  7788. },
  7789. "require-dev": {
  7790. "phpunit/php-file-iterator": "^1.4 || ^2.0",
  7791. "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0"
  7792. },
  7793. "type": "library",
  7794. "extra": {
  7795. "branch-alias": {
  7796. "dev-master": "2.1-dev"
  7797. }
  7798. },
  7799. "autoload": {
  7800. "classmap": [
  7801. "hamcrest"
  7802. ]
  7803. },
  7804. "notification-url": "https://packagist.org/downloads/",
  7805. "license": [
  7806. "BSD-3-Clause"
  7807. ],
  7808. "description": "This is the PHP port of Hamcrest Matchers",
  7809. "keywords": [
  7810. "test"
  7811. ],
  7812. "support": {
  7813. "issues": "https://github.com/hamcrest/hamcrest-php/issues",
  7814. "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.0.1"
  7815. },
  7816. "time": "2020-07-09T08:09:16+00:00"
  7817. },
  7818. {
  7819. "name": "mockery/mockery",
  7820. "version": "1.5.0",
  7821. "source": {
  7822. "type": "git",
  7823. "url": "https://github.com/mockery/mockery.git",
  7824. "reference": "c10a5f6e06fc2470ab1822fa13fa2a7380f8fbac"
  7825. },
  7826. "dist": {
  7827. "type": "zip",
  7828. "url": "https://api.github.com/repos/mockery/mockery/zipball/c10a5f6e06fc2470ab1822fa13fa2a7380f8fbac",
  7829. "reference": "c10a5f6e06fc2470ab1822fa13fa2a7380f8fbac",
  7830. "shasum": ""
  7831. },
  7832. "require": {
  7833. "hamcrest/hamcrest-php": "^2.0.1",
  7834. "lib-pcre": ">=7.0",
  7835. "php": "^7.3 || ^8.0"
  7836. },
  7837. "conflict": {
  7838. "phpunit/phpunit": "<8.0"
  7839. },
  7840. "require-dev": {
  7841. "phpunit/phpunit": "^8.5 || ^9.3"
  7842. },
  7843. "type": "library",
  7844. "extra": {
  7845. "branch-alias": {
  7846. "dev-master": "1.4.x-dev"
  7847. }
  7848. },
  7849. "autoload": {
  7850. "psr-0": {
  7851. "Mockery": "library/"
  7852. }
  7853. },
  7854. "notification-url": "https://packagist.org/downloads/",
  7855. "license": [
  7856. "BSD-3-Clause"
  7857. ],
  7858. "authors": [
  7859. {
  7860. "name": "Pádraic Brady",
  7861. "email": "padraic.brady@gmail.com",
  7862. "homepage": "http://blog.astrumfutura.com"
  7863. },
  7864. {
  7865. "name": "Dave Marshall",
  7866. "email": "dave.marshall@atstsolutions.co.uk",
  7867. "homepage": "http://davedevelopment.co.uk"
  7868. }
  7869. ],
  7870. "description": "Mockery is a simple yet flexible PHP mock object framework",
  7871. "homepage": "https://github.com/mockery/mockery",
  7872. "keywords": [
  7873. "BDD",
  7874. "TDD",
  7875. "library",
  7876. "mock",
  7877. "mock objects",
  7878. "mockery",
  7879. "stub",
  7880. "test",
  7881. "test double",
  7882. "testing"
  7883. ],
  7884. "support": {
  7885. "issues": "https://github.com/mockery/mockery/issues",
  7886. "source": "https://github.com/mockery/mockery/tree/1.5.0"
  7887. },
  7888. "time": "2022-01-20T13:18:17+00:00"
  7889. },
  7890. {
  7891. "name": "myclabs/deep-copy",
  7892. "version": "1.11.0",
  7893. "source": {
  7894. "type": "git",
  7895. "url": "https://github.com/myclabs/DeepCopy.git",
  7896. "reference": "14daed4296fae74d9e3201d2c4925d1acb7aa614"
  7897. },
  7898. "dist": {
  7899. "type": "zip",
  7900. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/14daed4296fae74d9e3201d2c4925d1acb7aa614",
  7901. "reference": "14daed4296fae74d9e3201d2c4925d1acb7aa614",
  7902. "shasum": ""
  7903. },
  7904. "require": {
  7905. "php": "^7.1 || ^8.0"
  7906. },
  7907. "conflict": {
  7908. "doctrine/collections": "<1.6.8",
  7909. "doctrine/common": "<2.13.3 || >=3,<3.2.2"
  7910. },
  7911. "require-dev": {
  7912. "doctrine/collections": "^1.6.8",
  7913. "doctrine/common": "^2.13.3 || ^3.2.2",
  7914. "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
  7915. },
  7916. "type": "library",
  7917. "autoload": {
  7918. "files": [
  7919. "src/DeepCopy/deep_copy.php"
  7920. ],
  7921. "psr-4": {
  7922. "DeepCopy\\": "src/DeepCopy/"
  7923. }
  7924. },
  7925. "notification-url": "https://packagist.org/downloads/",
  7926. "license": [
  7927. "MIT"
  7928. ],
  7929. "description": "Create deep copies (clones) of your objects",
  7930. "keywords": [
  7931. "clone",
  7932. "copy",
  7933. "duplicate",
  7934. "object",
  7935. "object graph"
  7936. ],
  7937. "support": {
  7938. "issues": "https://github.com/myclabs/DeepCopy/issues",
  7939. "source": "https://github.com/myclabs/DeepCopy/tree/1.11.0"
  7940. },
  7941. "funding": [
  7942. {
  7943. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  7944. "type": "tidelift"
  7945. }
  7946. ],
  7947. "time": "2022-03-03T13:19:32+00:00"
  7948. },
  7949. {
  7950. "name": "nunomaduro/collision",
  7951. "version": "v5.11.0",
  7952. "source": {
  7953. "type": "git",
  7954. "url": "https://github.com/nunomaduro/collision.git",
  7955. "reference": "8b610eef8582ccdc05d8f2ab23305e2d37049461"
  7956. },
  7957. "dist": {
  7958. "type": "zip",
  7959. "url": "https://api.github.com/repos/nunomaduro/collision/zipball/8b610eef8582ccdc05d8f2ab23305e2d37049461",
  7960. "reference": "8b610eef8582ccdc05d8f2ab23305e2d37049461",
  7961. "shasum": ""
  7962. },
  7963. "require": {
  7964. "facade/ignition-contracts": "^1.0",
  7965. "filp/whoops": "^2.14.3",
  7966. "php": "^7.3 || ^8.0",
  7967. "symfony/console": "^5.0"
  7968. },
  7969. "require-dev": {
  7970. "brianium/paratest": "^6.1",
  7971. "fideloper/proxy": "^4.4.1",
  7972. "fruitcake/laravel-cors": "^2.0.3",
  7973. "laravel/framework": "8.x-dev",
  7974. "nunomaduro/larastan": "^0.6.2",
  7975. "nunomaduro/mock-final-classes": "^1.0",
  7976. "orchestra/testbench": "^6.0",
  7977. "phpstan/phpstan": "^0.12.64",
  7978. "phpunit/phpunit": "^9.5.0"
  7979. },
  7980. "type": "library",
  7981. "extra": {
  7982. "laravel": {
  7983. "providers": [
  7984. "NunoMaduro\\Collision\\Adapters\\Laravel\\CollisionServiceProvider"
  7985. ]
  7986. }
  7987. },
  7988. "autoload": {
  7989. "psr-4": {
  7990. "NunoMaduro\\Collision\\": "src/"
  7991. }
  7992. },
  7993. "notification-url": "https://packagist.org/downloads/",
  7994. "license": [
  7995. "MIT"
  7996. ],
  7997. "authors": [
  7998. {
  7999. "name": "Nuno Maduro",
  8000. "email": "enunomaduro@gmail.com"
  8001. }
  8002. ],
  8003. "description": "Cli error handling for console/command-line PHP applications.",
  8004. "keywords": [
  8005. "artisan",
  8006. "cli",
  8007. "command-line",
  8008. "console",
  8009. "error",
  8010. "handling",
  8011. "laravel",
  8012. "laravel-zero",
  8013. "php",
  8014. "symfony"
  8015. ],
  8016. "support": {
  8017. "issues": "https://github.com/nunomaduro/collision/issues",
  8018. "source": "https://github.com/nunomaduro/collision"
  8019. },
  8020. "funding": [
  8021. {
  8022. "url": "https://www.paypal.com/paypalme/enunomaduro",
  8023. "type": "custom"
  8024. },
  8025. {
  8026. "url": "https://github.com/nunomaduro",
  8027. "type": "github"
  8028. },
  8029. {
  8030. "url": "https://www.patreon.com/nunomaduro",
  8031. "type": "patreon"
  8032. }
  8033. ],
  8034. "time": "2022-01-10T16:22:52+00:00"
  8035. },
  8036. {
  8037. "name": "phar-io/manifest",
  8038. "version": "2.0.3",
  8039. "source": {
  8040. "type": "git",
  8041. "url": "https://github.com/phar-io/manifest.git",
  8042. "reference": "97803eca37d319dfa7826cc2437fc020857acb53"
  8043. },
  8044. "dist": {
  8045. "type": "zip",
  8046. "url": "https://api.github.com/repos/phar-io/manifest/zipball/97803eca37d319dfa7826cc2437fc020857acb53",
  8047. "reference": "97803eca37d319dfa7826cc2437fc020857acb53",
  8048. "shasum": ""
  8049. },
  8050. "require": {
  8051. "ext-dom": "*",
  8052. "ext-phar": "*",
  8053. "ext-xmlwriter": "*",
  8054. "phar-io/version": "^3.0.1",
  8055. "php": "^7.2 || ^8.0"
  8056. },
  8057. "type": "library",
  8058. "extra": {
  8059. "branch-alias": {
  8060. "dev-master": "2.0.x-dev"
  8061. }
  8062. },
  8063. "autoload": {
  8064. "classmap": [
  8065. "src/"
  8066. ]
  8067. },
  8068. "notification-url": "https://packagist.org/downloads/",
  8069. "license": [
  8070. "BSD-3-Clause"
  8071. ],
  8072. "authors": [
  8073. {
  8074. "name": "Arne Blankerts",
  8075. "email": "arne@blankerts.de",
  8076. "role": "Developer"
  8077. },
  8078. {
  8079. "name": "Sebastian Heuer",
  8080. "email": "sebastian@phpeople.de",
  8081. "role": "Developer"
  8082. },
  8083. {
  8084. "name": "Sebastian Bergmann",
  8085. "email": "sebastian@phpunit.de",
  8086. "role": "Developer"
  8087. }
  8088. ],
  8089. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  8090. "support": {
  8091. "issues": "https://github.com/phar-io/manifest/issues",
  8092. "source": "https://github.com/phar-io/manifest/tree/2.0.3"
  8093. },
  8094. "time": "2021-07-20T11:28:43+00:00"
  8095. },
  8096. {
  8097. "name": "phar-io/version",
  8098. "version": "3.2.1",
  8099. "source": {
  8100. "type": "git",
  8101. "url": "https://github.com/phar-io/version.git",
  8102. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
  8103. },
  8104. "dist": {
  8105. "type": "zip",
  8106. "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  8107. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  8108. "shasum": ""
  8109. },
  8110. "require": {
  8111. "php": "^7.2 || ^8.0"
  8112. },
  8113. "type": "library",
  8114. "autoload": {
  8115. "classmap": [
  8116. "src/"
  8117. ]
  8118. },
  8119. "notification-url": "https://packagist.org/downloads/",
  8120. "license": [
  8121. "BSD-3-Clause"
  8122. ],
  8123. "authors": [
  8124. {
  8125. "name": "Arne Blankerts",
  8126. "email": "arne@blankerts.de",
  8127. "role": "Developer"
  8128. },
  8129. {
  8130. "name": "Sebastian Heuer",
  8131. "email": "sebastian@phpeople.de",
  8132. "role": "Developer"
  8133. },
  8134. {
  8135. "name": "Sebastian Bergmann",
  8136. "email": "sebastian@phpunit.de",
  8137. "role": "Developer"
  8138. }
  8139. ],
  8140. "description": "Library for handling version information and constraints",
  8141. "support": {
  8142. "issues": "https://github.com/phar-io/version/issues",
  8143. "source": "https://github.com/phar-io/version/tree/3.2.1"
  8144. },
  8145. "time": "2022-02-21T01:04:05+00:00"
  8146. },
  8147. {
  8148. "name": "phpdocumentor/reflection-common",
  8149. "version": "2.2.0",
  8150. "source": {
  8151. "type": "git",
  8152. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  8153. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b"
  8154. },
  8155. "dist": {
  8156. "type": "zip",
  8157. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  8158. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  8159. "shasum": ""
  8160. },
  8161. "require": {
  8162. "php": "^7.2 || ^8.0"
  8163. },
  8164. "type": "library",
  8165. "extra": {
  8166. "branch-alias": {
  8167. "dev-2.x": "2.x-dev"
  8168. }
  8169. },
  8170. "autoload": {
  8171. "psr-4": {
  8172. "phpDocumentor\\Reflection\\": "src/"
  8173. }
  8174. },
  8175. "notification-url": "https://packagist.org/downloads/",
  8176. "license": [
  8177. "MIT"
  8178. ],
  8179. "authors": [
  8180. {
  8181. "name": "Jaap van Otterdijk",
  8182. "email": "opensource@ijaap.nl"
  8183. }
  8184. ],
  8185. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  8186. "homepage": "http://www.phpdoc.org",
  8187. "keywords": [
  8188. "FQSEN",
  8189. "phpDocumentor",
  8190. "phpdoc",
  8191. "reflection",
  8192. "static analysis"
  8193. ],
  8194. "support": {
  8195. "issues": "https://github.com/phpDocumentor/ReflectionCommon/issues",
  8196. "source": "https://github.com/phpDocumentor/ReflectionCommon/tree/2.x"
  8197. },
  8198. "time": "2020-06-27T09:03:43+00:00"
  8199. },
  8200. {
  8201. "name": "phpdocumentor/reflection-docblock",
  8202. "version": "5.3.0",
  8203. "source": {
  8204. "type": "git",
  8205. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  8206. "reference": "622548b623e81ca6d78b721c5e029f4ce664f170"
  8207. },
  8208. "dist": {
  8209. "type": "zip",
  8210. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/622548b623e81ca6d78b721c5e029f4ce664f170",
  8211. "reference": "622548b623e81ca6d78b721c5e029f4ce664f170",
  8212. "shasum": ""
  8213. },
  8214. "require": {
  8215. "ext-filter": "*",
  8216. "php": "^7.2 || ^8.0",
  8217. "phpdocumentor/reflection-common": "^2.2",
  8218. "phpdocumentor/type-resolver": "^1.3",
  8219. "webmozart/assert": "^1.9.1"
  8220. },
  8221. "require-dev": {
  8222. "mockery/mockery": "~1.3.2",
  8223. "psalm/phar": "^4.8"
  8224. },
  8225. "type": "library",
  8226. "extra": {
  8227. "branch-alias": {
  8228. "dev-master": "5.x-dev"
  8229. }
  8230. },
  8231. "autoload": {
  8232. "psr-4": {
  8233. "phpDocumentor\\Reflection\\": "src"
  8234. }
  8235. },
  8236. "notification-url": "https://packagist.org/downloads/",
  8237. "license": [
  8238. "MIT"
  8239. ],
  8240. "authors": [
  8241. {
  8242. "name": "Mike van Riel",
  8243. "email": "me@mikevanriel.com"
  8244. },
  8245. {
  8246. "name": "Jaap van Otterdijk",
  8247. "email": "account@ijaap.nl"
  8248. }
  8249. ],
  8250. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  8251. "support": {
  8252. "issues": "https://github.com/phpDocumentor/ReflectionDocBlock/issues",
  8253. "source": "https://github.com/phpDocumentor/ReflectionDocBlock/tree/5.3.0"
  8254. },
  8255. "time": "2021-10-19T17:43:47+00:00"
  8256. },
  8257. {
  8258. "name": "phpdocumentor/type-resolver",
  8259. "version": "1.6.1",
  8260. "source": {
  8261. "type": "git",
  8262. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  8263. "reference": "77a32518733312af16a44300404e945338981de3"
  8264. },
  8265. "dist": {
  8266. "type": "zip",
  8267. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/77a32518733312af16a44300404e945338981de3",
  8268. "reference": "77a32518733312af16a44300404e945338981de3",
  8269. "shasum": ""
  8270. },
  8271. "require": {
  8272. "php": "^7.2 || ^8.0",
  8273. "phpdocumentor/reflection-common": "^2.0"
  8274. },
  8275. "require-dev": {
  8276. "ext-tokenizer": "*",
  8277. "psalm/phar": "^4.8"
  8278. },
  8279. "type": "library",
  8280. "extra": {
  8281. "branch-alias": {
  8282. "dev-1.x": "1.x-dev"
  8283. }
  8284. },
  8285. "autoload": {
  8286. "psr-4": {
  8287. "phpDocumentor\\Reflection\\": "src"
  8288. }
  8289. },
  8290. "notification-url": "https://packagist.org/downloads/",
  8291. "license": [
  8292. "MIT"
  8293. ],
  8294. "authors": [
  8295. {
  8296. "name": "Mike van Riel",
  8297. "email": "me@mikevanriel.com"
  8298. }
  8299. ],
  8300. "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names",
  8301. "support": {
  8302. "issues": "https://github.com/phpDocumentor/TypeResolver/issues",
  8303. "source": "https://github.com/phpDocumentor/TypeResolver/tree/1.6.1"
  8304. },
  8305. "time": "2022-03-15T21:29:03+00:00"
  8306. },
  8307. {
  8308. "name": "phpspec/prophecy",
  8309. "version": "v1.15.0",
  8310. "source": {
  8311. "type": "git",
  8312. "url": "https://github.com/phpspec/prophecy.git",
  8313. "reference": "bbcd7380b0ebf3961ee21409db7b38bc31d69a13"
  8314. },
  8315. "dist": {
  8316. "type": "zip",
  8317. "url": "https://api.github.com/repos/phpspec/prophecy/zipball/bbcd7380b0ebf3961ee21409db7b38bc31d69a13",
  8318. "reference": "bbcd7380b0ebf3961ee21409db7b38bc31d69a13",
  8319. "shasum": ""
  8320. },
  8321. "require": {
  8322. "doctrine/instantiator": "^1.2",
  8323. "php": "^7.2 || ~8.0, <8.2",
  8324. "phpdocumentor/reflection-docblock": "^5.2",
  8325. "sebastian/comparator": "^3.0 || ^4.0",
  8326. "sebastian/recursion-context": "^3.0 || ^4.0"
  8327. },
  8328. "require-dev": {
  8329. "phpspec/phpspec": "^6.0 || ^7.0",
  8330. "phpunit/phpunit": "^8.0 || ^9.0"
  8331. },
  8332. "type": "library",
  8333. "extra": {
  8334. "branch-alias": {
  8335. "dev-master": "1.x-dev"
  8336. }
  8337. },
  8338. "autoload": {
  8339. "psr-4": {
  8340. "Prophecy\\": "src/Prophecy"
  8341. }
  8342. },
  8343. "notification-url": "https://packagist.org/downloads/",
  8344. "license": [
  8345. "MIT"
  8346. ],
  8347. "authors": [
  8348. {
  8349. "name": "Konstantin Kudryashov",
  8350. "email": "ever.zet@gmail.com",
  8351. "homepage": "http://everzet.com"
  8352. },
  8353. {
  8354. "name": "Marcello Duarte",
  8355. "email": "marcello.duarte@gmail.com"
  8356. }
  8357. ],
  8358. "description": "Highly opinionated mocking framework for PHP 5.3+",
  8359. "homepage": "https://github.com/phpspec/prophecy",
  8360. "keywords": [
  8361. "Double",
  8362. "Dummy",
  8363. "fake",
  8364. "mock",
  8365. "spy",
  8366. "stub"
  8367. ],
  8368. "support": {
  8369. "issues": "https://github.com/phpspec/prophecy/issues",
  8370. "source": "https://github.com/phpspec/prophecy/tree/v1.15.0"
  8371. },
  8372. "time": "2021-12-08T12:19:24+00:00"
  8373. },
  8374. {
  8375. "name": "phpunit/php-code-coverage",
  8376. "version": "9.2.15",
  8377. "source": {
  8378. "type": "git",
  8379. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  8380. "reference": "2e9da11878c4202f97915c1cb4bb1ca318a63f5f"
  8381. },
  8382. "dist": {
  8383. "type": "zip",
  8384. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/2e9da11878c4202f97915c1cb4bb1ca318a63f5f",
  8385. "reference": "2e9da11878c4202f97915c1cb4bb1ca318a63f5f",
  8386. "shasum": ""
  8387. },
  8388. "require": {
  8389. "ext-dom": "*",
  8390. "ext-libxml": "*",
  8391. "ext-xmlwriter": "*",
  8392. "nikic/php-parser": "^4.13.0",
  8393. "php": ">=7.3",
  8394. "phpunit/php-file-iterator": "^3.0.3",
  8395. "phpunit/php-text-template": "^2.0.2",
  8396. "sebastian/code-unit-reverse-lookup": "^2.0.2",
  8397. "sebastian/complexity": "^2.0",
  8398. "sebastian/environment": "^5.1.2",
  8399. "sebastian/lines-of-code": "^1.0.3",
  8400. "sebastian/version": "^3.0.1",
  8401. "theseer/tokenizer": "^1.2.0"
  8402. },
  8403. "require-dev": {
  8404. "phpunit/phpunit": "^9.3"
  8405. },
  8406. "suggest": {
  8407. "ext-pcov": "*",
  8408. "ext-xdebug": "*"
  8409. },
  8410. "type": "library",
  8411. "extra": {
  8412. "branch-alias": {
  8413. "dev-master": "9.2-dev"
  8414. }
  8415. },
  8416. "autoload": {
  8417. "classmap": [
  8418. "src/"
  8419. ]
  8420. },
  8421. "notification-url": "https://packagist.org/downloads/",
  8422. "license": [
  8423. "BSD-3-Clause"
  8424. ],
  8425. "authors": [
  8426. {
  8427. "name": "Sebastian Bergmann",
  8428. "email": "sebastian@phpunit.de",
  8429. "role": "lead"
  8430. }
  8431. ],
  8432. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  8433. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  8434. "keywords": [
  8435. "coverage",
  8436. "testing",
  8437. "xunit"
  8438. ],
  8439. "support": {
  8440. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  8441. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/9.2.15"
  8442. },
  8443. "funding": [
  8444. {
  8445. "url": "https://github.com/sebastianbergmann",
  8446. "type": "github"
  8447. }
  8448. ],
  8449. "time": "2022-03-07T09:28:20+00:00"
  8450. },
  8451. {
  8452. "name": "phpunit/php-file-iterator",
  8453. "version": "3.0.6",
  8454. "source": {
  8455. "type": "git",
  8456. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  8457. "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf"
  8458. },
  8459. "dist": {
  8460. "type": "zip",
  8461. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
  8462. "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
  8463. "shasum": ""
  8464. },
  8465. "require": {
  8466. "php": ">=7.3"
  8467. },
  8468. "require-dev": {
  8469. "phpunit/phpunit": "^9.3"
  8470. },
  8471. "type": "library",
  8472. "extra": {
  8473. "branch-alias": {
  8474. "dev-master": "3.0-dev"
  8475. }
  8476. },
  8477. "autoload": {
  8478. "classmap": [
  8479. "src/"
  8480. ]
  8481. },
  8482. "notification-url": "https://packagist.org/downloads/",
  8483. "license": [
  8484. "BSD-3-Clause"
  8485. ],
  8486. "authors": [
  8487. {
  8488. "name": "Sebastian Bergmann",
  8489. "email": "sebastian@phpunit.de",
  8490. "role": "lead"
  8491. }
  8492. ],
  8493. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  8494. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  8495. "keywords": [
  8496. "filesystem",
  8497. "iterator"
  8498. ],
  8499. "support": {
  8500. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  8501. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/3.0.6"
  8502. },
  8503. "funding": [
  8504. {
  8505. "url": "https://github.com/sebastianbergmann",
  8506. "type": "github"
  8507. }
  8508. ],
  8509. "time": "2021-12-02T12:48:52+00:00"
  8510. },
  8511. {
  8512. "name": "phpunit/php-invoker",
  8513. "version": "3.1.1",
  8514. "source": {
  8515. "type": "git",
  8516. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  8517. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67"
  8518. },
  8519. "dist": {
  8520. "type": "zip",
  8521. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  8522. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  8523. "shasum": ""
  8524. },
  8525. "require": {
  8526. "php": ">=7.3"
  8527. },
  8528. "require-dev": {
  8529. "ext-pcntl": "*",
  8530. "phpunit/phpunit": "^9.3"
  8531. },
  8532. "suggest": {
  8533. "ext-pcntl": "*"
  8534. },
  8535. "type": "library",
  8536. "extra": {
  8537. "branch-alias": {
  8538. "dev-master": "3.1-dev"
  8539. }
  8540. },
  8541. "autoload": {
  8542. "classmap": [
  8543. "src/"
  8544. ]
  8545. },
  8546. "notification-url": "https://packagist.org/downloads/",
  8547. "license": [
  8548. "BSD-3-Clause"
  8549. ],
  8550. "authors": [
  8551. {
  8552. "name": "Sebastian Bergmann",
  8553. "email": "sebastian@phpunit.de",
  8554. "role": "lead"
  8555. }
  8556. ],
  8557. "description": "Invoke callables with a timeout",
  8558. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  8559. "keywords": [
  8560. "process"
  8561. ],
  8562. "support": {
  8563. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  8564. "source": "https://github.com/sebastianbergmann/php-invoker/tree/3.1.1"
  8565. },
  8566. "funding": [
  8567. {
  8568. "url": "https://github.com/sebastianbergmann",
  8569. "type": "github"
  8570. }
  8571. ],
  8572. "time": "2020-09-28T05:58:55+00:00"
  8573. },
  8574. {
  8575. "name": "phpunit/php-text-template",
  8576. "version": "2.0.4",
  8577. "source": {
  8578. "type": "git",
  8579. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  8580. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28"
  8581. },
  8582. "dist": {
  8583. "type": "zip",
  8584. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  8585. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  8586. "shasum": ""
  8587. },
  8588. "require": {
  8589. "php": ">=7.3"
  8590. },
  8591. "require-dev": {
  8592. "phpunit/phpunit": "^9.3"
  8593. },
  8594. "type": "library",
  8595. "extra": {
  8596. "branch-alias": {
  8597. "dev-master": "2.0-dev"
  8598. }
  8599. },
  8600. "autoload": {
  8601. "classmap": [
  8602. "src/"
  8603. ]
  8604. },
  8605. "notification-url": "https://packagist.org/downloads/",
  8606. "license": [
  8607. "BSD-3-Clause"
  8608. ],
  8609. "authors": [
  8610. {
  8611. "name": "Sebastian Bergmann",
  8612. "email": "sebastian@phpunit.de",
  8613. "role": "lead"
  8614. }
  8615. ],
  8616. "description": "Simple template engine.",
  8617. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  8618. "keywords": [
  8619. "template"
  8620. ],
  8621. "support": {
  8622. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  8623. "source": "https://github.com/sebastianbergmann/php-text-template/tree/2.0.4"
  8624. },
  8625. "funding": [
  8626. {
  8627. "url": "https://github.com/sebastianbergmann",
  8628. "type": "github"
  8629. }
  8630. ],
  8631. "time": "2020-10-26T05:33:50+00:00"
  8632. },
  8633. {
  8634. "name": "phpunit/php-timer",
  8635. "version": "5.0.3",
  8636. "source": {
  8637. "type": "git",
  8638. "url": "https://github.com/sebastianbergmann/php-timer.git",
  8639. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2"
  8640. },
  8641. "dist": {
  8642. "type": "zip",
  8643. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  8644. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  8645. "shasum": ""
  8646. },
  8647. "require": {
  8648. "php": ">=7.3"
  8649. },
  8650. "require-dev": {
  8651. "phpunit/phpunit": "^9.3"
  8652. },
  8653. "type": "library",
  8654. "extra": {
  8655. "branch-alias": {
  8656. "dev-master": "5.0-dev"
  8657. }
  8658. },
  8659. "autoload": {
  8660. "classmap": [
  8661. "src/"
  8662. ]
  8663. },
  8664. "notification-url": "https://packagist.org/downloads/",
  8665. "license": [
  8666. "BSD-3-Clause"
  8667. ],
  8668. "authors": [
  8669. {
  8670. "name": "Sebastian Bergmann",
  8671. "email": "sebastian@phpunit.de",
  8672. "role": "lead"
  8673. }
  8674. ],
  8675. "description": "Utility class for timing",
  8676. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  8677. "keywords": [
  8678. "timer"
  8679. ],
  8680. "support": {
  8681. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  8682. "source": "https://github.com/sebastianbergmann/php-timer/tree/5.0.3"
  8683. },
  8684. "funding": [
  8685. {
  8686. "url": "https://github.com/sebastianbergmann",
  8687. "type": "github"
  8688. }
  8689. ],
  8690. "time": "2020-10-26T13:16:10+00:00"
  8691. },
  8692. {
  8693. "name": "phpunit/phpunit",
  8694. "version": "9.5.21",
  8695. "source": {
  8696. "type": "git",
  8697. "url": "https://github.com/sebastianbergmann/phpunit.git",
  8698. "reference": "0e32b76be457de00e83213528f6bb37e2a38fcb1"
  8699. },
  8700. "dist": {
  8701. "type": "zip",
  8702. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/0e32b76be457de00e83213528f6bb37e2a38fcb1",
  8703. "reference": "0e32b76be457de00e83213528f6bb37e2a38fcb1",
  8704. "shasum": ""
  8705. },
  8706. "require": {
  8707. "doctrine/instantiator": "^1.3.1",
  8708. "ext-dom": "*",
  8709. "ext-json": "*",
  8710. "ext-libxml": "*",
  8711. "ext-mbstring": "*",
  8712. "ext-xml": "*",
  8713. "ext-xmlwriter": "*",
  8714. "myclabs/deep-copy": "^1.10.1",
  8715. "phar-io/manifest": "^2.0.3",
  8716. "phar-io/version": "^3.0.2",
  8717. "php": ">=7.3",
  8718. "phpspec/prophecy": "^1.12.1",
  8719. "phpunit/php-code-coverage": "^9.2.13",
  8720. "phpunit/php-file-iterator": "^3.0.5",
  8721. "phpunit/php-invoker": "^3.1.1",
  8722. "phpunit/php-text-template": "^2.0.3",
  8723. "phpunit/php-timer": "^5.0.2",
  8724. "sebastian/cli-parser": "^1.0.1",
  8725. "sebastian/code-unit": "^1.0.6",
  8726. "sebastian/comparator": "^4.0.5",
  8727. "sebastian/diff": "^4.0.3",
  8728. "sebastian/environment": "^5.1.3",
  8729. "sebastian/exporter": "^4.0.3",
  8730. "sebastian/global-state": "^5.0.1",
  8731. "sebastian/object-enumerator": "^4.0.3",
  8732. "sebastian/resource-operations": "^3.0.3",
  8733. "sebastian/type": "^3.0",
  8734. "sebastian/version": "^3.0.2"
  8735. },
  8736. "require-dev": {
  8737. "phpspec/prophecy-phpunit": "^2.0.1"
  8738. },
  8739. "suggest": {
  8740. "ext-soap": "*",
  8741. "ext-xdebug": "*"
  8742. },
  8743. "bin": [
  8744. "phpunit"
  8745. ],
  8746. "type": "library",
  8747. "extra": {
  8748. "branch-alias": {
  8749. "dev-master": "9.5-dev"
  8750. }
  8751. },
  8752. "autoload": {
  8753. "files": [
  8754. "src/Framework/Assert/Functions.php"
  8755. ],
  8756. "classmap": [
  8757. "src/"
  8758. ]
  8759. },
  8760. "notification-url": "https://packagist.org/downloads/",
  8761. "license": [
  8762. "BSD-3-Clause"
  8763. ],
  8764. "authors": [
  8765. {
  8766. "name": "Sebastian Bergmann",
  8767. "email": "sebastian@phpunit.de",
  8768. "role": "lead"
  8769. }
  8770. ],
  8771. "description": "The PHP Unit Testing framework.",
  8772. "homepage": "https://phpunit.de/",
  8773. "keywords": [
  8774. "phpunit",
  8775. "testing",
  8776. "xunit"
  8777. ],
  8778. "support": {
  8779. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  8780. "source": "https://github.com/sebastianbergmann/phpunit/tree/9.5.21"
  8781. },
  8782. "funding": [
  8783. {
  8784. "url": "https://phpunit.de/sponsors.html",
  8785. "type": "custom"
  8786. },
  8787. {
  8788. "url": "https://github.com/sebastianbergmann",
  8789. "type": "github"
  8790. }
  8791. ],
  8792. "time": "2022-06-19T12:14:25+00:00"
  8793. },
  8794. {
  8795. "name": "sebastian/cli-parser",
  8796. "version": "1.0.1",
  8797. "source": {
  8798. "type": "git",
  8799. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  8800. "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2"
  8801. },
  8802. "dist": {
  8803. "type": "zip",
  8804. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/442e7c7e687e42adc03470c7b668bc4b2402c0b2",
  8805. "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2",
  8806. "shasum": ""
  8807. },
  8808. "require": {
  8809. "php": ">=7.3"
  8810. },
  8811. "require-dev": {
  8812. "phpunit/phpunit": "^9.3"
  8813. },
  8814. "type": "library",
  8815. "extra": {
  8816. "branch-alias": {
  8817. "dev-master": "1.0-dev"
  8818. }
  8819. },
  8820. "autoload": {
  8821. "classmap": [
  8822. "src/"
  8823. ]
  8824. },
  8825. "notification-url": "https://packagist.org/downloads/",
  8826. "license": [
  8827. "BSD-3-Clause"
  8828. ],
  8829. "authors": [
  8830. {
  8831. "name": "Sebastian Bergmann",
  8832. "email": "sebastian@phpunit.de",
  8833. "role": "lead"
  8834. }
  8835. ],
  8836. "description": "Library for parsing CLI options",
  8837. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  8838. "support": {
  8839. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  8840. "source": "https://github.com/sebastianbergmann/cli-parser/tree/1.0.1"
  8841. },
  8842. "funding": [
  8843. {
  8844. "url": "https://github.com/sebastianbergmann",
  8845. "type": "github"
  8846. }
  8847. ],
  8848. "time": "2020-09-28T06:08:49+00:00"
  8849. },
  8850. {
  8851. "name": "sebastian/code-unit",
  8852. "version": "1.0.8",
  8853. "source": {
  8854. "type": "git",
  8855. "url": "https://github.com/sebastianbergmann/code-unit.git",
  8856. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120"
  8857. },
  8858. "dist": {
  8859. "type": "zip",
  8860. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/1fc9f64c0927627ef78ba436c9b17d967e68e120",
  8861. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120",
  8862. "shasum": ""
  8863. },
  8864. "require": {
  8865. "php": ">=7.3"
  8866. },
  8867. "require-dev": {
  8868. "phpunit/phpunit": "^9.3"
  8869. },
  8870. "type": "library",
  8871. "extra": {
  8872. "branch-alias": {
  8873. "dev-master": "1.0-dev"
  8874. }
  8875. },
  8876. "autoload": {
  8877. "classmap": [
  8878. "src/"
  8879. ]
  8880. },
  8881. "notification-url": "https://packagist.org/downloads/",
  8882. "license": [
  8883. "BSD-3-Clause"
  8884. ],
  8885. "authors": [
  8886. {
  8887. "name": "Sebastian Bergmann",
  8888. "email": "sebastian@phpunit.de",
  8889. "role": "lead"
  8890. }
  8891. ],
  8892. "description": "Collection of value objects that represent the PHP code units",
  8893. "homepage": "https://github.com/sebastianbergmann/code-unit",
  8894. "support": {
  8895. "issues": "https://github.com/sebastianbergmann/code-unit/issues",
  8896. "source": "https://github.com/sebastianbergmann/code-unit/tree/1.0.8"
  8897. },
  8898. "funding": [
  8899. {
  8900. "url": "https://github.com/sebastianbergmann",
  8901. "type": "github"
  8902. }
  8903. ],
  8904. "time": "2020-10-26T13:08:54+00:00"
  8905. },
  8906. {
  8907. "name": "sebastian/code-unit-reverse-lookup",
  8908. "version": "2.0.3",
  8909. "source": {
  8910. "type": "git",
  8911. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  8912. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5"
  8913. },
  8914. "dist": {
  8915. "type": "zip",
  8916. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  8917. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  8918. "shasum": ""
  8919. },
  8920. "require": {
  8921. "php": ">=7.3"
  8922. },
  8923. "require-dev": {
  8924. "phpunit/phpunit": "^9.3"
  8925. },
  8926. "type": "library",
  8927. "extra": {
  8928. "branch-alias": {
  8929. "dev-master": "2.0-dev"
  8930. }
  8931. },
  8932. "autoload": {
  8933. "classmap": [
  8934. "src/"
  8935. ]
  8936. },
  8937. "notification-url": "https://packagist.org/downloads/",
  8938. "license": [
  8939. "BSD-3-Clause"
  8940. ],
  8941. "authors": [
  8942. {
  8943. "name": "Sebastian Bergmann",
  8944. "email": "sebastian@phpunit.de"
  8945. }
  8946. ],
  8947. "description": "Looks up which function or method a line of code belongs to",
  8948. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  8949. "support": {
  8950. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  8951. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/2.0.3"
  8952. },
  8953. "funding": [
  8954. {
  8955. "url": "https://github.com/sebastianbergmann",
  8956. "type": "github"
  8957. }
  8958. ],
  8959. "time": "2020-09-28T05:30:19+00:00"
  8960. },
  8961. {
  8962. "name": "sebastian/comparator",
  8963. "version": "4.0.6",
  8964. "source": {
  8965. "type": "git",
  8966. "url": "https://github.com/sebastianbergmann/comparator.git",
  8967. "reference": "55f4261989e546dc112258c7a75935a81a7ce382"
  8968. },
  8969. "dist": {
  8970. "type": "zip",
  8971. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/55f4261989e546dc112258c7a75935a81a7ce382",
  8972. "reference": "55f4261989e546dc112258c7a75935a81a7ce382",
  8973. "shasum": ""
  8974. },
  8975. "require": {
  8976. "php": ">=7.3",
  8977. "sebastian/diff": "^4.0",
  8978. "sebastian/exporter": "^4.0"
  8979. },
  8980. "require-dev": {
  8981. "phpunit/phpunit": "^9.3"
  8982. },
  8983. "type": "library",
  8984. "extra": {
  8985. "branch-alias": {
  8986. "dev-master": "4.0-dev"
  8987. }
  8988. },
  8989. "autoload": {
  8990. "classmap": [
  8991. "src/"
  8992. ]
  8993. },
  8994. "notification-url": "https://packagist.org/downloads/",
  8995. "license": [
  8996. "BSD-3-Clause"
  8997. ],
  8998. "authors": [
  8999. {
  9000. "name": "Sebastian Bergmann",
  9001. "email": "sebastian@phpunit.de"
  9002. },
  9003. {
  9004. "name": "Jeff Welch",
  9005. "email": "whatthejeff@gmail.com"
  9006. },
  9007. {
  9008. "name": "Volker Dusch",
  9009. "email": "github@wallbash.com"
  9010. },
  9011. {
  9012. "name": "Bernhard Schussek",
  9013. "email": "bschussek@2bepublished.at"
  9014. }
  9015. ],
  9016. "description": "Provides the functionality to compare PHP values for equality",
  9017. "homepage": "https://github.com/sebastianbergmann/comparator",
  9018. "keywords": [
  9019. "comparator",
  9020. "compare",
  9021. "equality"
  9022. ],
  9023. "support": {
  9024. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  9025. "source": "https://github.com/sebastianbergmann/comparator/tree/4.0.6"
  9026. },
  9027. "funding": [
  9028. {
  9029. "url": "https://github.com/sebastianbergmann",
  9030. "type": "github"
  9031. }
  9032. ],
  9033. "time": "2020-10-26T15:49:45+00:00"
  9034. },
  9035. {
  9036. "name": "sebastian/complexity",
  9037. "version": "2.0.2",
  9038. "source": {
  9039. "type": "git",
  9040. "url": "https://github.com/sebastianbergmann/complexity.git",
  9041. "reference": "739b35e53379900cc9ac327b2147867b8b6efd88"
  9042. },
  9043. "dist": {
  9044. "type": "zip",
  9045. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/739b35e53379900cc9ac327b2147867b8b6efd88",
  9046. "reference": "739b35e53379900cc9ac327b2147867b8b6efd88",
  9047. "shasum": ""
  9048. },
  9049. "require": {
  9050. "nikic/php-parser": "^4.7",
  9051. "php": ">=7.3"
  9052. },
  9053. "require-dev": {
  9054. "phpunit/phpunit": "^9.3"
  9055. },
  9056. "type": "library",
  9057. "extra": {
  9058. "branch-alias": {
  9059. "dev-master": "2.0-dev"
  9060. }
  9061. },
  9062. "autoload": {
  9063. "classmap": [
  9064. "src/"
  9065. ]
  9066. },
  9067. "notification-url": "https://packagist.org/downloads/",
  9068. "license": [
  9069. "BSD-3-Clause"
  9070. ],
  9071. "authors": [
  9072. {
  9073. "name": "Sebastian Bergmann",
  9074. "email": "sebastian@phpunit.de",
  9075. "role": "lead"
  9076. }
  9077. ],
  9078. "description": "Library for calculating the complexity of PHP code units",
  9079. "homepage": "https://github.com/sebastianbergmann/complexity",
  9080. "support": {
  9081. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  9082. "source": "https://github.com/sebastianbergmann/complexity/tree/2.0.2"
  9083. },
  9084. "funding": [
  9085. {
  9086. "url": "https://github.com/sebastianbergmann",
  9087. "type": "github"
  9088. }
  9089. ],
  9090. "time": "2020-10-26T15:52:27+00:00"
  9091. },
  9092. {
  9093. "name": "sebastian/diff",
  9094. "version": "4.0.4",
  9095. "source": {
  9096. "type": "git",
  9097. "url": "https://github.com/sebastianbergmann/diff.git",
  9098. "reference": "3461e3fccc7cfdfc2720be910d3bd73c69be590d"
  9099. },
  9100. "dist": {
  9101. "type": "zip",
  9102. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/3461e3fccc7cfdfc2720be910d3bd73c69be590d",
  9103. "reference": "3461e3fccc7cfdfc2720be910d3bd73c69be590d",
  9104. "shasum": ""
  9105. },
  9106. "require": {
  9107. "php": ">=7.3"
  9108. },
  9109. "require-dev": {
  9110. "phpunit/phpunit": "^9.3",
  9111. "symfony/process": "^4.2 || ^5"
  9112. },
  9113. "type": "library",
  9114. "extra": {
  9115. "branch-alias": {
  9116. "dev-master": "4.0-dev"
  9117. }
  9118. },
  9119. "autoload": {
  9120. "classmap": [
  9121. "src/"
  9122. ]
  9123. },
  9124. "notification-url": "https://packagist.org/downloads/",
  9125. "license": [
  9126. "BSD-3-Clause"
  9127. ],
  9128. "authors": [
  9129. {
  9130. "name": "Sebastian Bergmann",
  9131. "email": "sebastian@phpunit.de"
  9132. },
  9133. {
  9134. "name": "Kore Nordmann",
  9135. "email": "mail@kore-nordmann.de"
  9136. }
  9137. ],
  9138. "description": "Diff implementation",
  9139. "homepage": "https://github.com/sebastianbergmann/diff",
  9140. "keywords": [
  9141. "diff",
  9142. "udiff",
  9143. "unidiff",
  9144. "unified diff"
  9145. ],
  9146. "support": {
  9147. "issues": "https://github.com/sebastianbergmann/diff/issues",
  9148. "source": "https://github.com/sebastianbergmann/diff/tree/4.0.4"
  9149. },
  9150. "funding": [
  9151. {
  9152. "url": "https://github.com/sebastianbergmann",
  9153. "type": "github"
  9154. }
  9155. ],
  9156. "time": "2020-10-26T13:10:38+00:00"
  9157. },
  9158. {
  9159. "name": "sebastian/environment",
  9160. "version": "5.1.4",
  9161. "source": {
  9162. "type": "git",
  9163. "url": "https://github.com/sebastianbergmann/environment.git",
  9164. "reference": "1b5dff7bb151a4db11d49d90e5408e4e938270f7"
  9165. },
  9166. "dist": {
  9167. "type": "zip",
  9168. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/1b5dff7bb151a4db11d49d90e5408e4e938270f7",
  9169. "reference": "1b5dff7bb151a4db11d49d90e5408e4e938270f7",
  9170. "shasum": ""
  9171. },
  9172. "require": {
  9173. "php": ">=7.3"
  9174. },
  9175. "require-dev": {
  9176. "phpunit/phpunit": "^9.3"
  9177. },
  9178. "suggest": {
  9179. "ext-posix": "*"
  9180. },
  9181. "type": "library",
  9182. "extra": {
  9183. "branch-alias": {
  9184. "dev-master": "5.1-dev"
  9185. }
  9186. },
  9187. "autoload": {
  9188. "classmap": [
  9189. "src/"
  9190. ]
  9191. },
  9192. "notification-url": "https://packagist.org/downloads/",
  9193. "license": [
  9194. "BSD-3-Clause"
  9195. ],
  9196. "authors": [
  9197. {
  9198. "name": "Sebastian Bergmann",
  9199. "email": "sebastian@phpunit.de"
  9200. }
  9201. ],
  9202. "description": "Provides functionality to handle HHVM/PHP environments",
  9203. "homepage": "http://www.github.com/sebastianbergmann/environment",
  9204. "keywords": [
  9205. "Xdebug",
  9206. "environment",
  9207. "hhvm"
  9208. ],
  9209. "support": {
  9210. "issues": "https://github.com/sebastianbergmann/environment/issues",
  9211. "source": "https://github.com/sebastianbergmann/environment/tree/5.1.4"
  9212. },
  9213. "funding": [
  9214. {
  9215. "url": "https://github.com/sebastianbergmann",
  9216. "type": "github"
  9217. }
  9218. ],
  9219. "time": "2022-04-03T09:37:03+00:00"
  9220. },
  9221. {
  9222. "name": "sebastian/exporter",
  9223. "version": "4.0.4",
  9224. "source": {
  9225. "type": "git",
  9226. "url": "https://github.com/sebastianbergmann/exporter.git",
  9227. "reference": "65e8b7db476c5dd267e65eea9cab77584d3cfff9"
  9228. },
  9229. "dist": {
  9230. "type": "zip",
  9231. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/65e8b7db476c5dd267e65eea9cab77584d3cfff9",
  9232. "reference": "65e8b7db476c5dd267e65eea9cab77584d3cfff9",
  9233. "shasum": ""
  9234. },
  9235. "require": {
  9236. "php": ">=7.3",
  9237. "sebastian/recursion-context": "^4.0"
  9238. },
  9239. "require-dev": {
  9240. "ext-mbstring": "*",
  9241. "phpunit/phpunit": "^9.3"
  9242. },
  9243. "type": "library",
  9244. "extra": {
  9245. "branch-alias": {
  9246. "dev-master": "4.0-dev"
  9247. }
  9248. },
  9249. "autoload": {
  9250. "classmap": [
  9251. "src/"
  9252. ]
  9253. },
  9254. "notification-url": "https://packagist.org/downloads/",
  9255. "license": [
  9256. "BSD-3-Clause"
  9257. ],
  9258. "authors": [
  9259. {
  9260. "name": "Sebastian Bergmann",
  9261. "email": "sebastian@phpunit.de"
  9262. },
  9263. {
  9264. "name": "Jeff Welch",
  9265. "email": "whatthejeff@gmail.com"
  9266. },
  9267. {
  9268. "name": "Volker Dusch",
  9269. "email": "github@wallbash.com"
  9270. },
  9271. {
  9272. "name": "Adam Harvey",
  9273. "email": "aharvey@php.net"
  9274. },
  9275. {
  9276. "name": "Bernhard Schussek",
  9277. "email": "bschussek@gmail.com"
  9278. }
  9279. ],
  9280. "description": "Provides the functionality to export PHP variables for visualization",
  9281. "homepage": "https://www.github.com/sebastianbergmann/exporter",
  9282. "keywords": [
  9283. "export",
  9284. "exporter"
  9285. ],
  9286. "support": {
  9287. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  9288. "source": "https://github.com/sebastianbergmann/exporter/tree/4.0.4"
  9289. },
  9290. "funding": [
  9291. {
  9292. "url": "https://github.com/sebastianbergmann",
  9293. "type": "github"
  9294. }
  9295. ],
  9296. "time": "2021-11-11T14:18:36+00:00"
  9297. },
  9298. {
  9299. "name": "sebastian/global-state",
  9300. "version": "5.0.5",
  9301. "source": {
  9302. "type": "git",
  9303. "url": "https://github.com/sebastianbergmann/global-state.git",
  9304. "reference": "0ca8db5a5fc9c8646244e629625ac486fa286bf2"
  9305. },
  9306. "dist": {
  9307. "type": "zip",
  9308. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/0ca8db5a5fc9c8646244e629625ac486fa286bf2",
  9309. "reference": "0ca8db5a5fc9c8646244e629625ac486fa286bf2",
  9310. "shasum": ""
  9311. },
  9312. "require": {
  9313. "php": ">=7.3",
  9314. "sebastian/object-reflector": "^2.0",
  9315. "sebastian/recursion-context": "^4.0"
  9316. },
  9317. "require-dev": {
  9318. "ext-dom": "*",
  9319. "phpunit/phpunit": "^9.3"
  9320. },
  9321. "suggest": {
  9322. "ext-uopz": "*"
  9323. },
  9324. "type": "library",
  9325. "extra": {
  9326. "branch-alias": {
  9327. "dev-master": "5.0-dev"
  9328. }
  9329. },
  9330. "autoload": {
  9331. "classmap": [
  9332. "src/"
  9333. ]
  9334. },
  9335. "notification-url": "https://packagist.org/downloads/",
  9336. "license": [
  9337. "BSD-3-Clause"
  9338. ],
  9339. "authors": [
  9340. {
  9341. "name": "Sebastian Bergmann",
  9342. "email": "sebastian@phpunit.de"
  9343. }
  9344. ],
  9345. "description": "Snapshotting of global state",
  9346. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  9347. "keywords": [
  9348. "global state"
  9349. ],
  9350. "support": {
  9351. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  9352. "source": "https://github.com/sebastianbergmann/global-state/tree/5.0.5"
  9353. },
  9354. "funding": [
  9355. {
  9356. "url": "https://github.com/sebastianbergmann",
  9357. "type": "github"
  9358. }
  9359. ],
  9360. "time": "2022-02-14T08:28:10+00:00"
  9361. },
  9362. {
  9363. "name": "sebastian/lines-of-code",
  9364. "version": "1.0.3",
  9365. "source": {
  9366. "type": "git",
  9367. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  9368. "reference": "c1c2e997aa3146983ed888ad08b15470a2e22ecc"
  9369. },
  9370. "dist": {
  9371. "type": "zip",
  9372. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/c1c2e997aa3146983ed888ad08b15470a2e22ecc",
  9373. "reference": "c1c2e997aa3146983ed888ad08b15470a2e22ecc",
  9374. "shasum": ""
  9375. },
  9376. "require": {
  9377. "nikic/php-parser": "^4.6",
  9378. "php": ">=7.3"
  9379. },
  9380. "require-dev": {
  9381. "phpunit/phpunit": "^9.3"
  9382. },
  9383. "type": "library",
  9384. "extra": {
  9385. "branch-alias": {
  9386. "dev-master": "1.0-dev"
  9387. }
  9388. },
  9389. "autoload": {
  9390. "classmap": [
  9391. "src/"
  9392. ]
  9393. },
  9394. "notification-url": "https://packagist.org/downloads/",
  9395. "license": [
  9396. "BSD-3-Clause"
  9397. ],
  9398. "authors": [
  9399. {
  9400. "name": "Sebastian Bergmann",
  9401. "email": "sebastian@phpunit.de",
  9402. "role": "lead"
  9403. }
  9404. ],
  9405. "description": "Library for counting the lines of code in PHP source code",
  9406. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  9407. "support": {
  9408. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  9409. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/1.0.3"
  9410. },
  9411. "funding": [
  9412. {
  9413. "url": "https://github.com/sebastianbergmann",
  9414. "type": "github"
  9415. }
  9416. ],
  9417. "time": "2020-11-28T06:42:11+00:00"
  9418. },
  9419. {
  9420. "name": "sebastian/object-enumerator",
  9421. "version": "4.0.4",
  9422. "source": {
  9423. "type": "git",
  9424. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  9425. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71"
  9426. },
  9427. "dist": {
  9428. "type": "zip",
  9429. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/5c9eeac41b290a3712d88851518825ad78f45c71",
  9430. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71",
  9431. "shasum": ""
  9432. },
  9433. "require": {
  9434. "php": ">=7.3",
  9435. "sebastian/object-reflector": "^2.0",
  9436. "sebastian/recursion-context": "^4.0"
  9437. },
  9438. "require-dev": {
  9439. "phpunit/phpunit": "^9.3"
  9440. },
  9441. "type": "library",
  9442. "extra": {
  9443. "branch-alias": {
  9444. "dev-master": "4.0-dev"
  9445. }
  9446. },
  9447. "autoload": {
  9448. "classmap": [
  9449. "src/"
  9450. ]
  9451. },
  9452. "notification-url": "https://packagist.org/downloads/",
  9453. "license": [
  9454. "BSD-3-Clause"
  9455. ],
  9456. "authors": [
  9457. {
  9458. "name": "Sebastian Bergmann",
  9459. "email": "sebastian@phpunit.de"
  9460. }
  9461. ],
  9462. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  9463. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  9464. "support": {
  9465. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  9466. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/4.0.4"
  9467. },
  9468. "funding": [
  9469. {
  9470. "url": "https://github.com/sebastianbergmann",
  9471. "type": "github"
  9472. }
  9473. ],
  9474. "time": "2020-10-26T13:12:34+00:00"
  9475. },
  9476. {
  9477. "name": "sebastian/object-reflector",
  9478. "version": "2.0.4",
  9479. "source": {
  9480. "type": "git",
  9481. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  9482. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7"
  9483. },
  9484. "dist": {
  9485. "type": "zip",
  9486. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  9487. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  9488. "shasum": ""
  9489. },
  9490. "require": {
  9491. "php": ">=7.3"
  9492. },
  9493. "require-dev": {
  9494. "phpunit/phpunit": "^9.3"
  9495. },
  9496. "type": "library",
  9497. "extra": {
  9498. "branch-alias": {
  9499. "dev-master": "2.0-dev"
  9500. }
  9501. },
  9502. "autoload": {
  9503. "classmap": [
  9504. "src/"
  9505. ]
  9506. },
  9507. "notification-url": "https://packagist.org/downloads/",
  9508. "license": [
  9509. "BSD-3-Clause"
  9510. ],
  9511. "authors": [
  9512. {
  9513. "name": "Sebastian Bergmann",
  9514. "email": "sebastian@phpunit.de"
  9515. }
  9516. ],
  9517. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  9518. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  9519. "support": {
  9520. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  9521. "source": "https://github.com/sebastianbergmann/object-reflector/tree/2.0.4"
  9522. },
  9523. "funding": [
  9524. {
  9525. "url": "https://github.com/sebastianbergmann",
  9526. "type": "github"
  9527. }
  9528. ],
  9529. "time": "2020-10-26T13:14:26+00:00"
  9530. },
  9531. {
  9532. "name": "sebastian/recursion-context",
  9533. "version": "4.0.4",
  9534. "source": {
  9535. "type": "git",
  9536. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  9537. "reference": "cd9d8cf3c5804de4341c283ed787f099f5506172"
  9538. },
  9539. "dist": {
  9540. "type": "zip",
  9541. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/cd9d8cf3c5804de4341c283ed787f099f5506172",
  9542. "reference": "cd9d8cf3c5804de4341c283ed787f099f5506172",
  9543. "shasum": ""
  9544. },
  9545. "require": {
  9546. "php": ">=7.3"
  9547. },
  9548. "require-dev": {
  9549. "phpunit/phpunit": "^9.3"
  9550. },
  9551. "type": "library",
  9552. "extra": {
  9553. "branch-alias": {
  9554. "dev-master": "4.0-dev"
  9555. }
  9556. },
  9557. "autoload": {
  9558. "classmap": [
  9559. "src/"
  9560. ]
  9561. },
  9562. "notification-url": "https://packagist.org/downloads/",
  9563. "license": [
  9564. "BSD-3-Clause"
  9565. ],
  9566. "authors": [
  9567. {
  9568. "name": "Sebastian Bergmann",
  9569. "email": "sebastian@phpunit.de"
  9570. },
  9571. {
  9572. "name": "Jeff Welch",
  9573. "email": "whatthejeff@gmail.com"
  9574. },
  9575. {
  9576. "name": "Adam Harvey",
  9577. "email": "aharvey@php.net"
  9578. }
  9579. ],
  9580. "description": "Provides functionality to recursively process PHP variables",
  9581. "homepage": "http://www.github.com/sebastianbergmann/recursion-context",
  9582. "support": {
  9583. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  9584. "source": "https://github.com/sebastianbergmann/recursion-context/tree/4.0.4"
  9585. },
  9586. "funding": [
  9587. {
  9588. "url": "https://github.com/sebastianbergmann",
  9589. "type": "github"
  9590. }
  9591. ],
  9592. "time": "2020-10-26T13:17:30+00:00"
  9593. },
  9594. {
  9595. "name": "sebastian/resource-operations",
  9596. "version": "3.0.3",
  9597. "source": {
  9598. "type": "git",
  9599. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  9600. "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8"
  9601. },
  9602. "dist": {
  9603. "type": "zip",
  9604. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8",
  9605. "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8",
  9606. "shasum": ""
  9607. },
  9608. "require": {
  9609. "php": ">=7.3"
  9610. },
  9611. "require-dev": {
  9612. "phpunit/phpunit": "^9.0"
  9613. },
  9614. "type": "library",
  9615. "extra": {
  9616. "branch-alias": {
  9617. "dev-master": "3.0-dev"
  9618. }
  9619. },
  9620. "autoload": {
  9621. "classmap": [
  9622. "src/"
  9623. ]
  9624. },
  9625. "notification-url": "https://packagist.org/downloads/",
  9626. "license": [
  9627. "BSD-3-Clause"
  9628. ],
  9629. "authors": [
  9630. {
  9631. "name": "Sebastian Bergmann",
  9632. "email": "sebastian@phpunit.de"
  9633. }
  9634. ],
  9635. "description": "Provides a list of PHP built-in functions that operate on resources",
  9636. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  9637. "support": {
  9638. "issues": "https://github.com/sebastianbergmann/resource-operations/issues",
  9639. "source": "https://github.com/sebastianbergmann/resource-operations/tree/3.0.3"
  9640. },
  9641. "funding": [
  9642. {
  9643. "url": "https://github.com/sebastianbergmann",
  9644. "type": "github"
  9645. }
  9646. ],
  9647. "time": "2020-09-28T06:45:17+00:00"
  9648. },
  9649. {
  9650. "name": "sebastian/type",
  9651. "version": "3.0.0",
  9652. "source": {
  9653. "type": "git",
  9654. "url": "https://github.com/sebastianbergmann/type.git",
  9655. "reference": "b233b84bc4465aff7b57cf1c4bc75c86d00d6dad"
  9656. },
  9657. "dist": {
  9658. "type": "zip",
  9659. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/b233b84bc4465aff7b57cf1c4bc75c86d00d6dad",
  9660. "reference": "b233b84bc4465aff7b57cf1c4bc75c86d00d6dad",
  9661. "shasum": ""
  9662. },
  9663. "require": {
  9664. "php": ">=7.3"
  9665. },
  9666. "require-dev": {
  9667. "phpunit/phpunit": "^9.5"
  9668. },
  9669. "type": "library",
  9670. "extra": {
  9671. "branch-alias": {
  9672. "dev-master": "3.0-dev"
  9673. }
  9674. },
  9675. "autoload": {
  9676. "classmap": [
  9677. "src/"
  9678. ]
  9679. },
  9680. "notification-url": "https://packagist.org/downloads/",
  9681. "license": [
  9682. "BSD-3-Clause"
  9683. ],
  9684. "authors": [
  9685. {
  9686. "name": "Sebastian Bergmann",
  9687. "email": "sebastian@phpunit.de",
  9688. "role": "lead"
  9689. }
  9690. ],
  9691. "description": "Collection of value objects that represent the types of the PHP type system",
  9692. "homepage": "https://github.com/sebastianbergmann/type",
  9693. "support": {
  9694. "issues": "https://github.com/sebastianbergmann/type/issues",
  9695. "source": "https://github.com/sebastianbergmann/type/tree/3.0.0"
  9696. },
  9697. "funding": [
  9698. {
  9699. "url": "https://github.com/sebastianbergmann",
  9700. "type": "github"
  9701. }
  9702. ],
  9703. "time": "2022-03-15T09:54:48+00:00"
  9704. },
  9705. {
  9706. "name": "sebastian/version",
  9707. "version": "3.0.2",
  9708. "source": {
  9709. "type": "git",
  9710. "url": "https://github.com/sebastianbergmann/version.git",
  9711. "reference": "c6c1022351a901512170118436c764e473f6de8c"
  9712. },
  9713. "dist": {
  9714. "type": "zip",
  9715. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c6c1022351a901512170118436c764e473f6de8c",
  9716. "reference": "c6c1022351a901512170118436c764e473f6de8c",
  9717. "shasum": ""
  9718. },
  9719. "require": {
  9720. "php": ">=7.3"
  9721. },
  9722. "type": "library",
  9723. "extra": {
  9724. "branch-alias": {
  9725. "dev-master": "3.0-dev"
  9726. }
  9727. },
  9728. "autoload": {
  9729. "classmap": [
  9730. "src/"
  9731. ]
  9732. },
  9733. "notification-url": "https://packagist.org/downloads/",
  9734. "license": [
  9735. "BSD-3-Clause"
  9736. ],
  9737. "authors": [
  9738. {
  9739. "name": "Sebastian Bergmann",
  9740. "email": "sebastian@phpunit.de",
  9741. "role": "lead"
  9742. }
  9743. ],
  9744. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  9745. "homepage": "https://github.com/sebastianbergmann/version",
  9746. "support": {
  9747. "issues": "https://github.com/sebastianbergmann/version/issues",
  9748. "source": "https://github.com/sebastianbergmann/version/tree/3.0.2"
  9749. },
  9750. "funding": [
  9751. {
  9752. "url": "https://github.com/sebastianbergmann",
  9753. "type": "github"
  9754. }
  9755. ],
  9756. "time": "2020-09-28T06:39:44+00:00"
  9757. },
  9758. {
  9759. "name": "theseer/tokenizer",
  9760. "version": "1.2.1",
  9761. "source": {
  9762. "type": "git",
  9763. "url": "https://github.com/theseer/tokenizer.git",
  9764. "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e"
  9765. },
  9766. "dist": {
  9767. "type": "zip",
  9768. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/34a41e998c2183e22995f158c581e7b5e755ab9e",
  9769. "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e",
  9770. "shasum": ""
  9771. },
  9772. "require": {
  9773. "ext-dom": "*",
  9774. "ext-tokenizer": "*",
  9775. "ext-xmlwriter": "*",
  9776. "php": "^7.2 || ^8.0"
  9777. },
  9778. "type": "library",
  9779. "autoload": {
  9780. "classmap": [
  9781. "src/"
  9782. ]
  9783. },
  9784. "notification-url": "https://packagist.org/downloads/",
  9785. "license": [
  9786. "BSD-3-Clause"
  9787. ],
  9788. "authors": [
  9789. {
  9790. "name": "Arne Blankerts",
  9791. "email": "arne@blankerts.de",
  9792. "role": "Developer"
  9793. }
  9794. ],
  9795. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  9796. "support": {
  9797. "issues": "https://github.com/theseer/tokenizer/issues",
  9798. "source": "https://github.com/theseer/tokenizer/tree/1.2.1"
  9799. },
  9800. "funding": [
  9801. {
  9802. "url": "https://github.com/theseer",
  9803. "type": "github"
  9804. }
  9805. ],
  9806. "time": "2021-07-28T10:34:58+00:00"
  9807. }
  9808. ],
  9809. "aliases": [],
  9810. "minimum-stability": "dev",
  9811. "stability-flags": {
  9812. "earnp/laravel-google-authenticator": 20,
  9813. "sc0vu/web3.php": 20
  9814. },
  9815. "prefer-stable": true,
  9816. "prefer-lowest": false,
  9817. "platform": {
  9818. "php": "^7.3|^8.0"
  9819. },
  9820. "platform-dev": [],
  9821. "plugin-api-version": "2.0.0"
  9822. }