composer.lock 344 KB

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