composer.lock 351 KB

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