composer.lock 472 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546105471054810549105501055110552105531055410555105561055710558105591056010561105621056310564105651056610567105681056910570105711057210573105741057510576105771057810579105801058110582105831058410585105861058710588105891059010591105921059310594105951059610597105981059910600106011060210603106041060510606106071060810609106101061110612106131061410615106161061710618106191062010621106221062310624106251062610627106281062910630106311063210633106341063510636106371063810639106401064110642106431064410645106461064710648106491065010651106521065310654106551065610657106581065910660106611066210663106641066510666106671066810669106701067110672106731067410675106761067710678106791068010681106821068310684106851068610687106881068910690106911069210693106941069510696106971069810699107001070110702107031070410705107061070710708107091071010711107121071310714107151071610717107181071910720107211072210723107241072510726107271072810729107301073110732107331073410735107361073710738107391074010741107421074310744107451074610747107481074910750107511075210753107541075510756107571075810759107601076110762107631076410765107661076710768107691077010771107721077310774107751077610777107781077910780107811078210783107841078510786107871078810789107901079110792107931079410795107961079710798107991080010801108021080310804108051080610807108081080910810108111081210813108141081510816108171081810819108201082110822108231082410825108261082710828108291083010831108321083310834108351083610837108381083910840108411084210843108441084510846108471084810849108501085110852108531085410855108561085710858108591086010861108621086310864108651086610867108681086910870108711087210873108741087510876108771087810879108801088110882108831088410885108861088710888108891089010891108921089310894108951089610897108981089910900109011090210903109041090510906109071090810909109101091110912109131091410915109161091710918109191092010921109221092310924109251092610927109281092910930109311093210933109341093510936109371093810939109401094110942109431094410945109461094710948109491095010951109521095310954109551095610957109581095910960109611096210963109641096510966109671096810969109701097110972109731097410975109761097710978109791098010981109821098310984109851098610987109881098910990109911099210993109941099510996109971099810999110001100111002110031100411005110061100711008110091101011011110121101311014110151101611017110181101911020110211102211023110241102511026110271102811029110301103111032110331103411035110361103711038110391104011041110421104311044110451104611047110481104911050110511105211053110541105511056110571105811059110601106111062110631106411065110661106711068110691107011071110721107311074110751107611077110781107911080110811108211083110841108511086110871108811089110901109111092110931109411095110961109711098110991110011101111021110311104111051110611107111081110911110111111111211113111141111511116111171111811119111201112111122111231112411125111261112711128111291113011131111321113311134111351113611137111381113911140111411114211143111441114511146111471114811149111501115111152111531115411155111561115711158111591116011161111621116311164111651116611167111681116911170111711117211173111741117511176111771117811179111801118111182111831118411185111861118711188111891119011191111921119311194111951119611197111981119911200112011120211203112041120511206112071120811209112101121111212112131121411215112161121711218112191122011221112221122311224112251122611227112281122911230112311123211233112341123511236112371123811239112401124111242112431124411245112461124711248112491125011251112521125311254112551125611257112581125911260112611126211263112641126511266112671126811269112701127111272112731127411275112761127711278112791128011281112821128311284112851128611287112881128911290112911129211293112941129511296112971129811299113001130111302113031130411305113061130711308113091131011311113121131311314113151131611317113181131911320113211132211323113241132511326113271132811329113301133111332113331133411335113361133711338113391134011341113421134311344113451134611347113481134911350113511135211353113541135511356113571135811359113601136111362113631136411365113661136711368113691137011371113721137311374113751137611377113781137911380113811138211383113841138511386113871138811389113901139111392113931139411395113961139711398113991140011401114021140311404114051140611407114081140911410114111141211413114141141511416114171141811419114201142111422114231142411425114261142711428114291143011431114321143311434114351143611437114381143911440114411144211443114441144511446114471144811449114501145111452114531145411455114561145711458114591146011461114621146311464114651146611467114681146911470114711147211473114741147511476114771147811479114801148111482114831148411485114861148711488114891149011491114921149311494114951149611497114981149911500115011150211503115041150511506115071150811509115101151111512115131151411515115161151711518115191152011521115221152311524115251152611527115281152911530115311153211533115341153511536115371153811539115401154111542115431154411545115461154711548115491155011551115521155311554115551155611557115581155911560115611156211563115641156511566115671156811569115701157111572115731157411575115761157711578115791158011581115821158311584115851158611587115881158911590115911159211593115941159511596115971159811599116001160111602116031160411605116061160711608116091161011611116121161311614116151161611617116181161911620116211162211623116241162511626116271162811629116301163111632116331163411635116361163711638116391164011641116421164311644116451164611647116481164911650116511165211653116541165511656116571165811659116601166111662116631166411665116661166711668116691167011671116721167311674116751167611677116781167911680116811168211683116841168511686116871168811689116901169111692116931169411695116961169711698116991170011701117021170311704117051170611707117081170911710117111171211713117141171511716117171171811719117201172111722117231172411725117261172711728117291173011731117321173311734117351173611737117381173911740117411174211743117441174511746117471174811749117501175111752117531175411755117561175711758117591176011761117621176311764117651176611767117681176911770117711177211773117741177511776117771177811779117801178111782117831178411785117861178711788117891179011791117921179311794117951179611797117981179911800118011180211803118041180511806118071180811809118101181111812118131181411815118161181711818118191182011821118221182311824118251182611827118281182911830118311183211833118341183511836118371183811839118401184111842118431184411845118461184711848118491185011851118521185311854118551185611857118581185911860118611186211863118641186511866118671186811869118701187111872118731187411875118761187711878118791188011881118821188311884118851188611887118881188911890118911189211893118941189511896118971189811899119001190111902119031190411905119061190711908119091191011911119121191311914119151191611917119181191911920119211192211923119241192511926119271192811929119301193111932119331193411935119361193711938119391194011941119421194311944119451194611947119481194911950119511195211953119541195511956119571195811959119601196111962119631196411965119661196711968119691197011971119721197311974119751197611977119781197911980119811198211983119841198511986119871198811989119901199111992119931199411995119961199711998119991200012001120021200312004120051200612007120081200912010120111201212013120141201512016120171201812019120201202112022120231202412025120261202712028120291203012031120321203312034120351203612037120381203912040120411204212043120441204512046120471204812049120501205112052120531205412055120561205712058120591206012061120621206312064120651206612067120681206912070120711207212073120741207512076120771207812079120801208112082120831208412085120861208712088120891209012091120921209312094120951209612097120981209912100121011210212103121041210512106121071210812109121101211112112121131211412115121161211712118121191212012121121221212312124121251212612127121281212912130121311213212133121341213512136121371213812139121401214112142121431214412145121461214712148121491215012151121521215312154121551215612157121581215912160121611216212163121641216512166121671216812169121701217112172121731217412175121761217712178121791218012181121821218312184121851218612187121881218912190121911219212193121941219512196121971219812199122001220112202122031220412205122061220712208122091221012211122121221312214122151221612217122181221912220122211222212223122241222512226122271222812229122301223112232122331223412235122361223712238122391224012241122421224312244122451224612247122481224912250122511225212253122541225512256122571225812259122601226112262122631226412265122661226712268122691227012271122721227312274122751227612277122781227912280122811228212283122841228512286122871228812289122901229112292122931229412295122961229712298122991230012301123021230312304123051230612307123081230912310123111231212313123141231512316123171231812319123201232112322123231232412325123261232712328123291233012331123321233312334123351233612337123381233912340123411234212343123441234512346123471234812349123501235112352123531235412355123561235712358123591236012361123621236312364123651236612367123681236912370123711237212373123741237512376123771237812379123801238112382123831238412385123861238712388123891239012391123921239312394123951239612397123981239912400124011240212403124041240512406124071240812409124101241112412124131241412415124161241712418124191242012421124221242312424124251242612427124281242912430124311243212433124341243512436124371243812439124401244112442124431244412445124461244712448124491245012451124521245312454124551245612457124581245912460124611246212463124641246512466124671246812469124701247112472124731247412475124761247712478124791248012481124821248312484124851248612487124881248912490124911249212493124941249512496124971249812499125001250112502125031250412505125061250712508125091251012511125121251312514125151251612517125181251912520125211252212523125241252512526125271252812529125301253112532125331253412535125361253712538125391254012541125421254312544125451254612547125481254912550125511255212553125541255512556125571255812559125601256112562125631256412565125661256712568125691257012571125721257312574125751257612577125781257912580125811258212583125841258512586125871258812589125901259112592125931259412595125961259712598125991260012601126021260312604126051260612607126081260912610126111261212613126141261512616126171261812619126201262112622126231262412625126261262712628126291263012631126321263312634126351263612637126381263912640126411264212643126441264512646126471264812649126501265112652126531265412655126561265712658126591266012661126621266312664126651266612667126681266912670126711267212673126741267512676126771267812679126801268112682126831268412685126861268712688126891269012691126921269312694126951269612697126981269912700127011270212703127041270512706127071270812709127101271112712127131271412715127161271712718127191272012721127221272312724127251272612727127281272912730127311273212733127341273512736127371273812739127401274112742127431274412745127461274712748127491275012751127521275312754127551275612757127581275912760127611276212763127641276512766127671276812769127701277112772127731277412775127761277712778127791278012781127821278312784127851278612787127881278912790127911279212793127941279512796127971279812799128001280112802128031280412805128061280712808128091281012811128121281312814128151281612817128181281912820128211282212823128241282512826128271282812829128301283112832128331283412835128361283712838128391284012841128421284312844128451284612847128481284912850128511285212853128541285512856128571285812859128601286112862128631286412865128661286712868128691287012871128721287312874128751287612877128781287912880128811288212883128841288512886128871288812889128901289112892128931289412895128961289712898128991290012901129021290312904129051290612907129081290912910129111291212913129141291512916129171291812919129201292112922129231292412925129261292712928129291293012931129321293312934129351293612937129381293912940129411294212943129441294512946129471294812949129501295112952129531295412955129561295712958129591296012961129621296312964129651296612967129681296912970129711297212973129741297512976129771297812979129801298112982129831298412985129861298712988129891299012991129921299312994129951299612997129981299913000130011300213003130041300513006130071300813009130101301113012130131301413015130161301713018130191302013021130221302313024130251302613027130281302913030130311303213033130341303513036130371303813039130401304113042130431304413045130461304713048130491305013051130521305313054130551305613057130581305913060130611306213063130641306513066130671306813069130701307113072130731307413075130761307713078130791308013081130821308313084130851308613087130881308913090130911309213093130941309513096130971309813099131001310113102131031310413105131061310713108131091311013111131121311313114131151311613117131181311913120131211312213123131241312513126131271312813129131301313113132131331313413135131361313713138131391314013141131421314313144131451314613147131481314913150131511315213153131541315513156131571315813159131601316113162131631316413165131661316713168131691317013171131721317313174131751317613177131781317913180131811318213183131841318513186131871318813189131901319113192131931319413195131961319713198131991320013201132021320313204132051320613207132081320913210132111321213213132141321513216132171321813219132201322113222132231322413225132261322713228132291323013231132321323313234
  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": "dd6df121d74b0e496d3b6a07309ed021",
  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": "aws/aws-crt-php",
  67. "version": "v1.0.2",
  68. "source": {
  69. "type": "git",
  70. "url": "https://github.com/awslabs/aws-crt-php.git",
  71. "reference": "3942776a8c99209908ee0b287746263725685732"
  72. },
  73. "dist": {
  74. "type": "zip",
  75. "url": "https://api.github.com/repos/awslabs/aws-crt-php/zipball/3942776a8c99209908ee0b287746263725685732",
  76. "reference": "3942776a8c99209908ee0b287746263725685732",
  77. "shasum": ""
  78. },
  79. "require": {
  80. "php": ">=5.5"
  81. },
  82. "require-dev": {
  83. "phpunit/phpunit": "^4.8.35|^5.4.3"
  84. },
  85. "type": "library",
  86. "autoload": {
  87. "classmap": [
  88. "src/"
  89. ]
  90. },
  91. "notification-url": "https://packagist.org/downloads/",
  92. "license": [
  93. "Apache-2.0"
  94. ],
  95. "authors": [
  96. {
  97. "name": "AWS SDK Common Runtime Team",
  98. "email": "aws-sdk-common-runtime@amazon.com"
  99. }
  100. ],
  101. "description": "AWS Common Runtime for PHP",
  102. "homepage": "http://aws.amazon.com/sdkforphp",
  103. "keywords": [
  104. "amazon",
  105. "aws",
  106. "crt",
  107. "sdk"
  108. ],
  109. "support": {
  110. "issues": "https://github.com/awslabs/aws-crt-php/issues",
  111. "source": "https://github.com/awslabs/aws-crt-php/tree/v1.0.2"
  112. },
  113. "time": "2021-09-03T22:57:30+00:00"
  114. },
  115. {
  116. "name": "aws/aws-sdk-php",
  117. "version": "3.253.0",
  118. "source": {
  119. "type": "git",
  120. "url": "https://github.com/aws/aws-sdk-php.git",
  121. "reference": "1fc9d166dd8ee7c2a187cf8f3ed9342863208865"
  122. },
  123. "dist": {
  124. "type": "zip",
  125. "url": "https://api.github.com/repos/aws/aws-sdk-php/zipball/1fc9d166dd8ee7c2a187cf8f3ed9342863208865",
  126. "reference": "1fc9d166dd8ee7c2a187cf8f3ed9342863208865",
  127. "shasum": ""
  128. },
  129. "require": {
  130. "aws/aws-crt-php": "^1.0.2",
  131. "ext-json": "*",
  132. "ext-pcre": "*",
  133. "ext-simplexml": "*",
  134. "guzzlehttp/guzzle": "^6.5.8 || ^7.4.5",
  135. "guzzlehttp/promises": "^1.4.0",
  136. "guzzlehttp/psr7": "^1.8.5 || ^2.3",
  137. "mtdowling/jmespath.php": "^2.6",
  138. "php": ">=5.5"
  139. },
  140. "require-dev": {
  141. "andrewsville/php-token-reflection": "^1.4",
  142. "aws/aws-php-sns-message-validator": "~1.0",
  143. "behat/behat": "~3.0",
  144. "composer/composer": "^1.10.22",
  145. "dms/phpunit-arraysubset-asserts": "^0.4.0",
  146. "doctrine/cache": "~1.4",
  147. "ext-dom": "*",
  148. "ext-openssl": "*",
  149. "ext-pcntl": "*",
  150. "ext-sockets": "*",
  151. "nette/neon": "^2.3",
  152. "paragonie/random_compat": ">= 2",
  153. "phpunit/phpunit": "^4.8.35 || ^5.6.3 || ^9.5",
  154. "psr/cache": "^1.0",
  155. "psr/simple-cache": "^1.0",
  156. "sebastian/comparator": "^1.2.3 || ^4.0",
  157. "yoast/phpunit-polyfills": "^1.0"
  158. },
  159. "suggest": {
  160. "aws/aws-php-sns-message-validator": "To validate incoming SNS notifications",
  161. "doctrine/cache": "To use the DoctrineCacheAdapter",
  162. "ext-curl": "To send requests using cURL",
  163. "ext-openssl": "Allows working with CloudFront private distributions and verifying received SNS messages",
  164. "ext-sockets": "To use client-side monitoring"
  165. },
  166. "type": "library",
  167. "extra": {
  168. "branch-alias": {
  169. "dev-master": "3.0-dev"
  170. }
  171. },
  172. "autoload": {
  173. "files": [
  174. "src/functions.php"
  175. ],
  176. "psr-4": {
  177. "Aws\\": "src/"
  178. }
  179. },
  180. "notification-url": "https://packagist.org/downloads/",
  181. "license": [
  182. "Apache-2.0"
  183. ],
  184. "authors": [
  185. {
  186. "name": "Amazon Web Services",
  187. "homepage": "http://aws.amazon.com"
  188. }
  189. ],
  190. "description": "AWS SDK for PHP - Use Amazon Web Services in your PHP project",
  191. "homepage": "http://aws.amazon.com/sdkforphp",
  192. "keywords": [
  193. "amazon",
  194. "aws",
  195. "cloud",
  196. "dynamodb",
  197. "ec2",
  198. "glacier",
  199. "s3",
  200. "sdk"
  201. ],
  202. "support": {
  203. "forum": "https://forums.aws.amazon.com/forum.jspa?forumID=80",
  204. "issues": "https://github.com/aws/aws-sdk-php/issues",
  205. "source": "https://github.com/aws/aws-sdk-php/tree/3.253.0"
  206. },
  207. "time": "2022-12-12T19:23:54+00:00"
  208. },
  209. {
  210. "name": "bacon/bacon-qr-code",
  211. "version": "2.0.8",
  212. "source": {
  213. "type": "git",
  214. "url": "https://github.com/Bacon/BaconQrCode.git",
  215. "reference": "8674e51bb65af933a5ffaf1c308a660387c35c22"
  216. },
  217. "dist": {
  218. "type": "zip",
  219. "url": "https://api.github.com/repos/Bacon/BaconQrCode/zipball/8674e51bb65af933a5ffaf1c308a660387c35c22",
  220. "reference": "8674e51bb65af933a5ffaf1c308a660387c35c22",
  221. "shasum": ""
  222. },
  223. "require": {
  224. "dasprid/enum": "^1.0.3",
  225. "ext-iconv": "*",
  226. "php": "^7.1 || ^8.0"
  227. },
  228. "require-dev": {
  229. "phly/keep-a-changelog": "^2.1",
  230. "phpunit/phpunit": "^7 | ^8 | ^9",
  231. "spatie/phpunit-snapshot-assertions": "^4.2.9",
  232. "squizlabs/php_codesniffer": "^3.4"
  233. },
  234. "suggest": {
  235. "ext-imagick": "to generate QR code images"
  236. },
  237. "type": "library",
  238. "autoload": {
  239. "psr-4": {
  240. "BaconQrCode\\": "src/"
  241. }
  242. },
  243. "notification-url": "https://packagist.org/downloads/",
  244. "license": [
  245. "BSD-2-Clause"
  246. ],
  247. "authors": [
  248. {
  249. "name": "Ben Scholzen 'DASPRiD'",
  250. "email": "mail@dasprids.de",
  251. "homepage": "https://dasprids.de/",
  252. "role": "Developer"
  253. }
  254. ],
  255. "description": "BaconQrCode is a QR code generator for PHP.",
  256. "homepage": "https://github.com/Bacon/BaconQrCode",
  257. "support": {
  258. "issues": "https://github.com/Bacon/BaconQrCode/issues",
  259. "source": "https://github.com/Bacon/BaconQrCode/tree/2.0.8"
  260. },
  261. "time": "2022-12-07T17:46:57+00:00"
  262. },
  263. {
  264. "name": "beyondcode/laravel-websockets",
  265. "version": "1.13.1",
  266. "source": {
  267. "type": "git",
  268. "url": "https://github.com/beyondcode/laravel-websockets.git",
  269. "reference": "f0649b65fb5562d20eff66f61716ef98717e228a"
  270. },
  271. "dist": {
  272. "type": "zip",
  273. "url": "https://api.github.com/repos/beyondcode/laravel-websockets/zipball/f0649b65fb5562d20eff66f61716ef98717e228a",
  274. "reference": "f0649b65fb5562d20eff66f61716ef98717e228a",
  275. "shasum": ""
  276. },
  277. "require": {
  278. "cboden/ratchet": "^0.4.1",
  279. "ext-json": "*",
  280. "facade/ignition-contracts": "^1.0",
  281. "guzzlehttp/psr7": "^1.7|^2.0",
  282. "illuminate/broadcasting": "^6.0|^7.0|^8.0|^9.0",
  283. "illuminate/console": "^6.0|^7.0|^8.0|^9.0",
  284. "illuminate/http": "^6.0|^7.0|^8.0|^9.0",
  285. "illuminate/routing": "^6.0|^7.0|^8.0|^9.0",
  286. "illuminate/support": "^6.0|^7.0|^8.0|^9.0",
  287. "php": "^7.2|^8.0",
  288. "pusher/pusher-php-server": "^3.0|^4.0|^5.0|^6.0|^7.0",
  289. "react/dns": "^1.1",
  290. "react/http": "^1.1",
  291. "symfony/http-kernel": "^4.0|^5.0|^6.0",
  292. "symfony/psr-http-message-bridge": "^1.1|^2.0"
  293. },
  294. "require-dev": {
  295. "mockery/mockery": "^1.3.3",
  296. "orchestra/testbench": "^4.0|^5.0|^6.0",
  297. "phpunit/phpunit": "^8.0|^9.0"
  298. },
  299. "type": "library",
  300. "extra": {
  301. "laravel": {
  302. "providers": [
  303. "BeyondCode\\LaravelWebSockets\\WebSocketsServiceProvider"
  304. ],
  305. "aliases": {
  306. "WebSocketRouter": "BeyondCode\\LaravelWebSockets\\Facades\\WebSocketRouter"
  307. }
  308. }
  309. },
  310. "autoload": {
  311. "psr-4": {
  312. "BeyondCode\\LaravelWebSockets\\": "src"
  313. }
  314. },
  315. "notification-url": "https://packagist.org/downloads/",
  316. "license": [
  317. "MIT"
  318. ],
  319. "authors": [
  320. {
  321. "name": "Marcel Pociot",
  322. "email": "marcel@beyondco.de",
  323. "homepage": "https://beyondcode.de",
  324. "role": "Developer"
  325. },
  326. {
  327. "name": "Freek Van der Herten",
  328. "email": "freek@spatie.be",
  329. "homepage": "https://spatie.be",
  330. "role": "Developer"
  331. }
  332. ],
  333. "description": "An easy to use WebSocket server",
  334. "homepage": "https://github.com/beyondcode/laravel-websockets",
  335. "keywords": [
  336. "beyondcode",
  337. "laravel-websockets"
  338. ],
  339. "support": {
  340. "issues": "https://github.com/beyondcode/laravel-websockets/issues",
  341. "source": "https://github.com/beyondcode/laravel-websockets/tree/1.13.1"
  342. },
  343. "time": "2022-03-03T08:41:47+00:00"
  344. },
  345. {
  346. "name": "brick/math",
  347. "version": "0.9.3",
  348. "source": {
  349. "type": "git",
  350. "url": "https://github.com/brick/math.git",
  351. "reference": "ca57d18f028f84f777b2168cd1911b0dee2343ae"
  352. },
  353. "dist": {
  354. "type": "zip",
  355. "url": "https://api.github.com/repos/brick/math/zipball/ca57d18f028f84f777b2168cd1911b0dee2343ae",
  356. "reference": "ca57d18f028f84f777b2168cd1911b0dee2343ae",
  357. "shasum": ""
  358. },
  359. "require": {
  360. "ext-json": "*",
  361. "php": "^7.1 || ^8.0"
  362. },
  363. "require-dev": {
  364. "php-coveralls/php-coveralls": "^2.2",
  365. "phpunit/phpunit": "^7.5.15 || ^8.5 || ^9.0",
  366. "vimeo/psalm": "4.9.2"
  367. },
  368. "type": "library",
  369. "autoload": {
  370. "psr-4": {
  371. "Brick\\Math\\": "src/"
  372. }
  373. },
  374. "notification-url": "https://packagist.org/downloads/",
  375. "license": [
  376. "MIT"
  377. ],
  378. "description": "Arbitrary-precision arithmetic library",
  379. "keywords": [
  380. "Arbitrary-precision",
  381. "BigInteger",
  382. "BigRational",
  383. "arithmetic",
  384. "bigdecimal",
  385. "bignum",
  386. "brick",
  387. "math"
  388. ],
  389. "support": {
  390. "issues": "https://github.com/brick/math/issues",
  391. "source": "https://github.com/brick/math/tree/0.9.3"
  392. },
  393. "funding": [
  394. {
  395. "url": "https://github.com/BenMorel",
  396. "type": "github"
  397. },
  398. {
  399. "url": "https://tidelift.com/funding/github/packagist/brick/math",
  400. "type": "tidelift"
  401. }
  402. ],
  403. "time": "2021-08-15T20:50:18+00:00"
  404. },
  405. {
  406. "name": "buzz/laravel-h-captcha",
  407. "version": "v1.0.3",
  408. "source": {
  409. "type": "git",
  410. "url": "https://github.com/thinhbuzz/laravel-h-captcha.git",
  411. "reference": "502a4a15953cde6e0a17df6fec1459a565504d9b"
  412. },
  413. "dist": {
  414. "type": "zip",
  415. "url": "https://api.github.com/repos/thinhbuzz/laravel-h-captcha/zipball/502a4a15953cde6e0a17df6fec1459a565504d9b",
  416. "reference": "502a4a15953cde6e0a17df6fec1459a565504d9b",
  417. "shasum": ""
  418. },
  419. "require": {
  420. "guzzlehttp/guzzle": "6.*|7.*",
  421. "illuminate/support": "5.*|6.*|7.*|8.*|9.*",
  422. "php": ">=5.4.0"
  423. },
  424. "type": "library",
  425. "extra": {
  426. "laravel": {
  427. "providers": [
  428. "Buzz\\LaravelHCaptcha\\CaptchaServiceProvider"
  429. ],
  430. "aliases": {
  431. "Captcha": "Buzz\\LaravelHCaptcha\\CaptchaFacade"
  432. }
  433. }
  434. },
  435. "autoload": {
  436. "psr-4": {
  437. "Buzz\\LaravelHCaptcha\\": "src"
  438. }
  439. },
  440. "notification-url": "https://packagist.org/downloads/",
  441. "license": [
  442. "MIT"
  443. ],
  444. "authors": [
  445. {
  446. "name": "ThinhBuzz",
  447. "email": "mr.thinhbuzz@gmail.com",
  448. "homepage": "https://www.facebook.com/thinh.buzz"
  449. }
  450. ],
  451. "description": "hCaptcha for Laravel",
  452. "homepage": "https://github.com/thinhbuzz/laravel-h-captcha",
  453. "keywords": [
  454. "captcha",
  455. "h captcha",
  456. "h-captcha",
  457. "hcaptcha",
  458. "laravel",
  459. "laravel 5",
  460. "laravel 6",
  461. "laravel 7",
  462. "laravel 8",
  463. "laravel 9",
  464. "laravel5",
  465. "laravel6",
  466. "laravel7",
  467. "laravel8",
  468. "laravel9"
  469. ],
  470. "support": {
  471. "issues": "https://github.com/thinhbuzz/laravel-h-captcha/issues",
  472. "source": "https://github.com/thinhbuzz/laravel-h-captcha/tree/v1.0.3"
  473. },
  474. "time": "2022-02-15T13:11:09+00:00"
  475. },
  476. {
  477. "name": "cboden/ratchet",
  478. "version": "v0.4.4",
  479. "source": {
  480. "type": "git",
  481. "url": "https://github.com/ratchetphp/Ratchet.git",
  482. "reference": "5012dc954541b40c5599d286fd40653f5716a38f"
  483. },
  484. "dist": {
  485. "type": "zip",
  486. "url": "https://api.github.com/repos/ratchetphp/Ratchet/zipball/5012dc954541b40c5599d286fd40653f5716a38f",
  487. "reference": "5012dc954541b40c5599d286fd40653f5716a38f",
  488. "shasum": ""
  489. },
  490. "require": {
  491. "guzzlehttp/psr7": "^1.7|^2.0",
  492. "php": ">=5.4.2",
  493. "ratchet/rfc6455": "^0.3.1",
  494. "react/event-loop": ">=0.4",
  495. "react/socket": "^1.0 || ^0.8 || ^0.7 || ^0.6 || ^0.5",
  496. "symfony/http-foundation": "^2.6|^3.0|^4.0|^5.0|^6.0",
  497. "symfony/routing": "^2.6|^3.0|^4.0|^5.0|^6.0"
  498. },
  499. "require-dev": {
  500. "phpunit/phpunit": "~4.8"
  501. },
  502. "type": "library",
  503. "autoload": {
  504. "psr-4": {
  505. "Ratchet\\": "src/Ratchet"
  506. }
  507. },
  508. "notification-url": "https://packagist.org/downloads/",
  509. "license": [
  510. "MIT"
  511. ],
  512. "authors": [
  513. {
  514. "name": "Chris Boden",
  515. "email": "cboden@gmail.com",
  516. "role": "Developer"
  517. },
  518. {
  519. "name": "Matt Bonneau",
  520. "role": "Developer"
  521. }
  522. ],
  523. "description": "PHP WebSocket library",
  524. "homepage": "http://socketo.me",
  525. "keywords": [
  526. "Ratchet",
  527. "WebSockets",
  528. "server",
  529. "sockets",
  530. "websocket"
  531. ],
  532. "support": {
  533. "chat": "https://gitter.im/reactphp/reactphp",
  534. "issues": "https://github.com/ratchetphp/Ratchet/issues",
  535. "source": "https://github.com/ratchetphp/Ratchet/tree/v0.4.4"
  536. },
  537. "time": "2021-12-14T00:20:41+00:00"
  538. },
  539. {
  540. "name": "dasprid/enum",
  541. "version": "1.0.3",
  542. "source": {
  543. "type": "git",
  544. "url": "https://github.com/DASPRiD/Enum.git",
  545. "reference": "5abf82f213618696dda8e3bf6f64dd042d8542b2"
  546. },
  547. "dist": {
  548. "type": "zip",
  549. "url": "https://api.github.com/repos/DASPRiD/Enum/zipball/5abf82f213618696dda8e3bf6f64dd042d8542b2",
  550. "reference": "5abf82f213618696dda8e3bf6f64dd042d8542b2",
  551. "shasum": ""
  552. },
  553. "require-dev": {
  554. "phpunit/phpunit": "^7 | ^8 | ^9",
  555. "squizlabs/php_codesniffer": "^3.4"
  556. },
  557. "type": "library",
  558. "autoload": {
  559. "psr-4": {
  560. "DASPRiD\\Enum\\": "src/"
  561. }
  562. },
  563. "notification-url": "https://packagist.org/downloads/",
  564. "license": [
  565. "BSD-2-Clause"
  566. ],
  567. "authors": [
  568. {
  569. "name": "Ben Scholzen 'DASPRiD'",
  570. "email": "mail@dasprids.de",
  571. "homepage": "https://dasprids.de/",
  572. "role": "Developer"
  573. }
  574. ],
  575. "description": "PHP 7.1 enum implementation",
  576. "keywords": [
  577. "enum",
  578. "map"
  579. ],
  580. "support": {
  581. "issues": "https://github.com/DASPRiD/Enum/issues",
  582. "source": "https://github.com/DASPRiD/Enum/tree/1.0.3"
  583. },
  584. "time": "2020-10-02T16:03:48+00:00"
  585. },
  586. {
  587. "name": "defuse/php-encryption",
  588. "version": "v2.3.1",
  589. "source": {
  590. "type": "git",
  591. "url": "https://github.com/defuse/php-encryption.git",
  592. "reference": "77880488b9954b7884c25555c2a0ea9e7053f9d2"
  593. },
  594. "dist": {
  595. "type": "zip",
  596. "url": "https://api.github.com/repos/defuse/php-encryption/zipball/77880488b9954b7884c25555c2a0ea9e7053f9d2",
  597. "reference": "77880488b9954b7884c25555c2a0ea9e7053f9d2",
  598. "shasum": ""
  599. },
  600. "require": {
  601. "ext-openssl": "*",
  602. "paragonie/random_compat": ">= 2",
  603. "php": ">=5.6.0"
  604. },
  605. "require-dev": {
  606. "phpunit/phpunit": "^4|^5|^6|^7|^8|^9"
  607. },
  608. "bin": [
  609. "bin/generate-defuse-key"
  610. ],
  611. "type": "library",
  612. "autoload": {
  613. "psr-4": {
  614. "Defuse\\Crypto\\": "src"
  615. }
  616. },
  617. "notification-url": "https://packagist.org/downloads/",
  618. "license": [
  619. "MIT"
  620. ],
  621. "authors": [
  622. {
  623. "name": "Taylor Hornby",
  624. "email": "taylor@defuse.ca",
  625. "homepage": "https://defuse.ca/"
  626. },
  627. {
  628. "name": "Scott Arciszewski",
  629. "email": "info@paragonie.com",
  630. "homepage": "https://paragonie.com"
  631. }
  632. ],
  633. "description": "Secure PHP Encryption Library",
  634. "keywords": [
  635. "aes",
  636. "authenticated encryption",
  637. "cipher",
  638. "crypto",
  639. "cryptography",
  640. "encrypt",
  641. "encryption",
  642. "openssl",
  643. "security",
  644. "symmetric key cryptography"
  645. ],
  646. "support": {
  647. "issues": "https://github.com/defuse/php-encryption/issues",
  648. "source": "https://github.com/defuse/php-encryption/tree/v2.3.1"
  649. },
  650. "time": "2021-04-09T23:57:26+00:00"
  651. },
  652. {
  653. "name": "dflydev/dot-access-data",
  654. "version": "v3.0.2",
  655. "source": {
  656. "type": "git",
  657. "url": "https://github.com/dflydev/dflydev-dot-access-data.git",
  658. "reference": "f41715465d65213d644d3141a6a93081be5d3549"
  659. },
  660. "dist": {
  661. "type": "zip",
  662. "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/f41715465d65213d644d3141a6a93081be5d3549",
  663. "reference": "f41715465d65213d644d3141a6a93081be5d3549",
  664. "shasum": ""
  665. },
  666. "require": {
  667. "php": "^7.1 || ^8.0"
  668. },
  669. "require-dev": {
  670. "phpstan/phpstan": "^0.12.42",
  671. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.3",
  672. "scrutinizer/ocular": "1.6.0",
  673. "squizlabs/php_codesniffer": "^3.5",
  674. "vimeo/psalm": "^4.0.0"
  675. },
  676. "type": "library",
  677. "extra": {
  678. "branch-alias": {
  679. "dev-main": "3.x-dev"
  680. }
  681. },
  682. "autoload": {
  683. "psr-4": {
  684. "Dflydev\\DotAccessData\\": "src/"
  685. }
  686. },
  687. "notification-url": "https://packagist.org/downloads/",
  688. "license": [
  689. "MIT"
  690. ],
  691. "authors": [
  692. {
  693. "name": "Dragonfly Development Inc.",
  694. "email": "info@dflydev.com",
  695. "homepage": "http://dflydev.com"
  696. },
  697. {
  698. "name": "Beau Simensen",
  699. "email": "beau@dflydev.com",
  700. "homepage": "http://beausimensen.com"
  701. },
  702. {
  703. "name": "Carlos Frutos",
  704. "email": "carlos@kiwing.it",
  705. "homepage": "https://github.com/cfrutos"
  706. },
  707. {
  708. "name": "Colin O'Dell",
  709. "email": "colinodell@gmail.com",
  710. "homepage": "https://www.colinodell.com"
  711. }
  712. ],
  713. "description": "Given a deep data structure, access data by dot notation.",
  714. "homepage": "https://github.com/dflydev/dflydev-dot-access-data",
  715. "keywords": [
  716. "access",
  717. "data",
  718. "dot",
  719. "notation"
  720. ],
  721. "support": {
  722. "issues": "https://github.com/dflydev/dflydev-dot-access-data/issues",
  723. "source": "https://github.com/dflydev/dflydev-dot-access-data/tree/v3.0.2"
  724. },
  725. "time": "2022-10-27T11:44:00+00:00"
  726. },
  727. {
  728. "name": "doctrine/cache",
  729. "version": "2.2.0",
  730. "source": {
  731. "type": "git",
  732. "url": "https://github.com/doctrine/cache.git",
  733. "reference": "1ca8f21980e770095a31456042471a57bc4c68fb"
  734. },
  735. "dist": {
  736. "type": "zip",
  737. "url": "https://api.github.com/repos/doctrine/cache/zipball/1ca8f21980e770095a31456042471a57bc4c68fb",
  738. "reference": "1ca8f21980e770095a31456042471a57bc4c68fb",
  739. "shasum": ""
  740. },
  741. "require": {
  742. "php": "~7.1 || ^8.0"
  743. },
  744. "conflict": {
  745. "doctrine/common": ">2.2,<2.4"
  746. },
  747. "require-dev": {
  748. "cache/integration-tests": "dev-master",
  749. "doctrine/coding-standard": "^9",
  750. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  751. "psr/cache": "^1.0 || ^2.0 || ^3.0",
  752. "symfony/cache": "^4.4 || ^5.4 || ^6",
  753. "symfony/var-exporter": "^4.4 || ^5.4 || ^6"
  754. },
  755. "type": "library",
  756. "autoload": {
  757. "psr-4": {
  758. "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache"
  759. }
  760. },
  761. "notification-url": "https://packagist.org/downloads/",
  762. "license": [
  763. "MIT"
  764. ],
  765. "authors": [
  766. {
  767. "name": "Guilherme Blanco",
  768. "email": "guilhermeblanco@gmail.com"
  769. },
  770. {
  771. "name": "Roman Borschel",
  772. "email": "roman@code-factory.org"
  773. },
  774. {
  775. "name": "Benjamin Eberlei",
  776. "email": "kontakt@beberlei.de"
  777. },
  778. {
  779. "name": "Jonathan Wage",
  780. "email": "jonwage@gmail.com"
  781. },
  782. {
  783. "name": "Johannes Schmitt",
  784. "email": "schmittjoh@gmail.com"
  785. }
  786. ],
  787. "description": "PHP Doctrine Cache library is a popular cache implementation that supports many different drivers such as redis, memcache, apc, mongodb and others.",
  788. "homepage": "https://www.doctrine-project.org/projects/cache.html",
  789. "keywords": [
  790. "abstraction",
  791. "apcu",
  792. "cache",
  793. "caching",
  794. "couchdb",
  795. "memcached",
  796. "php",
  797. "redis",
  798. "xcache"
  799. ],
  800. "support": {
  801. "issues": "https://github.com/doctrine/cache/issues",
  802. "source": "https://github.com/doctrine/cache/tree/2.2.0"
  803. },
  804. "funding": [
  805. {
  806. "url": "https://www.doctrine-project.org/sponsorship.html",
  807. "type": "custom"
  808. },
  809. {
  810. "url": "https://www.patreon.com/phpdoctrine",
  811. "type": "patreon"
  812. },
  813. {
  814. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcache",
  815. "type": "tidelift"
  816. }
  817. ],
  818. "time": "2022-05-20T20:07:39+00:00"
  819. },
  820. {
  821. "name": "doctrine/dbal",
  822. "version": "2.13.9",
  823. "source": {
  824. "type": "git",
  825. "url": "https://github.com/doctrine/dbal.git",
  826. "reference": "c480849ca3ad6706a39c970cdfe6888fa8a058b8"
  827. },
  828. "dist": {
  829. "type": "zip",
  830. "url": "https://api.github.com/repos/doctrine/dbal/zipball/c480849ca3ad6706a39c970cdfe6888fa8a058b8",
  831. "reference": "c480849ca3ad6706a39c970cdfe6888fa8a058b8",
  832. "shasum": ""
  833. },
  834. "require": {
  835. "doctrine/cache": "^1.0|^2.0",
  836. "doctrine/deprecations": "^0.5.3|^1",
  837. "doctrine/event-manager": "^1.0",
  838. "ext-pdo": "*",
  839. "php": "^7.1 || ^8"
  840. },
  841. "require-dev": {
  842. "doctrine/coding-standard": "9.0.0",
  843. "jetbrains/phpstorm-stubs": "2021.1",
  844. "phpstan/phpstan": "1.4.6",
  845. "phpunit/phpunit": "^7.5.20|^8.5|9.5.16",
  846. "psalm/plugin-phpunit": "0.16.1",
  847. "squizlabs/php_codesniffer": "3.6.2",
  848. "symfony/cache": "^4.4",
  849. "symfony/console": "^2.0.5|^3.0|^4.0|^5.0",
  850. "vimeo/psalm": "4.22.0"
  851. },
  852. "suggest": {
  853. "symfony/console": "For helpful console commands such as SQL execution and import of files."
  854. },
  855. "bin": [
  856. "bin/doctrine-dbal"
  857. ],
  858. "type": "library",
  859. "autoload": {
  860. "psr-4": {
  861. "Doctrine\\DBAL\\": "lib/Doctrine/DBAL"
  862. }
  863. },
  864. "notification-url": "https://packagist.org/downloads/",
  865. "license": [
  866. "MIT"
  867. ],
  868. "authors": [
  869. {
  870. "name": "Guilherme Blanco",
  871. "email": "guilhermeblanco@gmail.com"
  872. },
  873. {
  874. "name": "Roman Borschel",
  875. "email": "roman@code-factory.org"
  876. },
  877. {
  878. "name": "Benjamin Eberlei",
  879. "email": "kontakt@beberlei.de"
  880. },
  881. {
  882. "name": "Jonathan Wage",
  883. "email": "jonwage@gmail.com"
  884. }
  885. ],
  886. "description": "Powerful PHP database abstraction layer (DBAL) with many features for database schema introspection and management.",
  887. "homepage": "https://www.doctrine-project.org/projects/dbal.html",
  888. "keywords": [
  889. "abstraction",
  890. "database",
  891. "db2",
  892. "dbal",
  893. "mariadb",
  894. "mssql",
  895. "mysql",
  896. "oci8",
  897. "oracle",
  898. "pdo",
  899. "pgsql",
  900. "postgresql",
  901. "queryobject",
  902. "sasql",
  903. "sql",
  904. "sqlanywhere",
  905. "sqlite",
  906. "sqlserver",
  907. "sqlsrv"
  908. ],
  909. "support": {
  910. "issues": "https://github.com/doctrine/dbal/issues",
  911. "source": "https://github.com/doctrine/dbal/tree/2.13.9"
  912. },
  913. "funding": [
  914. {
  915. "url": "https://www.doctrine-project.org/sponsorship.html",
  916. "type": "custom"
  917. },
  918. {
  919. "url": "https://www.patreon.com/phpdoctrine",
  920. "type": "patreon"
  921. },
  922. {
  923. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdbal",
  924. "type": "tidelift"
  925. }
  926. ],
  927. "time": "2022-05-02T20:28:55+00:00"
  928. },
  929. {
  930. "name": "doctrine/deprecations",
  931. "version": "v1.0.0",
  932. "source": {
  933. "type": "git",
  934. "url": "https://github.com/doctrine/deprecations.git",
  935. "reference": "0e2a4f1f8cdfc7a92ec3b01c9334898c806b30de"
  936. },
  937. "dist": {
  938. "type": "zip",
  939. "url": "https://api.github.com/repos/doctrine/deprecations/zipball/0e2a4f1f8cdfc7a92ec3b01c9334898c806b30de",
  940. "reference": "0e2a4f1f8cdfc7a92ec3b01c9334898c806b30de",
  941. "shasum": ""
  942. },
  943. "require": {
  944. "php": "^7.1|^8.0"
  945. },
  946. "require-dev": {
  947. "doctrine/coding-standard": "^9",
  948. "phpunit/phpunit": "^7.5|^8.5|^9.5",
  949. "psr/log": "^1|^2|^3"
  950. },
  951. "suggest": {
  952. "psr/log": "Allows logging deprecations via PSR-3 logger implementation"
  953. },
  954. "type": "library",
  955. "autoload": {
  956. "psr-4": {
  957. "Doctrine\\Deprecations\\": "lib/Doctrine/Deprecations"
  958. }
  959. },
  960. "notification-url": "https://packagist.org/downloads/",
  961. "license": [
  962. "MIT"
  963. ],
  964. "description": "A small layer on top of trigger_error(E_USER_DEPRECATED) or PSR-3 logging with options to disable all deprecations or selectively for packages.",
  965. "homepage": "https://www.doctrine-project.org/",
  966. "support": {
  967. "issues": "https://github.com/doctrine/deprecations/issues",
  968. "source": "https://github.com/doctrine/deprecations/tree/v1.0.0"
  969. },
  970. "time": "2022-05-02T15:47:09+00:00"
  971. },
  972. {
  973. "name": "doctrine/event-manager",
  974. "version": "1.2.0",
  975. "source": {
  976. "type": "git",
  977. "url": "https://github.com/doctrine/event-manager.git",
  978. "reference": "95aa4cb529f1e96576f3fda9f5705ada4056a520"
  979. },
  980. "dist": {
  981. "type": "zip",
  982. "url": "https://api.github.com/repos/doctrine/event-manager/zipball/95aa4cb529f1e96576f3fda9f5705ada4056a520",
  983. "reference": "95aa4cb529f1e96576f3fda9f5705ada4056a520",
  984. "shasum": ""
  985. },
  986. "require": {
  987. "doctrine/deprecations": "^0.5.3 || ^1",
  988. "php": "^7.1 || ^8.0"
  989. },
  990. "conflict": {
  991. "doctrine/common": "<2.9"
  992. },
  993. "require-dev": {
  994. "doctrine/coding-standard": "^9 || ^10",
  995. "phpstan/phpstan": "~1.4.10 || ^1.8.8",
  996. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  997. "vimeo/psalm": "^4.24"
  998. },
  999. "type": "library",
  1000. "autoload": {
  1001. "psr-4": {
  1002. "Doctrine\\Common\\": "src"
  1003. }
  1004. },
  1005. "notification-url": "https://packagist.org/downloads/",
  1006. "license": [
  1007. "MIT"
  1008. ],
  1009. "authors": [
  1010. {
  1011. "name": "Guilherme Blanco",
  1012. "email": "guilhermeblanco@gmail.com"
  1013. },
  1014. {
  1015. "name": "Roman Borschel",
  1016. "email": "roman@code-factory.org"
  1017. },
  1018. {
  1019. "name": "Benjamin Eberlei",
  1020. "email": "kontakt@beberlei.de"
  1021. },
  1022. {
  1023. "name": "Jonathan Wage",
  1024. "email": "jonwage@gmail.com"
  1025. },
  1026. {
  1027. "name": "Johannes Schmitt",
  1028. "email": "schmittjoh@gmail.com"
  1029. },
  1030. {
  1031. "name": "Marco Pivetta",
  1032. "email": "ocramius@gmail.com"
  1033. }
  1034. ],
  1035. "description": "The Doctrine Event Manager is a simple PHP event system that was built to be used with the various Doctrine projects.",
  1036. "homepage": "https://www.doctrine-project.org/projects/event-manager.html",
  1037. "keywords": [
  1038. "event",
  1039. "event dispatcher",
  1040. "event manager",
  1041. "event system",
  1042. "events"
  1043. ],
  1044. "support": {
  1045. "issues": "https://github.com/doctrine/event-manager/issues",
  1046. "source": "https://github.com/doctrine/event-manager/tree/1.2.0"
  1047. },
  1048. "funding": [
  1049. {
  1050. "url": "https://www.doctrine-project.org/sponsorship.html",
  1051. "type": "custom"
  1052. },
  1053. {
  1054. "url": "https://www.patreon.com/phpdoctrine",
  1055. "type": "patreon"
  1056. },
  1057. {
  1058. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fevent-manager",
  1059. "type": "tidelift"
  1060. }
  1061. ],
  1062. "time": "2022-10-12T20:51:15+00:00"
  1063. },
  1064. {
  1065. "name": "doctrine/inflector",
  1066. "version": "2.0.6",
  1067. "source": {
  1068. "type": "git",
  1069. "url": "https://github.com/doctrine/inflector.git",
  1070. "reference": "d9d313a36c872fd6ee06d9a6cbcf713eaa40f024"
  1071. },
  1072. "dist": {
  1073. "type": "zip",
  1074. "url": "https://api.github.com/repos/doctrine/inflector/zipball/d9d313a36c872fd6ee06d9a6cbcf713eaa40f024",
  1075. "reference": "d9d313a36c872fd6ee06d9a6cbcf713eaa40f024",
  1076. "shasum": ""
  1077. },
  1078. "require": {
  1079. "php": "^7.2 || ^8.0"
  1080. },
  1081. "require-dev": {
  1082. "doctrine/coding-standard": "^10",
  1083. "phpstan/phpstan": "^1.8",
  1084. "phpstan/phpstan-phpunit": "^1.1",
  1085. "phpstan/phpstan-strict-rules": "^1.3",
  1086. "phpunit/phpunit": "^8.5 || ^9.5",
  1087. "vimeo/psalm": "^4.25"
  1088. },
  1089. "type": "library",
  1090. "autoload": {
  1091. "psr-4": {
  1092. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  1093. }
  1094. },
  1095. "notification-url": "https://packagist.org/downloads/",
  1096. "license": [
  1097. "MIT"
  1098. ],
  1099. "authors": [
  1100. {
  1101. "name": "Guilherme Blanco",
  1102. "email": "guilhermeblanco@gmail.com"
  1103. },
  1104. {
  1105. "name": "Roman Borschel",
  1106. "email": "roman@code-factory.org"
  1107. },
  1108. {
  1109. "name": "Benjamin Eberlei",
  1110. "email": "kontakt@beberlei.de"
  1111. },
  1112. {
  1113. "name": "Jonathan Wage",
  1114. "email": "jonwage@gmail.com"
  1115. },
  1116. {
  1117. "name": "Johannes Schmitt",
  1118. "email": "schmittjoh@gmail.com"
  1119. }
  1120. ],
  1121. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  1122. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  1123. "keywords": [
  1124. "inflection",
  1125. "inflector",
  1126. "lowercase",
  1127. "manipulation",
  1128. "php",
  1129. "plural",
  1130. "singular",
  1131. "strings",
  1132. "uppercase",
  1133. "words"
  1134. ],
  1135. "support": {
  1136. "issues": "https://github.com/doctrine/inflector/issues",
  1137. "source": "https://github.com/doctrine/inflector/tree/2.0.6"
  1138. },
  1139. "funding": [
  1140. {
  1141. "url": "https://www.doctrine-project.org/sponsorship.html",
  1142. "type": "custom"
  1143. },
  1144. {
  1145. "url": "https://www.patreon.com/phpdoctrine",
  1146. "type": "patreon"
  1147. },
  1148. {
  1149. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  1150. "type": "tidelift"
  1151. }
  1152. ],
  1153. "time": "2022-10-20T09:10:12+00:00"
  1154. },
  1155. {
  1156. "name": "doctrine/lexer",
  1157. "version": "1.2.3",
  1158. "source": {
  1159. "type": "git",
  1160. "url": "https://github.com/doctrine/lexer.git",
  1161. "reference": "c268e882d4dbdd85e36e4ad69e02dc284f89d229"
  1162. },
  1163. "dist": {
  1164. "type": "zip",
  1165. "url": "https://api.github.com/repos/doctrine/lexer/zipball/c268e882d4dbdd85e36e4ad69e02dc284f89d229",
  1166. "reference": "c268e882d4dbdd85e36e4ad69e02dc284f89d229",
  1167. "shasum": ""
  1168. },
  1169. "require": {
  1170. "php": "^7.1 || ^8.0"
  1171. },
  1172. "require-dev": {
  1173. "doctrine/coding-standard": "^9.0",
  1174. "phpstan/phpstan": "^1.3",
  1175. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  1176. "vimeo/psalm": "^4.11"
  1177. },
  1178. "type": "library",
  1179. "autoload": {
  1180. "psr-4": {
  1181. "Doctrine\\Common\\Lexer\\": "lib/Doctrine/Common/Lexer"
  1182. }
  1183. },
  1184. "notification-url": "https://packagist.org/downloads/",
  1185. "license": [
  1186. "MIT"
  1187. ],
  1188. "authors": [
  1189. {
  1190. "name": "Guilherme Blanco",
  1191. "email": "guilhermeblanco@gmail.com"
  1192. },
  1193. {
  1194. "name": "Roman Borschel",
  1195. "email": "roman@code-factory.org"
  1196. },
  1197. {
  1198. "name": "Johannes Schmitt",
  1199. "email": "schmittjoh@gmail.com"
  1200. }
  1201. ],
  1202. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  1203. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  1204. "keywords": [
  1205. "annotations",
  1206. "docblock",
  1207. "lexer",
  1208. "parser",
  1209. "php"
  1210. ],
  1211. "support": {
  1212. "issues": "https://github.com/doctrine/lexer/issues",
  1213. "source": "https://github.com/doctrine/lexer/tree/1.2.3"
  1214. },
  1215. "funding": [
  1216. {
  1217. "url": "https://www.doctrine-project.org/sponsorship.html",
  1218. "type": "custom"
  1219. },
  1220. {
  1221. "url": "https://www.patreon.com/phpdoctrine",
  1222. "type": "patreon"
  1223. },
  1224. {
  1225. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  1226. "type": "tidelift"
  1227. }
  1228. ],
  1229. "time": "2022-02-28T11:07:21+00:00"
  1230. },
  1231. {
  1232. "name": "dragonmantank/cron-expression",
  1233. "version": "v3.3.2",
  1234. "source": {
  1235. "type": "git",
  1236. "url": "https://github.com/dragonmantank/cron-expression.git",
  1237. "reference": "782ca5968ab8b954773518e9e49a6f892a34b2a8"
  1238. },
  1239. "dist": {
  1240. "type": "zip",
  1241. "url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/782ca5968ab8b954773518e9e49a6f892a34b2a8",
  1242. "reference": "782ca5968ab8b954773518e9e49a6f892a34b2a8",
  1243. "shasum": ""
  1244. },
  1245. "require": {
  1246. "php": "^7.2|^8.0",
  1247. "webmozart/assert": "^1.0"
  1248. },
  1249. "replace": {
  1250. "mtdowling/cron-expression": "^1.0"
  1251. },
  1252. "require-dev": {
  1253. "phpstan/extension-installer": "^1.0",
  1254. "phpstan/phpstan": "^1.0",
  1255. "phpstan/phpstan-webmozart-assert": "^1.0",
  1256. "phpunit/phpunit": "^7.0|^8.0|^9.0"
  1257. },
  1258. "type": "library",
  1259. "autoload": {
  1260. "psr-4": {
  1261. "Cron\\": "src/Cron/"
  1262. }
  1263. },
  1264. "notification-url": "https://packagist.org/downloads/",
  1265. "license": [
  1266. "MIT"
  1267. ],
  1268. "authors": [
  1269. {
  1270. "name": "Chris Tankersley",
  1271. "email": "chris@ctankersley.com",
  1272. "homepage": "https://github.com/dragonmantank"
  1273. }
  1274. ],
  1275. "description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due",
  1276. "keywords": [
  1277. "cron",
  1278. "schedule"
  1279. ],
  1280. "support": {
  1281. "issues": "https://github.com/dragonmantank/cron-expression/issues",
  1282. "source": "https://github.com/dragonmantank/cron-expression/tree/v3.3.2"
  1283. },
  1284. "funding": [
  1285. {
  1286. "url": "https://github.com/dragonmantank",
  1287. "type": "github"
  1288. }
  1289. ],
  1290. "time": "2022-09-10T18:51:20+00:00"
  1291. },
  1292. {
  1293. "name": "egulias/email-validator",
  1294. "version": "3.2.1",
  1295. "source": {
  1296. "type": "git",
  1297. "url": "https://github.com/egulias/EmailValidator.git",
  1298. "reference": "f88dcf4b14af14a98ad96b14b2b317969eab6715"
  1299. },
  1300. "dist": {
  1301. "type": "zip",
  1302. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/f88dcf4b14af14a98ad96b14b2b317969eab6715",
  1303. "reference": "f88dcf4b14af14a98ad96b14b2b317969eab6715",
  1304. "shasum": ""
  1305. },
  1306. "require": {
  1307. "doctrine/lexer": "^1.2",
  1308. "php": ">=7.2",
  1309. "symfony/polyfill-intl-idn": "^1.15"
  1310. },
  1311. "require-dev": {
  1312. "php-coveralls/php-coveralls": "^2.2",
  1313. "phpunit/phpunit": "^8.5.8|^9.3.3",
  1314. "vimeo/psalm": "^4"
  1315. },
  1316. "suggest": {
  1317. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  1318. },
  1319. "type": "library",
  1320. "extra": {
  1321. "branch-alias": {
  1322. "dev-master": "3.0.x-dev"
  1323. }
  1324. },
  1325. "autoload": {
  1326. "psr-4": {
  1327. "Egulias\\EmailValidator\\": "src"
  1328. }
  1329. },
  1330. "notification-url": "https://packagist.org/downloads/",
  1331. "license": [
  1332. "MIT"
  1333. ],
  1334. "authors": [
  1335. {
  1336. "name": "Eduardo Gulias Davis"
  1337. }
  1338. ],
  1339. "description": "A library for validating emails against several RFCs",
  1340. "homepage": "https://github.com/egulias/EmailValidator",
  1341. "keywords": [
  1342. "email",
  1343. "emailvalidation",
  1344. "emailvalidator",
  1345. "validation",
  1346. "validator"
  1347. ],
  1348. "support": {
  1349. "issues": "https://github.com/egulias/EmailValidator/issues",
  1350. "source": "https://github.com/egulias/EmailValidator/tree/3.2.1"
  1351. },
  1352. "funding": [
  1353. {
  1354. "url": "https://github.com/egulias",
  1355. "type": "github"
  1356. }
  1357. ],
  1358. "time": "2022-06-18T20:57:19+00:00"
  1359. },
  1360. {
  1361. "name": "evenement/evenement",
  1362. "version": "v3.0.1",
  1363. "source": {
  1364. "type": "git",
  1365. "url": "https://github.com/igorw/evenement.git",
  1366. "reference": "531bfb9d15f8aa57454f5f0285b18bec903b8fb7"
  1367. },
  1368. "dist": {
  1369. "type": "zip",
  1370. "url": "https://api.github.com/repos/igorw/evenement/zipball/531bfb9d15f8aa57454f5f0285b18bec903b8fb7",
  1371. "reference": "531bfb9d15f8aa57454f5f0285b18bec903b8fb7",
  1372. "shasum": ""
  1373. },
  1374. "require": {
  1375. "php": ">=7.0"
  1376. },
  1377. "require-dev": {
  1378. "phpunit/phpunit": "^6.0"
  1379. },
  1380. "type": "library",
  1381. "autoload": {
  1382. "psr-0": {
  1383. "Evenement": "src"
  1384. }
  1385. },
  1386. "notification-url": "https://packagist.org/downloads/",
  1387. "license": [
  1388. "MIT"
  1389. ],
  1390. "authors": [
  1391. {
  1392. "name": "Igor Wiedler",
  1393. "email": "igor@wiedler.ch"
  1394. }
  1395. ],
  1396. "description": "Événement is a very simple event dispatching library for PHP",
  1397. "keywords": [
  1398. "event-dispatcher",
  1399. "event-emitter"
  1400. ],
  1401. "support": {
  1402. "issues": "https://github.com/igorw/evenement/issues",
  1403. "source": "https://github.com/igorw/evenement/tree/master"
  1404. },
  1405. "time": "2017-07-23T21:35:13+00:00"
  1406. },
  1407. {
  1408. "name": "ezyang/htmlpurifier",
  1409. "version": "v4.16.0",
  1410. "source": {
  1411. "type": "git",
  1412. "url": "https://github.com/ezyang/htmlpurifier.git",
  1413. "reference": "523407fb06eb9e5f3d59889b3978d5bfe94299c8"
  1414. },
  1415. "dist": {
  1416. "type": "zip",
  1417. "url": "https://api.github.com/repos/ezyang/htmlpurifier/zipball/523407fb06eb9e5f3d59889b3978d5bfe94299c8",
  1418. "reference": "523407fb06eb9e5f3d59889b3978d5bfe94299c8",
  1419. "shasum": ""
  1420. },
  1421. "require": {
  1422. "php": "~5.6.0 || ~7.0.0 || ~7.1.0 || ~7.2.0 || ~7.3.0 || ~7.4.0 || ~8.0.0 || ~8.1.0 || ~8.2.0"
  1423. },
  1424. "require-dev": {
  1425. "cerdic/css-tidy": "^1.7 || ^2.0",
  1426. "simpletest/simpletest": "dev-master"
  1427. },
  1428. "suggest": {
  1429. "cerdic/css-tidy": "If you want to use the filter 'Filter.ExtractStyleBlocks'.",
  1430. "ext-bcmath": "Used for unit conversion and imagecrash protection",
  1431. "ext-iconv": "Converts text to and from non-UTF-8 encodings",
  1432. "ext-tidy": "Used for pretty-printing HTML"
  1433. },
  1434. "type": "library",
  1435. "autoload": {
  1436. "files": [
  1437. "library/HTMLPurifier.composer.php"
  1438. ],
  1439. "psr-0": {
  1440. "HTMLPurifier": "library/"
  1441. },
  1442. "exclude-from-classmap": [
  1443. "/library/HTMLPurifier/Language/"
  1444. ]
  1445. },
  1446. "notification-url": "https://packagist.org/downloads/",
  1447. "license": [
  1448. "LGPL-2.1-or-later"
  1449. ],
  1450. "authors": [
  1451. {
  1452. "name": "Edward Z. Yang",
  1453. "email": "admin@htmlpurifier.org",
  1454. "homepage": "http://ezyang.com"
  1455. }
  1456. ],
  1457. "description": "Standards compliant HTML filter written in PHP",
  1458. "homepage": "http://htmlpurifier.org/",
  1459. "keywords": [
  1460. "html"
  1461. ],
  1462. "support": {
  1463. "issues": "https://github.com/ezyang/htmlpurifier/issues",
  1464. "source": "https://github.com/ezyang/htmlpurifier/tree/v4.16.0"
  1465. },
  1466. "time": "2022-09-18T07:06:19+00:00"
  1467. },
  1468. {
  1469. "name": "facade/ignition-contracts",
  1470. "version": "1.0.2",
  1471. "source": {
  1472. "type": "git",
  1473. "url": "https://github.com/facade/ignition-contracts.git",
  1474. "reference": "3c921a1cdba35b68a7f0ccffc6dffc1995b18267"
  1475. },
  1476. "dist": {
  1477. "type": "zip",
  1478. "url": "https://api.github.com/repos/facade/ignition-contracts/zipball/3c921a1cdba35b68a7f0ccffc6dffc1995b18267",
  1479. "reference": "3c921a1cdba35b68a7f0ccffc6dffc1995b18267",
  1480. "shasum": ""
  1481. },
  1482. "require": {
  1483. "php": "^7.3|^8.0"
  1484. },
  1485. "require-dev": {
  1486. "friendsofphp/php-cs-fixer": "^v2.15.8",
  1487. "phpunit/phpunit": "^9.3.11",
  1488. "vimeo/psalm": "^3.17.1"
  1489. },
  1490. "type": "library",
  1491. "autoload": {
  1492. "psr-4": {
  1493. "Facade\\IgnitionContracts\\": "src"
  1494. }
  1495. },
  1496. "notification-url": "https://packagist.org/downloads/",
  1497. "license": [
  1498. "MIT"
  1499. ],
  1500. "authors": [
  1501. {
  1502. "name": "Freek Van der Herten",
  1503. "email": "freek@spatie.be",
  1504. "homepage": "https://flareapp.io",
  1505. "role": "Developer"
  1506. }
  1507. ],
  1508. "description": "Solution contracts for Ignition",
  1509. "homepage": "https://github.com/facade/ignition-contracts",
  1510. "keywords": [
  1511. "contracts",
  1512. "flare",
  1513. "ignition"
  1514. ],
  1515. "support": {
  1516. "issues": "https://github.com/facade/ignition-contracts/issues",
  1517. "source": "https://github.com/facade/ignition-contracts/tree/1.0.2"
  1518. },
  1519. "time": "2020-10-16T08:27:54+00:00"
  1520. },
  1521. {
  1522. "name": "fig/http-message-util",
  1523. "version": "1.1.5",
  1524. "source": {
  1525. "type": "git",
  1526. "url": "https://github.com/php-fig/http-message-util.git",
  1527. "reference": "9d94dc0154230ac39e5bf89398b324a86f63f765"
  1528. },
  1529. "dist": {
  1530. "type": "zip",
  1531. "url": "https://api.github.com/repos/php-fig/http-message-util/zipball/9d94dc0154230ac39e5bf89398b324a86f63f765",
  1532. "reference": "9d94dc0154230ac39e5bf89398b324a86f63f765",
  1533. "shasum": ""
  1534. },
  1535. "require": {
  1536. "php": "^5.3 || ^7.0 || ^8.0"
  1537. },
  1538. "suggest": {
  1539. "psr/http-message": "The package containing the PSR-7 interfaces"
  1540. },
  1541. "type": "library",
  1542. "extra": {
  1543. "branch-alias": {
  1544. "dev-master": "1.1.x-dev"
  1545. }
  1546. },
  1547. "autoload": {
  1548. "psr-4": {
  1549. "Fig\\Http\\Message\\": "src/"
  1550. }
  1551. },
  1552. "notification-url": "https://packagist.org/downloads/",
  1553. "license": [
  1554. "MIT"
  1555. ],
  1556. "authors": [
  1557. {
  1558. "name": "PHP-FIG",
  1559. "homepage": "https://www.php-fig.org/"
  1560. }
  1561. ],
  1562. "description": "Utility classes and constants for use with PSR-7 (psr/http-message)",
  1563. "keywords": [
  1564. "http",
  1565. "http-message",
  1566. "psr",
  1567. "psr-7",
  1568. "request",
  1569. "response"
  1570. ],
  1571. "support": {
  1572. "issues": "https://github.com/php-fig/http-message-util/issues",
  1573. "source": "https://github.com/php-fig/http-message-util/tree/1.1.5"
  1574. },
  1575. "time": "2020-11-24T22:02:12+00:00"
  1576. },
  1577. {
  1578. "name": "firebase/php-jwt",
  1579. "version": "v6.3.1",
  1580. "source": {
  1581. "type": "git",
  1582. "url": "https://github.com/firebase/php-jwt.git",
  1583. "reference": "ddfaddcb520488b42bca3a75e17e9dd53c3667da"
  1584. },
  1585. "dist": {
  1586. "type": "zip",
  1587. "url": "https://api.github.com/repos/firebase/php-jwt/zipball/ddfaddcb520488b42bca3a75e17e9dd53c3667da",
  1588. "reference": "ddfaddcb520488b42bca3a75e17e9dd53c3667da",
  1589. "shasum": ""
  1590. },
  1591. "require": {
  1592. "php": "^7.1||^8.0"
  1593. },
  1594. "require-dev": {
  1595. "guzzlehttp/guzzle": "^6.5||^7.4",
  1596. "phpspec/prophecy-phpunit": "^1.1",
  1597. "phpunit/phpunit": "^7.5||^9.5",
  1598. "psr/cache": "^1.0||^2.0",
  1599. "psr/http-client": "^1.0",
  1600. "psr/http-factory": "^1.0"
  1601. },
  1602. "suggest": {
  1603. "paragonie/sodium_compat": "Support EdDSA (Ed25519) signatures when libsodium is not present"
  1604. },
  1605. "type": "library",
  1606. "autoload": {
  1607. "psr-4": {
  1608. "Firebase\\JWT\\": "src"
  1609. }
  1610. },
  1611. "notification-url": "https://packagist.org/downloads/",
  1612. "license": [
  1613. "BSD-3-Clause"
  1614. ],
  1615. "authors": [
  1616. {
  1617. "name": "Neuman Vong",
  1618. "email": "neuman+pear@twilio.com",
  1619. "role": "Developer"
  1620. },
  1621. {
  1622. "name": "Anant Narayanan",
  1623. "email": "anant@php.net",
  1624. "role": "Developer"
  1625. }
  1626. ],
  1627. "description": "A simple library to encode and decode JSON Web Tokens (JWT) in PHP. Should conform to the current spec.",
  1628. "homepage": "https://github.com/firebase/php-jwt",
  1629. "keywords": [
  1630. "jwt",
  1631. "php"
  1632. ],
  1633. "support": {
  1634. "issues": "https://github.com/firebase/php-jwt/issues",
  1635. "source": "https://github.com/firebase/php-jwt/tree/v6.3.1"
  1636. },
  1637. "time": "2022-11-01T21:20:08+00:00"
  1638. },
  1639. {
  1640. "name": "fruitcake/laravel-cors",
  1641. "version": "v2.2.0",
  1642. "source": {
  1643. "type": "git",
  1644. "url": "https://github.com/fruitcake/laravel-cors.git",
  1645. "reference": "783a74f5e3431d7b9805be8afb60fd0a8f743534"
  1646. },
  1647. "dist": {
  1648. "type": "zip",
  1649. "url": "https://api.github.com/repos/fruitcake/laravel-cors/zipball/783a74f5e3431d7b9805be8afb60fd0a8f743534",
  1650. "reference": "783a74f5e3431d7b9805be8afb60fd0a8f743534",
  1651. "shasum": ""
  1652. },
  1653. "require": {
  1654. "asm89/stack-cors": "^2.0.1",
  1655. "illuminate/contracts": "^6|^7|^8|^9",
  1656. "illuminate/support": "^6|^7|^8|^9",
  1657. "php": ">=7.2"
  1658. },
  1659. "require-dev": {
  1660. "laravel/framework": "^6|^7.24|^8",
  1661. "orchestra/testbench-dusk": "^4|^5|^6|^7",
  1662. "phpunit/phpunit": "^6|^7|^8|^9",
  1663. "squizlabs/php_codesniffer": "^3.5"
  1664. },
  1665. "type": "library",
  1666. "extra": {
  1667. "branch-alias": {
  1668. "dev-master": "2.1-dev"
  1669. },
  1670. "laravel": {
  1671. "providers": [
  1672. "Fruitcake\\Cors\\CorsServiceProvider"
  1673. ]
  1674. }
  1675. },
  1676. "autoload": {
  1677. "psr-4": {
  1678. "Fruitcake\\Cors\\": "src/"
  1679. }
  1680. },
  1681. "notification-url": "https://packagist.org/downloads/",
  1682. "license": [
  1683. "MIT"
  1684. ],
  1685. "authors": [
  1686. {
  1687. "name": "Fruitcake",
  1688. "homepage": "https://fruitcake.nl"
  1689. },
  1690. {
  1691. "name": "Barry vd. Heuvel",
  1692. "email": "barryvdh@gmail.com"
  1693. }
  1694. ],
  1695. "description": "Adds CORS (Cross-Origin Resource Sharing) headers support in your Laravel application",
  1696. "keywords": [
  1697. "api",
  1698. "cors",
  1699. "crossdomain",
  1700. "laravel"
  1701. ],
  1702. "support": {
  1703. "issues": "https://github.com/fruitcake/laravel-cors/issues",
  1704. "source": "https://github.com/fruitcake/laravel-cors/tree/v2.2.0"
  1705. },
  1706. "funding": [
  1707. {
  1708. "url": "https://fruitcake.nl",
  1709. "type": "custom"
  1710. },
  1711. {
  1712. "url": "https://github.com/barryvdh",
  1713. "type": "github"
  1714. }
  1715. ],
  1716. "time": "2022-02-23T14:25:13+00:00"
  1717. },
  1718. {
  1719. "name": "fruitcake/php-cors",
  1720. "version": "v1.2.0",
  1721. "source": {
  1722. "type": "git",
  1723. "url": "https://github.com/fruitcake/php-cors.git",
  1724. "reference": "58571acbaa5f9f462c9c77e911700ac66f446d4e"
  1725. },
  1726. "dist": {
  1727. "type": "zip",
  1728. "url": "https://api.github.com/repos/fruitcake/php-cors/zipball/58571acbaa5f9f462c9c77e911700ac66f446d4e",
  1729. "reference": "58571acbaa5f9f462c9c77e911700ac66f446d4e",
  1730. "shasum": ""
  1731. },
  1732. "require": {
  1733. "php": "^7.4|^8.0",
  1734. "symfony/http-foundation": "^4.4|^5.4|^6"
  1735. },
  1736. "require-dev": {
  1737. "phpstan/phpstan": "^1.4",
  1738. "phpunit/phpunit": "^9",
  1739. "squizlabs/php_codesniffer": "^3.5"
  1740. },
  1741. "type": "library",
  1742. "extra": {
  1743. "branch-alias": {
  1744. "dev-main": "1.1-dev"
  1745. }
  1746. },
  1747. "autoload": {
  1748. "psr-4": {
  1749. "Fruitcake\\Cors\\": "src/"
  1750. }
  1751. },
  1752. "notification-url": "https://packagist.org/downloads/",
  1753. "license": [
  1754. "MIT"
  1755. ],
  1756. "authors": [
  1757. {
  1758. "name": "Fruitcake",
  1759. "homepage": "https://fruitcake.nl"
  1760. },
  1761. {
  1762. "name": "Barryvdh",
  1763. "email": "barryvdh@gmail.com"
  1764. }
  1765. ],
  1766. "description": "Cross-origin resource sharing library for the Symfony HttpFoundation",
  1767. "homepage": "https://github.com/fruitcake/php-cors",
  1768. "keywords": [
  1769. "cors",
  1770. "laravel",
  1771. "symfony"
  1772. ],
  1773. "support": {
  1774. "issues": "https://github.com/fruitcake/php-cors/issues",
  1775. "source": "https://github.com/fruitcake/php-cors/tree/v1.2.0"
  1776. },
  1777. "funding": [
  1778. {
  1779. "url": "https://fruitcake.nl",
  1780. "type": "custom"
  1781. },
  1782. {
  1783. "url": "https://github.com/barryvdh",
  1784. "type": "github"
  1785. }
  1786. ],
  1787. "time": "2022-02-20T15:07:15+00:00"
  1788. },
  1789. {
  1790. "name": "graham-campbell/result-type",
  1791. "version": "v1.1.0",
  1792. "source": {
  1793. "type": "git",
  1794. "url": "https://github.com/GrahamCampbell/Result-Type.git",
  1795. "reference": "a878d45c1914464426dc94da61c9e1d36ae262a8"
  1796. },
  1797. "dist": {
  1798. "type": "zip",
  1799. "url": "https://api.github.com/repos/GrahamCampbell/Result-Type/zipball/a878d45c1914464426dc94da61c9e1d36ae262a8",
  1800. "reference": "a878d45c1914464426dc94da61c9e1d36ae262a8",
  1801. "shasum": ""
  1802. },
  1803. "require": {
  1804. "php": "^7.2.5 || ^8.0",
  1805. "phpoption/phpoption": "^1.9"
  1806. },
  1807. "require-dev": {
  1808. "phpunit/phpunit": "^8.5.28 || ^9.5.21"
  1809. },
  1810. "type": "library",
  1811. "autoload": {
  1812. "psr-4": {
  1813. "GrahamCampbell\\ResultType\\": "src/"
  1814. }
  1815. },
  1816. "notification-url": "https://packagist.org/downloads/",
  1817. "license": [
  1818. "MIT"
  1819. ],
  1820. "authors": [
  1821. {
  1822. "name": "Graham Campbell",
  1823. "email": "hello@gjcampbell.co.uk",
  1824. "homepage": "https://github.com/GrahamCampbell"
  1825. }
  1826. ],
  1827. "description": "An Implementation Of The Result Type",
  1828. "keywords": [
  1829. "Graham Campbell",
  1830. "GrahamCampbell",
  1831. "Result Type",
  1832. "Result-Type",
  1833. "result"
  1834. ],
  1835. "support": {
  1836. "issues": "https://github.com/GrahamCampbell/Result-Type/issues",
  1837. "source": "https://github.com/GrahamCampbell/Result-Type/tree/v1.1.0"
  1838. },
  1839. "funding": [
  1840. {
  1841. "url": "https://github.com/GrahamCampbell",
  1842. "type": "github"
  1843. },
  1844. {
  1845. "url": "https://tidelift.com/funding/github/packagist/graham-campbell/result-type",
  1846. "type": "tidelift"
  1847. }
  1848. ],
  1849. "time": "2022-07-30T15:56:11+00:00"
  1850. },
  1851. {
  1852. "name": "guzzlehttp/guzzle",
  1853. "version": "7.5.0",
  1854. "source": {
  1855. "type": "git",
  1856. "url": "https://github.com/guzzle/guzzle.git",
  1857. "reference": "b50a2a1251152e43f6a37f0fa053e730a67d25ba"
  1858. },
  1859. "dist": {
  1860. "type": "zip",
  1861. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/b50a2a1251152e43f6a37f0fa053e730a67d25ba",
  1862. "reference": "b50a2a1251152e43f6a37f0fa053e730a67d25ba",
  1863. "shasum": ""
  1864. },
  1865. "require": {
  1866. "ext-json": "*",
  1867. "guzzlehttp/promises": "^1.5",
  1868. "guzzlehttp/psr7": "^1.9 || ^2.4",
  1869. "php": "^7.2.5 || ^8.0",
  1870. "psr/http-client": "^1.0",
  1871. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  1872. },
  1873. "provide": {
  1874. "psr/http-client-implementation": "1.0"
  1875. },
  1876. "require-dev": {
  1877. "bamarni/composer-bin-plugin": "^1.8.1",
  1878. "ext-curl": "*",
  1879. "php-http/client-integration-tests": "^3.0",
  1880. "phpunit/phpunit": "^8.5.29 || ^9.5.23",
  1881. "psr/log": "^1.1 || ^2.0 || ^3.0"
  1882. },
  1883. "suggest": {
  1884. "ext-curl": "Required for CURL handler support",
  1885. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  1886. "psr/log": "Required for using the Log middleware"
  1887. },
  1888. "type": "library",
  1889. "extra": {
  1890. "bamarni-bin": {
  1891. "bin-links": true,
  1892. "forward-command": false
  1893. },
  1894. "branch-alias": {
  1895. "dev-master": "7.5-dev"
  1896. }
  1897. },
  1898. "autoload": {
  1899. "files": [
  1900. "src/functions_include.php"
  1901. ],
  1902. "psr-4": {
  1903. "GuzzleHttp\\": "src/"
  1904. }
  1905. },
  1906. "notification-url": "https://packagist.org/downloads/",
  1907. "license": [
  1908. "MIT"
  1909. ],
  1910. "authors": [
  1911. {
  1912. "name": "Graham Campbell",
  1913. "email": "hello@gjcampbell.co.uk",
  1914. "homepage": "https://github.com/GrahamCampbell"
  1915. },
  1916. {
  1917. "name": "Michael Dowling",
  1918. "email": "mtdowling@gmail.com",
  1919. "homepage": "https://github.com/mtdowling"
  1920. },
  1921. {
  1922. "name": "Jeremy Lindblom",
  1923. "email": "jeremeamia@gmail.com",
  1924. "homepage": "https://github.com/jeremeamia"
  1925. },
  1926. {
  1927. "name": "George Mponos",
  1928. "email": "gmponos@gmail.com",
  1929. "homepage": "https://github.com/gmponos"
  1930. },
  1931. {
  1932. "name": "Tobias Nyholm",
  1933. "email": "tobias.nyholm@gmail.com",
  1934. "homepage": "https://github.com/Nyholm"
  1935. },
  1936. {
  1937. "name": "Márk Sági-Kazár",
  1938. "email": "mark.sagikazar@gmail.com",
  1939. "homepage": "https://github.com/sagikazarmark"
  1940. },
  1941. {
  1942. "name": "Tobias Schultze",
  1943. "email": "webmaster@tubo-world.de",
  1944. "homepage": "https://github.com/Tobion"
  1945. }
  1946. ],
  1947. "description": "Guzzle is a PHP HTTP client library",
  1948. "keywords": [
  1949. "client",
  1950. "curl",
  1951. "framework",
  1952. "http",
  1953. "http client",
  1954. "psr-18",
  1955. "psr-7",
  1956. "rest",
  1957. "web service"
  1958. ],
  1959. "support": {
  1960. "issues": "https://github.com/guzzle/guzzle/issues",
  1961. "source": "https://github.com/guzzle/guzzle/tree/7.5.0"
  1962. },
  1963. "funding": [
  1964. {
  1965. "url": "https://github.com/GrahamCampbell",
  1966. "type": "github"
  1967. },
  1968. {
  1969. "url": "https://github.com/Nyholm",
  1970. "type": "github"
  1971. },
  1972. {
  1973. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
  1974. "type": "tidelift"
  1975. }
  1976. ],
  1977. "time": "2022-08-28T15:39:27+00:00"
  1978. },
  1979. {
  1980. "name": "guzzlehttp/promises",
  1981. "version": "1.5.2",
  1982. "source": {
  1983. "type": "git",
  1984. "url": "https://github.com/guzzle/promises.git",
  1985. "reference": "b94b2807d85443f9719887892882d0329d1e2598"
  1986. },
  1987. "dist": {
  1988. "type": "zip",
  1989. "url": "https://api.github.com/repos/guzzle/promises/zipball/b94b2807d85443f9719887892882d0329d1e2598",
  1990. "reference": "b94b2807d85443f9719887892882d0329d1e2598",
  1991. "shasum": ""
  1992. },
  1993. "require": {
  1994. "php": ">=5.5"
  1995. },
  1996. "require-dev": {
  1997. "symfony/phpunit-bridge": "^4.4 || ^5.1"
  1998. },
  1999. "type": "library",
  2000. "extra": {
  2001. "branch-alias": {
  2002. "dev-master": "1.5-dev"
  2003. }
  2004. },
  2005. "autoload": {
  2006. "files": [
  2007. "src/functions_include.php"
  2008. ],
  2009. "psr-4": {
  2010. "GuzzleHttp\\Promise\\": "src/"
  2011. }
  2012. },
  2013. "notification-url": "https://packagist.org/downloads/",
  2014. "license": [
  2015. "MIT"
  2016. ],
  2017. "authors": [
  2018. {
  2019. "name": "Graham Campbell",
  2020. "email": "hello@gjcampbell.co.uk",
  2021. "homepage": "https://github.com/GrahamCampbell"
  2022. },
  2023. {
  2024. "name": "Michael Dowling",
  2025. "email": "mtdowling@gmail.com",
  2026. "homepage": "https://github.com/mtdowling"
  2027. },
  2028. {
  2029. "name": "Tobias Nyholm",
  2030. "email": "tobias.nyholm@gmail.com",
  2031. "homepage": "https://github.com/Nyholm"
  2032. },
  2033. {
  2034. "name": "Tobias Schultze",
  2035. "email": "webmaster@tubo-world.de",
  2036. "homepage": "https://github.com/Tobion"
  2037. }
  2038. ],
  2039. "description": "Guzzle promises library",
  2040. "keywords": [
  2041. "promise"
  2042. ],
  2043. "support": {
  2044. "issues": "https://github.com/guzzle/promises/issues",
  2045. "source": "https://github.com/guzzle/promises/tree/1.5.2"
  2046. },
  2047. "funding": [
  2048. {
  2049. "url": "https://github.com/GrahamCampbell",
  2050. "type": "github"
  2051. },
  2052. {
  2053. "url": "https://github.com/Nyholm",
  2054. "type": "github"
  2055. },
  2056. {
  2057. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  2058. "type": "tidelift"
  2059. }
  2060. ],
  2061. "time": "2022-08-28T14:55:35+00:00"
  2062. },
  2063. {
  2064. "name": "guzzlehttp/psr7",
  2065. "version": "2.4.3",
  2066. "source": {
  2067. "type": "git",
  2068. "url": "https://github.com/guzzle/psr7.git",
  2069. "reference": "67c26b443f348a51926030c83481b85718457d3d"
  2070. },
  2071. "dist": {
  2072. "type": "zip",
  2073. "url": "https://api.github.com/repos/guzzle/psr7/zipball/67c26b443f348a51926030c83481b85718457d3d",
  2074. "reference": "67c26b443f348a51926030c83481b85718457d3d",
  2075. "shasum": ""
  2076. },
  2077. "require": {
  2078. "php": "^7.2.5 || ^8.0",
  2079. "psr/http-factory": "^1.0",
  2080. "psr/http-message": "^1.0",
  2081. "ralouphie/getallheaders": "^3.0"
  2082. },
  2083. "provide": {
  2084. "psr/http-factory-implementation": "1.0",
  2085. "psr/http-message-implementation": "1.0"
  2086. },
  2087. "require-dev": {
  2088. "bamarni/composer-bin-plugin": "^1.8.1",
  2089. "http-interop/http-factory-tests": "^0.9",
  2090. "phpunit/phpunit": "^8.5.29 || ^9.5.23"
  2091. },
  2092. "suggest": {
  2093. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  2094. },
  2095. "type": "library",
  2096. "extra": {
  2097. "bamarni-bin": {
  2098. "bin-links": true,
  2099. "forward-command": false
  2100. },
  2101. "branch-alias": {
  2102. "dev-master": "2.4-dev"
  2103. }
  2104. },
  2105. "autoload": {
  2106. "psr-4": {
  2107. "GuzzleHttp\\Psr7\\": "src/"
  2108. }
  2109. },
  2110. "notification-url": "https://packagist.org/downloads/",
  2111. "license": [
  2112. "MIT"
  2113. ],
  2114. "authors": [
  2115. {
  2116. "name": "Graham Campbell",
  2117. "email": "hello@gjcampbell.co.uk",
  2118. "homepage": "https://github.com/GrahamCampbell"
  2119. },
  2120. {
  2121. "name": "Michael Dowling",
  2122. "email": "mtdowling@gmail.com",
  2123. "homepage": "https://github.com/mtdowling"
  2124. },
  2125. {
  2126. "name": "George Mponos",
  2127. "email": "gmponos@gmail.com",
  2128. "homepage": "https://github.com/gmponos"
  2129. },
  2130. {
  2131. "name": "Tobias Nyholm",
  2132. "email": "tobias.nyholm@gmail.com",
  2133. "homepage": "https://github.com/Nyholm"
  2134. },
  2135. {
  2136. "name": "Márk Sági-Kazár",
  2137. "email": "mark.sagikazar@gmail.com",
  2138. "homepage": "https://github.com/sagikazarmark"
  2139. },
  2140. {
  2141. "name": "Tobias Schultze",
  2142. "email": "webmaster@tubo-world.de",
  2143. "homepage": "https://github.com/Tobion"
  2144. },
  2145. {
  2146. "name": "Márk Sági-Kazár",
  2147. "email": "mark.sagikazar@gmail.com",
  2148. "homepage": "https://sagikazarmark.hu"
  2149. }
  2150. ],
  2151. "description": "PSR-7 message implementation that also provides common utility methods",
  2152. "keywords": [
  2153. "http",
  2154. "message",
  2155. "psr-7",
  2156. "request",
  2157. "response",
  2158. "stream",
  2159. "uri",
  2160. "url"
  2161. ],
  2162. "support": {
  2163. "issues": "https://github.com/guzzle/psr7/issues",
  2164. "source": "https://github.com/guzzle/psr7/tree/2.4.3"
  2165. },
  2166. "funding": [
  2167. {
  2168. "url": "https://github.com/GrahamCampbell",
  2169. "type": "github"
  2170. },
  2171. {
  2172. "url": "https://github.com/Nyholm",
  2173. "type": "github"
  2174. },
  2175. {
  2176. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  2177. "type": "tidelift"
  2178. }
  2179. ],
  2180. "time": "2022-10-26T14:07:24+00:00"
  2181. },
  2182. {
  2183. "name": "intervention/image",
  2184. "version": "2.7.2",
  2185. "source": {
  2186. "type": "git",
  2187. "url": "https://github.com/Intervention/image.git",
  2188. "reference": "04be355f8d6734c826045d02a1079ad658322dad"
  2189. },
  2190. "dist": {
  2191. "type": "zip",
  2192. "url": "https://api.github.com/repos/Intervention/image/zipball/04be355f8d6734c826045d02a1079ad658322dad",
  2193. "reference": "04be355f8d6734c826045d02a1079ad658322dad",
  2194. "shasum": ""
  2195. },
  2196. "require": {
  2197. "ext-fileinfo": "*",
  2198. "guzzlehttp/psr7": "~1.1 || ^2.0",
  2199. "php": ">=5.4.0"
  2200. },
  2201. "require-dev": {
  2202. "mockery/mockery": "~0.9.2",
  2203. "phpunit/phpunit": "^4.8 || ^5.7 || ^7.5.15"
  2204. },
  2205. "suggest": {
  2206. "ext-gd": "to use GD library based image processing.",
  2207. "ext-imagick": "to use Imagick based image processing.",
  2208. "intervention/imagecache": "Caching extension for the Intervention Image library"
  2209. },
  2210. "type": "library",
  2211. "extra": {
  2212. "branch-alias": {
  2213. "dev-master": "2.4-dev"
  2214. },
  2215. "laravel": {
  2216. "providers": [
  2217. "Intervention\\Image\\ImageServiceProvider"
  2218. ],
  2219. "aliases": {
  2220. "Image": "Intervention\\Image\\Facades\\Image"
  2221. }
  2222. }
  2223. },
  2224. "autoload": {
  2225. "psr-4": {
  2226. "Intervention\\Image\\": "src/Intervention/Image"
  2227. }
  2228. },
  2229. "notification-url": "https://packagist.org/downloads/",
  2230. "license": [
  2231. "MIT"
  2232. ],
  2233. "authors": [
  2234. {
  2235. "name": "Oliver Vogel",
  2236. "email": "oliver@intervention.io",
  2237. "homepage": "https://intervention.io/"
  2238. }
  2239. ],
  2240. "description": "Image handling and manipulation library with support for Laravel integration",
  2241. "homepage": "http://image.intervention.io/",
  2242. "keywords": [
  2243. "gd",
  2244. "image",
  2245. "imagick",
  2246. "laravel",
  2247. "thumbnail",
  2248. "watermark"
  2249. ],
  2250. "support": {
  2251. "issues": "https://github.com/Intervention/image/issues",
  2252. "source": "https://github.com/Intervention/image/tree/2.7.2"
  2253. },
  2254. "funding": [
  2255. {
  2256. "url": "https://paypal.me/interventionio",
  2257. "type": "custom"
  2258. },
  2259. {
  2260. "url": "https://github.com/Intervention",
  2261. "type": "github"
  2262. }
  2263. ],
  2264. "time": "2022-05-21T17:30:32+00:00"
  2265. },
  2266. {
  2267. "name": "jaybizzle/crawler-detect",
  2268. "version": "v1.2.112",
  2269. "source": {
  2270. "type": "git",
  2271. "url": "https://github.com/JayBizzle/Crawler-Detect.git",
  2272. "reference": "2c555ce35a07a5c1c808cee7d5bb52c41a4c7b2f"
  2273. },
  2274. "dist": {
  2275. "type": "zip",
  2276. "url": "https://api.github.com/repos/JayBizzle/Crawler-Detect/zipball/2c555ce35a07a5c1c808cee7d5bb52c41a4c7b2f",
  2277. "reference": "2c555ce35a07a5c1c808cee7d5bb52c41a4c7b2f",
  2278. "shasum": ""
  2279. },
  2280. "require": {
  2281. "php": ">=5.3.0"
  2282. },
  2283. "require-dev": {
  2284. "phpunit/phpunit": "^4.8|^5.5|^6.5|^9.4"
  2285. },
  2286. "type": "library",
  2287. "autoload": {
  2288. "psr-4": {
  2289. "Jaybizzle\\CrawlerDetect\\": "src/"
  2290. }
  2291. },
  2292. "notification-url": "https://packagist.org/downloads/",
  2293. "license": [
  2294. "MIT"
  2295. ],
  2296. "authors": [
  2297. {
  2298. "name": "Mark Beech",
  2299. "email": "m@rkbee.ch",
  2300. "role": "Developer"
  2301. }
  2302. ],
  2303. "description": "CrawlerDetect is a PHP class for detecting bots/crawlers/spiders via the user agent",
  2304. "homepage": "https://github.com/JayBizzle/Crawler-Detect/",
  2305. "keywords": [
  2306. "crawler",
  2307. "crawler detect",
  2308. "crawler detector",
  2309. "crawlerdetect",
  2310. "php crawler detect"
  2311. ],
  2312. "support": {
  2313. "issues": "https://github.com/JayBizzle/Crawler-Detect/issues",
  2314. "source": "https://github.com/JayBizzle/Crawler-Detect/tree/v1.2.112"
  2315. },
  2316. "time": "2022-10-05T21:52:44+00:00"
  2317. },
  2318. {
  2319. "name": "jenssegers/agent",
  2320. "version": "v2.6.4",
  2321. "source": {
  2322. "type": "git",
  2323. "url": "https://github.com/jenssegers/agent.git",
  2324. "reference": "daa11c43729510b3700bc34d414664966b03bffe"
  2325. },
  2326. "dist": {
  2327. "type": "zip",
  2328. "url": "https://api.github.com/repos/jenssegers/agent/zipball/daa11c43729510b3700bc34d414664966b03bffe",
  2329. "reference": "daa11c43729510b3700bc34d414664966b03bffe",
  2330. "shasum": ""
  2331. },
  2332. "require": {
  2333. "jaybizzle/crawler-detect": "^1.2",
  2334. "mobiledetect/mobiledetectlib": "^2.7.6",
  2335. "php": ">=5.6"
  2336. },
  2337. "require-dev": {
  2338. "php-coveralls/php-coveralls": "^2.1",
  2339. "phpunit/phpunit": "^5.0|^6.0|^7.0"
  2340. },
  2341. "suggest": {
  2342. "illuminate/support": "Required for laravel service providers"
  2343. },
  2344. "type": "library",
  2345. "extra": {
  2346. "branch-alias": {
  2347. "dev-master": "3.0-dev"
  2348. },
  2349. "laravel": {
  2350. "providers": [
  2351. "Jenssegers\\Agent\\AgentServiceProvider"
  2352. ],
  2353. "aliases": {
  2354. "Agent": "Jenssegers\\Agent\\Facades\\Agent"
  2355. }
  2356. }
  2357. },
  2358. "autoload": {
  2359. "psr-4": {
  2360. "Jenssegers\\Agent\\": "src/"
  2361. }
  2362. },
  2363. "notification-url": "https://packagist.org/downloads/",
  2364. "license": [
  2365. "MIT"
  2366. ],
  2367. "authors": [
  2368. {
  2369. "name": "Jens Segers",
  2370. "homepage": "https://jenssegers.com"
  2371. }
  2372. ],
  2373. "description": "Desktop/mobile user agent parser with support for Laravel, based on Mobiledetect",
  2374. "homepage": "https://github.com/jenssegers/agent",
  2375. "keywords": [
  2376. "Agent",
  2377. "browser",
  2378. "desktop",
  2379. "laravel",
  2380. "mobile",
  2381. "platform",
  2382. "user agent",
  2383. "useragent"
  2384. ],
  2385. "support": {
  2386. "issues": "https://github.com/jenssegers/agent/issues",
  2387. "source": "https://github.com/jenssegers/agent/tree/v2.6.4"
  2388. },
  2389. "funding": [
  2390. {
  2391. "url": "https://github.com/jenssegers",
  2392. "type": "github"
  2393. },
  2394. {
  2395. "url": "https://tidelift.com/funding/github/packagist/jenssegers/agent",
  2396. "type": "tidelift"
  2397. }
  2398. ],
  2399. "time": "2020-06-13T08:05:20+00:00"
  2400. },
  2401. {
  2402. "name": "laravel/framework",
  2403. "version": "v9.43.0",
  2404. "source": {
  2405. "type": "git",
  2406. "url": "https://github.com/laravel/framework.git",
  2407. "reference": "011f2e1d49a11c22519a7899b46ddf3bc5b0f40b"
  2408. },
  2409. "dist": {
  2410. "type": "zip",
  2411. "url": "https://api.github.com/repos/laravel/framework/zipball/011f2e1d49a11c22519a7899b46ddf3bc5b0f40b",
  2412. "reference": "011f2e1d49a11c22519a7899b46ddf3bc5b0f40b",
  2413. "shasum": ""
  2414. },
  2415. "require": {
  2416. "doctrine/inflector": "^2.0",
  2417. "dragonmantank/cron-expression": "^3.3.2",
  2418. "egulias/email-validator": "^3.2.1",
  2419. "ext-mbstring": "*",
  2420. "ext-openssl": "*",
  2421. "fruitcake/php-cors": "^1.2",
  2422. "laravel/serializable-closure": "^1.2.2",
  2423. "league/commonmark": "^2.2",
  2424. "league/flysystem": "^3.8.0",
  2425. "monolog/monolog": "^2.0",
  2426. "nesbot/carbon": "^2.62.1",
  2427. "nunomaduro/termwind": "^1.13",
  2428. "php": "^8.0.2",
  2429. "psr/container": "^1.1.1|^2.0.1",
  2430. "psr/log": "^1.0|^2.0|^3.0",
  2431. "psr/simple-cache": "^1.0|^2.0|^3.0",
  2432. "ramsey/uuid": "^4.2.2",
  2433. "symfony/console": "^6.0.9",
  2434. "symfony/error-handler": "^6.0",
  2435. "symfony/finder": "^6.0",
  2436. "symfony/http-foundation": "^6.0",
  2437. "symfony/http-kernel": "^6.0",
  2438. "symfony/mailer": "^6.0",
  2439. "symfony/mime": "^6.0",
  2440. "symfony/process": "^6.0",
  2441. "symfony/routing": "^6.0",
  2442. "symfony/uid": "^6.0",
  2443. "symfony/var-dumper": "^6.0",
  2444. "tijsverkoyen/css-to-inline-styles": "^2.2.5",
  2445. "vlucas/phpdotenv": "^5.4.1",
  2446. "voku/portable-ascii": "^2.0"
  2447. },
  2448. "conflict": {
  2449. "tightenco/collect": "<5.5.33"
  2450. },
  2451. "provide": {
  2452. "psr/container-implementation": "1.1|2.0",
  2453. "psr/simple-cache-implementation": "1.0|2.0|3.0"
  2454. },
  2455. "replace": {
  2456. "illuminate/auth": "self.version",
  2457. "illuminate/broadcasting": "self.version",
  2458. "illuminate/bus": "self.version",
  2459. "illuminate/cache": "self.version",
  2460. "illuminate/collections": "self.version",
  2461. "illuminate/conditionable": "self.version",
  2462. "illuminate/config": "self.version",
  2463. "illuminate/console": "self.version",
  2464. "illuminate/container": "self.version",
  2465. "illuminate/contracts": "self.version",
  2466. "illuminate/cookie": "self.version",
  2467. "illuminate/database": "self.version",
  2468. "illuminate/encryption": "self.version",
  2469. "illuminate/events": "self.version",
  2470. "illuminate/filesystem": "self.version",
  2471. "illuminate/hashing": "self.version",
  2472. "illuminate/http": "self.version",
  2473. "illuminate/log": "self.version",
  2474. "illuminate/macroable": "self.version",
  2475. "illuminate/mail": "self.version",
  2476. "illuminate/notifications": "self.version",
  2477. "illuminate/pagination": "self.version",
  2478. "illuminate/pipeline": "self.version",
  2479. "illuminate/queue": "self.version",
  2480. "illuminate/redis": "self.version",
  2481. "illuminate/routing": "self.version",
  2482. "illuminate/session": "self.version",
  2483. "illuminate/support": "self.version",
  2484. "illuminate/testing": "self.version",
  2485. "illuminate/translation": "self.version",
  2486. "illuminate/validation": "self.version",
  2487. "illuminate/view": "self.version"
  2488. },
  2489. "require-dev": {
  2490. "ably/ably-php": "^1.0",
  2491. "aws/aws-sdk-php": "^3.235.5",
  2492. "doctrine/dbal": "^2.13.3|^3.1.4",
  2493. "fakerphp/faker": "^1.9.2",
  2494. "guzzlehttp/guzzle": "^7.5",
  2495. "league/flysystem-aws-s3-v3": "^3.0",
  2496. "league/flysystem-ftp": "^3.0",
  2497. "league/flysystem-path-prefixing": "^3.3",
  2498. "league/flysystem-read-only": "^3.3",
  2499. "league/flysystem-sftp-v3": "^3.0",
  2500. "mockery/mockery": "^1.5.1",
  2501. "orchestra/testbench-core": "^7.11",
  2502. "pda/pheanstalk": "^4.0",
  2503. "phpstan/phpstan": "^1.4.7",
  2504. "phpunit/phpunit": "^9.5.8",
  2505. "predis/predis": "^1.1.9|^2.0.2",
  2506. "symfony/cache": "^6.0"
  2507. },
  2508. "suggest": {
  2509. "ably/ably-php": "Required to use the Ably broadcast driver (^1.0).",
  2510. "aws/aws-sdk-php": "Required to use the SQS queue driver, DynamoDb failed job storage, and SES mail driver (^3.235.5).",
  2511. "brianium/paratest": "Required to run tests in parallel (^6.0).",
  2512. "doctrine/dbal": "Required to rename columns and drop SQLite columns (^2.13.3|^3.1.4).",
  2513. "ext-bcmath": "Required to use the multiple_of validation rule.",
  2514. "ext-ftp": "Required to use the Flysystem FTP driver.",
  2515. "ext-gd": "Required to use Illuminate\\Http\\Testing\\FileFactory::image().",
  2516. "ext-memcached": "Required to use the memcache cache driver.",
  2517. "ext-pcntl": "Required to use all features of the queue worker.",
  2518. "ext-posix": "Required to use all features of the queue worker.",
  2519. "ext-redis": "Required to use the Redis cache and queue drivers (^4.0|^5.0).",
  2520. "fakerphp/faker": "Required to use the eloquent factory builder (^1.9.1).",
  2521. "filp/whoops": "Required for friendly error pages in development (^2.14.3).",
  2522. "guzzlehttp/guzzle": "Required to use the HTTP Client and the ping methods on schedules (^7.5).",
  2523. "laravel/tinker": "Required to use the tinker console command (^2.0).",
  2524. "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (^3.0).",
  2525. "league/flysystem-ftp": "Required to use the Flysystem FTP driver (^3.0).",
  2526. "league/flysystem-path-prefixing": "Required to use the scoped driver (^3.3).",
  2527. "league/flysystem-read-only": "Required to use read-only disks (^3.3)",
  2528. "league/flysystem-sftp-v3": "Required to use the Flysystem SFTP driver (^3.0).",
  2529. "mockery/mockery": "Required to use mocking (^1.5.1).",
  2530. "nyholm/psr7": "Required to use PSR-7 bridging features (^1.2).",
  2531. "pda/pheanstalk": "Required to use the beanstalk queue driver (^4.0).",
  2532. "phpunit/phpunit": "Required to use assertions and run tests (^9.5.8).",
  2533. "predis/predis": "Required to use the predis connector (^1.1.9|^2.0.2).",
  2534. "psr/http-message": "Required to allow Storage::put to accept a StreamInterface (^1.0).",
  2535. "pusher/pusher-php-server": "Required to use the Pusher broadcast driver (^6.0|^7.0).",
  2536. "symfony/cache": "Required to PSR-6 cache bridge (^6.0).",
  2537. "symfony/filesystem": "Required to enable support for relative symbolic links (^6.0).",
  2538. "symfony/http-client": "Required to enable support for the Symfony API mail transports (^6.0).",
  2539. "symfony/mailgun-mailer": "Required to enable support for the Mailgun mail transport (^6.0).",
  2540. "symfony/postmark-mailer": "Required to enable support for the Postmark mail transport (^6.0).",
  2541. "symfony/psr-http-message-bridge": "Required to use PSR-7 bridging features (^2.0)."
  2542. },
  2543. "type": "library",
  2544. "extra": {
  2545. "branch-alias": {
  2546. "dev-master": "9.x-dev"
  2547. }
  2548. },
  2549. "autoload": {
  2550. "files": [
  2551. "src/Illuminate/Collections/helpers.php",
  2552. "src/Illuminate/Events/functions.php",
  2553. "src/Illuminate/Foundation/helpers.php",
  2554. "src/Illuminate/Support/helpers.php"
  2555. ],
  2556. "psr-4": {
  2557. "Illuminate\\": "src/Illuminate/",
  2558. "Illuminate\\Support\\": [
  2559. "src/Illuminate/Macroable/",
  2560. "src/Illuminate/Collections/",
  2561. "src/Illuminate/Conditionable/"
  2562. ]
  2563. }
  2564. },
  2565. "notification-url": "https://packagist.org/downloads/",
  2566. "license": [
  2567. "MIT"
  2568. ],
  2569. "authors": [
  2570. {
  2571. "name": "Taylor Otwell",
  2572. "email": "taylor@laravel.com"
  2573. }
  2574. ],
  2575. "description": "The Laravel Framework.",
  2576. "homepage": "https://laravel.com",
  2577. "keywords": [
  2578. "framework",
  2579. "laravel"
  2580. ],
  2581. "support": {
  2582. "issues": "https://github.com/laravel/framework/issues",
  2583. "source": "https://github.com/laravel/framework"
  2584. },
  2585. "time": "2022-12-06T14:26:07+00:00"
  2586. },
  2587. {
  2588. "name": "laravel/helpers",
  2589. "version": "v1.5.0",
  2590. "source": {
  2591. "type": "git",
  2592. "url": "https://github.com/laravel/helpers.git",
  2593. "reference": "c28b0ccd799d58564c41a62395ac9511a1e72931"
  2594. },
  2595. "dist": {
  2596. "type": "zip",
  2597. "url": "https://api.github.com/repos/laravel/helpers/zipball/c28b0ccd799d58564c41a62395ac9511a1e72931",
  2598. "reference": "c28b0ccd799d58564c41a62395ac9511a1e72931",
  2599. "shasum": ""
  2600. },
  2601. "require": {
  2602. "illuminate/support": "~5.8.0|^6.0|^7.0|^8.0|^9.0",
  2603. "php": "^7.1.3|^8.0"
  2604. },
  2605. "require-dev": {
  2606. "phpunit/phpunit": "^7.0|^8.0|^9.0"
  2607. },
  2608. "type": "library",
  2609. "extra": {
  2610. "branch-alias": {
  2611. "dev-master": "1.x-dev"
  2612. }
  2613. },
  2614. "autoload": {
  2615. "files": [
  2616. "src/helpers.php"
  2617. ]
  2618. },
  2619. "notification-url": "https://packagist.org/downloads/",
  2620. "license": [
  2621. "MIT"
  2622. ],
  2623. "authors": [
  2624. {
  2625. "name": "Taylor Otwell",
  2626. "email": "taylor@laravel.com"
  2627. },
  2628. {
  2629. "name": "Dries Vints",
  2630. "email": "dries@laravel.com"
  2631. }
  2632. ],
  2633. "description": "Provides backwards compatibility for helpers in the latest Laravel release.",
  2634. "keywords": [
  2635. "helpers",
  2636. "laravel"
  2637. ],
  2638. "support": {
  2639. "source": "https://github.com/laravel/helpers/tree/v1.5.0"
  2640. },
  2641. "time": "2022-01-12T15:58:51+00:00"
  2642. },
  2643. {
  2644. "name": "laravel/horizon",
  2645. "version": "v5.10.5",
  2646. "source": {
  2647. "type": "git",
  2648. "url": "https://github.com/laravel/horizon.git",
  2649. "reference": "01b26da26ca8abe3a525a307b1155d52d7293c8d"
  2650. },
  2651. "dist": {
  2652. "type": "zip",
  2653. "url": "https://api.github.com/repos/laravel/horizon/zipball/01b26da26ca8abe3a525a307b1155d52d7293c8d",
  2654. "reference": "01b26da26ca8abe3a525a307b1155d52d7293c8d",
  2655. "shasum": ""
  2656. },
  2657. "require": {
  2658. "ext-json": "*",
  2659. "ext-pcntl": "*",
  2660. "ext-posix": "*",
  2661. "illuminate/contracts": "^8.17|^9.0",
  2662. "illuminate/queue": "^8.17|^9.0",
  2663. "illuminate/support": "^8.17|^9.0",
  2664. "nesbot/carbon": "^2.17",
  2665. "php": "^7.3|^8.0",
  2666. "ramsey/uuid": "^4.0",
  2667. "symfony/error-handler": "^5.0|^6.0",
  2668. "symfony/process": "^5.0|^6.0"
  2669. },
  2670. "require-dev": {
  2671. "mockery/mockery": "^1.0",
  2672. "orchestra/testbench": "^6.0|^7.0",
  2673. "phpunit/phpunit": "^9.0",
  2674. "predis/predis": "^1.1|^2.0"
  2675. },
  2676. "suggest": {
  2677. "ext-redis": "Required to use the Redis PHP driver.",
  2678. "predis/predis": "Required when not using the Redis PHP driver (^1.1|^2.0)."
  2679. },
  2680. "type": "library",
  2681. "extra": {
  2682. "branch-alias": {
  2683. "dev-master": "5.x-dev"
  2684. },
  2685. "laravel": {
  2686. "providers": [
  2687. "Laravel\\Horizon\\HorizonServiceProvider"
  2688. ],
  2689. "aliases": {
  2690. "Horizon": "Laravel\\Horizon\\Horizon"
  2691. }
  2692. }
  2693. },
  2694. "autoload": {
  2695. "psr-4": {
  2696. "Laravel\\Horizon\\": "src/"
  2697. }
  2698. },
  2699. "notification-url": "https://packagist.org/downloads/",
  2700. "license": [
  2701. "MIT"
  2702. ],
  2703. "authors": [
  2704. {
  2705. "name": "Taylor Otwell",
  2706. "email": "taylor@laravel.com"
  2707. }
  2708. ],
  2709. "description": "Dashboard and code-driven configuration for Laravel queues.",
  2710. "keywords": [
  2711. "laravel",
  2712. "queue"
  2713. ],
  2714. "support": {
  2715. "issues": "https://github.com/laravel/horizon/issues",
  2716. "source": "https://github.com/laravel/horizon/tree/v5.10.5"
  2717. },
  2718. "time": "2022-11-25T15:57:02+00:00"
  2719. },
  2720. {
  2721. "name": "laravel/passport",
  2722. "version": "v10.4.1",
  2723. "source": {
  2724. "type": "git",
  2725. "url": "https://github.com/laravel/passport.git",
  2726. "reference": "b62b418a6d9e9aca231a587be0fc14dc55cd8d77"
  2727. },
  2728. "dist": {
  2729. "type": "zip",
  2730. "url": "https://api.github.com/repos/laravel/passport/zipball/b62b418a6d9e9aca231a587be0fc14dc55cd8d77",
  2731. "reference": "b62b418a6d9e9aca231a587be0fc14dc55cd8d77",
  2732. "shasum": ""
  2733. },
  2734. "require": {
  2735. "ext-json": "*",
  2736. "firebase/php-jwt": "^6.0",
  2737. "illuminate/auth": "^8.37|^9.0",
  2738. "illuminate/console": "^8.37|^9.0",
  2739. "illuminate/container": "^8.37|^9.0",
  2740. "illuminate/contracts": "^8.37|^9.0",
  2741. "illuminate/cookie": "^8.37|^9.0",
  2742. "illuminate/database": "^8.37|^9.0",
  2743. "illuminate/encryption": "^8.37|^9.0",
  2744. "illuminate/http": "^8.37|^9.0",
  2745. "illuminate/support": "^8.37|^9.0",
  2746. "lcobucci/jwt": "^3.4|^4.0",
  2747. "league/oauth2-server": "^8.2",
  2748. "nyholm/psr7": "^1.3",
  2749. "php": "^7.3|^8.0",
  2750. "phpseclib/phpseclib": "^2.0|^3.0",
  2751. "symfony/psr-http-message-bridge": "^2.0"
  2752. },
  2753. "require-dev": {
  2754. "mockery/mockery": "^1.0",
  2755. "orchestra/testbench": "^6.0|^7.0",
  2756. "phpunit/phpunit": "^9.3"
  2757. },
  2758. "type": "library",
  2759. "extra": {
  2760. "branch-alias": {
  2761. "dev-master": "10.x-dev"
  2762. },
  2763. "laravel": {
  2764. "providers": [
  2765. "Laravel\\Passport\\PassportServiceProvider"
  2766. ]
  2767. }
  2768. },
  2769. "autoload": {
  2770. "psr-4": {
  2771. "Laravel\\Passport\\": "src/",
  2772. "Laravel\\Passport\\Database\\Factories\\": "database/factories/"
  2773. }
  2774. },
  2775. "notification-url": "https://packagist.org/downloads/",
  2776. "license": [
  2777. "MIT"
  2778. ],
  2779. "authors": [
  2780. {
  2781. "name": "Taylor Otwell",
  2782. "email": "taylor@laravel.com"
  2783. }
  2784. ],
  2785. "description": "Laravel Passport provides OAuth2 server support to Laravel.",
  2786. "keywords": [
  2787. "laravel",
  2788. "oauth",
  2789. "passport"
  2790. ],
  2791. "support": {
  2792. "issues": "https://github.com/laravel/passport/issues",
  2793. "source": "https://github.com/laravel/passport"
  2794. },
  2795. "time": "2022-04-16T13:38:08+00:00"
  2796. },
  2797. {
  2798. "name": "laravel/serializable-closure",
  2799. "version": "v1.2.2",
  2800. "source": {
  2801. "type": "git",
  2802. "url": "https://github.com/laravel/serializable-closure.git",
  2803. "reference": "47afb7fae28ed29057fdca37e16a84f90cc62fae"
  2804. },
  2805. "dist": {
  2806. "type": "zip",
  2807. "url": "https://api.github.com/repos/laravel/serializable-closure/zipball/47afb7fae28ed29057fdca37e16a84f90cc62fae",
  2808. "reference": "47afb7fae28ed29057fdca37e16a84f90cc62fae",
  2809. "shasum": ""
  2810. },
  2811. "require": {
  2812. "php": "^7.3|^8.0"
  2813. },
  2814. "require-dev": {
  2815. "nesbot/carbon": "^2.61",
  2816. "pestphp/pest": "^1.21.3",
  2817. "phpstan/phpstan": "^1.8.2",
  2818. "symfony/var-dumper": "^5.4.11"
  2819. },
  2820. "type": "library",
  2821. "extra": {
  2822. "branch-alias": {
  2823. "dev-master": "1.x-dev"
  2824. }
  2825. },
  2826. "autoload": {
  2827. "psr-4": {
  2828. "Laravel\\SerializableClosure\\": "src/"
  2829. }
  2830. },
  2831. "notification-url": "https://packagist.org/downloads/",
  2832. "license": [
  2833. "MIT"
  2834. ],
  2835. "authors": [
  2836. {
  2837. "name": "Taylor Otwell",
  2838. "email": "taylor@laravel.com"
  2839. },
  2840. {
  2841. "name": "Nuno Maduro",
  2842. "email": "nuno@laravel.com"
  2843. }
  2844. ],
  2845. "description": "Laravel Serializable Closure provides an easy and secure way to serialize closures in PHP.",
  2846. "keywords": [
  2847. "closure",
  2848. "laravel",
  2849. "serializable"
  2850. ],
  2851. "support": {
  2852. "issues": "https://github.com/laravel/serializable-closure/issues",
  2853. "source": "https://github.com/laravel/serializable-closure"
  2854. },
  2855. "time": "2022-09-08T13:45:54+00:00"
  2856. },
  2857. {
  2858. "name": "laravel/tinker",
  2859. "version": "v2.7.3",
  2860. "source": {
  2861. "type": "git",
  2862. "url": "https://github.com/laravel/tinker.git",
  2863. "reference": "5062061b4924af3392225dd482ca7b4d85d8b8ef"
  2864. },
  2865. "dist": {
  2866. "type": "zip",
  2867. "url": "https://api.github.com/repos/laravel/tinker/zipball/5062061b4924af3392225dd482ca7b4d85d8b8ef",
  2868. "reference": "5062061b4924af3392225dd482ca7b4d85d8b8ef",
  2869. "shasum": ""
  2870. },
  2871. "require": {
  2872. "illuminate/console": "^6.0|^7.0|^8.0|^9.0",
  2873. "illuminate/contracts": "^6.0|^7.0|^8.0|^9.0",
  2874. "illuminate/support": "^6.0|^7.0|^8.0|^9.0",
  2875. "php": "^7.2.5|^8.0",
  2876. "psy/psysh": "^0.10.4|^0.11.1",
  2877. "symfony/var-dumper": "^4.3.4|^5.0|^6.0"
  2878. },
  2879. "require-dev": {
  2880. "mockery/mockery": "~1.3.3|^1.4.2",
  2881. "phpunit/phpunit": "^8.5.8|^9.3.3"
  2882. },
  2883. "suggest": {
  2884. "illuminate/database": "The Illuminate Database package (^6.0|^7.0|^8.0|^9.0)."
  2885. },
  2886. "type": "library",
  2887. "extra": {
  2888. "branch-alias": {
  2889. "dev-master": "2.x-dev"
  2890. },
  2891. "laravel": {
  2892. "providers": [
  2893. "Laravel\\Tinker\\TinkerServiceProvider"
  2894. ]
  2895. }
  2896. },
  2897. "autoload": {
  2898. "psr-4": {
  2899. "Laravel\\Tinker\\": "src/"
  2900. }
  2901. },
  2902. "notification-url": "https://packagist.org/downloads/",
  2903. "license": [
  2904. "MIT"
  2905. ],
  2906. "authors": [
  2907. {
  2908. "name": "Taylor Otwell",
  2909. "email": "taylor@laravel.com"
  2910. }
  2911. ],
  2912. "description": "Powerful REPL for the Laravel framework.",
  2913. "keywords": [
  2914. "REPL",
  2915. "Tinker",
  2916. "laravel",
  2917. "psysh"
  2918. ],
  2919. "support": {
  2920. "issues": "https://github.com/laravel/tinker/issues",
  2921. "source": "https://github.com/laravel/tinker/tree/v2.7.3"
  2922. },
  2923. "time": "2022-11-09T15:11:38+00:00"
  2924. },
  2925. {
  2926. "name": "laravel/ui",
  2927. "version": "v3.4.6",
  2928. "source": {
  2929. "type": "git",
  2930. "url": "https://github.com/laravel/ui.git",
  2931. "reference": "65ec5c03f7fee2c8ecae785795b829a15be48c2c"
  2932. },
  2933. "dist": {
  2934. "type": "zip",
  2935. "url": "https://api.github.com/repos/laravel/ui/zipball/65ec5c03f7fee2c8ecae785795b829a15be48c2c",
  2936. "reference": "65ec5c03f7fee2c8ecae785795b829a15be48c2c",
  2937. "shasum": ""
  2938. },
  2939. "require": {
  2940. "illuminate/console": "^8.42|^9.0",
  2941. "illuminate/filesystem": "^8.42|^9.0",
  2942. "illuminate/support": "^8.82|^9.0",
  2943. "illuminate/validation": "^8.42|^9.0",
  2944. "php": "^7.3|^8.0"
  2945. },
  2946. "require-dev": {
  2947. "orchestra/testbench": "^6.23|^7.0"
  2948. },
  2949. "type": "library",
  2950. "extra": {
  2951. "branch-alias": {
  2952. "dev-master": "3.x-dev"
  2953. },
  2954. "laravel": {
  2955. "providers": [
  2956. "Laravel\\Ui\\UiServiceProvider"
  2957. ]
  2958. }
  2959. },
  2960. "autoload": {
  2961. "psr-4": {
  2962. "Laravel\\Ui\\": "src/",
  2963. "Illuminate\\Foundation\\Auth\\": "auth-backend/"
  2964. }
  2965. },
  2966. "notification-url": "https://packagist.org/downloads/",
  2967. "license": [
  2968. "MIT"
  2969. ],
  2970. "authors": [
  2971. {
  2972. "name": "Taylor Otwell",
  2973. "email": "taylor@laravel.com"
  2974. }
  2975. ],
  2976. "description": "Laravel UI utilities and presets.",
  2977. "keywords": [
  2978. "laravel",
  2979. "ui"
  2980. ],
  2981. "support": {
  2982. "source": "https://github.com/laravel/ui/tree/v3.4.6"
  2983. },
  2984. "time": "2022-05-20T13:38:08+00:00"
  2985. },
  2986. {
  2987. "name": "lcobucci/clock",
  2988. "version": "2.2.0",
  2989. "source": {
  2990. "type": "git",
  2991. "url": "https://github.com/lcobucci/clock.git",
  2992. "reference": "fb533e093fd61321bfcbac08b131ce805fe183d3"
  2993. },
  2994. "dist": {
  2995. "type": "zip",
  2996. "url": "https://api.github.com/repos/lcobucci/clock/zipball/fb533e093fd61321bfcbac08b131ce805fe183d3",
  2997. "reference": "fb533e093fd61321bfcbac08b131ce805fe183d3",
  2998. "shasum": ""
  2999. },
  3000. "require": {
  3001. "php": "^8.0",
  3002. "stella-maris/clock": "^0.1.4"
  3003. },
  3004. "require-dev": {
  3005. "infection/infection": "^0.26",
  3006. "lcobucci/coding-standard": "^8.0",
  3007. "phpstan/extension-installer": "^1.1",
  3008. "phpstan/phpstan": "^0.12",
  3009. "phpstan/phpstan-deprecation-rules": "^0.12",
  3010. "phpstan/phpstan-phpunit": "^0.12",
  3011. "phpstan/phpstan-strict-rules": "^0.12",
  3012. "phpunit/phpunit": "^9.5"
  3013. },
  3014. "type": "library",
  3015. "autoload": {
  3016. "psr-4": {
  3017. "Lcobucci\\Clock\\": "src"
  3018. }
  3019. },
  3020. "notification-url": "https://packagist.org/downloads/",
  3021. "license": [
  3022. "MIT"
  3023. ],
  3024. "authors": [
  3025. {
  3026. "name": "Luís Cobucci",
  3027. "email": "lcobucci@gmail.com"
  3028. }
  3029. ],
  3030. "description": "Yet another clock abstraction",
  3031. "support": {
  3032. "issues": "https://github.com/lcobucci/clock/issues",
  3033. "source": "https://github.com/lcobucci/clock/tree/2.2.0"
  3034. },
  3035. "funding": [
  3036. {
  3037. "url": "https://github.com/lcobucci",
  3038. "type": "github"
  3039. },
  3040. {
  3041. "url": "https://www.patreon.com/lcobucci",
  3042. "type": "patreon"
  3043. }
  3044. ],
  3045. "time": "2022-04-19T19:34:17+00:00"
  3046. },
  3047. {
  3048. "name": "lcobucci/jwt",
  3049. "version": "4.2.1",
  3050. "source": {
  3051. "type": "git",
  3052. "url": "https://github.com/lcobucci/jwt.git",
  3053. "reference": "72ac6d807ee51a70ad376ee03a2387e8646e10f3"
  3054. },
  3055. "dist": {
  3056. "type": "zip",
  3057. "url": "https://api.github.com/repos/lcobucci/jwt/zipball/72ac6d807ee51a70ad376ee03a2387e8646e10f3",
  3058. "reference": "72ac6d807ee51a70ad376ee03a2387e8646e10f3",
  3059. "shasum": ""
  3060. },
  3061. "require": {
  3062. "ext-hash": "*",
  3063. "ext-json": "*",
  3064. "ext-mbstring": "*",
  3065. "ext-openssl": "*",
  3066. "ext-sodium": "*",
  3067. "lcobucci/clock": "^2.0",
  3068. "php": "^7.4 || ^8.0"
  3069. },
  3070. "require-dev": {
  3071. "infection/infection": "^0.21",
  3072. "lcobucci/coding-standard": "^6.0",
  3073. "mikey179/vfsstream": "^1.6.7",
  3074. "phpbench/phpbench": "^1.2",
  3075. "phpstan/extension-installer": "^1.0",
  3076. "phpstan/phpstan": "^1.4",
  3077. "phpstan/phpstan-deprecation-rules": "^1.0",
  3078. "phpstan/phpstan-phpunit": "^1.0",
  3079. "phpstan/phpstan-strict-rules": "^1.0",
  3080. "phpunit/php-invoker": "^3.1",
  3081. "phpunit/phpunit": "^9.5"
  3082. },
  3083. "type": "library",
  3084. "autoload": {
  3085. "psr-4": {
  3086. "Lcobucci\\JWT\\": "src"
  3087. }
  3088. },
  3089. "notification-url": "https://packagist.org/downloads/",
  3090. "license": [
  3091. "BSD-3-Clause"
  3092. ],
  3093. "authors": [
  3094. {
  3095. "name": "Luís Cobucci",
  3096. "email": "lcobucci@gmail.com",
  3097. "role": "Developer"
  3098. }
  3099. ],
  3100. "description": "A simple library to work with JSON Web Token and JSON Web Signature",
  3101. "keywords": [
  3102. "JWS",
  3103. "jwt"
  3104. ],
  3105. "support": {
  3106. "issues": "https://github.com/lcobucci/jwt/issues",
  3107. "source": "https://github.com/lcobucci/jwt/tree/4.2.1"
  3108. },
  3109. "funding": [
  3110. {
  3111. "url": "https://github.com/lcobucci",
  3112. "type": "github"
  3113. },
  3114. {
  3115. "url": "https://www.patreon.com/lcobucci",
  3116. "type": "patreon"
  3117. }
  3118. ],
  3119. "time": "2022-08-19T23:14:07+00:00"
  3120. },
  3121. {
  3122. "name": "league/commonmark",
  3123. "version": "2.3.8",
  3124. "source": {
  3125. "type": "git",
  3126. "url": "https://github.com/thephpleague/commonmark.git",
  3127. "reference": "c493585c130544c4e91d2e0e131e6d35cb0cbc47"
  3128. },
  3129. "dist": {
  3130. "type": "zip",
  3131. "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/c493585c130544c4e91d2e0e131e6d35cb0cbc47",
  3132. "reference": "c493585c130544c4e91d2e0e131e6d35cb0cbc47",
  3133. "shasum": ""
  3134. },
  3135. "require": {
  3136. "ext-mbstring": "*",
  3137. "league/config": "^1.1.1",
  3138. "php": "^7.4 || ^8.0",
  3139. "psr/event-dispatcher": "^1.0",
  3140. "symfony/deprecation-contracts": "^2.1 || ^3.0",
  3141. "symfony/polyfill-php80": "^1.16"
  3142. },
  3143. "require-dev": {
  3144. "cebe/markdown": "^1.0",
  3145. "commonmark/cmark": "0.30.0",
  3146. "commonmark/commonmark.js": "0.30.0",
  3147. "composer/package-versions-deprecated": "^1.8",
  3148. "embed/embed": "^4.4",
  3149. "erusev/parsedown": "^1.0",
  3150. "ext-json": "*",
  3151. "github/gfm": "0.29.0",
  3152. "michelf/php-markdown": "^1.4 || ^2.0",
  3153. "nyholm/psr7": "^1.5",
  3154. "phpstan/phpstan": "^1.8.2",
  3155. "phpunit/phpunit": "^9.5.21",
  3156. "scrutinizer/ocular": "^1.8.1",
  3157. "symfony/finder": "^5.3 | ^6.0",
  3158. "symfony/yaml": "^2.3 | ^3.0 | ^4.0 | ^5.0 | ^6.0",
  3159. "unleashedtech/php-coding-standard": "^3.1.1",
  3160. "vimeo/psalm": "^4.24.0 || ^5.0.0"
  3161. },
  3162. "suggest": {
  3163. "symfony/yaml": "v2.3+ required if using the Front Matter extension"
  3164. },
  3165. "type": "library",
  3166. "extra": {
  3167. "branch-alias": {
  3168. "dev-main": "2.4-dev"
  3169. }
  3170. },
  3171. "autoload": {
  3172. "psr-4": {
  3173. "League\\CommonMark\\": "src"
  3174. }
  3175. },
  3176. "notification-url": "https://packagist.org/downloads/",
  3177. "license": [
  3178. "BSD-3-Clause"
  3179. ],
  3180. "authors": [
  3181. {
  3182. "name": "Colin O'Dell",
  3183. "email": "colinodell@gmail.com",
  3184. "homepage": "https://www.colinodell.com",
  3185. "role": "Lead Developer"
  3186. }
  3187. ],
  3188. "description": "Highly-extensible PHP Markdown parser which fully supports the CommonMark spec and GitHub-Flavored Markdown (GFM)",
  3189. "homepage": "https://commonmark.thephpleague.com",
  3190. "keywords": [
  3191. "commonmark",
  3192. "flavored",
  3193. "gfm",
  3194. "github",
  3195. "github-flavored",
  3196. "markdown",
  3197. "md",
  3198. "parser"
  3199. ],
  3200. "support": {
  3201. "docs": "https://commonmark.thephpleague.com/",
  3202. "forum": "https://github.com/thephpleague/commonmark/discussions",
  3203. "issues": "https://github.com/thephpleague/commonmark/issues",
  3204. "rss": "https://github.com/thephpleague/commonmark/releases.atom",
  3205. "source": "https://github.com/thephpleague/commonmark"
  3206. },
  3207. "funding": [
  3208. {
  3209. "url": "https://www.colinodell.com/sponsor",
  3210. "type": "custom"
  3211. },
  3212. {
  3213. "url": "https://www.paypal.me/colinpodell/10.00",
  3214. "type": "custom"
  3215. },
  3216. {
  3217. "url": "https://github.com/colinodell",
  3218. "type": "github"
  3219. },
  3220. {
  3221. "url": "https://tidelift.com/funding/github/packagist/league/commonmark",
  3222. "type": "tidelift"
  3223. }
  3224. ],
  3225. "time": "2022-12-10T16:02:17+00:00"
  3226. },
  3227. {
  3228. "name": "league/config",
  3229. "version": "v1.2.0",
  3230. "source": {
  3231. "type": "git",
  3232. "url": "https://github.com/thephpleague/config.git",
  3233. "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3"
  3234. },
  3235. "dist": {
  3236. "type": "zip",
  3237. "url": "https://api.github.com/repos/thephpleague/config/zipball/754b3604fb2984c71f4af4a9cbe7b57f346ec1f3",
  3238. "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3",
  3239. "shasum": ""
  3240. },
  3241. "require": {
  3242. "dflydev/dot-access-data": "^3.0.1",
  3243. "nette/schema": "^1.2",
  3244. "php": "^7.4 || ^8.0"
  3245. },
  3246. "require-dev": {
  3247. "phpstan/phpstan": "^1.8.2",
  3248. "phpunit/phpunit": "^9.5.5",
  3249. "scrutinizer/ocular": "^1.8.1",
  3250. "unleashedtech/php-coding-standard": "^3.1",
  3251. "vimeo/psalm": "^4.7.3"
  3252. },
  3253. "type": "library",
  3254. "extra": {
  3255. "branch-alias": {
  3256. "dev-main": "1.2-dev"
  3257. }
  3258. },
  3259. "autoload": {
  3260. "psr-4": {
  3261. "League\\Config\\": "src"
  3262. }
  3263. },
  3264. "notification-url": "https://packagist.org/downloads/",
  3265. "license": [
  3266. "BSD-3-Clause"
  3267. ],
  3268. "authors": [
  3269. {
  3270. "name": "Colin O'Dell",
  3271. "email": "colinodell@gmail.com",
  3272. "homepage": "https://www.colinodell.com",
  3273. "role": "Lead Developer"
  3274. }
  3275. ],
  3276. "description": "Define configuration arrays with strict schemas and access values with dot notation",
  3277. "homepage": "https://config.thephpleague.com",
  3278. "keywords": [
  3279. "array",
  3280. "config",
  3281. "configuration",
  3282. "dot",
  3283. "dot-access",
  3284. "nested",
  3285. "schema"
  3286. ],
  3287. "support": {
  3288. "docs": "https://config.thephpleague.com/",
  3289. "issues": "https://github.com/thephpleague/config/issues",
  3290. "rss": "https://github.com/thephpleague/config/releases.atom",
  3291. "source": "https://github.com/thephpleague/config"
  3292. },
  3293. "funding": [
  3294. {
  3295. "url": "https://www.colinodell.com/sponsor",
  3296. "type": "custom"
  3297. },
  3298. {
  3299. "url": "https://www.paypal.me/colinpodell/10.00",
  3300. "type": "custom"
  3301. },
  3302. {
  3303. "url": "https://github.com/colinodell",
  3304. "type": "github"
  3305. }
  3306. ],
  3307. "time": "2022-12-11T20:36:23+00:00"
  3308. },
  3309. {
  3310. "name": "league/event",
  3311. "version": "2.2.0",
  3312. "source": {
  3313. "type": "git",
  3314. "url": "https://github.com/thephpleague/event.git",
  3315. "reference": "d2cc124cf9a3fab2bb4ff963307f60361ce4d119"
  3316. },
  3317. "dist": {
  3318. "type": "zip",
  3319. "url": "https://api.github.com/repos/thephpleague/event/zipball/d2cc124cf9a3fab2bb4ff963307f60361ce4d119",
  3320. "reference": "d2cc124cf9a3fab2bb4ff963307f60361ce4d119",
  3321. "shasum": ""
  3322. },
  3323. "require": {
  3324. "php": ">=5.4.0"
  3325. },
  3326. "require-dev": {
  3327. "henrikbjorn/phpspec-code-coverage": "~1.0.1",
  3328. "phpspec/phpspec": "^2.2"
  3329. },
  3330. "type": "library",
  3331. "extra": {
  3332. "branch-alias": {
  3333. "dev-master": "2.2-dev"
  3334. }
  3335. },
  3336. "autoload": {
  3337. "psr-4": {
  3338. "League\\Event\\": "src/"
  3339. }
  3340. },
  3341. "notification-url": "https://packagist.org/downloads/",
  3342. "license": [
  3343. "MIT"
  3344. ],
  3345. "authors": [
  3346. {
  3347. "name": "Frank de Jonge",
  3348. "email": "info@frenky.net"
  3349. }
  3350. ],
  3351. "description": "Event package",
  3352. "keywords": [
  3353. "emitter",
  3354. "event",
  3355. "listener"
  3356. ],
  3357. "support": {
  3358. "issues": "https://github.com/thephpleague/event/issues",
  3359. "source": "https://github.com/thephpleague/event/tree/master"
  3360. },
  3361. "time": "2018-11-26T11:52:41+00:00"
  3362. },
  3363. {
  3364. "name": "league/flysystem",
  3365. "version": "3.11.0",
  3366. "source": {
  3367. "type": "git",
  3368. "url": "https://github.com/thephpleague/flysystem.git",
  3369. "reference": "7e423e5dd240a60adfab9bde058d7668863b7731"
  3370. },
  3371. "dist": {
  3372. "type": "zip",
  3373. "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/7e423e5dd240a60adfab9bde058d7668863b7731",
  3374. "reference": "7e423e5dd240a60adfab9bde058d7668863b7731",
  3375. "shasum": ""
  3376. },
  3377. "require": {
  3378. "league/mime-type-detection": "^1.0.0",
  3379. "php": "^8.0.2"
  3380. },
  3381. "conflict": {
  3382. "aws/aws-sdk-php": "3.209.31 || 3.210.0",
  3383. "guzzlehttp/guzzle": "<7.0",
  3384. "guzzlehttp/ringphp": "<1.1.1",
  3385. "phpseclib/phpseclib": "3.0.15",
  3386. "symfony/http-client": "<5.2"
  3387. },
  3388. "require-dev": {
  3389. "async-aws/s3": "^1.5",
  3390. "async-aws/simple-s3": "^1.1",
  3391. "aws/aws-sdk-php": "^3.198.1",
  3392. "composer/semver": "^3.0",
  3393. "ext-fileinfo": "*",
  3394. "ext-ftp": "*",
  3395. "ext-zip": "*",
  3396. "friendsofphp/php-cs-fixer": "^3.5",
  3397. "google/cloud-storage": "^1.23",
  3398. "microsoft/azure-storage-blob": "^1.1",
  3399. "phpseclib/phpseclib": "^3.0.14",
  3400. "phpstan/phpstan": "^0.12.26",
  3401. "phpunit/phpunit": "^9.5.11",
  3402. "sabre/dav": "^4.3.1"
  3403. },
  3404. "type": "library",
  3405. "autoload": {
  3406. "psr-4": {
  3407. "League\\Flysystem\\": "src"
  3408. }
  3409. },
  3410. "notification-url": "https://packagist.org/downloads/",
  3411. "license": [
  3412. "MIT"
  3413. ],
  3414. "authors": [
  3415. {
  3416. "name": "Frank de Jonge",
  3417. "email": "info@frankdejonge.nl"
  3418. }
  3419. ],
  3420. "description": "File storage abstraction for PHP",
  3421. "keywords": [
  3422. "WebDAV",
  3423. "aws",
  3424. "cloud",
  3425. "file",
  3426. "files",
  3427. "filesystem",
  3428. "filesystems",
  3429. "ftp",
  3430. "s3",
  3431. "sftp",
  3432. "storage"
  3433. ],
  3434. "support": {
  3435. "issues": "https://github.com/thephpleague/flysystem/issues",
  3436. "source": "https://github.com/thephpleague/flysystem/tree/3.11.0"
  3437. },
  3438. "funding": [
  3439. {
  3440. "url": "https://ecologi.com/frankdejonge",
  3441. "type": "custom"
  3442. },
  3443. {
  3444. "url": "https://github.com/frankdejonge",
  3445. "type": "github"
  3446. },
  3447. {
  3448. "url": "https://tidelift.com/funding/github/packagist/league/flysystem",
  3449. "type": "tidelift"
  3450. }
  3451. ],
  3452. "time": "2022-12-02T14:39:57+00:00"
  3453. },
  3454. {
  3455. "name": "league/flysystem-aws-s3-v3",
  3456. "version": "3.10.3",
  3457. "source": {
  3458. "type": "git",
  3459. "url": "https://github.com/thephpleague/flysystem-aws-s3-v3.git",
  3460. "reference": "f593bf91f94f2adf4f71513d29f1dfa693f2f640"
  3461. },
  3462. "dist": {
  3463. "type": "zip",
  3464. "url": "https://api.github.com/repos/thephpleague/flysystem-aws-s3-v3/zipball/f593bf91f94f2adf4f71513d29f1dfa693f2f640",
  3465. "reference": "f593bf91f94f2adf4f71513d29f1dfa693f2f640",
  3466. "shasum": ""
  3467. },
  3468. "require": {
  3469. "aws/aws-sdk-php": "^3.132.4",
  3470. "league/flysystem": "^3.10.0",
  3471. "league/mime-type-detection": "^1.0.0",
  3472. "php": "^8.0.2"
  3473. },
  3474. "conflict": {
  3475. "guzzlehttp/guzzle": "<7.0",
  3476. "guzzlehttp/ringphp": "<1.1.1"
  3477. },
  3478. "type": "library",
  3479. "autoload": {
  3480. "psr-4": {
  3481. "League\\Flysystem\\AwsS3V3\\": ""
  3482. }
  3483. },
  3484. "notification-url": "https://packagist.org/downloads/",
  3485. "license": [
  3486. "MIT"
  3487. ],
  3488. "authors": [
  3489. {
  3490. "name": "Frank de Jonge",
  3491. "email": "info@frankdejonge.nl"
  3492. }
  3493. ],
  3494. "description": "AWS S3 filesystem adapter for Flysystem.",
  3495. "keywords": [
  3496. "Flysystem",
  3497. "aws",
  3498. "file",
  3499. "files",
  3500. "filesystem",
  3501. "s3",
  3502. "storage"
  3503. ],
  3504. "support": {
  3505. "issues": "https://github.com/thephpleague/flysystem-aws-s3-v3/issues",
  3506. "source": "https://github.com/thephpleague/flysystem-aws-s3-v3/tree/3.10.3"
  3507. },
  3508. "funding": [
  3509. {
  3510. "url": "https://ecologi.com/frankdejonge",
  3511. "type": "custom"
  3512. },
  3513. {
  3514. "url": "https://github.com/frankdejonge",
  3515. "type": "github"
  3516. },
  3517. {
  3518. "url": "https://tidelift.com/funding/github/packagist/league/flysystem",
  3519. "type": "tidelift"
  3520. }
  3521. ],
  3522. "time": "2022-10-26T18:15:09+00:00"
  3523. },
  3524. {
  3525. "name": "league/iso3166",
  3526. "version": "4.1.0",
  3527. "source": {
  3528. "type": "git",
  3529. "url": "https://github.com/thephpleague/iso3166.git",
  3530. "reference": "a0dd2a1d956f85811f9c667a1744d822fb2c63d8"
  3531. },
  3532. "dist": {
  3533. "type": "zip",
  3534. "url": "https://api.github.com/repos/thephpleague/iso3166/zipball/a0dd2a1d956f85811f9c667a1744d822fb2c63d8",
  3535. "reference": "a0dd2a1d956f85811f9c667a1744d822fb2c63d8",
  3536. "shasum": ""
  3537. },
  3538. "require": {
  3539. "php": "^7.3|^8.0"
  3540. },
  3541. "require-dev": {
  3542. "phpunit/phpunit": "^9.5"
  3543. },
  3544. "type": "library",
  3545. "extra": {
  3546. "branch-alias": {
  3547. "dev-master": "3.x-dev"
  3548. }
  3549. },
  3550. "autoload": {
  3551. "psr-4": {
  3552. "League\\ISO3166\\": "src"
  3553. }
  3554. },
  3555. "notification-url": "https://packagist.org/downloads/",
  3556. "license": [
  3557. "MIT"
  3558. ],
  3559. "authors": [
  3560. {
  3561. "name": "Rob Bast",
  3562. "email": "rob.bast@gmail.com"
  3563. }
  3564. ],
  3565. "description": "ISO 3166-1 PHP Library",
  3566. "homepage": "https://github.com/thephpleague/iso3166",
  3567. "keywords": [
  3568. "3166",
  3569. "3166-1",
  3570. "ISO 3166",
  3571. "countries",
  3572. "iso",
  3573. "library"
  3574. ],
  3575. "support": {
  3576. "issues": "https://github.com/thephpleague/iso3166/issues",
  3577. "source": "https://github.com/thephpleague/iso3166"
  3578. },
  3579. "time": "2022-09-07T09:14:19+00:00"
  3580. },
  3581. {
  3582. "name": "league/mime-type-detection",
  3583. "version": "1.11.0",
  3584. "source": {
  3585. "type": "git",
  3586. "url": "https://github.com/thephpleague/mime-type-detection.git",
  3587. "reference": "ff6248ea87a9f116e78edd6002e39e5128a0d4dd"
  3588. },
  3589. "dist": {
  3590. "type": "zip",
  3591. "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/ff6248ea87a9f116e78edd6002e39e5128a0d4dd",
  3592. "reference": "ff6248ea87a9f116e78edd6002e39e5128a0d4dd",
  3593. "shasum": ""
  3594. },
  3595. "require": {
  3596. "ext-fileinfo": "*",
  3597. "php": "^7.2 || ^8.0"
  3598. },
  3599. "require-dev": {
  3600. "friendsofphp/php-cs-fixer": "^3.2",
  3601. "phpstan/phpstan": "^0.12.68",
  3602. "phpunit/phpunit": "^8.5.8 || ^9.3"
  3603. },
  3604. "type": "library",
  3605. "autoload": {
  3606. "psr-4": {
  3607. "League\\MimeTypeDetection\\": "src"
  3608. }
  3609. },
  3610. "notification-url": "https://packagist.org/downloads/",
  3611. "license": [
  3612. "MIT"
  3613. ],
  3614. "authors": [
  3615. {
  3616. "name": "Frank de Jonge",
  3617. "email": "info@frankdejonge.nl"
  3618. }
  3619. ],
  3620. "description": "Mime-type detection for Flysystem",
  3621. "support": {
  3622. "issues": "https://github.com/thephpleague/mime-type-detection/issues",
  3623. "source": "https://github.com/thephpleague/mime-type-detection/tree/1.11.0"
  3624. },
  3625. "funding": [
  3626. {
  3627. "url": "https://github.com/frankdejonge",
  3628. "type": "github"
  3629. },
  3630. {
  3631. "url": "https://tidelift.com/funding/github/packagist/league/flysystem",
  3632. "type": "tidelift"
  3633. }
  3634. ],
  3635. "time": "2022-04-17T13:12:02+00:00"
  3636. },
  3637. {
  3638. "name": "league/oauth2-server",
  3639. "version": "8.3.6",
  3640. "source": {
  3641. "type": "git",
  3642. "url": "https://github.com/thephpleague/oauth2-server.git",
  3643. "reference": "28c5441716c10d0c936bd731860dc385d0f6d1a8"
  3644. },
  3645. "dist": {
  3646. "type": "zip",
  3647. "url": "https://api.github.com/repos/thephpleague/oauth2-server/zipball/28c5441716c10d0c936bd731860dc385d0f6d1a8",
  3648. "reference": "28c5441716c10d0c936bd731860dc385d0f6d1a8",
  3649. "shasum": ""
  3650. },
  3651. "require": {
  3652. "defuse/php-encryption": "^2.2.1",
  3653. "ext-json": "*",
  3654. "ext-openssl": "*",
  3655. "lcobucci/jwt": "^3.4.6 || ^4.0.4",
  3656. "league/event": "^2.2",
  3657. "league/uri": "^6.4",
  3658. "php": "^7.2 || ^8.0",
  3659. "psr/http-message": "^1.0.1"
  3660. },
  3661. "replace": {
  3662. "league/oauth2server": "*",
  3663. "lncd/oauth2": "*"
  3664. },
  3665. "require-dev": {
  3666. "laminas/laminas-diactoros": "^2.4.1",
  3667. "phpstan/phpstan": "^0.12.57",
  3668. "phpstan/phpstan-phpunit": "^0.12.16",
  3669. "phpunit/phpunit": "^8.5.13",
  3670. "roave/security-advisories": "dev-master"
  3671. },
  3672. "type": "library",
  3673. "autoload": {
  3674. "psr-4": {
  3675. "League\\OAuth2\\Server\\": "src/"
  3676. }
  3677. },
  3678. "notification-url": "https://packagist.org/downloads/",
  3679. "license": [
  3680. "MIT"
  3681. ],
  3682. "authors": [
  3683. {
  3684. "name": "Alex Bilbie",
  3685. "email": "hello@alexbilbie.com",
  3686. "homepage": "http://www.alexbilbie.com",
  3687. "role": "Developer"
  3688. },
  3689. {
  3690. "name": "Andy Millington",
  3691. "email": "andrew@noexceptions.io",
  3692. "homepage": "https://www.noexceptions.io",
  3693. "role": "Developer"
  3694. }
  3695. ],
  3696. "description": "A lightweight and powerful OAuth 2.0 authorization and resource server library with support for all the core specification grants. This library will allow you to secure your API with OAuth and allow your applications users to approve apps that want to access their data from your API.",
  3697. "homepage": "https://oauth2.thephpleague.com/",
  3698. "keywords": [
  3699. "Authentication",
  3700. "api",
  3701. "auth",
  3702. "authorisation",
  3703. "authorization",
  3704. "oauth",
  3705. "oauth 2",
  3706. "oauth 2.0",
  3707. "oauth2",
  3708. "protect",
  3709. "resource",
  3710. "secure",
  3711. "server"
  3712. ],
  3713. "support": {
  3714. "issues": "https://github.com/thephpleague/oauth2-server/issues",
  3715. "source": "https://github.com/thephpleague/oauth2-server/tree/8.3.6"
  3716. },
  3717. "funding": [
  3718. {
  3719. "url": "https://github.com/sephster",
  3720. "type": "github"
  3721. }
  3722. ],
  3723. "time": "2022-11-14T19:42:00+00:00"
  3724. },
  3725. {
  3726. "name": "league/uri",
  3727. "version": "6.8.0",
  3728. "source": {
  3729. "type": "git",
  3730. "url": "https://github.com/thephpleague/uri.git",
  3731. "reference": "a700b4656e4c54371b799ac61e300ab25a2d1d39"
  3732. },
  3733. "dist": {
  3734. "type": "zip",
  3735. "url": "https://api.github.com/repos/thephpleague/uri/zipball/a700b4656e4c54371b799ac61e300ab25a2d1d39",
  3736. "reference": "a700b4656e4c54371b799ac61e300ab25a2d1d39",
  3737. "shasum": ""
  3738. },
  3739. "require": {
  3740. "ext-json": "*",
  3741. "league/uri-interfaces": "^2.3",
  3742. "php": "^8.1",
  3743. "psr/http-message": "^1.0.1"
  3744. },
  3745. "conflict": {
  3746. "league/uri-schemes": "^1.0"
  3747. },
  3748. "require-dev": {
  3749. "friendsofphp/php-cs-fixer": "^v3.9.5",
  3750. "nyholm/psr7": "^1.5.1",
  3751. "php-http/psr7-integration-tests": "^1.1.1",
  3752. "phpbench/phpbench": "^1.2.6",
  3753. "phpstan/phpstan": "^1.8.5",
  3754. "phpstan/phpstan-deprecation-rules": "^1.0",
  3755. "phpstan/phpstan-phpunit": "^1.1.1",
  3756. "phpstan/phpstan-strict-rules": "^1.4.3",
  3757. "phpunit/phpunit": "^9.5.24",
  3758. "psr/http-factory": "^1.0.1"
  3759. },
  3760. "suggest": {
  3761. "ext-fileinfo": "Needed to create Data URI from a filepath",
  3762. "ext-intl": "Needed to improve host validation",
  3763. "league/uri-components": "Needed to easily manipulate URI objects",
  3764. "psr/http-factory": "Needed to use the URI factory"
  3765. },
  3766. "type": "library",
  3767. "extra": {
  3768. "branch-alias": {
  3769. "dev-master": "6.x-dev"
  3770. }
  3771. },
  3772. "autoload": {
  3773. "psr-4": {
  3774. "League\\Uri\\": "src"
  3775. }
  3776. },
  3777. "notification-url": "https://packagist.org/downloads/",
  3778. "license": [
  3779. "MIT"
  3780. ],
  3781. "authors": [
  3782. {
  3783. "name": "Ignace Nyamagana Butera",
  3784. "email": "nyamsprod@gmail.com",
  3785. "homepage": "https://nyamsprod.com"
  3786. }
  3787. ],
  3788. "description": "URI manipulation library",
  3789. "homepage": "https://uri.thephpleague.com",
  3790. "keywords": [
  3791. "data-uri",
  3792. "file-uri",
  3793. "ftp",
  3794. "hostname",
  3795. "http",
  3796. "https",
  3797. "middleware",
  3798. "parse_str",
  3799. "parse_url",
  3800. "psr-7",
  3801. "query-string",
  3802. "querystring",
  3803. "rfc3986",
  3804. "rfc3987",
  3805. "rfc6570",
  3806. "uri",
  3807. "uri-template",
  3808. "url",
  3809. "ws"
  3810. ],
  3811. "support": {
  3812. "docs": "https://uri.thephpleague.com",
  3813. "forum": "https://thephpleague.slack.com",
  3814. "issues": "https://github.com/thephpleague/uri/issues",
  3815. "source": "https://github.com/thephpleague/uri/tree/6.8.0"
  3816. },
  3817. "funding": [
  3818. {
  3819. "url": "https://github.com/sponsors/nyamsprod",
  3820. "type": "github"
  3821. }
  3822. ],
  3823. "time": "2022-09-13T19:58:47+00:00"
  3824. },
  3825. {
  3826. "name": "league/uri-interfaces",
  3827. "version": "2.3.0",
  3828. "source": {
  3829. "type": "git",
  3830. "url": "https://github.com/thephpleague/uri-interfaces.git",
  3831. "reference": "00e7e2943f76d8cb50c7dfdc2f6dee356e15e383"
  3832. },
  3833. "dist": {
  3834. "type": "zip",
  3835. "url": "https://api.github.com/repos/thephpleague/uri-interfaces/zipball/00e7e2943f76d8cb50c7dfdc2f6dee356e15e383",
  3836. "reference": "00e7e2943f76d8cb50c7dfdc2f6dee356e15e383",
  3837. "shasum": ""
  3838. },
  3839. "require": {
  3840. "ext-json": "*",
  3841. "php": "^7.2 || ^8.0"
  3842. },
  3843. "require-dev": {
  3844. "friendsofphp/php-cs-fixer": "^2.19",
  3845. "phpstan/phpstan": "^0.12.90",
  3846. "phpstan/phpstan-phpunit": "^0.12.19",
  3847. "phpstan/phpstan-strict-rules": "^0.12.9",
  3848. "phpunit/phpunit": "^8.5.15 || ^9.5"
  3849. },
  3850. "suggest": {
  3851. "ext-intl": "to use the IDNA feature",
  3852. "symfony/intl": "to use the IDNA feature via Symfony Polyfill"
  3853. },
  3854. "type": "library",
  3855. "extra": {
  3856. "branch-alias": {
  3857. "dev-master": "2.x-dev"
  3858. }
  3859. },
  3860. "autoload": {
  3861. "psr-4": {
  3862. "League\\Uri\\": "src/"
  3863. }
  3864. },
  3865. "notification-url": "https://packagist.org/downloads/",
  3866. "license": [
  3867. "MIT"
  3868. ],
  3869. "authors": [
  3870. {
  3871. "name": "Ignace Nyamagana Butera",
  3872. "email": "nyamsprod@gmail.com",
  3873. "homepage": "https://nyamsprod.com"
  3874. }
  3875. ],
  3876. "description": "Common interface for URI representation",
  3877. "homepage": "http://github.com/thephpleague/uri-interfaces",
  3878. "keywords": [
  3879. "rfc3986",
  3880. "rfc3987",
  3881. "uri",
  3882. "url"
  3883. ],
  3884. "support": {
  3885. "issues": "https://github.com/thephpleague/uri-interfaces/issues",
  3886. "source": "https://github.com/thephpleague/uri-interfaces/tree/2.3.0"
  3887. },
  3888. "funding": [
  3889. {
  3890. "url": "https://github.com/sponsors/nyamsprod",
  3891. "type": "github"
  3892. }
  3893. ],
  3894. "time": "2021-06-28T04:27:21+00:00"
  3895. },
  3896. {
  3897. "name": "mobiledetect/mobiledetectlib",
  3898. "version": "2.8.41",
  3899. "source": {
  3900. "type": "git",
  3901. "url": "https://github.com/serbanghita/Mobile-Detect.git",
  3902. "reference": "fc9cccd4d3706d5a7537b562b59cc18f9e4c0cb1"
  3903. },
  3904. "dist": {
  3905. "type": "zip",
  3906. "url": "https://api.github.com/repos/serbanghita/Mobile-Detect/zipball/fc9cccd4d3706d5a7537b562b59cc18f9e4c0cb1",
  3907. "reference": "fc9cccd4d3706d5a7537b562b59cc18f9e4c0cb1",
  3908. "shasum": ""
  3909. },
  3910. "require": {
  3911. "php": ">=5.0.0"
  3912. },
  3913. "require-dev": {
  3914. "phpunit/phpunit": "~4.8.35||~5.7"
  3915. },
  3916. "type": "library",
  3917. "autoload": {
  3918. "psr-0": {
  3919. "Detection": "namespaced/"
  3920. },
  3921. "classmap": [
  3922. "Mobile_Detect.php"
  3923. ]
  3924. },
  3925. "notification-url": "https://packagist.org/downloads/",
  3926. "license": [
  3927. "MIT"
  3928. ],
  3929. "authors": [
  3930. {
  3931. "name": "Serban Ghita",
  3932. "email": "serbanghita@gmail.com",
  3933. "homepage": "http://mobiledetect.net",
  3934. "role": "Developer"
  3935. }
  3936. ],
  3937. "description": "Mobile_Detect is a lightweight PHP class for detecting mobile devices. It uses the User-Agent string combined with specific HTTP headers to detect the mobile environment.",
  3938. "homepage": "https://github.com/serbanghita/Mobile-Detect",
  3939. "keywords": [
  3940. "detect mobile devices",
  3941. "mobile",
  3942. "mobile detect",
  3943. "mobile detector",
  3944. "php mobile detect"
  3945. ],
  3946. "support": {
  3947. "issues": "https://github.com/serbanghita/Mobile-Detect/issues",
  3948. "source": "https://github.com/serbanghita/Mobile-Detect/tree/2.8.41"
  3949. },
  3950. "time": "2022-11-08T18:31:26+00:00"
  3951. },
  3952. {
  3953. "name": "monolog/monolog",
  3954. "version": "2.8.0",
  3955. "source": {
  3956. "type": "git",
  3957. "url": "https://github.com/Seldaek/monolog.git",
  3958. "reference": "720488632c590286b88b80e62aa3d3d551ad4a50"
  3959. },
  3960. "dist": {
  3961. "type": "zip",
  3962. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/720488632c590286b88b80e62aa3d3d551ad4a50",
  3963. "reference": "720488632c590286b88b80e62aa3d3d551ad4a50",
  3964. "shasum": ""
  3965. },
  3966. "require": {
  3967. "php": ">=7.2",
  3968. "psr/log": "^1.0.1 || ^2.0 || ^3.0"
  3969. },
  3970. "provide": {
  3971. "psr/log-implementation": "1.0.0 || 2.0.0 || 3.0.0"
  3972. },
  3973. "require-dev": {
  3974. "aws/aws-sdk-php": "^2.4.9 || ^3.0",
  3975. "doctrine/couchdb": "~1.0@dev",
  3976. "elasticsearch/elasticsearch": "^7 || ^8",
  3977. "ext-json": "*",
  3978. "graylog2/gelf-php": "^1.4.2",
  3979. "guzzlehttp/guzzle": "^7.4",
  3980. "guzzlehttp/psr7": "^2.2",
  3981. "mongodb/mongodb": "^1.8",
  3982. "php-amqplib/php-amqplib": "~2.4 || ^3",
  3983. "phpspec/prophecy": "^1.15",
  3984. "phpstan/phpstan": "^0.12.91",
  3985. "phpunit/phpunit": "^8.5.14",
  3986. "predis/predis": "^1.1 || ^2.0",
  3987. "rollbar/rollbar": "^1.3 || ^2 || ^3",
  3988. "ruflin/elastica": "^7",
  3989. "swiftmailer/swiftmailer": "^5.3|^6.0",
  3990. "symfony/mailer": "^5.4 || ^6",
  3991. "symfony/mime": "^5.4 || ^6"
  3992. },
  3993. "suggest": {
  3994. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  3995. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  3996. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  3997. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  3998. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  3999. "ext-mbstring": "Allow to work properly with unicode symbols",
  4000. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  4001. "ext-openssl": "Required to send log messages using SSL",
  4002. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  4003. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  4004. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  4005. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  4006. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  4007. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  4008. },
  4009. "type": "library",
  4010. "extra": {
  4011. "branch-alias": {
  4012. "dev-main": "2.x-dev"
  4013. }
  4014. },
  4015. "autoload": {
  4016. "psr-4": {
  4017. "Monolog\\": "src/Monolog"
  4018. }
  4019. },
  4020. "notification-url": "https://packagist.org/downloads/",
  4021. "license": [
  4022. "MIT"
  4023. ],
  4024. "authors": [
  4025. {
  4026. "name": "Jordi Boggiano",
  4027. "email": "j.boggiano@seld.be",
  4028. "homepage": "https://seld.be"
  4029. }
  4030. ],
  4031. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  4032. "homepage": "https://github.com/Seldaek/monolog",
  4033. "keywords": [
  4034. "log",
  4035. "logging",
  4036. "psr-3"
  4037. ],
  4038. "support": {
  4039. "issues": "https://github.com/Seldaek/monolog/issues",
  4040. "source": "https://github.com/Seldaek/monolog/tree/2.8.0"
  4041. },
  4042. "funding": [
  4043. {
  4044. "url": "https://github.com/Seldaek",
  4045. "type": "github"
  4046. },
  4047. {
  4048. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  4049. "type": "tidelift"
  4050. }
  4051. ],
  4052. "time": "2022-07-24T11:55:47+00:00"
  4053. },
  4054. {
  4055. "name": "mtdowling/jmespath.php",
  4056. "version": "2.6.1",
  4057. "source": {
  4058. "type": "git",
  4059. "url": "https://github.com/jmespath/jmespath.php.git",
  4060. "reference": "9b87907a81b87bc76d19a7fb2d61e61486ee9edb"
  4061. },
  4062. "dist": {
  4063. "type": "zip",
  4064. "url": "https://api.github.com/repos/jmespath/jmespath.php/zipball/9b87907a81b87bc76d19a7fb2d61e61486ee9edb",
  4065. "reference": "9b87907a81b87bc76d19a7fb2d61e61486ee9edb",
  4066. "shasum": ""
  4067. },
  4068. "require": {
  4069. "php": "^5.4 || ^7.0 || ^8.0",
  4070. "symfony/polyfill-mbstring": "^1.17"
  4071. },
  4072. "require-dev": {
  4073. "composer/xdebug-handler": "^1.4 || ^2.0",
  4074. "phpunit/phpunit": "^4.8.36 || ^7.5.15"
  4075. },
  4076. "bin": [
  4077. "bin/jp.php"
  4078. ],
  4079. "type": "library",
  4080. "extra": {
  4081. "branch-alias": {
  4082. "dev-master": "2.6-dev"
  4083. }
  4084. },
  4085. "autoload": {
  4086. "files": [
  4087. "src/JmesPath.php"
  4088. ],
  4089. "psr-4": {
  4090. "JmesPath\\": "src/"
  4091. }
  4092. },
  4093. "notification-url": "https://packagist.org/downloads/",
  4094. "license": [
  4095. "MIT"
  4096. ],
  4097. "authors": [
  4098. {
  4099. "name": "Michael Dowling",
  4100. "email": "mtdowling@gmail.com",
  4101. "homepage": "https://github.com/mtdowling"
  4102. }
  4103. ],
  4104. "description": "Declaratively specify how to extract elements from a JSON document",
  4105. "keywords": [
  4106. "json",
  4107. "jsonpath"
  4108. ],
  4109. "support": {
  4110. "issues": "https://github.com/jmespath/jmespath.php/issues",
  4111. "source": "https://github.com/jmespath/jmespath.php/tree/2.6.1"
  4112. },
  4113. "time": "2021-06-14T00:11:39+00:00"
  4114. },
  4115. {
  4116. "name": "nesbot/carbon",
  4117. "version": "2.64.0",
  4118. "source": {
  4119. "type": "git",
  4120. "url": "https://github.com/briannesbitt/Carbon.git",
  4121. "reference": "889546413c97de2d05063b8cb7b193c2531ea211"
  4122. },
  4123. "dist": {
  4124. "type": "zip",
  4125. "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/889546413c97de2d05063b8cb7b193c2531ea211",
  4126. "reference": "889546413c97de2d05063b8cb7b193c2531ea211",
  4127. "shasum": ""
  4128. },
  4129. "require": {
  4130. "ext-json": "*",
  4131. "php": "^7.1.8 || ^8.0",
  4132. "symfony/polyfill-mbstring": "^1.0",
  4133. "symfony/polyfill-php80": "^1.16",
  4134. "symfony/translation": "^3.4 || ^4.0 || ^5.0 || ^6.0"
  4135. },
  4136. "require-dev": {
  4137. "doctrine/dbal": "^2.0 || ^3.1.4",
  4138. "doctrine/orm": "^2.7",
  4139. "friendsofphp/php-cs-fixer": "^3.0",
  4140. "kylekatarnls/multi-tester": "^2.0",
  4141. "ondrejmirtes/better-reflection": "*",
  4142. "phpmd/phpmd": "^2.9",
  4143. "phpstan/extension-installer": "^1.0",
  4144. "phpstan/phpstan": "^0.12.99 || ^1.7.14",
  4145. "phpunit/php-file-iterator": "^2.0.5 || ^3.0.6",
  4146. "phpunit/phpunit": "^7.5.20 || ^8.5.26 || ^9.5.20",
  4147. "squizlabs/php_codesniffer": "^3.4"
  4148. },
  4149. "bin": [
  4150. "bin/carbon"
  4151. ],
  4152. "type": "library",
  4153. "extra": {
  4154. "branch-alias": {
  4155. "dev-3.x": "3.x-dev",
  4156. "dev-master": "2.x-dev"
  4157. },
  4158. "laravel": {
  4159. "providers": [
  4160. "Carbon\\Laravel\\ServiceProvider"
  4161. ]
  4162. },
  4163. "phpstan": {
  4164. "includes": [
  4165. "extension.neon"
  4166. ]
  4167. }
  4168. },
  4169. "autoload": {
  4170. "psr-4": {
  4171. "Carbon\\": "src/Carbon/"
  4172. }
  4173. },
  4174. "notification-url": "https://packagist.org/downloads/",
  4175. "license": [
  4176. "MIT"
  4177. ],
  4178. "authors": [
  4179. {
  4180. "name": "Brian Nesbitt",
  4181. "email": "brian@nesbot.com",
  4182. "homepage": "https://markido.com"
  4183. },
  4184. {
  4185. "name": "kylekatarnls",
  4186. "homepage": "https://github.com/kylekatarnls"
  4187. }
  4188. ],
  4189. "description": "An API extension for DateTime that supports 281 different languages.",
  4190. "homepage": "https://carbon.nesbot.com",
  4191. "keywords": [
  4192. "date",
  4193. "datetime",
  4194. "time"
  4195. ],
  4196. "support": {
  4197. "docs": "https://carbon.nesbot.com/docs",
  4198. "issues": "https://github.com/briannesbitt/Carbon/issues",
  4199. "source": "https://github.com/briannesbitt/Carbon"
  4200. },
  4201. "funding": [
  4202. {
  4203. "url": "https://github.com/sponsors/kylekatarnls",
  4204. "type": "github"
  4205. },
  4206. {
  4207. "url": "https://opencollective.com/Carbon#sponsor",
  4208. "type": "opencollective"
  4209. },
  4210. {
  4211. "url": "https://tidelift.com/subscription/pkg/packagist-nesbot-carbon?utm_source=packagist-nesbot-carbon&utm_medium=referral&utm_campaign=readme",
  4212. "type": "tidelift"
  4213. }
  4214. ],
  4215. "time": "2022-11-26T17:36:00+00:00"
  4216. },
  4217. {
  4218. "name": "nette/schema",
  4219. "version": "v1.2.3",
  4220. "source": {
  4221. "type": "git",
  4222. "url": "https://github.com/nette/schema.git",
  4223. "reference": "abbdbb70e0245d5f3bf77874cea1dfb0c930d06f"
  4224. },
  4225. "dist": {
  4226. "type": "zip",
  4227. "url": "https://api.github.com/repos/nette/schema/zipball/abbdbb70e0245d5f3bf77874cea1dfb0c930d06f",
  4228. "reference": "abbdbb70e0245d5f3bf77874cea1dfb0c930d06f",
  4229. "shasum": ""
  4230. },
  4231. "require": {
  4232. "nette/utils": "^2.5.7 || ^3.1.5 || ^4.0",
  4233. "php": ">=7.1 <8.3"
  4234. },
  4235. "require-dev": {
  4236. "nette/tester": "^2.3 || ^2.4",
  4237. "phpstan/phpstan-nette": "^1.0",
  4238. "tracy/tracy": "^2.7"
  4239. },
  4240. "type": "library",
  4241. "extra": {
  4242. "branch-alias": {
  4243. "dev-master": "1.2-dev"
  4244. }
  4245. },
  4246. "autoload": {
  4247. "classmap": [
  4248. "src/"
  4249. ]
  4250. },
  4251. "notification-url": "https://packagist.org/downloads/",
  4252. "license": [
  4253. "BSD-3-Clause",
  4254. "GPL-2.0-only",
  4255. "GPL-3.0-only"
  4256. ],
  4257. "authors": [
  4258. {
  4259. "name": "David Grudl",
  4260. "homepage": "https://davidgrudl.com"
  4261. },
  4262. {
  4263. "name": "Nette Community",
  4264. "homepage": "https://nette.org/contributors"
  4265. }
  4266. ],
  4267. "description": "📐 Nette Schema: validating data structures against a given Schema.",
  4268. "homepage": "https://nette.org",
  4269. "keywords": [
  4270. "config",
  4271. "nette"
  4272. ],
  4273. "support": {
  4274. "issues": "https://github.com/nette/schema/issues",
  4275. "source": "https://github.com/nette/schema/tree/v1.2.3"
  4276. },
  4277. "time": "2022-10-13T01:24:26+00:00"
  4278. },
  4279. {
  4280. "name": "nette/utils",
  4281. "version": "v3.2.8",
  4282. "source": {
  4283. "type": "git",
  4284. "url": "https://github.com/nette/utils.git",
  4285. "reference": "02a54c4c872b99e4ec05c4aec54b5a06eb0f6368"
  4286. },
  4287. "dist": {
  4288. "type": "zip",
  4289. "url": "https://api.github.com/repos/nette/utils/zipball/02a54c4c872b99e4ec05c4aec54b5a06eb0f6368",
  4290. "reference": "02a54c4c872b99e4ec05c4aec54b5a06eb0f6368",
  4291. "shasum": ""
  4292. },
  4293. "require": {
  4294. "php": ">=7.2 <8.3"
  4295. },
  4296. "conflict": {
  4297. "nette/di": "<3.0.6"
  4298. },
  4299. "require-dev": {
  4300. "nette/tester": "~2.0",
  4301. "phpstan/phpstan": "^1.0",
  4302. "tracy/tracy": "^2.3"
  4303. },
  4304. "suggest": {
  4305. "ext-gd": "to use Image",
  4306. "ext-iconv": "to use Strings::webalize(), toAscii(), chr() and reverse()",
  4307. "ext-intl": "to use Strings::webalize(), toAscii(), normalize() and compare()",
  4308. "ext-json": "to use Nette\\Utils\\Json",
  4309. "ext-mbstring": "to use Strings::lower() etc...",
  4310. "ext-tokenizer": "to use Nette\\Utils\\Reflection::getUseStatements()",
  4311. "ext-xml": "to use Strings::length() etc. when mbstring is not available"
  4312. },
  4313. "type": "library",
  4314. "extra": {
  4315. "branch-alias": {
  4316. "dev-master": "3.2-dev"
  4317. }
  4318. },
  4319. "autoload": {
  4320. "classmap": [
  4321. "src/"
  4322. ]
  4323. },
  4324. "notification-url": "https://packagist.org/downloads/",
  4325. "license": [
  4326. "BSD-3-Clause",
  4327. "GPL-2.0-only",
  4328. "GPL-3.0-only"
  4329. ],
  4330. "authors": [
  4331. {
  4332. "name": "David Grudl",
  4333. "homepage": "https://davidgrudl.com"
  4334. },
  4335. {
  4336. "name": "Nette Community",
  4337. "homepage": "https://nette.org/contributors"
  4338. }
  4339. ],
  4340. "description": "🛠 Nette Utils: lightweight utilities for string & array manipulation, image handling, safe JSON encoding/decoding, validation, slug or strong password generating etc.",
  4341. "homepage": "https://nette.org",
  4342. "keywords": [
  4343. "array",
  4344. "core",
  4345. "datetime",
  4346. "images",
  4347. "json",
  4348. "nette",
  4349. "paginator",
  4350. "password",
  4351. "slugify",
  4352. "string",
  4353. "unicode",
  4354. "utf-8",
  4355. "utility",
  4356. "validation"
  4357. ],
  4358. "support": {
  4359. "issues": "https://github.com/nette/utils/issues",
  4360. "source": "https://github.com/nette/utils/tree/v3.2.8"
  4361. },
  4362. "time": "2022-09-12T23:36:20+00:00"
  4363. },
  4364. {
  4365. "name": "nikic/php-parser",
  4366. "version": "v4.15.2",
  4367. "source": {
  4368. "type": "git",
  4369. "url": "https://github.com/nikic/PHP-Parser.git",
  4370. "reference": "f59bbe44bf7d96f24f3e2b4ddc21cd52c1d2adbc"
  4371. },
  4372. "dist": {
  4373. "type": "zip",
  4374. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/f59bbe44bf7d96f24f3e2b4ddc21cd52c1d2adbc",
  4375. "reference": "f59bbe44bf7d96f24f3e2b4ddc21cd52c1d2adbc",
  4376. "shasum": ""
  4377. },
  4378. "require": {
  4379. "ext-tokenizer": "*",
  4380. "php": ">=7.0"
  4381. },
  4382. "require-dev": {
  4383. "ircmaxell/php-yacc": "^0.0.7",
  4384. "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0"
  4385. },
  4386. "bin": [
  4387. "bin/php-parse"
  4388. ],
  4389. "type": "library",
  4390. "extra": {
  4391. "branch-alias": {
  4392. "dev-master": "4.9-dev"
  4393. }
  4394. },
  4395. "autoload": {
  4396. "psr-4": {
  4397. "PhpParser\\": "lib/PhpParser"
  4398. }
  4399. },
  4400. "notification-url": "https://packagist.org/downloads/",
  4401. "license": [
  4402. "BSD-3-Clause"
  4403. ],
  4404. "authors": [
  4405. {
  4406. "name": "Nikita Popov"
  4407. }
  4408. ],
  4409. "description": "A PHP parser written in PHP",
  4410. "keywords": [
  4411. "parser",
  4412. "php"
  4413. ],
  4414. "support": {
  4415. "issues": "https://github.com/nikic/PHP-Parser/issues",
  4416. "source": "https://github.com/nikic/PHP-Parser/tree/v4.15.2"
  4417. },
  4418. "time": "2022-11-12T15:38:23+00:00"
  4419. },
  4420. {
  4421. "name": "nunomaduro/termwind",
  4422. "version": "v1.14.2",
  4423. "source": {
  4424. "type": "git",
  4425. "url": "https://github.com/nunomaduro/termwind.git",
  4426. "reference": "9a8218511eb1a0965629ff820dda25985440aefc"
  4427. },
  4428. "dist": {
  4429. "type": "zip",
  4430. "url": "https://api.github.com/repos/nunomaduro/termwind/zipball/9a8218511eb1a0965629ff820dda25985440aefc",
  4431. "reference": "9a8218511eb1a0965629ff820dda25985440aefc",
  4432. "shasum": ""
  4433. },
  4434. "require": {
  4435. "ext-mbstring": "*",
  4436. "php": "^8.0",
  4437. "symfony/console": "^5.3.0|^6.0.0"
  4438. },
  4439. "require-dev": {
  4440. "ergebnis/phpstan-rules": "^1.0.",
  4441. "illuminate/console": "^8.0|^9.0",
  4442. "illuminate/support": "^8.0|^9.0",
  4443. "laravel/pint": "^1.0.0",
  4444. "pestphp/pest": "^1.21.0",
  4445. "pestphp/pest-plugin-mock": "^1.0",
  4446. "phpstan/phpstan": "^1.4.6",
  4447. "phpstan/phpstan-strict-rules": "^1.1.0",
  4448. "symfony/var-dumper": "^5.2.7|^6.0.0",
  4449. "thecodingmachine/phpstan-strict-rules": "^1.0.0"
  4450. },
  4451. "type": "library",
  4452. "extra": {
  4453. "laravel": {
  4454. "providers": [
  4455. "Termwind\\Laravel\\TermwindServiceProvider"
  4456. ]
  4457. }
  4458. },
  4459. "autoload": {
  4460. "files": [
  4461. "src/Functions.php"
  4462. ],
  4463. "psr-4": {
  4464. "Termwind\\": "src/"
  4465. }
  4466. },
  4467. "notification-url": "https://packagist.org/downloads/",
  4468. "license": [
  4469. "MIT"
  4470. ],
  4471. "authors": [
  4472. {
  4473. "name": "Nuno Maduro",
  4474. "email": "enunomaduro@gmail.com"
  4475. }
  4476. ],
  4477. "description": "Its like Tailwind CSS, but for the console.",
  4478. "keywords": [
  4479. "cli",
  4480. "console",
  4481. "css",
  4482. "package",
  4483. "php",
  4484. "style"
  4485. ],
  4486. "support": {
  4487. "issues": "https://github.com/nunomaduro/termwind/issues",
  4488. "source": "https://github.com/nunomaduro/termwind/tree/v1.14.2"
  4489. },
  4490. "funding": [
  4491. {
  4492. "url": "https://www.paypal.com/paypalme/enunomaduro",
  4493. "type": "custom"
  4494. },
  4495. {
  4496. "url": "https://github.com/nunomaduro",
  4497. "type": "github"
  4498. },
  4499. {
  4500. "url": "https://github.com/xiCO2k",
  4501. "type": "github"
  4502. }
  4503. ],
  4504. "time": "2022-10-28T22:51:32+00:00"
  4505. },
  4506. {
  4507. "name": "nyholm/psr7",
  4508. "version": "1.5.1",
  4509. "source": {
  4510. "type": "git",
  4511. "url": "https://github.com/Nyholm/psr7.git",
  4512. "reference": "f734364e38a876a23be4d906a2a089e1315be18a"
  4513. },
  4514. "dist": {
  4515. "type": "zip",
  4516. "url": "https://api.github.com/repos/Nyholm/psr7/zipball/f734364e38a876a23be4d906a2a089e1315be18a",
  4517. "reference": "f734364e38a876a23be4d906a2a089e1315be18a",
  4518. "shasum": ""
  4519. },
  4520. "require": {
  4521. "php": ">=7.1",
  4522. "php-http/message-factory": "^1.0",
  4523. "psr/http-factory": "^1.0",
  4524. "psr/http-message": "^1.0"
  4525. },
  4526. "provide": {
  4527. "psr/http-factory-implementation": "1.0",
  4528. "psr/http-message-implementation": "1.0"
  4529. },
  4530. "require-dev": {
  4531. "http-interop/http-factory-tests": "^0.9",
  4532. "php-http/psr7-integration-tests": "^1.0",
  4533. "phpunit/phpunit": "^7.5 || 8.5 || 9.4",
  4534. "symfony/error-handler": "^4.4"
  4535. },
  4536. "type": "library",
  4537. "extra": {
  4538. "branch-alias": {
  4539. "dev-master": "1.4-dev"
  4540. }
  4541. },
  4542. "autoload": {
  4543. "psr-4": {
  4544. "Nyholm\\Psr7\\": "src/"
  4545. }
  4546. },
  4547. "notification-url": "https://packagist.org/downloads/",
  4548. "license": [
  4549. "MIT"
  4550. ],
  4551. "authors": [
  4552. {
  4553. "name": "Tobias Nyholm",
  4554. "email": "tobias.nyholm@gmail.com"
  4555. },
  4556. {
  4557. "name": "Martijn van der Ven",
  4558. "email": "martijn@vanderven.se"
  4559. }
  4560. ],
  4561. "description": "A fast PHP7 implementation of PSR-7",
  4562. "homepage": "https://tnyholm.se",
  4563. "keywords": [
  4564. "psr-17",
  4565. "psr-7"
  4566. ],
  4567. "support": {
  4568. "issues": "https://github.com/Nyholm/psr7/issues",
  4569. "source": "https://github.com/Nyholm/psr7/tree/1.5.1"
  4570. },
  4571. "funding": [
  4572. {
  4573. "url": "https://github.com/Zegnat",
  4574. "type": "github"
  4575. },
  4576. {
  4577. "url": "https://github.com/nyholm",
  4578. "type": "github"
  4579. }
  4580. ],
  4581. "time": "2022-06-22T07:13:36+00:00"
  4582. },
  4583. {
  4584. "name": "paragonie/constant_time_encoding",
  4585. "version": "v2.6.3",
  4586. "source": {
  4587. "type": "git",
  4588. "url": "https://github.com/paragonie/constant_time_encoding.git",
  4589. "reference": "58c3f47f650c94ec05a151692652a868995d2938"
  4590. },
  4591. "dist": {
  4592. "type": "zip",
  4593. "url": "https://api.github.com/repos/paragonie/constant_time_encoding/zipball/58c3f47f650c94ec05a151692652a868995d2938",
  4594. "reference": "58c3f47f650c94ec05a151692652a868995d2938",
  4595. "shasum": ""
  4596. },
  4597. "require": {
  4598. "php": "^7|^8"
  4599. },
  4600. "require-dev": {
  4601. "phpunit/phpunit": "^6|^7|^8|^9",
  4602. "vimeo/psalm": "^1|^2|^3|^4"
  4603. },
  4604. "type": "library",
  4605. "autoload": {
  4606. "psr-4": {
  4607. "ParagonIE\\ConstantTime\\": "src/"
  4608. }
  4609. },
  4610. "notification-url": "https://packagist.org/downloads/",
  4611. "license": [
  4612. "MIT"
  4613. ],
  4614. "authors": [
  4615. {
  4616. "name": "Paragon Initiative Enterprises",
  4617. "email": "security@paragonie.com",
  4618. "homepage": "https://paragonie.com",
  4619. "role": "Maintainer"
  4620. },
  4621. {
  4622. "name": "Steve 'Sc00bz' Thomas",
  4623. "email": "steve@tobtu.com",
  4624. "homepage": "https://www.tobtu.com",
  4625. "role": "Original Developer"
  4626. }
  4627. ],
  4628. "description": "Constant-time Implementations of RFC 4648 Encoding (Base-64, Base-32, Base-16)",
  4629. "keywords": [
  4630. "base16",
  4631. "base32",
  4632. "base32_decode",
  4633. "base32_encode",
  4634. "base64",
  4635. "base64_decode",
  4636. "base64_encode",
  4637. "bin2hex",
  4638. "encoding",
  4639. "hex",
  4640. "hex2bin",
  4641. "rfc4648"
  4642. ],
  4643. "support": {
  4644. "email": "info@paragonie.com",
  4645. "issues": "https://github.com/paragonie/constant_time_encoding/issues",
  4646. "source": "https://github.com/paragonie/constant_time_encoding"
  4647. },
  4648. "time": "2022-06-14T06:56:20+00:00"
  4649. },
  4650. {
  4651. "name": "paragonie/random_compat",
  4652. "version": "v9.99.100",
  4653. "source": {
  4654. "type": "git",
  4655. "url": "https://github.com/paragonie/random_compat.git",
  4656. "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a"
  4657. },
  4658. "dist": {
  4659. "type": "zip",
  4660. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/996434e5492cb4c3edcb9168db6fbb1359ef965a",
  4661. "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a",
  4662. "shasum": ""
  4663. },
  4664. "require": {
  4665. "php": ">= 7"
  4666. },
  4667. "require-dev": {
  4668. "phpunit/phpunit": "4.*|5.*",
  4669. "vimeo/psalm": "^1"
  4670. },
  4671. "suggest": {
  4672. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  4673. },
  4674. "type": "library",
  4675. "notification-url": "https://packagist.org/downloads/",
  4676. "license": [
  4677. "MIT"
  4678. ],
  4679. "authors": [
  4680. {
  4681. "name": "Paragon Initiative Enterprises",
  4682. "email": "security@paragonie.com",
  4683. "homepage": "https://paragonie.com"
  4684. }
  4685. ],
  4686. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  4687. "keywords": [
  4688. "csprng",
  4689. "polyfill",
  4690. "pseudorandom",
  4691. "random"
  4692. ],
  4693. "support": {
  4694. "email": "info@paragonie.com",
  4695. "issues": "https://github.com/paragonie/random_compat/issues",
  4696. "source": "https://github.com/paragonie/random_compat"
  4697. },
  4698. "time": "2020-10-15T08:29:30+00:00"
  4699. },
  4700. {
  4701. "name": "paragonie/sodium_compat",
  4702. "version": "v1.19.0",
  4703. "source": {
  4704. "type": "git",
  4705. "url": "https://github.com/paragonie/sodium_compat.git",
  4706. "reference": "cb15e403ecbe6a6cc515f855c310eb6b1872a933"
  4707. },
  4708. "dist": {
  4709. "type": "zip",
  4710. "url": "https://api.github.com/repos/paragonie/sodium_compat/zipball/cb15e403ecbe6a6cc515f855c310eb6b1872a933",
  4711. "reference": "cb15e403ecbe6a6cc515f855c310eb6b1872a933",
  4712. "shasum": ""
  4713. },
  4714. "require": {
  4715. "paragonie/random_compat": ">=1",
  4716. "php": "^5.2.4|^5.3|^5.4|^5.5|^5.6|^7|^8"
  4717. },
  4718. "require-dev": {
  4719. "phpunit/phpunit": "^3|^4|^5|^6|^7|^8|^9"
  4720. },
  4721. "suggest": {
  4722. "ext-libsodium": "PHP < 7.0: Better performance, password hashing (Argon2i), secure memory management (memzero), and better security.",
  4723. "ext-sodium": "PHP >= 7.0: Better performance, password hashing (Argon2i), secure memory management (memzero), and better security."
  4724. },
  4725. "type": "library",
  4726. "autoload": {
  4727. "files": [
  4728. "autoload.php"
  4729. ]
  4730. },
  4731. "notification-url": "https://packagist.org/downloads/",
  4732. "license": [
  4733. "ISC"
  4734. ],
  4735. "authors": [
  4736. {
  4737. "name": "Paragon Initiative Enterprises",
  4738. "email": "security@paragonie.com"
  4739. },
  4740. {
  4741. "name": "Frank Denis",
  4742. "email": "jedisct1@pureftpd.org"
  4743. }
  4744. ],
  4745. "description": "Pure PHP implementation of libsodium; uses the PHP extension if it exists",
  4746. "keywords": [
  4747. "Authentication",
  4748. "BLAKE2b",
  4749. "ChaCha20",
  4750. "ChaCha20-Poly1305",
  4751. "Chapoly",
  4752. "Curve25519",
  4753. "Ed25519",
  4754. "EdDSA",
  4755. "Edwards-curve Digital Signature Algorithm",
  4756. "Elliptic Curve Diffie-Hellman",
  4757. "Poly1305",
  4758. "Pure-PHP cryptography",
  4759. "RFC 7748",
  4760. "RFC 8032",
  4761. "Salpoly",
  4762. "Salsa20",
  4763. "X25519",
  4764. "XChaCha20-Poly1305",
  4765. "XSalsa20-Poly1305",
  4766. "Xchacha20",
  4767. "Xsalsa20",
  4768. "aead",
  4769. "cryptography",
  4770. "ecdh",
  4771. "elliptic curve",
  4772. "elliptic curve cryptography",
  4773. "encryption",
  4774. "libsodium",
  4775. "php",
  4776. "public-key cryptography",
  4777. "secret-key cryptography",
  4778. "side-channel resistant"
  4779. ],
  4780. "support": {
  4781. "issues": "https://github.com/paragonie/sodium_compat/issues",
  4782. "source": "https://github.com/paragonie/sodium_compat/tree/v1.19.0"
  4783. },
  4784. "time": "2022-09-26T03:40:35+00:00"
  4785. },
  4786. {
  4787. "name": "pbmedia/laravel-ffmpeg",
  4788. "version": "8.2.0",
  4789. "source": {
  4790. "type": "git",
  4791. "url": "https://github.com/protonemedia/laravel-ffmpeg.git",
  4792. "reference": "eac7fc20ef688519f6dc32ca1e8c034b640b2b37"
  4793. },
  4794. "dist": {
  4795. "type": "zip",
  4796. "url": "https://api.github.com/repos/protonemedia/laravel-ffmpeg/zipball/eac7fc20ef688519f6dc32ca1e8c034b640b2b37",
  4797. "reference": "eac7fc20ef688519f6dc32ca1e8c034b640b2b37",
  4798. "shasum": ""
  4799. },
  4800. "require": {
  4801. "illuminate/contracts": "^9.0",
  4802. "php": "^8.0|^8.1|^8.2",
  4803. "php-ffmpeg/php-ffmpeg": "^1.1",
  4804. "ramsey/collection": "^1.2.2"
  4805. },
  4806. "require-dev": {
  4807. "league/flysystem-memory": "^3.0",
  4808. "mockery/mockery": "^1.3.3",
  4809. "nesbot/carbon": "^2.63",
  4810. "orchestra/testbench": "^7.0",
  4811. "phpunit/phpunit": "^9.5.10",
  4812. "spatie/image": "^2.0",
  4813. "spatie/phpunit-snapshot-assertions": "^4.2"
  4814. },
  4815. "type": "library",
  4816. "extra": {
  4817. "laravel": {
  4818. "providers": [
  4819. "ProtoneMedia\\LaravelFFMpeg\\Support\\ServiceProvider"
  4820. ],
  4821. "aliases": {
  4822. "FFMpeg": "ProtoneMedia\\LaravelFFMpeg\\Support\\FFMpeg"
  4823. }
  4824. }
  4825. },
  4826. "autoload": {
  4827. "psr-4": {
  4828. "ProtoneMedia\\LaravelFFMpeg\\": "src"
  4829. }
  4830. },
  4831. "notification-url": "https://packagist.org/downloads/",
  4832. "license": [
  4833. "MIT"
  4834. ],
  4835. "authors": [
  4836. {
  4837. "name": "Pascal Baljet",
  4838. "email": "pascal@protone.media",
  4839. "homepage": "https://protone.media",
  4840. "role": "Developer"
  4841. }
  4842. ],
  4843. "description": "FFMpeg for Laravel",
  4844. "homepage": "https://github.com/protonemedia/laravel-ffmpeg",
  4845. "keywords": [
  4846. "ffmpeg",
  4847. "laravel",
  4848. "laravel-ffmpeg",
  4849. "protone media",
  4850. "protonemedia"
  4851. ],
  4852. "support": {
  4853. "issues": "https://github.com/protonemedia/laravel-ffmpeg/issues",
  4854. "source": "https://github.com/protonemedia/laravel-ffmpeg/tree/8.2.0"
  4855. },
  4856. "funding": [
  4857. {
  4858. "url": "https://github.com/pascalbaljet",
  4859. "type": "github"
  4860. }
  4861. ],
  4862. "time": "2022-12-11T10:29:33+00:00"
  4863. },
  4864. {
  4865. "name": "php-ffmpeg/php-ffmpeg",
  4866. "version": "v1.1.0",
  4867. "source": {
  4868. "type": "git",
  4869. "url": "https://github.com/PHP-FFMpeg/PHP-FFMpeg.git",
  4870. "reference": "eace6f174ff6d206ba648483ebe59760f7f6a0e1"
  4871. },
  4872. "dist": {
  4873. "type": "zip",
  4874. "url": "https://api.github.com/repos/PHP-FFMpeg/PHP-FFMpeg/zipball/eace6f174ff6d206ba648483ebe59760f7f6a0e1",
  4875. "reference": "eace6f174ff6d206ba648483ebe59760f7f6a0e1",
  4876. "shasum": ""
  4877. },
  4878. "require": {
  4879. "evenement/evenement": "^3.0",
  4880. "php": "^8.0 || ^8.1 || ^8.2",
  4881. "psr/log": "^1.0 || ^2.0 || ^3.0",
  4882. "spatie/temporary-directory": "^2.0",
  4883. "symfony/cache": "^5.4 || ^6.0",
  4884. "symfony/process": "^5.4 || ^6.0"
  4885. },
  4886. "require-dev": {
  4887. "mockery/mockery": "^1.5",
  4888. "phpunit/phpunit": "^9.5.10"
  4889. },
  4890. "suggest": {
  4891. "php-ffmpeg/extras": "A compilation of common audio & video drivers for PHP-FFMpeg"
  4892. },
  4893. "type": "library",
  4894. "autoload": {
  4895. "psr-4": {
  4896. "FFMpeg\\": "src/FFMpeg",
  4897. "Alchemy\\BinaryDriver\\": "src/Alchemy/BinaryDriver"
  4898. }
  4899. },
  4900. "notification-url": "https://packagist.org/downloads/",
  4901. "license": [
  4902. "MIT"
  4903. ],
  4904. "authors": [
  4905. {
  4906. "name": "Romain Neutron",
  4907. "email": "imprec@gmail.com",
  4908. "homepage": "http://www.lickmychip.com/"
  4909. },
  4910. {
  4911. "name": "Phraseanet Team",
  4912. "email": "info@alchemy.fr",
  4913. "homepage": "http://www.phraseanet.com/"
  4914. },
  4915. {
  4916. "name": "Patrik Karisch",
  4917. "email": "patrik@karisch.guru",
  4918. "homepage": "http://www.karisch.guru"
  4919. },
  4920. {
  4921. "name": "Romain Biard",
  4922. "email": "romain.biard@gmail.com",
  4923. "homepage": "https://www.strime.io/"
  4924. },
  4925. {
  4926. "name": "Jens Hausdorf",
  4927. "email": "hello@jens-hausdorf.de",
  4928. "homepage": "https://jens-hausdorf.de"
  4929. },
  4930. {
  4931. "name": "Pascal Baljet",
  4932. "email": "pascal@protone.media",
  4933. "homepage": "https://protone.media"
  4934. }
  4935. ],
  4936. "description": "FFMpeg PHP, an Object Oriented library to communicate with AVconv / ffmpeg",
  4937. "keywords": [
  4938. "audio",
  4939. "audio processing",
  4940. "avconv",
  4941. "avprobe",
  4942. "ffmpeg",
  4943. "ffprobe",
  4944. "video",
  4945. "video processing"
  4946. ],
  4947. "support": {
  4948. "issues": "https://github.com/PHP-FFMpeg/PHP-FFMpeg/issues",
  4949. "source": "https://github.com/PHP-FFMpeg/PHP-FFMpeg/tree/v1.1.0"
  4950. },
  4951. "time": "2022-12-09T13:57:05+00:00"
  4952. },
  4953. {
  4954. "name": "php-http/message-factory",
  4955. "version": "v1.0.2",
  4956. "source": {
  4957. "type": "git",
  4958. "url": "https://github.com/php-http/message-factory.git",
  4959. "reference": "a478cb11f66a6ac48d8954216cfed9aa06a501a1"
  4960. },
  4961. "dist": {
  4962. "type": "zip",
  4963. "url": "https://api.github.com/repos/php-http/message-factory/zipball/a478cb11f66a6ac48d8954216cfed9aa06a501a1",
  4964. "reference": "a478cb11f66a6ac48d8954216cfed9aa06a501a1",
  4965. "shasum": ""
  4966. },
  4967. "require": {
  4968. "php": ">=5.4",
  4969. "psr/http-message": "^1.0"
  4970. },
  4971. "type": "library",
  4972. "extra": {
  4973. "branch-alias": {
  4974. "dev-master": "1.0-dev"
  4975. }
  4976. },
  4977. "autoload": {
  4978. "psr-4": {
  4979. "Http\\Message\\": "src/"
  4980. }
  4981. },
  4982. "notification-url": "https://packagist.org/downloads/",
  4983. "license": [
  4984. "MIT"
  4985. ],
  4986. "authors": [
  4987. {
  4988. "name": "Márk Sági-Kazár",
  4989. "email": "mark.sagikazar@gmail.com"
  4990. }
  4991. ],
  4992. "description": "Factory interfaces for PSR-7 HTTP Message",
  4993. "homepage": "http://php-http.org",
  4994. "keywords": [
  4995. "factory",
  4996. "http",
  4997. "message",
  4998. "stream",
  4999. "uri"
  5000. ],
  5001. "support": {
  5002. "issues": "https://github.com/php-http/message-factory/issues",
  5003. "source": "https://github.com/php-http/message-factory/tree/master"
  5004. },
  5005. "time": "2015-12-19T14:08:53+00:00"
  5006. },
  5007. {
  5008. "name": "phpoption/phpoption",
  5009. "version": "1.9.0",
  5010. "source": {
  5011. "type": "git",
  5012. "url": "https://github.com/schmittjoh/php-option.git",
  5013. "reference": "dc5ff11e274a90cc1c743f66c9ad700ce50db9ab"
  5014. },
  5015. "dist": {
  5016. "type": "zip",
  5017. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/dc5ff11e274a90cc1c743f66c9ad700ce50db9ab",
  5018. "reference": "dc5ff11e274a90cc1c743f66c9ad700ce50db9ab",
  5019. "shasum": ""
  5020. },
  5021. "require": {
  5022. "php": "^7.2.5 || ^8.0"
  5023. },
  5024. "require-dev": {
  5025. "bamarni/composer-bin-plugin": "^1.8",
  5026. "phpunit/phpunit": "^8.5.28 || ^9.5.21"
  5027. },
  5028. "type": "library",
  5029. "extra": {
  5030. "bamarni-bin": {
  5031. "bin-links": true,
  5032. "forward-command": true
  5033. },
  5034. "branch-alias": {
  5035. "dev-master": "1.9-dev"
  5036. }
  5037. },
  5038. "autoload": {
  5039. "psr-4": {
  5040. "PhpOption\\": "src/PhpOption/"
  5041. }
  5042. },
  5043. "notification-url": "https://packagist.org/downloads/",
  5044. "license": [
  5045. "Apache-2.0"
  5046. ],
  5047. "authors": [
  5048. {
  5049. "name": "Johannes M. Schmitt",
  5050. "email": "schmittjoh@gmail.com",
  5051. "homepage": "https://github.com/schmittjoh"
  5052. },
  5053. {
  5054. "name": "Graham Campbell",
  5055. "email": "hello@gjcampbell.co.uk",
  5056. "homepage": "https://github.com/GrahamCampbell"
  5057. }
  5058. ],
  5059. "description": "Option Type for PHP",
  5060. "keywords": [
  5061. "language",
  5062. "option",
  5063. "php",
  5064. "type"
  5065. ],
  5066. "support": {
  5067. "issues": "https://github.com/schmittjoh/php-option/issues",
  5068. "source": "https://github.com/schmittjoh/php-option/tree/1.9.0"
  5069. },
  5070. "funding": [
  5071. {
  5072. "url": "https://github.com/GrahamCampbell",
  5073. "type": "github"
  5074. },
  5075. {
  5076. "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption",
  5077. "type": "tidelift"
  5078. }
  5079. ],
  5080. "time": "2022-07-30T15:51:26+00:00"
  5081. },
  5082. {
  5083. "name": "phpseclib/phpseclib",
  5084. "version": "2.0.39",
  5085. "source": {
  5086. "type": "git",
  5087. "url": "https://github.com/phpseclib/phpseclib.git",
  5088. "reference": "f3a0e2b715c40cf1fd270d444901b63311725d63"
  5089. },
  5090. "dist": {
  5091. "type": "zip",
  5092. "url": "https://api.github.com/repos/phpseclib/phpseclib/zipball/f3a0e2b715c40cf1fd270d444901b63311725d63",
  5093. "reference": "f3a0e2b715c40cf1fd270d444901b63311725d63",
  5094. "shasum": ""
  5095. },
  5096. "require": {
  5097. "php": ">=5.3.3"
  5098. },
  5099. "require-dev": {
  5100. "phing/phing": "~2.7",
  5101. "phpunit/phpunit": "^4.8.35|^5.7|^6.0|^9.4",
  5102. "squizlabs/php_codesniffer": "~2.0"
  5103. },
  5104. "suggest": {
  5105. "ext-gmp": "Install the GMP (GNU Multiple Precision) extension in order to speed up arbitrary precision integer arithmetic operations.",
  5106. "ext-libsodium": "SSH2/SFTP can make use of some algorithms provided by the libsodium-php extension.",
  5107. "ext-mcrypt": "Install the Mcrypt extension in order to speed up a few other cryptographic operations.",
  5108. "ext-openssl": "Install the OpenSSL extension in order to speed up a wide variety of cryptographic operations.",
  5109. "ext-xml": "Install the XML extension to load XML formatted public keys."
  5110. },
  5111. "type": "library",
  5112. "autoload": {
  5113. "files": [
  5114. "phpseclib/bootstrap.php"
  5115. ],
  5116. "psr-4": {
  5117. "phpseclib\\": "phpseclib/"
  5118. }
  5119. },
  5120. "notification-url": "https://packagist.org/downloads/",
  5121. "license": [
  5122. "MIT"
  5123. ],
  5124. "authors": [
  5125. {
  5126. "name": "Jim Wigginton",
  5127. "email": "terrafrost@php.net",
  5128. "role": "Lead Developer"
  5129. },
  5130. {
  5131. "name": "Patrick Monnerat",
  5132. "email": "pm@datasphere.ch",
  5133. "role": "Developer"
  5134. },
  5135. {
  5136. "name": "Andreas Fischer",
  5137. "email": "bantu@phpbb.com",
  5138. "role": "Developer"
  5139. },
  5140. {
  5141. "name": "Hans-Jürgen Petrich",
  5142. "email": "petrich@tronic-media.com",
  5143. "role": "Developer"
  5144. },
  5145. {
  5146. "name": "Graham Campbell",
  5147. "email": "graham@alt-three.com",
  5148. "role": "Developer"
  5149. }
  5150. ],
  5151. "description": "PHP Secure Communications Library - Pure-PHP implementations of RSA, AES, SSH2, SFTP, X.509 etc.",
  5152. "homepage": "http://phpseclib.sourceforge.net",
  5153. "keywords": [
  5154. "BigInteger",
  5155. "aes",
  5156. "asn.1",
  5157. "asn1",
  5158. "blowfish",
  5159. "crypto",
  5160. "cryptography",
  5161. "encryption",
  5162. "rsa",
  5163. "security",
  5164. "sftp",
  5165. "signature",
  5166. "signing",
  5167. "ssh",
  5168. "twofish",
  5169. "x.509",
  5170. "x509"
  5171. ],
  5172. "support": {
  5173. "issues": "https://github.com/phpseclib/phpseclib/issues",
  5174. "source": "https://github.com/phpseclib/phpseclib/tree/2.0.39"
  5175. },
  5176. "funding": [
  5177. {
  5178. "url": "https://github.com/terrafrost",
  5179. "type": "github"
  5180. },
  5181. {
  5182. "url": "https://www.patreon.com/phpseclib",
  5183. "type": "patreon"
  5184. },
  5185. {
  5186. "url": "https://tidelift.com/funding/github/packagist/phpseclib/phpseclib",
  5187. "type": "tidelift"
  5188. }
  5189. ],
  5190. "time": "2022-10-24T10:49:03+00:00"
  5191. },
  5192. {
  5193. "name": "pixelfed/fractal",
  5194. "version": "0.18.0",
  5195. "source": {
  5196. "type": "git",
  5197. "url": "https://github.com/pixelfed/fractal.git",
  5198. "reference": "faff10c9f3e3300b1571ef41926f933a9cce4782"
  5199. },
  5200. "dist": {
  5201. "type": "zip",
  5202. "url": "https://api.github.com/repos/pixelfed/fractal/zipball/faff10c9f3e3300b1571ef41926f933a9cce4782",
  5203. "reference": "faff10c9f3e3300b1571ef41926f933a9cce4782",
  5204. "shasum": ""
  5205. },
  5206. "require": {
  5207. "php": ">=5.4"
  5208. },
  5209. "require-dev": {
  5210. "doctrine/orm": "^2.5",
  5211. "illuminate/contracts": "~5.0",
  5212. "mockery/mockery": "~0.9",
  5213. "pagerfanta/pagerfanta": "~1.0.0",
  5214. "phpunit/phpunit": "^4.8.35",
  5215. "squizlabs/php_codesniffer": "~1.5",
  5216. "zendframework/zend-paginator": "~2.3"
  5217. },
  5218. "suggest": {
  5219. "illuminate/pagination": "The Illuminate Pagination component.",
  5220. "pagerfanta/pagerfanta": "Pagerfanta Paginator",
  5221. "zendframework/zend-paginator": "Zend Framework Paginator"
  5222. },
  5223. "type": "library",
  5224. "extra": {
  5225. "branch-alias": {
  5226. "dev-master": "0.13-dev"
  5227. }
  5228. },
  5229. "autoload": {
  5230. "psr-4": {
  5231. "League\\Fractal\\": "src"
  5232. }
  5233. },
  5234. "notification-url": "https://packagist.org/downloads/",
  5235. "license": [
  5236. "MIT"
  5237. ],
  5238. "authors": [
  5239. {
  5240. "name": "Phil Sturgeon",
  5241. "email": "me@philsturgeon.uk",
  5242. "homepage": "http://philsturgeon.uk/",
  5243. "role": "Developer"
  5244. }
  5245. ],
  5246. "description": "Handle the output of complex data structures ready for API output.",
  5247. "homepage": "http://fractal.thephpleague.com/",
  5248. "keywords": [
  5249. "api",
  5250. "json",
  5251. "league",
  5252. "rest"
  5253. ],
  5254. "support": {
  5255. "source": "https://github.com/pixelfed/fractal/tree/0.18.0"
  5256. },
  5257. "time": "2018-07-01T02:30:24+00:00"
  5258. },
  5259. {
  5260. "name": "pixelfed/laravel-snowflake",
  5261. "version": "v2.0.0",
  5262. "source": {
  5263. "type": "git",
  5264. "url": "https://github.com/pixelfed/laravel-snowflake.git",
  5265. "reference": "69255870dcbf949feac889dfc09180a6fef77f6d"
  5266. },
  5267. "dist": {
  5268. "type": "zip",
  5269. "url": "https://api.github.com/repos/pixelfed/laravel-snowflake/zipball/69255870dcbf949feac889dfc09180a6fef77f6d",
  5270. "reference": "69255870dcbf949feac889dfc09180a6fef77f6d",
  5271. "shasum": ""
  5272. },
  5273. "require": {
  5274. "php": ">=7.0.0"
  5275. },
  5276. "require-dev": {
  5277. "orchestra/testbench": "~3.0",
  5278. "phpunit/phpunit": "~6.0"
  5279. },
  5280. "type": "library",
  5281. "extra": {
  5282. "laravel": {
  5283. "providers": [
  5284. "Pixelfed\\Snowflake\\SnowflakeServiceProvider"
  5285. ]
  5286. }
  5287. },
  5288. "autoload": {
  5289. "psr-4": {
  5290. "Pixelfed\\Snowflake\\": "src/"
  5291. }
  5292. },
  5293. "notification-url": "https://packagist.org/downloads/",
  5294. "license": [
  5295. "MIT"
  5296. ],
  5297. "authors": [
  5298. {
  5299. "name": "Koki Asai",
  5300. "email": "koki@asai.email"
  5301. },
  5302. {
  5303. "name": "Daniel Supernault",
  5304. "email": "hello@pixelfed.org"
  5305. }
  5306. ],
  5307. "description": "Snowflake for Laravel.",
  5308. "homepage": "https://github.com/pixelfed/laravel-snowflake",
  5309. "keywords": [
  5310. "laravel",
  5311. "snowflake"
  5312. ],
  5313. "support": {
  5314. "source": "https://github.com/pixelfed/laravel-snowflake/tree/v2.0.0"
  5315. },
  5316. "time": "2019-03-12T05:13:49+00:00"
  5317. },
  5318. {
  5319. "name": "pixelfed/zttp",
  5320. "version": "v0.5.0",
  5321. "source": {
  5322. "type": "git",
  5323. "url": "https://github.com/pixelfed/zttp.git",
  5324. "reference": "e78af39d75171f360ab4c32eed1c7a71b67b5e3b"
  5325. },
  5326. "dist": {
  5327. "type": "zip",
  5328. "url": "https://api.github.com/repos/pixelfed/zttp/zipball/e78af39d75171f360ab4c32eed1c7a71b67b5e3b",
  5329. "reference": "e78af39d75171f360ab4c32eed1c7a71b67b5e3b",
  5330. "shasum": ""
  5331. },
  5332. "require": {
  5333. "guzzlehttp/guzzle": "^6.0|^7.0",
  5334. "php": ">=7.0",
  5335. "tightenco/collect": "^5.4"
  5336. },
  5337. "require-dev": {
  5338. "laravel/lumen-framework": "5.5.*",
  5339. "phpunit/phpunit": "^6.0"
  5340. },
  5341. "type": "library",
  5342. "autoload": {
  5343. "files": [
  5344. "src/Zttp.php"
  5345. ]
  5346. },
  5347. "notification-url": "https://packagist.org/downloads/",
  5348. "license": [
  5349. "MIT"
  5350. ],
  5351. "authors": [
  5352. {
  5353. "name": "Adam Wathan",
  5354. "email": "adam.wathan@gmail.com"
  5355. }
  5356. ],
  5357. "description": "A developer-experience focused HTTP client, optimized for most common use cases.",
  5358. "keywords": [
  5359. "Guzzle",
  5360. "http"
  5361. ],
  5362. "support": {
  5363. "source": "https://github.com/pixelfed/zttp/tree/v0.5.0"
  5364. },
  5365. "time": "2022-08-06T04:58:13+00:00"
  5366. },
  5367. {
  5368. "name": "pragmarx/google2fa",
  5369. "version": "v8.0.1",
  5370. "source": {
  5371. "type": "git",
  5372. "url": "https://github.com/antonioribeiro/google2fa.git",
  5373. "reference": "80c3d801b31fe165f8fe99ea085e0a37834e1be3"
  5374. },
  5375. "dist": {
  5376. "type": "zip",
  5377. "url": "https://api.github.com/repos/antonioribeiro/google2fa/zipball/80c3d801b31fe165f8fe99ea085e0a37834e1be3",
  5378. "reference": "80c3d801b31fe165f8fe99ea085e0a37834e1be3",
  5379. "shasum": ""
  5380. },
  5381. "require": {
  5382. "paragonie/constant_time_encoding": "^1.0|^2.0",
  5383. "php": "^7.1|^8.0"
  5384. },
  5385. "require-dev": {
  5386. "phpstan/phpstan": "^0.12.18",
  5387. "phpunit/phpunit": "^7.5.15|^8.5|^9.0"
  5388. },
  5389. "type": "library",
  5390. "autoload": {
  5391. "psr-4": {
  5392. "PragmaRX\\Google2FA\\": "src/"
  5393. }
  5394. },
  5395. "notification-url": "https://packagist.org/downloads/",
  5396. "license": [
  5397. "MIT"
  5398. ],
  5399. "authors": [
  5400. {
  5401. "name": "Antonio Carlos Ribeiro",
  5402. "email": "acr@antoniocarlosribeiro.com",
  5403. "role": "Creator & Designer"
  5404. }
  5405. ],
  5406. "description": "A One Time Password Authentication package, compatible with Google Authenticator.",
  5407. "keywords": [
  5408. "2fa",
  5409. "Authentication",
  5410. "Two Factor Authentication",
  5411. "google2fa"
  5412. ],
  5413. "support": {
  5414. "issues": "https://github.com/antonioribeiro/google2fa/issues",
  5415. "source": "https://github.com/antonioribeiro/google2fa/tree/v8.0.1"
  5416. },
  5417. "time": "2022-06-13T21:57:56+00:00"
  5418. },
  5419. {
  5420. "name": "predis/predis",
  5421. "version": "v2.0.3",
  5422. "source": {
  5423. "type": "git",
  5424. "url": "https://github.com/predis/predis.git",
  5425. "reference": "ff59f745815150c65ed388f7d64e7660fe961771"
  5426. },
  5427. "dist": {
  5428. "type": "zip",
  5429. "url": "https://api.github.com/repos/predis/predis/zipball/ff59f745815150c65ed388f7d64e7660fe961771",
  5430. "reference": "ff59f745815150c65ed388f7d64e7660fe961771",
  5431. "shasum": ""
  5432. },
  5433. "require": {
  5434. "php": "^7.2 || ^8.0"
  5435. },
  5436. "require-dev": {
  5437. "phpunit/phpunit": "^8.0 || ~9.4.4"
  5438. },
  5439. "suggest": {
  5440. "ext-curl": "Allows access to Webdis when paired with phpiredis",
  5441. "ext-phpiredis": "Allows faster serialization and deserialization of the Redis protocol"
  5442. },
  5443. "type": "library",
  5444. "extra": {
  5445. "branch-alias": {
  5446. "dev-main": "2.0-dev"
  5447. }
  5448. },
  5449. "autoload": {
  5450. "psr-4": {
  5451. "Predis\\": "src/"
  5452. }
  5453. },
  5454. "notification-url": "https://packagist.org/downloads/",
  5455. "license": [
  5456. "MIT"
  5457. ],
  5458. "authors": [
  5459. {
  5460. "name": "Daniele Alessandri",
  5461. "email": "suppakilla@gmail.com",
  5462. "homepage": "http://clorophilla.net",
  5463. "role": "Creator & Maintainer"
  5464. },
  5465. {
  5466. "name": "Till Krüss",
  5467. "homepage": "https://till.im",
  5468. "role": "Maintainer"
  5469. }
  5470. ],
  5471. "description": "A flexible and feature-complete Redis client for PHP.",
  5472. "homepage": "http://github.com/predis/predis",
  5473. "keywords": [
  5474. "nosql",
  5475. "predis",
  5476. "redis"
  5477. ],
  5478. "support": {
  5479. "issues": "https://github.com/predis/predis/issues",
  5480. "source": "https://github.com/predis/predis/tree/v2.0.3"
  5481. },
  5482. "funding": [
  5483. {
  5484. "url": "https://github.com/sponsors/tillkruss",
  5485. "type": "github"
  5486. }
  5487. ],
  5488. "time": "2022-10-11T16:52:29+00:00"
  5489. },
  5490. {
  5491. "name": "psr/cache",
  5492. "version": "3.0.0",
  5493. "source": {
  5494. "type": "git",
  5495. "url": "https://github.com/php-fig/cache.git",
  5496. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf"
  5497. },
  5498. "dist": {
  5499. "type": "zip",
  5500. "url": "https://api.github.com/repos/php-fig/cache/zipball/aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  5501. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  5502. "shasum": ""
  5503. },
  5504. "require": {
  5505. "php": ">=8.0.0"
  5506. },
  5507. "type": "library",
  5508. "extra": {
  5509. "branch-alias": {
  5510. "dev-master": "1.0.x-dev"
  5511. }
  5512. },
  5513. "autoload": {
  5514. "psr-4": {
  5515. "Psr\\Cache\\": "src/"
  5516. }
  5517. },
  5518. "notification-url": "https://packagist.org/downloads/",
  5519. "license": [
  5520. "MIT"
  5521. ],
  5522. "authors": [
  5523. {
  5524. "name": "PHP-FIG",
  5525. "homepage": "https://www.php-fig.org/"
  5526. }
  5527. ],
  5528. "description": "Common interface for caching libraries",
  5529. "keywords": [
  5530. "cache",
  5531. "psr",
  5532. "psr-6"
  5533. ],
  5534. "support": {
  5535. "source": "https://github.com/php-fig/cache/tree/3.0.0"
  5536. },
  5537. "time": "2021-02-03T23:26:27+00:00"
  5538. },
  5539. {
  5540. "name": "psr/clock",
  5541. "version": "1.0.0",
  5542. "source": {
  5543. "type": "git",
  5544. "url": "https://github.com/php-fig/clock.git",
  5545. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d"
  5546. },
  5547. "dist": {
  5548. "type": "zip",
  5549. "url": "https://api.github.com/repos/php-fig/clock/zipball/e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  5550. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  5551. "shasum": ""
  5552. },
  5553. "require": {
  5554. "php": "^7.0 || ^8.0"
  5555. },
  5556. "type": "library",
  5557. "autoload": {
  5558. "psr-4": {
  5559. "Psr\\Clock\\": "src/"
  5560. }
  5561. },
  5562. "notification-url": "https://packagist.org/downloads/",
  5563. "license": [
  5564. "MIT"
  5565. ],
  5566. "authors": [
  5567. {
  5568. "name": "PHP-FIG",
  5569. "homepage": "https://www.php-fig.org/"
  5570. }
  5571. ],
  5572. "description": "Common interface for reading the clock.",
  5573. "homepage": "https://github.com/php-fig/clock",
  5574. "keywords": [
  5575. "clock",
  5576. "now",
  5577. "psr",
  5578. "psr-20",
  5579. "time"
  5580. ],
  5581. "support": {
  5582. "issues": "https://github.com/php-fig/clock/issues",
  5583. "source": "https://github.com/php-fig/clock/tree/1.0.0"
  5584. },
  5585. "time": "2022-11-25T14:36:26+00:00"
  5586. },
  5587. {
  5588. "name": "psr/container",
  5589. "version": "2.0.2",
  5590. "source": {
  5591. "type": "git",
  5592. "url": "https://github.com/php-fig/container.git",
  5593. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963"
  5594. },
  5595. "dist": {
  5596. "type": "zip",
  5597. "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  5598. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  5599. "shasum": ""
  5600. },
  5601. "require": {
  5602. "php": ">=7.4.0"
  5603. },
  5604. "type": "library",
  5605. "extra": {
  5606. "branch-alias": {
  5607. "dev-master": "2.0.x-dev"
  5608. }
  5609. },
  5610. "autoload": {
  5611. "psr-4": {
  5612. "Psr\\Container\\": "src/"
  5613. }
  5614. },
  5615. "notification-url": "https://packagist.org/downloads/",
  5616. "license": [
  5617. "MIT"
  5618. ],
  5619. "authors": [
  5620. {
  5621. "name": "PHP-FIG",
  5622. "homepage": "https://www.php-fig.org/"
  5623. }
  5624. ],
  5625. "description": "Common Container Interface (PHP FIG PSR-11)",
  5626. "homepage": "https://github.com/php-fig/container",
  5627. "keywords": [
  5628. "PSR-11",
  5629. "container",
  5630. "container-interface",
  5631. "container-interop",
  5632. "psr"
  5633. ],
  5634. "support": {
  5635. "issues": "https://github.com/php-fig/container/issues",
  5636. "source": "https://github.com/php-fig/container/tree/2.0.2"
  5637. },
  5638. "time": "2021-11-05T16:47:00+00:00"
  5639. },
  5640. {
  5641. "name": "psr/event-dispatcher",
  5642. "version": "1.0.0",
  5643. "source": {
  5644. "type": "git",
  5645. "url": "https://github.com/php-fig/event-dispatcher.git",
  5646. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  5647. },
  5648. "dist": {
  5649. "type": "zip",
  5650. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  5651. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  5652. "shasum": ""
  5653. },
  5654. "require": {
  5655. "php": ">=7.2.0"
  5656. },
  5657. "type": "library",
  5658. "extra": {
  5659. "branch-alias": {
  5660. "dev-master": "1.0.x-dev"
  5661. }
  5662. },
  5663. "autoload": {
  5664. "psr-4": {
  5665. "Psr\\EventDispatcher\\": "src/"
  5666. }
  5667. },
  5668. "notification-url": "https://packagist.org/downloads/",
  5669. "license": [
  5670. "MIT"
  5671. ],
  5672. "authors": [
  5673. {
  5674. "name": "PHP-FIG",
  5675. "homepage": "http://www.php-fig.org/"
  5676. }
  5677. ],
  5678. "description": "Standard interfaces for event handling.",
  5679. "keywords": [
  5680. "events",
  5681. "psr",
  5682. "psr-14"
  5683. ],
  5684. "support": {
  5685. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  5686. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  5687. },
  5688. "time": "2019-01-08T18:20:26+00:00"
  5689. },
  5690. {
  5691. "name": "psr/http-client",
  5692. "version": "1.0.1",
  5693. "source": {
  5694. "type": "git",
  5695. "url": "https://github.com/php-fig/http-client.git",
  5696. "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621"
  5697. },
  5698. "dist": {
  5699. "type": "zip",
  5700. "url": "https://api.github.com/repos/php-fig/http-client/zipball/2dfb5f6c5eff0e91e20e913f8c5452ed95b86621",
  5701. "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621",
  5702. "shasum": ""
  5703. },
  5704. "require": {
  5705. "php": "^7.0 || ^8.0",
  5706. "psr/http-message": "^1.0"
  5707. },
  5708. "type": "library",
  5709. "extra": {
  5710. "branch-alias": {
  5711. "dev-master": "1.0.x-dev"
  5712. }
  5713. },
  5714. "autoload": {
  5715. "psr-4": {
  5716. "Psr\\Http\\Client\\": "src/"
  5717. }
  5718. },
  5719. "notification-url": "https://packagist.org/downloads/",
  5720. "license": [
  5721. "MIT"
  5722. ],
  5723. "authors": [
  5724. {
  5725. "name": "PHP-FIG",
  5726. "homepage": "http://www.php-fig.org/"
  5727. }
  5728. ],
  5729. "description": "Common interface for HTTP clients",
  5730. "homepage": "https://github.com/php-fig/http-client",
  5731. "keywords": [
  5732. "http",
  5733. "http-client",
  5734. "psr",
  5735. "psr-18"
  5736. ],
  5737. "support": {
  5738. "source": "https://github.com/php-fig/http-client/tree/master"
  5739. },
  5740. "time": "2020-06-29T06:28:15+00:00"
  5741. },
  5742. {
  5743. "name": "psr/http-factory",
  5744. "version": "1.0.1",
  5745. "source": {
  5746. "type": "git",
  5747. "url": "https://github.com/php-fig/http-factory.git",
  5748. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be"
  5749. },
  5750. "dist": {
  5751. "type": "zip",
  5752. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  5753. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  5754. "shasum": ""
  5755. },
  5756. "require": {
  5757. "php": ">=7.0.0",
  5758. "psr/http-message": "^1.0"
  5759. },
  5760. "type": "library",
  5761. "extra": {
  5762. "branch-alias": {
  5763. "dev-master": "1.0.x-dev"
  5764. }
  5765. },
  5766. "autoload": {
  5767. "psr-4": {
  5768. "Psr\\Http\\Message\\": "src/"
  5769. }
  5770. },
  5771. "notification-url": "https://packagist.org/downloads/",
  5772. "license": [
  5773. "MIT"
  5774. ],
  5775. "authors": [
  5776. {
  5777. "name": "PHP-FIG",
  5778. "homepage": "http://www.php-fig.org/"
  5779. }
  5780. ],
  5781. "description": "Common interfaces for PSR-7 HTTP message factories",
  5782. "keywords": [
  5783. "factory",
  5784. "http",
  5785. "message",
  5786. "psr",
  5787. "psr-17",
  5788. "psr-7",
  5789. "request",
  5790. "response"
  5791. ],
  5792. "support": {
  5793. "source": "https://github.com/php-fig/http-factory/tree/master"
  5794. },
  5795. "time": "2019-04-30T12:38:16+00:00"
  5796. },
  5797. {
  5798. "name": "psr/http-message",
  5799. "version": "1.0.1",
  5800. "source": {
  5801. "type": "git",
  5802. "url": "https://github.com/php-fig/http-message.git",
  5803. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  5804. },
  5805. "dist": {
  5806. "type": "zip",
  5807. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  5808. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  5809. "shasum": ""
  5810. },
  5811. "require": {
  5812. "php": ">=5.3.0"
  5813. },
  5814. "type": "library",
  5815. "extra": {
  5816. "branch-alias": {
  5817. "dev-master": "1.0.x-dev"
  5818. }
  5819. },
  5820. "autoload": {
  5821. "psr-4": {
  5822. "Psr\\Http\\Message\\": "src/"
  5823. }
  5824. },
  5825. "notification-url": "https://packagist.org/downloads/",
  5826. "license": [
  5827. "MIT"
  5828. ],
  5829. "authors": [
  5830. {
  5831. "name": "PHP-FIG",
  5832. "homepage": "http://www.php-fig.org/"
  5833. }
  5834. ],
  5835. "description": "Common interface for HTTP messages",
  5836. "homepage": "https://github.com/php-fig/http-message",
  5837. "keywords": [
  5838. "http",
  5839. "http-message",
  5840. "psr",
  5841. "psr-7",
  5842. "request",
  5843. "response"
  5844. ],
  5845. "support": {
  5846. "source": "https://github.com/php-fig/http-message/tree/master"
  5847. },
  5848. "time": "2016-08-06T14:39:51+00:00"
  5849. },
  5850. {
  5851. "name": "psr/log",
  5852. "version": "3.0.0",
  5853. "source": {
  5854. "type": "git",
  5855. "url": "https://github.com/php-fig/log.git",
  5856. "reference": "fe5ea303b0887d5caefd3d431c3e61ad47037001"
  5857. },
  5858. "dist": {
  5859. "type": "zip",
  5860. "url": "https://api.github.com/repos/php-fig/log/zipball/fe5ea303b0887d5caefd3d431c3e61ad47037001",
  5861. "reference": "fe5ea303b0887d5caefd3d431c3e61ad47037001",
  5862. "shasum": ""
  5863. },
  5864. "require": {
  5865. "php": ">=8.0.0"
  5866. },
  5867. "type": "library",
  5868. "extra": {
  5869. "branch-alias": {
  5870. "dev-master": "3.x-dev"
  5871. }
  5872. },
  5873. "autoload": {
  5874. "psr-4": {
  5875. "Psr\\Log\\": "src"
  5876. }
  5877. },
  5878. "notification-url": "https://packagist.org/downloads/",
  5879. "license": [
  5880. "MIT"
  5881. ],
  5882. "authors": [
  5883. {
  5884. "name": "PHP-FIG",
  5885. "homepage": "https://www.php-fig.org/"
  5886. }
  5887. ],
  5888. "description": "Common interface for logging libraries",
  5889. "homepage": "https://github.com/php-fig/log",
  5890. "keywords": [
  5891. "log",
  5892. "psr",
  5893. "psr-3"
  5894. ],
  5895. "support": {
  5896. "source": "https://github.com/php-fig/log/tree/3.0.0"
  5897. },
  5898. "time": "2021-07-14T16:46:02+00:00"
  5899. },
  5900. {
  5901. "name": "psr/simple-cache",
  5902. "version": "3.0.0",
  5903. "source": {
  5904. "type": "git",
  5905. "url": "https://github.com/php-fig/simple-cache.git",
  5906. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865"
  5907. },
  5908. "dist": {
  5909. "type": "zip",
  5910. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/764e0b3939f5ca87cb904f570ef9be2d78a07865",
  5911. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865",
  5912. "shasum": ""
  5913. },
  5914. "require": {
  5915. "php": ">=8.0.0"
  5916. },
  5917. "type": "library",
  5918. "extra": {
  5919. "branch-alias": {
  5920. "dev-master": "3.0.x-dev"
  5921. }
  5922. },
  5923. "autoload": {
  5924. "psr-4": {
  5925. "Psr\\SimpleCache\\": "src/"
  5926. }
  5927. },
  5928. "notification-url": "https://packagist.org/downloads/",
  5929. "license": [
  5930. "MIT"
  5931. ],
  5932. "authors": [
  5933. {
  5934. "name": "PHP-FIG",
  5935. "homepage": "https://www.php-fig.org/"
  5936. }
  5937. ],
  5938. "description": "Common interfaces for simple caching",
  5939. "keywords": [
  5940. "cache",
  5941. "caching",
  5942. "psr",
  5943. "psr-16",
  5944. "simple-cache"
  5945. ],
  5946. "support": {
  5947. "source": "https://github.com/php-fig/simple-cache/tree/3.0.0"
  5948. },
  5949. "time": "2021-10-29T13:26:27+00:00"
  5950. },
  5951. {
  5952. "name": "psy/psysh",
  5953. "version": "v0.11.9",
  5954. "source": {
  5955. "type": "git",
  5956. "url": "https://github.com/bobthecow/psysh.git",
  5957. "reference": "1acec99d6684a54ff92f8b548a4e41b566963778"
  5958. },
  5959. "dist": {
  5960. "type": "zip",
  5961. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/1acec99d6684a54ff92f8b548a4e41b566963778",
  5962. "reference": "1acec99d6684a54ff92f8b548a4e41b566963778",
  5963. "shasum": ""
  5964. },
  5965. "require": {
  5966. "ext-json": "*",
  5967. "ext-tokenizer": "*",
  5968. "nikic/php-parser": "^4.0 || ^3.1",
  5969. "php": "^8.0 || ^7.0.8",
  5970. "symfony/console": "^6.0 || ^5.0 || ^4.0 || ^3.4",
  5971. "symfony/var-dumper": "^6.0 || ^5.0 || ^4.0 || ^3.4"
  5972. },
  5973. "conflict": {
  5974. "symfony/console": "4.4.37 || 5.3.14 || 5.3.15 || 5.4.3 || 5.4.4 || 6.0.3 || 6.0.4"
  5975. },
  5976. "require-dev": {
  5977. "bamarni/composer-bin-plugin": "^1.2"
  5978. },
  5979. "suggest": {
  5980. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  5981. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  5982. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.",
  5983. "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history."
  5984. },
  5985. "bin": [
  5986. "bin/psysh"
  5987. ],
  5988. "type": "library",
  5989. "extra": {
  5990. "branch-alias": {
  5991. "dev-main": "0.11.x-dev"
  5992. }
  5993. },
  5994. "autoload": {
  5995. "files": [
  5996. "src/functions.php"
  5997. ],
  5998. "psr-4": {
  5999. "Psy\\": "src/"
  6000. }
  6001. },
  6002. "notification-url": "https://packagist.org/downloads/",
  6003. "license": [
  6004. "MIT"
  6005. ],
  6006. "authors": [
  6007. {
  6008. "name": "Justin Hileman",
  6009. "email": "justin@justinhileman.info",
  6010. "homepage": "http://justinhileman.com"
  6011. }
  6012. ],
  6013. "description": "An interactive shell for modern PHP.",
  6014. "homepage": "http://psysh.org",
  6015. "keywords": [
  6016. "REPL",
  6017. "console",
  6018. "interactive",
  6019. "shell"
  6020. ],
  6021. "support": {
  6022. "issues": "https://github.com/bobthecow/psysh/issues",
  6023. "source": "https://github.com/bobthecow/psysh/tree/v0.11.9"
  6024. },
  6025. "time": "2022-11-06T15:29:46+00:00"
  6026. },
  6027. {
  6028. "name": "pusher/pusher-php-server",
  6029. "version": "7.2.1",
  6030. "source": {
  6031. "type": "git",
  6032. "url": "https://github.com/pusher/pusher-http-php.git",
  6033. "reference": "5d708d43d774218e1068037c56a887658a4930ac"
  6034. },
  6035. "dist": {
  6036. "type": "zip",
  6037. "url": "https://api.github.com/repos/pusher/pusher-http-php/zipball/5d708d43d774218e1068037c56a887658a4930ac",
  6038. "reference": "5d708d43d774218e1068037c56a887658a4930ac",
  6039. "shasum": ""
  6040. },
  6041. "require": {
  6042. "ext-curl": "*",
  6043. "ext-json": "*",
  6044. "guzzlehttp/guzzle": "^7.2",
  6045. "paragonie/sodium_compat": "^1.6",
  6046. "php": "^7.3|^8.0",
  6047. "psr/log": "^1.0|^2.0|^3.0"
  6048. },
  6049. "require-dev": {
  6050. "overtrue/phplint": "^2.3",
  6051. "phpunit/phpunit": "^9.3"
  6052. },
  6053. "type": "library",
  6054. "extra": {
  6055. "branch-alias": {
  6056. "dev-master": "5.0-dev"
  6057. }
  6058. },
  6059. "autoload": {
  6060. "psr-4": {
  6061. "Pusher\\": "src/"
  6062. }
  6063. },
  6064. "notification-url": "https://packagist.org/downloads/",
  6065. "license": [
  6066. "MIT"
  6067. ],
  6068. "description": "Library for interacting with the Pusher REST API",
  6069. "keywords": [
  6070. "events",
  6071. "messaging",
  6072. "php-pusher-server",
  6073. "publish",
  6074. "push",
  6075. "pusher",
  6076. "real time",
  6077. "real-time",
  6078. "realtime",
  6079. "rest",
  6080. "trigger"
  6081. ],
  6082. "support": {
  6083. "issues": "https://github.com/pusher/pusher-http-php/issues",
  6084. "source": "https://github.com/pusher/pusher-http-php/tree/7.2.1"
  6085. },
  6086. "time": "2022-10-17T08:33:16+00:00"
  6087. },
  6088. {
  6089. "name": "ralouphie/getallheaders",
  6090. "version": "3.0.3",
  6091. "source": {
  6092. "type": "git",
  6093. "url": "https://github.com/ralouphie/getallheaders.git",
  6094. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  6095. },
  6096. "dist": {
  6097. "type": "zip",
  6098. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  6099. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  6100. "shasum": ""
  6101. },
  6102. "require": {
  6103. "php": ">=5.6"
  6104. },
  6105. "require-dev": {
  6106. "php-coveralls/php-coveralls": "^2.1",
  6107. "phpunit/phpunit": "^5 || ^6.5"
  6108. },
  6109. "type": "library",
  6110. "autoload": {
  6111. "files": [
  6112. "src/getallheaders.php"
  6113. ]
  6114. },
  6115. "notification-url": "https://packagist.org/downloads/",
  6116. "license": [
  6117. "MIT"
  6118. ],
  6119. "authors": [
  6120. {
  6121. "name": "Ralph Khattar",
  6122. "email": "ralph.khattar@gmail.com"
  6123. }
  6124. ],
  6125. "description": "A polyfill for getallheaders.",
  6126. "support": {
  6127. "issues": "https://github.com/ralouphie/getallheaders/issues",
  6128. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  6129. },
  6130. "time": "2019-03-08T08:55:37+00:00"
  6131. },
  6132. {
  6133. "name": "ramsey/collection",
  6134. "version": "1.2.2",
  6135. "source": {
  6136. "type": "git",
  6137. "url": "https://github.com/ramsey/collection.git",
  6138. "reference": "cccc74ee5e328031b15640b51056ee8d3bb66c0a"
  6139. },
  6140. "dist": {
  6141. "type": "zip",
  6142. "url": "https://api.github.com/repos/ramsey/collection/zipball/cccc74ee5e328031b15640b51056ee8d3bb66c0a",
  6143. "reference": "cccc74ee5e328031b15640b51056ee8d3bb66c0a",
  6144. "shasum": ""
  6145. },
  6146. "require": {
  6147. "php": "^7.3 || ^8",
  6148. "symfony/polyfill-php81": "^1.23"
  6149. },
  6150. "require-dev": {
  6151. "captainhook/captainhook": "^5.3",
  6152. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  6153. "ergebnis/composer-normalize": "^2.6",
  6154. "fakerphp/faker": "^1.5",
  6155. "hamcrest/hamcrest-php": "^2",
  6156. "jangregor/phpstan-prophecy": "^0.8",
  6157. "mockery/mockery": "^1.3",
  6158. "phpspec/prophecy-phpunit": "^2.0",
  6159. "phpstan/extension-installer": "^1",
  6160. "phpstan/phpstan": "^0.12.32",
  6161. "phpstan/phpstan-mockery": "^0.12.5",
  6162. "phpstan/phpstan-phpunit": "^0.12.11",
  6163. "phpunit/phpunit": "^8.5 || ^9",
  6164. "psy/psysh": "^0.10.4",
  6165. "slevomat/coding-standard": "^6.3",
  6166. "squizlabs/php_codesniffer": "^3.5",
  6167. "vimeo/psalm": "^4.4"
  6168. },
  6169. "type": "library",
  6170. "autoload": {
  6171. "psr-4": {
  6172. "Ramsey\\Collection\\": "src/"
  6173. }
  6174. },
  6175. "notification-url": "https://packagist.org/downloads/",
  6176. "license": [
  6177. "MIT"
  6178. ],
  6179. "authors": [
  6180. {
  6181. "name": "Ben Ramsey",
  6182. "email": "ben@benramsey.com",
  6183. "homepage": "https://benramsey.com"
  6184. }
  6185. ],
  6186. "description": "A PHP library for representing and manipulating collections.",
  6187. "keywords": [
  6188. "array",
  6189. "collection",
  6190. "hash",
  6191. "map",
  6192. "queue",
  6193. "set"
  6194. ],
  6195. "support": {
  6196. "issues": "https://github.com/ramsey/collection/issues",
  6197. "source": "https://github.com/ramsey/collection/tree/1.2.2"
  6198. },
  6199. "funding": [
  6200. {
  6201. "url": "https://github.com/ramsey",
  6202. "type": "github"
  6203. },
  6204. {
  6205. "url": "https://tidelift.com/funding/github/packagist/ramsey/collection",
  6206. "type": "tidelift"
  6207. }
  6208. ],
  6209. "time": "2021-10-10T03:01:02+00:00"
  6210. },
  6211. {
  6212. "name": "ramsey/uuid",
  6213. "version": "4.6.0",
  6214. "source": {
  6215. "type": "git",
  6216. "url": "https://github.com/ramsey/uuid.git",
  6217. "reference": "ad63bc700e7d021039e30ce464eba384c4a1d40f"
  6218. },
  6219. "dist": {
  6220. "type": "zip",
  6221. "url": "https://api.github.com/repos/ramsey/uuid/zipball/ad63bc700e7d021039e30ce464eba384c4a1d40f",
  6222. "reference": "ad63bc700e7d021039e30ce464eba384c4a1d40f",
  6223. "shasum": ""
  6224. },
  6225. "require": {
  6226. "brick/math": "^0.8.8 || ^0.9 || ^0.10",
  6227. "ext-json": "*",
  6228. "php": "^8.0",
  6229. "ramsey/collection": "^1.0"
  6230. },
  6231. "replace": {
  6232. "rhumsaa/uuid": "self.version"
  6233. },
  6234. "require-dev": {
  6235. "captainhook/captainhook": "^5.10",
  6236. "captainhook/plugin-composer": "^5.3",
  6237. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  6238. "doctrine/annotations": "^1.8",
  6239. "ergebnis/composer-normalize": "^2.15",
  6240. "mockery/mockery": "^1.3",
  6241. "paragonie/random-lib": "^2",
  6242. "php-mock/php-mock": "^2.2",
  6243. "php-mock/php-mock-mockery": "^1.3",
  6244. "php-parallel-lint/php-parallel-lint": "^1.1",
  6245. "phpbench/phpbench": "^1.0",
  6246. "phpstan/extension-installer": "^1.1",
  6247. "phpstan/phpstan": "^1.8",
  6248. "phpstan/phpstan-mockery": "^1.1",
  6249. "phpstan/phpstan-phpunit": "^1.1",
  6250. "phpunit/phpunit": "^8.5 || ^9",
  6251. "ramsey/composer-repl": "^1.4",
  6252. "slevomat/coding-standard": "^8.4",
  6253. "squizlabs/php_codesniffer": "^3.5",
  6254. "vimeo/psalm": "^4.9"
  6255. },
  6256. "suggest": {
  6257. "ext-bcmath": "Enables faster math with arbitrary-precision integers using BCMath.",
  6258. "ext-gmp": "Enables faster math with arbitrary-precision integers using GMP.",
  6259. "ext-uuid": "Enables the use of PeclUuidTimeGenerator and PeclUuidRandomGenerator.",
  6260. "paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
  6261. "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type."
  6262. },
  6263. "type": "library",
  6264. "extra": {
  6265. "captainhook": {
  6266. "force-install": true
  6267. }
  6268. },
  6269. "autoload": {
  6270. "files": [
  6271. "src/functions.php"
  6272. ],
  6273. "psr-4": {
  6274. "Ramsey\\Uuid\\": "src/"
  6275. }
  6276. },
  6277. "notification-url": "https://packagist.org/downloads/",
  6278. "license": [
  6279. "MIT"
  6280. ],
  6281. "description": "A PHP library for generating and working with universally unique identifiers (UUIDs).",
  6282. "keywords": [
  6283. "guid",
  6284. "identifier",
  6285. "uuid"
  6286. ],
  6287. "support": {
  6288. "issues": "https://github.com/ramsey/uuid/issues",
  6289. "source": "https://github.com/ramsey/uuid/tree/4.6.0"
  6290. },
  6291. "funding": [
  6292. {
  6293. "url": "https://github.com/ramsey",
  6294. "type": "github"
  6295. },
  6296. {
  6297. "url": "https://tidelift.com/funding/github/packagist/ramsey/uuid",
  6298. "type": "tidelift"
  6299. }
  6300. ],
  6301. "time": "2022-11-05T23:03:38+00:00"
  6302. },
  6303. {
  6304. "name": "ratchet/rfc6455",
  6305. "version": "v0.3.1",
  6306. "source": {
  6307. "type": "git",
  6308. "url": "https://github.com/ratchetphp/RFC6455.git",
  6309. "reference": "7c964514e93456a52a99a20fcfa0de242a43ccdb"
  6310. },
  6311. "dist": {
  6312. "type": "zip",
  6313. "url": "https://api.github.com/repos/ratchetphp/RFC6455/zipball/7c964514e93456a52a99a20fcfa0de242a43ccdb",
  6314. "reference": "7c964514e93456a52a99a20fcfa0de242a43ccdb",
  6315. "shasum": ""
  6316. },
  6317. "require": {
  6318. "guzzlehttp/psr7": "^2 || ^1.7",
  6319. "php": ">=5.4.2"
  6320. },
  6321. "require-dev": {
  6322. "phpunit/phpunit": "^5.7",
  6323. "react/socket": "^1.3"
  6324. },
  6325. "type": "library",
  6326. "autoload": {
  6327. "psr-4": {
  6328. "Ratchet\\RFC6455\\": "src"
  6329. }
  6330. },
  6331. "notification-url": "https://packagist.org/downloads/",
  6332. "license": [
  6333. "MIT"
  6334. ],
  6335. "authors": [
  6336. {
  6337. "name": "Chris Boden",
  6338. "email": "cboden@gmail.com",
  6339. "role": "Developer"
  6340. },
  6341. {
  6342. "name": "Matt Bonneau",
  6343. "role": "Developer"
  6344. }
  6345. ],
  6346. "description": "RFC6455 WebSocket protocol handler",
  6347. "homepage": "http://socketo.me",
  6348. "keywords": [
  6349. "WebSockets",
  6350. "rfc6455",
  6351. "websocket"
  6352. ],
  6353. "support": {
  6354. "chat": "https://gitter.im/reactphp/reactphp",
  6355. "issues": "https://github.com/ratchetphp/RFC6455/issues",
  6356. "source": "https://github.com/ratchetphp/RFC6455/tree/v0.3.1"
  6357. },
  6358. "time": "2021-12-09T23:20:49+00:00"
  6359. },
  6360. {
  6361. "name": "react/cache",
  6362. "version": "v1.2.0",
  6363. "source": {
  6364. "type": "git",
  6365. "url": "https://github.com/reactphp/cache.git",
  6366. "reference": "d47c472b64aa5608225f47965a484b75c7817d5b"
  6367. },
  6368. "dist": {
  6369. "type": "zip",
  6370. "url": "https://api.github.com/repos/reactphp/cache/zipball/d47c472b64aa5608225f47965a484b75c7817d5b",
  6371. "reference": "d47c472b64aa5608225f47965a484b75c7817d5b",
  6372. "shasum": ""
  6373. },
  6374. "require": {
  6375. "php": ">=5.3.0",
  6376. "react/promise": "^3.0 || ^2.0 || ^1.1"
  6377. },
  6378. "require-dev": {
  6379. "phpunit/phpunit": "^9.5 || ^5.7 || ^4.8.35"
  6380. },
  6381. "type": "library",
  6382. "autoload": {
  6383. "psr-4": {
  6384. "React\\Cache\\": "src/"
  6385. }
  6386. },
  6387. "notification-url": "https://packagist.org/downloads/",
  6388. "license": [
  6389. "MIT"
  6390. ],
  6391. "authors": [
  6392. {
  6393. "name": "Christian Lück",
  6394. "email": "christian@clue.engineering",
  6395. "homepage": "https://clue.engineering/"
  6396. },
  6397. {
  6398. "name": "Cees-Jan Kiewiet",
  6399. "email": "reactphp@ceesjankiewiet.nl",
  6400. "homepage": "https://wyrihaximus.net/"
  6401. },
  6402. {
  6403. "name": "Jan Sorgalla",
  6404. "email": "jsorgalla@gmail.com",
  6405. "homepage": "https://sorgalla.com/"
  6406. },
  6407. {
  6408. "name": "Chris Boden",
  6409. "email": "cboden@gmail.com",
  6410. "homepage": "https://cboden.dev/"
  6411. }
  6412. ],
  6413. "description": "Async, Promise-based cache interface for ReactPHP",
  6414. "keywords": [
  6415. "cache",
  6416. "caching",
  6417. "promise",
  6418. "reactphp"
  6419. ],
  6420. "support": {
  6421. "issues": "https://github.com/reactphp/cache/issues",
  6422. "source": "https://github.com/reactphp/cache/tree/v1.2.0"
  6423. },
  6424. "funding": [
  6425. {
  6426. "url": "https://opencollective.com/reactphp",
  6427. "type": "open_collective"
  6428. }
  6429. ],
  6430. "time": "2022-11-30T15:59:55+00:00"
  6431. },
  6432. {
  6433. "name": "react/dns",
  6434. "version": "v1.10.0",
  6435. "source": {
  6436. "type": "git",
  6437. "url": "https://github.com/reactphp/dns.git",
  6438. "reference": "a5427e7dfa47713e438016905605819d101f238c"
  6439. },
  6440. "dist": {
  6441. "type": "zip",
  6442. "url": "https://api.github.com/repos/reactphp/dns/zipball/a5427e7dfa47713e438016905605819d101f238c",
  6443. "reference": "a5427e7dfa47713e438016905605819d101f238c",
  6444. "shasum": ""
  6445. },
  6446. "require": {
  6447. "php": ">=5.3.0",
  6448. "react/cache": "^1.0 || ^0.6 || ^0.5",
  6449. "react/event-loop": "^1.2",
  6450. "react/promise": "^3.0 || ^2.7 || ^1.2.1",
  6451. "react/promise-timer": "^1.9"
  6452. },
  6453. "require-dev": {
  6454. "phpunit/phpunit": "^9.3 || ^4.8.35",
  6455. "react/async": "^4 || ^3 || ^2"
  6456. },
  6457. "type": "library",
  6458. "autoload": {
  6459. "psr-4": {
  6460. "React\\Dns\\": "src"
  6461. }
  6462. },
  6463. "notification-url": "https://packagist.org/downloads/",
  6464. "license": [
  6465. "MIT"
  6466. ],
  6467. "authors": [
  6468. {
  6469. "name": "Christian Lück",
  6470. "email": "christian@clue.engineering",
  6471. "homepage": "https://clue.engineering/"
  6472. },
  6473. {
  6474. "name": "Cees-Jan Kiewiet",
  6475. "email": "reactphp@ceesjankiewiet.nl",
  6476. "homepage": "https://wyrihaximus.net/"
  6477. },
  6478. {
  6479. "name": "Jan Sorgalla",
  6480. "email": "jsorgalla@gmail.com",
  6481. "homepage": "https://sorgalla.com/"
  6482. },
  6483. {
  6484. "name": "Chris Boden",
  6485. "email": "cboden@gmail.com",
  6486. "homepage": "https://cboden.dev/"
  6487. }
  6488. ],
  6489. "description": "Async DNS resolver for ReactPHP",
  6490. "keywords": [
  6491. "async",
  6492. "dns",
  6493. "dns-resolver",
  6494. "reactphp"
  6495. ],
  6496. "support": {
  6497. "issues": "https://github.com/reactphp/dns/issues",
  6498. "source": "https://github.com/reactphp/dns/tree/v1.10.0"
  6499. },
  6500. "funding": [
  6501. {
  6502. "url": "https://github.com/WyriHaximus",
  6503. "type": "github"
  6504. },
  6505. {
  6506. "url": "https://github.com/clue",
  6507. "type": "github"
  6508. }
  6509. ],
  6510. "time": "2022-09-08T12:22:46+00:00"
  6511. },
  6512. {
  6513. "name": "react/event-loop",
  6514. "version": "v1.3.0",
  6515. "source": {
  6516. "type": "git",
  6517. "url": "https://github.com/reactphp/event-loop.git",
  6518. "reference": "187fb56f46d424afb6ec4ad089269c72eec2e137"
  6519. },
  6520. "dist": {
  6521. "type": "zip",
  6522. "url": "https://api.github.com/repos/reactphp/event-loop/zipball/187fb56f46d424afb6ec4ad089269c72eec2e137",
  6523. "reference": "187fb56f46d424afb6ec4ad089269c72eec2e137",
  6524. "shasum": ""
  6525. },
  6526. "require": {
  6527. "php": ">=5.3.0"
  6528. },
  6529. "require-dev": {
  6530. "phpunit/phpunit": "^9.3 || ^5.7 || ^4.8.35"
  6531. },
  6532. "suggest": {
  6533. "ext-event": "~1.0 for ExtEventLoop",
  6534. "ext-pcntl": "For signal handling support when using the StreamSelectLoop",
  6535. "ext-uv": "* for ExtUvLoop"
  6536. },
  6537. "type": "library",
  6538. "autoload": {
  6539. "psr-4": {
  6540. "React\\EventLoop\\": "src"
  6541. }
  6542. },
  6543. "notification-url": "https://packagist.org/downloads/",
  6544. "license": [
  6545. "MIT"
  6546. ],
  6547. "authors": [
  6548. {
  6549. "name": "Christian Lück",
  6550. "email": "christian@clue.engineering",
  6551. "homepage": "https://clue.engineering/"
  6552. },
  6553. {
  6554. "name": "Cees-Jan Kiewiet",
  6555. "email": "reactphp@ceesjankiewiet.nl",
  6556. "homepage": "https://wyrihaximus.net/"
  6557. },
  6558. {
  6559. "name": "Jan Sorgalla",
  6560. "email": "jsorgalla@gmail.com",
  6561. "homepage": "https://sorgalla.com/"
  6562. },
  6563. {
  6564. "name": "Chris Boden",
  6565. "email": "cboden@gmail.com",
  6566. "homepage": "https://cboden.dev/"
  6567. }
  6568. ],
  6569. "description": "ReactPHP's core reactor event loop that libraries can use for evented I/O.",
  6570. "keywords": [
  6571. "asynchronous",
  6572. "event-loop"
  6573. ],
  6574. "support": {
  6575. "issues": "https://github.com/reactphp/event-loop/issues",
  6576. "source": "https://github.com/reactphp/event-loop/tree/v1.3.0"
  6577. },
  6578. "funding": [
  6579. {
  6580. "url": "https://github.com/WyriHaximus",
  6581. "type": "github"
  6582. },
  6583. {
  6584. "url": "https://github.com/clue",
  6585. "type": "github"
  6586. }
  6587. ],
  6588. "time": "2022-03-17T11:10:22+00:00"
  6589. },
  6590. {
  6591. "name": "react/http",
  6592. "version": "v1.8.0",
  6593. "source": {
  6594. "type": "git",
  6595. "url": "https://github.com/reactphp/http.git",
  6596. "reference": "aa7512ee17258c88466de30f9cb44ec5f9df3ff3"
  6597. },
  6598. "dist": {
  6599. "type": "zip",
  6600. "url": "https://api.github.com/repos/reactphp/http/zipball/aa7512ee17258c88466de30f9cb44ec5f9df3ff3",
  6601. "reference": "aa7512ee17258c88466de30f9cb44ec5f9df3ff3",
  6602. "shasum": ""
  6603. },
  6604. "require": {
  6605. "evenement/evenement": "^3.0 || ^2.0 || ^1.0",
  6606. "fig/http-message-util": "^1.1",
  6607. "php": ">=5.3.0",
  6608. "psr/http-message": "^1.0",
  6609. "react/event-loop": "^1.2",
  6610. "react/promise": "^3 || ^2.3 || ^1.2.1",
  6611. "react/promise-stream": "^1.4",
  6612. "react/socket": "^1.12",
  6613. "react/stream": "^1.2",
  6614. "ringcentral/psr7": "^1.2"
  6615. },
  6616. "require-dev": {
  6617. "clue/http-proxy-react": "^1.8",
  6618. "clue/reactphp-ssh-proxy": "^1.4",
  6619. "clue/socks-react": "^1.4",
  6620. "phpunit/phpunit": "^9.3 || ^5.7 || ^4.8.35",
  6621. "react/async": "^4 || ^3 || ^2",
  6622. "react/promise-timer": "^1.9"
  6623. },
  6624. "type": "library",
  6625. "autoload": {
  6626. "psr-4": {
  6627. "React\\Http\\": "src"
  6628. }
  6629. },
  6630. "notification-url": "https://packagist.org/downloads/",
  6631. "license": [
  6632. "MIT"
  6633. ],
  6634. "authors": [
  6635. {
  6636. "name": "Christian Lück",
  6637. "email": "christian@clue.engineering",
  6638. "homepage": "https://clue.engineering/"
  6639. },
  6640. {
  6641. "name": "Cees-Jan Kiewiet",
  6642. "email": "reactphp@ceesjankiewiet.nl",
  6643. "homepage": "https://wyrihaximus.net/"
  6644. },
  6645. {
  6646. "name": "Jan Sorgalla",
  6647. "email": "jsorgalla@gmail.com",
  6648. "homepage": "https://sorgalla.com/"
  6649. },
  6650. {
  6651. "name": "Chris Boden",
  6652. "email": "cboden@gmail.com",
  6653. "homepage": "https://cboden.dev/"
  6654. }
  6655. ],
  6656. "description": "Event-driven, streaming HTTP client and server implementation for ReactPHP",
  6657. "keywords": [
  6658. "async",
  6659. "client",
  6660. "event-driven",
  6661. "http",
  6662. "http client",
  6663. "http server",
  6664. "https",
  6665. "psr-7",
  6666. "reactphp",
  6667. "server",
  6668. "streaming"
  6669. ],
  6670. "support": {
  6671. "issues": "https://github.com/reactphp/http/issues",
  6672. "source": "https://github.com/reactphp/http/tree/v1.8.0"
  6673. },
  6674. "funding": [
  6675. {
  6676. "url": "https://github.com/WyriHaximus",
  6677. "type": "github"
  6678. },
  6679. {
  6680. "url": "https://github.com/clue",
  6681. "type": "github"
  6682. }
  6683. ],
  6684. "time": "2022-09-29T12:55:52+00:00"
  6685. },
  6686. {
  6687. "name": "react/promise",
  6688. "version": "v2.9.0",
  6689. "source": {
  6690. "type": "git",
  6691. "url": "https://github.com/reactphp/promise.git",
  6692. "reference": "234f8fd1023c9158e2314fa9d7d0e6a83db42910"
  6693. },
  6694. "dist": {
  6695. "type": "zip",
  6696. "url": "https://api.github.com/repos/reactphp/promise/zipball/234f8fd1023c9158e2314fa9d7d0e6a83db42910",
  6697. "reference": "234f8fd1023c9158e2314fa9d7d0e6a83db42910",
  6698. "shasum": ""
  6699. },
  6700. "require": {
  6701. "php": ">=5.4.0"
  6702. },
  6703. "require-dev": {
  6704. "phpunit/phpunit": "^9.3 || ^5.7 || ^4.8.36"
  6705. },
  6706. "type": "library",
  6707. "autoload": {
  6708. "files": [
  6709. "src/functions_include.php"
  6710. ],
  6711. "psr-4": {
  6712. "React\\Promise\\": "src/"
  6713. }
  6714. },
  6715. "notification-url": "https://packagist.org/downloads/",
  6716. "license": [
  6717. "MIT"
  6718. ],
  6719. "authors": [
  6720. {
  6721. "name": "Jan Sorgalla",
  6722. "email": "jsorgalla@gmail.com",
  6723. "homepage": "https://sorgalla.com/"
  6724. },
  6725. {
  6726. "name": "Christian Lück",
  6727. "email": "christian@clue.engineering",
  6728. "homepage": "https://clue.engineering/"
  6729. },
  6730. {
  6731. "name": "Cees-Jan Kiewiet",
  6732. "email": "reactphp@ceesjankiewiet.nl",
  6733. "homepage": "https://wyrihaximus.net/"
  6734. },
  6735. {
  6736. "name": "Chris Boden",
  6737. "email": "cboden@gmail.com",
  6738. "homepage": "https://cboden.dev/"
  6739. }
  6740. ],
  6741. "description": "A lightweight implementation of CommonJS Promises/A for PHP",
  6742. "keywords": [
  6743. "promise",
  6744. "promises"
  6745. ],
  6746. "support": {
  6747. "issues": "https://github.com/reactphp/promise/issues",
  6748. "source": "https://github.com/reactphp/promise/tree/v2.9.0"
  6749. },
  6750. "funding": [
  6751. {
  6752. "url": "https://github.com/WyriHaximus",
  6753. "type": "github"
  6754. },
  6755. {
  6756. "url": "https://github.com/clue",
  6757. "type": "github"
  6758. }
  6759. ],
  6760. "time": "2022-02-11T10:27:51+00:00"
  6761. },
  6762. {
  6763. "name": "react/promise-stream",
  6764. "version": "v1.5.0",
  6765. "source": {
  6766. "type": "git",
  6767. "url": "https://github.com/reactphp/promise-stream.git",
  6768. "reference": "e6d2805e09ad50c4896f65f5e8705fe4ee7731a3"
  6769. },
  6770. "dist": {
  6771. "type": "zip",
  6772. "url": "https://api.github.com/repos/reactphp/promise-stream/zipball/e6d2805e09ad50c4896f65f5e8705fe4ee7731a3",
  6773. "reference": "e6d2805e09ad50c4896f65f5e8705fe4ee7731a3",
  6774. "shasum": ""
  6775. },
  6776. "require": {
  6777. "php": ">=5.3",
  6778. "react/promise": "^3 || ^2.1 || ^1.2",
  6779. "react/stream": "^1.0 || ^0.7 || ^0.6 || ^0.5 || ^0.4.6"
  6780. },
  6781. "require-dev": {
  6782. "phpunit/phpunit": "^9.3 || ^5.7 || ^4.8.35"
  6783. },
  6784. "type": "library",
  6785. "autoload": {
  6786. "files": [
  6787. "src/functions_include.php"
  6788. ],
  6789. "psr-4": {
  6790. "React\\Promise\\Stream\\": "src/"
  6791. }
  6792. },
  6793. "notification-url": "https://packagist.org/downloads/",
  6794. "license": [
  6795. "MIT"
  6796. ],
  6797. "authors": [
  6798. {
  6799. "name": "Christian Lück",
  6800. "email": "christian@clue.engineering",
  6801. "homepage": "https://clue.engineering/"
  6802. },
  6803. {
  6804. "name": "Cees-Jan Kiewiet",
  6805. "email": "reactphp@ceesjankiewiet.nl",
  6806. "homepage": "https://wyrihaximus.net/"
  6807. },
  6808. {
  6809. "name": "Jan Sorgalla",
  6810. "email": "jsorgalla@gmail.com",
  6811. "homepage": "https://sorgalla.com/"
  6812. },
  6813. {
  6814. "name": "Chris Boden",
  6815. "email": "cboden@gmail.com",
  6816. "homepage": "https://cboden.dev/"
  6817. }
  6818. ],
  6819. "description": "The missing link between Promise-land and Stream-land for ReactPHP",
  6820. "homepage": "https://github.com/reactphp/promise-stream",
  6821. "keywords": [
  6822. "Buffer",
  6823. "async",
  6824. "promise",
  6825. "reactphp",
  6826. "stream",
  6827. "unwrap"
  6828. ],
  6829. "support": {
  6830. "issues": "https://github.com/reactphp/promise-stream/issues",
  6831. "source": "https://github.com/reactphp/promise-stream/tree/v1.5.0"
  6832. },
  6833. "funding": [
  6834. {
  6835. "url": "https://github.com/WyriHaximus",
  6836. "type": "github"
  6837. },
  6838. {
  6839. "url": "https://github.com/clue",
  6840. "type": "github"
  6841. }
  6842. ],
  6843. "time": "2022-09-09T11:42:18+00:00"
  6844. },
  6845. {
  6846. "name": "react/promise-timer",
  6847. "version": "v1.9.0",
  6848. "source": {
  6849. "type": "git",
  6850. "url": "https://github.com/reactphp/promise-timer.git",
  6851. "reference": "aa7a73c74b8d8c0f622f5982ff7b0351bc29e495"
  6852. },
  6853. "dist": {
  6854. "type": "zip",
  6855. "url": "https://api.github.com/repos/reactphp/promise-timer/zipball/aa7a73c74b8d8c0f622f5982ff7b0351bc29e495",
  6856. "reference": "aa7a73c74b8d8c0f622f5982ff7b0351bc29e495",
  6857. "shasum": ""
  6858. },
  6859. "require": {
  6860. "php": ">=5.3",
  6861. "react/event-loop": "^1.2",
  6862. "react/promise": "^3.0 || ^2.7.0 || ^1.2.1"
  6863. },
  6864. "require-dev": {
  6865. "phpunit/phpunit": "^9.3 || ^5.7 || ^4.8.35"
  6866. },
  6867. "type": "library",
  6868. "autoload": {
  6869. "files": [
  6870. "src/functions_include.php"
  6871. ],
  6872. "psr-4": {
  6873. "React\\Promise\\Timer\\": "src/"
  6874. }
  6875. },
  6876. "notification-url": "https://packagist.org/downloads/",
  6877. "license": [
  6878. "MIT"
  6879. ],
  6880. "authors": [
  6881. {
  6882. "name": "Christian Lück",
  6883. "email": "christian@clue.engineering",
  6884. "homepage": "https://clue.engineering/"
  6885. },
  6886. {
  6887. "name": "Cees-Jan Kiewiet",
  6888. "email": "reactphp@ceesjankiewiet.nl",
  6889. "homepage": "https://wyrihaximus.net/"
  6890. },
  6891. {
  6892. "name": "Jan Sorgalla",
  6893. "email": "jsorgalla@gmail.com",
  6894. "homepage": "https://sorgalla.com/"
  6895. },
  6896. {
  6897. "name": "Chris Boden",
  6898. "email": "cboden@gmail.com",
  6899. "homepage": "https://cboden.dev/"
  6900. }
  6901. ],
  6902. "description": "A trivial implementation of timeouts for Promises, built on top of ReactPHP.",
  6903. "homepage": "https://github.com/reactphp/promise-timer",
  6904. "keywords": [
  6905. "async",
  6906. "event-loop",
  6907. "promise",
  6908. "reactphp",
  6909. "timeout",
  6910. "timer"
  6911. ],
  6912. "support": {
  6913. "issues": "https://github.com/reactphp/promise-timer/issues",
  6914. "source": "https://github.com/reactphp/promise-timer/tree/v1.9.0"
  6915. },
  6916. "funding": [
  6917. {
  6918. "url": "https://github.com/WyriHaximus",
  6919. "type": "github"
  6920. },
  6921. {
  6922. "url": "https://github.com/clue",
  6923. "type": "github"
  6924. }
  6925. ],
  6926. "time": "2022-06-13T13:41:03+00:00"
  6927. },
  6928. {
  6929. "name": "react/socket",
  6930. "version": "v1.12.0",
  6931. "source": {
  6932. "type": "git",
  6933. "url": "https://github.com/reactphp/socket.git",
  6934. "reference": "81e1b4d7f5450ebd8d2e9a95bb008bb15ca95a7b"
  6935. },
  6936. "dist": {
  6937. "type": "zip",
  6938. "url": "https://api.github.com/repos/reactphp/socket/zipball/81e1b4d7f5450ebd8d2e9a95bb008bb15ca95a7b",
  6939. "reference": "81e1b4d7f5450ebd8d2e9a95bb008bb15ca95a7b",
  6940. "shasum": ""
  6941. },
  6942. "require": {
  6943. "evenement/evenement": "^3.0 || ^2.0 || ^1.0",
  6944. "php": ">=5.3.0",
  6945. "react/dns": "^1.8",
  6946. "react/event-loop": "^1.2",
  6947. "react/promise": "^3 || ^2.6 || ^1.2.1",
  6948. "react/promise-timer": "^1.9",
  6949. "react/stream": "^1.2"
  6950. },
  6951. "require-dev": {
  6952. "phpunit/phpunit": "^9.3 || ^5.7 || ^4.8.35",
  6953. "react/async": "^4 || ^3 || ^2",
  6954. "react/promise-stream": "^1.4"
  6955. },
  6956. "type": "library",
  6957. "autoload": {
  6958. "psr-4": {
  6959. "React\\Socket\\": "src"
  6960. }
  6961. },
  6962. "notification-url": "https://packagist.org/downloads/",
  6963. "license": [
  6964. "MIT"
  6965. ],
  6966. "authors": [
  6967. {
  6968. "name": "Christian Lück",
  6969. "email": "christian@clue.engineering",
  6970. "homepage": "https://clue.engineering/"
  6971. },
  6972. {
  6973. "name": "Cees-Jan Kiewiet",
  6974. "email": "reactphp@ceesjankiewiet.nl",
  6975. "homepage": "https://wyrihaximus.net/"
  6976. },
  6977. {
  6978. "name": "Jan Sorgalla",
  6979. "email": "jsorgalla@gmail.com",
  6980. "homepage": "https://sorgalla.com/"
  6981. },
  6982. {
  6983. "name": "Chris Boden",
  6984. "email": "cboden@gmail.com",
  6985. "homepage": "https://cboden.dev/"
  6986. }
  6987. ],
  6988. "description": "Async, streaming plaintext TCP/IP and secure TLS socket server and client connections for ReactPHP",
  6989. "keywords": [
  6990. "Connection",
  6991. "Socket",
  6992. "async",
  6993. "reactphp",
  6994. "stream"
  6995. ],
  6996. "support": {
  6997. "issues": "https://github.com/reactphp/socket/issues",
  6998. "source": "https://github.com/reactphp/socket/tree/v1.12.0"
  6999. },
  7000. "funding": [
  7001. {
  7002. "url": "https://github.com/WyriHaximus",
  7003. "type": "github"
  7004. },
  7005. {
  7006. "url": "https://github.com/clue",
  7007. "type": "github"
  7008. }
  7009. ],
  7010. "time": "2022-08-25T12:32:25+00:00"
  7011. },
  7012. {
  7013. "name": "react/stream",
  7014. "version": "v1.2.0",
  7015. "source": {
  7016. "type": "git",
  7017. "url": "https://github.com/reactphp/stream.git",
  7018. "reference": "7a423506ee1903e89f1e08ec5f0ed430ff784ae9"
  7019. },
  7020. "dist": {
  7021. "type": "zip",
  7022. "url": "https://api.github.com/repos/reactphp/stream/zipball/7a423506ee1903e89f1e08ec5f0ed430ff784ae9",
  7023. "reference": "7a423506ee1903e89f1e08ec5f0ed430ff784ae9",
  7024. "shasum": ""
  7025. },
  7026. "require": {
  7027. "evenement/evenement": "^3.0 || ^2.0 || ^1.0",
  7028. "php": ">=5.3.8",
  7029. "react/event-loop": "^1.2"
  7030. },
  7031. "require-dev": {
  7032. "clue/stream-filter": "~1.2",
  7033. "phpunit/phpunit": "^9.3 || ^5.7 || ^4.8.35"
  7034. },
  7035. "type": "library",
  7036. "autoload": {
  7037. "psr-4": {
  7038. "React\\Stream\\": "src"
  7039. }
  7040. },
  7041. "notification-url": "https://packagist.org/downloads/",
  7042. "license": [
  7043. "MIT"
  7044. ],
  7045. "authors": [
  7046. {
  7047. "name": "Christian Lück",
  7048. "email": "christian@clue.engineering",
  7049. "homepage": "https://clue.engineering/"
  7050. },
  7051. {
  7052. "name": "Cees-Jan Kiewiet",
  7053. "email": "reactphp@ceesjankiewiet.nl",
  7054. "homepage": "https://wyrihaximus.net/"
  7055. },
  7056. {
  7057. "name": "Jan Sorgalla",
  7058. "email": "jsorgalla@gmail.com",
  7059. "homepage": "https://sorgalla.com/"
  7060. },
  7061. {
  7062. "name": "Chris Boden",
  7063. "email": "cboden@gmail.com",
  7064. "homepage": "https://cboden.dev/"
  7065. }
  7066. ],
  7067. "description": "Event-driven readable and writable streams for non-blocking I/O in ReactPHP",
  7068. "keywords": [
  7069. "event-driven",
  7070. "io",
  7071. "non-blocking",
  7072. "pipe",
  7073. "reactphp",
  7074. "readable",
  7075. "stream",
  7076. "writable"
  7077. ],
  7078. "support": {
  7079. "issues": "https://github.com/reactphp/stream/issues",
  7080. "source": "https://github.com/reactphp/stream/tree/v1.2.0"
  7081. },
  7082. "funding": [
  7083. {
  7084. "url": "https://github.com/WyriHaximus",
  7085. "type": "github"
  7086. },
  7087. {
  7088. "url": "https://github.com/clue",
  7089. "type": "github"
  7090. }
  7091. ],
  7092. "time": "2021-07-11T12:37:55+00:00"
  7093. },
  7094. {
  7095. "name": "ringcentral/psr7",
  7096. "version": "1.3.0",
  7097. "source": {
  7098. "type": "git",
  7099. "url": "https://github.com/ringcentral/psr7.git",
  7100. "reference": "360faaec4b563958b673fb52bbe94e37f14bc686"
  7101. },
  7102. "dist": {
  7103. "type": "zip",
  7104. "url": "https://api.github.com/repos/ringcentral/psr7/zipball/360faaec4b563958b673fb52bbe94e37f14bc686",
  7105. "reference": "360faaec4b563958b673fb52bbe94e37f14bc686",
  7106. "shasum": ""
  7107. },
  7108. "require": {
  7109. "php": ">=5.3",
  7110. "psr/http-message": "~1.0"
  7111. },
  7112. "provide": {
  7113. "psr/http-message-implementation": "1.0"
  7114. },
  7115. "require-dev": {
  7116. "phpunit/phpunit": "~4.0"
  7117. },
  7118. "type": "library",
  7119. "extra": {
  7120. "branch-alias": {
  7121. "dev-master": "1.0-dev"
  7122. }
  7123. },
  7124. "autoload": {
  7125. "files": [
  7126. "src/functions_include.php"
  7127. ],
  7128. "psr-4": {
  7129. "RingCentral\\Psr7\\": "src/"
  7130. }
  7131. },
  7132. "notification-url": "https://packagist.org/downloads/",
  7133. "license": [
  7134. "MIT"
  7135. ],
  7136. "authors": [
  7137. {
  7138. "name": "Michael Dowling",
  7139. "email": "mtdowling@gmail.com",
  7140. "homepage": "https://github.com/mtdowling"
  7141. }
  7142. ],
  7143. "description": "PSR-7 message implementation",
  7144. "keywords": [
  7145. "http",
  7146. "message",
  7147. "stream",
  7148. "uri"
  7149. ],
  7150. "support": {
  7151. "source": "https://github.com/ringcentral/psr7/tree/master"
  7152. },
  7153. "time": "2018-05-29T20:21:04+00:00"
  7154. },
  7155. {
  7156. "name": "spatie/db-dumper",
  7157. "version": "3.3.0",
  7158. "source": {
  7159. "type": "git",
  7160. "url": "https://github.com/spatie/db-dumper.git",
  7161. "reference": "129b8254b2c9f10881a754a692bd9507b09a1893"
  7162. },
  7163. "dist": {
  7164. "type": "zip",
  7165. "url": "https://api.github.com/repos/spatie/db-dumper/zipball/129b8254b2c9f10881a754a692bd9507b09a1893",
  7166. "reference": "129b8254b2c9f10881a754a692bd9507b09a1893",
  7167. "shasum": ""
  7168. },
  7169. "require": {
  7170. "php": "^8.0",
  7171. "symfony/process": "^5.0|^6.0"
  7172. },
  7173. "require-dev": {
  7174. "phpunit/phpunit": "^9.5"
  7175. },
  7176. "type": "library",
  7177. "autoload": {
  7178. "psr-4": {
  7179. "Spatie\\DbDumper\\": "src"
  7180. }
  7181. },
  7182. "notification-url": "https://packagist.org/downloads/",
  7183. "license": [
  7184. "MIT"
  7185. ],
  7186. "authors": [
  7187. {
  7188. "name": "Freek Van der Herten",
  7189. "email": "freek@spatie.be",
  7190. "homepage": "https://spatie.be",
  7191. "role": "Developer"
  7192. }
  7193. ],
  7194. "description": "Dump databases",
  7195. "homepage": "https://github.com/spatie/db-dumper",
  7196. "keywords": [
  7197. "database",
  7198. "db-dumper",
  7199. "dump",
  7200. "mysqldump",
  7201. "spatie"
  7202. ],
  7203. "support": {
  7204. "source": "https://github.com/spatie/db-dumper/tree/3.3.0"
  7205. },
  7206. "funding": [
  7207. {
  7208. "url": "https://spatie.be/open-source/support-us",
  7209. "type": "custom"
  7210. },
  7211. {
  7212. "url": "https://github.com/spatie",
  7213. "type": "github"
  7214. }
  7215. ],
  7216. "time": "2022-09-01T20:20:26+00:00"
  7217. },
  7218. {
  7219. "name": "spatie/image-optimizer",
  7220. "version": "1.6.2",
  7221. "source": {
  7222. "type": "git",
  7223. "url": "https://github.com/spatie/image-optimizer.git",
  7224. "reference": "6db75529cbf8fa84117046a9d513f277aead90a0"
  7225. },
  7226. "dist": {
  7227. "type": "zip",
  7228. "url": "https://api.github.com/repos/spatie/image-optimizer/zipball/6db75529cbf8fa84117046a9d513f277aead90a0",
  7229. "reference": "6db75529cbf8fa84117046a9d513f277aead90a0",
  7230. "shasum": ""
  7231. },
  7232. "require": {
  7233. "ext-fileinfo": "*",
  7234. "php": "^7.3|^8.0",
  7235. "psr/log": "^1.0 | ^2.0 | ^3.0",
  7236. "symfony/process": "^4.2|^5.0|^6.0"
  7237. },
  7238. "require-dev": {
  7239. "phpunit/phpunit": "^8.5.21|^9.4.4",
  7240. "symfony/var-dumper": "^4.2|^5.0|^6.0"
  7241. },
  7242. "type": "library",
  7243. "autoload": {
  7244. "psr-4": {
  7245. "Spatie\\ImageOptimizer\\": "src"
  7246. }
  7247. },
  7248. "notification-url": "https://packagist.org/downloads/",
  7249. "license": [
  7250. "MIT"
  7251. ],
  7252. "authors": [
  7253. {
  7254. "name": "Freek Van der Herten",
  7255. "email": "freek@spatie.be",
  7256. "homepage": "https://spatie.be",
  7257. "role": "Developer"
  7258. }
  7259. ],
  7260. "description": "Easily optimize images using PHP",
  7261. "homepage": "https://github.com/spatie/image-optimizer",
  7262. "keywords": [
  7263. "image-optimizer",
  7264. "spatie"
  7265. ],
  7266. "support": {
  7267. "issues": "https://github.com/spatie/image-optimizer/issues",
  7268. "source": "https://github.com/spatie/image-optimizer/tree/1.6.2"
  7269. },
  7270. "time": "2021-12-21T10:08:05+00:00"
  7271. },
  7272. {
  7273. "name": "spatie/laravel-backup",
  7274. "version": "8.1.5",
  7275. "source": {
  7276. "type": "git",
  7277. "url": "https://github.com/spatie/laravel-backup.git",
  7278. "reference": "cf367fbe50ff3b1ae9a79638cc5ef66f3cc9c7fa"
  7279. },
  7280. "dist": {
  7281. "type": "zip",
  7282. "url": "https://api.github.com/repos/spatie/laravel-backup/zipball/cf367fbe50ff3b1ae9a79638cc5ef66f3cc9c7fa",
  7283. "reference": "cf367fbe50ff3b1ae9a79638cc5ef66f3cc9c7fa",
  7284. "shasum": ""
  7285. },
  7286. "require": {
  7287. "ext-zip": "^1.14.0",
  7288. "illuminate/console": "^9.0",
  7289. "illuminate/contracts": "^9.0",
  7290. "illuminate/events": "^9.0",
  7291. "illuminate/filesystem": "^9.0",
  7292. "illuminate/notifications": "^9.0",
  7293. "illuminate/support": "^9.0",
  7294. "league/flysystem": "^3.0",
  7295. "php": "^8.0",
  7296. "spatie/db-dumper": "^3.0",
  7297. "spatie/laravel-package-tools": "^1.6.2",
  7298. "spatie/laravel-signal-aware-command": "^1.2",
  7299. "spatie/temporary-directory": "^2.0",
  7300. "symfony/console": "^6.0",
  7301. "symfony/finder": "^6.0"
  7302. },
  7303. "require-dev": {
  7304. "composer-runtime-api": "^2.0",
  7305. "ext-pcntl": "*",
  7306. "laravel/slack-notification-channel": "^2.4",
  7307. "league/flysystem-aws-s3-v3": "^2.0|^3.0",
  7308. "mockery/mockery": "^1.4",
  7309. "nunomaduro/larastan": "^2.1",
  7310. "orchestra/testbench": "^7.0",
  7311. "pestphp/pest": "^1.20",
  7312. "phpstan/extension-installer": "^1.1",
  7313. "phpstan/phpstan-deprecation-rules": "^1.0",
  7314. "phpstan/phpstan-phpunit": "^1.1"
  7315. },
  7316. "suggest": {
  7317. "laravel/slack-notification-channel": "Required for sending notifications via Slack"
  7318. },
  7319. "type": "library",
  7320. "extra": {
  7321. "laravel": {
  7322. "providers": [
  7323. "Spatie\\Backup\\BackupServiceProvider"
  7324. ]
  7325. }
  7326. },
  7327. "autoload": {
  7328. "files": [
  7329. "src/Helpers/functions.php"
  7330. ],
  7331. "psr-4": {
  7332. "Spatie\\Backup\\": "src"
  7333. }
  7334. },
  7335. "notification-url": "https://packagist.org/downloads/",
  7336. "license": [
  7337. "MIT"
  7338. ],
  7339. "authors": [
  7340. {
  7341. "name": "Freek Van der Herten",
  7342. "email": "freek@spatie.be",
  7343. "homepage": "https://spatie.be",
  7344. "role": "Developer"
  7345. }
  7346. ],
  7347. "description": "A Laravel package to backup your application",
  7348. "homepage": "https://github.com/spatie/laravel-backup",
  7349. "keywords": [
  7350. "backup",
  7351. "database",
  7352. "laravel-backup",
  7353. "spatie"
  7354. ],
  7355. "support": {
  7356. "issues": "https://github.com/spatie/laravel-backup/issues",
  7357. "source": "https://github.com/spatie/laravel-backup/tree/8.1.5"
  7358. },
  7359. "funding": [
  7360. {
  7361. "url": "https://github.com/sponsors/spatie",
  7362. "type": "github"
  7363. },
  7364. {
  7365. "url": "https://spatie.be/open-source/support-us",
  7366. "type": "other"
  7367. }
  7368. ],
  7369. "time": "2022-10-19T13:01:58+00:00"
  7370. },
  7371. {
  7372. "name": "spatie/laravel-image-optimizer",
  7373. "version": "1.7.0",
  7374. "source": {
  7375. "type": "git",
  7376. "url": "https://github.com/spatie/laravel-image-optimizer.git",
  7377. "reference": "6f9e8520485df7bfceb62824ef5ec7c8d25b3521"
  7378. },
  7379. "dist": {
  7380. "type": "zip",
  7381. "url": "https://api.github.com/repos/spatie/laravel-image-optimizer/zipball/6f9e8520485df7bfceb62824ef5ec7c8d25b3521",
  7382. "reference": "6f9e8520485df7bfceb62824ef5ec7c8d25b3521",
  7383. "shasum": ""
  7384. },
  7385. "require": {
  7386. "laravel/framework": "^8.0|^9.0",
  7387. "php": "^8.0",
  7388. "spatie/image-optimizer": "^1.2.0"
  7389. },
  7390. "require-dev": {
  7391. "orchestra/testbench": "^6.23|^7.0",
  7392. "phpunit/phpunit": "^9.4"
  7393. },
  7394. "type": "library",
  7395. "extra": {
  7396. "laravel": {
  7397. "providers": [
  7398. "Spatie\\LaravelImageOptimizer\\ImageOptimizerServiceProvider"
  7399. ],
  7400. "aliases": {
  7401. "ImageOptimizer": "Spatie\\LaravelImageOptimizer\\Facades\\ImageOptimizer"
  7402. }
  7403. }
  7404. },
  7405. "autoload": {
  7406. "psr-4": {
  7407. "Spatie\\LaravelImageOptimizer\\": "src"
  7408. }
  7409. },
  7410. "notification-url": "https://packagist.org/downloads/",
  7411. "license": [
  7412. "MIT"
  7413. ],
  7414. "authors": [
  7415. {
  7416. "name": "Freek Van der Herten",
  7417. "email": "freek@spatie.be",
  7418. "homepage": "https://spatie.be",
  7419. "role": "Developer"
  7420. }
  7421. ],
  7422. "description": "Optimize images in your Laravel app",
  7423. "homepage": "https://github.com/spatie/laravel-image-optimizer",
  7424. "keywords": [
  7425. "laravel-image-optimizer",
  7426. "spatie"
  7427. ],
  7428. "support": {
  7429. "issues": "https://github.com/spatie/laravel-image-optimizer/issues",
  7430. "source": "https://github.com/spatie/laravel-image-optimizer/tree/1.7.0"
  7431. },
  7432. "funding": [
  7433. {
  7434. "url": "https://spatie.be/open-source/support-us",
  7435. "type": "custom"
  7436. }
  7437. ],
  7438. "time": "2022-01-14T08:03:30+00:00"
  7439. },
  7440. {
  7441. "name": "spatie/laravel-package-tools",
  7442. "version": "1.13.7",
  7443. "source": {
  7444. "type": "git",
  7445. "url": "https://github.com/spatie/laravel-package-tools.git",
  7446. "reference": "4af8e608184471b5568af6265ebb0ca0025c131a"
  7447. },
  7448. "dist": {
  7449. "type": "zip",
  7450. "url": "https://api.github.com/repos/spatie/laravel-package-tools/zipball/4af8e608184471b5568af6265ebb0ca0025c131a",
  7451. "reference": "4af8e608184471b5568af6265ebb0ca0025c131a",
  7452. "shasum": ""
  7453. },
  7454. "require": {
  7455. "illuminate/contracts": "^9.28",
  7456. "php": "^8.0"
  7457. },
  7458. "require-dev": {
  7459. "mockery/mockery": "^1.5",
  7460. "orchestra/testbench": "^7.7",
  7461. "pestphp/pest": "^1.22",
  7462. "phpunit/phpunit": "^9.5.24",
  7463. "spatie/pest-plugin-test-time": "^1.1"
  7464. },
  7465. "type": "library",
  7466. "autoload": {
  7467. "psr-4": {
  7468. "Spatie\\LaravelPackageTools\\": "src"
  7469. }
  7470. },
  7471. "notification-url": "https://packagist.org/downloads/",
  7472. "license": [
  7473. "MIT"
  7474. ],
  7475. "authors": [
  7476. {
  7477. "name": "Freek Van der Herten",
  7478. "email": "freek@spatie.be",
  7479. "role": "Developer"
  7480. }
  7481. ],
  7482. "description": "Tools for creating Laravel packages",
  7483. "homepage": "https://github.com/spatie/laravel-package-tools",
  7484. "keywords": [
  7485. "laravel-package-tools",
  7486. "spatie"
  7487. ],
  7488. "support": {
  7489. "issues": "https://github.com/spatie/laravel-package-tools/issues",
  7490. "source": "https://github.com/spatie/laravel-package-tools/tree/1.13.7"
  7491. },
  7492. "funding": [
  7493. {
  7494. "url": "https://github.com/spatie",
  7495. "type": "github"
  7496. }
  7497. ],
  7498. "time": "2022-11-15T09:10:09+00:00"
  7499. },
  7500. {
  7501. "name": "spatie/laravel-signal-aware-command",
  7502. "version": "1.2.0",
  7503. "source": {
  7504. "type": "git",
  7505. "url": "https://github.com/spatie/laravel-signal-aware-command.git",
  7506. "reference": "d15a5b69bf715fc557b7034b4abd5a1472ae7ec8"
  7507. },
  7508. "dist": {
  7509. "type": "zip",
  7510. "url": "https://api.github.com/repos/spatie/laravel-signal-aware-command/zipball/d15a5b69bf715fc557b7034b4abd5a1472ae7ec8",
  7511. "reference": "d15a5b69bf715fc557b7034b4abd5a1472ae7ec8",
  7512. "shasum": ""
  7513. },
  7514. "require": {
  7515. "illuminate/contracts": "^8.35|^9.0",
  7516. "php": "^8.0",
  7517. "spatie/laravel-package-tools": "^1.4.3"
  7518. },
  7519. "require-dev": {
  7520. "brianium/paratest": "^6.2",
  7521. "ext-pcntl": "*",
  7522. "nunomaduro/collision": "^5.3|^6.0",
  7523. "orchestra/testbench": "^6.16|^7.0",
  7524. "phpunit/phpunit": "^9.5",
  7525. "spatie/laravel-ray": "^1.17"
  7526. },
  7527. "type": "library",
  7528. "extra": {
  7529. "laravel": {
  7530. "providers": [
  7531. "Spatie\\SignalAwareCommand\\SignalAwareCommandServiceProvider"
  7532. ],
  7533. "aliases": {
  7534. "Signal": "Spatie\\SignalAwareCommand\\Facades\\Signal"
  7535. }
  7536. }
  7537. },
  7538. "autoload": {
  7539. "psr-4": {
  7540. "Spatie\\SignalAwareCommand\\": "src"
  7541. }
  7542. },
  7543. "notification-url": "https://packagist.org/downloads/",
  7544. "license": [
  7545. "MIT"
  7546. ],
  7547. "authors": [
  7548. {
  7549. "name": "Freek Van der Herten",
  7550. "email": "freek@spatie.be",
  7551. "role": "Developer"
  7552. }
  7553. ],
  7554. "description": "Handle signals in artisan commands",
  7555. "homepage": "https://github.com/spatie/laravel-signal-aware-command",
  7556. "keywords": [
  7557. "laravel",
  7558. "laravel-signal-aware-command",
  7559. "spatie"
  7560. ],
  7561. "support": {
  7562. "issues": "https://github.com/spatie/laravel-signal-aware-command/issues",
  7563. "source": "https://github.com/spatie/laravel-signal-aware-command/tree/1.2.0"
  7564. },
  7565. "funding": [
  7566. {
  7567. "url": "https://github.com/spatie",
  7568. "type": "github"
  7569. }
  7570. ],
  7571. "time": "2022-01-12T19:42:44+00:00"
  7572. },
  7573. {
  7574. "name": "spatie/temporary-directory",
  7575. "version": "2.1.1",
  7576. "source": {
  7577. "type": "git",
  7578. "url": "https://github.com/spatie/temporary-directory.git",
  7579. "reference": "e2818d871783d520b319c2d38dc37c10ecdcde20"
  7580. },
  7581. "dist": {
  7582. "type": "zip",
  7583. "url": "https://api.github.com/repos/spatie/temporary-directory/zipball/e2818d871783d520b319c2d38dc37c10ecdcde20",
  7584. "reference": "e2818d871783d520b319c2d38dc37c10ecdcde20",
  7585. "shasum": ""
  7586. },
  7587. "require": {
  7588. "php": "^8.0"
  7589. },
  7590. "require-dev": {
  7591. "phpunit/phpunit": "^9.5"
  7592. },
  7593. "type": "library",
  7594. "autoload": {
  7595. "psr-4": {
  7596. "Spatie\\TemporaryDirectory\\": "src"
  7597. }
  7598. },
  7599. "notification-url": "https://packagist.org/downloads/",
  7600. "license": [
  7601. "MIT"
  7602. ],
  7603. "authors": [
  7604. {
  7605. "name": "Alex Vanderbist",
  7606. "email": "alex@spatie.be",
  7607. "homepage": "https://spatie.be",
  7608. "role": "Developer"
  7609. }
  7610. ],
  7611. "description": "Easily create, use and destroy temporary directories",
  7612. "homepage": "https://github.com/spatie/temporary-directory",
  7613. "keywords": [
  7614. "php",
  7615. "spatie",
  7616. "temporary-directory"
  7617. ],
  7618. "support": {
  7619. "issues": "https://github.com/spatie/temporary-directory/issues",
  7620. "source": "https://github.com/spatie/temporary-directory/tree/2.1.1"
  7621. },
  7622. "funding": [
  7623. {
  7624. "url": "https://spatie.be/open-source/support-us",
  7625. "type": "custom"
  7626. },
  7627. {
  7628. "url": "https://github.com/spatie",
  7629. "type": "github"
  7630. }
  7631. ],
  7632. "time": "2022-08-23T07:15:15+00:00"
  7633. },
  7634. {
  7635. "name": "stella-maris/clock",
  7636. "version": "0.1.7",
  7637. "source": {
  7638. "type": "git",
  7639. "url": "https://github.com/stella-maris-solutions/clock.git",
  7640. "reference": "fa23ce16019289a18bb3446fdecd45befcdd94f8"
  7641. },
  7642. "dist": {
  7643. "type": "zip",
  7644. "url": "https://api.github.com/repos/stella-maris-solutions/clock/zipball/fa23ce16019289a18bb3446fdecd45befcdd94f8",
  7645. "reference": "fa23ce16019289a18bb3446fdecd45befcdd94f8",
  7646. "shasum": ""
  7647. },
  7648. "require": {
  7649. "php": "^7.0|^8.0",
  7650. "psr/clock": "^1.0"
  7651. },
  7652. "type": "library",
  7653. "autoload": {
  7654. "psr-4": {
  7655. "StellaMaris\\Clock\\": "src"
  7656. }
  7657. },
  7658. "notification-url": "https://packagist.org/downloads/",
  7659. "license": [
  7660. "MIT"
  7661. ],
  7662. "authors": [
  7663. {
  7664. "name": "Andreas Heigl",
  7665. "role": "Maintainer"
  7666. }
  7667. ],
  7668. "description": "A pre-release of the proposed PSR-20 Clock-Interface",
  7669. "homepage": "https://gitlab.com/stella-maris/clock",
  7670. "keywords": [
  7671. "clock",
  7672. "datetime",
  7673. "point in time",
  7674. "psr20"
  7675. ],
  7676. "support": {
  7677. "source": "https://github.com/stella-maris-solutions/clock/tree/0.1.7"
  7678. },
  7679. "time": "2022-11-25T16:15:06+00:00"
  7680. },
  7681. {
  7682. "name": "stevebauman/purify",
  7683. "version": "v4.0.1",
  7684. "source": {
  7685. "type": "git",
  7686. "url": "https://github.com/stevebauman/purify.git",
  7687. "reference": "e56289062ed8a25c78c88f35e9106f00d01369c1"
  7688. },
  7689. "dist": {
  7690. "type": "zip",
  7691. "url": "https://api.github.com/repos/stevebauman/purify/zipball/e56289062ed8a25c78c88f35e9106f00d01369c1",
  7692. "reference": "e56289062ed8a25c78c88f35e9106f00d01369c1",
  7693. "shasum": ""
  7694. },
  7695. "require": {
  7696. "ezyang/htmlpurifier": "^4.9.0",
  7697. "illuminate/support": "~5.5|~6.0|~7.0|~8.0|~9.0",
  7698. "php": ">=7.1"
  7699. },
  7700. "require-dev": {
  7701. "orchestra/testbench": "~3.7|~4.0|~5.0|~6.0|~7.0",
  7702. "phpunit/phpunit": "~7.0|~8.0|~9.0"
  7703. },
  7704. "type": "library",
  7705. "extra": {
  7706. "laravel": {
  7707. "providers": [
  7708. "Stevebauman\\Purify\\PurifyServiceProvider"
  7709. ],
  7710. "aliases": {
  7711. "Purify": "Stevebauman\\Purify\\Facades\\Purify"
  7712. }
  7713. }
  7714. },
  7715. "autoload": {
  7716. "psr-4": {
  7717. "Stevebauman\\Purify\\": "src/"
  7718. }
  7719. },
  7720. "notification-url": "https://packagist.org/downloads/",
  7721. "license": [
  7722. "MIT"
  7723. ],
  7724. "authors": [
  7725. {
  7726. "name": "Steve Bauman",
  7727. "email": "steven_bauman@outlook.com"
  7728. }
  7729. ],
  7730. "description": "An HTML Purifier / Sanitizer for Laravel",
  7731. "keywords": [
  7732. "Purifier",
  7733. "clean",
  7734. "cleaner",
  7735. "html",
  7736. "laravel",
  7737. "purification",
  7738. "purify"
  7739. ],
  7740. "support": {
  7741. "issues": "https://github.com/stevebauman/purify/issues",
  7742. "source": "https://github.com/stevebauman/purify/tree/v4.0.1"
  7743. },
  7744. "time": "2022-01-21T21:41:41+00:00"
  7745. },
  7746. {
  7747. "name": "symfony/cache",
  7748. "version": "v6.2.0",
  7749. "source": {
  7750. "type": "git",
  7751. "url": "https://github.com/symfony/cache.git",
  7752. "reference": "64cb231dfb25677097d18503d1ad4d016b19f19c"
  7753. },
  7754. "dist": {
  7755. "type": "zip",
  7756. "url": "https://api.github.com/repos/symfony/cache/zipball/64cb231dfb25677097d18503d1ad4d016b19f19c",
  7757. "reference": "64cb231dfb25677097d18503d1ad4d016b19f19c",
  7758. "shasum": ""
  7759. },
  7760. "require": {
  7761. "php": ">=8.1",
  7762. "psr/cache": "^2.0|^3.0",
  7763. "psr/log": "^1.1|^2|^3",
  7764. "symfony/cache-contracts": "^1.1.7|^2|^3",
  7765. "symfony/service-contracts": "^1.1|^2|^3",
  7766. "symfony/var-exporter": "^6.2"
  7767. },
  7768. "conflict": {
  7769. "doctrine/dbal": "<2.13.1",
  7770. "symfony/dependency-injection": "<5.4",
  7771. "symfony/http-kernel": "<5.4",
  7772. "symfony/var-dumper": "<5.4"
  7773. },
  7774. "provide": {
  7775. "psr/cache-implementation": "2.0|3.0",
  7776. "psr/simple-cache-implementation": "1.0|2.0|3.0",
  7777. "symfony/cache-implementation": "1.1|2.0|3.0"
  7778. },
  7779. "require-dev": {
  7780. "cache/integration-tests": "dev-master",
  7781. "doctrine/dbal": "^2.13.1|^3.0",
  7782. "predis/predis": "^1.1",
  7783. "psr/simple-cache": "^1.0|^2.0|^3.0",
  7784. "symfony/config": "^5.4|^6.0",
  7785. "symfony/dependency-injection": "^5.4|^6.0",
  7786. "symfony/filesystem": "^5.4|^6.0",
  7787. "symfony/http-kernel": "^5.4|^6.0",
  7788. "symfony/messenger": "^5.4|^6.0",
  7789. "symfony/var-dumper": "^5.4|^6.0"
  7790. },
  7791. "type": "library",
  7792. "autoload": {
  7793. "psr-4": {
  7794. "Symfony\\Component\\Cache\\": ""
  7795. },
  7796. "classmap": [
  7797. "Traits/ValueWrapper.php"
  7798. ],
  7799. "exclude-from-classmap": [
  7800. "/Tests/"
  7801. ]
  7802. },
  7803. "notification-url": "https://packagist.org/downloads/",
  7804. "license": [
  7805. "MIT"
  7806. ],
  7807. "authors": [
  7808. {
  7809. "name": "Nicolas Grekas",
  7810. "email": "p@tchwork.com"
  7811. },
  7812. {
  7813. "name": "Symfony Community",
  7814. "homepage": "https://symfony.com/contributors"
  7815. }
  7816. ],
  7817. "description": "Provides extended PSR-6, PSR-16 (and tags) implementations",
  7818. "homepage": "https://symfony.com",
  7819. "keywords": [
  7820. "caching",
  7821. "psr6"
  7822. ],
  7823. "support": {
  7824. "source": "https://github.com/symfony/cache/tree/v6.2.0"
  7825. },
  7826. "funding": [
  7827. {
  7828. "url": "https://symfony.com/sponsor",
  7829. "type": "custom"
  7830. },
  7831. {
  7832. "url": "https://github.com/fabpot",
  7833. "type": "github"
  7834. },
  7835. {
  7836. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7837. "type": "tidelift"
  7838. }
  7839. ],
  7840. "time": "2022-11-24T11:58:37+00:00"
  7841. },
  7842. {
  7843. "name": "symfony/cache-contracts",
  7844. "version": "v3.2.0",
  7845. "source": {
  7846. "type": "git",
  7847. "url": "https://github.com/symfony/cache-contracts.git",
  7848. "reference": "e8d1a5fc43534063204b74c080ebe36307d12271"
  7849. },
  7850. "dist": {
  7851. "type": "zip",
  7852. "url": "https://api.github.com/repos/symfony/cache-contracts/zipball/e8d1a5fc43534063204b74c080ebe36307d12271",
  7853. "reference": "e8d1a5fc43534063204b74c080ebe36307d12271",
  7854. "shasum": ""
  7855. },
  7856. "require": {
  7857. "php": ">=8.1",
  7858. "psr/cache": "^3.0"
  7859. },
  7860. "suggest": {
  7861. "symfony/cache-implementation": ""
  7862. },
  7863. "type": "library",
  7864. "extra": {
  7865. "branch-alias": {
  7866. "dev-main": "3.3-dev"
  7867. },
  7868. "thanks": {
  7869. "name": "symfony/contracts",
  7870. "url": "https://github.com/symfony/contracts"
  7871. }
  7872. },
  7873. "autoload": {
  7874. "psr-4": {
  7875. "Symfony\\Contracts\\Cache\\": ""
  7876. }
  7877. },
  7878. "notification-url": "https://packagist.org/downloads/",
  7879. "license": [
  7880. "MIT"
  7881. ],
  7882. "authors": [
  7883. {
  7884. "name": "Nicolas Grekas",
  7885. "email": "p@tchwork.com"
  7886. },
  7887. {
  7888. "name": "Symfony Community",
  7889. "homepage": "https://symfony.com/contributors"
  7890. }
  7891. ],
  7892. "description": "Generic abstractions related to caching",
  7893. "homepage": "https://symfony.com",
  7894. "keywords": [
  7895. "abstractions",
  7896. "contracts",
  7897. "decoupling",
  7898. "interfaces",
  7899. "interoperability",
  7900. "standards"
  7901. ],
  7902. "support": {
  7903. "source": "https://github.com/symfony/cache-contracts/tree/v3.2.0"
  7904. },
  7905. "funding": [
  7906. {
  7907. "url": "https://symfony.com/sponsor",
  7908. "type": "custom"
  7909. },
  7910. {
  7911. "url": "https://github.com/fabpot",
  7912. "type": "github"
  7913. },
  7914. {
  7915. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7916. "type": "tidelift"
  7917. }
  7918. ],
  7919. "time": "2022-11-25T10:21:52+00:00"
  7920. },
  7921. {
  7922. "name": "symfony/console",
  7923. "version": "v6.2.1",
  7924. "source": {
  7925. "type": "git",
  7926. "url": "https://github.com/symfony/console.git",
  7927. "reference": "58f6cef5dc5f641b7bbdbf8b32b44cc926c35f3f"
  7928. },
  7929. "dist": {
  7930. "type": "zip",
  7931. "url": "https://api.github.com/repos/symfony/console/zipball/58f6cef5dc5f641b7bbdbf8b32b44cc926c35f3f",
  7932. "reference": "58f6cef5dc5f641b7bbdbf8b32b44cc926c35f3f",
  7933. "shasum": ""
  7934. },
  7935. "require": {
  7936. "php": ">=8.1",
  7937. "symfony/deprecation-contracts": "^2.1|^3",
  7938. "symfony/polyfill-mbstring": "~1.0",
  7939. "symfony/service-contracts": "^1.1|^2|^3",
  7940. "symfony/string": "^5.4|^6.0"
  7941. },
  7942. "conflict": {
  7943. "symfony/dependency-injection": "<5.4",
  7944. "symfony/dotenv": "<5.4",
  7945. "symfony/event-dispatcher": "<5.4",
  7946. "symfony/lock": "<5.4",
  7947. "symfony/process": "<5.4"
  7948. },
  7949. "provide": {
  7950. "psr/log-implementation": "1.0|2.0|3.0"
  7951. },
  7952. "require-dev": {
  7953. "psr/log": "^1|^2|^3",
  7954. "symfony/config": "^5.4|^6.0",
  7955. "symfony/dependency-injection": "^5.4|^6.0",
  7956. "symfony/event-dispatcher": "^5.4|^6.0",
  7957. "symfony/lock": "^5.4|^6.0",
  7958. "symfony/process": "^5.4|^6.0",
  7959. "symfony/var-dumper": "^5.4|^6.0"
  7960. },
  7961. "suggest": {
  7962. "psr/log": "For using the console logger",
  7963. "symfony/event-dispatcher": "",
  7964. "symfony/lock": "",
  7965. "symfony/process": ""
  7966. },
  7967. "type": "library",
  7968. "autoload": {
  7969. "psr-4": {
  7970. "Symfony\\Component\\Console\\": ""
  7971. },
  7972. "exclude-from-classmap": [
  7973. "/Tests/"
  7974. ]
  7975. },
  7976. "notification-url": "https://packagist.org/downloads/",
  7977. "license": [
  7978. "MIT"
  7979. ],
  7980. "authors": [
  7981. {
  7982. "name": "Fabien Potencier",
  7983. "email": "fabien@symfony.com"
  7984. },
  7985. {
  7986. "name": "Symfony Community",
  7987. "homepage": "https://symfony.com/contributors"
  7988. }
  7989. ],
  7990. "description": "Eases the creation of beautiful and testable command line interfaces",
  7991. "homepage": "https://symfony.com",
  7992. "keywords": [
  7993. "cli",
  7994. "command line",
  7995. "console",
  7996. "terminal"
  7997. ],
  7998. "support": {
  7999. "source": "https://github.com/symfony/console/tree/v6.2.1"
  8000. },
  8001. "funding": [
  8002. {
  8003. "url": "https://symfony.com/sponsor",
  8004. "type": "custom"
  8005. },
  8006. {
  8007. "url": "https://github.com/fabpot",
  8008. "type": "github"
  8009. },
  8010. {
  8011. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8012. "type": "tidelift"
  8013. }
  8014. ],
  8015. "time": "2022-12-01T13:44:20+00:00"
  8016. },
  8017. {
  8018. "name": "symfony/css-selector",
  8019. "version": "v6.2.0",
  8020. "source": {
  8021. "type": "git",
  8022. "url": "https://github.com/symfony/css-selector.git",
  8023. "reference": "91c342ffc99283c43653ed8eb47bc2a94db7f398"
  8024. },
  8025. "dist": {
  8026. "type": "zip",
  8027. "url": "https://api.github.com/repos/symfony/css-selector/zipball/91c342ffc99283c43653ed8eb47bc2a94db7f398",
  8028. "reference": "91c342ffc99283c43653ed8eb47bc2a94db7f398",
  8029. "shasum": ""
  8030. },
  8031. "require": {
  8032. "php": ">=8.1"
  8033. },
  8034. "type": "library",
  8035. "autoload": {
  8036. "psr-4": {
  8037. "Symfony\\Component\\CssSelector\\": ""
  8038. },
  8039. "exclude-from-classmap": [
  8040. "/Tests/"
  8041. ]
  8042. },
  8043. "notification-url": "https://packagist.org/downloads/",
  8044. "license": [
  8045. "MIT"
  8046. ],
  8047. "authors": [
  8048. {
  8049. "name": "Fabien Potencier",
  8050. "email": "fabien@symfony.com"
  8051. },
  8052. {
  8053. "name": "Jean-François Simon",
  8054. "email": "jeanfrancois.simon@sensiolabs.com"
  8055. },
  8056. {
  8057. "name": "Symfony Community",
  8058. "homepage": "https://symfony.com/contributors"
  8059. }
  8060. ],
  8061. "description": "Converts CSS selectors to XPath expressions",
  8062. "homepage": "https://symfony.com",
  8063. "support": {
  8064. "source": "https://github.com/symfony/css-selector/tree/v6.2.0"
  8065. },
  8066. "funding": [
  8067. {
  8068. "url": "https://symfony.com/sponsor",
  8069. "type": "custom"
  8070. },
  8071. {
  8072. "url": "https://github.com/fabpot",
  8073. "type": "github"
  8074. },
  8075. {
  8076. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8077. "type": "tidelift"
  8078. }
  8079. ],
  8080. "time": "2022-08-26T05:51:22+00:00"
  8081. },
  8082. {
  8083. "name": "symfony/deprecation-contracts",
  8084. "version": "v3.2.0",
  8085. "source": {
  8086. "type": "git",
  8087. "url": "https://github.com/symfony/deprecation-contracts.git",
  8088. "reference": "1ee04c65529dea5d8744774d474e7cbd2f1206d3"
  8089. },
  8090. "dist": {
  8091. "type": "zip",
  8092. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/1ee04c65529dea5d8744774d474e7cbd2f1206d3",
  8093. "reference": "1ee04c65529dea5d8744774d474e7cbd2f1206d3",
  8094. "shasum": ""
  8095. },
  8096. "require": {
  8097. "php": ">=8.1"
  8098. },
  8099. "type": "library",
  8100. "extra": {
  8101. "branch-alias": {
  8102. "dev-main": "3.3-dev"
  8103. },
  8104. "thanks": {
  8105. "name": "symfony/contracts",
  8106. "url": "https://github.com/symfony/contracts"
  8107. }
  8108. },
  8109. "autoload": {
  8110. "files": [
  8111. "function.php"
  8112. ]
  8113. },
  8114. "notification-url": "https://packagist.org/downloads/",
  8115. "license": [
  8116. "MIT"
  8117. ],
  8118. "authors": [
  8119. {
  8120. "name": "Nicolas Grekas",
  8121. "email": "p@tchwork.com"
  8122. },
  8123. {
  8124. "name": "Symfony Community",
  8125. "homepage": "https://symfony.com/contributors"
  8126. }
  8127. ],
  8128. "description": "A generic function and convention to trigger deprecation notices",
  8129. "homepage": "https://symfony.com",
  8130. "support": {
  8131. "source": "https://github.com/symfony/deprecation-contracts/tree/v3.2.0"
  8132. },
  8133. "funding": [
  8134. {
  8135. "url": "https://symfony.com/sponsor",
  8136. "type": "custom"
  8137. },
  8138. {
  8139. "url": "https://github.com/fabpot",
  8140. "type": "github"
  8141. },
  8142. {
  8143. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8144. "type": "tidelift"
  8145. }
  8146. ],
  8147. "time": "2022-11-25T10:21:52+00:00"
  8148. },
  8149. {
  8150. "name": "symfony/error-handler",
  8151. "version": "v6.2.1",
  8152. "source": {
  8153. "type": "git",
  8154. "url": "https://github.com/symfony/error-handler.git",
  8155. "reference": "b4e41f62c1124378863ff2705158a60da3e4c6b9"
  8156. },
  8157. "dist": {
  8158. "type": "zip",
  8159. "url": "https://api.github.com/repos/symfony/error-handler/zipball/b4e41f62c1124378863ff2705158a60da3e4c6b9",
  8160. "reference": "b4e41f62c1124378863ff2705158a60da3e4c6b9",
  8161. "shasum": ""
  8162. },
  8163. "require": {
  8164. "php": ">=8.1",
  8165. "psr/log": "^1|^2|^3",
  8166. "symfony/var-dumper": "^5.4|^6.0"
  8167. },
  8168. "require-dev": {
  8169. "symfony/deprecation-contracts": "^2.1|^3",
  8170. "symfony/http-kernel": "^5.4|^6.0",
  8171. "symfony/serializer": "^5.4|^6.0"
  8172. },
  8173. "bin": [
  8174. "Resources/bin/patch-type-declarations"
  8175. ],
  8176. "type": "library",
  8177. "autoload": {
  8178. "psr-4": {
  8179. "Symfony\\Component\\ErrorHandler\\": ""
  8180. },
  8181. "exclude-from-classmap": [
  8182. "/Tests/"
  8183. ]
  8184. },
  8185. "notification-url": "https://packagist.org/downloads/",
  8186. "license": [
  8187. "MIT"
  8188. ],
  8189. "authors": [
  8190. {
  8191. "name": "Fabien Potencier",
  8192. "email": "fabien@symfony.com"
  8193. },
  8194. {
  8195. "name": "Symfony Community",
  8196. "homepage": "https://symfony.com/contributors"
  8197. }
  8198. ],
  8199. "description": "Provides tools to manage errors and ease debugging PHP code",
  8200. "homepage": "https://symfony.com",
  8201. "support": {
  8202. "source": "https://github.com/symfony/error-handler/tree/v6.2.1"
  8203. },
  8204. "funding": [
  8205. {
  8206. "url": "https://symfony.com/sponsor",
  8207. "type": "custom"
  8208. },
  8209. {
  8210. "url": "https://github.com/fabpot",
  8211. "type": "github"
  8212. },
  8213. {
  8214. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8215. "type": "tidelift"
  8216. }
  8217. ],
  8218. "time": "2022-12-01T21:07:46+00:00"
  8219. },
  8220. {
  8221. "name": "symfony/event-dispatcher",
  8222. "version": "v6.2.0",
  8223. "source": {
  8224. "type": "git",
  8225. "url": "https://github.com/symfony/event-dispatcher.git",
  8226. "reference": "9efb1618fabee89515fe031314e8ed5625f85a53"
  8227. },
  8228. "dist": {
  8229. "type": "zip",
  8230. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/9efb1618fabee89515fe031314e8ed5625f85a53",
  8231. "reference": "9efb1618fabee89515fe031314e8ed5625f85a53",
  8232. "shasum": ""
  8233. },
  8234. "require": {
  8235. "php": ">=8.1",
  8236. "symfony/event-dispatcher-contracts": "^2|^3"
  8237. },
  8238. "conflict": {
  8239. "symfony/dependency-injection": "<5.4"
  8240. },
  8241. "provide": {
  8242. "psr/event-dispatcher-implementation": "1.0",
  8243. "symfony/event-dispatcher-implementation": "2.0|3.0"
  8244. },
  8245. "require-dev": {
  8246. "psr/log": "^1|^2|^3",
  8247. "symfony/config": "^5.4|^6.0",
  8248. "symfony/dependency-injection": "^5.4|^6.0",
  8249. "symfony/error-handler": "^5.4|^6.0",
  8250. "symfony/expression-language": "^5.4|^6.0",
  8251. "symfony/http-foundation": "^5.4|^6.0",
  8252. "symfony/service-contracts": "^1.1|^2|^3",
  8253. "symfony/stopwatch": "^5.4|^6.0"
  8254. },
  8255. "suggest": {
  8256. "symfony/dependency-injection": "",
  8257. "symfony/http-kernel": ""
  8258. },
  8259. "type": "library",
  8260. "autoload": {
  8261. "psr-4": {
  8262. "Symfony\\Component\\EventDispatcher\\": ""
  8263. },
  8264. "exclude-from-classmap": [
  8265. "/Tests/"
  8266. ]
  8267. },
  8268. "notification-url": "https://packagist.org/downloads/",
  8269. "license": [
  8270. "MIT"
  8271. ],
  8272. "authors": [
  8273. {
  8274. "name": "Fabien Potencier",
  8275. "email": "fabien@symfony.com"
  8276. },
  8277. {
  8278. "name": "Symfony Community",
  8279. "homepage": "https://symfony.com/contributors"
  8280. }
  8281. ],
  8282. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  8283. "homepage": "https://symfony.com",
  8284. "support": {
  8285. "source": "https://github.com/symfony/event-dispatcher/tree/v6.2.0"
  8286. },
  8287. "funding": [
  8288. {
  8289. "url": "https://symfony.com/sponsor",
  8290. "type": "custom"
  8291. },
  8292. {
  8293. "url": "https://github.com/fabpot",
  8294. "type": "github"
  8295. },
  8296. {
  8297. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8298. "type": "tidelift"
  8299. }
  8300. ],
  8301. "time": "2022-11-02T09:08:04+00:00"
  8302. },
  8303. {
  8304. "name": "symfony/event-dispatcher-contracts",
  8305. "version": "v3.2.0",
  8306. "source": {
  8307. "type": "git",
  8308. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  8309. "reference": "0782b0b52a737a05b4383d0df35a474303cabdae"
  8310. },
  8311. "dist": {
  8312. "type": "zip",
  8313. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/0782b0b52a737a05b4383d0df35a474303cabdae",
  8314. "reference": "0782b0b52a737a05b4383d0df35a474303cabdae",
  8315. "shasum": ""
  8316. },
  8317. "require": {
  8318. "php": ">=8.1",
  8319. "psr/event-dispatcher": "^1"
  8320. },
  8321. "suggest": {
  8322. "symfony/event-dispatcher-implementation": ""
  8323. },
  8324. "type": "library",
  8325. "extra": {
  8326. "branch-alias": {
  8327. "dev-main": "3.3-dev"
  8328. },
  8329. "thanks": {
  8330. "name": "symfony/contracts",
  8331. "url": "https://github.com/symfony/contracts"
  8332. }
  8333. },
  8334. "autoload": {
  8335. "psr-4": {
  8336. "Symfony\\Contracts\\EventDispatcher\\": ""
  8337. }
  8338. },
  8339. "notification-url": "https://packagist.org/downloads/",
  8340. "license": [
  8341. "MIT"
  8342. ],
  8343. "authors": [
  8344. {
  8345. "name": "Nicolas Grekas",
  8346. "email": "p@tchwork.com"
  8347. },
  8348. {
  8349. "name": "Symfony Community",
  8350. "homepage": "https://symfony.com/contributors"
  8351. }
  8352. ],
  8353. "description": "Generic abstractions related to dispatching event",
  8354. "homepage": "https://symfony.com",
  8355. "keywords": [
  8356. "abstractions",
  8357. "contracts",
  8358. "decoupling",
  8359. "interfaces",
  8360. "interoperability",
  8361. "standards"
  8362. ],
  8363. "support": {
  8364. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.2.0"
  8365. },
  8366. "funding": [
  8367. {
  8368. "url": "https://symfony.com/sponsor",
  8369. "type": "custom"
  8370. },
  8371. {
  8372. "url": "https://github.com/fabpot",
  8373. "type": "github"
  8374. },
  8375. {
  8376. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8377. "type": "tidelift"
  8378. }
  8379. ],
  8380. "time": "2022-11-25T10:21:52+00:00"
  8381. },
  8382. {
  8383. "name": "symfony/finder",
  8384. "version": "v6.2.0",
  8385. "source": {
  8386. "type": "git",
  8387. "url": "https://github.com/symfony/finder.git",
  8388. "reference": "eb2355f69519e4ef33f1835bca4c935f5d42e570"
  8389. },
  8390. "dist": {
  8391. "type": "zip",
  8392. "url": "https://api.github.com/repos/symfony/finder/zipball/eb2355f69519e4ef33f1835bca4c935f5d42e570",
  8393. "reference": "eb2355f69519e4ef33f1835bca4c935f5d42e570",
  8394. "shasum": ""
  8395. },
  8396. "require": {
  8397. "php": ">=8.1"
  8398. },
  8399. "require-dev": {
  8400. "symfony/filesystem": "^6.0"
  8401. },
  8402. "type": "library",
  8403. "autoload": {
  8404. "psr-4": {
  8405. "Symfony\\Component\\Finder\\": ""
  8406. },
  8407. "exclude-from-classmap": [
  8408. "/Tests/"
  8409. ]
  8410. },
  8411. "notification-url": "https://packagist.org/downloads/",
  8412. "license": [
  8413. "MIT"
  8414. ],
  8415. "authors": [
  8416. {
  8417. "name": "Fabien Potencier",
  8418. "email": "fabien@symfony.com"
  8419. },
  8420. {
  8421. "name": "Symfony Community",
  8422. "homepage": "https://symfony.com/contributors"
  8423. }
  8424. ],
  8425. "description": "Finds files and directories via an intuitive fluent interface",
  8426. "homepage": "https://symfony.com",
  8427. "support": {
  8428. "source": "https://github.com/symfony/finder/tree/v6.2.0"
  8429. },
  8430. "funding": [
  8431. {
  8432. "url": "https://symfony.com/sponsor",
  8433. "type": "custom"
  8434. },
  8435. {
  8436. "url": "https://github.com/fabpot",
  8437. "type": "github"
  8438. },
  8439. {
  8440. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8441. "type": "tidelift"
  8442. }
  8443. ],
  8444. "time": "2022-10-09T08:55:40+00:00"
  8445. },
  8446. {
  8447. "name": "symfony/http-client",
  8448. "version": "v6.2.0",
  8449. "source": {
  8450. "type": "git",
  8451. "url": "https://github.com/symfony/http-client.git",
  8452. "reference": "153540b6ed72eecdcb42dc847f8d8cf2e2516e8e"
  8453. },
  8454. "dist": {
  8455. "type": "zip",
  8456. "url": "https://api.github.com/repos/symfony/http-client/zipball/153540b6ed72eecdcb42dc847f8d8cf2e2516e8e",
  8457. "reference": "153540b6ed72eecdcb42dc847f8d8cf2e2516e8e",
  8458. "shasum": ""
  8459. },
  8460. "require": {
  8461. "php": ">=8.1",
  8462. "psr/log": "^1|^2|^3",
  8463. "symfony/deprecation-contracts": "^2.1|^3",
  8464. "symfony/http-client-contracts": "^3",
  8465. "symfony/service-contracts": "^1.0|^2|^3"
  8466. },
  8467. "provide": {
  8468. "php-http/async-client-implementation": "*",
  8469. "php-http/client-implementation": "*",
  8470. "psr/http-client-implementation": "1.0",
  8471. "symfony/http-client-implementation": "3.0"
  8472. },
  8473. "require-dev": {
  8474. "amphp/amp": "^2.5",
  8475. "amphp/http-client": "^4.2.1",
  8476. "amphp/http-tunnel": "^1.0",
  8477. "amphp/socket": "^1.1",
  8478. "guzzlehttp/promises": "^1.4",
  8479. "nyholm/psr7": "^1.0",
  8480. "php-http/httplug": "^1.0|^2.0",
  8481. "psr/http-client": "^1.0",
  8482. "symfony/dependency-injection": "^5.4|^6.0",
  8483. "symfony/http-kernel": "^5.4|^6.0",
  8484. "symfony/process": "^5.4|^6.0",
  8485. "symfony/stopwatch": "^5.4|^6.0"
  8486. },
  8487. "type": "library",
  8488. "autoload": {
  8489. "psr-4": {
  8490. "Symfony\\Component\\HttpClient\\": ""
  8491. },
  8492. "exclude-from-classmap": [
  8493. "/Tests/"
  8494. ]
  8495. },
  8496. "notification-url": "https://packagist.org/downloads/",
  8497. "license": [
  8498. "MIT"
  8499. ],
  8500. "authors": [
  8501. {
  8502. "name": "Nicolas Grekas",
  8503. "email": "p@tchwork.com"
  8504. },
  8505. {
  8506. "name": "Symfony Community",
  8507. "homepage": "https://symfony.com/contributors"
  8508. }
  8509. ],
  8510. "description": "Provides powerful methods to fetch HTTP resources synchronously or asynchronously",
  8511. "homepage": "https://symfony.com",
  8512. "support": {
  8513. "source": "https://github.com/symfony/http-client/tree/v6.2.0"
  8514. },
  8515. "funding": [
  8516. {
  8517. "url": "https://symfony.com/sponsor",
  8518. "type": "custom"
  8519. },
  8520. {
  8521. "url": "https://github.com/fabpot",
  8522. "type": "github"
  8523. },
  8524. {
  8525. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8526. "type": "tidelift"
  8527. }
  8528. ],
  8529. "time": "2022-11-14T10:13:36+00:00"
  8530. },
  8531. {
  8532. "name": "symfony/http-client-contracts",
  8533. "version": "v3.1.1",
  8534. "source": {
  8535. "type": "git",
  8536. "url": "https://github.com/symfony/http-client-contracts.git",
  8537. "reference": "fd038f08c623ab5d22b26e9ba35afe8c79071800"
  8538. },
  8539. "dist": {
  8540. "type": "zip",
  8541. "url": "https://api.github.com/repos/symfony/http-client-contracts/zipball/fd038f08c623ab5d22b26e9ba35afe8c79071800",
  8542. "reference": "fd038f08c623ab5d22b26e9ba35afe8c79071800",
  8543. "shasum": ""
  8544. },
  8545. "require": {
  8546. "php": ">=8.1"
  8547. },
  8548. "suggest": {
  8549. "symfony/http-client-implementation": ""
  8550. },
  8551. "type": "library",
  8552. "extra": {
  8553. "branch-alias": {
  8554. "dev-main": "3.1-dev"
  8555. },
  8556. "thanks": {
  8557. "name": "symfony/contracts",
  8558. "url": "https://github.com/symfony/contracts"
  8559. }
  8560. },
  8561. "autoload": {
  8562. "psr-4": {
  8563. "Symfony\\Contracts\\HttpClient\\": ""
  8564. },
  8565. "exclude-from-classmap": [
  8566. "/Test/"
  8567. ]
  8568. },
  8569. "notification-url": "https://packagist.org/downloads/",
  8570. "license": [
  8571. "MIT"
  8572. ],
  8573. "authors": [
  8574. {
  8575. "name": "Nicolas Grekas",
  8576. "email": "p@tchwork.com"
  8577. },
  8578. {
  8579. "name": "Symfony Community",
  8580. "homepage": "https://symfony.com/contributors"
  8581. }
  8582. ],
  8583. "description": "Generic abstractions related to HTTP clients",
  8584. "homepage": "https://symfony.com",
  8585. "keywords": [
  8586. "abstractions",
  8587. "contracts",
  8588. "decoupling",
  8589. "interfaces",
  8590. "interoperability",
  8591. "standards"
  8592. ],
  8593. "support": {
  8594. "source": "https://github.com/symfony/http-client-contracts/tree/v3.1.1"
  8595. },
  8596. "funding": [
  8597. {
  8598. "url": "https://symfony.com/sponsor",
  8599. "type": "custom"
  8600. },
  8601. {
  8602. "url": "https://github.com/fabpot",
  8603. "type": "github"
  8604. },
  8605. {
  8606. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8607. "type": "tidelift"
  8608. }
  8609. ],
  8610. "time": "2022-04-22T07:30:54+00:00"
  8611. },
  8612. {
  8613. "name": "symfony/http-foundation",
  8614. "version": "v6.2.1",
  8615. "source": {
  8616. "type": "git",
  8617. "url": "https://github.com/symfony/http-foundation.git",
  8618. "reference": "d0bbd5a7e81b38f32504399b9199f265505b7bac"
  8619. },
  8620. "dist": {
  8621. "type": "zip",
  8622. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/d0bbd5a7e81b38f32504399b9199f265505b7bac",
  8623. "reference": "d0bbd5a7e81b38f32504399b9199f265505b7bac",
  8624. "shasum": ""
  8625. },
  8626. "require": {
  8627. "php": ">=8.1",
  8628. "symfony/deprecation-contracts": "^2.1|^3",
  8629. "symfony/polyfill-mbstring": "~1.1"
  8630. },
  8631. "conflict": {
  8632. "symfony/cache": "<6.2"
  8633. },
  8634. "require-dev": {
  8635. "predis/predis": "~1.0",
  8636. "symfony/cache": "^5.4|^6.0",
  8637. "symfony/dependency-injection": "^5.4|^6.0",
  8638. "symfony/expression-language": "^5.4|^6.0",
  8639. "symfony/http-kernel": "^5.4.12|^6.0.12|^6.1.4",
  8640. "symfony/mime": "^5.4|^6.0",
  8641. "symfony/rate-limiter": "^5.2|^6.0"
  8642. },
  8643. "suggest": {
  8644. "symfony/mime": "To use the file extension guesser"
  8645. },
  8646. "type": "library",
  8647. "autoload": {
  8648. "psr-4": {
  8649. "Symfony\\Component\\HttpFoundation\\": ""
  8650. },
  8651. "exclude-from-classmap": [
  8652. "/Tests/"
  8653. ]
  8654. },
  8655. "notification-url": "https://packagist.org/downloads/",
  8656. "license": [
  8657. "MIT"
  8658. ],
  8659. "authors": [
  8660. {
  8661. "name": "Fabien Potencier",
  8662. "email": "fabien@symfony.com"
  8663. },
  8664. {
  8665. "name": "Symfony Community",
  8666. "homepage": "https://symfony.com/contributors"
  8667. }
  8668. ],
  8669. "description": "Defines an object-oriented layer for the HTTP specification",
  8670. "homepage": "https://symfony.com",
  8671. "support": {
  8672. "source": "https://github.com/symfony/http-foundation/tree/v6.2.1"
  8673. },
  8674. "funding": [
  8675. {
  8676. "url": "https://symfony.com/sponsor",
  8677. "type": "custom"
  8678. },
  8679. {
  8680. "url": "https://github.com/fabpot",
  8681. "type": "github"
  8682. },
  8683. {
  8684. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8685. "type": "tidelift"
  8686. }
  8687. ],
  8688. "time": "2022-12-04T18:26:13+00:00"
  8689. },
  8690. {
  8691. "name": "symfony/http-kernel",
  8692. "version": "v6.2.1",
  8693. "source": {
  8694. "type": "git",
  8695. "url": "https://github.com/symfony/http-kernel.git",
  8696. "reference": "bcbd2ea12fee651a4c8bff4f6f00cce2ac1f8404"
  8697. },
  8698. "dist": {
  8699. "type": "zip",
  8700. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/bcbd2ea12fee651a4c8bff4f6f00cce2ac1f8404",
  8701. "reference": "bcbd2ea12fee651a4c8bff4f6f00cce2ac1f8404",
  8702. "shasum": ""
  8703. },
  8704. "require": {
  8705. "php": ">=8.1",
  8706. "psr/log": "^1|^2|^3",
  8707. "symfony/deprecation-contracts": "^2.1|^3",
  8708. "symfony/error-handler": "^6.1",
  8709. "symfony/event-dispatcher": "^5.4|^6.0",
  8710. "symfony/http-foundation": "^5.4|^6.0",
  8711. "symfony/polyfill-ctype": "^1.8"
  8712. },
  8713. "conflict": {
  8714. "symfony/browser-kit": "<5.4",
  8715. "symfony/cache": "<5.4",
  8716. "symfony/config": "<6.1",
  8717. "symfony/console": "<5.4",
  8718. "symfony/dependency-injection": "<6.2",
  8719. "symfony/doctrine-bridge": "<5.4",
  8720. "symfony/form": "<5.4",
  8721. "symfony/http-client": "<5.4",
  8722. "symfony/mailer": "<5.4",
  8723. "symfony/messenger": "<5.4",
  8724. "symfony/translation": "<5.4",
  8725. "symfony/twig-bridge": "<5.4",
  8726. "symfony/validator": "<5.4",
  8727. "twig/twig": "<2.13"
  8728. },
  8729. "provide": {
  8730. "psr/log-implementation": "1.0|2.0|3.0"
  8731. },
  8732. "require-dev": {
  8733. "psr/cache": "^1.0|^2.0|^3.0",
  8734. "symfony/browser-kit": "^5.4|^6.0",
  8735. "symfony/config": "^6.1",
  8736. "symfony/console": "^5.4|^6.0",
  8737. "symfony/css-selector": "^5.4|^6.0",
  8738. "symfony/dependency-injection": "^6.2",
  8739. "symfony/dom-crawler": "^5.4|^6.0",
  8740. "symfony/expression-language": "^5.4|^6.0",
  8741. "symfony/finder": "^5.4|^6.0",
  8742. "symfony/http-client-contracts": "^1.1|^2|^3",
  8743. "symfony/process": "^5.4|^6.0",
  8744. "symfony/routing": "^5.4|^6.0",
  8745. "symfony/stopwatch": "^5.4|^6.0",
  8746. "symfony/translation": "^5.4|^6.0",
  8747. "symfony/translation-contracts": "^1.1|^2|^3",
  8748. "symfony/uid": "^5.4|^6.0",
  8749. "twig/twig": "^2.13|^3.0.4"
  8750. },
  8751. "suggest": {
  8752. "symfony/browser-kit": "",
  8753. "symfony/config": "",
  8754. "symfony/console": "",
  8755. "symfony/dependency-injection": ""
  8756. },
  8757. "type": "library",
  8758. "autoload": {
  8759. "psr-4": {
  8760. "Symfony\\Component\\HttpKernel\\": ""
  8761. },
  8762. "exclude-from-classmap": [
  8763. "/Tests/"
  8764. ]
  8765. },
  8766. "notification-url": "https://packagist.org/downloads/",
  8767. "license": [
  8768. "MIT"
  8769. ],
  8770. "authors": [
  8771. {
  8772. "name": "Fabien Potencier",
  8773. "email": "fabien@symfony.com"
  8774. },
  8775. {
  8776. "name": "Symfony Community",
  8777. "homepage": "https://symfony.com/contributors"
  8778. }
  8779. ],
  8780. "description": "Provides a structured process for converting a Request into a Response",
  8781. "homepage": "https://symfony.com",
  8782. "support": {
  8783. "source": "https://github.com/symfony/http-kernel/tree/v6.2.1"
  8784. },
  8785. "funding": [
  8786. {
  8787. "url": "https://symfony.com/sponsor",
  8788. "type": "custom"
  8789. },
  8790. {
  8791. "url": "https://github.com/fabpot",
  8792. "type": "github"
  8793. },
  8794. {
  8795. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8796. "type": "tidelift"
  8797. }
  8798. ],
  8799. "time": "2022-12-06T17:28:26+00:00"
  8800. },
  8801. {
  8802. "name": "symfony/mailer",
  8803. "version": "v6.2.1",
  8804. "source": {
  8805. "type": "git",
  8806. "url": "https://github.com/symfony/mailer.git",
  8807. "reference": "a18c3dd41cfcf011e3866802e39b9ae9e541deaf"
  8808. },
  8809. "dist": {
  8810. "type": "zip",
  8811. "url": "https://api.github.com/repos/symfony/mailer/zipball/a18c3dd41cfcf011e3866802e39b9ae9e541deaf",
  8812. "reference": "a18c3dd41cfcf011e3866802e39b9ae9e541deaf",
  8813. "shasum": ""
  8814. },
  8815. "require": {
  8816. "egulias/email-validator": "^2.1.10|^3",
  8817. "php": ">=8.1",
  8818. "psr/event-dispatcher": "^1",
  8819. "psr/log": "^1|^2|^3",
  8820. "symfony/event-dispatcher": "^5.4|^6.0",
  8821. "symfony/mime": "^6.2",
  8822. "symfony/service-contracts": "^1.1|^2|^3"
  8823. },
  8824. "conflict": {
  8825. "symfony/http-kernel": "<5.4",
  8826. "symfony/messenger": "<6.2",
  8827. "symfony/mime": "<6.2",
  8828. "symfony/twig-bridge": "<6.2.1"
  8829. },
  8830. "require-dev": {
  8831. "symfony/console": "^5.4|^6.0",
  8832. "symfony/http-client-contracts": "^1.1|^2|^3",
  8833. "symfony/messenger": "^6.2",
  8834. "symfony/twig-bridge": "^6.2"
  8835. },
  8836. "type": "library",
  8837. "autoload": {
  8838. "psr-4": {
  8839. "Symfony\\Component\\Mailer\\": ""
  8840. },
  8841. "exclude-from-classmap": [
  8842. "/Tests/"
  8843. ]
  8844. },
  8845. "notification-url": "https://packagist.org/downloads/",
  8846. "license": [
  8847. "MIT"
  8848. ],
  8849. "authors": [
  8850. {
  8851. "name": "Fabien Potencier",
  8852. "email": "fabien@symfony.com"
  8853. },
  8854. {
  8855. "name": "Symfony Community",
  8856. "homepage": "https://symfony.com/contributors"
  8857. }
  8858. ],
  8859. "description": "Helps sending emails",
  8860. "homepage": "https://symfony.com",
  8861. "support": {
  8862. "source": "https://github.com/symfony/mailer/tree/v6.2.1"
  8863. },
  8864. "funding": [
  8865. {
  8866. "url": "https://symfony.com/sponsor",
  8867. "type": "custom"
  8868. },
  8869. {
  8870. "url": "https://github.com/fabpot",
  8871. "type": "github"
  8872. },
  8873. {
  8874. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8875. "type": "tidelift"
  8876. }
  8877. ],
  8878. "time": "2022-12-06T16:54:23+00:00"
  8879. },
  8880. {
  8881. "name": "symfony/mailgun-mailer",
  8882. "version": "v6.2.0",
  8883. "source": {
  8884. "type": "git",
  8885. "url": "https://github.com/symfony/mailgun-mailer.git",
  8886. "reference": "c5364fbcf5581ba9eae569db12b380b9255ce238"
  8887. },
  8888. "dist": {
  8889. "type": "zip",
  8890. "url": "https://api.github.com/repos/symfony/mailgun-mailer/zipball/c5364fbcf5581ba9eae569db12b380b9255ce238",
  8891. "reference": "c5364fbcf5581ba9eae569db12b380b9255ce238",
  8892. "shasum": ""
  8893. },
  8894. "require": {
  8895. "php": ">=8.1",
  8896. "symfony/mailer": "^5.4|^6.0"
  8897. },
  8898. "require-dev": {
  8899. "symfony/http-client": "^5.4|^6.0"
  8900. },
  8901. "type": "symfony-mailer-bridge",
  8902. "autoload": {
  8903. "psr-4": {
  8904. "Symfony\\Component\\Mailer\\Bridge\\Mailgun\\": ""
  8905. },
  8906. "exclude-from-classmap": [
  8907. "/Tests/"
  8908. ]
  8909. },
  8910. "notification-url": "https://packagist.org/downloads/",
  8911. "license": [
  8912. "MIT"
  8913. ],
  8914. "authors": [
  8915. {
  8916. "name": "Fabien Potencier",
  8917. "email": "fabien@symfony.com"
  8918. },
  8919. {
  8920. "name": "Symfony Community",
  8921. "homepage": "https://symfony.com/contributors"
  8922. }
  8923. ],
  8924. "description": "Symfony Mailgun Mailer Bridge",
  8925. "homepage": "https://symfony.com",
  8926. "support": {
  8927. "source": "https://github.com/symfony/mailgun-mailer/tree/v6.2.0"
  8928. },
  8929. "funding": [
  8930. {
  8931. "url": "https://symfony.com/sponsor",
  8932. "type": "custom"
  8933. },
  8934. {
  8935. "url": "https://github.com/fabpot",
  8936. "type": "github"
  8937. },
  8938. {
  8939. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8940. "type": "tidelift"
  8941. }
  8942. ],
  8943. "time": "2022-10-09T08:55:40+00:00"
  8944. },
  8945. {
  8946. "name": "symfony/mime",
  8947. "version": "v6.2.0",
  8948. "source": {
  8949. "type": "git",
  8950. "url": "https://github.com/symfony/mime.git",
  8951. "reference": "1e8005a7cbd79fb824ad81308ef2a76592a08bc0"
  8952. },
  8953. "dist": {
  8954. "type": "zip",
  8955. "url": "https://api.github.com/repos/symfony/mime/zipball/1e8005a7cbd79fb824ad81308ef2a76592a08bc0",
  8956. "reference": "1e8005a7cbd79fb824ad81308ef2a76592a08bc0",
  8957. "shasum": ""
  8958. },
  8959. "require": {
  8960. "php": ">=8.1",
  8961. "symfony/polyfill-intl-idn": "^1.10",
  8962. "symfony/polyfill-mbstring": "^1.0"
  8963. },
  8964. "conflict": {
  8965. "egulias/email-validator": "~3.0.0",
  8966. "phpdocumentor/reflection-docblock": "<3.2.2",
  8967. "phpdocumentor/type-resolver": "<1.4.0",
  8968. "symfony/mailer": "<5.4",
  8969. "symfony/serializer": "<6.2"
  8970. },
  8971. "require-dev": {
  8972. "egulias/email-validator": "^2.1.10|^3.1",
  8973. "league/html-to-markdown": "^5.0",
  8974. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  8975. "symfony/dependency-injection": "^5.4|^6.0",
  8976. "symfony/property-access": "^5.4|^6.0",
  8977. "symfony/property-info": "^5.4|^6.0",
  8978. "symfony/serializer": "^6.2"
  8979. },
  8980. "type": "library",
  8981. "autoload": {
  8982. "psr-4": {
  8983. "Symfony\\Component\\Mime\\": ""
  8984. },
  8985. "exclude-from-classmap": [
  8986. "/Tests/"
  8987. ]
  8988. },
  8989. "notification-url": "https://packagist.org/downloads/",
  8990. "license": [
  8991. "MIT"
  8992. ],
  8993. "authors": [
  8994. {
  8995. "name": "Fabien Potencier",
  8996. "email": "fabien@symfony.com"
  8997. },
  8998. {
  8999. "name": "Symfony Community",
  9000. "homepage": "https://symfony.com/contributors"
  9001. }
  9002. ],
  9003. "description": "Allows manipulating MIME messages",
  9004. "homepage": "https://symfony.com",
  9005. "keywords": [
  9006. "mime",
  9007. "mime-type"
  9008. ],
  9009. "support": {
  9010. "source": "https://github.com/symfony/mime/tree/v6.2.0"
  9011. },
  9012. "funding": [
  9013. {
  9014. "url": "https://symfony.com/sponsor",
  9015. "type": "custom"
  9016. },
  9017. {
  9018. "url": "https://github.com/fabpot",
  9019. "type": "github"
  9020. },
  9021. {
  9022. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9023. "type": "tidelift"
  9024. }
  9025. ],
  9026. "time": "2022-11-28T12:28:19+00:00"
  9027. },
  9028. {
  9029. "name": "symfony/polyfill-ctype",
  9030. "version": "v1.27.0",
  9031. "source": {
  9032. "type": "git",
  9033. "url": "https://github.com/symfony/polyfill-ctype.git",
  9034. "reference": "5bbc823adecdae860bb64756d639ecfec17b050a"
  9035. },
  9036. "dist": {
  9037. "type": "zip",
  9038. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/5bbc823adecdae860bb64756d639ecfec17b050a",
  9039. "reference": "5bbc823adecdae860bb64756d639ecfec17b050a",
  9040. "shasum": ""
  9041. },
  9042. "require": {
  9043. "php": ">=7.1"
  9044. },
  9045. "provide": {
  9046. "ext-ctype": "*"
  9047. },
  9048. "suggest": {
  9049. "ext-ctype": "For best performance"
  9050. },
  9051. "type": "library",
  9052. "extra": {
  9053. "branch-alias": {
  9054. "dev-main": "1.27-dev"
  9055. },
  9056. "thanks": {
  9057. "name": "symfony/polyfill",
  9058. "url": "https://github.com/symfony/polyfill"
  9059. }
  9060. },
  9061. "autoload": {
  9062. "files": [
  9063. "bootstrap.php"
  9064. ],
  9065. "psr-4": {
  9066. "Symfony\\Polyfill\\Ctype\\": ""
  9067. }
  9068. },
  9069. "notification-url": "https://packagist.org/downloads/",
  9070. "license": [
  9071. "MIT"
  9072. ],
  9073. "authors": [
  9074. {
  9075. "name": "Gert de Pagter",
  9076. "email": "BackEndTea@gmail.com"
  9077. },
  9078. {
  9079. "name": "Symfony Community",
  9080. "homepage": "https://symfony.com/contributors"
  9081. }
  9082. ],
  9083. "description": "Symfony polyfill for ctype functions",
  9084. "homepage": "https://symfony.com",
  9085. "keywords": [
  9086. "compatibility",
  9087. "ctype",
  9088. "polyfill",
  9089. "portable"
  9090. ],
  9091. "support": {
  9092. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.27.0"
  9093. },
  9094. "funding": [
  9095. {
  9096. "url": "https://symfony.com/sponsor",
  9097. "type": "custom"
  9098. },
  9099. {
  9100. "url": "https://github.com/fabpot",
  9101. "type": "github"
  9102. },
  9103. {
  9104. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9105. "type": "tidelift"
  9106. }
  9107. ],
  9108. "time": "2022-11-03T14:55:06+00:00"
  9109. },
  9110. {
  9111. "name": "symfony/polyfill-intl-grapheme",
  9112. "version": "v1.27.0",
  9113. "source": {
  9114. "type": "git",
  9115. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  9116. "reference": "511a08c03c1960e08a883f4cffcacd219b758354"
  9117. },
  9118. "dist": {
  9119. "type": "zip",
  9120. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/511a08c03c1960e08a883f4cffcacd219b758354",
  9121. "reference": "511a08c03c1960e08a883f4cffcacd219b758354",
  9122. "shasum": ""
  9123. },
  9124. "require": {
  9125. "php": ">=7.1"
  9126. },
  9127. "suggest": {
  9128. "ext-intl": "For best performance"
  9129. },
  9130. "type": "library",
  9131. "extra": {
  9132. "branch-alias": {
  9133. "dev-main": "1.27-dev"
  9134. },
  9135. "thanks": {
  9136. "name": "symfony/polyfill",
  9137. "url": "https://github.com/symfony/polyfill"
  9138. }
  9139. },
  9140. "autoload": {
  9141. "files": [
  9142. "bootstrap.php"
  9143. ],
  9144. "psr-4": {
  9145. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  9146. }
  9147. },
  9148. "notification-url": "https://packagist.org/downloads/",
  9149. "license": [
  9150. "MIT"
  9151. ],
  9152. "authors": [
  9153. {
  9154. "name": "Nicolas Grekas",
  9155. "email": "p@tchwork.com"
  9156. },
  9157. {
  9158. "name": "Symfony Community",
  9159. "homepage": "https://symfony.com/contributors"
  9160. }
  9161. ],
  9162. "description": "Symfony polyfill for intl's grapheme_* functions",
  9163. "homepage": "https://symfony.com",
  9164. "keywords": [
  9165. "compatibility",
  9166. "grapheme",
  9167. "intl",
  9168. "polyfill",
  9169. "portable",
  9170. "shim"
  9171. ],
  9172. "support": {
  9173. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.27.0"
  9174. },
  9175. "funding": [
  9176. {
  9177. "url": "https://symfony.com/sponsor",
  9178. "type": "custom"
  9179. },
  9180. {
  9181. "url": "https://github.com/fabpot",
  9182. "type": "github"
  9183. },
  9184. {
  9185. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9186. "type": "tidelift"
  9187. }
  9188. ],
  9189. "time": "2022-11-03T14:55:06+00:00"
  9190. },
  9191. {
  9192. "name": "symfony/polyfill-intl-idn",
  9193. "version": "v1.27.0",
  9194. "source": {
  9195. "type": "git",
  9196. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  9197. "reference": "639084e360537a19f9ee352433b84ce831f3d2da"
  9198. },
  9199. "dist": {
  9200. "type": "zip",
  9201. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/639084e360537a19f9ee352433b84ce831f3d2da",
  9202. "reference": "639084e360537a19f9ee352433b84ce831f3d2da",
  9203. "shasum": ""
  9204. },
  9205. "require": {
  9206. "php": ">=7.1",
  9207. "symfony/polyfill-intl-normalizer": "^1.10",
  9208. "symfony/polyfill-php72": "^1.10"
  9209. },
  9210. "suggest": {
  9211. "ext-intl": "For best performance"
  9212. },
  9213. "type": "library",
  9214. "extra": {
  9215. "branch-alias": {
  9216. "dev-main": "1.27-dev"
  9217. },
  9218. "thanks": {
  9219. "name": "symfony/polyfill",
  9220. "url": "https://github.com/symfony/polyfill"
  9221. }
  9222. },
  9223. "autoload": {
  9224. "files": [
  9225. "bootstrap.php"
  9226. ],
  9227. "psr-4": {
  9228. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  9229. }
  9230. },
  9231. "notification-url": "https://packagist.org/downloads/",
  9232. "license": [
  9233. "MIT"
  9234. ],
  9235. "authors": [
  9236. {
  9237. "name": "Laurent Bassin",
  9238. "email": "laurent@bassin.info"
  9239. },
  9240. {
  9241. "name": "Trevor Rowbotham",
  9242. "email": "trevor.rowbotham@pm.me"
  9243. },
  9244. {
  9245. "name": "Symfony Community",
  9246. "homepage": "https://symfony.com/contributors"
  9247. }
  9248. ],
  9249. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  9250. "homepage": "https://symfony.com",
  9251. "keywords": [
  9252. "compatibility",
  9253. "idn",
  9254. "intl",
  9255. "polyfill",
  9256. "portable",
  9257. "shim"
  9258. ],
  9259. "support": {
  9260. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.27.0"
  9261. },
  9262. "funding": [
  9263. {
  9264. "url": "https://symfony.com/sponsor",
  9265. "type": "custom"
  9266. },
  9267. {
  9268. "url": "https://github.com/fabpot",
  9269. "type": "github"
  9270. },
  9271. {
  9272. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9273. "type": "tidelift"
  9274. }
  9275. ],
  9276. "time": "2022-11-03T14:55:06+00:00"
  9277. },
  9278. {
  9279. "name": "symfony/polyfill-intl-normalizer",
  9280. "version": "v1.27.0",
  9281. "source": {
  9282. "type": "git",
  9283. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  9284. "reference": "19bd1e4fcd5b91116f14d8533c57831ed00571b6"
  9285. },
  9286. "dist": {
  9287. "type": "zip",
  9288. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/19bd1e4fcd5b91116f14d8533c57831ed00571b6",
  9289. "reference": "19bd1e4fcd5b91116f14d8533c57831ed00571b6",
  9290. "shasum": ""
  9291. },
  9292. "require": {
  9293. "php": ">=7.1"
  9294. },
  9295. "suggest": {
  9296. "ext-intl": "For best performance"
  9297. },
  9298. "type": "library",
  9299. "extra": {
  9300. "branch-alias": {
  9301. "dev-main": "1.27-dev"
  9302. },
  9303. "thanks": {
  9304. "name": "symfony/polyfill",
  9305. "url": "https://github.com/symfony/polyfill"
  9306. }
  9307. },
  9308. "autoload": {
  9309. "files": [
  9310. "bootstrap.php"
  9311. ],
  9312. "psr-4": {
  9313. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  9314. },
  9315. "classmap": [
  9316. "Resources/stubs"
  9317. ]
  9318. },
  9319. "notification-url": "https://packagist.org/downloads/",
  9320. "license": [
  9321. "MIT"
  9322. ],
  9323. "authors": [
  9324. {
  9325. "name": "Nicolas Grekas",
  9326. "email": "p@tchwork.com"
  9327. },
  9328. {
  9329. "name": "Symfony Community",
  9330. "homepage": "https://symfony.com/contributors"
  9331. }
  9332. ],
  9333. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  9334. "homepage": "https://symfony.com",
  9335. "keywords": [
  9336. "compatibility",
  9337. "intl",
  9338. "normalizer",
  9339. "polyfill",
  9340. "portable",
  9341. "shim"
  9342. ],
  9343. "support": {
  9344. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.27.0"
  9345. },
  9346. "funding": [
  9347. {
  9348. "url": "https://symfony.com/sponsor",
  9349. "type": "custom"
  9350. },
  9351. {
  9352. "url": "https://github.com/fabpot",
  9353. "type": "github"
  9354. },
  9355. {
  9356. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9357. "type": "tidelift"
  9358. }
  9359. ],
  9360. "time": "2022-11-03T14:55:06+00:00"
  9361. },
  9362. {
  9363. "name": "symfony/polyfill-mbstring",
  9364. "version": "v1.27.0",
  9365. "source": {
  9366. "type": "git",
  9367. "url": "https://github.com/symfony/polyfill-mbstring.git",
  9368. "reference": "8ad114f6b39e2c98a8b0e3bd907732c207c2b534"
  9369. },
  9370. "dist": {
  9371. "type": "zip",
  9372. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/8ad114f6b39e2c98a8b0e3bd907732c207c2b534",
  9373. "reference": "8ad114f6b39e2c98a8b0e3bd907732c207c2b534",
  9374. "shasum": ""
  9375. },
  9376. "require": {
  9377. "php": ">=7.1"
  9378. },
  9379. "provide": {
  9380. "ext-mbstring": "*"
  9381. },
  9382. "suggest": {
  9383. "ext-mbstring": "For best performance"
  9384. },
  9385. "type": "library",
  9386. "extra": {
  9387. "branch-alias": {
  9388. "dev-main": "1.27-dev"
  9389. },
  9390. "thanks": {
  9391. "name": "symfony/polyfill",
  9392. "url": "https://github.com/symfony/polyfill"
  9393. }
  9394. },
  9395. "autoload": {
  9396. "files": [
  9397. "bootstrap.php"
  9398. ],
  9399. "psr-4": {
  9400. "Symfony\\Polyfill\\Mbstring\\": ""
  9401. }
  9402. },
  9403. "notification-url": "https://packagist.org/downloads/",
  9404. "license": [
  9405. "MIT"
  9406. ],
  9407. "authors": [
  9408. {
  9409. "name": "Nicolas Grekas",
  9410. "email": "p@tchwork.com"
  9411. },
  9412. {
  9413. "name": "Symfony Community",
  9414. "homepage": "https://symfony.com/contributors"
  9415. }
  9416. ],
  9417. "description": "Symfony polyfill for the Mbstring extension",
  9418. "homepage": "https://symfony.com",
  9419. "keywords": [
  9420. "compatibility",
  9421. "mbstring",
  9422. "polyfill",
  9423. "portable",
  9424. "shim"
  9425. ],
  9426. "support": {
  9427. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.27.0"
  9428. },
  9429. "funding": [
  9430. {
  9431. "url": "https://symfony.com/sponsor",
  9432. "type": "custom"
  9433. },
  9434. {
  9435. "url": "https://github.com/fabpot",
  9436. "type": "github"
  9437. },
  9438. {
  9439. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9440. "type": "tidelift"
  9441. }
  9442. ],
  9443. "time": "2022-11-03T14:55:06+00:00"
  9444. },
  9445. {
  9446. "name": "symfony/polyfill-php72",
  9447. "version": "v1.27.0",
  9448. "source": {
  9449. "type": "git",
  9450. "url": "https://github.com/symfony/polyfill-php72.git",
  9451. "reference": "869329b1e9894268a8a61dabb69153029b7a8c97"
  9452. },
  9453. "dist": {
  9454. "type": "zip",
  9455. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/869329b1e9894268a8a61dabb69153029b7a8c97",
  9456. "reference": "869329b1e9894268a8a61dabb69153029b7a8c97",
  9457. "shasum": ""
  9458. },
  9459. "require": {
  9460. "php": ">=7.1"
  9461. },
  9462. "type": "library",
  9463. "extra": {
  9464. "branch-alias": {
  9465. "dev-main": "1.27-dev"
  9466. },
  9467. "thanks": {
  9468. "name": "symfony/polyfill",
  9469. "url": "https://github.com/symfony/polyfill"
  9470. }
  9471. },
  9472. "autoload": {
  9473. "files": [
  9474. "bootstrap.php"
  9475. ],
  9476. "psr-4": {
  9477. "Symfony\\Polyfill\\Php72\\": ""
  9478. }
  9479. },
  9480. "notification-url": "https://packagist.org/downloads/",
  9481. "license": [
  9482. "MIT"
  9483. ],
  9484. "authors": [
  9485. {
  9486. "name": "Nicolas Grekas",
  9487. "email": "p@tchwork.com"
  9488. },
  9489. {
  9490. "name": "Symfony Community",
  9491. "homepage": "https://symfony.com/contributors"
  9492. }
  9493. ],
  9494. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  9495. "homepage": "https://symfony.com",
  9496. "keywords": [
  9497. "compatibility",
  9498. "polyfill",
  9499. "portable",
  9500. "shim"
  9501. ],
  9502. "support": {
  9503. "source": "https://github.com/symfony/polyfill-php72/tree/v1.27.0"
  9504. },
  9505. "funding": [
  9506. {
  9507. "url": "https://symfony.com/sponsor",
  9508. "type": "custom"
  9509. },
  9510. {
  9511. "url": "https://github.com/fabpot",
  9512. "type": "github"
  9513. },
  9514. {
  9515. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9516. "type": "tidelift"
  9517. }
  9518. ],
  9519. "time": "2022-11-03T14:55:06+00:00"
  9520. },
  9521. {
  9522. "name": "symfony/polyfill-php80",
  9523. "version": "v1.27.0",
  9524. "source": {
  9525. "type": "git",
  9526. "url": "https://github.com/symfony/polyfill-php80.git",
  9527. "reference": "7a6ff3f1959bb01aefccb463a0f2cd3d3d2fd936"
  9528. },
  9529. "dist": {
  9530. "type": "zip",
  9531. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/7a6ff3f1959bb01aefccb463a0f2cd3d3d2fd936",
  9532. "reference": "7a6ff3f1959bb01aefccb463a0f2cd3d3d2fd936",
  9533. "shasum": ""
  9534. },
  9535. "require": {
  9536. "php": ">=7.1"
  9537. },
  9538. "type": "library",
  9539. "extra": {
  9540. "branch-alias": {
  9541. "dev-main": "1.27-dev"
  9542. },
  9543. "thanks": {
  9544. "name": "symfony/polyfill",
  9545. "url": "https://github.com/symfony/polyfill"
  9546. }
  9547. },
  9548. "autoload": {
  9549. "files": [
  9550. "bootstrap.php"
  9551. ],
  9552. "psr-4": {
  9553. "Symfony\\Polyfill\\Php80\\": ""
  9554. },
  9555. "classmap": [
  9556. "Resources/stubs"
  9557. ]
  9558. },
  9559. "notification-url": "https://packagist.org/downloads/",
  9560. "license": [
  9561. "MIT"
  9562. ],
  9563. "authors": [
  9564. {
  9565. "name": "Ion Bazan",
  9566. "email": "ion.bazan@gmail.com"
  9567. },
  9568. {
  9569. "name": "Nicolas Grekas",
  9570. "email": "p@tchwork.com"
  9571. },
  9572. {
  9573. "name": "Symfony Community",
  9574. "homepage": "https://symfony.com/contributors"
  9575. }
  9576. ],
  9577. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  9578. "homepage": "https://symfony.com",
  9579. "keywords": [
  9580. "compatibility",
  9581. "polyfill",
  9582. "portable",
  9583. "shim"
  9584. ],
  9585. "support": {
  9586. "source": "https://github.com/symfony/polyfill-php80/tree/v1.27.0"
  9587. },
  9588. "funding": [
  9589. {
  9590. "url": "https://symfony.com/sponsor",
  9591. "type": "custom"
  9592. },
  9593. {
  9594. "url": "https://github.com/fabpot",
  9595. "type": "github"
  9596. },
  9597. {
  9598. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9599. "type": "tidelift"
  9600. }
  9601. ],
  9602. "time": "2022-11-03T14:55:06+00:00"
  9603. },
  9604. {
  9605. "name": "symfony/polyfill-php81",
  9606. "version": "v1.27.0",
  9607. "source": {
  9608. "type": "git",
  9609. "url": "https://github.com/symfony/polyfill-php81.git",
  9610. "reference": "707403074c8ea6e2edaf8794b0157a0bfa52157a"
  9611. },
  9612. "dist": {
  9613. "type": "zip",
  9614. "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/707403074c8ea6e2edaf8794b0157a0bfa52157a",
  9615. "reference": "707403074c8ea6e2edaf8794b0157a0bfa52157a",
  9616. "shasum": ""
  9617. },
  9618. "require": {
  9619. "php": ">=7.1"
  9620. },
  9621. "type": "library",
  9622. "extra": {
  9623. "branch-alias": {
  9624. "dev-main": "1.27-dev"
  9625. },
  9626. "thanks": {
  9627. "name": "symfony/polyfill",
  9628. "url": "https://github.com/symfony/polyfill"
  9629. }
  9630. },
  9631. "autoload": {
  9632. "files": [
  9633. "bootstrap.php"
  9634. ],
  9635. "psr-4": {
  9636. "Symfony\\Polyfill\\Php81\\": ""
  9637. },
  9638. "classmap": [
  9639. "Resources/stubs"
  9640. ]
  9641. },
  9642. "notification-url": "https://packagist.org/downloads/",
  9643. "license": [
  9644. "MIT"
  9645. ],
  9646. "authors": [
  9647. {
  9648. "name": "Nicolas Grekas",
  9649. "email": "p@tchwork.com"
  9650. },
  9651. {
  9652. "name": "Symfony Community",
  9653. "homepage": "https://symfony.com/contributors"
  9654. }
  9655. ],
  9656. "description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions",
  9657. "homepage": "https://symfony.com",
  9658. "keywords": [
  9659. "compatibility",
  9660. "polyfill",
  9661. "portable",
  9662. "shim"
  9663. ],
  9664. "support": {
  9665. "source": "https://github.com/symfony/polyfill-php81/tree/v1.27.0"
  9666. },
  9667. "funding": [
  9668. {
  9669. "url": "https://symfony.com/sponsor",
  9670. "type": "custom"
  9671. },
  9672. {
  9673. "url": "https://github.com/fabpot",
  9674. "type": "github"
  9675. },
  9676. {
  9677. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9678. "type": "tidelift"
  9679. }
  9680. ],
  9681. "time": "2022-11-03T14:55:06+00:00"
  9682. },
  9683. {
  9684. "name": "symfony/polyfill-uuid",
  9685. "version": "v1.27.0",
  9686. "source": {
  9687. "type": "git",
  9688. "url": "https://github.com/symfony/polyfill-uuid.git",
  9689. "reference": "f3cf1a645c2734236ed1e2e671e273eeb3586166"
  9690. },
  9691. "dist": {
  9692. "type": "zip",
  9693. "url": "https://api.github.com/repos/symfony/polyfill-uuid/zipball/f3cf1a645c2734236ed1e2e671e273eeb3586166",
  9694. "reference": "f3cf1a645c2734236ed1e2e671e273eeb3586166",
  9695. "shasum": ""
  9696. },
  9697. "require": {
  9698. "php": ">=7.1"
  9699. },
  9700. "provide": {
  9701. "ext-uuid": "*"
  9702. },
  9703. "suggest": {
  9704. "ext-uuid": "For best performance"
  9705. },
  9706. "type": "library",
  9707. "extra": {
  9708. "branch-alias": {
  9709. "dev-main": "1.27-dev"
  9710. },
  9711. "thanks": {
  9712. "name": "symfony/polyfill",
  9713. "url": "https://github.com/symfony/polyfill"
  9714. }
  9715. },
  9716. "autoload": {
  9717. "files": [
  9718. "bootstrap.php"
  9719. ],
  9720. "psr-4": {
  9721. "Symfony\\Polyfill\\Uuid\\": ""
  9722. }
  9723. },
  9724. "notification-url": "https://packagist.org/downloads/",
  9725. "license": [
  9726. "MIT"
  9727. ],
  9728. "authors": [
  9729. {
  9730. "name": "Grégoire Pineau",
  9731. "email": "lyrixx@lyrixx.info"
  9732. },
  9733. {
  9734. "name": "Symfony Community",
  9735. "homepage": "https://symfony.com/contributors"
  9736. }
  9737. ],
  9738. "description": "Symfony polyfill for uuid functions",
  9739. "homepage": "https://symfony.com",
  9740. "keywords": [
  9741. "compatibility",
  9742. "polyfill",
  9743. "portable",
  9744. "uuid"
  9745. ],
  9746. "support": {
  9747. "source": "https://github.com/symfony/polyfill-uuid/tree/v1.27.0"
  9748. },
  9749. "funding": [
  9750. {
  9751. "url": "https://symfony.com/sponsor",
  9752. "type": "custom"
  9753. },
  9754. {
  9755. "url": "https://github.com/fabpot",
  9756. "type": "github"
  9757. },
  9758. {
  9759. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9760. "type": "tidelift"
  9761. }
  9762. ],
  9763. "time": "2022-11-03T14:55:06+00:00"
  9764. },
  9765. {
  9766. "name": "symfony/process",
  9767. "version": "v6.2.0",
  9768. "source": {
  9769. "type": "git",
  9770. "url": "https://github.com/symfony/process.git",
  9771. "reference": "ba6e55359f8f755fe996c58a81e00eaa67a35877"
  9772. },
  9773. "dist": {
  9774. "type": "zip",
  9775. "url": "https://api.github.com/repos/symfony/process/zipball/ba6e55359f8f755fe996c58a81e00eaa67a35877",
  9776. "reference": "ba6e55359f8f755fe996c58a81e00eaa67a35877",
  9777. "shasum": ""
  9778. },
  9779. "require": {
  9780. "php": ">=8.1"
  9781. },
  9782. "type": "library",
  9783. "autoload": {
  9784. "psr-4": {
  9785. "Symfony\\Component\\Process\\": ""
  9786. },
  9787. "exclude-from-classmap": [
  9788. "/Tests/"
  9789. ]
  9790. },
  9791. "notification-url": "https://packagist.org/downloads/",
  9792. "license": [
  9793. "MIT"
  9794. ],
  9795. "authors": [
  9796. {
  9797. "name": "Fabien Potencier",
  9798. "email": "fabien@symfony.com"
  9799. },
  9800. {
  9801. "name": "Symfony Community",
  9802. "homepage": "https://symfony.com/contributors"
  9803. }
  9804. ],
  9805. "description": "Executes commands in sub-processes",
  9806. "homepage": "https://symfony.com",
  9807. "support": {
  9808. "source": "https://github.com/symfony/process/tree/v6.2.0"
  9809. },
  9810. "funding": [
  9811. {
  9812. "url": "https://symfony.com/sponsor",
  9813. "type": "custom"
  9814. },
  9815. {
  9816. "url": "https://github.com/fabpot",
  9817. "type": "github"
  9818. },
  9819. {
  9820. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9821. "type": "tidelift"
  9822. }
  9823. ],
  9824. "time": "2022-11-02T09:08:04+00:00"
  9825. },
  9826. {
  9827. "name": "symfony/psr-http-message-bridge",
  9828. "version": "v2.1.4",
  9829. "source": {
  9830. "type": "git",
  9831. "url": "https://github.com/symfony/psr-http-message-bridge.git",
  9832. "reference": "a125b93ef378c492e274f217874906fb9babdebb"
  9833. },
  9834. "dist": {
  9835. "type": "zip",
  9836. "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/a125b93ef378c492e274f217874906fb9babdebb",
  9837. "reference": "a125b93ef378c492e274f217874906fb9babdebb",
  9838. "shasum": ""
  9839. },
  9840. "require": {
  9841. "php": ">=7.1",
  9842. "psr/http-message": "^1.0",
  9843. "symfony/http-foundation": "^4.4 || ^5.0 || ^6.0"
  9844. },
  9845. "require-dev": {
  9846. "nyholm/psr7": "^1.1",
  9847. "psr/log": "^1.1 || ^2 || ^3",
  9848. "symfony/browser-kit": "^4.4 || ^5.0 || ^6.0",
  9849. "symfony/config": "^4.4 || ^5.0 || ^6.0",
  9850. "symfony/event-dispatcher": "^4.4 || ^5.0 || ^6.0",
  9851. "symfony/framework-bundle": "^4.4 || ^5.0 || ^6.0",
  9852. "symfony/http-kernel": "^4.4 || ^5.0 || ^6.0",
  9853. "symfony/phpunit-bridge": "^5.4@dev || ^6.0"
  9854. },
  9855. "suggest": {
  9856. "nyholm/psr7": "For a super lightweight PSR-7/17 implementation"
  9857. },
  9858. "type": "symfony-bridge",
  9859. "extra": {
  9860. "branch-alias": {
  9861. "dev-main": "2.1-dev"
  9862. }
  9863. },
  9864. "autoload": {
  9865. "psr-4": {
  9866. "Symfony\\Bridge\\PsrHttpMessage\\": ""
  9867. },
  9868. "exclude-from-classmap": [
  9869. "/Tests/"
  9870. ]
  9871. },
  9872. "notification-url": "https://packagist.org/downloads/",
  9873. "license": [
  9874. "MIT"
  9875. ],
  9876. "authors": [
  9877. {
  9878. "name": "Fabien Potencier",
  9879. "email": "fabien@symfony.com"
  9880. },
  9881. {
  9882. "name": "Symfony Community",
  9883. "homepage": "http://symfony.com/contributors"
  9884. }
  9885. ],
  9886. "description": "PSR HTTP message bridge",
  9887. "homepage": "http://symfony.com",
  9888. "keywords": [
  9889. "http",
  9890. "http-message",
  9891. "psr-17",
  9892. "psr-7"
  9893. ],
  9894. "support": {
  9895. "issues": "https://github.com/symfony/psr-http-message-bridge/issues",
  9896. "source": "https://github.com/symfony/psr-http-message-bridge/tree/v2.1.4"
  9897. },
  9898. "funding": [
  9899. {
  9900. "url": "https://symfony.com/sponsor",
  9901. "type": "custom"
  9902. },
  9903. {
  9904. "url": "https://github.com/fabpot",
  9905. "type": "github"
  9906. },
  9907. {
  9908. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9909. "type": "tidelift"
  9910. }
  9911. ],
  9912. "time": "2022-11-28T22:46:34+00:00"
  9913. },
  9914. {
  9915. "name": "symfony/routing",
  9916. "version": "v6.2.0",
  9917. "source": {
  9918. "type": "git",
  9919. "url": "https://github.com/symfony/routing.git",
  9920. "reference": "857ac6f4df371470fbdefa2f5967a2618dbf1852"
  9921. },
  9922. "dist": {
  9923. "type": "zip",
  9924. "url": "https://api.github.com/repos/symfony/routing/zipball/857ac6f4df371470fbdefa2f5967a2618dbf1852",
  9925. "reference": "857ac6f4df371470fbdefa2f5967a2618dbf1852",
  9926. "shasum": ""
  9927. },
  9928. "require": {
  9929. "php": ">=8.1"
  9930. },
  9931. "conflict": {
  9932. "doctrine/annotations": "<1.12",
  9933. "symfony/config": "<6.2",
  9934. "symfony/dependency-injection": "<5.4",
  9935. "symfony/yaml": "<5.4"
  9936. },
  9937. "require-dev": {
  9938. "doctrine/annotations": "^1.12",
  9939. "psr/log": "^1|^2|^3",
  9940. "symfony/config": "^6.2",
  9941. "symfony/dependency-injection": "^5.4|^6.0",
  9942. "symfony/expression-language": "^5.4|^6.0",
  9943. "symfony/http-foundation": "^5.4|^6.0",
  9944. "symfony/yaml": "^5.4|^6.0"
  9945. },
  9946. "suggest": {
  9947. "symfony/config": "For using the all-in-one router or any loader",
  9948. "symfony/expression-language": "For using expression matching",
  9949. "symfony/http-foundation": "For using a Symfony Request object",
  9950. "symfony/yaml": "For using the YAML loader"
  9951. },
  9952. "type": "library",
  9953. "autoload": {
  9954. "psr-4": {
  9955. "Symfony\\Component\\Routing\\": ""
  9956. },
  9957. "exclude-from-classmap": [
  9958. "/Tests/"
  9959. ]
  9960. },
  9961. "notification-url": "https://packagist.org/downloads/",
  9962. "license": [
  9963. "MIT"
  9964. ],
  9965. "authors": [
  9966. {
  9967. "name": "Fabien Potencier",
  9968. "email": "fabien@symfony.com"
  9969. },
  9970. {
  9971. "name": "Symfony Community",
  9972. "homepage": "https://symfony.com/contributors"
  9973. }
  9974. ],
  9975. "description": "Maps an HTTP request to a set of configuration variables",
  9976. "homepage": "https://symfony.com",
  9977. "keywords": [
  9978. "router",
  9979. "routing",
  9980. "uri",
  9981. "url"
  9982. ],
  9983. "support": {
  9984. "source": "https://github.com/symfony/routing/tree/v6.2.0"
  9985. },
  9986. "funding": [
  9987. {
  9988. "url": "https://symfony.com/sponsor",
  9989. "type": "custom"
  9990. },
  9991. {
  9992. "url": "https://github.com/fabpot",
  9993. "type": "github"
  9994. },
  9995. {
  9996. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9997. "type": "tidelift"
  9998. }
  9999. ],
  10000. "time": "2022-11-09T13:28:29+00:00"
  10001. },
  10002. {
  10003. "name": "symfony/service-contracts",
  10004. "version": "v3.1.1",
  10005. "source": {
  10006. "type": "git",
  10007. "url": "https://github.com/symfony/service-contracts.git",
  10008. "reference": "925e713fe8fcacf6bc05e936edd8dd5441a21239"
  10009. },
  10010. "dist": {
  10011. "type": "zip",
  10012. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/925e713fe8fcacf6bc05e936edd8dd5441a21239",
  10013. "reference": "925e713fe8fcacf6bc05e936edd8dd5441a21239",
  10014. "shasum": ""
  10015. },
  10016. "require": {
  10017. "php": ">=8.1",
  10018. "psr/container": "^2.0"
  10019. },
  10020. "conflict": {
  10021. "ext-psr": "<1.1|>=2"
  10022. },
  10023. "suggest": {
  10024. "symfony/service-implementation": ""
  10025. },
  10026. "type": "library",
  10027. "extra": {
  10028. "branch-alias": {
  10029. "dev-main": "3.1-dev"
  10030. },
  10031. "thanks": {
  10032. "name": "symfony/contracts",
  10033. "url": "https://github.com/symfony/contracts"
  10034. }
  10035. },
  10036. "autoload": {
  10037. "psr-4": {
  10038. "Symfony\\Contracts\\Service\\": ""
  10039. },
  10040. "exclude-from-classmap": [
  10041. "/Test/"
  10042. ]
  10043. },
  10044. "notification-url": "https://packagist.org/downloads/",
  10045. "license": [
  10046. "MIT"
  10047. ],
  10048. "authors": [
  10049. {
  10050. "name": "Nicolas Grekas",
  10051. "email": "p@tchwork.com"
  10052. },
  10053. {
  10054. "name": "Symfony Community",
  10055. "homepage": "https://symfony.com/contributors"
  10056. }
  10057. ],
  10058. "description": "Generic abstractions related to writing services",
  10059. "homepage": "https://symfony.com",
  10060. "keywords": [
  10061. "abstractions",
  10062. "contracts",
  10063. "decoupling",
  10064. "interfaces",
  10065. "interoperability",
  10066. "standards"
  10067. ],
  10068. "support": {
  10069. "source": "https://github.com/symfony/service-contracts/tree/v3.1.1"
  10070. },
  10071. "funding": [
  10072. {
  10073. "url": "https://symfony.com/sponsor",
  10074. "type": "custom"
  10075. },
  10076. {
  10077. "url": "https://github.com/fabpot",
  10078. "type": "github"
  10079. },
  10080. {
  10081. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10082. "type": "tidelift"
  10083. }
  10084. ],
  10085. "time": "2022-05-30T19:18:58+00:00"
  10086. },
  10087. {
  10088. "name": "symfony/string",
  10089. "version": "v6.2.0",
  10090. "source": {
  10091. "type": "git",
  10092. "url": "https://github.com/symfony/string.git",
  10093. "reference": "145702685e0d12f81d755c71127bfff7582fdd36"
  10094. },
  10095. "dist": {
  10096. "type": "zip",
  10097. "url": "https://api.github.com/repos/symfony/string/zipball/145702685e0d12f81d755c71127bfff7582fdd36",
  10098. "reference": "145702685e0d12f81d755c71127bfff7582fdd36",
  10099. "shasum": ""
  10100. },
  10101. "require": {
  10102. "php": ">=8.1",
  10103. "symfony/polyfill-ctype": "~1.8",
  10104. "symfony/polyfill-intl-grapheme": "~1.0",
  10105. "symfony/polyfill-intl-normalizer": "~1.0",
  10106. "symfony/polyfill-mbstring": "~1.0"
  10107. },
  10108. "conflict": {
  10109. "symfony/translation-contracts": "<2.0"
  10110. },
  10111. "require-dev": {
  10112. "symfony/error-handler": "^5.4|^6.0",
  10113. "symfony/http-client": "^5.4|^6.0",
  10114. "symfony/intl": "^6.2",
  10115. "symfony/translation-contracts": "^2.0|^3.0",
  10116. "symfony/var-exporter": "^5.4|^6.0"
  10117. },
  10118. "type": "library",
  10119. "autoload": {
  10120. "files": [
  10121. "Resources/functions.php"
  10122. ],
  10123. "psr-4": {
  10124. "Symfony\\Component\\String\\": ""
  10125. },
  10126. "exclude-from-classmap": [
  10127. "/Tests/"
  10128. ]
  10129. },
  10130. "notification-url": "https://packagist.org/downloads/",
  10131. "license": [
  10132. "MIT"
  10133. ],
  10134. "authors": [
  10135. {
  10136. "name": "Nicolas Grekas",
  10137. "email": "p@tchwork.com"
  10138. },
  10139. {
  10140. "name": "Symfony Community",
  10141. "homepage": "https://symfony.com/contributors"
  10142. }
  10143. ],
  10144. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  10145. "homepage": "https://symfony.com",
  10146. "keywords": [
  10147. "grapheme",
  10148. "i18n",
  10149. "string",
  10150. "unicode",
  10151. "utf-8",
  10152. "utf8"
  10153. ],
  10154. "support": {
  10155. "source": "https://github.com/symfony/string/tree/v6.2.0"
  10156. },
  10157. "funding": [
  10158. {
  10159. "url": "https://symfony.com/sponsor",
  10160. "type": "custom"
  10161. },
  10162. {
  10163. "url": "https://github.com/fabpot",
  10164. "type": "github"
  10165. },
  10166. {
  10167. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10168. "type": "tidelift"
  10169. }
  10170. ],
  10171. "time": "2022-11-30T17:13:47+00:00"
  10172. },
  10173. {
  10174. "name": "symfony/translation",
  10175. "version": "v6.2.0",
  10176. "source": {
  10177. "type": "git",
  10178. "url": "https://github.com/symfony/translation.git",
  10179. "reference": "c08de62caead8357244efcb809d0b1a2584f2198"
  10180. },
  10181. "dist": {
  10182. "type": "zip",
  10183. "url": "https://api.github.com/repos/symfony/translation/zipball/c08de62caead8357244efcb809d0b1a2584f2198",
  10184. "reference": "c08de62caead8357244efcb809d0b1a2584f2198",
  10185. "shasum": ""
  10186. },
  10187. "require": {
  10188. "php": ">=8.1",
  10189. "symfony/polyfill-mbstring": "~1.0",
  10190. "symfony/translation-contracts": "^2.3|^3.0"
  10191. },
  10192. "conflict": {
  10193. "symfony/config": "<5.4",
  10194. "symfony/console": "<5.4",
  10195. "symfony/dependency-injection": "<5.4",
  10196. "symfony/http-kernel": "<5.4",
  10197. "symfony/twig-bundle": "<5.4",
  10198. "symfony/yaml": "<5.4"
  10199. },
  10200. "provide": {
  10201. "symfony/translation-implementation": "2.3|3.0"
  10202. },
  10203. "require-dev": {
  10204. "nikic/php-parser": "^4.13",
  10205. "psr/log": "^1|^2|^3",
  10206. "symfony/config": "^5.4|^6.0",
  10207. "symfony/console": "^5.4|^6.0",
  10208. "symfony/dependency-injection": "^5.4|^6.0",
  10209. "symfony/finder": "^5.4|^6.0",
  10210. "symfony/http-client-contracts": "^1.1|^2.0|^3.0",
  10211. "symfony/http-kernel": "^5.4|^6.0",
  10212. "symfony/intl": "^5.4|^6.0",
  10213. "symfony/polyfill-intl-icu": "^1.21",
  10214. "symfony/routing": "^5.4|^6.0",
  10215. "symfony/service-contracts": "^1.1.2|^2|^3",
  10216. "symfony/yaml": "^5.4|^6.0"
  10217. },
  10218. "suggest": {
  10219. "nikic/php-parser": "To use PhpAstExtractor",
  10220. "psr/log-implementation": "To use logging capability in translator",
  10221. "symfony/config": "",
  10222. "symfony/yaml": ""
  10223. },
  10224. "type": "library",
  10225. "autoload": {
  10226. "files": [
  10227. "Resources/functions.php"
  10228. ],
  10229. "psr-4": {
  10230. "Symfony\\Component\\Translation\\": ""
  10231. },
  10232. "exclude-from-classmap": [
  10233. "/Tests/"
  10234. ]
  10235. },
  10236. "notification-url": "https://packagist.org/downloads/",
  10237. "license": [
  10238. "MIT"
  10239. ],
  10240. "authors": [
  10241. {
  10242. "name": "Fabien Potencier",
  10243. "email": "fabien@symfony.com"
  10244. },
  10245. {
  10246. "name": "Symfony Community",
  10247. "homepage": "https://symfony.com/contributors"
  10248. }
  10249. ],
  10250. "description": "Provides tools to internationalize your application",
  10251. "homepage": "https://symfony.com",
  10252. "support": {
  10253. "source": "https://github.com/symfony/translation/tree/v6.2.0"
  10254. },
  10255. "funding": [
  10256. {
  10257. "url": "https://symfony.com/sponsor",
  10258. "type": "custom"
  10259. },
  10260. {
  10261. "url": "https://github.com/fabpot",
  10262. "type": "github"
  10263. },
  10264. {
  10265. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10266. "type": "tidelift"
  10267. }
  10268. ],
  10269. "time": "2022-11-02T09:08:04+00:00"
  10270. },
  10271. {
  10272. "name": "symfony/translation-contracts",
  10273. "version": "v3.2.0",
  10274. "source": {
  10275. "type": "git",
  10276. "url": "https://github.com/symfony/translation-contracts.git",
  10277. "reference": "68cce71402305a015f8c1589bfada1280dc64fe7"
  10278. },
  10279. "dist": {
  10280. "type": "zip",
  10281. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/68cce71402305a015f8c1589bfada1280dc64fe7",
  10282. "reference": "68cce71402305a015f8c1589bfada1280dc64fe7",
  10283. "shasum": ""
  10284. },
  10285. "require": {
  10286. "php": ">=8.1"
  10287. },
  10288. "suggest": {
  10289. "symfony/translation-implementation": ""
  10290. },
  10291. "type": "library",
  10292. "extra": {
  10293. "branch-alias": {
  10294. "dev-main": "3.3-dev"
  10295. },
  10296. "thanks": {
  10297. "name": "symfony/contracts",
  10298. "url": "https://github.com/symfony/contracts"
  10299. }
  10300. },
  10301. "autoload": {
  10302. "psr-4": {
  10303. "Symfony\\Contracts\\Translation\\": ""
  10304. },
  10305. "exclude-from-classmap": [
  10306. "/Test/"
  10307. ]
  10308. },
  10309. "notification-url": "https://packagist.org/downloads/",
  10310. "license": [
  10311. "MIT"
  10312. ],
  10313. "authors": [
  10314. {
  10315. "name": "Nicolas Grekas",
  10316. "email": "p@tchwork.com"
  10317. },
  10318. {
  10319. "name": "Symfony Community",
  10320. "homepage": "https://symfony.com/contributors"
  10321. }
  10322. ],
  10323. "description": "Generic abstractions related to translation",
  10324. "homepage": "https://symfony.com",
  10325. "keywords": [
  10326. "abstractions",
  10327. "contracts",
  10328. "decoupling",
  10329. "interfaces",
  10330. "interoperability",
  10331. "standards"
  10332. ],
  10333. "support": {
  10334. "source": "https://github.com/symfony/translation-contracts/tree/v3.2.0"
  10335. },
  10336. "funding": [
  10337. {
  10338. "url": "https://symfony.com/sponsor",
  10339. "type": "custom"
  10340. },
  10341. {
  10342. "url": "https://github.com/fabpot",
  10343. "type": "github"
  10344. },
  10345. {
  10346. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10347. "type": "tidelift"
  10348. }
  10349. ],
  10350. "time": "2022-11-25T10:21:52+00:00"
  10351. },
  10352. {
  10353. "name": "symfony/uid",
  10354. "version": "v6.2.0",
  10355. "source": {
  10356. "type": "git",
  10357. "url": "https://github.com/symfony/uid.git",
  10358. "reference": "4f9f537e57261519808a7ce1d941490736522bbc"
  10359. },
  10360. "dist": {
  10361. "type": "zip",
  10362. "url": "https://api.github.com/repos/symfony/uid/zipball/4f9f537e57261519808a7ce1d941490736522bbc",
  10363. "reference": "4f9f537e57261519808a7ce1d941490736522bbc",
  10364. "shasum": ""
  10365. },
  10366. "require": {
  10367. "php": ">=8.1",
  10368. "symfony/polyfill-uuid": "^1.15"
  10369. },
  10370. "require-dev": {
  10371. "symfony/console": "^5.4|^6.0"
  10372. },
  10373. "type": "library",
  10374. "autoload": {
  10375. "psr-4": {
  10376. "Symfony\\Component\\Uid\\": ""
  10377. },
  10378. "exclude-from-classmap": [
  10379. "/Tests/"
  10380. ]
  10381. },
  10382. "notification-url": "https://packagist.org/downloads/",
  10383. "license": [
  10384. "MIT"
  10385. ],
  10386. "authors": [
  10387. {
  10388. "name": "Grégoire Pineau",
  10389. "email": "lyrixx@lyrixx.info"
  10390. },
  10391. {
  10392. "name": "Nicolas Grekas",
  10393. "email": "p@tchwork.com"
  10394. },
  10395. {
  10396. "name": "Symfony Community",
  10397. "homepage": "https://symfony.com/contributors"
  10398. }
  10399. ],
  10400. "description": "Provides an object-oriented API to generate and represent UIDs",
  10401. "homepage": "https://symfony.com",
  10402. "keywords": [
  10403. "UID",
  10404. "ulid",
  10405. "uuid"
  10406. ],
  10407. "support": {
  10408. "source": "https://github.com/symfony/uid/tree/v6.2.0"
  10409. },
  10410. "funding": [
  10411. {
  10412. "url": "https://symfony.com/sponsor",
  10413. "type": "custom"
  10414. },
  10415. {
  10416. "url": "https://github.com/fabpot",
  10417. "type": "github"
  10418. },
  10419. {
  10420. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10421. "type": "tidelift"
  10422. }
  10423. ],
  10424. "time": "2022-10-09T08:55:40+00:00"
  10425. },
  10426. {
  10427. "name": "symfony/var-dumper",
  10428. "version": "v6.2.1",
  10429. "source": {
  10430. "type": "git",
  10431. "url": "https://github.com/symfony/var-dumper.git",
  10432. "reference": "1e7544c8698627b908657e5276854d52ab70087a"
  10433. },
  10434. "dist": {
  10435. "type": "zip",
  10436. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/1e7544c8698627b908657e5276854d52ab70087a",
  10437. "reference": "1e7544c8698627b908657e5276854d52ab70087a",
  10438. "shasum": ""
  10439. },
  10440. "require": {
  10441. "php": ">=8.1",
  10442. "symfony/polyfill-mbstring": "~1.0"
  10443. },
  10444. "conflict": {
  10445. "phpunit/phpunit": "<5.4.3",
  10446. "symfony/console": "<5.4"
  10447. },
  10448. "require-dev": {
  10449. "ext-iconv": "*",
  10450. "symfony/console": "^5.4|^6.0",
  10451. "symfony/process": "^5.4|^6.0",
  10452. "symfony/uid": "^5.4|^6.0",
  10453. "twig/twig": "^2.13|^3.0.4"
  10454. },
  10455. "suggest": {
  10456. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  10457. "ext-intl": "To show region name in time zone dump",
  10458. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  10459. },
  10460. "bin": [
  10461. "Resources/bin/var-dump-server"
  10462. ],
  10463. "type": "library",
  10464. "autoload": {
  10465. "files": [
  10466. "Resources/functions/dump.php"
  10467. ],
  10468. "psr-4": {
  10469. "Symfony\\Component\\VarDumper\\": ""
  10470. },
  10471. "exclude-from-classmap": [
  10472. "/Tests/"
  10473. ]
  10474. },
  10475. "notification-url": "https://packagist.org/downloads/",
  10476. "license": [
  10477. "MIT"
  10478. ],
  10479. "authors": [
  10480. {
  10481. "name": "Nicolas Grekas",
  10482. "email": "p@tchwork.com"
  10483. },
  10484. {
  10485. "name": "Symfony Community",
  10486. "homepage": "https://symfony.com/contributors"
  10487. }
  10488. ],
  10489. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  10490. "homepage": "https://symfony.com",
  10491. "keywords": [
  10492. "debug",
  10493. "dump"
  10494. ],
  10495. "support": {
  10496. "source": "https://github.com/symfony/var-dumper/tree/v6.2.1"
  10497. },
  10498. "funding": [
  10499. {
  10500. "url": "https://symfony.com/sponsor",
  10501. "type": "custom"
  10502. },
  10503. {
  10504. "url": "https://github.com/fabpot",
  10505. "type": "github"
  10506. },
  10507. {
  10508. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10509. "type": "tidelift"
  10510. }
  10511. ],
  10512. "time": "2022-12-03T22:32:58+00:00"
  10513. },
  10514. {
  10515. "name": "symfony/var-exporter",
  10516. "version": "v6.2.1",
  10517. "source": {
  10518. "type": "git",
  10519. "url": "https://github.com/symfony/var-exporter.git",
  10520. "reference": "8a3f442d48567a5447e984ce9e86875ed768304a"
  10521. },
  10522. "dist": {
  10523. "type": "zip",
  10524. "url": "https://api.github.com/repos/symfony/var-exporter/zipball/8a3f442d48567a5447e984ce9e86875ed768304a",
  10525. "reference": "8a3f442d48567a5447e984ce9e86875ed768304a",
  10526. "shasum": ""
  10527. },
  10528. "require": {
  10529. "php": ">=8.1"
  10530. },
  10531. "require-dev": {
  10532. "symfony/var-dumper": "^5.4|^6.0"
  10533. },
  10534. "type": "library",
  10535. "autoload": {
  10536. "psr-4": {
  10537. "Symfony\\Component\\VarExporter\\": ""
  10538. },
  10539. "exclude-from-classmap": [
  10540. "/Tests/"
  10541. ]
  10542. },
  10543. "notification-url": "https://packagist.org/downloads/",
  10544. "license": [
  10545. "MIT"
  10546. ],
  10547. "authors": [
  10548. {
  10549. "name": "Nicolas Grekas",
  10550. "email": "p@tchwork.com"
  10551. },
  10552. {
  10553. "name": "Symfony Community",
  10554. "homepage": "https://symfony.com/contributors"
  10555. }
  10556. ],
  10557. "description": "Allows exporting any serializable PHP data structure to plain PHP code",
  10558. "homepage": "https://symfony.com",
  10559. "keywords": [
  10560. "clone",
  10561. "construct",
  10562. "export",
  10563. "hydrate",
  10564. "instantiate",
  10565. "lazy loading",
  10566. "proxy",
  10567. "serialize"
  10568. ],
  10569. "support": {
  10570. "source": "https://github.com/symfony/var-exporter/tree/v6.2.1"
  10571. },
  10572. "funding": [
  10573. {
  10574. "url": "https://symfony.com/sponsor",
  10575. "type": "custom"
  10576. },
  10577. {
  10578. "url": "https://github.com/fabpot",
  10579. "type": "github"
  10580. },
  10581. {
  10582. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10583. "type": "tidelift"
  10584. }
  10585. ],
  10586. "time": "2022-12-03T22:32:58+00:00"
  10587. },
  10588. {
  10589. "name": "tightenco/collect",
  10590. "version": "v5.6.33",
  10591. "source": {
  10592. "type": "git",
  10593. "url": "https://github.com/tighten/collect.git",
  10594. "reference": "d7381736dca44ac17d0805a25191b094e5a22446"
  10595. },
  10596. "dist": {
  10597. "type": "zip",
  10598. "url": "https://api.github.com/repos/tighten/collect/zipball/d7381736dca44ac17d0805a25191b094e5a22446",
  10599. "reference": "d7381736dca44ac17d0805a25191b094e5a22446",
  10600. "shasum": ""
  10601. },
  10602. "require": {
  10603. "php": ">=7.1.3",
  10604. "symfony/var-dumper": ">=3.1.10"
  10605. },
  10606. "require-dev": {
  10607. "mockery/mockery": "~1.0",
  10608. "nesbot/carbon": "~1.20",
  10609. "phpunit/phpunit": "~7.0"
  10610. },
  10611. "type": "library",
  10612. "autoload": {
  10613. "files": [
  10614. "src/Collect/Support/helpers.php",
  10615. "src/Collect/Support/alias.php"
  10616. ],
  10617. "psr-4": {
  10618. "Tightenco\\Collect\\": "src/Collect"
  10619. }
  10620. },
  10621. "notification-url": "https://packagist.org/downloads/",
  10622. "license": [
  10623. "MIT"
  10624. ],
  10625. "authors": [
  10626. {
  10627. "name": "Taylor Otwell",
  10628. "email": "taylorotwell@gmail.com"
  10629. }
  10630. ],
  10631. "description": "Collect - Illuminate Collections as a separate package.",
  10632. "keywords": [
  10633. "collection",
  10634. "laravel"
  10635. ],
  10636. "support": {
  10637. "issues": "https://github.com/tighten/collect/issues",
  10638. "source": "https://github.com/tighten/collect/tree/v5.6.33"
  10639. },
  10640. "time": "2018-08-09T16:56:26+00:00"
  10641. },
  10642. {
  10643. "name": "tijsverkoyen/css-to-inline-styles",
  10644. "version": "2.2.5",
  10645. "source": {
  10646. "type": "git",
  10647. "url": "https://github.com/tijsverkoyen/CssToInlineStyles.git",
  10648. "reference": "4348a3a06651827a27d989ad1d13efec6bb49b19"
  10649. },
  10650. "dist": {
  10651. "type": "zip",
  10652. "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/4348a3a06651827a27d989ad1d13efec6bb49b19",
  10653. "reference": "4348a3a06651827a27d989ad1d13efec6bb49b19",
  10654. "shasum": ""
  10655. },
  10656. "require": {
  10657. "ext-dom": "*",
  10658. "ext-libxml": "*",
  10659. "php": "^5.5 || ^7.0 || ^8.0",
  10660. "symfony/css-selector": "^2.7 || ^3.0 || ^4.0 || ^5.0 || ^6.0"
  10661. },
  10662. "require-dev": {
  10663. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0 || ^7.5 || ^8.5.21 || ^9.5.10"
  10664. },
  10665. "type": "library",
  10666. "extra": {
  10667. "branch-alias": {
  10668. "dev-master": "2.2.x-dev"
  10669. }
  10670. },
  10671. "autoload": {
  10672. "psr-4": {
  10673. "TijsVerkoyen\\CssToInlineStyles\\": "src"
  10674. }
  10675. },
  10676. "notification-url": "https://packagist.org/downloads/",
  10677. "license": [
  10678. "BSD-3-Clause"
  10679. ],
  10680. "authors": [
  10681. {
  10682. "name": "Tijs Verkoyen",
  10683. "email": "css_to_inline_styles@verkoyen.eu",
  10684. "role": "Developer"
  10685. }
  10686. ],
  10687. "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.",
  10688. "homepage": "https://github.com/tijsverkoyen/CssToInlineStyles",
  10689. "support": {
  10690. "issues": "https://github.com/tijsverkoyen/CssToInlineStyles/issues",
  10691. "source": "https://github.com/tijsverkoyen/CssToInlineStyles/tree/2.2.5"
  10692. },
  10693. "time": "2022-09-12T13:28:28+00:00"
  10694. },
  10695. {
  10696. "name": "vlucas/phpdotenv",
  10697. "version": "v5.5.0",
  10698. "source": {
  10699. "type": "git",
  10700. "url": "https://github.com/vlucas/phpdotenv.git",
  10701. "reference": "1a7ea2afc49c3ee6d87061f5a233e3a035d0eae7"
  10702. },
  10703. "dist": {
  10704. "type": "zip",
  10705. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/1a7ea2afc49c3ee6d87061f5a233e3a035d0eae7",
  10706. "reference": "1a7ea2afc49c3ee6d87061f5a233e3a035d0eae7",
  10707. "shasum": ""
  10708. },
  10709. "require": {
  10710. "ext-pcre": "*",
  10711. "graham-campbell/result-type": "^1.0.2",
  10712. "php": "^7.1.3 || ^8.0",
  10713. "phpoption/phpoption": "^1.8",
  10714. "symfony/polyfill-ctype": "^1.23",
  10715. "symfony/polyfill-mbstring": "^1.23.1",
  10716. "symfony/polyfill-php80": "^1.23.1"
  10717. },
  10718. "require-dev": {
  10719. "bamarni/composer-bin-plugin": "^1.4.1",
  10720. "ext-filter": "*",
  10721. "phpunit/phpunit": "^7.5.20 || ^8.5.30 || ^9.5.25"
  10722. },
  10723. "suggest": {
  10724. "ext-filter": "Required to use the boolean validator."
  10725. },
  10726. "type": "library",
  10727. "extra": {
  10728. "bamarni-bin": {
  10729. "bin-links": true,
  10730. "forward-command": true
  10731. },
  10732. "branch-alias": {
  10733. "dev-master": "5.5-dev"
  10734. }
  10735. },
  10736. "autoload": {
  10737. "psr-4": {
  10738. "Dotenv\\": "src/"
  10739. }
  10740. },
  10741. "notification-url": "https://packagist.org/downloads/",
  10742. "license": [
  10743. "BSD-3-Clause"
  10744. ],
  10745. "authors": [
  10746. {
  10747. "name": "Graham Campbell",
  10748. "email": "hello@gjcampbell.co.uk",
  10749. "homepage": "https://github.com/GrahamCampbell"
  10750. },
  10751. {
  10752. "name": "Vance Lucas",
  10753. "email": "vance@vancelucas.com",
  10754. "homepage": "https://github.com/vlucas"
  10755. }
  10756. ],
  10757. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  10758. "keywords": [
  10759. "dotenv",
  10760. "env",
  10761. "environment"
  10762. ],
  10763. "support": {
  10764. "issues": "https://github.com/vlucas/phpdotenv/issues",
  10765. "source": "https://github.com/vlucas/phpdotenv/tree/v5.5.0"
  10766. },
  10767. "funding": [
  10768. {
  10769. "url": "https://github.com/GrahamCampbell",
  10770. "type": "github"
  10771. },
  10772. {
  10773. "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
  10774. "type": "tidelift"
  10775. }
  10776. ],
  10777. "time": "2022-10-16T01:01:54+00:00"
  10778. },
  10779. {
  10780. "name": "voku/portable-ascii",
  10781. "version": "2.0.1",
  10782. "source": {
  10783. "type": "git",
  10784. "url": "https://github.com/voku/portable-ascii.git",
  10785. "reference": "b56450eed252f6801410d810c8e1727224ae0743"
  10786. },
  10787. "dist": {
  10788. "type": "zip",
  10789. "url": "https://api.github.com/repos/voku/portable-ascii/zipball/b56450eed252f6801410d810c8e1727224ae0743",
  10790. "reference": "b56450eed252f6801410d810c8e1727224ae0743",
  10791. "shasum": ""
  10792. },
  10793. "require": {
  10794. "php": ">=7.0.0"
  10795. },
  10796. "require-dev": {
  10797. "phpunit/phpunit": "~6.0 || ~7.0 || ~9.0"
  10798. },
  10799. "suggest": {
  10800. "ext-intl": "Use Intl for transliterator_transliterate() support"
  10801. },
  10802. "type": "library",
  10803. "autoload": {
  10804. "psr-4": {
  10805. "voku\\": "src/voku/"
  10806. }
  10807. },
  10808. "notification-url": "https://packagist.org/downloads/",
  10809. "license": [
  10810. "MIT"
  10811. ],
  10812. "authors": [
  10813. {
  10814. "name": "Lars Moelleken",
  10815. "homepage": "http://www.moelleken.org/"
  10816. }
  10817. ],
  10818. "description": "Portable ASCII library - performance optimized (ascii) string functions for php.",
  10819. "homepage": "https://github.com/voku/portable-ascii",
  10820. "keywords": [
  10821. "ascii",
  10822. "clean",
  10823. "php"
  10824. ],
  10825. "support": {
  10826. "issues": "https://github.com/voku/portable-ascii/issues",
  10827. "source": "https://github.com/voku/portable-ascii/tree/2.0.1"
  10828. },
  10829. "funding": [
  10830. {
  10831. "url": "https://www.paypal.me/moelleken",
  10832. "type": "custom"
  10833. },
  10834. {
  10835. "url": "https://github.com/voku",
  10836. "type": "github"
  10837. },
  10838. {
  10839. "url": "https://opencollective.com/portable-ascii",
  10840. "type": "open_collective"
  10841. },
  10842. {
  10843. "url": "https://www.patreon.com/voku",
  10844. "type": "patreon"
  10845. },
  10846. {
  10847. "url": "https://tidelift.com/funding/github/packagist/voku/portable-ascii",
  10848. "type": "tidelift"
  10849. }
  10850. ],
  10851. "time": "2022-03-08T17:03:00+00:00"
  10852. },
  10853. {
  10854. "name": "webmozart/assert",
  10855. "version": "1.11.0",
  10856. "source": {
  10857. "type": "git",
  10858. "url": "https://github.com/webmozarts/assert.git",
  10859. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991"
  10860. },
  10861. "dist": {
  10862. "type": "zip",
  10863. "url": "https://api.github.com/repos/webmozarts/assert/zipball/11cb2199493b2f8a3b53e7f19068fc6aac760991",
  10864. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991",
  10865. "shasum": ""
  10866. },
  10867. "require": {
  10868. "ext-ctype": "*",
  10869. "php": "^7.2 || ^8.0"
  10870. },
  10871. "conflict": {
  10872. "phpstan/phpstan": "<0.12.20",
  10873. "vimeo/psalm": "<4.6.1 || 4.6.2"
  10874. },
  10875. "require-dev": {
  10876. "phpunit/phpunit": "^8.5.13"
  10877. },
  10878. "type": "library",
  10879. "extra": {
  10880. "branch-alias": {
  10881. "dev-master": "1.10-dev"
  10882. }
  10883. },
  10884. "autoload": {
  10885. "psr-4": {
  10886. "Webmozart\\Assert\\": "src/"
  10887. }
  10888. },
  10889. "notification-url": "https://packagist.org/downloads/",
  10890. "license": [
  10891. "MIT"
  10892. ],
  10893. "authors": [
  10894. {
  10895. "name": "Bernhard Schussek",
  10896. "email": "bschussek@gmail.com"
  10897. }
  10898. ],
  10899. "description": "Assertions to validate method input/output with nice error messages.",
  10900. "keywords": [
  10901. "assert",
  10902. "check",
  10903. "validate"
  10904. ],
  10905. "support": {
  10906. "issues": "https://github.com/webmozarts/assert/issues",
  10907. "source": "https://github.com/webmozarts/assert/tree/1.11.0"
  10908. },
  10909. "time": "2022-06-03T18:03:27+00:00"
  10910. }
  10911. ],
  10912. "packages-dev": [
  10913. {
  10914. "name": "brianium/paratest",
  10915. "version": "v6.7.0",
  10916. "source": {
  10917. "type": "git",
  10918. "url": "https://github.com/paratestphp/paratest.git",
  10919. "reference": "1db5cc12deaf5f32c41ee0713b79021ad418f8fe"
  10920. },
  10921. "dist": {
  10922. "type": "zip",
  10923. "url": "https://api.github.com/repos/paratestphp/paratest/zipball/1db5cc12deaf5f32c41ee0713b79021ad418f8fe",
  10924. "reference": "1db5cc12deaf5f32c41ee0713b79021ad418f8fe",
  10925. "shasum": ""
  10926. },
  10927. "require": {
  10928. "ext-dom": "*",
  10929. "ext-pcre": "*",
  10930. "ext-reflection": "*",
  10931. "ext-simplexml": "*",
  10932. "fidry/cpu-core-counter": "^0.4.0",
  10933. "jean85/pretty-package-versions": "^2.0.5",
  10934. "php": "^7.3 || ^8.0",
  10935. "phpunit/php-code-coverage": "^9.2.19",
  10936. "phpunit/php-file-iterator": "^3.0.6",
  10937. "phpunit/php-timer": "^5.0.3",
  10938. "phpunit/phpunit": "^9.5.27",
  10939. "sebastian/environment": "^5.1.4",
  10940. "symfony/console": "^5.4.16 || ^6.2.1",
  10941. "symfony/process": "^5.4.11 || ^6.2"
  10942. },
  10943. "require-dev": {
  10944. "doctrine/coding-standard": "^10.0.0",
  10945. "ext-pcov": "*",
  10946. "ext-posix": "*",
  10947. "infection/infection": "^0.26.16",
  10948. "squizlabs/php_codesniffer": "^3.7.1",
  10949. "symfony/filesystem": "^5.4.13 || ^6.2",
  10950. "vimeo/psalm": "^5.1"
  10951. },
  10952. "bin": [
  10953. "bin/paratest",
  10954. "bin/paratest.bat",
  10955. "bin/paratest_for_phpstorm"
  10956. ],
  10957. "type": "library",
  10958. "autoload": {
  10959. "psr-4": {
  10960. "ParaTest\\": [
  10961. "src/"
  10962. ]
  10963. }
  10964. },
  10965. "notification-url": "https://packagist.org/downloads/",
  10966. "license": [
  10967. "MIT"
  10968. ],
  10969. "authors": [
  10970. {
  10971. "name": "Brian Scaturro",
  10972. "email": "scaturrob@gmail.com",
  10973. "role": "Developer"
  10974. },
  10975. {
  10976. "name": "Filippo Tessarotto",
  10977. "email": "zoeslam@gmail.com",
  10978. "role": "Developer"
  10979. }
  10980. ],
  10981. "description": "Parallel testing for PHP",
  10982. "homepage": "https://github.com/paratestphp/paratest",
  10983. "keywords": [
  10984. "concurrent",
  10985. "parallel",
  10986. "phpunit",
  10987. "testing"
  10988. ],
  10989. "support": {
  10990. "issues": "https://github.com/paratestphp/paratest/issues",
  10991. "source": "https://github.com/paratestphp/paratest/tree/v6.7.0"
  10992. },
  10993. "funding": [
  10994. {
  10995. "url": "https://github.com/sponsors/Slamdunk",
  10996. "type": "github"
  10997. },
  10998. {
  10999. "url": "https://paypal.me/filippotessarotto",
  11000. "type": "paypal"
  11001. }
  11002. ],
  11003. "time": "2022-12-12T07:32:08+00:00"
  11004. },
  11005. {
  11006. "name": "doctrine/instantiator",
  11007. "version": "1.4.1",
  11008. "source": {
  11009. "type": "git",
  11010. "url": "https://github.com/doctrine/instantiator.git",
  11011. "reference": "10dcfce151b967d20fde1b34ae6640712c3891bc"
  11012. },
  11013. "dist": {
  11014. "type": "zip",
  11015. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/10dcfce151b967d20fde1b34ae6640712c3891bc",
  11016. "reference": "10dcfce151b967d20fde1b34ae6640712c3891bc",
  11017. "shasum": ""
  11018. },
  11019. "require": {
  11020. "php": "^7.1 || ^8.0"
  11021. },
  11022. "require-dev": {
  11023. "doctrine/coding-standard": "^9",
  11024. "ext-pdo": "*",
  11025. "ext-phar": "*",
  11026. "phpbench/phpbench": "^0.16 || ^1",
  11027. "phpstan/phpstan": "^1.4",
  11028. "phpstan/phpstan-phpunit": "^1",
  11029. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  11030. "vimeo/psalm": "^4.22"
  11031. },
  11032. "type": "library",
  11033. "autoload": {
  11034. "psr-4": {
  11035. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  11036. }
  11037. },
  11038. "notification-url": "https://packagist.org/downloads/",
  11039. "license": [
  11040. "MIT"
  11041. ],
  11042. "authors": [
  11043. {
  11044. "name": "Marco Pivetta",
  11045. "email": "ocramius@gmail.com",
  11046. "homepage": "https://ocramius.github.io/"
  11047. }
  11048. ],
  11049. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  11050. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  11051. "keywords": [
  11052. "constructor",
  11053. "instantiate"
  11054. ],
  11055. "support": {
  11056. "issues": "https://github.com/doctrine/instantiator/issues",
  11057. "source": "https://github.com/doctrine/instantiator/tree/1.4.1"
  11058. },
  11059. "funding": [
  11060. {
  11061. "url": "https://www.doctrine-project.org/sponsorship.html",
  11062. "type": "custom"
  11063. },
  11064. {
  11065. "url": "https://www.patreon.com/phpdoctrine",
  11066. "type": "patreon"
  11067. },
  11068. {
  11069. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
  11070. "type": "tidelift"
  11071. }
  11072. ],
  11073. "time": "2022-03-03T08:28:38+00:00"
  11074. },
  11075. {
  11076. "name": "fakerphp/faker",
  11077. "version": "v1.20.0",
  11078. "source": {
  11079. "type": "git",
  11080. "url": "https://github.com/FakerPHP/Faker.git",
  11081. "reference": "37f751c67a5372d4e26353bd9384bc03744ec77b"
  11082. },
  11083. "dist": {
  11084. "type": "zip",
  11085. "url": "https://api.github.com/repos/FakerPHP/Faker/zipball/37f751c67a5372d4e26353bd9384bc03744ec77b",
  11086. "reference": "37f751c67a5372d4e26353bd9384bc03744ec77b",
  11087. "shasum": ""
  11088. },
  11089. "require": {
  11090. "php": "^7.1 || ^8.0",
  11091. "psr/container": "^1.0 || ^2.0",
  11092. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  11093. },
  11094. "conflict": {
  11095. "fzaninotto/faker": "*"
  11096. },
  11097. "require-dev": {
  11098. "bamarni/composer-bin-plugin": "^1.4.1",
  11099. "doctrine/persistence": "^1.3 || ^2.0",
  11100. "ext-intl": "*",
  11101. "symfony/phpunit-bridge": "^4.4 || ^5.2"
  11102. },
  11103. "suggest": {
  11104. "doctrine/orm": "Required to use Faker\\ORM\\Doctrine",
  11105. "ext-curl": "Required by Faker\\Provider\\Image to download images.",
  11106. "ext-dom": "Required by Faker\\Provider\\HtmlLorem for generating random HTML.",
  11107. "ext-iconv": "Required by Faker\\Provider\\ru_RU\\Text::realText() for generating real Russian text.",
  11108. "ext-mbstring": "Required for multibyte Unicode string functionality."
  11109. },
  11110. "type": "library",
  11111. "extra": {
  11112. "branch-alias": {
  11113. "dev-main": "v1.20-dev"
  11114. }
  11115. },
  11116. "autoload": {
  11117. "psr-4": {
  11118. "Faker\\": "src/Faker/"
  11119. }
  11120. },
  11121. "notification-url": "https://packagist.org/downloads/",
  11122. "license": [
  11123. "MIT"
  11124. ],
  11125. "authors": [
  11126. {
  11127. "name": "François Zaninotto"
  11128. }
  11129. ],
  11130. "description": "Faker is a PHP library that generates fake data for you.",
  11131. "keywords": [
  11132. "data",
  11133. "faker",
  11134. "fixtures"
  11135. ],
  11136. "support": {
  11137. "issues": "https://github.com/FakerPHP/Faker/issues",
  11138. "source": "https://github.com/FakerPHP/Faker/tree/v1.20.0"
  11139. },
  11140. "time": "2022-07-20T13:12:54+00:00"
  11141. },
  11142. {
  11143. "name": "fidry/cpu-core-counter",
  11144. "version": "0.4.0",
  11145. "source": {
  11146. "type": "git",
  11147. "url": "https://github.com/theofidry/cpu-core-counter.git",
  11148. "reference": "666cb04a02f2801f3b19955fc23c824f9018bf64"
  11149. },
  11150. "dist": {
  11151. "type": "zip",
  11152. "url": "https://api.github.com/repos/theofidry/cpu-core-counter/zipball/666cb04a02f2801f3b19955fc23c824f9018bf64",
  11153. "reference": "666cb04a02f2801f3b19955fc23c824f9018bf64",
  11154. "shasum": ""
  11155. },
  11156. "require": {
  11157. "php": "^7.2 || ^8.0"
  11158. },
  11159. "require-dev": {
  11160. "fidry/makefile": "^0.2.0",
  11161. "phpstan/extension-installer": "^1.2.0",
  11162. "phpstan/phpstan": "^1.9.2",
  11163. "phpstan/phpstan-deprecation-rules": "^1.0.0",
  11164. "phpstan/phpstan-phpunit": "^1.2.2",
  11165. "phpstan/phpstan-strict-rules": "^1.4.4",
  11166. "phpunit/phpunit": "^9.5.26 || ^8.5.31",
  11167. "theofidry/php-cs-fixer-config": "^1.0",
  11168. "webmozarts/strict-phpunit": "^7.5"
  11169. },
  11170. "type": "library",
  11171. "autoload": {
  11172. "psr-4": {
  11173. "Fidry\\CpuCoreCounter\\": "src/"
  11174. }
  11175. },
  11176. "notification-url": "https://packagist.org/downloads/",
  11177. "license": [
  11178. "MIT"
  11179. ],
  11180. "authors": [
  11181. {
  11182. "name": "Théo FIDRY",
  11183. "email": "theo.fidry@gmail.com"
  11184. }
  11185. ],
  11186. "description": "Tiny utility to get the number of CPU cores.",
  11187. "keywords": [
  11188. "CPU",
  11189. "core"
  11190. ],
  11191. "support": {
  11192. "issues": "https://github.com/theofidry/cpu-core-counter/issues",
  11193. "source": "https://github.com/theofidry/cpu-core-counter/tree/0.4.0"
  11194. },
  11195. "funding": [
  11196. {
  11197. "url": "https://github.com/theofidry",
  11198. "type": "github"
  11199. }
  11200. ],
  11201. "time": "2022-12-10T21:26:31+00:00"
  11202. },
  11203. {
  11204. "name": "filp/whoops",
  11205. "version": "2.14.6",
  11206. "source": {
  11207. "type": "git",
  11208. "url": "https://github.com/filp/whoops.git",
  11209. "reference": "f7948baaa0330277c729714910336383286305da"
  11210. },
  11211. "dist": {
  11212. "type": "zip",
  11213. "url": "https://api.github.com/repos/filp/whoops/zipball/f7948baaa0330277c729714910336383286305da",
  11214. "reference": "f7948baaa0330277c729714910336383286305da",
  11215. "shasum": ""
  11216. },
  11217. "require": {
  11218. "php": "^5.5.9 || ^7.0 || ^8.0",
  11219. "psr/log": "^1.0.1 || ^2.0 || ^3.0"
  11220. },
  11221. "require-dev": {
  11222. "mockery/mockery": "^0.9 || ^1.0",
  11223. "phpunit/phpunit": "^4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.3",
  11224. "symfony/var-dumper": "^2.6 || ^3.0 || ^4.0 || ^5.0"
  11225. },
  11226. "suggest": {
  11227. "symfony/var-dumper": "Pretty print complex values better with var-dumper available",
  11228. "whoops/soap": "Formats errors as SOAP responses"
  11229. },
  11230. "type": "library",
  11231. "extra": {
  11232. "branch-alias": {
  11233. "dev-master": "2.7-dev"
  11234. }
  11235. },
  11236. "autoload": {
  11237. "psr-4": {
  11238. "Whoops\\": "src/Whoops/"
  11239. }
  11240. },
  11241. "notification-url": "https://packagist.org/downloads/",
  11242. "license": [
  11243. "MIT"
  11244. ],
  11245. "authors": [
  11246. {
  11247. "name": "Filipe Dobreira",
  11248. "homepage": "https://github.com/filp",
  11249. "role": "Developer"
  11250. }
  11251. ],
  11252. "description": "php error handling for cool kids",
  11253. "homepage": "https://filp.github.io/whoops/",
  11254. "keywords": [
  11255. "error",
  11256. "exception",
  11257. "handling",
  11258. "library",
  11259. "throwable",
  11260. "whoops"
  11261. ],
  11262. "support": {
  11263. "issues": "https://github.com/filp/whoops/issues",
  11264. "source": "https://github.com/filp/whoops/tree/2.14.6"
  11265. },
  11266. "funding": [
  11267. {
  11268. "url": "https://github.com/denis-sokolov",
  11269. "type": "github"
  11270. }
  11271. ],
  11272. "time": "2022-11-02T16:23:29+00:00"
  11273. },
  11274. {
  11275. "name": "hamcrest/hamcrest-php",
  11276. "version": "v2.0.1",
  11277. "source": {
  11278. "type": "git",
  11279. "url": "https://github.com/hamcrest/hamcrest-php.git",
  11280. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3"
  11281. },
  11282. "dist": {
  11283. "type": "zip",
  11284. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  11285. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  11286. "shasum": ""
  11287. },
  11288. "require": {
  11289. "php": "^5.3|^7.0|^8.0"
  11290. },
  11291. "replace": {
  11292. "cordoval/hamcrest-php": "*",
  11293. "davedevelopment/hamcrest-php": "*",
  11294. "kodova/hamcrest-php": "*"
  11295. },
  11296. "require-dev": {
  11297. "phpunit/php-file-iterator": "^1.4 || ^2.0",
  11298. "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0"
  11299. },
  11300. "type": "library",
  11301. "extra": {
  11302. "branch-alias": {
  11303. "dev-master": "2.1-dev"
  11304. }
  11305. },
  11306. "autoload": {
  11307. "classmap": [
  11308. "hamcrest"
  11309. ]
  11310. },
  11311. "notification-url": "https://packagist.org/downloads/",
  11312. "license": [
  11313. "BSD-3-Clause"
  11314. ],
  11315. "description": "This is the PHP port of Hamcrest Matchers",
  11316. "keywords": [
  11317. "test"
  11318. ],
  11319. "support": {
  11320. "issues": "https://github.com/hamcrest/hamcrest-php/issues",
  11321. "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.0.1"
  11322. },
  11323. "time": "2020-07-09T08:09:16+00:00"
  11324. },
  11325. {
  11326. "name": "jean85/pretty-package-versions",
  11327. "version": "2.0.5",
  11328. "source": {
  11329. "type": "git",
  11330. "url": "https://github.com/Jean85/pretty-package-versions.git",
  11331. "reference": "ae547e455a3d8babd07b96966b17d7fd21d9c6af"
  11332. },
  11333. "dist": {
  11334. "type": "zip",
  11335. "url": "https://api.github.com/repos/Jean85/pretty-package-versions/zipball/ae547e455a3d8babd07b96966b17d7fd21d9c6af",
  11336. "reference": "ae547e455a3d8babd07b96966b17d7fd21d9c6af",
  11337. "shasum": ""
  11338. },
  11339. "require": {
  11340. "composer-runtime-api": "^2.0.0",
  11341. "php": "^7.1|^8.0"
  11342. },
  11343. "require-dev": {
  11344. "friendsofphp/php-cs-fixer": "^2.17",
  11345. "jean85/composer-provided-replaced-stub-package": "^1.0",
  11346. "phpstan/phpstan": "^0.12.66",
  11347. "phpunit/phpunit": "^7.5|^8.5|^9.4",
  11348. "vimeo/psalm": "^4.3"
  11349. },
  11350. "type": "library",
  11351. "extra": {
  11352. "branch-alias": {
  11353. "dev-master": "1.x-dev"
  11354. }
  11355. },
  11356. "autoload": {
  11357. "psr-4": {
  11358. "Jean85\\": "src/"
  11359. }
  11360. },
  11361. "notification-url": "https://packagist.org/downloads/",
  11362. "license": [
  11363. "MIT"
  11364. ],
  11365. "authors": [
  11366. {
  11367. "name": "Alessandro Lai",
  11368. "email": "alessandro.lai85@gmail.com"
  11369. }
  11370. ],
  11371. "description": "A library to get pretty versions strings of installed dependencies",
  11372. "keywords": [
  11373. "composer",
  11374. "package",
  11375. "release",
  11376. "versions"
  11377. ],
  11378. "support": {
  11379. "issues": "https://github.com/Jean85/pretty-package-versions/issues",
  11380. "source": "https://github.com/Jean85/pretty-package-versions/tree/2.0.5"
  11381. },
  11382. "time": "2021-10-08T21:21:46+00:00"
  11383. },
  11384. {
  11385. "name": "laravel/telescope",
  11386. "version": "v4.10.0",
  11387. "source": {
  11388. "type": "git",
  11389. "url": "https://github.com/laravel/telescope.git",
  11390. "reference": "e4b16dd22db3e8a8b52e3a03343b11ffcee2aaaa"
  11391. },
  11392. "dist": {
  11393. "type": "zip",
  11394. "url": "https://api.github.com/repos/laravel/telescope/zipball/e4b16dd22db3e8a8b52e3a03343b11ffcee2aaaa",
  11395. "reference": "e4b16dd22db3e8a8b52e3a03343b11ffcee2aaaa",
  11396. "shasum": ""
  11397. },
  11398. "require": {
  11399. "ext-json": "*",
  11400. "laravel/framework": "^8.37|^9.0",
  11401. "php": "^7.3|^8.0",
  11402. "symfony/var-dumper": "^5.0|^6.0"
  11403. },
  11404. "require-dev": {
  11405. "ext-gd": "*",
  11406. "guzzlehttp/guzzle": "^6.0|^7.0",
  11407. "orchestra/testbench": "^6.0|^7.0"
  11408. },
  11409. "type": "library",
  11410. "extra": {
  11411. "branch-alias": {
  11412. "dev-master": "4.x-dev"
  11413. },
  11414. "laravel": {
  11415. "providers": [
  11416. "Laravel\\Telescope\\TelescopeServiceProvider"
  11417. ]
  11418. }
  11419. },
  11420. "autoload": {
  11421. "psr-4": {
  11422. "Laravel\\Telescope\\": "src/",
  11423. "Laravel\\Telescope\\Database\\Factories\\": "database/factories/"
  11424. }
  11425. },
  11426. "notification-url": "https://packagist.org/downloads/",
  11427. "license": [
  11428. "MIT"
  11429. ],
  11430. "authors": [
  11431. {
  11432. "name": "Taylor Otwell",
  11433. "email": "taylor@laravel.com"
  11434. },
  11435. {
  11436. "name": "Mohamed Said",
  11437. "email": "mohamed@laravel.com"
  11438. }
  11439. ],
  11440. "description": "An elegant debug assistant for the Laravel framework.",
  11441. "keywords": [
  11442. "debugging",
  11443. "laravel",
  11444. "monitoring"
  11445. ],
  11446. "support": {
  11447. "issues": "https://github.com/laravel/telescope/issues",
  11448. "source": "https://github.com/laravel/telescope/tree/v4.10.0"
  11449. },
  11450. "time": "2022-12-05T15:34:49+00:00"
  11451. },
  11452. {
  11453. "name": "mockery/mockery",
  11454. "version": "1.5.1",
  11455. "source": {
  11456. "type": "git",
  11457. "url": "https://github.com/mockery/mockery.git",
  11458. "reference": "e92dcc83d5a51851baf5f5591d32cb2b16e3684e"
  11459. },
  11460. "dist": {
  11461. "type": "zip",
  11462. "url": "https://api.github.com/repos/mockery/mockery/zipball/e92dcc83d5a51851baf5f5591d32cb2b16e3684e",
  11463. "reference": "e92dcc83d5a51851baf5f5591d32cb2b16e3684e",
  11464. "shasum": ""
  11465. },
  11466. "require": {
  11467. "hamcrest/hamcrest-php": "^2.0.1",
  11468. "lib-pcre": ">=7.0",
  11469. "php": "^7.3 || ^8.0"
  11470. },
  11471. "conflict": {
  11472. "phpunit/phpunit": "<8.0"
  11473. },
  11474. "require-dev": {
  11475. "phpunit/phpunit": "^8.5 || ^9.3"
  11476. },
  11477. "type": "library",
  11478. "extra": {
  11479. "branch-alias": {
  11480. "dev-master": "1.4.x-dev"
  11481. }
  11482. },
  11483. "autoload": {
  11484. "psr-0": {
  11485. "Mockery": "library/"
  11486. }
  11487. },
  11488. "notification-url": "https://packagist.org/downloads/",
  11489. "license": [
  11490. "BSD-3-Clause"
  11491. ],
  11492. "authors": [
  11493. {
  11494. "name": "Pádraic Brady",
  11495. "email": "padraic.brady@gmail.com",
  11496. "homepage": "http://blog.astrumfutura.com"
  11497. },
  11498. {
  11499. "name": "Dave Marshall",
  11500. "email": "dave.marshall@atstsolutions.co.uk",
  11501. "homepage": "http://davedevelopment.co.uk"
  11502. }
  11503. ],
  11504. "description": "Mockery is a simple yet flexible PHP mock object framework",
  11505. "homepage": "https://github.com/mockery/mockery",
  11506. "keywords": [
  11507. "BDD",
  11508. "TDD",
  11509. "library",
  11510. "mock",
  11511. "mock objects",
  11512. "mockery",
  11513. "stub",
  11514. "test",
  11515. "test double",
  11516. "testing"
  11517. ],
  11518. "support": {
  11519. "issues": "https://github.com/mockery/mockery/issues",
  11520. "source": "https://github.com/mockery/mockery/tree/1.5.1"
  11521. },
  11522. "time": "2022-09-07T15:32:08+00:00"
  11523. },
  11524. {
  11525. "name": "myclabs/deep-copy",
  11526. "version": "1.11.0",
  11527. "source": {
  11528. "type": "git",
  11529. "url": "https://github.com/myclabs/DeepCopy.git",
  11530. "reference": "14daed4296fae74d9e3201d2c4925d1acb7aa614"
  11531. },
  11532. "dist": {
  11533. "type": "zip",
  11534. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/14daed4296fae74d9e3201d2c4925d1acb7aa614",
  11535. "reference": "14daed4296fae74d9e3201d2c4925d1acb7aa614",
  11536. "shasum": ""
  11537. },
  11538. "require": {
  11539. "php": "^7.1 || ^8.0"
  11540. },
  11541. "conflict": {
  11542. "doctrine/collections": "<1.6.8",
  11543. "doctrine/common": "<2.13.3 || >=3,<3.2.2"
  11544. },
  11545. "require-dev": {
  11546. "doctrine/collections": "^1.6.8",
  11547. "doctrine/common": "^2.13.3 || ^3.2.2",
  11548. "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
  11549. },
  11550. "type": "library",
  11551. "autoload": {
  11552. "files": [
  11553. "src/DeepCopy/deep_copy.php"
  11554. ],
  11555. "psr-4": {
  11556. "DeepCopy\\": "src/DeepCopy/"
  11557. }
  11558. },
  11559. "notification-url": "https://packagist.org/downloads/",
  11560. "license": [
  11561. "MIT"
  11562. ],
  11563. "description": "Create deep copies (clones) of your objects",
  11564. "keywords": [
  11565. "clone",
  11566. "copy",
  11567. "duplicate",
  11568. "object",
  11569. "object graph"
  11570. ],
  11571. "support": {
  11572. "issues": "https://github.com/myclabs/DeepCopy/issues",
  11573. "source": "https://github.com/myclabs/DeepCopy/tree/1.11.0"
  11574. },
  11575. "funding": [
  11576. {
  11577. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  11578. "type": "tidelift"
  11579. }
  11580. ],
  11581. "time": "2022-03-03T13:19:32+00:00"
  11582. },
  11583. {
  11584. "name": "nunomaduro/collision",
  11585. "version": "v6.3.1",
  11586. "source": {
  11587. "type": "git",
  11588. "url": "https://github.com/nunomaduro/collision.git",
  11589. "reference": "0f6349c3ed5dd28467087b08fb59384bb458a22b"
  11590. },
  11591. "dist": {
  11592. "type": "zip",
  11593. "url": "https://api.github.com/repos/nunomaduro/collision/zipball/0f6349c3ed5dd28467087b08fb59384bb458a22b",
  11594. "reference": "0f6349c3ed5dd28467087b08fb59384bb458a22b",
  11595. "shasum": ""
  11596. },
  11597. "require": {
  11598. "filp/whoops": "^2.14.5",
  11599. "php": "^8.0.0",
  11600. "symfony/console": "^6.0.2"
  11601. },
  11602. "require-dev": {
  11603. "brianium/paratest": "^6.4.1",
  11604. "laravel/framework": "^9.26.1",
  11605. "laravel/pint": "^1.1.1",
  11606. "nunomaduro/larastan": "^1.0.3",
  11607. "nunomaduro/mock-final-classes": "^1.1.0",
  11608. "orchestra/testbench": "^7.7",
  11609. "phpunit/phpunit": "^9.5.23",
  11610. "spatie/ignition": "^1.4.1"
  11611. },
  11612. "type": "library",
  11613. "extra": {
  11614. "branch-alias": {
  11615. "dev-develop": "6.x-dev"
  11616. },
  11617. "laravel": {
  11618. "providers": [
  11619. "NunoMaduro\\Collision\\Adapters\\Laravel\\CollisionServiceProvider"
  11620. ]
  11621. }
  11622. },
  11623. "autoload": {
  11624. "psr-4": {
  11625. "NunoMaduro\\Collision\\": "src/"
  11626. }
  11627. },
  11628. "notification-url": "https://packagist.org/downloads/",
  11629. "license": [
  11630. "MIT"
  11631. ],
  11632. "authors": [
  11633. {
  11634. "name": "Nuno Maduro",
  11635. "email": "enunomaduro@gmail.com"
  11636. }
  11637. ],
  11638. "description": "Cli error handling for console/command-line PHP applications.",
  11639. "keywords": [
  11640. "artisan",
  11641. "cli",
  11642. "command-line",
  11643. "console",
  11644. "error",
  11645. "handling",
  11646. "laravel",
  11647. "laravel-zero",
  11648. "php",
  11649. "symfony"
  11650. ],
  11651. "support": {
  11652. "issues": "https://github.com/nunomaduro/collision/issues",
  11653. "source": "https://github.com/nunomaduro/collision"
  11654. },
  11655. "funding": [
  11656. {
  11657. "url": "https://www.paypal.com/paypalme/enunomaduro",
  11658. "type": "custom"
  11659. },
  11660. {
  11661. "url": "https://github.com/nunomaduro",
  11662. "type": "github"
  11663. },
  11664. {
  11665. "url": "https://www.patreon.com/nunomaduro",
  11666. "type": "patreon"
  11667. }
  11668. ],
  11669. "time": "2022-09-29T12:29:49+00:00"
  11670. },
  11671. {
  11672. "name": "phar-io/manifest",
  11673. "version": "2.0.3",
  11674. "source": {
  11675. "type": "git",
  11676. "url": "https://github.com/phar-io/manifest.git",
  11677. "reference": "97803eca37d319dfa7826cc2437fc020857acb53"
  11678. },
  11679. "dist": {
  11680. "type": "zip",
  11681. "url": "https://api.github.com/repos/phar-io/manifest/zipball/97803eca37d319dfa7826cc2437fc020857acb53",
  11682. "reference": "97803eca37d319dfa7826cc2437fc020857acb53",
  11683. "shasum": ""
  11684. },
  11685. "require": {
  11686. "ext-dom": "*",
  11687. "ext-phar": "*",
  11688. "ext-xmlwriter": "*",
  11689. "phar-io/version": "^3.0.1",
  11690. "php": "^7.2 || ^8.0"
  11691. },
  11692. "type": "library",
  11693. "extra": {
  11694. "branch-alias": {
  11695. "dev-master": "2.0.x-dev"
  11696. }
  11697. },
  11698. "autoload": {
  11699. "classmap": [
  11700. "src/"
  11701. ]
  11702. },
  11703. "notification-url": "https://packagist.org/downloads/",
  11704. "license": [
  11705. "BSD-3-Clause"
  11706. ],
  11707. "authors": [
  11708. {
  11709. "name": "Arne Blankerts",
  11710. "email": "arne@blankerts.de",
  11711. "role": "Developer"
  11712. },
  11713. {
  11714. "name": "Sebastian Heuer",
  11715. "email": "sebastian@phpeople.de",
  11716. "role": "Developer"
  11717. },
  11718. {
  11719. "name": "Sebastian Bergmann",
  11720. "email": "sebastian@phpunit.de",
  11721. "role": "Developer"
  11722. }
  11723. ],
  11724. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  11725. "support": {
  11726. "issues": "https://github.com/phar-io/manifest/issues",
  11727. "source": "https://github.com/phar-io/manifest/tree/2.0.3"
  11728. },
  11729. "time": "2021-07-20T11:28:43+00:00"
  11730. },
  11731. {
  11732. "name": "phar-io/version",
  11733. "version": "3.2.1",
  11734. "source": {
  11735. "type": "git",
  11736. "url": "https://github.com/phar-io/version.git",
  11737. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
  11738. },
  11739. "dist": {
  11740. "type": "zip",
  11741. "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  11742. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  11743. "shasum": ""
  11744. },
  11745. "require": {
  11746. "php": "^7.2 || ^8.0"
  11747. },
  11748. "type": "library",
  11749. "autoload": {
  11750. "classmap": [
  11751. "src/"
  11752. ]
  11753. },
  11754. "notification-url": "https://packagist.org/downloads/",
  11755. "license": [
  11756. "BSD-3-Clause"
  11757. ],
  11758. "authors": [
  11759. {
  11760. "name": "Arne Blankerts",
  11761. "email": "arne@blankerts.de",
  11762. "role": "Developer"
  11763. },
  11764. {
  11765. "name": "Sebastian Heuer",
  11766. "email": "sebastian@phpeople.de",
  11767. "role": "Developer"
  11768. },
  11769. {
  11770. "name": "Sebastian Bergmann",
  11771. "email": "sebastian@phpunit.de",
  11772. "role": "Developer"
  11773. }
  11774. ],
  11775. "description": "Library for handling version information and constraints",
  11776. "support": {
  11777. "issues": "https://github.com/phar-io/version/issues",
  11778. "source": "https://github.com/phar-io/version/tree/3.2.1"
  11779. },
  11780. "time": "2022-02-21T01:04:05+00:00"
  11781. },
  11782. {
  11783. "name": "phpunit/php-code-coverage",
  11784. "version": "9.2.19",
  11785. "source": {
  11786. "type": "git",
  11787. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  11788. "reference": "c77b56b63e3d2031bd8997fcec43c1925ae46559"
  11789. },
  11790. "dist": {
  11791. "type": "zip",
  11792. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/c77b56b63e3d2031bd8997fcec43c1925ae46559",
  11793. "reference": "c77b56b63e3d2031bd8997fcec43c1925ae46559",
  11794. "shasum": ""
  11795. },
  11796. "require": {
  11797. "ext-dom": "*",
  11798. "ext-libxml": "*",
  11799. "ext-xmlwriter": "*",
  11800. "nikic/php-parser": "^4.14",
  11801. "php": ">=7.3",
  11802. "phpunit/php-file-iterator": "^3.0.3",
  11803. "phpunit/php-text-template": "^2.0.2",
  11804. "sebastian/code-unit-reverse-lookup": "^2.0.2",
  11805. "sebastian/complexity": "^2.0",
  11806. "sebastian/environment": "^5.1.2",
  11807. "sebastian/lines-of-code": "^1.0.3",
  11808. "sebastian/version": "^3.0.1",
  11809. "theseer/tokenizer": "^1.2.0"
  11810. },
  11811. "require-dev": {
  11812. "phpunit/phpunit": "^9.3"
  11813. },
  11814. "suggest": {
  11815. "ext-pcov": "*",
  11816. "ext-xdebug": "*"
  11817. },
  11818. "type": "library",
  11819. "extra": {
  11820. "branch-alias": {
  11821. "dev-master": "9.2-dev"
  11822. }
  11823. },
  11824. "autoload": {
  11825. "classmap": [
  11826. "src/"
  11827. ]
  11828. },
  11829. "notification-url": "https://packagist.org/downloads/",
  11830. "license": [
  11831. "BSD-3-Clause"
  11832. ],
  11833. "authors": [
  11834. {
  11835. "name": "Sebastian Bergmann",
  11836. "email": "sebastian@phpunit.de",
  11837. "role": "lead"
  11838. }
  11839. ],
  11840. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  11841. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  11842. "keywords": [
  11843. "coverage",
  11844. "testing",
  11845. "xunit"
  11846. ],
  11847. "support": {
  11848. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  11849. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/9.2.19"
  11850. },
  11851. "funding": [
  11852. {
  11853. "url": "https://github.com/sebastianbergmann",
  11854. "type": "github"
  11855. }
  11856. ],
  11857. "time": "2022-11-18T07:47:47+00:00"
  11858. },
  11859. {
  11860. "name": "phpunit/php-file-iterator",
  11861. "version": "3.0.6",
  11862. "source": {
  11863. "type": "git",
  11864. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  11865. "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf"
  11866. },
  11867. "dist": {
  11868. "type": "zip",
  11869. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
  11870. "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
  11871. "shasum": ""
  11872. },
  11873. "require": {
  11874. "php": ">=7.3"
  11875. },
  11876. "require-dev": {
  11877. "phpunit/phpunit": "^9.3"
  11878. },
  11879. "type": "library",
  11880. "extra": {
  11881. "branch-alias": {
  11882. "dev-master": "3.0-dev"
  11883. }
  11884. },
  11885. "autoload": {
  11886. "classmap": [
  11887. "src/"
  11888. ]
  11889. },
  11890. "notification-url": "https://packagist.org/downloads/",
  11891. "license": [
  11892. "BSD-3-Clause"
  11893. ],
  11894. "authors": [
  11895. {
  11896. "name": "Sebastian Bergmann",
  11897. "email": "sebastian@phpunit.de",
  11898. "role": "lead"
  11899. }
  11900. ],
  11901. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  11902. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  11903. "keywords": [
  11904. "filesystem",
  11905. "iterator"
  11906. ],
  11907. "support": {
  11908. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  11909. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/3.0.6"
  11910. },
  11911. "funding": [
  11912. {
  11913. "url": "https://github.com/sebastianbergmann",
  11914. "type": "github"
  11915. }
  11916. ],
  11917. "time": "2021-12-02T12:48:52+00:00"
  11918. },
  11919. {
  11920. "name": "phpunit/php-invoker",
  11921. "version": "3.1.1",
  11922. "source": {
  11923. "type": "git",
  11924. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  11925. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67"
  11926. },
  11927. "dist": {
  11928. "type": "zip",
  11929. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  11930. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  11931. "shasum": ""
  11932. },
  11933. "require": {
  11934. "php": ">=7.3"
  11935. },
  11936. "require-dev": {
  11937. "ext-pcntl": "*",
  11938. "phpunit/phpunit": "^9.3"
  11939. },
  11940. "suggest": {
  11941. "ext-pcntl": "*"
  11942. },
  11943. "type": "library",
  11944. "extra": {
  11945. "branch-alias": {
  11946. "dev-master": "3.1-dev"
  11947. }
  11948. },
  11949. "autoload": {
  11950. "classmap": [
  11951. "src/"
  11952. ]
  11953. },
  11954. "notification-url": "https://packagist.org/downloads/",
  11955. "license": [
  11956. "BSD-3-Clause"
  11957. ],
  11958. "authors": [
  11959. {
  11960. "name": "Sebastian Bergmann",
  11961. "email": "sebastian@phpunit.de",
  11962. "role": "lead"
  11963. }
  11964. ],
  11965. "description": "Invoke callables with a timeout",
  11966. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  11967. "keywords": [
  11968. "process"
  11969. ],
  11970. "support": {
  11971. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  11972. "source": "https://github.com/sebastianbergmann/php-invoker/tree/3.1.1"
  11973. },
  11974. "funding": [
  11975. {
  11976. "url": "https://github.com/sebastianbergmann",
  11977. "type": "github"
  11978. }
  11979. ],
  11980. "time": "2020-09-28T05:58:55+00:00"
  11981. },
  11982. {
  11983. "name": "phpunit/php-text-template",
  11984. "version": "2.0.4",
  11985. "source": {
  11986. "type": "git",
  11987. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  11988. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28"
  11989. },
  11990. "dist": {
  11991. "type": "zip",
  11992. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  11993. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  11994. "shasum": ""
  11995. },
  11996. "require": {
  11997. "php": ">=7.3"
  11998. },
  11999. "require-dev": {
  12000. "phpunit/phpunit": "^9.3"
  12001. },
  12002. "type": "library",
  12003. "extra": {
  12004. "branch-alias": {
  12005. "dev-master": "2.0-dev"
  12006. }
  12007. },
  12008. "autoload": {
  12009. "classmap": [
  12010. "src/"
  12011. ]
  12012. },
  12013. "notification-url": "https://packagist.org/downloads/",
  12014. "license": [
  12015. "BSD-3-Clause"
  12016. ],
  12017. "authors": [
  12018. {
  12019. "name": "Sebastian Bergmann",
  12020. "email": "sebastian@phpunit.de",
  12021. "role": "lead"
  12022. }
  12023. ],
  12024. "description": "Simple template engine.",
  12025. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  12026. "keywords": [
  12027. "template"
  12028. ],
  12029. "support": {
  12030. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  12031. "source": "https://github.com/sebastianbergmann/php-text-template/tree/2.0.4"
  12032. },
  12033. "funding": [
  12034. {
  12035. "url": "https://github.com/sebastianbergmann",
  12036. "type": "github"
  12037. }
  12038. ],
  12039. "time": "2020-10-26T05:33:50+00:00"
  12040. },
  12041. {
  12042. "name": "phpunit/php-timer",
  12043. "version": "5.0.3",
  12044. "source": {
  12045. "type": "git",
  12046. "url": "https://github.com/sebastianbergmann/php-timer.git",
  12047. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2"
  12048. },
  12049. "dist": {
  12050. "type": "zip",
  12051. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  12052. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  12053. "shasum": ""
  12054. },
  12055. "require": {
  12056. "php": ">=7.3"
  12057. },
  12058. "require-dev": {
  12059. "phpunit/phpunit": "^9.3"
  12060. },
  12061. "type": "library",
  12062. "extra": {
  12063. "branch-alias": {
  12064. "dev-master": "5.0-dev"
  12065. }
  12066. },
  12067. "autoload": {
  12068. "classmap": [
  12069. "src/"
  12070. ]
  12071. },
  12072. "notification-url": "https://packagist.org/downloads/",
  12073. "license": [
  12074. "BSD-3-Clause"
  12075. ],
  12076. "authors": [
  12077. {
  12078. "name": "Sebastian Bergmann",
  12079. "email": "sebastian@phpunit.de",
  12080. "role": "lead"
  12081. }
  12082. ],
  12083. "description": "Utility class for timing",
  12084. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  12085. "keywords": [
  12086. "timer"
  12087. ],
  12088. "support": {
  12089. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  12090. "source": "https://github.com/sebastianbergmann/php-timer/tree/5.0.3"
  12091. },
  12092. "funding": [
  12093. {
  12094. "url": "https://github.com/sebastianbergmann",
  12095. "type": "github"
  12096. }
  12097. ],
  12098. "time": "2020-10-26T13:16:10+00:00"
  12099. },
  12100. {
  12101. "name": "phpunit/phpunit",
  12102. "version": "9.5.27",
  12103. "source": {
  12104. "type": "git",
  12105. "url": "https://github.com/sebastianbergmann/phpunit.git",
  12106. "reference": "a2bc7ffdca99f92d959b3f2270529334030bba38"
  12107. },
  12108. "dist": {
  12109. "type": "zip",
  12110. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/a2bc7ffdca99f92d959b3f2270529334030bba38",
  12111. "reference": "a2bc7ffdca99f92d959b3f2270529334030bba38",
  12112. "shasum": ""
  12113. },
  12114. "require": {
  12115. "doctrine/instantiator": "^1.3.1",
  12116. "ext-dom": "*",
  12117. "ext-json": "*",
  12118. "ext-libxml": "*",
  12119. "ext-mbstring": "*",
  12120. "ext-xml": "*",
  12121. "ext-xmlwriter": "*",
  12122. "myclabs/deep-copy": "^1.10.1",
  12123. "phar-io/manifest": "^2.0.3",
  12124. "phar-io/version": "^3.0.2",
  12125. "php": ">=7.3",
  12126. "phpunit/php-code-coverage": "^9.2.13",
  12127. "phpunit/php-file-iterator": "^3.0.5",
  12128. "phpunit/php-invoker": "^3.1.1",
  12129. "phpunit/php-text-template": "^2.0.3",
  12130. "phpunit/php-timer": "^5.0.2",
  12131. "sebastian/cli-parser": "^1.0.1",
  12132. "sebastian/code-unit": "^1.0.6",
  12133. "sebastian/comparator": "^4.0.8",
  12134. "sebastian/diff": "^4.0.3",
  12135. "sebastian/environment": "^5.1.3",
  12136. "sebastian/exporter": "^4.0.5",
  12137. "sebastian/global-state": "^5.0.1",
  12138. "sebastian/object-enumerator": "^4.0.3",
  12139. "sebastian/resource-operations": "^3.0.3",
  12140. "sebastian/type": "^3.2",
  12141. "sebastian/version": "^3.0.2"
  12142. },
  12143. "suggest": {
  12144. "ext-soap": "*",
  12145. "ext-xdebug": "*"
  12146. },
  12147. "bin": [
  12148. "phpunit"
  12149. ],
  12150. "type": "library",
  12151. "extra": {
  12152. "branch-alias": {
  12153. "dev-master": "9.5-dev"
  12154. }
  12155. },
  12156. "autoload": {
  12157. "files": [
  12158. "src/Framework/Assert/Functions.php"
  12159. ],
  12160. "classmap": [
  12161. "src/"
  12162. ]
  12163. },
  12164. "notification-url": "https://packagist.org/downloads/",
  12165. "license": [
  12166. "BSD-3-Clause"
  12167. ],
  12168. "authors": [
  12169. {
  12170. "name": "Sebastian Bergmann",
  12171. "email": "sebastian@phpunit.de",
  12172. "role": "lead"
  12173. }
  12174. ],
  12175. "description": "The PHP Unit Testing framework.",
  12176. "homepage": "https://phpunit.de/",
  12177. "keywords": [
  12178. "phpunit",
  12179. "testing",
  12180. "xunit"
  12181. ],
  12182. "support": {
  12183. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  12184. "source": "https://github.com/sebastianbergmann/phpunit/tree/9.5.27"
  12185. },
  12186. "funding": [
  12187. {
  12188. "url": "https://phpunit.de/sponsors.html",
  12189. "type": "custom"
  12190. },
  12191. {
  12192. "url": "https://github.com/sebastianbergmann",
  12193. "type": "github"
  12194. },
  12195. {
  12196. "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit",
  12197. "type": "tidelift"
  12198. }
  12199. ],
  12200. "time": "2022-12-09T07:31:23+00:00"
  12201. },
  12202. {
  12203. "name": "sebastian/cli-parser",
  12204. "version": "1.0.1",
  12205. "source": {
  12206. "type": "git",
  12207. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  12208. "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2"
  12209. },
  12210. "dist": {
  12211. "type": "zip",
  12212. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/442e7c7e687e42adc03470c7b668bc4b2402c0b2",
  12213. "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2",
  12214. "shasum": ""
  12215. },
  12216. "require": {
  12217. "php": ">=7.3"
  12218. },
  12219. "require-dev": {
  12220. "phpunit/phpunit": "^9.3"
  12221. },
  12222. "type": "library",
  12223. "extra": {
  12224. "branch-alias": {
  12225. "dev-master": "1.0-dev"
  12226. }
  12227. },
  12228. "autoload": {
  12229. "classmap": [
  12230. "src/"
  12231. ]
  12232. },
  12233. "notification-url": "https://packagist.org/downloads/",
  12234. "license": [
  12235. "BSD-3-Clause"
  12236. ],
  12237. "authors": [
  12238. {
  12239. "name": "Sebastian Bergmann",
  12240. "email": "sebastian@phpunit.de",
  12241. "role": "lead"
  12242. }
  12243. ],
  12244. "description": "Library for parsing CLI options",
  12245. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  12246. "support": {
  12247. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  12248. "source": "https://github.com/sebastianbergmann/cli-parser/tree/1.0.1"
  12249. },
  12250. "funding": [
  12251. {
  12252. "url": "https://github.com/sebastianbergmann",
  12253. "type": "github"
  12254. }
  12255. ],
  12256. "time": "2020-09-28T06:08:49+00:00"
  12257. },
  12258. {
  12259. "name": "sebastian/code-unit",
  12260. "version": "1.0.8",
  12261. "source": {
  12262. "type": "git",
  12263. "url": "https://github.com/sebastianbergmann/code-unit.git",
  12264. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120"
  12265. },
  12266. "dist": {
  12267. "type": "zip",
  12268. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/1fc9f64c0927627ef78ba436c9b17d967e68e120",
  12269. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120",
  12270. "shasum": ""
  12271. },
  12272. "require": {
  12273. "php": ">=7.3"
  12274. },
  12275. "require-dev": {
  12276. "phpunit/phpunit": "^9.3"
  12277. },
  12278. "type": "library",
  12279. "extra": {
  12280. "branch-alias": {
  12281. "dev-master": "1.0-dev"
  12282. }
  12283. },
  12284. "autoload": {
  12285. "classmap": [
  12286. "src/"
  12287. ]
  12288. },
  12289. "notification-url": "https://packagist.org/downloads/",
  12290. "license": [
  12291. "BSD-3-Clause"
  12292. ],
  12293. "authors": [
  12294. {
  12295. "name": "Sebastian Bergmann",
  12296. "email": "sebastian@phpunit.de",
  12297. "role": "lead"
  12298. }
  12299. ],
  12300. "description": "Collection of value objects that represent the PHP code units",
  12301. "homepage": "https://github.com/sebastianbergmann/code-unit",
  12302. "support": {
  12303. "issues": "https://github.com/sebastianbergmann/code-unit/issues",
  12304. "source": "https://github.com/sebastianbergmann/code-unit/tree/1.0.8"
  12305. },
  12306. "funding": [
  12307. {
  12308. "url": "https://github.com/sebastianbergmann",
  12309. "type": "github"
  12310. }
  12311. ],
  12312. "time": "2020-10-26T13:08:54+00:00"
  12313. },
  12314. {
  12315. "name": "sebastian/code-unit-reverse-lookup",
  12316. "version": "2.0.3",
  12317. "source": {
  12318. "type": "git",
  12319. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  12320. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5"
  12321. },
  12322. "dist": {
  12323. "type": "zip",
  12324. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  12325. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  12326. "shasum": ""
  12327. },
  12328. "require": {
  12329. "php": ">=7.3"
  12330. },
  12331. "require-dev": {
  12332. "phpunit/phpunit": "^9.3"
  12333. },
  12334. "type": "library",
  12335. "extra": {
  12336. "branch-alias": {
  12337. "dev-master": "2.0-dev"
  12338. }
  12339. },
  12340. "autoload": {
  12341. "classmap": [
  12342. "src/"
  12343. ]
  12344. },
  12345. "notification-url": "https://packagist.org/downloads/",
  12346. "license": [
  12347. "BSD-3-Clause"
  12348. ],
  12349. "authors": [
  12350. {
  12351. "name": "Sebastian Bergmann",
  12352. "email": "sebastian@phpunit.de"
  12353. }
  12354. ],
  12355. "description": "Looks up which function or method a line of code belongs to",
  12356. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  12357. "support": {
  12358. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  12359. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/2.0.3"
  12360. },
  12361. "funding": [
  12362. {
  12363. "url": "https://github.com/sebastianbergmann",
  12364. "type": "github"
  12365. }
  12366. ],
  12367. "time": "2020-09-28T05:30:19+00:00"
  12368. },
  12369. {
  12370. "name": "sebastian/comparator",
  12371. "version": "4.0.8",
  12372. "source": {
  12373. "type": "git",
  12374. "url": "https://github.com/sebastianbergmann/comparator.git",
  12375. "reference": "fa0f136dd2334583309d32b62544682ee972b51a"
  12376. },
  12377. "dist": {
  12378. "type": "zip",
  12379. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/fa0f136dd2334583309d32b62544682ee972b51a",
  12380. "reference": "fa0f136dd2334583309d32b62544682ee972b51a",
  12381. "shasum": ""
  12382. },
  12383. "require": {
  12384. "php": ">=7.3",
  12385. "sebastian/diff": "^4.0",
  12386. "sebastian/exporter": "^4.0"
  12387. },
  12388. "require-dev": {
  12389. "phpunit/phpunit": "^9.3"
  12390. },
  12391. "type": "library",
  12392. "extra": {
  12393. "branch-alias": {
  12394. "dev-master": "4.0-dev"
  12395. }
  12396. },
  12397. "autoload": {
  12398. "classmap": [
  12399. "src/"
  12400. ]
  12401. },
  12402. "notification-url": "https://packagist.org/downloads/",
  12403. "license": [
  12404. "BSD-3-Clause"
  12405. ],
  12406. "authors": [
  12407. {
  12408. "name": "Sebastian Bergmann",
  12409. "email": "sebastian@phpunit.de"
  12410. },
  12411. {
  12412. "name": "Jeff Welch",
  12413. "email": "whatthejeff@gmail.com"
  12414. },
  12415. {
  12416. "name": "Volker Dusch",
  12417. "email": "github@wallbash.com"
  12418. },
  12419. {
  12420. "name": "Bernhard Schussek",
  12421. "email": "bschussek@2bepublished.at"
  12422. }
  12423. ],
  12424. "description": "Provides the functionality to compare PHP values for equality",
  12425. "homepage": "https://github.com/sebastianbergmann/comparator",
  12426. "keywords": [
  12427. "comparator",
  12428. "compare",
  12429. "equality"
  12430. ],
  12431. "support": {
  12432. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  12433. "source": "https://github.com/sebastianbergmann/comparator/tree/4.0.8"
  12434. },
  12435. "funding": [
  12436. {
  12437. "url": "https://github.com/sebastianbergmann",
  12438. "type": "github"
  12439. }
  12440. ],
  12441. "time": "2022-09-14T12:41:17+00:00"
  12442. },
  12443. {
  12444. "name": "sebastian/complexity",
  12445. "version": "2.0.2",
  12446. "source": {
  12447. "type": "git",
  12448. "url": "https://github.com/sebastianbergmann/complexity.git",
  12449. "reference": "739b35e53379900cc9ac327b2147867b8b6efd88"
  12450. },
  12451. "dist": {
  12452. "type": "zip",
  12453. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/739b35e53379900cc9ac327b2147867b8b6efd88",
  12454. "reference": "739b35e53379900cc9ac327b2147867b8b6efd88",
  12455. "shasum": ""
  12456. },
  12457. "require": {
  12458. "nikic/php-parser": "^4.7",
  12459. "php": ">=7.3"
  12460. },
  12461. "require-dev": {
  12462. "phpunit/phpunit": "^9.3"
  12463. },
  12464. "type": "library",
  12465. "extra": {
  12466. "branch-alias": {
  12467. "dev-master": "2.0-dev"
  12468. }
  12469. },
  12470. "autoload": {
  12471. "classmap": [
  12472. "src/"
  12473. ]
  12474. },
  12475. "notification-url": "https://packagist.org/downloads/",
  12476. "license": [
  12477. "BSD-3-Clause"
  12478. ],
  12479. "authors": [
  12480. {
  12481. "name": "Sebastian Bergmann",
  12482. "email": "sebastian@phpunit.de",
  12483. "role": "lead"
  12484. }
  12485. ],
  12486. "description": "Library for calculating the complexity of PHP code units",
  12487. "homepage": "https://github.com/sebastianbergmann/complexity",
  12488. "support": {
  12489. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  12490. "source": "https://github.com/sebastianbergmann/complexity/tree/2.0.2"
  12491. },
  12492. "funding": [
  12493. {
  12494. "url": "https://github.com/sebastianbergmann",
  12495. "type": "github"
  12496. }
  12497. ],
  12498. "time": "2020-10-26T15:52:27+00:00"
  12499. },
  12500. {
  12501. "name": "sebastian/diff",
  12502. "version": "4.0.4",
  12503. "source": {
  12504. "type": "git",
  12505. "url": "https://github.com/sebastianbergmann/diff.git",
  12506. "reference": "3461e3fccc7cfdfc2720be910d3bd73c69be590d"
  12507. },
  12508. "dist": {
  12509. "type": "zip",
  12510. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/3461e3fccc7cfdfc2720be910d3bd73c69be590d",
  12511. "reference": "3461e3fccc7cfdfc2720be910d3bd73c69be590d",
  12512. "shasum": ""
  12513. },
  12514. "require": {
  12515. "php": ">=7.3"
  12516. },
  12517. "require-dev": {
  12518. "phpunit/phpunit": "^9.3",
  12519. "symfony/process": "^4.2 || ^5"
  12520. },
  12521. "type": "library",
  12522. "extra": {
  12523. "branch-alias": {
  12524. "dev-master": "4.0-dev"
  12525. }
  12526. },
  12527. "autoload": {
  12528. "classmap": [
  12529. "src/"
  12530. ]
  12531. },
  12532. "notification-url": "https://packagist.org/downloads/",
  12533. "license": [
  12534. "BSD-3-Clause"
  12535. ],
  12536. "authors": [
  12537. {
  12538. "name": "Sebastian Bergmann",
  12539. "email": "sebastian@phpunit.de"
  12540. },
  12541. {
  12542. "name": "Kore Nordmann",
  12543. "email": "mail@kore-nordmann.de"
  12544. }
  12545. ],
  12546. "description": "Diff implementation",
  12547. "homepage": "https://github.com/sebastianbergmann/diff",
  12548. "keywords": [
  12549. "diff",
  12550. "udiff",
  12551. "unidiff",
  12552. "unified diff"
  12553. ],
  12554. "support": {
  12555. "issues": "https://github.com/sebastianbergmann/diff/issues",
  12556. "source": "https://github.com/sebastianbergmann/diff/tree/4.0.4"
  12557. },
  12558. "funding": [
  12559. {
  12560. "url": "https://github.com/sebastianbergmann",
  12561. "type": "github"
  12562. }
  12563. ],
  12564. "time": "2020-10-26T13:10:38+00:00"
  12565. },
  12566. {
  12567. "name": "sebastian/environment",
  12568. "version": "5.1.4",
  12569. "source": {
  12570. "type": "git",
  12571. "url": "https://github.com/sebastianbergmann/environment.git",
  12572. "reference": "1b5dff7bb151a4db11d49d90e5408e4e938270f7"
  12573. },
  12574. "dist": {
  12575. "type": "zip",
  12576. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/1b5dff7bb151a4db11d49d90e5408e4e938270f7",
  12577. "reference": "1b5dff7bb151a4db11d49d90e5408e4e938270f7",
  12578. "shasum": ""
  12579. },
  12580. "require": {
  12581. "php": ">=7.3"
  12582. },
  12583. "require-dev": {
  12584. "phpunit/phpunit": "^9.3"
  12585. },
  12586. "suggest": {
  12587. "ext-posix": "*"
  12588. },
  12589. "type": "library",
  12590. "extra": {
  12591. "branch-alias": {
  12592. "dev-master": "5.1-dev"
  12593. }
  12594. },
  12595. "autoload": {
  12596. "classmap": [
  12597. "src/"
  12598. ]
  12599. },
  12600. "notification-url": "https://packagist.org/downloads/",
  12601. "license": [
  12602. "BSD-3-Clause"
  12603. ],
  12604. "authors": [
  12605. {
  12606. "name": "Sebastian Bergmann",
  12607. "email": "sebastian@phpunit.de"
  12608. }
  12609. ],
  12610. "description": "Provides functionality to handle HHVM/PHP environments",
  12611. "homepage": "http://www.github.com/sebastianbergmann/environment",
  12612. "keywords": [
  12613. "Xdebug",
  12614. "environment",
  12615. "hhvm"
  12616. ],
  12617. "support": {
  12618. "issues": "https://github.com/sebastianbergmann/environment/issues",
  12619. "source": "https://github.com/sebastianbergmann/environment/tree/5.1.4"
  12620. },
  12621. "funding": [
  12622. {
  12623. "url": "https://github.com/sebastianbergmann",
  12624. "type": "github"
  12625. }
  12626. ],
  12627. "time": "2022-04-03T09:37:03+00:00"
  12628. },
  12629. {
  12630. "name": "sebastian/exporter",
  12631. "version": "4.0.5",
  12632. "source": {
  12633. "type": "git",
  12634. "url": "https://github.com/sebastianbergmann/exporter.git",
  12635. "reference": "ac230ed27f0f98f597c8a2b6eb7ac563af5e5b9d"
  12636. },
  12637. "dist": {
  12638. "type": "zip",
  12639. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/ac230ed27f0f98f597c8a2b6eb7ac563af5e5b9d",
  12640. "reference": "ac230ed27f0f98f597c8a2b6eb7ac563af5e5b9d",
  12641. "shasum": ""
  12642. },
  12643. "require": {
  12644. "php": ">=7.3",
  12645. "sebastian/recursion-context": "^4.0"
  12646. },
  12647. "require-dev": {
  12648. "ext-mbstring": "*",
  12649. "phpunit/phpunit": "^9.3"
  12650. },
  12651. "type": "library",
  12652. "extra": {
  12653. "branch-alias": {
  12654. "dev-master": "4.0-dev"
  12655. }
  12656. },
  12657. "autoload": {
  12658. "classmap": [
  12659. "src/"
  12660. ]
  12661. },
  12662. "notification-url": "https://packagist.org/downloads/",
  12663. "license": [
  12664. "BSD-3-Clause"
  12665. ],
  12666. "authors": [
  12667. {
  12668. "name": "Sebastian Bergmann",
  12669. "email": "sebastian@phpunit.de"
  12670. },
  12671. {
  12672. "name": "Jeff Welch",
  12673. "email": "whatthejeff@gmail.com"
  12674. },
  12675. {
  12676. "name": "Volker Dusch",
  12677. "email": "github@wallbash.com"
  12678. },
  12679. {
  12680. "name": "Adam Harvey",
  12681. "email": "aharvey@php.net"
  12682. },
  12683. {
  12684. "name": "Bernhard Schussek",
  12685. "email": "bschussek@gmail.com"
  12686. }
  12687. ],
  12688. "description": "Provides the functionality to export PHP variables for visualization",
  12689. "homepage": "https://www.github.com/sebastianbergmann/exporter",
  12690. "keywords": [
  12691. "export",
  12692. "exporter"
  12693. ],
  12694. "support": {
  12695. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  12696. "source": "https://github.com/sebastianbergmann/exporter/tree/4.0.5"
  12697. },
  12698. "funding": [
  12699. {
  12700. "url": "https://github.com/sebastianbergmann",
  12701. "type": "github"
  12702. }
  12703. ],
  12704. "time": "2022-09-14T06:03:37+00:00"
  12705. },
  12706. {
  12707. "name": "sebastian/global-state",
  12708. "version": "5.0.5",
  12709. "source": {
  12710. "type": "git",
  12711. "url": "https://github.com/sebastianbergmann/global-state.git",
  12712. "reference": "0ca8db5a5fc9c8646244e629625ac486fa286bf2"
  12713. },
  12714. "dist": {
  12715. "type": "zip",
  12716. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/0ca8db5a5fc9c8646244e629625ac486fa286bf2",
  12717. "reference": "0ca8db5a5fc9c8646244e629625ac486fa286bf2",
  12718. "shasum": ""
  12719. },
  12720. "require": {
  12721. "php": ">=7.3",
  12722. "sebastian/object-reflector": "^2.0",
  12723. "sebastian/recursion-context": "^4.0"
  12724. },
  12725. "require-dev": {
  12726. "ext-dom": "*",
  12727. "phpunit/phpunit": "^9.3"
  12728. },
  12729. "suggest": {
  12730. "ext-uopz": "*"
  12731. },
  12732. "type": "library",
  12733. "extra": {
  12734. "branch-alias": {
  12735. "dev-master": "5.0-dev"
  12736. }
  12737. },
  12738. "autoload": {
  12739. "classmap": [
  12740. "src/"
  12741. ]
  12742. },
  12743. "notification-url": "https://packagist.org/downloads/",
  12744. "license": [
  12745. "BSD-3-Clause"
  12746. ],
  12747. "authors": [
  12748. {
  12749. "name": "Sebastian Bergmann",
  12750. "email": "sebastian@phpunit.de"
  12751. }
  12752. ],
  12753. "description": "Snapshotting of global state",
  12754. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  12755. "keywords": [
  12756. "global state"
  12757. ],
  12758. "support": {
  12759. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  12760. "source": "https://github.com/sebastianbergmann/global-state/tree/5.0.5"
  12761. },
  12762. "funding": [
  12763. {
  12764. "url": "https://github.com/sebastianbergmann",
  12765. "type": "github"
  12766. }
  12767. ],
  12768. "time": "2022-02-14T08:28:10+00:00"
  12769. },
  12770. {
  12771. "name": "sebastian/lines-of-code",
  12772. "version": "1.0.3",
  12773. "source": {
  12774. "type": "git",
  12775. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  12776. "reference": "c1c2e997aa3146983ed888ad08b15470a2e22ecc"
  12777. },
  12778. "dist": {
  12779. "type": "zip",
  12780. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/c1c2e997aa3146983ed888ad08b15470a2e22ecc",
  12781. "reference": "c1c2e997aa3146983ed888ad08b15470a2e22ecc",
  12782. "shasum": ""
  12783. },
  12784. "require": {
  12785. "nikic/php-parser": "^4.6",
  12786. "php": ">=7.3"
  12787. },
  12788. "require-dev": {
  12789. "phpunit/phpunit": "^9.3"
  12790. },
  12791. "type": "library",
  12792. "extra": {
  12793. "branch-alias": {
  12794. "dev-master": "1.0-dev"
  12795. }
  12796. },
  12797. "autoload": {
  12798. "classmap": [
  12799. "src/"
  12800. ]
  12801. },
  12802. "notification-url": "https://packagist.org/downloads/",
  12803. "license": [
  12804. "BSD-3-Clause"
  12805. ],
  12806. "authors": [
  12807. {
  12808. "name": "Sebastian Bergmann",
  12809. "email": "sebastian@phpunit.de",
  12810. "role": "lead"
  12811. }
  12812. ],
  12813. "description": "Library for counting the lines of code in PHP source code",
  12814. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  12815. "support": {
  12816. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  12817. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/1.0.3"
  12818. },
  12819. "funding": [
  12820. {
  12821. "url": "https://github.com/sebastianbergmann",
  12822. "type": "github"
  12823. }
  12824. ],
  12825. "time": "2020-11-28T06:42:11+00:00"
  12826. },
  12827. {
  12828. "name": "sebastian/object-enumerator",
  12829. "version": "4.0.4",
  12830. "source": {
  12831. "type": "git",
  12832. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  12833. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71"
  12834. },
  12835. "dist": {
  12836. "type": "zip",
  12837. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/5c9eeac41b290a3712d88851518825ad78f45c71",
  12838. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71",
  12839. "shasum": ""
  12840. },
  12841. "require": {
  12842. "php": ">=7.3",
  12843. "sebastian/object-reflector": "^2.0",
  12844. "sebastian/recursion-context": "^4.0"
  12845. },
  12846. "require-dev": {
  12847. "phpunit/phpunit": "^9.3"
  12848. },
  12849. "type": "library",
  12850. "extra": {
  12851. "branch-alias": {
  12852. "dev-master": "4.0-dev"
  12853. }
  12854. },
  12855. "autoload": {
  12856. "classmap": [
  12857. "src/"
  12858. ]
  12859. },
  12860. "notification-url": "https://packagist.org/downloads/",
  12861. "license": [
  12862. "BSD-3-Clause"
  12863. ],
  12864. "authors": [
  12865. {
  12866. "name": "Sebastian Bergmann",
  12867. "email": "sebastian@phpunit.de"
  12868. }
  12869. ],
  12870. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  12871. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  12872. "support": {
  12873. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  12874. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/4.0.4"
  12875. },
  12876. "funding": [
  12877. {
  12878. "url": "https://github.com/sebastianbergmann",
  12879. "type": "github"
  12880. }
  12881. ],
  12882. "time": "2020-10-26T13:12:34+00:00"
  12883. },
  12884. {
  12885. "name": "sebastian/object-reflector",
  12886. "version": "2.0.4",
  12887. "source": {
  12888. "type": "git",
  12889. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  12890. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7"
  12891. },
  12892. "dist": {
  12893. "type": "zip",
  12894. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  12895. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  12896. "shasum": ""
  12897. },
  12898. "require": {
  12899. "php": ">=7.3"
  12900. },
  12901. "require-dev": {
  12902. "phpunit/phpunit": "^9.3"
  12903. },
  12904. "type": "library",
  12905. "extra": {
  12906. "branch-alias": {
  12907. "dev-master": "2.0-dev"
  12908. }
  12909. },
  12910. "autoload": {
  12911. "classmap": [
  12912. "src/"
  12913. ]
  12914. },
  12915. "notification-url": "https://packagist.org/downloads/",
  12916. "license": [
  12917. "BSD-3-Clause"
  12918. ],
  12919. "authors": [
  12920. {
  12921. "name": "Sebastian Bergmann",
  12922. "email": "sebastian@phpunit.de"
  12923. }
  12924. ],
  12925. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  12926. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  12927. "support": {
  12928. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  12929. "source": "https://github.com/sebastianbergmann/object-reflector/tree/2.0.4"
  12930. },
  12931. "funding": [
  12932. {
  12933. "url": "https://github.com/sebastianbergmann",
  12934. "type": "github"
  12935. }
  12936. ],
  12937. "time": "2020-10-26T13:14:26+00:00"
  12938. },
  12939. {
  12940. "name": "sebastian/recursion-context",
  12941. "version": "4.0.4",
  12942. "source": {
  12943. "type": "git",
  12944. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  12945. "reference": "cd9d8cf3c5804de4341c283ed787f099f5506172"
  12946. },
  12947. "dist": {
  12948. "type": "zip",
  12949. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/cd9d8cf3c5804de4341c283ed787f099f5506172",
  12950. "reference": "cd9d8cf3c5804de4341c283ed787f099f5506172",
  12951. "shasum": ""
  12952. },
  12953. "require": {
  12954. "php": ">=7.3"
  12955. },
  12956. "require-dev": {
  12957. "phpunit/phpunit": "^9.3"
  12958. },
  12959. "type": "library",
  12960. "extra": {
  12961. "branch-alias": {
  12962. "dev-master": "4.0-dev"
  12963. }
  12964. },
  12965. "autoload": {
  12966. "classmap": [
  12967. "src/"
  12968. ]
  12969. },
  12970. "notification-url": "https://packagist.org/downloads/",
  12971. "license": [
  12972. "BSD-3-Clause"
  12973. ],
  12974. "authors": [
  12975. {
  12976. "name": "Sebastian Bergmann",
  12977. "email": "sebastian@phpunit.de"
  12978. },
  12979. {
  12980. "name": "Jeff Welch",
  12981. "email": "whatthejeff@gmail.com"
  12982. },
  12983. {
  12984. "name": "Adam Harvey",
  12985. "email": "aharvey@php.net"
  12986. }
  12987. ],
  12988. "description": "Provides functionality to recursively process PHP variables",
  12989. "homepage": "http://www.github.com/sebastianbergmann/recursion-context",
  12990. "support": {
  12991. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  12992. "source": "https://github.com/sebastianbergmann/recursion-context/tree/4.0.4"
  12993. },
  12994. "funding": [
  12995. {
  12996. "url": "https://github.com/sebastianbergmann",
  12997. "type": "github"
  12998. }
  12999. ],
  13000. "time": "2020-10-26T13:17:30+00:00"
  13001. },
  13002. {
  13003. "name": "sebastian/resource-operations",
  13004. "version": "3.0.3",
  13005. "source": {
  13006. "type": "git",
  13007. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  13008. "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8"
  13009. },
  13010. "dist": {
  13011. "type": "zip",
  13012. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8",
  13013. "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8",
  13014. "shasum": ""
  13015. },
  13016. "require": {
  13017. "php": ">=7.3"
  13018. },
  13019. "require-dev": {
  13020. "phpunit/phpunit": "^9.0"
  13021. },
  13022. "type": "library",
  13023. "extra": {
  13024. "branch-alias": {
  13025. "dev-master": "3.0-dev"
  13026. }
  13027. },
  13028. "autoload": {
  13029. "classmap": [
  13030. "src/"
  13031. ]
  13032. },
  13033. "notification-url": "https://packagist.org/downloads/",
  13034. "license": [
  13035. "BSD-3-Clause"
  13036. ],
  13037. "authors": [
  13038. {
  13039. "name": "Sebastian Bergmann",
  13040. "email": "sebastian@phpunit.de"
  13041. }
  13042. ],
  13043. "description": "Provides a list of PHP built-in functions that operate on resources",
  13044. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  13045. "support": {
  13046. "issues": "https://github.com/sebastianbergmann/resource-operations/issues",
  13047. "source": "https://github.com/sebastianbergmann/resource-operations/tree/3.0.3"
  13048. },
  13049. "funding": [
  13050. {
  13051. "url": "https://github.com/sebastianbergmann",
  13052. "type": "github"
  13053. }
  13054. ],
  13055. "time": "2020-09-28T06:45:17+00:00"
  13056. },
  13057. {
  13058. "name": "sebastian/type",
  13059. "version": "3.2.0",
  13060. "source": {
  13061. "type": "git",
  13062. "url": "https://github.com/sebastianbergmann/type.git",
  13063. "reference": "fb3fe09c5f0bae6bc27ef3ce933a1e0ed9464b6e"
  13064. },
  13065. "dist": {
  13066. "type": "zip",
  13067. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/fb3fe09c5f0bae6bc27ef3ce933a1e0ed9464b6e",
  13068. "reference": "fb3fe09c5f0bae6bc27ef3ce933a1e0ed9464b6e",
  13069. "shasum": ""
  13070. },
  13071. "require": {
  13072. "php": ">=7.3"
  13073. },
  13074. "require-dev": {
  13075. "phpunit/phpunit": "^9.5"
  13076. },
  13077. "type": "library",
  13078. "extra": {
  13079. "branch-alias": {
  13080. "dev-master": "3.2-dev"
  13081. }
  13082. },
  13083. "autoload": {
  13084. "classmap": [
  13085. "src/"
  13086. ]
  13087. },
  13088. "notification-url": "https://packagist.org/downloads/",
  13089. "license": [
  13090. "BSD-3-Clause"
  13091. ],
  13092. "authors": [
  13093. {
  13094. "name": "Sebastian Bergmann",
  13095. "email": "sebastian@phpunit.de",
  13096. "role": "lead"
  13097. }
  13098. ],
  13099. "description": "Collection of value objects that represent the types of the PHP type system",
  13100. "homepage": "https://github.com/sebastianbergmann/type",
  13101. "support": {
  13102. "issues": "https://github.com/sebastianbergmann/type/issues",
  13103. "source": "https://github.com/sebastianbergmann/type/tree/3.2.0"
  13104. },
  13105. "funding": [
  13106. {
  13107. "url": "https://github.com/sebastianbergmann",
  13108. "type": "github"
  13109. }
  13110. ],
  13111. "time": "2022-09-12T14:47:03+00:00"
  13112. },
  13113. {
  13114. "name": "sebastian/version",
  13115. "version": "3.0.2",
  13116. "source": {
  13117. "type": "git",
  13118. "url": "https://github.com/sebastianbergmann/version.git",
  13119. "reference": "c6c1022351a901512170118436c764e473f6de8c"
  13120. },
  13121. "dist": {
  13122. "type": "zip",
  13123. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c6c1022351a901512170118436c764e473f6de8c",
  13124. "reference": "c6c1022351a901512170118436c764e473f6de8c",
  13125. "shasum": ""
  13126. },
  13127. "require": {
  13128. "php": ">=7.3"
  13129. },
  13130. "type": "library",
  13131. "extra": {
  13132. "branch-alias": {
  13133. "dev-master": "3.0-dev"
  13134. }
  13135. },
  13136. "autoload": {
  13137. "classmap": [
  13138. "src/"
  13139. ]
  13140. },
  13141. "notification-url": "https://packagist.org/downloads/",
  13142. "license": [
  13143. "BSD-3-Clause"
  13144. ],
  13145. "authors": [
  13146. {
  13147. "name": "Sebastian Bergmann",
  13148. "email": "sebastian@phpunit.de",
  13149. "role": "lead"
  13150. }
  13151. ],
  13152. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  13153. "homepage": "https://github.com/sebastianbergmann/version",
  13154. "support": {
  13155. "issues": "https://github.com/sebastianbergmann/version/issues",
  13156. "source": "https://github.com/sebastianbergmann/version/tree/3.0.2"
  13157. },
  13158. "funding": [
  13159. {
  13160. "url": "https://github.com/sebastianbergmann",
  13161. "type": "github"
  13162. }
  13163. ],
  13164. "time": "2020-09-28T06:39:44+00:00"
  13165. },
  13166. {
  13167. "name": "theseer/tokenizer",
  13168. "version": "1.2.1",
  13169. "source": {
  13170. "type": "git",
  13171. "url": "https://github.com/theseer/tokenizer.git",
  13172. "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e"
  13173. },
  13174. "dist": {
  13175. "type": "zip",
  13176. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/34a41e998c2183e22995f158c581e7b5e755ab9e",
  13177. "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e",
  13178. "shasum": ""
  13179. },
  13180. "require": {
  13181. "ext-dom": "*",
  13182. "ext-tokenizer": "*",
  13183. "ext-xmlwriter": "*",
  13184. "php": "^7.2 || ^8.0"
  13185. },
  13186. "type": "library",
  13187. "autoload": {
  13188. "classmap": [
  13189. "src/"
  13190. ]
  13191. },
  13192. "notification-url": "https://packagist.org/downloads/",
  13193. "license": [
  13194. "BSD-3-Clause"
  13195. ],
  13196. "authors": [
  13197. {
  13198. "name": "Arne Blankerts",
  13199. "email": "arne@blankerts.de",
  13200. "role": "Developer"
  13201. }
  13202. ],
  13203. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  13204. "support": {
  13205. "issues": "https://github.com/theseer/tokenizer/issues",
  13206. "source": "https://github.com/theseer/tokenizer/tree/1.2.1"
  13207. },
  13208. "funding": [
  13209. {
  13210. "url": "https://github.com/theseer",
  13211. "type": "github"
  13212. }
  13213. ],
  13214. "time": "2021-07-28T10:34:58+00:00"
  13215. }
  13216. ],
  13217. "aliases": [],
  13218. "minimum-stability": "dev",
  13219. "stability-flags": [],
  13220. "prefer-stable": true,
  13221. "prefer-lowest": false,
  13222. "platform": {
  13223. "php": "^8.0.2|^8.1",
  13224. "ext-bcmath": "*",
  13225. "ext-ctype": "*",
  13226. "ext-curl": "*",
  13227. "ext-intl": "*",
  13228. "ext-json": "*",
  13229. "ext-mbstring": "*",
  13230. "ext-openssl": "*"
  13231. },
  13232. "platform-dev": [],
  13233. "plugin-api-version": "2.3.0"
  13234. }