composer.lock 295 KB

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