composer.lock 369 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234
  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": "a03a43237a09587ae2ae6793244292e4",
  8. "packages": [
  9. {
  10. "name": "anourvalar/eloquent-serialize",
  11. "version": "1.2.22",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/AnourValar/eloquent-serialize.git",
  15. "reference": "6e91093c10940859c4b0549b6a90f18d8db45998"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/AnourValar/eloquent-serialize/zipball/6e91093c10940859c4b0549b6a90f18d8db45998",
  20. "reference": "6e91093c10940859c4b0549b6a90f18d8db45998",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "laravel/framework": "^8.0|^9.0|^10.0|^11.0",
  25. "php": "^7.4|^8.0"
  26. },
  27. "require-dev": {
  28. "friendsofphp/php-cs-fixer": "^3.26",
  29. "laravel/legacy-factories": "^1.1",
  30. "orchestra/testbench": "^6.0|^7.0|^8.0|^9.0",
  31. "phpstan/phpstan": "^1.10",
  32. "phpunit/phpunit": "^9.5|^10.5",
  33. "psalm/plugin-laravel": "^2.8",
  34. "squizlabs/php_codesniffer": "^3.7"
  35. },
  36. "type": "library",
  37. "extra": {
  38. "laravel": {
  39. "aliases": {
  40. "EloquentSerialize": "AnourValar\\EloquentSerialize\\Facades\\EloquentSerializeFacade"
  41. }
  42. }
  43. },
  44. "autoload": {
  45. "psr-4": {
  46. "AnourValar\\EloquentSerialize\\": "src/"
  47. }
  48. },
  49. "notification-url": "https://packagist.org/downloads/",
  50. "license": [
  51. "MIT"
  52. ],
  53. "description": "Laravel Query Builder (Eloquent) serialization",
  54. "homepage": "https://github.com/AnourValar/eloquent-serialize",
  55. "keywords": [
  56. "anourvalar",
  57. "builder",
  58. "copy",
  59. "eloquent",
  60. "job",
  61. "laravel",
  62. "query",
  63. "querybuilder",
  64. "queue",
  65. "serializable",
  66. "serialization",
  67. "serialize"
  68. ],
  69. "support": {
  70. "issues": "https://github.com/AnourValar/eloquent-serialize/issues",
  71. "source": "https://github.com/AnourValar/eloquent-serialize/tree/1.2.22"
  72. },
  73. "time": "2024-03-22T12:56:46+00:00"
  74. },
  75. {
  76. "name": "blade-ui-kit/blade-heroicons",
  77. "version": "2.3.0",
  78. "source": {
  79. "type": "git",
  80. "url": "https://github.com/blade-ui-kit/blade-heroicons.git",
  81. "reference": "a265dbcf2a098121aad05752d0bba9f59022e4ba"
  82. },
  83. "dist": {
  84. "type": "zip",
  85. "url": "https://api.github.com/repos/blade-ui-kit/blade-heroicons/zipball/a265dbcf2a098121aad05752d0bba9f59022e4ba",
  86. "reference": "a265dbcf2a098121aad05752d0bba9f59022e4ba",
  87. "shasum": ""
  88. },
  89. "require": {
  90. "blade-ui-kit/blade-icons": "^1.6",
  91. "illuminate/support": "^9.0|^10.0|^11.0",
  92. "php": "^8.0"
  93. },
  94. "require-dev": {
  95. "orchestra/testbench": "^7.0|^8.0|^9.0",
  96. "phpunit/phpunit": "^9.0|^10.5|^11.0"
  97. },
  98. "type": "library",
  99. "extra": {
  100. "laravel": {
  101. "providers": [
  102. "BladeUI\\Heroicons\\BladeHeroiconsServiceProvider"
  103. ]
  104. }
  105. },
  106. "autoload": {
  107. "psr-4": {
  108. "BladeUI\\Heroicons\\": "src"
  109. }
  110. },
  111. "notification-url": "https://packagist.org/downloads/",
  112. "license": [
  113. "MIT"
  114. ],
  115. "authors": [
  116. {
  117. "name": "Dries Vints",
  118. "homepage": "https://driesvints.com"
  119. }
  120. ],
  121. "description": "A package to easily make use of Heroicons in your Laravel Blade views.",
  122. "homepage": "https://github.com/blade-ui-kit/blade-heroicons",
  123. "keywords": [
  124. "Heroicons",
  125. "blade",
  126. "laravel"
  127. ],
  128. "support": {
  129. "issues": "https://github.com/blade-ui-kit/blade-heroicons/issues",
  130. "source": "https://github.com/blade-ui-kit/blade-heroicons/tree/2.3.0"
  131. },
  132. "funding": [
  133. {
  134. "url": "https://github.com/sponsors/driesvints",
  135. "type": "github"
  136. },
  137. {
  138. "url": "https://www.paypal.com/paypalme/driesvints",
  139. "type": "paypal"
  140. }
  141. ],
  142. "time": "2024-02-07T16:33:46+00:00"
  143. },
  144. {
  145. "name": "blade-ui-kit/blade-icons",
  146. "version": "1.6.0",
  147. "source": {
  148. "type": "git",
  149. "url": "https://github.com/blade-ui-kit/blade-icons.git",
  150. "reference": "89660d93f9897d231e9113ba203cd17f4c5efade"
  151. },
  152. "dist": {
  153. "type": "zip",
  154. "url": "https://api.github.com/repos/blade-ui-kit/blade-icons/zipball/89660d93f9897d231e9113ba203cd17f4c5efade",
  155. "reference": "89660d93f9897d231e9113ba203cd17f4c5efade",
  156. "shasum": ""
  157. },
  158. "require": {
  159. "illuminate/contracts": "^8.0|^9.0|^10.0|^11.0",
  160. "illuminate/filesystem": "^8.0|^9.0|^10.0|^11.0",
  161. "illuminate/support": "^8.0|^9.0|^10.0|^11.0",
  162. "illuminate/view": "^8.0|^9.0|^10.0|^11.0",
  163. "php": "^7.4|^8.0",
  164. "symfony/console": "^5.3|^6.0|^7.0",
  165. "symfony/finder": "^5.3|^6.0|^7.0"
  166. },
  167. "require-dev": {
  168. "mockery/mockery": "^1.5.1",
  169. "orchestra/testbench": "^6.0|^7.0|^8.0|^9.0",
  170. "phpunit/phpunit": "^9.0|^10.5|^11.0"
  171. },
  172. "bin": [
  173. "bin/blade-icons-generate"
  174. ],
  175. "type": "library",
  176. "extra": {
  177. "laravel": {
  178. "providers": [
  179. "BladeUI\\Icons\\BladeIconsServiceProvider"
  180. ]
  181. }
  182. },
  183. "autoload": {
  184. "files": [
  185. "src/helpers.php"
  186. ],
  187. "psr-4": {
  188. "BladeUI\\Icons\\": "src"
  189. }
  190. },
  191. "notification-url": "https://packagist.org/downloads/",
  192. "license": [
  193. "MIT"
  194. ],
  195. "authors": [
  196. {
  197. "name": "Dries Vints",
  198. "homepage": "https://driesvints.com"
  199. }
  200. ],
  201. "description": "A package to easily make use of icons in your Laravel Blade views.",
  202. "homepage": "https://github.com/blade-ui-kit/blade-icons",
  203. "keywords": [
  204. "blade",
  205. "icons",
  206. "laravel",
  207. "svg"
  208. ],
  209. "support": {
  210. "issues": "https://github.com/blade-ui-kit/blade-icons/issues",
  211. "source": "https://github.com/blade-ui-kit/blade-icons"
  212. },
  213. "funding": [
  214. {
  215. "url": "https://github.com/sponsors/driesvints",
  216. "type": "github"
  217. },
  218. {
  219. "url": "https://www.paypal.com/paypalme/driesvints",
  220. "type": "paypal"
  221. }
  222. ],
  223. "time": "2024-02-07T16:09:20+00:00"
  224. },
  225. {
  226. "name": "brick/math",
  227. "version": "0.12.1",
  228. "source": {
  229. "type": "git",
  230. "url": "https://github.com/brick/math.git",
  231. "reference": "f510c0a40911935b77b86859eb5223d58d660df1"
  232. },
  233. "dist": {
  234. "type": "zip",
  235. "url": "https://api.github.com/repos/brick/math/zipball/f510c0a40911935b77b86859eb5223d58d660df1",
  236. "reference": "f510c0a40911935b77b86859eb5223d58d660df1",
  237. "shasum": ""
  238. },
  239. "require": {
  240. "php": "^8.1"
  241. },
  242. "require-dev": {
  243. "php-coveralls/php-coveralls": "^2.2",
  244. "phpunit/phpunit": "^10.1",
  245. "vimeo/psalm": "5.16.0"
  246. },
  247. "type": "library",
  248. "autoload": {
  249. "psr-4": {
  250. "Brick\\Math\\": "src/"
  251. }
  252. },
  253. "notification-url": "https://packagist.org/downloads/",
  254. "license": [
  255. "MIT"
  256. ],
  257. "description": "Arbitrary-precision arithmetic library",
  258. "keywords": [
  259. "Arbitrary-precision",
  260. "BigInteger",
  261. "BigRational",
  262. "arithmetic",
  263. "bigdecimal",
  264. "bignum",
  265. "bignumber",
  266. "brick",
  267. "decimal",
  268. "integer",
  269. "math",
  270. "mathematics",
  271. "rational"
  272. ],
  273. "support": {
  274. "issues": "https://github.com/brick/math/issues",
  275. "source": "https://github.com/brick/math/tree/0.12.1"
  276. },
  277. "funding": [
  278. {
  279. "url": "https://github.com/BenMorel",
  280. "type": "github"
  281. }
  282. ],
  283. "time": "2023-11-29T23:19:16+00:00"
  284. },
  285. {
  286. "name": "carbonphp/carbon-doctrine-types",
  287. "version": "2.1.0",
  288. "source": {
  289. "type": "git",
  290. "url": "https://github.com/CarbonPHP/carbon-doctrine-types.git",
  291. "reference": "99f76ffa36cce3b70a4a6abce41dba15ca2e84cb"
  292. },
  293. "dist": {
  294. "type": "zip",
  295. "url": "https://api.github.com/repos/CarbonPHP/carbon-doctrine-types/zipball/99f76ffa36cce3b70a4a6abce41dba15ca2e84cb",
  296. "reference": "99f76ffa36cce3b70a4a6abce41dba15ca2e84cb",
  297. "shasum": ""
  298. },
  299. "require": {
  300. "php": "^7.4 || ^8.0"
  301. },
  302. "conflict": {
  303. "doctrine/dbal": "<3.7.0 || >=4.0.0"
  304. },
  305. "require-dev": {
  306. "doctrine/dbal": "^3.7.0",
  307. "nesbot/carbon": "^2.71.0 || ^3.0.0",
  308. "phpunit/phpunit": "^10.3"
  309. },
  310. "type": "library",
  311. "autoload": {
  312. "psr-4": {
  313. "Carbon\\Doctrine\\": "src/Carbon/Doctrine/"
  314. }
  315. },
  316. "notification-url": "https://packagist.org/downloads/",
  317. "license": [
  318. "MIT"
  319. ],
  320. "authors": [
  321. {
  322. "name": "KyleKatarn",
  323. "email": "kylekatarnls@gmail.com"
  324. }
  325. ],
  326. "description": "Types to use Carbon in Doctrine",
  327. "keywords": [
  328. "carbon",
  329. "date",
  330. "datetime",
  331. "doctrine",
  332. "time"
  333. ],
  334. "support": {
  335. "issues": "https://github.com/CarbonPHP/carbon-doctrine-types/issues",
  336. "source": "https://github.com/CarbonPHP/carbon-doctrine-types/tree/2.1.0"
  337. },
  338. "funding": [
  339. {
  340. "url": "https://github.com/kylekatarnls",
  341. "type": "github"
  342. },
  343. {
  344. "url": "https://opencollective.com/Carbon",
  345. "type": "open_collective"
  346. },
  347. {
  348. "url": "https://tidelift.com/funding/github/packagist/nesbot/carbon",
  349. "type": "tidelift"
  350. }
  351. ],
  352. "time": "2023-12-11T17:09:12+00:00"
  353. },
  354. {
  355. "name": "danharrin/date-format-converter",
  356. "version": "v0.3.1",
  357. "source": {
  358. "type": "git",
  359. "url": "https://github.com/danharrin/date-format-converter.git",
  360. "reference": "7c31171bc981e48726729a5f3a05a2d2b63f0b1e"
  361. },
  362. "dist": {
  363. "type": "zip",
  364. "url": "https://api.github.com/repos/danharrin/date-format-converter/zipball/7c31171bc981e48726729a5f3a05a2d2b63f0b1e",
  365. "reference": "7c31171bc981e48726729a5f3a05a2d2b63f0b1e",
  366. "shasum": ""
  367. },
  368. "require": {
  369. "php": "^7.2|^8.0"
  370. },
  371. "type": "library",
  372. "autoload": {
  373. "files": [
  374. "src/helpers.php",
  375. "src/standards.php"
  376. ],
  377. "psr-4": {
  378. "DanHarrin\\DateFormatConverter\\": "src/"
  379. }
  380. },
  381. "notification-url": "https://packagist.org/downloads/",
  382. "license": [
  383. "MIT"
  384. ],
  385. "authors": [
  386. {
  387. "name": "Dan Harrin",
  388. "email": "dan@danharrin.com"
  389. }
  390. ],
  391. "description": "Convert token-based date formats between standards.",
  392. "homepage": "https://github.com/danharrin/date-format-converter",
  393. "support": {
  394. "issues": "https://github.com/danharrin/date-format-converter/issues",
  395. "source": "https://github.com/danharrin/date-format-converter"
  396. },
  397. "funding": [
  398. {
  399. "url": "https://github.com/danharrin",
  400. "type": "github"
  401. }
  402. ],
  403. "time": "2024-06-13T09:38:44+00:00"
  404. },
  405. {
  406. "name": "danharrin/livewire-rate-limiting",
  407. "version": "v1.3.1",
  408. "source": {
  409. "type": "git",
  410. "url": "https://github.com/danharrin/livewire-rate-limiting.git",
  411. "reference": "1a1b299e20de61f88ed6e94ea0bbcfc33aab1ddb"
  412. },
  413. "dist": {
  414. "type": "zip",
  415. "url": "https://api.github.com/repos/danharrin/livewire-rate-limiting/zipball/1a1b299e20de61f88ed6e94ea0bbcfc33aab1ddb",
  416. "reference": "1a1b299e20de61f88ed6e94ea0bbcfc33aab1ddb",
  417. "shasum": ""
  418. },
  419. "require": {
  420. "illuminate/support": "^9.0|^10.0|^11.0",
  421. "php": "^8.0"
  422. },
  423. "require-dev": {
  424. "livewire/livewire": "^3.0",
  425. "livewire/volt": "^1.3",
  426. "orchestra/testbench": "^7.0|^8.0|^9.0",
  427. "phpunit/phpunit": "^9.0|^10.0"
  428. },
  429. "type": "library",
  430. "autoload": {
  431. "psr-4": {
  432. "DanHarrin\\LivewireRateLimiting\\": "src"
  433. }
  434. },
  435. "notification-url": "https://packagist.org/downloads/",
  436. "license": [
  437. "MIT"
  438. ],
  439. "authors": [
  440. {
  441. "name": "Dan Harrin",
  442. "email": "dan@danharrin.com"
  443. }
  444. ],
  445. "description": "Apply rate limiters to Laravel Livewire actions.",
  446. "homepage": "https://github.com/danharrin/livewire-rate-limiting",
  447. "support": {
  448. "issues": "https://github.com/danharrin/livewire-rate-limiting/issues",
  449. "source": "https://github.com/danharrin/livewire-rate-limiting"
  450. },
  451. "funding": [
  452. {
  453. "url": "https://github.com/danharrin",
  454. "type": "github"
  455. }
  456. ],
  457. "time": "2024-05-06T09:10:03+00:00"
  458. },
  459. {
  460. "name": "dflydev/dot-access-data",
  461. "version": "v3.0.2",
  462. "source": {
  463. "type": "git",
  464. "url": "https://github.com/dflydev/dflydev-dot-access-data.git",
  465. "reference": "f41715465d65213d644d3141a6a93081be5d3549"
  466. },
  467. "dist": {
  468. "type": "zip",
  469. "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/f41715465d65213d644d3141a6a93081be5d3549",
  470. "reference": "f41715465d65213d644d3141a6a93081be5d3549",
  471. "shasum": ""
  472. },
  473. "require": {
  474. "php": "^7.1 || ^8.0"
  475. },
  476. "require-dev": {
  477. "phpstan/phpstan": "^0.12.42",
  478. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.3",
  479. "scrutinizer/ocular": "1.6.0",
  480. "squizlabs/php_codesniffer": "^3.5",
  481. "vimeo/psalm": "^4.0.0"
  482. },
  483. "type": "library",
  484. "extra": {
  485. "branch-alias": {
  486. "dev-main": "3.x-dev"
  487. }
  488. },
  489. "autoload": {
  490. "psr-4": {
  491. "Dflydev\\DotAccessData\\": "src/"
  492. }
  493. },
  494. "notification-url": "https://packagist.org/downloads/",
  495. "license": [
  496. "MIT"
  497. ],
  498. "authors": [
  499. {
  500. "name": "Dragonfly Development Inc.",
  501. "email": "info@dflydev.com",
  502. "homepage": "http://dflydev.com"
  503. },
  504. {
  505. "name": "Beau Simensen",
  506. "email": "beau@dflydev.com",
  507. "homepage": "http://beausimensen.com"
  508. },
  509. {
  510. "name": "Carlos Frutos",
  511. "email": "carlos@kiwing.it",
  512. "homepage": "https://github.com/cfrutos"
  513. },
  514. {
  515. "name": "Colin O'Dell",
  516. "email": "colinodell@gmail.com",
  517. "homepage": "https://www.colinodell.com"
  518. }
  519. ],
  520. "description": "Given a deep data structure, access data by dot notation.",
  521. "homepage": "https://github.com/dflydev/dflydev-dot-access-data",
  522. "keywords": [
  523. "access",
  524. "data",
  525. "dot",
  526. "notation"
  527. ],
  528. "support": {
  529. "issues": "https://github.com/dflydev/dflydev-dot-access-data/issues",
  530. "source": "https://github.com/dflydev/dflydev-dot-access-data/tree/v3.0.2"
  531. },
  532. "time": "2022-10-27T11:44:00+00:00"
  533. },
  534. {
  535. "name": "doctrine/cache",
  536. "version": "2.2.0",
  537. "source": {
  538. "type": "git",
  539. "url": "https://github.com/doctrine/cache.git",
  540. "reference": "1ca8f21980e770095a31456042471a57bc4c68fb"
  541. },
  542. "dist": {
  543. "type": "zip",
  544. "url": "https://api.github.com/repos/doctrine/cache/zipball/1ca8f21980e770095a31456042471a57bc4c68fb",
  545. "reference": "1ca8f21980e770095a31456042471a57bc4c68fb",
  546. "shasum": ""
  547. },
  548. "require": {
  549. "php": "~7.1 || ^8.0"
  550. },
  551. "conflict": {
  552. "doctrine/common": ">2.2,<2.4"
  553. },
  554. "require-dev": {
  555. "cache/integration-tests": "dev-master",
  556. "doctrine/coding-standard": "^9",
  557. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  558. "psr/cache": "^1.0 || ^2.0 || ^3.0",
  559. "symfony/cache": "^4.4 || ^5.4 || ^6",
  560. "symfony/var-exporter": "^4.4 || ^5.4 || ^6"
  561. },
  562. "type": "library",
  563. "autoload": {
  564. "psr-4": {
  565. "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache"
  566. }
  567. },
  568. "notification-url": "https://packagist.org/downloads/",
  569. "license": [
  570. "MIT"
  571. ],
  572. "authors": [
  573. {
  574. "name": "Guilherme Blanco",
  575. "email": "guilhermeblanco@gmail.com"
  576. },
  577. {
  578. "name": "Roman Borschel",
  579. "email": "roman@code-factory.org"
  580. },
  581. {
  582. "name": "Benjamin Eberlei",
  583. "email": "kontakt@beberlei.de"
  584. },
  585. {
  586. "name": "Jonathan Wage",
  587. "email": "jonwage@gmail.com"
  588. },
  589. {
  590. "name": "Johannes Schmitt",
  591. "email": "schmittjoh@gmail.com"
  592. }
  593. ],
  594. "description": "PHP Doctrine Cache library is a popular cache implementation that supports many different drivers such as redis, memcache, apc, mongodb and others.",
  595. "homepage": "https://www.doctrine-project.org/projects/cache.html",
  596. "keywords": [
  597. "abstraction",
  598. "apcu",
  599. "cache",
  600. "caching",
  601. "couchdb",
  602. "memcached",
  603. "php",
  604. "redis",
  605. "xcache"
  606. ],
  607. "support": {
  608. "issues": "https://github.com/doctrine/cache/issues",
  609. "source": "https://github.com/doctrine/cache/tree/2.2.0"
  610. },
  611. "funding": [
  612. {
  613. "url": "https://www.doctrine-project.org/sponsorship.html",
  614. "type": "custom"
  615. },
  616. {
  617. "url": "https://www.patreon.com/phpdoctrine",
  618. "type": "patreon"
  619. },
  620. {
  621. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcache",
  622. "type": "tidelift"
  623. }
  624. ],
  625. "time": "2022-05-20T20:07:39+00:00"
  626. },
  627. {
  628. "name": "doctrine/dbal",
  629. "version": "3.8.5",
  630. "source": {
  631. "type": "git",
  632. "url": "https://github.com/doctrine/dbal.git",
  633. "reference": "0e3536ba088a749985c8801105b6b3ac6c1280b6"
  634. },
  635. "dist": {
  636. "type": "zip",
  637. "url": "https://api.github.com/repos/doctrine/dbal/zipball/0e3536ba088a749985c8801105b6b3ac6c1280b6",
  638. "reference": "0e3536ba088a749985c8801105b6b3ac6c1280b6",
  639. "shasum": ""
  640. },
  641. "require": {
  642. "composer-runtime-api": "^2",
  643. "doctrine/cache": "^1.11|^2.0",
  644. "doctrine/deprecations": "^0.5.3|^1",
  645. "doctrine/event-manager": "^1|^2",
  646. "php": "^7.4 || ^8.0",
  647. "psr/cache": "^1|^2|^3",
  648. "psr/log": "^1|^2|^3"
  649. },
  650. "require-dev": {
  651. "doctrine/coding-standard": "12.0.0",
  652. "fig/log-test": "^1",
  653. "jetbrains/phpstorm-stubs": "2023.1",
  654. "phpstan/phpstan": "1.11.1",
  655. "phpstan/phpstan-strict-rules": "^1.6",
  656. "phpunit/phpunit": "9.6.19",
  657. "psalm/plugin-phpunit": "0.18.4",
  658. "slevomat/coding-standard": "8.13.1",
  659. "squizlabs/php_codesniffer": "3.9.2",
  660. "symfony/cache": "^5.4|^6.0|^7.0",
  661. "symfony/console": "^4.4|^5.4|^6.0|^7.0",
  662. "vimeo/psalm": "4.30.0"
  663. },
  664. "suggest": {
  665. "symfony/console": "For helpful console commands such as SQL execution and import of files."
  666. },
  667. "bin": [
  668. "bin/doctrine-dbal"
  669. ],
  670. "type": "library",
  671. "autoload": {
  672. "psr-4": {
  673. "Doctrine\\DBAL\\": "src"
  674. }
  675. },
  676. "notification-url": "https://packagist.org/downloads/",
  677. "license": [
  678. "MIT"
  679. ],
  680. "authors": [
  681. {
  682. "name": "Guilherme Blanco",
  683. "email": "guilhermeblanco@gmail.com"
  684. },
  685. {
  686. "name": "Roman Borschel",
  687. "email": "roman@code-factory.org"
  688. },
  689. {
  690. "name": "Benjamin Eberlei",
  691. "email": "kontakt@beberlei.de"
  692. },
  693. {
  694. "name": "Jonathan Wage",
  695. "email": "jonwage@gmail.com"
  696. }
  697. ],
  698. "description": "Powerful PHP database abstraction layer (DBAL) with many features for database schema introspection and management.",
  699. "homepage": "https://www.doctrine-project.org/projects/dbal.html",
  700. "keywords": [
  701. "abstraction",
  702. "database",
  703. "db2",
  704. "dbal",
  705. "mariadb",
  706. "mssql",
  707. "mysql",
  708. "oci8",
  709. "oracle",
  710. "pdo",
  711. "pgsql",
  712. "postgresql",
  713. "queryobject",
  714. "sasql",
  715. "sql",
  716. "sqlite",
  717. "sqlserver",
  718. "sqlsrv"
  719. ],
  720. "support": {
  721. "issues": "https://github.com/doctrine/dbal/issues",
  722. "source": "https://github.com/doctrine/dbal/tree/3.8.5"
  723. },
  724. "funding": [
  725. {
  726. "url": "https://www.doctrine-project.org/sponsorship.html",
  727. "type": "custom"
  728. },
  729. {
  730. "url": "https://www.patreon.com/phpdoctrine",
  731. "type": "patreon"
  732. },
  733. {
  734. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdbal",
  735. "type": "tidelift"
  736. }
  737. ],
  738. "time": "2024-06-08T17:49:56+00:00"
  739. },
  740. {
  741. "name": "doctrine/deprecations",
  742. "version": "1.1.3",
  743. "source": {
  744. "type": "git",
  745. "url": "https://github.com/doctrine/deprecations.git",
  746. "reference": "dfbaa3c2d2e9a9df1118213f3b8b0c597bb99fab"
  747. },
  748. "dist": {
  749. "type": "zip",
  750. "url": "https://api.github.com/repos/doctrine/deprecations/zipball/dfbaa3c2d2e9a9df1118213f3b8b0c597bb99fab",
  751. "reference": "dfbaa3c2d2e9a9df1118213f3b8b0c597bb99fab",
  752. "shasum": ""
  753. },
  754. "require": {
  755. "php": "^7.1 || ^8.0"
  756. },
  757. "require-dev": {
  758. "doctrine/coding-standard": "^9",
  759. "phpstan/phpstan": "1.4.10 || 1.10.15",
  760. "phpstan/phpstan-phpunit": "^1.0",
  761. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  762. "psalm/plugin-phpunit": "0.18.4",
  763. "psr/log": "^1 || ^2 || ^3",
  764. "vimeo/psalm": "4.30.0 || 5.12.0"
  765. },
  766. "suggest": {
  767. "psr/log": "Allows logging deprecations via PSR-3 logger implementation"
  768. },
  769. "type": "library",
  770. "autoload": {
  771. "psr-4": {
  772. "Doctrine\\Deprecations\\": "lib/Doctrine/Deprecations"
  773. }
  774. },
  775. "notification-url": "https://packagist.org/downloads/",
  776. "license": [
  777. "MIT"
  778. ],
  779. "description": "A small layer on top of trigger_error(E_USER_DEPRECATED) or PSR-3 logging with options to disable all deprecations or selectively for packages.",
  780. "homepage": "https://www.doctrine-project.org/",
  781. "support": {
  782. "issues": "https://github.com/doctrine/deprecations/issues",
  783. "source": "https://github.com/doctrine/deprecations/tree/1.1.3"
  784. },
  785. "time": "2024-01-30T19:34:25+00:00"
  786. },
  787. {
  788. "name": "doctrine/event-manager",
  789. "version": "2.0.1",
  790. "source": {
  791. "type": "git",
  792. "url": "https://github.com/doctrine/event-manager.git",
  793. "reference": "b680156fa328f1dfd874fd48c7026c41570b9c6e"
  794. },
  795. "dist": {
  796. "type": "zip",
  797. "url": "https://api.github.com/repos/doctrine/event-manager/zipball/b680156fa328f1dfd874fd48c7026c41570b9c6e",
  798. "reference": "b680156fa328f1dfd874fd48c7026c41570b9c6e",
  799. "shasum": ""
  800. },
  801. "require": {
  802. "php": "^8.1"
  803. },
  804. "conflict": {
  805. "doctrine/common": "<2.9"
  806. },
  807. "require-dev": {
  808. "doctrine/coding-standard": "^12",
  809. "phpstan/phpstan": "^1.8.8",
  810. "phpunit/phpunit": "^10.5",
  811. "vimeo/psalm": "^5.24"
  812. },
  813. "type": "library",
  814. "autoload": {
  815. "psr-4": {
  816. "Doctrine\\Common\\": "src"
  817. }
  818. },
  819. "notification-url": "https://packagist.org/downloads/",
  820. "license": [
  821. "MIT"
  822. ],
  823. "authors": [
  824. {
  825. "name": "Guilherme Blanco",
  826. "email": "guilhermeblanco@gmail.com"
  827. },
  828. {
  829. "name": "Roman Borschel",
  830. "email": "roman@code-factory.org"
  831. },
  832. {
  833. "name": "Benjamin Eberlei",
  834. "email": "kontakt@beberlei.de"
  835. },
  836. {
  837. "name": "Jonathan Wage",
  838. "email": "jonwage@gmail.com"
  839. },
  840. {
  841. "name": "Johannes Schmitt",
  842. "email": "schmittjoh@gmail.com"
  843. },
  844. {
  845. "name": "Marco Pivetta",
  846. "email": "ocramius@gmail.com"
  847. }
  848. ],
  849. "description": "The Doctrine Event Manager is a simple PHP event system that was built to be used with the various Doctrine projects.",
  850. "homepage": "https://www.doctrine-project.org/projects/event-manager.html",
  851. "keywords": [
  852. "event",
  853. "event dispatcher",
  854. "event manager",
  855. "event system",
  856. "events"
  857. ],
  858. "support": {
  859. "issues": "https://github.com/doctrine/event-manager/issues",
  860. "source": "https://github.com/doctrine/event-manager/tree/2.0.1"
  861. },
  862. "funding": [
  863. {
  864. "url": "https://www.doctrine-project.org/sponsorship.html",
  865. "type": "custom"
  866. },
  867. {
  868. "url": "https://www.patreon.com/phpdoctrine",
  869. "type": "patreon"
  870. },
  871. {
  872. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fevent-manager",
  873. "type": "tidelift"
  874. }
  875. ],
  876. "time": "2024-05-22T20:47:39+00:00"
  877. },
  878. {
  879. "name": "doctrine/inflector",
  880. "version": "2.0.10",
  881. "source": {
  882. "type": "git",
  883. "url": "https://github.com/doctrine/inflector.git",
  884. "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc"
  885. },
  886. "dist": {
  887. "type": "zip",
  888. "url": "https://api.github.com/repos/doctrine/inflector/zipball/5817d0659c5b50c9b950feb9af7b9668e2c436bc",
  889. "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc",
  890. "shasum": ""
  891. },
  892. "require": {
  893. "php": "^7.2 || ^8.0"
  894. },
  895. "require-dev": {
  896. "doctrine/coding-standard": "^11.0",
  897. "phpstan/phpstan": "^1.8",
  898. "phpstan/phpstan-phpunit": "^1.1",
  899. "phpstan/phpstan-strict-rules": "^1.3",
  900. "phpunit/phpunit": "^8.5 || ^9.5",
  901. "vimeo/psalm": "^4.25 || ^5.4"
  902. },
  903. "type": "library",
  904. "autoload": {
  905. "psr-4": {
  906. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  907. }
  908. },
  909. "notification-url": "https://packagist.org/downloads/",
  910. "license": [
  911. "MIT"
  912. ],
  913. "authors": [
  914. {
  915. "name": "Guilherme Blanco",
  916. "email": "guilhermeblanco@gmail.com"
  917. },
  918. {
  919. "name": "Roman Borschel",
  920. "email": "roman@code-factory.org"
  921. },
  922. {
  923. "name": "Benjamin Eberlei",
  924. "email": "kontakt@beberlei.de"
  925. },
  926. {
  927. "name": "Jonathan Wage",
  928. "email": "jonwage@gmail.com"
  929. },
  930. {
  931. "name": "Johannes Schmitt",
  932. "email": "schmittjoh@gmail.com"
  933. }
  934. ],
  935. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  936. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  937. "keywords": [
  938. "inflection",
  939. "inflector",
  940. "lowercase",
  941. "manipulation",
  942. "php",
  943. "plural",
  944. "singular",
  945. "strings",
  946. "uppercase",
  947. "words"
  948. ],
  949. "support": {
  950. "issues": "https://github.com/doctrine/inflector/issues",
  951. "source": "https://github.com/doctrine/inflector/tree/2.0.10"
  952. },
  953. "funding": [
  954. {
  955. "url": "https://www.doctrine-project.org/sponsorship.html",
  956. "type": "custom"
  957. },
  958. {
  959. "url": "https://www.patreon.com/phpdoctrine",
  960. "type": "patreon"
  961. },
  962. {
  963. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  964. "type": "tidelift"
  965. }
  966. ],
  967. "time": "2024-02-18T20:23:39+00:00"
  968. },
  969. {
  970. "name": "doctrine/lexer",
  971. "version": "3.0.1",
  972. "source": {
  973. "type": "git",
  974. "url": "https://github.com/doctrine/lexer.git",
  975. "reference": "31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd"
  976. },
  977. "dist": {
  978. "type": "zip",
  979. "url": "https://api.github.com/repos/doctrine/lexer/zipball/31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd",
  980. "reference": "31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd",
  981. "shasum": ""
  982. },
  983. "require": {
  984. "php": "^8.1"
  985. },
  986. "require-dev": {
  987. "doctrine/coding-standard": "^12",
  988. "phpstan/phpstan": "^1.10",
  989. "phpunit/phpunit": "^10.5",
  990. "psalm/plugin-phpunit": "^0.18.3",
  991. "vimeo/psalm": "^5.21"
  992. },
  993. "type": "library",
  994. "autoload": {
  995. "psr-4": {
  996. "Doctrine\\Common\\Lexer\\": "src"
  997. }
  998. },
  999. "notification-url": "https://packagist.org/downloads/",
  1000. "license": [
  1001. "MIT"
  1002. ],
  1003. "authors": [
  1004. {
  1005. "name": "Guilherme Blanco",
  1006. "email": "guilhermeblanco@gmail.com"
  1007. },
  1008. {
  1009. "name": "Roman Borschel",
  1010. "email": "roman@code-factory.org"
  1011. },
  1012. {
  1013. "name": "Johannes Schmitt",
  1014. "email": "schmittjoh@gmail.com"
  1015. }
  1016. ],
  1017. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  1018. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  1019. "keywords": [
  1020. "annotations",
  1021. "docblock",
  1022. "lexer",
  1023. "parser",
  1024. "php"
  1025. ],
  1026. "support": {
  1027. "issues": "https://github.com/doctrine/lexer/issues",
  1028. "source": "https://github.com/doctrine/lexer/tree/3.0.1"
  1029. },
  1030. "funding": [
  1031. {
  1032. "url": "https://www.doctrine-project.org/sponsorship.html",
  1033. "type": "custom"
  1034. },
  1035. {
  1036. "url": "https://www.patreon.com/phpdoctrine",
  1037. "type": "patreon"
  1038. },
  1039. {
  1040. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  1041. "type": "tidelift"
  1042. }
  1043. ],
  1044. "time": "2024-02-05T11:56:58+00:00"
  1045. },
  1046. {
  1047. "name": "dragonmantank/cron-expression",
  1048. "version": "v3.3.3",
  1049. "source": {
  1050. "type": "git",
  1051. "url": "https://github.com/dragonmantank/cron-expression.git",
  1052. "reference": "adfb1f505deb6384dc8b39804c5065dd3c8c8c0a"
  1053. },
  1054. "dist": {
  1055. "type": "zip",
  1056. "url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/adfb1f505deb6384dc8b39804c5065dd3c8c8c0a",
  1057. "reference": "adfb1f505deb6384dc8b39804c5065dd3c8c8c0a",
  1058. "shasum": ""
  1059. },
  1060. "require": {
  1061. "php": "^7.2|^8.0",
  1062. "webmozart/assert": "^1.0"
  1063. },
  1064. "replace": {
  1065. "mtdowling/cron-expression": "^1.0"
  1066. },
  1067. "require-dev": {
  1068. "phpstan/extension-installer": "^1.0",
  1069. "phpstan/phpstan": "^1.0",
  1070. "phpstan/phpstan-webmozart-assert": "^1.0",
  1071. "phpunit/phpunit": "^7.0|^8.0|^9.0"
  1072. },
  1073. "type": "library",
  1074. "autoload": {
  1075. "psr-4": {
  1076. "Cron\\": "src/Cron/"
  1077. }
  1078. },
  1079. "notification-url": "https://packagist.org/downloads/",
  1080. "license": [
  1081. "MIT"
  1082. ],
  1083. "authors": [
  1084. {
  1085. "name": "Chris Tankersley",
  1086. "email": "chris@ctankersley.com",
  1087. "homepage": "https://github.com/dragonmantank"
  1088. }
  1089. ],
  1090. "description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due",
  1091. "keywords": [
  1092. "cron",
  1093. "schedule"
  1094. ],
  1095. "support": {
  1096. "issues": "https://github.com/dragonmantank/cron-expression/issues",
  1097. "source": "https://github.com/dragonmantank/cron-expression/tree/v3.3.3"
  1098. },
  1099. "funding": [
  1100. {
  1101. "url": "https://github.com/dragonmantank",
  1102. "type": "github"
  1103. }
  1104. ],
  1105. "time": "2023-08-10T19:36:49+00:00"
  1106. },
  1107. {
  1108. "name": "egulias/email-validator",
  1109. "version": "4.0.2",
  1110. "source": {
  1111. "type": "git",
  1112. "url": "https://github.com/egulias/EmailValidator.git",
  1113. "reference": "ebaaf5be6c0286928352e054f2d5125608e5405e"
  1114. },
  1115. "dist": {
  1116. "type": "zip",
  1117. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/ebaaf5be6c0286928352e054f2d5125608e5405e",
  1118. "reference": "ebaaf5be6c0286928352e054f2d5125608e5405e",
  1119. "shasum": ""
  1120. },
  1121. "require": {
  1122. "doctrine/lexer": "^2.0 || ^3.0",
  1123. "php": ">=8.1",
  1124. "symfony/polyfill-intl-idn": "^1.26"
  1125. },
  1126. "require-dev": {
  1127. "phpunit/phpunit": "^10.2",
  1128. "vimeo/psalm": "^5.12"
  1129. },
  1130. "suggest": {
  1131. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  1132. },
  1133. "type": "library",
  1134. "extra": {
  1135. "branch-alias": {
  1136. "dev-master": "4.0.x-dev"
  1137. }
  1138. },
  1139. "autoload": {
  1140. "psr-4": {
  1141. "Egulias\\EmailValidator\\": "src"
  1142. }
  1143. },
  1144. "notification-url": "https://packagist.org/downloads/",
  1145. "license": [
  1146. "MIT"
  1147. ],
  1148. "authors": [
  1149. {
  1150. "name": "Eduardo Gulias Davis"
  1151. }
  1152. ],
  1153. "description": "A library for validating emails against several RFCs",
  1154. "homepage": "https://github.com/egulias/EmailValidator",
  1155. "keywords": [
  1156. "email",
  1157. "emailvalidation",
  1158. "emailvalidator",
  1159. "validation",
  1160. "validator"
  1161. ],
  1162. "support": {
  1163. "issues": "https://github.com/egulias/EmailValidator/issues",
  1164. "source": "https://github.com/egulias/EmailValidator/tree/4.0.2"
  1165. },
  1166. "funding": [
  1167. {
  1168. "url": "https://github.com/egulias",
  1169. "type": "github"
  1170. }
  1171. ],
  1172. "time": "2023-10-06T06:47:41+00:00"
  1173. },
  1174. {
  1175. "name": "filament/actions",
  1176. "version": "v3.2.91",
  1177. "source": {
  1178. "type": "git",
  1179. "url": "https://github.com/filamentphp/actions.git",
  1180. "reference": "99bf5ed84e3a563250775c223928b185db0d4b7a"
  1181. },
  1182. "dist": {
  1183. "type": "zip",
  1184. "url": "https://api.github.com/repos/filamentphp/actions/zipball/99bf5ed84e3a563250775c223928b185db0d4b7a",
  1185. "reference": "99bf5ed84e3a563250775c223928b185db0d4b7a",
  1186. "shasum": ""
  1187. },
  1188. "require": {
  1189. "anourvalar/eloquent-serialize": "^1.2",
  1190. "filament/forms": "self.version",
  1191. "filament/infolists": "self.version",
  1192. "filament/notifications": "self.version",
  1193. "filament/support": "self.version",
  1194. "illuminate/contracts": "^10.45|^11.0",
  1195. "illuminate/database": "^10.45|^11.0",
  1196. "illuminate/support": "^10.45|^11.0",
  1197. "league/csv": "^9.14",
  1198. "openspout/openspout": "^4.23",
  1199. "php": "^8.1",
  1200. "spatie/laravel-package-tools": "^1.9"
  1201. },
  1202. "type": "library",
  1203. "extra": {
  1204. "laravel": {
  1205. "providers": [
  1206. "Filament\\Actions\\ActionsServiceProvider"
  1207. ]
  1208. }
  1209. },
  1210. "autoload": {
  1211. "psr-4": {
  1212. "Filament\\Actions\\": "src"
  1213. }
  1214. },
  1215. "notification-url": "https://packagist.org/downloads/",
  1216. "license": [
  1217. "MIT"
  1218. ],
  1219. "description": "Easily add beautiful action modals to any Livewire component.",
  1220. "homepage": "https://github.com/filamentphp/filament",
  1221. "support": {
  1222. "issues": "https://github.com/filamentphp/filament/issues",
  1223. "source": "https://github.com/filamentphp/filament"
  1224. },
  1225. "time": "2024-06-14T10:24:05+00:00"
  1226. },
  1227. {
  1228. "name": "filament/filament",
  1229. "version": "v3.2.91",
  1230. "source": {
  1231. "type": "git",
  1232. "url": "https://github.com/filamentphp/panels.git",
  1233. "reference": "4e1a260a78487375dc025acbdd07c3561aabd8e0"
  1234. },
  1235. "dist": {
  1236. "type": "zip",
  1237. "url": "https://api.github.com/repos/filamentphp/panels/zipball/4e1a260a78487375dc025acbdd07c3561aabd8e0",
  1238. "reference": "4e1a260a78487375dc025acbdd07c3561aabd8e0",
  1239. "shasum": ""
  1240. },
  1241. "require": {
  1242. "danharrin/livewire-rate-limiting": "^0.3|^1.0",
  1243. "filament/actions": "self.version",
  1244. "filament/forms": "self.version",
  1245. "filament/infolists": "self.version",
  1246. "filament/notifications": "self.version",
  1247. "filament/support": "self.version",
  1248. "filament/tables": "self.version",
  1249. "filament/widgets": "self.version",
  1250. "illuminate/auth": "^10.45|^11.0",
  1251. "illuminate/console": "^10.45|^11.0",
  1252. "illuminate/contracts": "^10.45|^11.0",
  1253. "illuminate/cookie": "^10.45|^11.0",
  1254. "illuminate/database": "^10.45|^11.0",
  1255. "illuminate/http": "^10.45|^11.0",
  1256. "illuminate/routing": "^10.45|^11.0",
  1257. "illuminate/session": "^10.45|^11.0",
  1258. "illuminate/support": "^10.45|^11.0",
  1259. "illuminate/view": "^10.45|^11.0",
  1260. "php": "^8.1",
  1261. "spatie/laravel-package-tools": "^1.9"
  1262. },
  1263. "type": "library",
  1264. "extra": {
  1265. "laravel": {
  1266. "providers": [
  1267. "Filament\\FilamentServiceProvider"
  1268. ]
  1269. }
  1270. },
  1271. "autoload": {
  1272. "files": [
  1273. "src/global_helpers.php",
  1274. "src/helpers.php"
  1275. ],
  1276. "psr-4": {
  1277. "Filament\\": "src"
  1278. }
  1279. },
  1280. "notification-url": "https://packagist.org/downloads/",
  1281. "license": [
  1282. "MIT"
  1283. ],
  1284. "description": "A collection of full-stack components for accelerated Laravel app development.",
  1285. "homepage": "https://github.com/filamentphp/filament",
  1286. "support": {
  1287. "issues": "https://github.com/filamentphp/filament/issues",
  1288. "source": "https://github.com/filamentphp/filament"
  1289. },
  1290. "time": "2024-06-14T10:24:14+00:00"
  1291. },
  1292. {
  1293. "name": "filament/forms",
  1294. "version": "v3.2.91",
  1295. "source": {
  1296. "type": "git",
  1297. "url": "https://github.com/filamentphp/forms.git",
  1298. "reference": "8708f598cf0bc1e747a8f59626d7166c7c94f149"
  1299. },
  1300. "dist": {
  1301. "type": "zip",
  1302. "url": "https://api.github.com/repos/filamentphp/forms/zipball/8708f598cf0bc1e747a8f59626d7166c7c94f149",
  1303. "reference": "8708f598cf0bc1e747a8f59626d7166c7c94f149",
  1304. "shasum": ""
  1305. },
  1306. "require": {
  1307. "danharrin/date-format-converter": "^0.3",
  1308. "filament/actions": "self.version",
  1309. "filament/support": "self.version",
  1310. "illuminate/console": "^10.45|^11.0",
  1311. "illuminate/contracts": "^10.45|^11.0",
  1312. "illuminate/database": "^10.45|^11.0",
  1313. "illuminate/filesystem": "^10.45|^11.0",
  1314. "illuminate/support": "^10.45|^11.0",
  1315. "illuminate/validation": "^10.45|^11.0",
  1316. "illuminate/view": "^10.45|^11.0",
  1317. "php": "^8.1",
  1318. "spatie/laravel-package-tools": "^1.9"
  1319. },
  1320. "type": "library",
  1321. "extra": {
  1322. "laravel": {
  1323. "providers": [
  1324. "Filament\\Forms\\FormsServiceProvider"
  1325. ]
  1326. }
  1327. },
  1328. "autoload": {
  1329. "files": [
  1330. "src/helpers.php"
  1331. ],
  1332. "psr-4": {
  1333. "Filament\\Forms\\": "src"
  1334. }
  1335. },
  1336. "notification-url": "https://packagist.org/downloads/",
  1337. "license": [
  1338. "MIT"
  1339. ],
  1340. "description": "Easily add beautiful forms to any Livewire component.",
  1341. "homepage": "https://github.com/filamentphp/filament",
  1342. "support": {
  1343. "issues": "https://github.com/filamentphp/filament/issues",
  1344. "source": "https://github.com/filamentphp/filament"
  1345. },
  1346. "time": "2024-06-14T10:24:06+00:00"
  1347. },
  1348. {
  1349. "name": "filament/infolists",
  1350. "version": "v3.2.91",
  1351. "source": {
  1352. "type": "git",
  1353. "url": "https://github.com/filamentphp/infolists.git",
  1354. "reference": "59909a1206fb9961f7bd3ceb993b7e7a0c4d2215"
  1355. },
  1356. "dist": {
  1357. "type": "zip",
  1358. "url": "https://api.github.com/repos/filamentphp/infolists/zipball/59909a1206fb9961f7bd3ceb993b7e7a0c4d2215",
  1359. "reference": "59909a1206fb9961f7bd3ceb993b7e7a0c4d2215",
  1360. "shasum": ""
  1361. },
  1362. "require": {
  1363. "filament/actions": "self.version",
  1364. "filament/support": "self.version",
  1365. "illuminate/console": "^10.45|^11.0",
  1366. "illuminate/contracts": "^10.45|^11.0",
  1367. "illuminate/database": "^10.45|^11.0",
  1368. "illuminate/filesystem": "^10.45|^11.0",
  1369. "illuminate/support": "^10.45|^11.0",
  1370. "illuminate/view": "^10.45|^11.0",
  1371. "php": "^8.1",
  1372. "spatie/laravel-package-tools": "^1.9"
  1373. },
  1374. "type": "library",
  1375. "extra": {
  1376. "laravel": {
  1377. "providers": [
  1378. "Filament\\Infolists\\InfolistsServiceProvider"
  1379. ]
  1380. }
  1381. },
  1382. "autoload": {
  1383. "psr-4": {
  1384. "Filament\\Infolists\\": "src"
  1385. }
  1386. },
  1387. "notification-url": "https://packagist.org/downloads/",
  1388. "license": [
  1389. "MIT"
  1390. ],
  1391. "description": "Easily add beautiful read-only infolists to any Livewire component.",
  1392. "homepage": "https://github.com/filamentphp/filament",
  1393. "support": {
  1394. "issues": "https://github.com/filamentphp/filament/issues",
  1395. "source": "https://github.com/filamentphp/filament"
  1396. },
  1397. "time": "2024-06-13T07:04:01+00:00"
  1398. },
  1399. {
  1400. "name": "filament/notifications",
  1401. "version": "v3.2.91",
  1402. "source": {
  1403. "type": "git",
  1404. "url": "https://github.com/filamentphp/notifications.git",
  1405. "reference": "a78b0be5e5b2a598e65ba62ae5cfbb3d464f6bbb"
  1406. },
  1407. "dist": {
  1408. "type": "zip",
  1409. "url": "https://api.github.com/repos/filamentphp/notifications/zipball/a78b0be5e5b2a598e65ba62ae5cfbb3d464f6bbb",
  1410. "reference": "a78b0be5e5b2a598e65ba62ae5cfbb3d464f6bbb",
  1411. "shasum": ""
  1412. },
  1413. "require": {
  1414. "filament/actions": "self.version",
  1415. "filament/support": "self.version",
  1416. "illuminate/contracts": "^10.45|^11.0",
  1417. "illuminate/filesystem": "^10.45|^11.0",
  1418. "illuminate/notifications": "^10.45|^11.0",
  1419. "illuminate/support": "^10.45|^11.0",
  1420. "php": "^8.1",
  1421. "spatie/laravel-package-tools": "^1.9"
  1422. },
  1423. "type": "library",
  1424. "extra": {
  1425. "laravel": {
  1426. "providers": [
  1427. "Filament\\Notifications\\NotificationsServiceProvider"
  1428. ]
  1429. }
  1430. },
  1431. "autoload": {
  1432. "files": [
  1433. "src/Testing/Autoload.php"
  1434. ],
  1435. "psr-4": {
  1436. "Filament\\Notifications\\": "src"
  1437. }
  1438. },
  1439. "notification-url": "https://packagist.org/downloads/",
  1440. "license": [
  1441. "MIT"
  1442. ],
  1443. "description": "Easily add beautiful notifications to any Livewire app.",
  1444. "homepage": "https://github.com/filamentphp/filament",
  1445. "support": {
  1446. "issues": "https://github.com/filamentphp/filament/issues",
  1447. "source": "https://github.com/filamentphp/filament"
  1448. },
  1449. "time": "2024-05-30T12:37:03+00:00"
  1450. },
  1451. {
  1452. "name": "filament/support",
  1453. "version": "v3.2.91",
  1454. "source": {
  1455. "type": "git",
  1456. "url": "https://github.com/filamentphp/support.git",
  1457. "reference": "852ec3783349d799141c302a4944d5303ece985d"
  1458. },
  1459. "dist": {
  1460. "type": "zip",
  1461. "url": "https://api.github.com/repos/filamentphp/support/zipball/852ec3783349d799141c302a4944d5303ece985d",
  1462. "reference": "852ec3783349d799141c302a4944d5303ece985d",
  1463. "shasum": ""
  1464. },
  1465. "require": {
  1466. "blade-ui-kit/blade-heroicons": "^2.2.1",
  1467. "doctrine/dbal": "^3.2",
  1468. "ext-intl": "*",
  1469. "illuminate/contracts": "^10.45|^11.0",
  1470. "illuminate/support": "^10.45|^11.0",
  1471. "illuminate/view": "^10.45|^11.0",
  1472. "livewire/livewire": "^3.4.10",
  1473. "php": "^8.1",
  1474. "ryangjchandler/blade-capture-directive": "^0.2|^0.3|^1.0",
  1475. "spatie/color": "^1.5",
  1476. "spatie/invade": "^1.0|^2.0",
  1477. "spatie/laravel-package-tools": "^1.9",
  1478. "symfony/console": "^6.0|^7.0",
  1479. "symfony/html-sanitizer": "^6.1|^7.0"
  1480. },
  1481. "type": "library",
  1482. "extra": {
  1483. "laravel": {
  1484. "providers": [
  1485. "Filament\\Support\\SupportServiceProvider"
  1486. ]
  1487. }
  1488. },
  1489. "autoload": {
  1490. "files": [
  1491. "src/helpers.php"
  1492. ],
  1493. "psr-4": {
  1494. "Filament\\Support\\": "src"
  1495. }
  1496. },
  1497. "notification-url": "https://packagist.org/downloads/",
  1498. "license": [
  1499. "MIT"
  1500. ],
  1501. "description": "Core helper methods and foundation code for all Filament packages.",
  1502. "homepage": "https://github.com/filamentphp/filament",
  1503. "support": {
  1504. "issues": "https://github.com/filamentphp/filament/issues",
  1505. "source": "https://github.com/filamentphp/filament"
  1506. },
  1507. "time": "2024-06-14T10:24:22+00:00"
  1508. },
  1509. {
  1510. "name": "filament/tables",
  1511. "version": "v3.2.91",
  1512. "source": {
  1513. "type": "git",
  1514. "url": "https://github.com/filamentphp/tables.git",
  1515. "reference": "34ea607f95e45d0bf9580d47294a179b1457e0e6"
  1516. },
  1517. "dist": {
  1518. "type": "zip",
  1519. "url": "https://api.github.com/repos/filamentphp/tables/zipball/34ea607f95e45d0bf9580d47294a179b1457e0e6",
  1520. "reference": "34ea607f95e45d0bf9580d47294a179b1457e0e6",
  1521. "shasum": ""
  1522. },
  1523. "require": {
  1524. "filament/actions": "self.version",
  1525. "filament/forms": "self.version",
  1526. "filament/support": "self.version",
  1527. "illuminate/console": "^10.45|^11.0",
  1528. "illuminate/contracts": "^10.45|^11.0",
  1529. "illuminate/database": "^10.45|^11.0",
  1530. "illuminate/filesystem": "^10.45|^11.0",
  1531. "illuminate/support": "^10.45|^11.0",
  1532. "illuminate/view": "^10.45|^11.0",
  1533. "kirschbaum-development/eloquent-power-joins": "^3.0",
  1534. "php": "^8.1",
  1535. "spatie/laravel-package-tools": "^1.9"
  1536. },
  1537. "type": "library",
  1538. "extra": {
  1539. "laravel": {
  1540. "providers": [
  1541. "Filament\\Tables\\TablesServiceProvider"
  1542. ]
  1543. }
  1544. },
  1545. "autoload": {
  1546. "psr-4": {
  1547. "Filament\\Tables\\": "src"
  1548. }
  1549. },
  1550. "notification-url": "https://packagist.org/downloads/",
  1551. "license": [
  1552. "MIT"
  1553. ],
  1554. "description": "Easily add beautiful tables to any Livewire component.",
  1555. "homepage": "https://github.com/filamentphp/filament",
  1556. "support": {
  1557. "issues": "https://github.com/filamentphp/filament/issues",
  1558. "source": "https://github.com/filamentphp/filament"
  1559. },
  1560. "time": "2024-06-13T07:04:15+00:00"
  1561. },
  1562. {
  1563. "name": "filament/widgets",
  1564. "version": "v3.2.91",
  1565. "source": {
  1566. "type": "git",
  1567. "url": "https://github.com/filamentphp/widgets.git",
  1568. "reference": "0253f4312909a17e2d80b70021daae3f1659e7da"
  1569. },
  1570. "dist": {
  1571. "type": "zip",
  1572. "url": "https://api.github.com/repos/filamentphp/widgets/zipball/0253f4312909a17e2d80b70021daae3f1659e7da",
  1573. "reference": "0253f4312909a17e2d80b70021daae3f1659e7da",
  1574. "shasum": ""
  1575. },
  1576. "require": {
  1577. "filament/support": "self.version",
  1578. "php": "^8.1",
  1579. "spatie/laravel-package-tools": "^1.9"
  1580. },
  1581. "type": "library",
  1582. "extra": {
  1583. "laravel": {
  1584. "providers": [
  1585. "Filament\\Widgets\\WidgetsServiceProvider"
  1586. ]
  1587. }
  1588. },
  1589. "autoload": {
  1590. "psr-4": {
  1591. "Filament\\Widgets\\": "src"
  1592. }
  1593. },
  1594. "notification-url": "https://packagist.org/downloads/",
  1595. "license": [
  1596. "MIT"
  1597. ],
  1598. "description": "Easily add beautiful dashboard widgets to any Livewire component.",
  1599. "homepage": "https://github.com/filamentphp/filament",
  1600. "support": {
  1601. "issues": "https://github.com/filamentphp/filament/issues",
  1602. "source": "https://github.com/filamentphp/filament"
  1603. },
  1604. "time": "2024-06-05T09:38:52+00:00"
  1605. },
  1606. {
  1607. "name": "fruitcake/php-cors",
  1608. "version": "v1.3.0",
  1609. "source": {
  1610. "type": "git",
  1611. "url": "https://github.com/fruitcake/php-cors.git",
  1612. "reference": "3d158f36e7875e2f040f37bc0573956240a5a38b"
  1613. },
  1614. "dist": {
  1615. "type": "zip",
  1616. "url": "https://api.github.com/repos/fruitcake/php-cors/zipball/3d158f36e7875e2f040f37bc0573956240a5a38b",
  1617. "reference": "3d158f36e7875e2f040f37bc0573956240a5a38b",
  1618. "shasum": ""
  1619. },
  1620. "require": {
  1621. "php": "^7.4|^8.0",
  1622. "symfony/http-foundation": "^4.4|^5.4|^6|^7"
  1623. },
  1624. "require-dev": {
  1625. "phpstan/phpstan": "^1.4",
  1626. "phpunit/phpunit": "^9",
  1627. "squizlabs/php_codesniffer": "^3.5"
  1628. },
  1629. "type": "library",
  1630. "extra": {
  1631. "branch-alias": {
  1632. "dev-master": "1.2-dev"
  1633. }
  1634. },
  1635. "autoload": {
  1636. "psr-4": {
  1637. "Fruitcake\\Cors\\": "src/"
  1638. }
  1639. },
  1640. "notification-url": "https://packagist.org/downloads/",
  1641. "license": [
  1642. "MIT"
  1643. ],
  1644. "authors": [
  1645. {
  1646. "name": "Fruitcake",
  1647. "homepage": "https://fruitcake.nl"
  1648. },
  1649. {
  1650. "name": "Barryvdh",
  1651. "email": "barryvdh@gmail.com"
  1652. }
  1653. ],
  1654. "description": "Cross-origin resource sharing library for the Symfony HttpFoundation",
  1655. "homepage": "https://github.com/fruitcake/php-cors",
  1656. "keywords": [
  1657. "cors",
  1658. "laravel",
  1659. "symfony"
  1660. ],
  1661. "support": {
  1662. "issues": "https://github.com/fruitcake/php-cors/issues",
  1663. "source": "https://github.com/fruitcake/php-cors/tree/v1.3.0"
  1664. },
  1665. "funding": [
  1666. {
  1667. "url": "https://fruitcake.nl",
  1668. "type": "custom"
  1669. },
  1670. {
  1671. "url": "https://github.com/barryvdh",
  1672. "type": "github"
  1673. }
  1674. ],
  1675. "time": "2023-10-12T05:21:21+00:00"
  1676. },
  1677. {
  1678. "name": "graham-campbell/result-type",
  1679. "version": "v1.1.2",
  1680. "source": {
  1681. "type": "git",
  1682. "url": "https://github.com/GrahamCampbell/Result-Type.git",
  1683. "reference": "fbd48bce38f73f8a4ec8583362e732e4095e5862"
  1684. },
  1685. "dist": {
  1686. "type": "zip",
  1687. "url": "https://api.github.com/repos/GrahamCampbell/Result-Type/zipball/fbd48bce38f73f8a4ec8583362e732e4095e5862",
  1688. "reference": "fbd48bce38f73f8a4ec8583362e732e4095e5862",
  1689. "shasum": ""
  1690. },
  1691. "require": {
  1692. "php": "^7.2.5 || ^8.0",
  1693. "phpoption/phpoption": "^1.9.2"
  1694. },
  1695. "require-dev": {
  1696. "phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2"
  1697. },
  1698. "type": "library",
  1699. "autoload": {
  1700. "psr-4": {
  1701. "GrahamCampbell\\ResultType\\": "src/"
  1702. }
  1703. },
  1704. "notification-url": "https://packagist.org/downloads/",
  1705. "license": [
  1706. "MIT"
  1707. ],
  1708. "authors": [
  1709. {
  1710. "name": "Graham Campbell",
  1711. "email": "hello@gjcampbell.co.uk",
  1712. "homepage": "https://github.com/GrahamCampbell"
  1713. }
  1714. ],
  1715. "description": "An Implementation Of The Result Type",
  1716. "keywords": [
  1717. "Graham Campbell",
  1718. "GrahamCampbell",
  1719. "Result Type",
  1720. "Result-Type",
  1721. "result"
  1722. ],
  1723. "support": {
  1724. "issues": "https://github.com/GrahamCampbell/Result-Type/issues",
  1725. "source": "https://github.com/GrahamCampbell/Result-Type/tree/v1.1.2"
  1726. },
  1727. "funding": [
  1728. {
  1729. "url": "https://github.com/GrahamCampbell",
  1730. "type": "github"
  1731. },
  1732. {
  1733. "url": "https://tidelift.com/funding/github/packagist/graham-campbell/result-type",
  1734. "type": "tidelift"
  1735. }
  1736. ],
  1737. "time": "2023-11-12T22:16:48+00:00"
  1738. },
  1739. {
  1740. "name": "guzzlehttp/guzzle",
  1741. "version": "7.8.1",
  1742. "source": {
  1743. "type": "git",
  1744. "url": "https://github.com/guzzle/guzzle.git",
  1745. "reference": "41042bc7ab002487b876a0683fc8dce04ddce104"
  1746. },
  1747. "dist": {
  1748. "type": "zip",
  1749. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/41042bc7ab002487b876a0683fc8dce04ddce104",
  1750. "reference": "41042bc7ab002487b876a0683fc8dce04ddce104",
  1751. "shasum": ""
  1752. },
  1753. "require": {
  1754. "ext-json": "*",
  1755. "guzzlehttp/promises": "^1.5.3 || ^2.0.1",
  1756. "guzzlehttp/psr7": "^1.9.1 || ^2.5.1",
  1757. "php": "^7.2.5 || ^8.0",
  1758. "psr/http-client": "^1.0",
  1759. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  1760. },
  1761. "provide": {
  1762. "psr/http-client-implementation": "1.0"
  1763. },
  1764. "require-dev": {
  1765. "bamarni/composer-bin-plugin": "^1.8.2",
  1766. "ext-curl": "*",
  1767. "php-http/client-integration-tests": "dev-master#2c025848417c1135031fdf9c728ee53d0a7ceaee as 3.0.999",
  1768. "php-http/message-factory": "^1.1",
  1769. "phpunit/phpunit": "^8.5.36 || ^9.6.15",
  1770. "psr/log": "^1.1 || ^2.0 || ^3.0"
  1771. },
  1772. "suggest": {
  1773. "ext-curl": "Required for CURL handler support",
  1774. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  1775. "psr/log": "Required for using the Log middleware"
  1776. },
  1777. "type": "library",
  1778. "extra": {
  1779. "bamarni-bin": {
  1780. "bin-links": true,
  1781. "forward-command": false
  1782. }
  1783. },
  1784. "autoload": {
  1785. "files": [
  1786. "src/functions_include.php"
  1787. ],
  1788. "psr-4": {
  1789. "GuzzleHttp\\": "src/"
  1790. }
  1791. },
  1792. "notification-url": "https://packagist.org/downloads/",
  1793. "license": [
  1794. "MIT"
  1795. ],
  1796. "authors": [
  1797. {
  1798. "name": "Graham Campbell",
  1799. "email": "hello@gjcampbell.co.uk",
  1800. "homepage": "https://github.com/GrahamCampbell"
  1801. },
  1802. {
  1803. "name": "Michael Dowling",
  1804. "email": "mtdowling@gmail.com",
  1805. "homepage": "https://github.com/mtdowling"
  1806. },
  1807. {
  1808. "name": "Jeremy Lindblom",
  1809. "email": "jeremeamia@gmail.com",
  1810. "homepage": "https://github.com/jeremeamia"
  1811. },
  1812. {
  1813. "name": "George Mponos",
  1814. "email": "gmponos@gmail.com",
  1815. "homepage": "https://github.com/gmponos"
  1816. },
  1817. {
  1818. "name": "Tobias Nyholm",
  1819. "email": "tobias.nyholm@gmail.com",
  1820. "homepage": "https://github.com/Nyholm"
  1821. },
  1822. {
  1823. "name": "Márk Sági-Kazár",
  1824. "email": "mark.sagikazar@gmail.com",
  1825. "homepage": "https://github.com/sagikazarmark"
  1826. },
  1827. {
  1828. "name": "Tobias Schultze",
  1829. "email": "webmaster@tubo-world.de",
  1830. "homepage": "https://github.com/Tobion"
  1831. }
  1832. ],
  1833. "description": "Guzzle is a PHP HTTP client library",
  1834. "keywords": [
  1835. "client",
  1836. "curl",
  1837. "framework",
  1838. "http",
  1839. "http client",
  1840. "psr-18",
  1841. "psr-7",
  1842. "rest",
  1843. "web service"
  1844. ],
  1845. "support": {
  1846. "issues": "https://github.com/guzzle/guzzle/issues",
  1847. "source": "https://github.com/guzzle/guzzle/tree/7.8.1"
  1848. },
  1849. "funding": [
  1850. {
  1851. "url": "https://github.com/GrahamCampbell",
  1852. "type": "github"
  1853. },
  1854. {
  1855. "url": "https://github.com/Nyholm",
  1856. "type": "github"
  1857. },
  1858. {
  1859. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
  1860. "type": "tidelift"
  1861. }
  1862. ],
  1863. "time": "2023-12-03T20:35:24+00:00"
  1864. },
  1865. {
  1866. "name": "guzzlehttp/promises",
  1867. "version": "2.0.2",
  1868. "source": {
  1869. "type": "git",
  1870. "url": "https://github.com/guzzle/promises.git",
  1871. "reference": "bbff78d96034045e58e13dedd6ad91b5d1253223"
  1872. },
  1873. "dist": {
  1874. "type": "zip",
  1875. "url": "https://api.github.com/repos/guzzle/promises/zipball/bbff78d96034045e58e13dedd6ad91b5d1253223",
  1876. "reference": "bbff78d96034045e58e13dedd6ad91b5d1253223",
  1877. "shasum": ""
  1878. },
  1879. "require": {
  1880. "php": "^7.2.5 || ^8.0"
  1881. },
  1882. "require-dev": {
  1883. "bamarni/composer-bin-plugin": "^1.8.2",
  1884. "phpunit/phpunit": "^8.5.36 || ^9.6.15"
  1885. },
  1886. "type": "library",
  1887. "extra": {
  1888. "bamarni-bin": {
  1889. "bin-links": true,
  1890. "forward-command": false
  1891. }
  1892. },
  1893. "autoload": {
  1894. "psr-4": {
  1895. "GuzzleHttp\\Promise\\": "src/"
  1896. }
  1897. },
  1898. "notification-url": "https://packagist.org/downloads/",
  1899. "license": [
  1900. "MIT"
  1901. ],
  1902. "authors": [
  1903. {
  1904. "name": "Graham Campbell",
  1905. "email": "hello@gjcampbell.co.uk",
  1906. "homepage": "https://github.com/GrahamCampbell"
  1907. },
  1908. {
  1909. "name": "Michael Dowling",
  1910. "email": "mtdowling@gmail.com",
  1911. "homepage": "https://github.com/mtdowling"
  1912. },
  1913. {
  1914. "name": "Tobias Nyholm",
  1915. "email": "tobias.nyholm@gmail.com",
  1916. "homepage": "https://github.com/Nyholm"
  1917. },
  1918. {
  1919. "name": "Tobias Schultze",
  1920. "email": "webmaster@tubo-world.de",
  1921. "homepage": "https://github.com/Tobion"
  1922. }
  1923. ],
  1924. "description": "Guzzle promises library",
  1925. "keywords": [
  1926. "promise"
  1927. ],
  1928. "support": {
  1929. "issues": "https://github.com/guzzle/promises/issues",
  1930. "source": "https://github.com/guzzle/promises/tree/2.0.2"
  1931. },
  1932. "funding": [
  1933. {
  1934. "url": "https://github.com/GrahamCampbell",
  1935. "type": "github"
  1936. },
  1937. {
  1938. "url": "https://github.com/Nyholm",
  1939. "type": "github"
  1940. },
  1941. {
  1942. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  1943. "type": "tidelift"
  1944. }
  1945. ],
  1946. "time": "2023-12-03T20:19:20+00:00"
  1947. },
  1948. {
  1949. "name": "guzzlehttp/psr7",
  1950. "version": "2.6.2",
  1951. "source": {
  1952. "type": "git",
  1953. "url": "https://github.com/guzzle/psr7.git",
  1954. "reference": "45b30f99ac27b5ca93cb4831afe16285f57b8221"
  1955. },
  1956. "dist": {
  1957. "type": "zip",
  1958. "url": "https://api.github.com/repos/guzzle/psr7/zipball/45b30f99ac27b5ca93cb4831afe16285f57b8221",
  1959. "reference": "45b30f99ac27b5ca93cb4831afe16285f57b8221",
  1960. "shasum": ""
  1961. },
  1962. "require": {
  1963. "php": "^7.2.5 || ^8.0",
  1964. "psr/http-factory": "^1.0",
  1965. "psr/http-message": "^1.1 || ^2.0",
  1966. "ralouphie/getallheaders": "^3.0"
  1967. },
  1968. "provide": {
  1969. "psr/http-factory-implementation": "1.0",
  1970. "psr/http-message-implementation": "1.0"
  1971. },
  1972. "require-dev": {
  1973. "bamarni/composer-bin-plugin": "^1.8.2",
  1974. "http-interop/http-factory-tests": "^0.9",
  1975. "phpunit/phpunit": "^8.5.36 || ^9.6.15"
  1976. },
  1977. "suggest": {
  1978. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  1979. },
  1980. "type": "library",
  1981. "extra": {
  1982. "bamarni-bin": {
  1983. "bin-links": true,
  1984. "forward-command": false
  1985. }
  1986. },
  1987. "autoload": {
  1988. "psr-4": {
  1989. "GuzzleHttp\\Psr7\\": "src/"
  1990. }
  1991. },
  1992. "notification-url": "https://packagist.org/downloads/",
  1993. "license": [
  1994. "MIT"
  1995. ],
  1996. "authors": [
  1997. {
  1998. "name": "Graham Campbell",
  1999. "email": "hello@gjcampbell.co.uk",
  2000. "homepage": "https://github.com/GrahamCampbell"
  2001. },
  2002. {
  2003. "name": "Michael Dowling",
  2004. "email": "mtdowling@gmail.com",
  2005. "homepage": "https://github.com/mtdowling"
  2006. },
  2007. {
  2008. "name": "George Mponos",
  2009. "email": "gmponos@gmail.com",
  2010. "homepage": "https://github.com/gmponos"
  2011. },
  2012. {
  2013. "name": "Tobias Nyholm",
  2014. "email": "tobias.nyholm@gmail.com",
  2015. "homepage": "https://github.com/Nyholm"
  2016. },
  2017. {
  2018. "name": "Márk Sági-Kazár",
  2019. "email": "mark.sagikazar@gmail.com",
  2020. "homepage": "https://github.com/sagikazarmark"
  2021. },
  2022. {
  2023. "name": "Tobias Schultze",
  2024. "email": "webmaster@tubo-world.de",
  2025. "homepage": "https://github.com/Tobion"
  2026. },
  2027. {
  2028. "name": "Márk Sági-Kazár",
  2029. "email": "mark.sagikazar@gmail.com",
  2030. "homepage": "https://sagikazarmark.hu"
  2031. }
  2032. ],
  2033. "description": "PSR-7 message implementation that also provides common utility methods",
  2034. "keywords": [
  2035. "http",
  2036. "message",
  2037. "psr-7",
  2038. "request",
  2039. "response",
  2040. "stream",
  2041. "uri",
  2042. "url"
  2043. ],
  2044. "support": {
  2045. "issues": "https://github.com/guzzle/psr7/issues",
  2046. "source": "https://github.com/guzzle/psr7/tree/2.6.2"
  2047. },
  2048. "funding": [
  2049. {
  2050. "url": "https://github.com/GrahamCampbell",
  2051. "type": "github"
  2052. },
  2053. {
  2054. "url": "https://github.com/Nyholm",
  2055. "type": "github"
  2056. },
  2057. {
  2058. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  2059. "type": "tidelift"
  2060. }
  2061. ],
  2062. "time": "2023-12-03T20:05:35+00:00"
  2063. },
  2064. {
  2065. "name": "guzzlehttp/uri-template",
  2066. "version": "v1.0.3",
  2067. "source": {
  2068. "type": "git",
  2069. "url": "https://github.com/guzzle/uri-template.git",
  2070. "reference": "ecea8feef63bd4fef1f037ecb288386999ecc11c"
  2071. },
  2072. "dist": {
  2073. "type": "zip",
  2074. "url": "https://api.github.com/repos/guzzle/uri-template/zipball/ecea8feef63bd4fef1f037ecb288386999ecc11c",
  2075. "reference": "ecea8feef63bd4fef1f037ecb288386999ecc11c",
  2076. "shasum": ""
  2077. },
  2078. "require": {
  2079. "php": "^7.2.5 || ^8.0",
  2080. "symfony/polyfill-php80": "^1.24"
  2081. },
  2082. "require-dev": {
  2083. "bamarni/composer-bin-plugin": "^1.8.2",
  2084. "phpunit/phpunit": "^8.5.36 || ^9.6.15",
  2085. "uri-template/tests": "1.0.0"
  2086. },
  2087. "type": "library",
  2088. "extra": {
  2089. "bamarni-bin": {
  2090. "bin-links": true,
  2091. "forward-command": false
  2092. }
  2093. },
  2094. "autoload": {
  2095. "psr-4": {
  2096. "GuzzleHttp\\UriTemplate\\": "src"
  2097. }
  2098. },
  2099. "notification-url": "https://packagist.org/downloads/",
  2100. "license": [
  2101. "MIT"
  2102. ],
  2103. "authors": [
  2104. {
  2105. "name": "Graham Campbell",
  2106. "email": "hello@gjcampbell.co.uk",
  2107. "homepage": "https://github.com/GrahamCampbell"
  2108. },
  2109. {
  2110. "name": "Michael Dowling",
  2111. "email": "mtdowling@gmail.com",
  2112. "homepage": "https://github.com/mtdowling"
  2113. },
  2114. {
  2115. "name": "George Mponos",
  2116. "email": "gmponos@gmail.com",
  2117. "homepage": "https://github.com/gmponos"
  2118. },
  2119. {
  2120. "name": "Tobias Nyholm",
  2121. "email": "tobias.nyholm@gmail.com",
  2122. "homepage": "https://github.com/Nyholm"
  2123. }
  2124. ],
  2125. "description": "A polyfill class for uri_template of PHP",
  2126. "keywords": [
  2127. "guzzlehttp",
  2128. "uri-template"
  2129. ],
  2130. "support": {
  2131. "issues": "https://github.com/guzzle/uri-template/issues",
  2132. "source": "https://github.com/guzzle/uri-template/tree/v1.0.3"
  2133. },
  2134. "funding": [
  2135. {
  2136. "url": "https://github.com/GrahamCampbell",
  2137. "type": "github"
  2138. },
  2139. {
  2140. "url": "https://github.com/Nyholm",
  2141. "type": "github"
  2142. },
  2143. {
  2144. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/uri-template",
  2145. "type": "tidelift"
  2146. }
  2147. ],
  2148. "time": "2023-12-03T19:50:20+00:00"
  2149. },
  2150. {
  2151. "name": "kirschbaum-development/eloquent-power-joins",
  2152. "version": "3.5.6",
  2153. "source": {
  2154. "type": "git",
  2155. "url": "https://github.com/kirschbaum-development/eloquent-power-joins.git",
  2156. "reference": "6de51d9ec43af34e77bd1d9908173de1416a0aed"
  2157. },
  2158. "dist": {
  2159. "type": "zip",
  2160. "url": "https://api.github.com/repos/kirschbaum-development/eloquent-power-joins/zipball/6de51d9ec43af34e77bd1d9908173de1416a0aed",
  2161. "reference": "6de51d9ec43af34e77bd1d9908173de1416a0aed",
  2162. "shasum": ""
  2163. },
  2164. "require": {
  2165. "illuminate/database": "^8.0|^9.0|^10.0|^11.0",
  2166. "illuminate/support": "^8.0|^9.0|^10.0|^11.0",
  2167. "php": "^8.0"
  2168. },
  2169. "require-dev": {
  2170. "laravel/legacy-factories": "^1.0@dev",
  2171. "orchestra/testbench": "^4.0|^5.0|^6.0|^7.0|^8.0|^9.0",
  2172. "phpunit/phpunit": "^8.0|^9.0|^10.0"
  2173. },
  2174. "type": "library",
  2175. "extra": {
  2176. "laravel": {
  2177. "providers": [
  2178. "Kirschbaum\\PowerJoins\\PowerJoinsServiceProvider"
  2179. ]
  2180. }
  2181. },
  2182. "autoload": {
  2183. "psr-4": {
  2184. "Kirschbaum\\PowerJoins\\": "src"
  2185. }
  2186. },
  2187. "notification-url": "https://packagist.org/downloads/",
  2188. "license": [
  2189. "MIT"
  2190. ],
  2191. "authors": [
  2192. {
  2193. "name": "Luis Dalmolin",
  2194. "email": "luis.nh@gmail.com",
  2195. "role": "Developer"
  2196. }
  2197. ],
  2198. "description": "The Laravel magic applied to joins.",
  2199. "homepage": "https://github.com/kirschbaum-development/eloquent-power-joins",
  2200. "keywords": [
  2201. "eloquent",
  2202. "join",
  2203. "laravel",
  2204. "mysql"
  2205. ],
  2206. "support": {
  2207. "issues": "https://github.com/kirschbaum-development/eloquent-power-joins/issues",
  2208. "source": "https://github.com/kirschbaum-development/eloquent-power-joins/tree/3.5.6"
  2209. },
  2210. "time": "2024-04-09T00:35:30+00:00"
  2211. },
  2212. {
  2213. "name": "laravel/framework",
  2214. "version": "v10.48.12",
  2215. "source": {
  2216. "type": "git",
  2217. "url": "https://github.com/laravel/framework.git",
  2218. "reference": "590afea38e708022662629fbf5184351fa82cf08"
  2219. },
  2220. "dist": {
  2221. "type": "zip",
  2222. "url": "https://api.github.com/repos/laravel/framework/zipball/590afea38e708022662629fbf5184351fa82cf08",
  2223. "reference": "590afea38e708022662629fbf5184351fa82cf08",
  2224. "shasum": ""
  2225. },
  2226. "require": {
  2227. "brick/math": "^0.9.3|^0.10.2|^0.11|^0.12",
  2228. "composer-runtime-api": "^2.2",
  2229. "doctrine/inflector": "^2.0.5",
  2230. "dragonmantank/cron-expression": "^3.3.2",
  2231. "egulias/email-validator": "^3.2.1|^4.0",
  2232. "ext-ctype": "*",
  2233. "ext-filter": "*",
  2234. "ext-hash": "*",
  2235. "ext-mbstring": "*",
  2236. "ext-openssl": "*",
  2237. "ext-session": "*",
  2238. "ext-tokenizer": "*",
  2239. "fruitcake/php-cors": "^1.2",
  2240. "guzzlehttp/uri-template": "^1.0",
  2241. "laravel/prompts": "^0.1.9",
  2242. "laravel/serializable-closure": "^1.3",
  2243. "league/commonmark": "^2.2.1",
  2244. "league/flysystem": "^3.8.0",
  2245. "monolog/monolog": "^3.0",
  2246. "nesbot/carbon": "^2.67",
  2247. "nunomaduro/termwind": "^1.13",
  2248. "php": "^8.1",
  2249. "psr/container": "^1.1.1|^2.0.1",
  2250. "psr/log": "^1.0|^2.0|^3.0",
  2251. "psr/simple-cache": "^1.0|^2.0|^3.0",
  2252. "ramsey/uuid": "^4.7",
  2253. "symfony/console": "^6.2",
  2254. "symfony/error-handler": "^6.2",
  2255. "symfony/finder": "^6.2",
  2256. "symfony/http-foundation": "^6.4",
  2257. "symfony/http-kernel": "^6.2",
  2258. "symfony/mailer": "^6.2",
  2259. "symfony/mime": "^6.2",
  2260. "symfony/process": "^6.2",
  2261. "symfony/routing": "^6.2",
  2262. "symfony/uid": "^6.2",
  2263. "symfony/var-dumper": "^6.2",
  2264. "tijsverkoyen/css-to-inline-styles": "^2.2.5",
  2265. "vlucas/phpdotenv": "^5.4.1",
  2266. "voku/portable-ascii": "^2.0"
  2267. },
  2268. "conflict": {
  2269. "carbonphp/carbon-doctrine-types": ">=3.0",
  2270. "doctrine/dbal": ">=4.0",
  2271. "mockery/mockery": "1.6.8",
  2272. "phpunit/phpunit": ">=11.0.0",
  2273. "tightenco/collect": "<5.5.33"
  2274. },
  2275. "provide": {
  2276. "psr/container-implementation": "1.1|2.0",
  2277. "psr/simple-cache-implementation": "1.0|2.0|3.0"
  2278. },
  2279. "replace": {
  2280. "illuminate/auth": "self.version",
  2281. "illuminate/broadcasting": "self.version",
  2282. "illuminate/bus": "self.version",
  2283. "illuminate/cache": "self.version",
  2284. "illuminate/collections": "self.version",
  2285. "illuminate/conditionable": "self.version",
  2286. "illuminate/config": "self.version",
  2287. "illuminate/console": "self.version",
  2288. "illuminate/container": "self.version",
  2289. "illuminate/contracts": "self.version",
  2290. "illuminate/cookie": "self.version",
  2291. "illuminate/database": "self.version",
  2292. "illuminate/encryption": "self.version",
  2293. "illuminate/events": "self.version",
  2294. "illuminate/filesystem": "self.version",
  2295. "illuminate/hashing": "self.version",
  2296. "illuminate/http": "self.version",
  2297. "illuminate/log": "self.version",
  2298. "illuminate/macroable": "self.version",
  2299. "illuminate/mail": "self.version",
  2300. "illuminate/notifications": "self.version",
  2301. "illuminate/pagination": "self.version",
  2302. "illuminate/pipeline": "self.version",
  2303. "illuminate/process": "self.version",
  2304. "illuminate/queue": "self.version",
  2305. "illuminate/redis": "self.version",
  2306. "illuminate/routing": "self.version",
  2307. "illuminate/session": "self.version",
  2308. "illuminate/support": "self.version",
  2309. "illuminate/testing": "self.version",
  2310. "illuminate/translation": "self.version",
  2311. "illuminate/validation": "self.version",
  2312. "illuminate/view": "self.version"
  2313. },
  2314. "require-dev": {
  2315. "ably/ably-php": "^1.0",
  2316. "aws/aws-sdk-php": "^3.235.5",
  2317. "doctrine/dbal": "^3.5.1",
  2318. "ext-gmp": "*",
  2319. "fakerphp/faker": "^1.21",
  2320. "guzzlehttp/guzzle": "^7.5",
  2321. "league/flysystem-aws-s3-v3": "^3.0",
  2322. "league/flysystem-ftp": "^3.0",
  2323. "league/flysystem-path-prefixing": "^3.3",
  2324. "league/flysystem-read-only": "^3.3",
  2325. "league/flysystem-sftp-v3": "^3.0",
  2326. "mockery/mockery": "^1.5.1",
  2327. "nyholm/psr7": "^1.2",
  2328. "orchestra/testbench-core": "^8.23.4",
  2329. "pda/pheanstalk": "^4.0",
  2330. "phpstan/phpstan": "^1.4.7",
  2331. "phpunit/phpunit": "^10.0.7",
  2332. "predis/predis": "^2.0.2",
  2333. "symfony/cache": "^6.2",
  2334. "symfony/http-client": "^6.2.4",
  2335. "symfony/psr-http-message-bridge": "^2.0"
  2336. },
  2337. "suggest": {
  2338. "ably/ably-php": "Required to use the Ably broadcast driver (^1.0).",
  2339. "aws/aws-sdk-php": "Required to use the SQS queue driver, DynamoDb failed job storage, and SES mail driver (^3.235.5).",
  2340. "brianium/paratest": "Required to run tests in parallel (^6.0).",
  2341. "doctrine/dbal": "Required to rename columns and drop SQLite columns (^3.5.1).",
  2342. "ext-apcu": "Required to use the APC cache driver.",
  2343. "ext-fileinfo": "Required to use the Filesystem class.",
  2344. "ext-ftp": "Required to use the Flysystem FTP driver.",
  2345. "ext-gd": "Required to use Illuminate\\Http\\Testing\\FileFactory::image().",
  2346. "ext-memcached": "Required to use the memcache cache driver.",
  2347. "ext-pcntl": "Required to use all features of the queue worker and console signal trapping.",
  2348. "ext-pdo": "Required to use all database features.",
  2349. "ext-posix": "Required to use all features of the queue worker.",
  2350. "ext-redis": "Required to use the Redis cache and queue drivers (^4.0|^5.0).",
  2351. "fakerphp/faker": "Required to use the eloquent factory builder (^1.9.1).",
  2352. "filp/whoops": "Required for friendly error pages in development (^2.14.3).",
  2353. "guzzlehttp/guzzle": "Required to use the HTTP Client and the ping methods on schedules (^7.5).",
  2354. "laravel/tinker": "Required to use the tinker console command (^2.0).",
  2355. "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (^3.0).",
  2356. "league/flysystem-ftp": "Required to use the Flysystem FTP driver (^3.0).",
  2357. "league/flysystem-path-prefixing": "Required to use the scoped driver (^3.3).",
  2358. "league/flysystem-read-only": "Required to use read-only disks (^3.3)",
  2359. "league/flysystem-sftp-v3": "Required to use the Flysystem SFTP driver (^3.0).",
  2360. "mockery/mockery": "Required to use mocking (^1.5.1).",
  2361. "nyholm/psr7": "Required to use PSR-7 bridging features (^1.2).",
  2362. "pda/pheanstalk": "Required to use the beanstalk queue driver (^4.0).",
  2363. "phpunit/phpunit": "Required to use assertions and run tests (^9.5.8|^10.0.7).",
  2364. "predis/predis": "Required to use the predis connector (^2.0.2).",
  2365. "psr/http-message": "Required to allow Storage::put to accept a StreamInterface (^1.0).",
  2366. "pusher/pusher-php-server": "Required to use the Pusher broadcast driver (^6.0|^7.0).",
  2367. "symfony/cache": "Required to PSR-6 cache bridge (^6.2).",
  2368. "symfony/filesystem": "Required to enable support for relative symbolic links (^6.2).",
  2369. "symfony/http-client": "Required to enable support for the Symfony API mail transports (^6.2).",
  2370. "symfony/mailgun-mailer": "Required to enable support for the Mailgun mail transport (^6.2).",
  2371. "symfony/postmark-mailer": "Required to enable support for the Postmark mail transport (^6.2).",
  2372. "symfony/psr-http-message-bridge": "Required to use PSR-7 bridging features (^2.0)."
  2373. },
  2374. "type": "library",
  2375. "extra": {
  2376. "branch-alias": {
  2377. "dev-master": "10.x-dev"
  2378. }
  2379. },
  2380. "autoload": {
  2381. "files": [
  2382. "src/Illuminate/Collections/helpers.php",
  2383. "src/Illuminate/Events/functions.php",
  2384. "src/Illuminate/Filesystem/functions.php",
  2385. "src/Illuminate/Foundation/helpers.php",
  2386. "src/Illuminate/Support/helpers.php"
  2387. ],
  2388. "psr-4": {
  2389. "Illuminate\\": "src/Illuminate/",
  2390. "Illuminate\\Support\\": [
  2391. "src/Illuminate/Macroable/",
  2392. "src/Illuminate/Collections/",
  2393. "src/Illuminate/Conditionable/"
  2394. ]
  2395. }
  2396. },
  2397. "notification-url": "https://packagist.org/downloads/",
  2398. "license": [
  2399. "MIT"
  2400. ],
  2401. "authors": [
  2402. {
  2403. "name": "Taylor Otwell",
  2404. "email": "taylor@laravel.com"
  2405. }
  2406. ],
  2407. "description": "The Laravel Framework.",
  2408. "homepage": "https://laravel.com",
  2409. "keywords": [
  2410. "framework",
  2411. "laravel"
  2412. ],
  2413. "support": {
  2414. "issues": "https://github.com/laravel/framework/issues",
  2415. "source": "https://github.com/laravel/framework"
  2416. },
  2417. "time": "2024-05-28T15:46:19+00:00"
  2418. },
  2419. {
  2420. "name": "laravel/prompts",
  2421. "version": "v0.1.23",
  2422. "source": {
  2423. "type": "git",
  2424. "url": "https://github.com/laravel/prompts.git",
  2425. "reference": "9bc4df7c699b0452c6b815e64a2d84b6d7f99400"
  2426. },
  2427. "dist": {
  2428. "type": "zip",
  2429. "url": "https://api.github.com/repos/laravel/prompts/zipball/9bc4df7c699b0452c6b815e64a2d84b6d7f99400",
  2430. "reference": "9bc4df7c699b0452c6b815e64a2d84b6d7f99400",
  2431. "shasum": ""
  2432. },
  2433. "require": {
  2434. "ext-mbstring": "*",
  2435. "illuminate/collections": "^10.0|^11.0",
  2436. "php": "^8.1",
  2437. "symfony/console": "^6.2|^7.0"
  2438. },
  2439. "conflict": {
  2440. "illuminate/console": ">=10.17.0 <10.25.0",
  2441. "laravel/framework": ">=10.17.0 <10.25.0"
  2442. },
  2443. "require-dev": {
  2444. "mockery/mockery": "^1.5",
  2445. "pestphp/pest": "^2.3",
  2446. "phpstan/phpstan": "^1.11",
  2447. "phpstan/phpstan-mockery": "^1.1"
  2448. },
  2449. "suggest": {
  2450. "ext-pcntl": "Required for the spinner to be animated."
  2451. },
  2452. "type": "library",
  2453. "extra": {
  2454. "branch-alias": {
  2455. "dev-main": "0.1.x-dev"
  2456. }
  2457. },
  2458. "autoload": {
  2459. "files": [
  2460. "src/helpers.php"
  2461. ],
  2462. "psr-4": {
  2463. "Laravel\\Prompts\\": "src/"
  2464. }
  2465. },
  2466. "notification-url": "https://packagist.org/downloads/",
  2467. "license": [
  2468. "MIT"
  2469. ],
  2470. "description": "Add beautiful and user-friendly forms to your command-line applications.",
  2471. "support": {
  2472. "issues": "https://github.com/laravel/prompts/issues",
  2473. "source": "https://github.com/laravel/prompts/tree/v0.1.23"
  2474. },
  2475. "time": "2024-05-27T13:53:20+00:00"
  2476. },
  2477. {
  2478. "name": "laravel/sanctum",
  2479. "version": "v3.3.3",
  2480. "source": {
  2481. "type": "git",
  2482. "url": "https://github.com/laravel/sanctum.git",
  2483. "reference": "8c104366459739f3ada0e994bcd3e6fd681ce3d5"
  2484. },
  2485. "dist": {
  2486. "type": "zip",
  2487. "url": "https://api.github.com/repos/laravel/sanctum/zipball/8c104366459739f3ada0e994bcd3e6fd681ce3d5",
  2488. "reference": "8c104366459739f3ada0e994bcd3e6fd681ce3d5",
  2489. "shasum": ""
  2490. },
  2491. "require": {
  2492. "ext-json": "*",
  2493. "illuminate/console": "^9.21|^10.0",
  2494. "illuminate/contracts": "^9.21|^10.0",
  2495. "illuminate/database": "^9.21|^10.0",
  2496. "illuminate/support": "^9.21|^10.0",
  2497. "php": "^8.0.2"
  2498. },
  2499. "require-dev": {
  2500. "mockery/mockery": "^1.0",
  2501. "orchestra/testbench": "^7.28.2|^8.8.3",
  2502. "phpstan/phpstan": "^1.10",
  2503. "phpunit/phpunit": "^9.6"
  2504. },
  2505. "type": "library",
  2506. "extra": {
  2507. "branch-alias": {
  2508. "dev-master": "3.x-dev"
  2509. },
  2510. "laravel": {
  2511. "providers": [
  2512. "Laravel\\Sanctum\\SanctumServiceProvider"
  2513. ]
  2514. }
  2515. },
  2516. "autoload": {
  2517. "psr-4": {
  2518. "Laravel\\Sanctum\\": "src/"
  2519. }
  2520. },
  2521. "notification-url": "https://packagist.org/downloads/",
  2522. "license": [
  2523. "MIT"
  2524. ],
  2525. "authors": [
  2526. {
  2527. "name": "Taylor Otwell",
  2528. "email": "taylor@laravel.com"
  2529. }
  2530. ],
  2531. "description": "Laravel Sanctum provides a featherweight authentication system for SPAs and simple APIs.",
  2532. "keywords": [
  2533. "auth",
  2534. "laravel",
  2535. "sanctum"
  2536. ],
  2537. "support": {
  2538. "issues": "https://github.com/laravel/sanctum/issues",
  2539. "source": "https://github.com/laravel/sanctum"
  2540. },
  2541. "time": "2023-12-19T18:44:48+00:00"
  2542. },
  2543. {
  2544. "name": "laravel/serializable-closure",
  2545. "version": "v1.3.3",
  2546. "source": {
  2547. "type": "git",
  2548. "url": "https://github.com/laravel/serializable-closure.git",
  2549. "reference": "3dbf8a8e914634c48d389c1234552666b3d43754"
  2550. },
  2551. "dist": {
  2552. "type": "zip",
  2553. "url": "https://api.github.com/repos/laravel/serializable-closure/zipball/3dbf8a8e914634c48d389c1234552666b3d43754",
  2554. "reference": "3dbf8a8e914634c48d389c1234552666b3d43754",
  2555. "shasum": ""
  2556. },
  2557. "require": {
  2558. "php": "^7.3|^8.0"
  2559. },
  2560. "require-dev": {
  2561. "nesbot/carbon": "^2.61",
  2562. "pestphp/pest": "^1.21.3",
  2563. "phpstan/phpstan": "^1.8.2",
  2564. "symfony/var-dumper": "^5.4.11"
  2565. },
  2566. "type": "library",
  2567. "extra": {
  2568. "branch-alias": {
  2569. "dev-master": "1.x-dev"
  2570. }
  2571. },
  2572. "autoload": {
  2573. "psr-4": {
  2574. "Laravel\\SerializableClosure\\": "src/"
  2575. }
  2576. },
  2577. "notification-url": "https://packagist.org/downloads/",
  2578. "license": [
  2579. "MIT"
  2580. ],
  2581. "authors": [
  2582. {
  2583. "name": "Taylor Otwell",
  2584. "email": "taylor@laravel.com"
  2585. },
  2586. {
  2587. "name": "Nuno Maduro",
  2588. "email": "nuno@laravel.com"
  2589. }
  2590. ],
  2591. "description": "Laravel Serializable Closure provides an easy and secure way to serialize closures in PHP.",
  2592. "keywords": [
  2593. "closure",
  2594. "laravel",
  2595. "serializable"
  2596. ],
  2597. "support": {
  2598. "issues": "https://github.com/laravel/serializable-closure/issues",
  2599. "source": "https://github.com/laravel/serializable-closure"
  2600. },
  2601. "time": "2023-11-08T14:08:06+00:00"
  2602. },
  2603. {
  2604. "name": "laravel/tinker",
  2605. "version": "v2.9.0",
  2606. "source": {
  2607. "type": "git",
  2608. "url": "https://github.com/laravel/tinker.git",
  2609. "reference": "502e0fe3f0415d06d5db1f83a472f0f3b754bafe"
  2610. },
  2611. "dist": {
  2612. "type": "zip",
  2613. "url": "https://api.github.com/repos/laravel/tinker/zipball/502e0fe3f0415d06d5db1f83a472f0f3b754bafe",
  2614. "reference": "502e0fe3f0415d06d5db1f83a472f0f3b754bafe",
  2615. "shasum": ""
  2616. },
  2617. "require": {
  2618. "illuminate/console": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
  2619. "illuminate/contracts": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
  2620. "illuminate/support": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
  2621. "php": "^7.2.5|^8.0",
  2622. "psy/psysh": "^0.11.1|^0.12.0",
  2623. "symfony/var-dumper": "^4.3.4|^5.0|^6.0|^7.0"
  2624. },
  2625. "require-dev": {
  2626. "mockery/mockery": "~1.3.3|^1.4.2",
  2627. "phpstan/phpstan": "^1.10",
  2628. "phpunit/phpunit": "^8.5.8|^9.3.3"
  2629. },
  2630. "suggest": {
  2631. "illuminate/database": "The Illuminate Database package (^6.0|^7.0|^8.0|^9.0|^10.0|^11.0)."
  2632. },
  2633. "type": "library",
  2634. "extra": {
  2635. "laravel": {
  2636. "providers": [
  2637. "Laravel\\Tinker\\TinkerServiceProvider"
  2638. ]
  2639. }
  2640. },
  2641. "autoload": {
  2642. "psr-4": {
  2643. "Laravel\\Tinker\\": "src/"
  2644. }
  2645. },
  2646. "notification-url": "https://packagist.org/downloads/",
  2647. "license": [
  2648. "MIT"
  2649. ],
  2650. "authors": [
  2651. {
  2652. "name": "Taylor Otwell",
  2653. "email": "taylor@laravel.com"
  2654. }
  2655. ],
  2656. "description": "Powerful REPL for the Laravel framework.",
  2657. "keywords": [
  2658. "REPL",
  2659. "Tinker",
  2660. "laravel",
  2661. "psysh"
  2662. ],
  2663. "support": {
  2664. "issues": "https://github.com/laravel/tinker/issues",
  2665. "source": "https://github.com/laravel/tinker/tree/v2.9.0"
  2666. },
  2667. "time": "2024-01-04T16:10:04+00:00"
  2668. },
  2669. {
  2670. "name": "league/commonmark",
  2671. "version": "2.4.2",
  2672. "source": {
  2673. "type": "git",
  2674. "url": "https://github.com/thephpleague/commonmark.git",
  2675. "reference": "91c24291965bd6d7c46c46a12ba7492f83b1cadf"
  2676. },
  2677. "dist": {
  2678. "type": "zip",
  2679. "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/91c24291965bd6d7c46c46a12ba7492f83b1cadf",
  2680. "reference": "91c24291965bd6d7c46c46a12ba7492f83b1cadf",
  2681. "shasum": ""
  2682. },
  2683. "require": {
  2684. "ext-mbstring": "*",
  2685. "league/config": "^1.1.1",
  2686. "php": "^7.4 || ^8.0",
  2687. "psr/event-dispatcher": "^1.0",
  2688. "symfony/deprecation-contracts": "^2.1 || ^3.0",
  2689. "symfony/polyfill-php80": "^1.16"
  2690. },
  2691. "require-dev": {
  2692. "cebe/markdown": "^1.0",
  2693. "commonmark/cmark": "0.30.3",
  2694. "commonmark/commonmark.js": "0.30.0",
  2695. "composer/package-versions-deprecated": "^1.8",
  2696. "embed/embed": "^4.4",
  2697. "erusev/parsedown": "^1.0",
  2698. "ext-json": "*",
  2699. "github/gfm": "0.29.0",
  2700. "michelf/php-markdown": "^1.4 || ^2.0",
  2701. "nyholm/psr7": "^1.5",
  2702. "phpstan/phpstan": "^1.8.2",
  2703. "phpunit/phpunit": "^9.5.21 || ^10.5.9 || ^11.0.0",
  2704. "scrutinizer/ocular": "^1.8.1",
  2705. "symfony/finder": "^5.3 | ^6.0 || ^7.0",
  2706. "symfony/yaml": "^2.3 | ^3.0 | ^4.0 | ^5.0 | ^6.0 || ^7.0",
  2707. "unleashedtech/php-coding-standard": "^3.1.1",
  2708. "vimeo/psalm": "^4.24.0 || ^5.0.0"
  2709. },
  2710. "suggest": {
  2711. "symfony/yaml": "v2.3+ required if using the Front Matter extension"
  2712. },
  2713. "type": "library",
  2714. "extra": {
  2715. "branch-alias": {
  2716. "dev-main": "2.5-dev"
  2717. }
  2718. },
  2719. "autoload": {
  2720. "psr-4": {
  2721. "League\\CommonMark\\": "src"
  2722. }
  2723. },
  2724. "notification-url": "https://packagist.org/downloads/",
  2725. "license": [
  2726. "BSD-3-Clause"
  2727. ],
  2728. "authors": [
  2729. {
  2730. "name": "Colin O'Dell",
  2731. "email": "colinodell@gmail.com",
  2732. "homepage": "https://www.colinodell.com",
  2733. "role": "Lead Developer"
  2734. }
  2735. ],
  2736. "description": "Highly-extensible PHP Markdown parser which fully supports the CommonMark spec and GitHub-Flavored Markdown (GFM)",
  2737. "homepage": "https://commonmark.thephpleague.com",
  2738. "keywords": [
  2739. "commonmark",
  2740. "flavored",
  2741. "gfm",
  2742. "github",
  2743. "github-flavored",
  2744. "markdown",
  2745. "md",
  2746. "parser"
  2747. ],
  2748. "support": {
  2749. "docs": "https://commonmark.thephpleague.com/",
  2750. "forum": "https://github.com/thephpleague/commonmark/discussions",
  2751. "issues": "https://github.com/thephpleague/commonmark/issues",
  2752. "rss": "https://github.com/thephpleague/commonmark/releases.atom",
  2753. "source": "https://github.com/thephpleague/commonmark"
  2754. },
  2755. "funding": [
  2756. {
  2757. "url": "https://www.colinodell.com/sponsor",
  2758. "type": "custom"
  2759. },
  2760. {
  2761. "url": "https://www.paypal.me/colinpodell/10.00",
  2762. "type": "custom"
  2763. },
  2764. {
  2765. "url": "https://github.com/colinodell",
  2766. "type": "github"
  2767. },
  2768. {
  2769. "url": "https://tidelift.com/funding/github/packagist/league/commonmark",
  2770. "type": "tidelift"
  2771. }
  2772. ],
  2773. "time": "2024-02-02T11:59:32+00:00"
  2774. },
  2775. {
  2776. "name": "league/config",
  2777. "version": "v1.2.0",
  2778. "source": {
  2779. "type": "git",
  2780. "url": "https://github.com/thephpleague/config.git",
  2781. "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3"
  2782. },
  2783. "dist": {
  2784. "type": "zip",
  2785. "url": "https://api.github.com/repos/thephpleague/config/zipball/754b3604fb2984c71f4af4a9cbe7b57f346ec1f3",
  2786. "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3",
  2787. "shasum": ""
  2788. },
  2789. "require": {
  2790. "dflydev/dot-access-data": "^3.0.1",
  2791. "nette/schema": "^1.2",
  2792. "php": "^7.4 || ^8.0"
  2793. },
  2794. "require-dev": {
  2795. "phpstan/phpstan": "^1.8.2",
  2796. "phpunit/phpunit": "^9.5.5",
  2797. "scrutinizer/ocular": "^1.8.1",
  2798. "unleashedtech/php-coding-standard": "^3.1",
  2799. "vimeo/psalm": "^4.7.3"
  2800. },
  2801. "type": "library",
  2802. "extra": {
  2803. "branch-alias": {
  2804. "dev-main": "1.2-dev"
  2805. }
  2806. },
  2807. "autoload": {
  2808. "psr-4": {
  2809. "League\\Config\\": "src"
  2810. }
  2811. },
  2812. "notification-url": "https://packagist.org/downloads/",
  2813. "license": [
  2814. "BSD-3-Clause"
  2815. ],
  2816. "authors": [
  2817. {
  2818. "name": "Colin O'Dell",
  2819. "email": "colinodell@gmail.com",
  2820. "homepage": "https://www.colinodell.com",
  2821. "role": "Lead Developer"
  2822. }
  2823. ],
  2824. "description": "Define configuration arrays with strict schemas and access values with dot notation",
  2825. "homepage": "https://config.thephpleague.com",
  2826. "keywords": [
  2827. "array",
  2828. "config",
  2829. "configuration",
  2830. "dot",
  2831. "dot-access",
  2832. "nested",
  2833. "schema"
  2834. ],
  2835. "support": {
  2836. "docs": "https://config.thephpleague.com/",
  2837. "issues": "https://github.com/thephpleague/config/issues",
  2838. "rss": "https://github.com/thephpleague/config/releases.atom",
  2839. "source": "https://github.com/thephpleague/config"
  2840. },
  2841. "funding": [
  2842. {
  2843. "url": "https://www.colinodell.com/sponsor",
  2844. "type": "custom"
  2845. },
  2846. {
  2847. "url": "https://www.paypal.me/colinpodell/10.00",
  2848. "type": "custom"
  2849. },
  2850. {
  2851. "url": "https://github.com/colinodell",
  2852. "type": "github"
  2853. }
  2854. ],
  2855. "time": "2022-12-11T20:36:23+00:00"
  2856. },
  2857. {
  2858. "name": "league/csv",
  2859. "version": "9.16.0",
  2860. "source": {
  2861. "type": "git",
  2862. "url": "https://github.com/thephpleague/csv.git",
  2863. "reference": "998280c6c34bd67d8125fdc8b45bae28d761b440"
  2864. },
  2865. "dist": {
  2866. "type": "zip",
  2867. "url": "https://api.github.com/repos/thephpleague/csv/zipball/998280c6c34bd67d8125fdc8b45bae28d761b440",
  2868. "reference": "998280c6c34bd67d8125fdc8b45bae28d761b440",
  2869. "shasum": ""
  2870. },
  2871. "require": {
  2872. "ext-filter": "*",
  2873. "php": "^8.1.2"
  2874. },
  2875. "require-dev": {
  2876. "doctrine/collections": "^2.2.2",
  2877. "ext-dom": "*",
  2878. "ext-xdebug": "*",
  2879. "friendsofphp/php-cs-fixer": "^3.57.1",
  2880. "phpbench/phpbench": "^1.2.15",
  2881. "phpstan/phpstan": "^1.11.1",
  2882. "phpstan/phpstan-deprecation-rules": "^1.2.0",
  2883. "phpstan/phpstan-phpunit": "^1.4.0",
  2884. "phpstan/phpstan-strict-rules": "^1.6.0",
  2885. "phpunit/phpunit": "^10.5.16 || ^11.1.3",
  2886. "symfony/var-dumper": "^6.4.6 || ^7.0.7"
  2887. },
  2888. "suggest": {
  2889. "ext-dom": "Required to use the XMLConverter and the HTMLConverter classes",
  2890. "ext-iconv": "Needed to ease transcoding CSV using iconv stream filters",
  2891. "ext-mbstring": "Needed to ease transcoding CSV using mb stream filters"
  2892. },
  2893. "type": "library",
  2894. "extra": {
  2895. "branch-alias": {
  2896. "dev-master": "9.x-dev"
  2897. }
  2898. },
  2899. "autoload": {
  2900. "files": [
  2901. "src/functions_include.php"
  2902. ],
  2903. "psr-4": {
  2904. "League\\Csv\\": "src"
  2905. }
  2906. },
  2907. "notification-url": "https://packagist.org/downloads/",
  2908. "license": [
  2909. "MIT"
  2910. ],
  2911. "authors": [
  2912. {
  2913. "name": "Ignace Nyamagana Butera",
  2914. "email": "nyamsprod@gmail.com",
  2915. "homepage": "https://github.com/nyamsprod/",
  2916. "role": "Developer"
  2917. }
  2918. ],
  2919. "description": "CSV data manipulation made easy in PHP",
  2920. "homepage": "https://csv.thephpleague.com",
  2921. "keywords": [
  2922. "convert",
  2923. "csv",
  2924. "export",
  2925. "filter",
  2926. "import",
  2927. "read",
  2928. "transform",
  2929. "write"
  2930. ],
  2931. "support": {
  2932. "docs": "https://csv.thephpleague.com",
  2933. "issues": "https://github.com/thephpleague/csv/issues",
  2934. "rss": "https://github.com/thephpleague/csv/releases.atom",
  2935. "source": "https://github.com/thephpleague/csv"
  2936. },
  2937. "funding": [
  2938. {
  2939. "url": "https://github.com/sponsors/nyamsprod",
  2940. "type": "github"
  2941. }
  2942. ],
  2943. "time": "2024-05-24T11:04:54+00:00"
  2944. },
  2945. {
  2946. "name": "league/flysystem",
  2947. "version": "3.28.0",
  2948. "source": {
  2949. "type": "git",
  2950. "url": "https://github.com/thephpleague/flysystem.git",
  2951. "reference": "e611adab2b1ae2e3072fa72d62c62f52c2bf1f0c"
  2952. },
  2953. "dist": {
  2954. "type": "zip",
  2955. "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/e611adab2b1ae2e3072fa72d62c62f52c2bf1f0c",
  2956. "reference": "e611adab2b1ae2e3072fa72d62c62f52c2bf1f0c",
  2957. "shasum": ""
  2958. },
  2959. "require": {
  2960. "league/flysystem-local": "^3.0.0",
  2961. "league/mime-type-detection": "^1.0.0",
  2962. "php": "^8.0.2"
  2963. },
  2964. "conflict": {
  2965. "async-aws/core": "<1.19.0",
  2966. "async-aws/s3": "<1.14.0",
  2967. "aws/aws-sdk-php": "3.209.31 || 3.210.0",
  2968. "guzzlehttp/guzzle": "<7.0",
  2969. "guzzlehttp/ringphp": "<1.1.1",
  2970. "phpseclib/phpseclib": "3.0.15",
  2971. "symfony/http-client": "<5.2"
  2972. },
  2973. "require-dev": {
  2974. "async-aws/s3": "^1.5 || ^2.0",
  2975. "async-aws/simple-s3": "^1.1 || ^2.0",
  2976. "aws/aws-sdk-php": "^3.295.10",
  2977. "composer/semver": "^3.0",
  2978. "ext-fileinfo": "*",
  2979. "ext-ftp": "*",
  2980. "ext-mongodb": "^1.3",
  2981. "ext-zip": "*",
  2982. "friendsofphp/php-cs-fixer": "^3.5",
  2983. "google/cloud-storage": "^1.23",
  2984. "guzzlehttp/psr7": "^2.6",
  2985. "microsoft/azure-storage-blob": "^1.1",
  2986. "mongodb/mongodb": "^1.2",
  2987. "phpseclib/phpseclib": "^3.0.36",
  2988. "phpstan/phpstan": "^1.10",
  2989. "phpunit/phpunit": "^9.5.11|^10.0",
  2990. "sabre/dav": "^4.6.0"
  2991. },
  2992. "type": "library",
  2993. "autoload": {
  2994. "psr-4": {
  2995. "League\\Flysystem\\": "src"
  2996. }
  2997. },
  2998. "notification-url": "https://packagist.org/downloads/",
  2999. "license": [
  3000. "MIT"
  3001. ],
  3002. "authors": [
  3003. {
  3004. "name": "Frank de Jonge",
  3005. "email": "info@frankdejonge.nl"
  3006. }
  3007. ],
  3008. "description": "File storage abstraction for PHP",
  3009. "keywords": [
  3010. "WebDAV",
  3011. "aws",
  3012. "cloud",
  3013. "file",
  3014. "files",
  3015. "filesystem",
  3016. "filesystems",
  3017. "ftp",
  3018. "s3",
  3019. "sftp",
  3020. "storage"
  3021. ],
  3022. "support": {
  3023. "issues": "https://github.com/thephpleague/flysystem/issues",
  3024. "source": "https://github.com/thephpleague/flysystem/tree/3.28.0"
  3025. },
  3026. "time": "2024-05-22T10:09:12+00:00"
  3027. },
  3028. {
  3029. "name": "league/flysystem-local",
  3030. "version": "3.28.0",
  3031. "source": {
  3032. "type": "git",
  3033. "url": "https://github.com/thephpleague/flysystem-local.git",
  3034. "reference": "13f22ea8be526ea58c2ddff9e158ef7c296e4f40"
  3035. },
  3036. "dist": {
  3037. "type": "zip",
  3038. "url": "https://api.github.com/repos/thephpleague/flysystem-local/zipball/13f22ea8be526ea58c2ddff9e158ef7c296e4f40",
  3039. "reference": "13f22ea8be526ea58c2ddff9e158ef7c296e4f40",
  3040. "shasum": ""
  3041. },
  3042. "require": {
  3043. "ext-fileinfo": "*",
  3044. "league/flysystem": "^3.0.0",
  3045. "league/mime-type-detection": "^1.0.0",
  3046. "php": "^8.0.2"
  3047. },
  3048. "type": "library",
  3049. "autoload": {
  3050. "psr-4": {
  3051. "League\\Flysystem\\Local\\": ""
  3052. }
  3053. },
  3054. "notification-url": "https://packagist.org/downloads/",
  3055. "license": [
  3056. "MIT"
  3057. ],
  3058. "authors": [
  3059. {
  3060. "name": "Frank de Jonge",
  3061. "email": "info@frankdejonge.nl"
  3062. }
  3063. ],
  3064. "description": "Local filesystem adapter for Flysystem.",
  3065. "keywords": [
  3066. "Flysystem",
  3067. "file",
  3068. "files",
  3069. "filesystem",
  3070. "local"
  3071. ],
  3072. "support": {
  3073. "source": "https://github.com/thephpleague/flysystem-local/tree/3.28.0"
  3074. },
  3075. "time": "2024-05-06T20:05:52+00:00"
  3076. },
  3077. {
  3078. "name": "league/mime-type-detection",
  3079. "version": "1.15.0",
  3080. "source": {
  3081. "type": "git",
  3082. "url": "https://github.com/thephpleague/mime-type-detection.git",
  3083. "reference": "ce0f4d1e8a6f4eb0ddff33f57c69c50fd09f4301"
  3084. },
  3085. "dist": {
  3086. "type": "zip",
  3087. "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/ce0f4d1e8a6f4eb0ddff33f57c69c50fd09f4301",
  3088. "reference": "ce0f4d1e8a6f4eb0ddff33f57c69c50fd09f4301",
  3089. "shasum": ""
  3090. },
  3091. "require": {
  3092. "ext-fileinfo": "*",
  3093. "php": "^7.4 || ^8.0"
  3094. },
  3095. "require-dev": {
  3096. "friendsofphp/php-cs-fixer": "^3.2",
  3097. "phpstan/phpstan": "^0.12.68",
  3098. "phpunit/phpunit": "^8.5.8 || ^9.3 || ^10.0"
  3099. },
  3100. "type": "library",
  3101. "autoload": {
  3102. "psr-4": {
  3103. "League\\MimeTypeDetection\\": "src"
  3104. }
  3105. },
  3106. "notification-url": "https://packagist.org/downloads/",
  3107. "license": [
  3108. "MIT"
  3109. ],
  3110. "authors": [
  3111. {
  3112. "name": "Frank de Jonge",
  3113. "email": "info@frankdejonge.nl"
  3114. }
  3115. ],
  3116. "description": "Mime-type detection for Flysystem",
  3117. "support": {
  3118. "issues": "https://github.com/thephpleague/mime-type-detection/issues",
  3119. "source": "https://github.com/thephpleague/mime-type-detection/tree/1.15.0"
  3120. },
  3121. "funding": [
  3122. {
  3123. "url": "https://github.com/frankdejonge",
  3124. "type": "github"
  3125. },
  3126. {
  3127. "url": "https://tidelift.com/funding/github/packagist/league/flysystem",
  3128. "type": "tidelift"
  3129. }
  3130. ],
  3131. "time": "2024-01-28T23:22:08+00:00"
  3132. },
  3133. {
  3134. "name": "league/uri",
  3135. "version": "7.4.1",
  3136. "source": {
  3137. "type": "git",
  3138. "url": "https://github.com/thephpleague/uri.git",
  3139. "reference": "bedb6e55eff0c933668addaa7efa1e1f2c417cc4"
  3140. },
  3141. "dist": {
  3142. "type": "zip",
  3143. "url": "https://api.github.com/repos/thephpleague/uri/zipball/bedb6e55eff0c933668addaa7efa1e1f2c417cc4",
  3144. "reference": "bedb6e55eff0c933668addaa7efa1e1f2c417cc4",
  3145. "shasum": ""
  3146. },
  3147. "require": {
  3148. "league/uri-interfaces": "^7.3",
  3149. "php": "^8.1"
  3150. },
  3151. "conflict": {
  3152. "league/uri-schemes": "^1.0"
  3153. },
  3154. "suggest": {
  3155. "ext-bcmath": "to improve IPV4 host parsing",
  3156. "ext-fileinfo": "to create Data URI from file contennts",
  3157. "ext-gmp": "to improve IPV4 host parsing",
  3158. "ext-intl": "to handle IDN host with the best performance",
  3159. "jeremykendall/php-domain-parser": "to resolve Public Suffix and Top Level Domain",
  3160. "league/uri-components": "Needed to easily manipulate URI objects components",
  3161. "php-64bit": "to improve IPV4 host parsing",
  3162. "symfony/polyfill-intl-idn": "to handle IDN host via the Symfony polyfill if ext-intl is not present"
  3163. },
  3164. "type": "library",
  3165. "extra": {
  3166. "branch-alias": {
  3167. "dev-master": "7.x-dev"
  3168. }
  3169. },
  3170. "autoload": {
  3171. "psr-4": {
  3172. "League\\Uri\\": ""
  3173. }
  3174. },
  3175. "notification-url": "https://packagist.org/downloads/",
  3176. "license": [
  3177. "MIT"
  3178. ],
  3179. "authors": [
  3180. {
  3181. "name": "Ignace Nyamagana Butera",
  3182. "email": "nyamsprod@gmail.com",
  3183. "homepage": "https://nyamsprod.com"
  3184. }
  3185. ],
  3186. "description": "URI manipulation library",
  3187. "homepage": "https://uri.thephpleague.com",
  3188. "keywords": [
  3189. "data-uri",
  3190. "file-uri",
  3191. "ftp",
  3192. "hostname",
  3193. "http",
  3194. "https",
  3195. "middleware",
  3196. "parse_str",
  3197. "parse_url",
  3198. "psr-7",
  3199. "query-string",
  3200. "querystring",
  3201. "rfc3986",
  3202. "rfc3987",
  3203. "rfc6570",
  3204. "uri",
  3205. "uri-template",
  3206. "url",
  3207. "ws"
  3208. ],
  3209. "support": {
  3210. "docs": "https://uri.thephpleague.com",
  3211. "forum": "https://thephpleague.slack.com",
  3212. "issues": "https://github.com/thephpleague/uri-src/issues",
  3213. "source": "https://github.com/thephpleague/uri/tree/7.4.1"
  3214. },
  3215. "funding": [
  3216. {
  3217. "url": "https://github.com/sponsors/nyamsprod",
  3218. "type": "github"
  3219. }
  3220. ],
  3221. "time": "2024-03-23T07:42:40+00:00"
  3222. },
  3223. {
  3224. "name": "league/uri-interfaces",
  3225. "version": "7.4.1",
  3226. "source": {
  3227. "type": "git",
  3228. "url": "https://github.com/thephpleague/uri-interfaces.git",
  3229. "reference": "8d43ef5c841032c87e2de015972c06f3865ef718"
  3230. },
  3231. "dist": {
  3232. "type": "zip",
  3233. "url": "https://api.github.com/repos/thephpleague/uri-interfaces/zipball/8d43ef5c841032c87e2de015972c06f3865ef718",
  3234. "reference": "8d43ef5c841032c87e2de015972c06f3865ef718",
  3235. "shasum": ""
  3236. },
  3237. "require": {
  3238. "ext-filter": "*",
  3239. "php": "^8.1",
  3240. "psr/http-factory": "^1",
  3241. "psr/http-message": "^1.1 || ^2.0"
  3242. },
  3243. "suggest": {
  3244. "ext-bcmath": "to improve IPV4 host parsing",
  3245. "ext-gmp": "to improve IPV4 host parsing",
  3246. "ext-intl": "to handle IDN host with the best performance",
  3247. "php-64bit": "to improve IPV4 host parsing",
  3248. "symfony/polyfill-intl-idn": "to handle IDN host via the Symfony polyfill if ext-intl is not present"
  3249. },
  3250. "type": "library",
  3251. "extra": {
  3252. "branch-alias": {
  3253. "dev-master": "7.x-dev"
  3254. }
  3255. },
  3256. "autoload": {
  3257. "psr-4": {
  3258. "League\\Uri\\": ""
  3259. }
  3260. },
  3261. "notification-url": "https://packagist.org/downloads/",
  3262. "license": [
  3263. "MIT"
  3264. ],
  3265. "authors": [
  3266. {
  3267. "name": "Ignace Nyamagana Butera",
  3268. "email": "nyamsprod@gmail.com",
  3269. "homepage": "https://nyamsprod.com"
  3270. }
  3271. ],
  3272. "description": "Common interfaces and classes for URI representation and interaction",
  3273. "homepage": "https://uri.thephpleague.com",
  3274. "keywords": [
  3275. "data-uri",
  3276. "file-uri",
  3277. "ftp",
  3278. "hostname",
  3279. "http",
  3280. "https",
  3281. "parse_str",
  3282. "parse_url",
  3283. "psr-7",
  3284. "query-string",
  3285. "querystring",
  3286. "rfc3986",
  3287. "rfc3987",
  3288. "rfc6570",
  3289. "uri",
  3290. "url",
  3291. "ws"
  3292. ],
  3293. "support": {
  3294. "docs": "https://uri.thephpleague.com",
  3295. "forum": "https://thephpleague.slack.com",
  3296. "issues": "https://github.com/thephpleague/uri-src/issues",
  3297. "source": "https://github.com/thephpleague/uri-interfaces/tree/7.4.1"
  3298. },
  3299. "funding": [
  3300. {
  3301. "url": "https://github.com/sponsors/nyamsprod",
  3302. "type": "github"
  3303. }
  3304. ],
  3305. "time": "2024-03-23T07:42:40+00:00"
  3306. },
  3307. {
  3308. "name": "livewire/livewire",
  3309. "version": "v3.5.0",
  3310. "source": {
  3311. "type": "git",
  3312. "url": "https://github.com/livewire/livewire.git",
  3313. "reference": "72e900825c560f0e4e620185b26c5441a8914435"
  3314. },
  3315. "dist": {
  3316. "type": "zip",
  3317. "url": "https://api.github.com/repos/livewire/livewire/zipball/72e900825c560f0e4e620185b26c5441a8914435",
  3318. "reference": "72e900825c560f0e4e620185b26c5441a8914435",
  3319. "shasum": ""
  3320. },
  3321. "require": {
  3322. "illuminate/database": "^10.0|^11.0",
  3323. "illuminate/routing": "^10.0|^11.0",
  3324. "illuminate/support": "^10.0|^11.0",
  3325. "illuminate/validation": "^10.0|^11.0",
  3326. "league/mime-type-detection": "^1.9",
  3327. "php": "^8.1",
  3328. "symfony/console": "^6.0|^7.0",
  3329. "symfony/http-kernel": "^6.2|^7.0"
  3330. },
  3331. "require-dev": {
  3332. "calebporzio/sushi": "^2.1",
  3333. "laravel/framework": "^10.15.0|^11.0",
  3334. "laravel/prompts": "^0.1.6",
  3335. "mockery/mockery": "^1.3.1",
  3336. "orchestra/testbench": "^8.21.0|^9.0",
  3337. "orchestra/testbench-dusk": "^8.24|^9.1",
  3338. "phpunit/phpunit": "^10.4",
  3339. "psy/psysh": "^0.11.22|^0.12"
  3340. },
  3341. "type": "library",
  3342. "extra": {
  3343. "laravel": {
  3344. "providers": [
  3345. "Livewire\\LivewireServiceProvider"
  3346. ],
  3347. "aliases": {
  3348. "Livewire": "Livewire\\Livewire"
  3349. }
  3350. }
  3351. },
  3352. "autoload": {
  3353. "files": [
  3354. "src/helpers.php"
  3355. ],
  3356. "psr-4": {
  3357. "Livewire\\": "src/"
  3358. }
  3359. },
  3360. "notification-url": "https://packagist.org/downloads/",
  3361. "license": [
  3362. "MIT"
  3363. ],
  3364. "authors": [
  3365. {
  3366. "name": "Caleb Porzio",
  3367. "email": "calebporzio@gmail.com"
  3368. }
  3369. ],
  3370. "description": "A front-end framework for Laravel.",
  3371. "support": {
  3372. "issues": "https://github.com/livewire/livewire/issues",
  3373. "source": "https://github.com/livewire/livewire/tree/v3.5.0"
  3374. },
  3375. "funding": [
  3376. {
  3377. "url": "https://github.com/livewire",
  3378. "type": "github"
  3379. }
  3380. ],
  3381. "time": "2024-05-21T13:39:04+00:00"
  3382. },
  3383. {
  3384. "name": "masterminds/html5",
  3385. "version": "2.9.0",
  3386. "source": {
  3387. "type": "git",
  3388. "url": "https://github.com/Masterminds/html5-php.git",
  3389. "reference": "f5ac2c0b0a2eefca70b2ce32a5809992227e75a6"
  3390. },
  3391. "dist": {
  3392. "type": "zip",
  3393. "url": "https://api.github.com/repos/Masterminds/html5-php/zipball/f5ac2c0b0a2eefca70b2ce32a5809992227e75a6",
  3394. "reference": "f5ac2c0b0a2eefca70b2ce32a5809992227e75a6",
  3395. "shasum": ""
  3396. },
  3397. "require": {
  3398. "ext-dom": "*",
  3399. "php": ">=5.3.0"
  3400. },
  3401. "require-dev": {
  3402. "phpunit/phpunit": "^4.8.35 || ^5.7.21 || ^6 || ^7 || ^8 || ^9"
  3403. },
  3404. "type": "library",
  3405. "extra": {
  3406. "branch-alias": {
  3407. "dev-master": "2.7-dev"
  3408. }
  3409. },
  3410. "autoload": {
  3411. "psr-4": {
  3412. "Masterminds\\": "src"
  3413. }
  3414. },
  3415. "notification-url": "https://packagist.org/downloads/",
  3416. "license": [
  3417. "MIT"
  3418. ],
  3419. "authors": [
  3420. {
  3421. "name": "Matt Butcher",
  3422. "email": "technosophos@gmail.com"
  3423. },
  3424. {
  3425. "name": "Matt Farina",
  3426. "email": "matt@mattfarina.com"
  3427. },
  3428. {
  3429. "name": "Asmir Mustafic",
  3430. "email": "goetas@gmail.com"
  3431. }
  3432. ],
  3433. "description": "An HTML5 parser and serializer.",
  3434. "homepage": "http://masterminds.github.io/html5-php",
  3435. "keywords": [
  3436. "HTML5",
  3437. "dom",
  3438. "html",
  3439. "parser",
  3440. "querypath",
  3441. "serializer",
  3442. "xml"
  3443. ],
  3444. "support": {
  3445. "issues": "https://github.com/Masterminds/html5-php/issues",
  3446. "source": "https://github.com/Masterminds/html5-php/tree/2.9.0"
  3447. },
  3448. "time": "2024-03-31T07:05:07+00:00"
  3449. },
  3450. {
  3451. "name": "monolog/monolog",
  3452. "version": "3.6.0",
  3453. "source": {
  3454. "type": "git",
  3455. "url": "https://github.com/Seldaek/monolog.git",
  3456. "reference": "4b18b21a5527a3d5ffdac2fd35d3ab25a9597654"
  3457. },
  3458. "dist": {
  3459. "type": "zip",
  3460. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/4b18b21a5527a3d5ffdac2fd35d3ab25a9597654",
  3461. "reference": "4b18b21a5527a3d5ffdac2fd35d3ab25a9597654",
  3462. "shasum": ""
  3463. },
  3464. "require": {
  3465. "php": ">=8.1",
  3466. "psr/log": "^2.0 || ^3.0"
  3467. },
  3468. "provide": {
  3469. "psr/log-implementation": "3.0.0"
  3470. },
  3471. "require-dev": {
  3472. "aws/aws-sdk-php": "^3.0",
  3473. "doctrine/couchdb": "~1.0@dev",
  3474. "elasticsearch/elasticsearch": "^7 || ^8",
  3475. "ext-json": "*",
  3476. "graylog2/gelf-php": "^1.4.2 || ^2.0",
  3477. "guzzlehttp/guzzle": "^7.4.5",
  3478. "guzzlehttp/psr7": "^2.2",
  3479. "mongodb/mongodb": "^1.8",
  3480. "php-amqplib/php-amqplib": "~2.4 || ^3",
  3481. "phpstan/phpstan": "^1.9",
  3482. "phpstan/phpstan-deprecation-rules": "^1.0",
  3483. "phpstan/phpstan-strict-rules": "^1.4",
  3484. "phpunit/phpunit": "^10.5.17",
  3485. "predis/predis": "^1.1 || ^2",
  3486. "ruflin/elastica": "^7",
  3487. "symfony/mailer": "^5.4 || ^6",
  3488. "symfony/mime": "^5.4 || ^6"
  3489. },
  3490. "suggest": {
  3491. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  3492. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  3493. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  3494. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  3495. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  3496. "ext-mbstring": "Allow to work properly with unicode symbols",
  3497. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  3498. "ext-openssl": "Required to send log messages using SSL",
  3499. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  3500. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  3501. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  3502. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  3503. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  3504. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  3505. },
  3506. "type": "library",
  3507. "extra": {
  3508. "branch-alias": {
  3509. "dev-main": "3.x-dev"
  3510. }
  3511. },
  3512. "autoload": {
  3513. "psr-4": {
  3514. "Monolog\\": "src/Monolog"
  3515. }
  3516. },
  3517. "notification-url": "https://packagist.org/downloads/",
  3518. "license": [
  3519. "MIT"
  3520. ],
  3521. "authors": [
  3522. {
  3523. "name": "Jordi Boggiano",
  3524. "email": "j.boggiano@seld.be",
  3525. "homepage": "https://seld.be"
  3526. }
  3527. ],
  3528. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  3529. "homepage": "https://github.com/Seldaek/monolog",
  3530. "keywords": [
  3531. "log",
  3532. "logging",
  3533. "psr-3"
  3534. ],
  3535. "support": {
  3536. "issues": "https://github.com/Seldaek/monolog/issues",
  3537. "source": "https://github.com/Seldaek/monolog/tree/3.6.0"
  3538. },
  3539. "funding": [
  3540. {
  3541. "url": "https://github.com/Seldaek",
  3542. "type": "github"
  3543. },
  3544. {
  3545. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  3546. "type": "tidelift"
  3547. }
  3548. ],
  3549. "time": "2024-04-12T21:02:21+00:00"
  3550. },
  3551. {
  3552. "name": "nesbot/carbon",
  3553. "version": "2.72.5",
  3554. "source": {
  3555. "type": "git",
  3556. "url": "https://github.com/briannesbitt/Carbon.git",
  3557. "reference": "afd46589c216118ecd48ff2b95d77596af1e57ed"
  3558. },
  3559. "dist": {
  3560. "type": "zip",
  3561. "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/afd46589c216118ecd48ff2b95d77596af1e57ed",
  3562. "reference": "afd46589c216118ecd48ff2b95d77596af1e57ed",
  3563. "shasum": ""
  3564. },
  3565. "require": {
  3566. "carbonphp/carbon-doctrine-types": "*",
  3567. "ext-json": "*",
  3568. "php": "^7.1.8 || ^8.0",
  3569. "psr/clock": "^1.0",
  3570. "symfony/polyfill-mbstring": "^1.0",
  3571. "symfony/polyfill-php80": "^1.16",
  3572. "symfony/translation": "^3.4 || ^4.0 || ^5.0 || ^6.0"
  3573. },
  3574. "provide": {
  3575. "psr/clock-implementation": "1.0"
  3576. },
  3577. "require-dev": {
  3578. "doctrine/dbal": "^2.0 || ^3.1.4 || ^4.0",
  3579. "doctrine/orm": "^2.7 || ^3.0",
  3580. "friendsofphp/php-cs-fixer": "^3.0",
  3581. "kylekatarnls/multi-tester": "^2.0",
  3582. "ondrejmirtes/better-reflection": "*",
  3583. "phpmd/phpmd": "^2.9",
  3584. "phpstan/extension-installer": "^1.0",
  3585. "phpstan/phpstan": "^0.12.99 || ^1.7.14",
  3586. "phpunit/php-file-iterator": "^2.0.5 || ^3.0.6",
  3587. "phpunit/phpunit": "^7.5.20 || ^8.5.26 || ^9.5.20",
  3588. "squizlabs/php_codesniffer": "^3.4"
  3589. },
  3590. "bin": [
  3591. "bin/carbon"
  3592. ],
  3593. "type": "library",
  3594. "extra": {
  3595. "branch-alias": {
  3596. "dev-master": "3.x-dev",
  3597. "dev-2.x": "2.x-dev"
  3598. },
  3599. "laravel": {
  3600. "providers": [
  3601. "Carbon\\Laravel\\ServiceProvider"
  3602. ]
  3603. },
  3604. "phpstan": {
  3605. "includes": [
  3606. "extension.neon"
  3607. ]
  3608. }
  3609. },
  3610. "autoload": {
  3611. "psr-4": {
  3612. "Carbon\\": "src/Carbon/"
  3613. }
  3614. },
  3615. "notification-url": "https://packagist.org/downloads/",
  3616. "license": [
  3617. "MIT"
  3618. ],
  3619. "authors": [
  3620. {
  3621. "name": "Brian Nesbitt",
  3622. "email": "brian@nesbot.com",
  3623. "homepage": "https://markido.com"
  3624. },
  3625. {
  3626. "name": "kylekatarnls",
  3627. "homepage": "https://github.com/kylekatarnls"
  3628. }
  3629. ],
  3630. "description": "An API extension for DateTime that supports 281 different languages.",
  3631. "homepage": "https://carbon.nesbot.com",
  3632. "keywords": [
  3633. "date",
  3634. "datetime",
  3635. "time"
  3636. ],
  3637. "support": {
  3638. "docs": "https://carbon.nesbot.com/docs",
  3639. "issues": "https://github.com/briannesbitt/Carbon/issues",
  3640. "source": "https://github.com/briannesbitt/Carbon"
  3641. },
  3642. "funding": [
  3643. {
  3644. "url": "https://github.com/sponsors/kylekatarnls",
  3645. "type": "github"
  3646. },
  3647. {
  3648. "url": "https://opencollective.com/Carbon#sponsor",
  3649. "type": "opencollective"
  3650. },
  3651. {
  3652. "url": "https://tidelift.com/subscription/pkg/packagist-nesbot-carbon?utm_source=packagist-nesbot-carbon&utm_medium=referral&utm_campaign=readme",
  3653. "type": "tidelift"
  3654. }
  3655. ],
  3656. "time": "2024-06-03T19:18:41+00:00"
  3657. },
  3658. {
  3659. "name": "nette/schema",
  3660. "version": "v1.3.0",
  3661. "source": {
  3662. "type": "git",
  3663. "url": "https://github.com/nette/schema.git",
  3664. "reference": "a6d3a6d1f545f01ef38e60f375d1cf1f4de98188"
  3665. },
  3666. "dist": {
  3667. "type": "zip",
  3668. "url": "https://api.github.com/repos/nette/schema/zipball/a6d3a6d1f545f01ef38e60f375d1cf1f4de98188",
  3669. "reference": "a6d3a6d1f545f01ef38e60f375d1cf1f4de98188",
  3670. "shasum": ""
  3671. },
  3672. "require": {
  3673. "nette/utils": "^4.0",
  3674. "php": "8.1 - 8.3"
  3675. },
  3676. "require-dev": {
  3677. "nette/tester": "^2.4",
  3678. "phpstan/phpstan-nette": "^1.0",
  3679. "tracy/tracy": "^2.8"
  3680. },
  3681. "type": "library",
  3682. "extra": {
  3683. "branch-alias": {
  3684. "dev-master": "1.3-dev"
  3685. }
  3686. },
  3687. "autoload": {
  3688. "classmap": [
  3689. "src/"
  3690. ]
  3691. },
  3692. "notification-url": "https://packagist.org/downloads/",
  3693. "license": [
  3694. "BSD-3-Clause",
  3695. "GPL-2.0-only",
  3696. "GPL-3.0-only"
  3697. ],
  3698. "authors": [
  3699. {
  3700. "name": "David Grudl",
  3701. "homepage": "https://davidgrudl.com"
  3702. },
  3703. {
  3704. "name": "Nette Community",
  3705. "homepage": "https://nette.org/contributors"
  3706. }
  3707. ],
  3708. "description": "📐 Nette Schema: validating data structures against a given Schema.",
  3709. "homepage": "https://nette.org",
  3710. "keywords": [
  3711. "config",
  3712. "nette"
  3713. ],
  3714. "support": {
  3715. "issues": "https://github.com/nette/schema/issues",
  3716. "source": "https://github.com/nette/schema/tree/v1.3.0"
  3717. },
  3718. "time": "2023-12-11T11:54:22+00:00"
  3719. },
  3720. {
  3721. "name": "nette/utils",
  3722. "version": "v4.0.4",
  3723. "source": {
  3724. "type": "git",
  3725. "url": "https://github.com/nette/utils.git",
  3726. "reference": "d3ad0aa3b9f934602cb3e3902ebccf10be34d218"
  3727. },
  3728. "dist": {
  3729. "type": "zip",
  3730. "url": "https://api.github.com/repos/nette/utils/zipball/d3ad0aa3b9f934602cb3e3902ebccf10be34d218",
  3731. "reference": "d3ad0aa3b9f934602cb3e3902ebccf10be34d218",
  3732. "shasum": ""
  3733. },
  3734. "require": {
  3735. "php": ">=8.0 <8.4"
  3736. },
  3737. "conflict": {
  3738. "nette/finder": "<3",
  3739. "nette/schema": "<1.2.2"
  3740. },
  3741. "require-dev": {
  3742. "jetbrains/phpstorm-attributes": "dev-master",
  3743. "nette/tester": "^2.5",
  3744. "phpstan/phpstan": "^1.0",
  3745. "tracy/tracy": "^2.9"
  3746. },
  3747. "suggest": {
  3748. "ext-gd": "to use Image",
  3749. "ext-iconv": "to use Strings::webalize(), toAscii(), chr() and reverse()",
  3750. "ext-intl": "to use Strings::webalize(), toAscii(), normalize() and compare()",
  3751. "ext-json": "to use Nette\\Utils\\Json",
  3752. "ext-mbstring": "to use Strings::lower() etc...",
  3753. "ext-tokenizer": "to use Nette\\Utils\\Reflection::getUseStatements()"
  3754. },
  3755. "type": "library",
  3756. "extra": {
  3757. "branch-alias": {
  3758. "dev-master": "4.0-dev"
  3759. }
  3760. },
  3761. "autoload": {
  3762. "classmap": [
  3763. "src/"
  3764. ]
  3765. },
  3766. "notification-url": "https://packagist.org/downloads/",
  3767. "license": [
  3768. "BSD-3-Clause",
  3769. "GPL-2.0-only",
  3770. "GPL-3.0-only"
  3771. ],
  3772. "authors": [
  3773. {
  3774. "name": "David Grudl",
  3775. "homepage": "https://davidgrudl.com"
  3776. },
  3777. {
  3778. "name": "Nette Community",
  3779. "homepage": "https://nette.org/contributors"
  3780. }
  3781. ],
  3782. "description": "🛠 Nette Utils: lightweight utilities for string & array manipulation, image handling, safe JSON encoding/decoding, validation, slug or strong password generating etc.",
  3783. "homepage": "https://nette.org",
  3784. "keywords": [
  3785. "array",
  3786. "core",
  3787. "datetime",
  3788. "images",
  3789. "json",
  3790. "nette",
  3791. "paginator",
  3792. "password",
  3793. "slugify",
  3794. "string",
  3795. "unicode",
  3796. "utf-8",
  3797. "utility",
  3798. "validation"
  3799. ],
  3800. "support": {
  3801. "issues": "https://github.com/nette/utils/issues",
  3802. "source": "https://github.com/nette/utils/tree/v4.0.4"
  3803. },
  3804. "time": "2024-01-17T16:50:36+00:00"
  3805. },
  3806. {
  3807. "name": "nikic/php-parser",
  3808. "version": "v5.0.2",
  3809. "source": {
  3810. "type": "git",
  3811. "url": "https://github.com/nikic/PHP-Parser.git",
  3812. "reference": "139676794dc1e9231bf7bcd123cfc0c99182cb13"
  3813. },
  3814. "dist": {
  3815. "type": "zip",
  3816. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/139676794dc1e9231bf7bcd123cfc0c99182cb13",
  3817. "reference": "139676794dc1e9231bf7bcd123cfc0c99182cb13",
  3818. "shasum": ""
  3819. },
  3820. "require": {
  3821. "ext-ctype": "*",
  3822. "ext-json": "*",
  3823. "ext-tokenizer": "*",
  3824. "php": ">=7.4"
  3825. },
  3826. "require-dev": {
  3827. "ircmaxell/php-yacc": "^0.0.7",
  3828. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0"
  3829. },
  3830. "bin": [
  3831. "bin/php-parse"
  3832. ],
  3833. "type": "library",
  3834. "extra": {
  3835. "branch-alias": {
  3836. "dev-master": "5.0-dev"
  3837. }
  3838. },
  3839. "autoload": {
  3840. "psr-4": {
  3841. "PhpParser\\": "lib/PhpParser"
  3842. }
  3843. },
  3844. "notification-url": "https://packagist.org/downloads/",
  3845. "license": [
  3846. "BSD-3-Clause"
  3847. ],
  3848. "authors": [
  3849. {
  3850. "name": "Nikita Popov"
  3851. }
  3852. ],
  3853. "description": "A PHP parser written in PHP",
  3854. "keywords": [
  3855. "parser",
  3856. "php"
  3857. ],
  3858. "support": {
  3859. "issues": "https://github.com/nikic/PHP-Parser/issues",
  3860. "source": "https://github.com/nikic/PHP-Parser/tree/v5.0.2"
  3861. },
  3862. "time": "2024-03-05T20:51:40+00:00"
  3863. },
  3864. {
  3865. "name": "nunomaduro/termwind",
  3866. "version": "v1.15.1",
  3867. "source": {
  3868. "type": "git",
  3869. "url": "https://github.com/nunomaduro/termwind.git",
  3870. "reference": "8ab0b32c8caa4a2e09700ea32925441385e4a5dc"
  3871. },
  3872. "dist": {
  3873. "type": "zip",
  3874. "url": "https://api.github.com/repos/nunomaduro/termwind/zipball/8ab0b32c8caa4a2e09700ea32925441385e4a5dc",
  3875. "reference": "8ab0b32c8caa4a2e09700ea32925441385e4a5dc",
  3876. "shasum": ""
  3877. },
  3878. "require": {
  3879. "ext-mbstring": "*",
  3880. "php": "^8.0",
  3881. "symfony/console": "^5.3.0|^6.0.0"
  3882. },
  3883. "require-dev": {
  3884. "ergebnis/phpstan-rules": "^1.0.",
  3885. "illuminate/console": "^8.0|^9.0",
  3886. "illuminate/support": "^8.0|^9.0",
  3887. "laravel/pint": "^1.0.0",
  3888. "pestphp/pest": "^1.21.0",
  3889. "pestphp/pest-plugin-mock": "^1.0",
  3890. "phpstan/phpstan": "^1.4.6",
  3891. "phpstan/phpstan-strict-rules": "^1.1.0",
  3892. "symfony/var-dumper": "^5.2.7|^6.0.0",
  3893. "thecodingmachine/phpstan-strict-rules": "^1.0.0"
  3894. },
  3895. "type": "library",
  3896. "extra": {
  3897. "laravel": {
  3898. "providers": [
  3899. "Termwind\\Laravel\\TermwindServiceProvider"
  3900. ]
  3901. }
  3902. },
  3903. "autoload": {
  3904. "files": [
  3905. "src/Functions.php"
  3906. ],
  3907. "psr-4": {
  3908. "Termwind\\": "src/"
  3909. }
  3910. },
  3911. "notification-url": "https://packagist.org/downloads/",
  3912. "license": [
  3913. "MIT"
  3914. ],
  3915. "authors": [
  3916. {
  3917. "name": "Nuno Maduro",
  3918. "email": "enunomaduro@gmail.com"
  3919. }
  3920. ],
  3921. "description": "Its like Tailwind CSS, but for the console.",
  3922. "keywords": [
  3923. "cli",
  3924. "console",
  3925. "css",
  3926. "package",
  3927. "php",
  3928. "style"
  3929. ],
  3930. "support": {
  3931. "issues": "https://github.com/nunomaduro/termwind/issues",
  3932. "source": "https://github.com/nunomaduro/termwind/tree/v1.15.1"
  3933. },
  3934. "funding": [
  3935. {
  3936. "url": "https://www.paypal.com/paypalme/enunomaduro",
  3937. "type": "custom"
  3938. },
  3939. {
  3940. "url": "https://github.com/nunomaduro",
  3941. "type": "github"
  3942. },
  3943. {
  3944. "url": "https://github.com/xiCO2k",
  3945. "type": "github"
  3946. }
  3947. ],
  3948. "time": "2023-02-08T01:06:31+00:00"
  3949. },
  3950. {
  3951. "name": "openspout/openspout",
  3952. "version": "v4.24.1",
  3953. "source": {
  3954. "type": "git",
  3955. "url": "https://github.com/openspout/openspout.git",
  3956. "reference": "003991abc5cfee93423254774c71766d38cbe340"
  3957. },
  3958. "dist": {
  3959. "type": "zip",
  3960. "url": "https://api.github.com/repos/openspout/openspout/zipball/003991abc5cfee93423254774c71766d38cbe340",
  3961. "reference": "003991abc5cfee93423254774c71766d38cbe340",
  3962. "shasum": ""
  3963. },
  3964. "require": {
  3965. "ext-dom": "*",
  3966. "ext-fileinfo": "*",
  3967. "ext-filter": "*",
  3968. "ext-libxml": "*",
  3969. "ext-xmlreader": "*",
  3970. "ext-zip": "*",
  3971. "php": "~8.1.0 || ~8.2.0 || ~8.3.0"
  3972. },
  3973. "require-dev": {
  3974. "ext-zlib": "*",
  3975. "friendsofphp/php-cs-fixer": "^3.57.1",
  3976. "infection/infection": "^0.28.1",
  3977. "phpbench/phpbench": "^1.2.15",
  3978. "phpstan/phpstan": "^1.11.1",
  3979. "phpstan/phpstan-phpunit": "^1.4.0",
  3980. "phpstan/phpstan-strict-rules": "^1.6.0",
  3981. "phpunit/phpunit": "^10.5.20"
  3982. },
  3983. "suggest": {
  3984. "ext-iconv": "To handle non UTF-8 CSV files (if \"php-mbstring\" is not already installed or is too limited)",
  3985. "ext-mbstring": "To handle non UTF-8 CSV files (if \"iconv\" is not already installed)"
  3986. },
  3987. "type": "library",
  3988. "extra": {
  3989. "branch-alias": {
  3990. "dev-master": "3.3.x-dev"
  3991. }
  3992. },
  3993. "autoload": {
  3994. "psr-4": {
  3995. "OpenSpout\\": "src/"
  3996. }
  3997. },
  3998. "notification-url": "https://packagist.org/downloads/",
  3999. "license": [
  4000. "MIT"
  4001. ],
  4002. "authors": [
  4003. {
  4004. "name": "Adrien Loison",
  4005. "email": "adrien@box.com"
  4006. }
  4007. ],
  4008. "description": "PHP Library to read and write spreadsheet files (CSV, XLSX and ODS), in a fast and scalable way",
  4009. "homepage": "https://github.com/openspout/openspout",
  4010. "keywords": [
  4011. "OOXML",
  4012. "csv",
  4013. "excel",
  4014. "memory",
  4015. "odf",
  4016. "ods",
  4017. "office",
  4018. "open",
  4019. "php",
  4020. "read",
  4021. "scale",
  4022. "spreadsheet",
  4023. "stream",
  4024. "write",
  4025. "xlsx"
  4026. ],
  4027. "support": {
  4028. "issues": "https://github.com/openspout/openspout/issues",
  4029. "source": "https://github.com/openspout/openspout/tree/v4.24.1"
  4030. },
  4031. "funding": [
  4032. {
  4033. "url": "https://paypal.me/filippotessarotto",
  4034. "type": "custom"
  4035. },
  4036. {
  4037. "url": "https://github.com/Slamdunk",
  4038. "type": "github"
  4039. }
  4040. ],
  4041. "time": "2024-05-20T09:32:59+00:00"
  4042. },
  4043. {
  4044. "name": "phpoption/phpoption",
  4045. "version": "1.9.2",
  4046. "source": {
  4047. "type": "git",
  4048. "url": "https://github.com/schmittjoh/php-option.git",
  4049. "reference": "80735db690fe4fc5c76dfa7f9b770634285fa820"
  4050. },
  4051. "dist": {
  4052. "type": "zip",
  4053. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/80735db690fe4fc5c76dfa7f9b770634285fa820",
  4054. "reference": "80735db690fe4fc5c76dfa7f9b770634285fa820",
  4055. "shasum": ""
  4056. },
  4057. "require": {
  4058. "php": "^7.2.5 || ^8.0"
  4059. },
  4060. "require-dev": {
  4061. "bamarni/composer-bin-plugin": "^1.8.2",
  4062. "phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2"
  4063. },
  4064. "type": "library",
  4065. "extra": {
  4066. "bamarni-bin": {
  4067. "bin-links": true,
  4068. "forward-command": true
  4069. },
  4070. "branch-alias": {
  4071. "dev-master": "1.9-dev"
  4072. }
  4073. },
  4074. "autoload": {
  4075. "psr-4": {
  4076. "PhpOption\\": "src/PhpOption/"
  4077. }
  4078. },
  4079. "notification-url": "https://packagist.org/downloads/",
  4080. "license": [
  4081. "Apache-2.0"
  4082. ],
  4083. "authors": [
  4084. {
  4085. "name": "Johannes M. Schmitt",
  4086. "email": "schmittjoh@gmail.com",
  4087. "homepage": "https://github.com/schmittjoh"
  4088. },
  4089. {
  4090. "name": "Graham Campbell",
  4091. "email": "hello@gjcampbell.co.uk",
  4092. "homepage": "https://github.com/GrahamCampbell"
  4093. }
  4094. ],
  4095. "description": "Option Type for PHP",
  4096. "keywords": [
  4097. "language",
  4098. "option",
  4099. "php",
  4100. "type"
  4101. ],
  4102. "support": {
  4103. "issues": "https://github.com/schmittjoh/php-option/issues",
  4104. "source": "https://github.com/schmittjoh/php-option/tree/1.9.2"
  4105. },
  4106. "funding": [
  4107. {
  4108. "url": "https://github.com/GrahamCampbell",
  4109. "type": "github"
  4110. },
  4111. {
  4112. "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption",
  4113. "type": "tidelift"
  4114. }
  4115. ],
  4116. "time": "2023-11-12T21:59:55+00:00"
  4117. },
  4118. {
  4119. "name": "psr/cache",
  4120. "version": "3.0.0",
  4121. "source": {
  4122. "type": "git",
  4123. "url": "https://github.com/php-fig/cache.git",
  4124. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf"
  4125. },
  4126. "dist": {
  4127. "type": "zip",
  4128. "url": "https://api.github.com/repos/php-fig/cache/zipball/aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  4129. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  4130. "shasum": ""
  4131. },
  4132. "require": {
  4133. "php": ">=8.0.0"
  4134. },
  4135. "type": "library",
  4136. "extra": {
  4137. "branch-alias": {
  4138. "dev-master": "1.0.x-dev"
  4139. }
  4140. },
  4141. "autoload": {
  4142. "psr-4": {
  4143. "Psr\\Cache\\": "src/"
  4144. }
  4145. },
  4146. "notification-url": "https://packagist.org/downloads/",
  4147. "license": [
  4148. "MIT"
  4149. ],
  4150. "authors": [
  4151. {
  4152. "name": "PHP-FIG",
  4153. "homepage": "https://www.php-fig.org/"
  4154. }
  4155. ],
  4156. "description": "Common interface for caching libraries",
  4157. "keywords": [
  4158. "cache",
  4159. "psr",
  4160. "psr-6"
  4161. ],
  4162. "support": {
  4163. "source": "https://github.com/php-fig/cache/tree/3.0.0"
  4164. },
  4165. "time": "2021-02-03T23:26:27+00:00"
  4166. },
  4167. {
  4168. "name": "psr/clock",
  4169. "version": "1.0.0",
  4170. "source": {
  4171. "type": "git",
  4172. "url": "https://github.com/php-fig/clock.git",
  4173. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d"
  4174. },
  4175. "dist": {
  4176. "type": "zip",
  4177. "url": "https://api.github.com/repos/php-fig/clock/zipball/e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  4178. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  4179. "shasum": ""
  4180. },
  4181. "require": {
  4182. "php": "^7.0 || ^8.0"
  4183. },
  4184. "type": "library",
  4185. "autoload": {
  4186. "psr-4": {
  4187. "Psr\\Clock\\": "src/"
  4188. }
  4189. },
  4190. "notification-url": "https://packagist.org/downloads/",
  4191. "license": [
  4192. "MIT"
  4193. ],
  4194. "authors": [
  4195. {
  4196. "name": "PHP-FIG",
  4197. "homepage": "https://www.php-fig.org/"
  4198. }
  4199. ],
  4200. "description": "Common interface for reading the clock.",
  4201. "homepage": "https://github.com/php-fig/clock",
  4202. "keywords": [
  4203. "clock",
  4204. "now",
  4205. "psr",
  4206. "psr-20",
  4207. "time"
  4208. ],
  4209. "support": {
  4210. "issues": "https://github.com/php-fig/clock/issues",
  4211. "source": "https://github.com/php-fig/clock/tree/1.0.0"
  4212. },
  4213. "time": "2022-11-25T14:36:26+00:00"
  4214. },
  4215. {
  4216. "name": "psr/container",
  4217. "version": "2.0.2",
  4218. "source": {
  4219. "type": "git",
  4220. "url": "https://github.com/php-fig/container.git",
  4221. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963"
  4222. },
  4223. "dist": {
  4224. "type": "zip",
  4225. "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  4226. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  4227. "shasum": ""
  4228. },
  4229. "require": {
  4230. "php": ">=7.4.0"
  4231. },
  4232. "type": "library",
  4233. "extra": {
  4234. "branch-alias": {
  4235. "dev-master": "2.0.x-dev"
  4236. }
  4237. },
  4238. "autoload": {
  4239. "psr-4": {
  4240. "Psr\\Container\\": "src/"
  4241. }
  4242. },
  4243. "notification-url": "https://packagist.org/downloads/",
  4244. "license": [
  4245. "MIT"
  4246. ],
  4247. "authors": [
  4248. {
  4249. "name": "PHP-FIG",
  4250. "homepage": "https://www.php-fig.org/"
  4251. }
  4252. ],
  4253. "description": "Common Container Interface (PHP FIG PSR-11)",
  4254. "homepage": "https://github.com/php-fig/container",
  4255. "keywords": [
  4256. "PSR-11",
  4257. "container",
  4258. "container-interface",
  4259. "container-interop",
  4260. "psr"
  4261. ],
  4262. "support": {
  4263. "issues": "https://github.com/php-fig/container/issues",
  4264. "source": "https://github.com/php-fig/container/tree/2.0.2"
  4265. },
  4266. "time": "2021-11-05T16:47:00+00:00"
  4267. },
  4268. {
  4269. "name": "psr/event-dispatcher",
  4270. "version": "1.0.0",
  4271. "source": {
  4272. "type": "git",
  4273. "url": "https://github.com/php-fig/event-dispatcher.git",
  4274. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  4275. },
  4276. "dist": {
  4277. "type": "zip",
  4278. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  4279. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  4280. "shasum": ""
  4281. },
  4282. "require": {
  4283. "php": ">=7.2.0"
  4284. },
  4285. "type": "library",
  4286. "extra": {
  4287. "branch-alias": {
  4288. "dev-master": "1.0.x-dev"
  4289. }
  4290. },
  4291. "autoload": {
  4292. "psr-4": {
  4293. "Psr\\EventDispatcher\\": "src/"
  4294. }
  4295. },
  4296. "notification-url": "https://packagist.org/downloads/",
  4297. "license": [
  4298. "MIT"
  4299. ],
  4300. "authors": [
  4301. {
  4302. "name": "PHP-FIG",
  4303. "homepage": "http://www.php-fig.org/"
  4304. }
  4305. ],
  4306. "description": "Standard interfaces for event handling.",
  4307. "keywords": [
  4308. "events",
  4309. "psr",
  4310. "psr-14"
  4311. ],
  4312. "support": {
  4313. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  4314. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  4315. },
  4316. "time": "2019-01-08T18:20:26+00:00"
  4317. },
  4318. {
  4319. "name": "psr/http-client",
  4320. "version": "1.0.3",
  4321. "source": {
  4322. "type": "git",
  4323. "url": "https://github.com/php-fig/http-client.git",
  4324. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90"
  4325. },
  4326. "dist": {
  4327. "type": "zip",
  4328. "url": "https://api.github.com/repos/php-fig/http-client/zipball/bb5906edc1c324c9a05aa0873d40117941e5fa90",
  4329. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90",
  4330. "shasum": ""
  4331. },
  4332. "require": {
  4333. "php": "^7.0 || ^8.0",
  4334. "psr/http-message": "^1.0 || ^2.0"
  4335. },
  4336. "type": "library",
  4337. "extra": {
  4338. "branch-alias": {
  4339. "dev-master": "1.0.x-dev"
  4340. }
  4341. },
  4342. "autoload": {
  4343. "psr-4": {
  4344. "Psr\\Http\\Client\\": "src/"
  4345. }
  4346. },
  4347. "notification-url": "https://packagist.org/downloads/",
  4348. "license": [
  4349. "MIT"
  4350. ],
  4351. "authors": [
  4352. {
  4353. "name": "PHP-FIG",
  4354. "homepage": "https://www.php-fig.org/"
  4355. }
  4356. ],
  4357. "description": "Common interface for HTTP clients",
  4358. "homepage": "https://github.com/php-fig/http-client",
  4359. "keywords": [
  4360. "http",
  4361. "http-client",
  4362. "psr",
  4363. "psr-18"
  4364. ],
  4365. "support": {
  4366. "source": "https://github.com/php-fig/http-client"
  4367. },
  4368. "time": "2023-09-23T14:17:50+00:00"
  4369. },
  4370. {
  4371. "name": "psr/http-factory",
  4372. "version": "1.1.0",
  4373. "source": {
  4374. "type": "git",
  4375. "url": "https://github.com/php-fig/http-factory.git",
  4376. "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a"
  4377. },
  4378. "dist": {
  4379. "type": "zip",
  4380. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
  4381. "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
  4382. "shasum": ""
  4383. },
  4384. "require": {
  4385. "php": ">=7.1",
  4386. "psr/http-message": "^1.0 || ^2.0"
  4387. },
  4388. "type": "library",
  4389. "extra": {
  4390. "branch-alias": {
  4391. "dev-master": "1.0.x-dev"
  4392. }
  4393. },
  4394. "autoload": {
  4395. "psr-4": {
  4396. "Psr\\Http\\Message\\": "src/"
  4397. }
  4398. },
  4399. "notification-url": "https://packagist.org/downloads/",
  4400. "license": [
  4401. "MIT"
  4402. ],
  4403. "authors": [
  4404. {
  4405. "name": "PHP-FIG",
  4406. "homepage": "https://www.php-fig.org/"
  4407. }
  4408. ],
  4409. "description": "PSR-17: Common interfaces for PSR-7 HTTP message factories",
  4410. "keywords": [
  4411. "factory",
  4412. "http",
  4413. "message",
  4414. "psr",
  4415. "psr-17",
  4416. "psr-7",
  4417. "request",
  4418. "response"
  4419. ],
  4420. "support": {
  4421. "source": "https://github.com/php-fig/http-factory"
  4422. },
  4423. "time": "2024-04-15T12:06:14+00:00"
  4424. },
  4425. {
  4426. "name": "psr/http-message",
  4427. "version": "2.0",
  4428. "source": {
  4429. "type": "git",
  4430. "url": "https://github.com/php-fig/http-message.git",
  4431. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71"
  4432. },
  4433. "dist": {
  4434. "type": "zip",
  4435. "url": "https://api.github.com/repos/php-fig/http-message/zipball/402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  4436. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  4437. "shasum": ""
  4438. },
  4439. "require": {
  4440. "php": "^7.2 || ^8.0"
  4441. },
  4442. "type": "library",
  4443. "extra": {
  4444. "branch-alias": {
  4445. "dev-master": "2.0.x-dev"
  4446. }
  4447. },
  4448. "autoload": {
  4449. "psr-4": {
  4450. "Psr\\Http\\Message\\": "src/"
  4451. }
  4452. },
  4453. "notification-url": "https://packagist.org/downloads/",
  4454. "license": [
  4455. "MIT"
  4456. ],
  4457. "authors": [
  4458. {
  4459. "name": "PHP-FIG",
  4460. "homepage": "https://www.php-fig.org/"
  4461. }
  4462. ],
  4463. "description": "Common interface for HTTP messages",
  4464. "homepage": "https://github.com/php-fig/http-message",
  4465. "keywords": [
  4466. "http",
  4467. "http-message",
  4468. "psr",
  4469. "psr-7",
  4470. "request",
  4471. "response"
  4472. ],
  4473. "support": {
  4474. "source": "https://github.com/php-fig/http-message/tree/2.0"
  4475. },
  4476. "time": "2023-04-04T09:54:51+00:00"
  4477. },
  4478. {
  4479. "name": "psr/log",
  4480. "version": "3.0.0",
  4481. "source": {
  4482. "type": "git",
  4483. "url": "https://github.com/php-fig/log.git",
  4484. "reference": "fe5ea303b0887d5caefd3d431c3e61ad47037001"
  4485. },
  4486. "dist": {
  4487. "type": "zip",
  4488. "url": "https://api.github.com/repos/php-fig/log/zipball/fe5ea303b0887d5caefd3d431c3e61ad47037001",
  4489. "reference": "fe5ea303b0887d5caefd3d431c3e61ad47037001",
  4490. "shasum": ""
  4491. },
  4492. "require": {
  4493. "php": ">=8.0.0"
  4494. },
  4495. "type": "library",
  4496. "extra": {
  4497. "branch-alias": {
  4498. "dev-master": "3.x-dev"
  4499. }
  4500. },
  4501. "autoload": {
  4502. "psr-4": {
  4503. "Psr\\Log\\": "src"
  4504. }
  4505. },
  4506. "notification-url": "https://packagist.org/downloads/",
  4507. "license": [
  4508. "MIT"
  4509. ],
  4510. "authors": [
  4511. {
  4512. "name": "PHP-FIG",
  4513. "homepage": "https://www.php-fig.org/"
  4514. }
  4515. ],
  4516. "description": "Common interface for logging libraries",
  4517. "homepage": "https://github.com/php-fig/log",
  4518. "keywords": [
  4519. "log",
  4520. "psr",
  4521. "psr-3"
  4522. ],
  4523. "support": {
  4524. "source": "https://github.com/php-fig/log/tree/3.0.0"
  4525. },
  4526. "time": "2021-07-14T16:46:02+00:00"
  4527. },
  4528. {
  4529. "name": "psr/simple-cache",
  4530. "version": "3.0.0",
  4531. "source": {
  4532. "type": "git",
  4533. "url": "https://github.com/php-fig/simple-cache.git",
  4534. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865"
  4535. },
  4536. "dist": {
  4537. "type": "zip",
  4538. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/764e0b3939f5ca87cb904f570ef9be2d78a07865",
  4539. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865",
  4540. "shasum": ""
  4541. },
  4542. "require": {
  4543. "php": ">=8.0.0"
  4544. },
  4545. "type": "library",
  4546. "extra": {
  4547. "branch-alias": {
  4548. "dev-master": "3.0.x-dev"
  4549. }
  4550. },
  4551. "autoload": {
  4552. "psr-4": {
  4553. "Psr\\SimpleCache\\": "src/"
  4554. }
  4555. },
  4556. "notification-url": "https://packagist.org/downloads/",
  4557. "license": [
  4558. "MIT"
  4559. ],
  4560. "authors": [
  4561. {
  4562. "name": "PHP-FIG",
  4563. "homepage": "https://www.php-fig.org/"
  4564. }
  4565. ],
  4566. "description": "Common interfaces for simple caching",
  4567. "keywords": [
  4568. "cache",
  4569. "caching",
  4570. "psr",
  4571. "psr-16",
  4572. "simple-cache"
  4573. ],
  4574. "support": {
  4575. "source": "https://github.com/php-fig/simple-cache/tree/3.0.0"
  4576. },
  4577. "time": "2021-10-29T13:26:27+00:00"
  4578. },
  4579. {
  4580. "name": "psy/psysh",
  4581. "version": "v0.12.4",
  4582. "source": {
  4583. "type": "git",
  4584. "url": "https://github.com/bobthecow/psysh.git",
  4585. "reference": "2fd717afa05341b4f8152547f142cd2f130f6818"
  4586. },
  4587. "dist": {
  4588. "type": "zip",
  4589. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/2fd717afa05341b4f8152547f142cd2f130f6818",
  4590. "reference": "2fd717afa05341b4f8152547f142cd2f130f6818",
  4591. "shasum": ""
  4592. },
  4593. "require": {
  4594. "ext-json": "*",
  4595. "ext-tokenizer": "*",
  4596. "nikic/php-parser": "^5.0 || ^4.0",
  4597. "php": "^8.0 || ^7.4",
  4598. "symfony/console": "^7.0 || ^6.0 || ^5.0 || ^4.0 || ^3.4",
  4599. "symfony/var-dumper": "^7.0 || ^6.0 || ^5.0 || ^4.0 || ^3.4"
  4600. },
  4601. "conflict": {
  4602. "symfony/console": "4.4.37 || 5.3.14 || 5.3.15 || 5.4.3 || 5.4.4 || 6.0.3 || 6.0.4"
  4603. },
  4604. "require-dev": {
  4605. "bamarni/composer-bin-plugin": "^1.2"
  4606. },
  4607. "suggest": {
  4608. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  4609. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  4610. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well."
  4611. },
  4612. "bin": [
  4613. "bin/psysh"
  4614. ],
  4615. "type": "library",
  4616. "extra": {
  4617. "branch-alias": {
  4618. "dev-main": "0.12.x-dev"
  4619. },
  4620. "bamarni-bin": {
  4621. "bin-links": false,
  4622. "forward-command": false
  4623. }
  4624. },
  4625. "autoload": {
  4626. "files": [
  4627. "src/functions.php"
  4628. ],
  4629. "psr-4": {
  4630. "Psy\\": "src/"
  4631. }
  4632. },
  4633. "notification-url": "https://packagist.org/downloads/",
  4634. "license": [
  4635. "MIT"
  4636. ],
  4637. "authors": [
  4638. {
  4639. "name": "Justin Hileman",
  4640. "email": "justin@justinhileman.info",
  4641. "homepage": "http://justinhileman.com"
  4642. }
  4643. ],
  4644. "description": "An interactive shell for modern PHP.",
  4645. "homepage": "http://psysh.org",
  4646. "keywords": [
  4647. "REPL",
  4648. "console",
  4649. "interactive",
  4650. "shell"
  4651. ],
  4652. "support": {
  4653. "issues": "https://github.com/bobthecow/psysh/issues",
  4654. "source": "https://github.com/bobthecow/psysh/tree/v0.12.4"
  4655. },
  4656. "time": "2024-06-10T01:18:23+00:00"
  4657. },
  4658. {
  4659. "name": "ralouphie/getallheaders",
  4660. "version": "3.0.3",
  4661. "source": {
  4662. "type": "git",
  4663. "url": "https://github.com/ralouphie/getallheaders.git",
  4664. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  4665. },
  4666. "dist": {
  4667. "type": "zip",
  4668. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  4669. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  4670. "shasum": ""
  4671. },
  4672. "require": {
  4673. "php": ">=5.6"
  4674. },
  4675. "require-dev": {
  4676. "php-coveralls/php-coveralls": "^2.1",
  4677. "phpunit/phpunit": "^5 || ^6.5"
  4678. },
  4679. "type": "library",
  4680. "autoload": {
  4681. "files": [
  4682. "src/getallheaders.php"
  4683. ]
  4684. },
  4685. "notification-url": "https://packagist.org/downloads/",
  4686. "license": [
  4687. "MIT"
  4688. ],
  4689. "authors": [
  4690. {
  4691. "name": "Ralph Khattar",
  4692. "email": "ralph.khattar@gmail.com"
  4693. }
  4694. ],
  4695. "description": "A polyfill for getallheaders.",
  4696. "support": {
  4697. "issues": "https://github.com/ralouphie/getallheaders/issues",
  4698. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  4699. },
  4700. "time": "2019-03-08T08:55:37+00:00"
  4701. },
  4702. {
  4703. "name": "ramsey/collection",
  4704. "version": "2.0.0",
  4705. "source": {
  4706. "type": "git",
  4707. "url": "https://github.com/ramsey/collection.git",
  4708. "reference": "a4b48764bfbb8f3a6a4d1aeb1a35bb5e9ecac4a5"
  4709. },
  4710. "dist": {
  4711. "type": "zip",
  4712. "url": "https://api.github.com/repos/ramsey/collection/zipball/a4b48764bfbb8f3a6a4d1aeb1a35bb5e9ecac4a5",
  4713. "reference": "a4b48764bfbb8f3a6a4d1aeb1a35bb5e9ecac4a5",
  4714. "shasum": ""
  4715. },
  4716. "require": {
  4717. "php": "^8.1"
  4718. },
  4719. "require-dev": {
  4720. "captainhook/plugin-composer": "^5.3",
  4721. "ergebnis/composer-normalize": "^2.28.3",
  4722. "fakerphp/faker": "^1.21",
  4723. "hamcrest/hamcrest-php": "^2.0",
  4724. "jangregor/phpstan-prophecy": "^1.0",
  4725. "mockery/mockery": "^1.5",
  4726. "php-parallel-lint/php-console-highlighter": "^1.0",
  4727. "php-parallel-lint/php-parallel-lint": "^1.3",
  4728. "phpcsstandards/phpcsutils": "^1.0.0-rc1",
  4729. "phpspec/prophecy-phpunit": "^2.0",
  4730. "phpstan/extension-installer": "^1.2",
  4731. "phpstan/phpstan": "^1.9",
  4732. "phpstan/phpstan-mockery": "^1.1",
  4733. "phpstan/phpstan-phpunit": "^1.3",
  4734. "phpunit/phpunit": "^9.5",
  4735. "psalm/plugin-mockery": "^1.1",
  4736. "psalm/plugin-phpunit": "^0.18.4",
  4737. "ramsey/coding-standard": "^2.0.3",
  4738. "ramsey/conventional-commits": "^1.3",
  4739. "vimeo/psalm": "^5.4"
  4740. },
  4741. "type": "library",
  4742. "extra": {
  4743. "captainhook": {
  4744. "force-install": true
  4745. },
  4746. "ramsey/conventional-commits": {
  4747. "configFile": "conventional-commits.json"
  4748. }
  4749. },
  4750. "autoload": {
  4751. "psr-4": {
  4752. "Ramsey\\Collection\\": "src/"
  4753. }
  4754. },
  4755. "notification-url": "https://packagist.org/downloads/",
  4756. "license": [
  4757. "MIT"
  4758. ],
  4759. "authors": [
  4760. {
  4761. "name": "Ben Ramsey",
  4762. "email": "ben@benramsey.com",
  4763. "homepage": "https://benramsey.com"
  4764. }
  4765. ],
  4766. "description": "A PHP library for representing and manipulating collections.",
  4767. "keywords": [
  4768. "array",
  4769. "collection",
  4770. "hash",
  4771. "map",
  4772. "queue",
  4773. "set"
  4774. ],
  4775. "support": {
  4776. "issues": "https://github.com/ramsey/collection/issues",
  4777. "source": "https://github.com/ramsey/collection/tree/2.0.0"
  4778. },
  4779. "funding": [
  4780. {
  4781. "url": "https://github.com/ramsey",
  4782. "type": "github"
  4783. },
  4784. {
  4785. "url": "https://tidelift.com/funding/github/packagist/ramsey/collection",
  4786. "type": "tidelift"
  4787. }
  4788. ],
  4789. "time": "2022-12-31T21:50:55+00:00"
  4790. },
  4791. {
  4792. "name": "ramsey/uuid",
  4793. "version": "4.7.6",
  4794. "source": {
  4795. "type": "git",
  4796. "url": "https://github.com/ramsey/uuid.git",
  4797. "reference": "91039bc1faa45ba123c4328958e620d382ec7088"
  4798. },
  4799. "dist": {
  4800. "type": "zip",
  4801. "url": "https://api.github.com/repos/ramsey/uuid/zipball/91039bc1faa45ba123c4328958e620d382ec7088",
  4802. "reference": "91039bc1faa45ba123c4328958e620d382ec7088",
  4803. "shasum": ""
  4804. },
  4805. "require": {
  4806. "brick/math": "^0.8.8 || ^0.9 || ^0.10 || ^0.11 || ^0.12",
  4807. "ext-json": "*",
  4808. "php": "^8.0",
  4809. "ramsey/collection": "^1.2 || ^2.0"
  4810. },
  4811. "replace": {
  4812. "rhumsaa/uuid": "self.version"
  4813. },
  4814. "require-dev": {
  4815. "captainhook/captainhook": "^5.10",
  4816. "captainhook/plugin-composer": "^5.3",
  4817. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  4818. "doctrine/annotations": "^1.8",
  4819. "ergebnis/composer-normalize": "^2.15",
  4820. "mockery/mockery": "^1.3",
  4821. "paragonie/random-lib": "^2",
  4822. "php-mock/php-mock": "^2.2",
  4823. "php-mock/php-mock-mockery": "^1.3",
  4824. "php-parallel-lint/php-parallel-lint": "^1.1",
  4825. "phpbench/phpbench": "^1.0",
  4826. "phpstan/extension-installer": "^1.1",
  4827. "phpstan/phpstan": "^1.8",
  4828. "phpstan/phpstan-mockery": "^1.1",
  4829. "phpstan/phpstan-phpunit": "^1.1",
  4830. "phpunit/phpunit": "^8.5 || ^9",
  4831. "ramsey/composer-repl": "^1.4",
  4832. "slevomat/coding-standard": "^8.4",
  4833. "squizlabs/php_codesniffer": "^3.5",
  4834. "vimeo/psalm": "^4.9"
  4835. },
  4836. "suggest": {
  4837. "ext-bcmath": "Enables faster math with arbitrary-precision integers using BCMath.",
  4838. "ext-gmp": "Enables faster math with arbitrary-precision integers using GMP.",
  4839. "ext-uuid": "Enables the use of PeclUuidTimeGenerator and PeclUuidRandomGenerator.",
  4840. "paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
  4841. "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type."
  4842. },
  4843. "type": "library",
  4844. "extra": {
  4845. "captainhook": {
  4846. "force-install": true
  4847. }
  4848. },
  4849. "autoload": {
  4850. "files": [
  4851. "src/functions.php"
  4852. ],
  4853. "psr-4": {
  4854. "Ramsey\\Uuid\\": "src/"
  4855. }
  4856. },
  4857. "notification-url": "https://packagist.org/downloads/",
  4858. "license": [
  4859. "MIT"
  4860. ],
  4861. "description": "A PHP library for generating and working with universally unique identifiers (UUIDs).",
  4862. "keywords": [
  4863. "guid",
  4864. "identifier",
  4865. "uuid"
  4866. ],
  4867. "support": {
  4868. "issues": "https://github.com/ramsey/uuid/issues",
  4869. "source": "https://github.com/ramsey/uuid/tree/4.7.6"
  4870. },
  4871. "funding": [
  4872. {
  4873. "url": "https://github.com/ramsey",
  4874. "type": "github"
  4875. },
  4876. {
  4877. "url": "https://tidelift.com/funding/github/packagist/ramsey/uuid",
  4878. "type": "tidelift"
  4879. }
  4880. ],
  4881. "time": "2024-04-27T21:32:50+00:00"
  4882. },
  4883. {
  4884. "name": "ryangjchandler/blade-capture-directive",
  4885. "version": "v1.0.0",
  4886. "source": {
  4887. "type": "git",
  4888. "url": "https://github.com/ryangjchandler/blade-capture-directive.git",
  4889. "reference": "cb6f58663d97f17bece176295240b740835e14f1"
  4890. },
  4891. "dist": {
  4892. "type": "zip",
  4893. "url": "https://api.github.com/repos/ryangjchandler/blade-capture-directive/zipball/cb6f58663d97f17bece176295240b740835e14f1",
  4894. "reference": "cb6f58663d97f17bece176295240b740835e14f1",
  4895. "shasum": ""
  4896. },
  4897. "require": {
  4898. "illuminate/contracts": "^10.0|^11.0",
  4899. "php": "^8.1",
  4900. "spatie/laravel-package-tools": "^1.9.2"
  4901. },
  4902. "require-dev": {
  4903. "nunomaduro/collision": "^7.0|^8.0",
  4904. "nunomaduro/larastan": "^2.0",
  4905. "orchestra/testbench": "^8.0|^9.0",
  4906. "pestphp/pest": "^2.0",
  4907. "pestphp/pest-plugin-laravel": "^2.0",
  4908. "phpstan/extension-installer": "^1.1",
  4909. "phpstan/phpstan-deprecation-rules": "^1.0",
  4910. "phpstan/phpstan-phpunit": "^1.0",
  4911. "phpunit/phpunit": "^10.0",
  4912. "spatie/laravel-ray": "^1.26"
  4913. },
  4914. "type": "library",
  4915. "extra": {
  4916. "laravel": {
  4917. "providers": [
  4918. "RyanChandler\\BladeCaptureDirective\\BladeCaptureDirectiveServiceProvider"
  4919. ],
  4920. "aliases": {
  4921. "BladeCaptureDirective": "RyanChandler\\BladeCaptureDirective\\Facades\\BladeCaptureDirective"
  4922. }
  4923. }
  4924. },
  4925. "autoload": {
  4926. "psr-4": {
  4927. "RyanChandler\\BladeCaptureDirective\\": "src",
  4928. "RyanChandler\\BladeCaptureDirective\\Database\\Factories\\": "database/factories"
  4929. }
  4930. },
  4931. "notification-url": "https://packagist.org/downloads/",
  4932. "license": [
  4933. "MIT"
  4934. ],
  4935. "authors": [
  4936. {
  4937. "name": "Ryan Chandler",
  4938. "email": "support@ryangjchandler.co.uk",
  4939. "role": "Developer"
  4940. }
  4941. ],
  4942. "description": "Create inline partials in your Blade templates with ease.",
  4943. "homepage": "https://github.com/ryangjchandler/blade-capture-directive",
  4944. "keywords": [
  4945. "blade-capture-directive",
  4946. "laravel",
  4947. "ryangjchandler"
  4948. ],
  4949. "support": {
  4950. "issues": "https://github.com/ryangjchandler/blade-capture-directive/issues",
  4951. "source": "https://github.com/ryangjchandler/blade-capture-directive/tree/v1.0.0"
  4952. },
  4953. "funding": [
  4954. {
  4955. "url": "https://github.com/ryangjchandler",
  4956. "type": "github"
  4957. }
  4958. ],
  4959. "time": "2024-02-26T18:08:49+00:00"
  4960. },
  4961. {
  4962. "name": "spatie/color",
  4963. "version": "1.5.3",
  4964. "source": {
  4965. "type": "git",
  4966. "url": "https://github.com/spatie/color.git",
  4967. "reference": "49739265900cabce4640cd26c3266fd8d2cca390"
  4968. },
  4969. "dist": {
  4970. "type": "zip",
  4971. "url": "https://api.github.com/repos/spatie/color/zipball/49739265900cabce4640cd26c3266fd8d2cca390",
  4972. "reference": "49739265900cabce4640cd26c3266fd8d2cca390",
  4973. "shasum": ""
  4974. },
  4975. "require": {
  4976. "php": "^7.3|^8.0"
  4977. },
  4978. "require-dev": {
  4979. "pestphp/pest": "^1.22",
  4980. "phpunit/phpunit": "^6.5||^9.0"
  4981. },
  4982. "type": "library",
  4983. "autoload": {
  4984. "psr-4": {
  4985. "Spatie\\Color\\": "src"
  4986. }
  4987. },
  4988. "notification-url": "https://packagist.org/downloads/",
  4989. "license": [
  4990. "MIT"
  4991. ],
  4992. "authors": [
  4993. {
  4994. "name": "Sebastian De Deyne",
  4995. "email": "sebastian@spatie.be",
  4996. "homepage": "https://spatie.be",
  4997. "role": "Developer"
  4998. }
  4999. ],
  5000. "description": "A little library to handle color conversions",
  5001. "homepage": "https://github.com/spatie/color",
  5002. "keywords": [
  5003. "color",
  5004. "conversion",
  5005. "rgb",
  5006. "spatie"
  5007. ],
  5008. "support": {
  5009. "issues": "https://github.com/spatie/color/issues",
  5010. "source": "https://github.com/spatie/color/tree/1.5.3"
  5011. },
  5012. "funding": [
  5013. {
  5014. "url": "https://github.com/spatie",
  5015. "type": "github"
  5016. }
  5017. ],
  5018. "time": "2022-12-18T12:58:32+00:00"
  5019. },
  5020. {
  5021. "name": "spatie/invade",
  5022. "version": "2.1.0",
  5023. "source": {
  5024. "type": "git",
  5025. "url": "https://github.com/spatie/invade.git",
  5026. "reference": "b920f6411d21df4e8610a138e2e87ae4957d7f63"
  5027. },
  5028. "dist": {
  5029. "type": "zip",
  5030. "url": "https://api.github.com/repos/spatie/invade/zipball/b920f6411d21df4e8610a138e2e87ae4957d7f63",
  5031. "reference": "b920f6411d21df4e8610a138e2e87ae4957d7f63",
  5032. "shasum": ""
  5033. },
  5034. "require": {
  5035. "php": "^8.0"
  5036. },
  5037. "require-dev": {
  5038. "pestphp/pest": "^1.20",
  5039. "phpstan/phpstan": "^1.4",
  5040. "spatie/ray": "^1.28"
  5041. },
  5042. "type": "library",
  5043. "autoload": {
  5044. "files": [
  5045. "src/functions.php"
  5046. ],
  5047. "psr-4": {
  5048. "Spatie\\Invade\\": "src"
  5049. }
  5050. },
  5051. "notification-url": "https://packagist.org/downloads/",
  5052. "license": [
  5053. "MIT"
  5054. ],
  5055. "authors": [
  5056. {
  5057. "name": "Freek Van der Herten",
  5058. "email": "freek@spatie.be",
  5059. "role": "Developer"
  5060. }
  5061. ],
  5062. "description": "A PHP function to work with private properties and methods",
  5063. "homepage": "https://github.com/spatie/invade",
  5064. "keywords": [
  5065. "invade",
  5066. "spatie"
  5067. ],
  5068. "support": {
  5069. "source": "https://github.com/spatie/invade/tree/2.1.0"
  5070. },
  5071. "funding": [
  5072. {
  5073. "url": "https://github.com/spatie",
  5074. "type": "github"
  5075. }
  5076. ],
  5077. "time": "2024-05-17T09:06:10+00:00"
  5078. },
  5079. {
  5080. "name": "spatie/laravel-package-tools",
  5081. "version": "1.16.4",
  5082. "source": {
  5083. "type": "git",
  5084. "url": "https://github.com/spatie/laravel-package-tools.git",
  5085. "reference": "ddf678e78d7f8b17e5cdd99c0c3413a4a6592e53"
  5086. },
  5087. "dist": {
  5088. "type": "zip",
  5089. "url": "https://api.github.com/repos/spatie/laravel-package-tools/zipball/ddf678e78d7f8b17e5cdd99c0c3413a4a6592e53",
  5090. "reference": "ddf678e78d7f8b17e5cdd99c0c3413a4a6592e53",
  5091. "shasum": ""
  5092. },
  5093. "require": {
  5094. "illuminate/contracts": "^9.28|^10.0|^11.0",
  5095. "php": "^8.0"
  5096. },
  5097. "require-dev": {
  5098. "mockery/mockery": "^1.5",
  5099. "orchestra/testbench": "^7.7|^8.0",
  5100. "pestphp/pest": "^1.22",
  5101. "phpunit/phpunit": "^9.5.24",
  5102. "spatie/pest-plugin-test-time": "^1.1"
  5103. },
  5104. "type": "library",
  5105. "autoload": {
  5106. "psr-4": {
  5107. "Spatie\\LaravelPackageTools\\": "src"
  5108. }
  5109. },
  5110. "notification-url": "https://packagist.org/downloads/",
  5111. "license": [
  5112. "MIT"
  5113. ],
  5114. "authors": [
  5115. {
  5116. "name": "Freek Van der Herten",
  5117. "email": "freek@spatie.be",
  5118. "role": "Developer"
  5119. }
  5120. ],
  5121. "description": "Tools for creating Laravel packages",
  5122. "homepage": "https://github.com/spatie/laravel-package-tools",
  5123. "keywords": [
  5124. "laravel-package-tools",
  5125. "spatie"
  5126. ],
  5127. "support": {
  5128. "issues": "https://github.com/spatie/laravel-package-tools/issues",
  5129. "source": "https://github.com/spatie/laravel-package-tools/tree/1.16.4"
  5130. },
  5131. "funding": [
  5132. {
  5133. "url": "https://github.com/spatie",
  5134. "type": "github"
  5135. }
  5136. ],
  5137. "time": "2024-03-20T07:29:11+00:00"
  5138. },
  5139. {
  5140. "name": "symfony/console",
  5141. "version": "v6.4.8",
  5142. "source": {
  5143. "type": "git",
  5144. "url": "https://github.com/symfony/console.git",
  5145. "reference": "be5854cee0e8c7b110f00d695d11debdfa1a2a91"
  5146. },
  5147. "dist": {
  5148. "type": "zip",
  5149. "url": "https://api.github.com/repos/symfony/console/zipball/be5854cee0e8c7b110f00d695d11debdfa1a2a91",
  5150. "reference": "be5854cee0e8c7b110f00d695d11debdfa1a2a91",
  5151. "shasum": ""
  5152. },
  5153. "require": {
  5154. "php": ">=8.1",
  5155. "symfony/deprecation-contracts": "^2.5|^3",
  5156. "symfony/polyfill-mbstring": "~1.0",
  5157. "symfony/service-contracts": "^2.5|^3",
  5158. "symfony/string": "^5.4|^6.0|^7.0"
  5159. },
  5160. "conflict": {
  5161. "symfony/dependency-injection": "<5.4",
  5162. "symfony/dotenv": "<5.4",
  5163. "symfony/event-dispatcher": "<5.4",
  5164. "symfony/lock": "<5.4",
  5165. "symfony/process": "<5.4"
  5166. },
  5167. "provide": {
  5168. "psr/log-implementation": "1.0|2.0|3.0"
  5169. },
  5170. "require-dev": {
  5171. "psr/log": "^1|^2|^3",
  5172. "symfony/config": "^5.4|^6.0|^7.0",
  5173. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  5174. "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
  5175. "symfony/http-foundation": "^6.4|^7.0",
  5176. "symfony/http-kernel": "^6.4|^7.0",
  5177. "symfony/lock": "^5.4|^6.0|^7.0",
  5178. "symfony/messenger": "^5.4|^6.0|^7.0",
  5179. "symfony/process": "^5.4|^6.0|^7.0",
  5180. "symfony/stopwatch": "^5.4|^6.0|^7.0",
  5181. "symfony/var-dumper": "^5.4|^6.0|^7.0"
  5182. },
  5183. "type": "library",
  5184. "autoload": {
  5185. "psr-4": {
  5186. "Symfony\\Component\\Console\\": ""
  5187. },
  5188. "exclude-from-classmap": [
  5189. "/Tests/"
  5190. ]
  5191. },
  5192. "notification-url": "https://packagist.org/downloads/",
  5193. "license": [
  5194. "MIT"
  5195. ],
  5196. "authors": [
  5197. {
  5198. "name": "Fabien Potencier",
  5199. "email": "fabien@symfony.com"
  5200. },
  5201. {
  5202. "name": "Symfony Community",
  5203. "homepage": "https://symfony.com/contributors"
  5204. }
  5205. ],
  5206. "description": "Eases the creation of beautiful and testable command line interfaces",
  5207. "homepage": "https://symfony.com",
  5208. "keywords": [
  5209. "cli",
  5210. "command-line",
  5211. "console",
  5212. "terminal"
  5213. ],
  5214. "support": {
  5215. "source": "https://github.com/symfony/console/tree/v6.4.8"
  5216. },
  5217. "funding": [
  5218. {
  5219. "url": "https://symfony.com/sponsor",
  5220. "type": "custom"
  5221. },
  5222. {
  5223. "url": "https://github.com/fabpot",
  5224. "type": "github"
  5225. },
  5226. {
  5227. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5228. "type": "tidelift"
  5229. }
  5230. ],
  5231. "time": "2024-05-31T14:49:08+00:00"
  5232. },
  5233. {
  5234. "name": "symfony/css-selector",
  5235. "version": "v6.4.8",
  5236. "source": {
  5237. "type": "git",
  5238. "url": "https://github.com/symfony/css-selector.git",
  5239. "reference": "4b61b02fe15db48e3687ce1c45ea385d1780fe08"
  5240. },
  5241. "dist": {
  5242. "type": "zip",
  5243. "url": "https://api.github.com/repos/symfony/css-selector/zipball/4b61b02fe15db48e3687ce1c45ea385d1780fe08",
  5244. "reference": "4b61b02fe15db48e3687ce1c45ea385d1780fe08",
  5245. "shasum": ""
  5246. },
  5247. "require": {
  5248. "php": ">=8.1"
  5249. },
  5250. "type": "library",
  5251. "autoload": {
  5252. "psr-4": {
  5253. "Symfony\\Component\\CssSelector\\": ""
  5254. },
  5255. "exclude-from-classmap": [
  5256. "/Tests/"
  5257. ]
  5258. },
  5259. "notification-url": "https://packagist.org/downloads/",
  5260. "license": [
  5261. "MIT"
  5262. ],
  5263. "authors": [
  5264. {
  5265. "name": "Fabien Potencier",
  5266. "email": "fabien@symfony.com"
  5267. },
  5268. {
  5269. "name": "Jean-François Simon",
  5270. "email": "jeanfrancois.simon@sensiolabs.com"
  5271. },
  5272. {
  5273. "name": "Symfony Community",
  5274. "homepage": "https://symfony.com/contributors"
  5275. }
  5276. ],
  5277. "description": "Converts CSS selectors to XPath expressions",
  5278. "homepage": "https://symfony.com",
  5279. "support": {
  5280. "source": "https://github.com/symfony/css-selector/tree/v6.4.8"
  5281. },
  5282. "funding": [
  5283. {
  5284. "url": "https://symfony.com/sponsor",
  5285. "type": "custom"
  5286. },
  5287. {
  5288. "url": "https://github.com/fabpot",
  5289. "type": "github"
  5290. },
  5291. {
  5292. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5293. "type": "tidelift"
  5294. }
  5295. ],
  5296. "time": "2024-05-31T14:49:08+00:00"
  5297. },
  5298. {
  5299. "name": "symfony/deprecation-contracts",
  5300. "version": "v3.5.0",
  5301. "source": {
  5302. "type": "git",
  5303. "url": "https://github.com/symfony/deprecation-contracts.git",
  5304. "reference": "0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1"
  5305. },
  5306. "dist": {
  5307. "type": "zip",
  5308. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1",
  5309. "reference": "0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1",
  5310. "shasum": ""
  5311. },
  5312. "require": {
  5313. "php": ">=8.1"
  5314. },
  5315. "type": "library",
  5316. "extra": {
  5317. "branch-alias": {
  5318. "dev-main": "3.5-dev"
  5319. },
  5320. "thanks": {
  5321. "name": "symfony/contracts",
  5322. "url": "https://github.com/symfony/contracts"
  5323. }
  5324. },
  5325. "autoload": {
  5326. "files": [
  5327. "function.php"
  5328. ]
  5329. },
  5330. "notification-url": "https://packagist.org/downloads/",
  5331. "license": [
  5332. "MIT"
  5333. ],
  5334. "authors": [
  5335. {
  5336. "name": "Nicolas Grekas",
  5337. "email": "p@tchwork.com"
  5338. },
  5339. {
  5340. "name": "Symfony Community",
  5341. "homepage": "https://symfony.com/contributors"
  5342. }
  5343. ],
  5344. "description": "A generic function and convention to trigger deprecation notices",
  5345. "homepage": "https://symfony.com",
  5346. "support": {
  5347. "source": "https://github.com/symfony/deprecation-contracts/tree/v3.5.0"
  5348. },
  5349. "funding": [
  5350. {
  5351. "url": "https://symfony.com/sponsor",
  5352. "type": "custom"
  5353. },
  5354. {
  5355. "url": "https://github.com/fabpot",
  5356. "type": "github"
  5357. },
  5358. {
  5359. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5360. "type": "tidelift"
  5361. }
  5362. ],
  5363. "time": "2024-04-18T09:32:20+00:00"
  5364. },
  5365. {
  5366. "name": "symfony/error-handler",
  5367. "version": "v6.4.8",
  5368. "source": {
  5369. "type": "git",
  5370. "url": "https://github.com/symfony/error-handler.git",
  5371. "reference": "ef836152bf13472dc5fb5b08b0c0c4cfeddc0fcc"
  5372. },
  5373. "dist": {
  5374. "type": "zip",
  5375. "url": "https://api.github.com/repos/symfony/error-handler/zipball/ef836152bf13472dc5fb5b08b0c0c4cfeddc0fcc",
  5376. "reference": "ef836152bf13472dc5fb5b08b0c0c4cfeddc0fcc",
  5377. "shasum": ""
  5378. },
  5379. "require": {
  5380. "php": ">=8.1",
  5381. "psr/log": "^1|^2|^3",
  5382. "symfony/var-dumper": "^5.4|^6.0|^7.0"
  5383. },
  5384. "conflict": {
  5385. "symfony/deprecation-contracts": "<2.5",
  5386. "symfony/http-kernel": "<6.4"
  5387. },
  5388. "require-dev": {
  5389. "symfony/deprecation-contracts": "^2.5|^3",
  5390. "symfony/http-kernel": "^6.4|^7.0",
  5391. "symfony/serializer": "^5.4|^6.0|^7.0"
  5392. },
  5393. "bin": [
  5394. "Resources/bin/patch-type-declarations"
  5395. ],
  5396. "type": "library",
  5397. "autoload": {
  5398. "psr-4": {
  5399. "Symfony\\Component\\ErrorHandler\\": ""
  5400. },
  5401. "exclude-from-classmap": [
  5402. "/Tests/"
  5403. ]
  5404. },
  5405. "notification-url": "https://packagist.org/downloads/",
  5406. "license": [
  5407. "MIT"
  5408. ],
  5409. "authors": [
  5410. {
  5411. "name": "Fabien Potencier",
  5412. "email": "fabien@symfony.com"
  5413. },
  5414. {
  5415. "name": "Symfony Community",
  5416. "homepage": "https://symfony.com/contributors"
  5417. }
  5418. ],
  5419. "description": "Provides tools to manage errors and ease debugging PHP code",
  5420. "homepage": "https://symfony.com",
  5421. "support": {
  5422. "source": "https://github.com/symfony/error-handler/tree/v6.4.8"
  5423. },
  5424. "funding": [
  5425. {
  5426. "url": "https://symfony.com/sponsor",
  5427. "type": "custom"
  5428. },
  5429. {
  5430. "url": "https://github.com/fabpot",
  5431. "type": "github"
  5432. },
  5433. {
  5434. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5435. "type": "tidelift"
  5436. }
  5437. ],
  5438. "time": "2024-05-31T14:49:08+00:00"
  5439. },
  5440. {
  5441. "name": "symfony/event-dispatcher",
  5442. "version": "v6.4.8",
  5443. "source": {
  5444. "type": "git",
  5445. "url": "https://github.com/symfony/event-dispatcher.git",
  5446. "reference": "8d7507f02b06e06815e56bb39aa0128e3806208b"
  5447. },
  5448. "dist": {
  5449. "type": "zip",
  5450. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/8d7507f02b06e06815e56bb39aa0128e3806208b",
  5451. "reference": "8d7507f02b06e06815e56bb39aa0128e3806208b",
  5452. "shasum": ""
  5453. },
  5454. "require": {
  5455. "php": ">=8.1",
  5456. "symfony/event-dispatcher-contracts": "^2.5|^3"
  5457. },
  5458. "conflict": {
  5459. "symfony/dependency-injection": "<5.4",
  5460. "symfony/service-contracts": "<2.5"
  5461. },
  5462. "provide": {
  5463. "psr/event-dispatcher-implementation": "1.0",
  5464. "symfony/event-dispatcher-implementation": "2.0|3.0"
  5465. },
  5466. "require-dev": {
  5467. "psr/log": "^1|^2|^3",
  5468. "symfony/config": "^5.4|^6.0|^7.0",
  5469. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  5470. "symfony/error-handler": "^5.4|^6.0|^7.0",
  5471. "symfony/expression-language": "^5.4|^6.0|^7.0",
  5472. "symfony/http-foundation": "^5.4|^6.0|^7.0",
  5473. "symfony/service-contracts": "^2.5|^3",
  5474. "symfony/stopwatch": "^5.4|^6.0|^7.0"
  5475. },
  5476. "type": "library",
  5477. "autoload": {
  5478. "psr-4": {
  5479. "Symfony\\Component\\EventDispatcher\\": ""
  5480. },
  5481. "exclude-from-classmap": [
  5482. "/Tests/"
  5483. ]
  5484. },
  5485. "notification-url": "https://packagist.org/downloads/",
  5486. "license": [
  5487. "MIT"
  5488. ],
  5489. "authors": [
  5490. {
  5491. "name": "Fabien Potencier",
  5492. "email": "fabien@symfony.com"
  5493. },
  5494. {
  5495. "name": "Symfony Community",
  5496. "homepage": "https://symfony.com/contributors"
  5497. }
  5498. ],
  5499. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  5500. "homepage": "https://symfony.com",
  5501. "support": {
  5502. "source": "https://github.com/symfony/event-dispatcher/tree/v6.4.8"
  5503. },
  5504. "funding": [
  5505. {
  5506. "url": "https://symfony.com/sponsor",
  5507. "type": "custom"
  5508. },
  5509. {
  5510. "url": "https://github.com/fabpot",
  5511. "type": "github"
  5512. },
  5513. {
  5514. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5515. "type": "tidelift"
  5516. }
  5517. ],
  5518. "time": "2024-05-31T14:49:08+00:00"
  5519. },
  5520. {
  5521. "name": "symfony/event-dispatcher-contracts",
  5522. "version": "v3.5.0",
  5523. "source": {
  5524. "type": "git",
  5525. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  5526. "reference": "8f93aec25d41b72493c6ddff14e916177c9efc50"
  5527. },
  5528. "dist": {
  5529. "type": "zip",
  5530. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/8f93aec25d41b72493c6ddff14e916177c9efc50",
  5531. "reference": "8f93aec25d41b72493c6ddff14e916177c9efc50",
  5532. "shasum": ""
  5533. },
  5534. "require": {
  5535. "php": ">=8.1",
  5536. "psr/event-dispatcher": "^1"
  5537. },
  5538. "type": "library",
  5539. "extra": {
  5540. "branch-alias": {
  5541. "dev-main": "3.5-dev"
  5542. },
  5543. "thanks": {
  5544. "name": "symfony/contracts",
  5545. "url": "https://github.com/symfony/contracts"
  5546. }
  5547. },
  5548. "autoload": {
  5549. "psr-4": {
  5550. "Symfony\\Contracts\\EventDispatcher\\": ""
  5551. }
  5552. },
  5553. "notification-url": "https://packagist.org/downloads/",
  5554. "license": [
  5555. "MIT"
  5556. ],
  5557. "authors": [
  5558. {
  5559. "name": "Nicolas Grekas",
  5560. "email": "p@tchwork.com"
  5561. },
  5562. {
  5563. "name": "Symfony Community",
  5564. "homepage": "https://symfony.com/contributors"
  5565. }
  5566. ],
  5567. "description": "Generic abstractions related to dispatching event",
  5568. "homepage": "https://symfony.com",
  5569. "keywords": [
  5570. "abstractions",
  5571. "contracts",
  5572. "decoupling",
  5573. "interfaces",
  5574. "interoperability",
  5575. "standards"
  5576. ],
  5577. "support": {
  5578. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.5.0"
  5579. },
  5580. "funding": [
  5581. {
  5582. "url": "https://symfony.com/sponsor",
  5583. "type": "custom"
  5584. },
  5585. {
  5586. "url": "https://github.com/fabpot",
  5587. "type": "github"
  5588. },
  5589. {
  5590. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5591. "type": "tidelift"
  5592. }
  5593. ],
  5594. "time": "2024-04-18T09:32:20+00:00"
  5595. },
  5596. {
  5597. "name": "symfony/finder",
  5598. "version": "v6.4.8",
  5599. "source": {
  5600. "type": "git",
  5601. "url": "https://github.com/symfony/finder.git",
  5602. "reference": "3ef977a43883215d560a2cecb82ec8e62131471c"
  5603. },
  5604. "dist": {
  5605. "type": "zip",
  5606. "url": "https://api.github.com/repos/symfony/finder/zipball/3ef977a43883215d560a2cecb82ec8e62131471c",
  5607. "reference": "3ef977a43883215d560a2cecb82ec8e62131471c",
  5608. "shasum": ""
  5609. },
  5610. "require": {
  5611. "php": ">=8.1"
  5612. },
  5613. "require-dev": {
  5614. "symfony/filesystem": "^6.0|^7.0"
  5615. },
  5616. "type": "library",
  5617. "autoload": {
  5618. "psr-4": {
  5619. "Symfony\\Component\\Finder\\": ""
  5620. },
  5621. "exclude-from-classmap": [
  5622. "/Tests/"
  5623. ]
  5624. },
  5625. "notification-url": "https://packagist.org/downloads/",
  5626. "license": [
  5627. "MIT"
  5628. ],
  5629. "authors": [
  5630. {
  5631. "name": "Fabien Potencier",
  5632. "email": "fabien@symfony.com"
  5633. },
  5634. {
  5635. "name": "Symfony Community",
  5636. "homepage": "https://symfony.com/contributors"
  5637. }
  5638. ],
  5639. "description": "Finds files and directories via an intuitive fluent interface",
  5640. "homepage": "https://symfony.com",
  5641. "support": {
  5642. "source": "https://github.com/symfony/finder/tree/v6.4.8"
  5643. },
  5644. "funding": [
  5645. {
  5646. "url": "https://symfony.com/sponsor",
  5647. "type": "custom"
  5648. },
  5649. {
  5650. "url": "https://github.com/fabpot",
  5651. "type": "github"
  5652. },
  5653. {
  5654. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5655. "type": "tidelift"
  5656. }
  5657. ],
  5658. "time": "2024-05-31T14:49:08+00:00"
  5659. },
  5660. {
  5661. "name": "symfony/html-sanitizer",
  5662. "version": "v6.4.8",
  5663. "source": {
  5664. "type": "git",
  5665. "url": "https://github.com/symfony/html-sanitizer.git",
  5666. "reference": "9de29a710320ee802374e479169c5a82f9ee7854"
  5667. },
  5668. "dist": {
  5669. "type": "zip",
  5670. "url": "https://api.github.com/repos/symfony/html-sanitizer/zipball/9de29a710320ee802374e479169c5a82f9ee7854",
  5671. "reference": "9de29a710320ee802374e479169c5a82f9ee7854",
  5672. "shasum": ""
  5673. },
  5674. "require": {
  5675. "ext-dom": "*",
  5676. "league/uri": "^6.5|^7.0",
  5677. "masterminds/html5": "^2.7.2",
  5678. "php": ">=8.1"
  5679. },
  5680. "type": "library",
  5681. "autoload": {
  5682. "psr-4": {
  5683. "Symfony\\Component\\HtmlSanitizer\\": ""
  5684. },
  5685. "exclude-from-classmap": [
  5686. "/Tests/"
  5687. ]
  5688. },
  5689. "notification-url": "https://packagist.org/downloads/",
  5690. "license": [
  5691. "MIT"
  5692. ],
  5693. "authors": [
  5694. {
  5695. "name": "Titouan Galopin",
  5696. "email": "galopintitouan@gmail.com"
  5697. },
  5698. {
  5699. "name": "Symfony Community",
  5700. "homepage": "https://symfony.com/contributors"
  5701. }
  5702. ],
  5703. "description": "Provides an object-oriented API to sanitize untrusted HTML input for safe insertion into a document's DOM.",
  5704. "homepage": "https://symfony.com",
  5705. "keywords": [
  5706. "Purifier",
  5707. "html",
  5708. "sanitizer"
  5709. ],
  5710. "support": {
  5711. "source": "https://github.com/symfony/html-sanitizer/tree/v6.4.8"
  5712. },
  5713. "funding": [
  5714. {
  5715. "url": "https://symfony.com/sponsor",
  5716. "type": "custom"
  5717. },
  5718. {
  5719. "url": "https://github.com/fabpot",
  5720. "type": "github"
  5721. },
  5722. {
  5723. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5724. "type": "tidelift"
  5725. }
  5726. ],
  5727. "time": "2024-05-31T14:51:39+00:00"
  5728. },
  5729. {
  5730. "name": "symfony/http-foundation",
  5731. "version": "v6.4.8",
  5732. "source": {
  5733. "type": "git",
  5734. "url": "https://github.com/symfony/http-foundation.git",
  5735. "reference": "27de8cc95e11db7a50b027e71caaab9024545947"
  5736. },
  5737. "dist": {
  5738. "type": "zip",
  5739. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/27de8cc95e11db7a50b027e71caaab9024545947",
  5740. "reference": "27de8cc95e11db7a50b027e71caaab9024545947",
  5741. "shasum": ""
  5742. },
  5743. "require": {
  5744. "php": ">=8.1",
  5745. "symfony/deprecation-contracts": "^2.5|^3",
  5746. "symfony/polyfill-mbstring": "~1.1",
  5747. "symfony/polyfill-php83": "^1.27"
  5748. },
  5749. "conflict": {
  5750. "symfony/cache": "<6.3"
  5751. },
  5752. "require-dev": {
  5753. "doctrine/dbal": "^2.13.1|^3|^4",
  5754. "predis/predis": "^1.1|^2.0",
  5755. "symfony/cache": "^6.3|^7.0",
  5756. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  5757. "symfony/expression-language": "^5.4|^6.0|^7.0",
  5758. "symfony/http-kernel": "^5.4.12|^6.0.12|^6.1.4|^7.0",
  5759. "symfony/mime": "^5.4|^6.0|^7.0",
  5760. "symfony/rate-limiter": "^5.4|^6.0|^7.0"
  5761. },
  5762. "type": "library",
  5763. "autoload": {
  5764. "psr-4": {
  5765. "Symfony\\Component\\HttpFoundation\\": ""
  5766. },
  5767. "exclude-from-classmap": [
  5768. "/Tests/"
  5769. ]
  5770. },
  5771. "notification-url": "https://packagist.org/downloads/",
  5772. "license": [
  5773. "MIT"
  5774. ],
  5775. "authors": [
  5776. {
  5777. "name": "Fabien Potencier",
  5778. "email": "fabien@symfony.com"
  5779. },
  5780. {
  5781. "name": "Symfony Community",
  5782. "homepage": "https://symfony.com/contributors"
  5783. }
  5784. ],
  5785. "description": "Defines an object-oriented layer for the HTTP specification",
  5786. "homepage": "https://symfony.com",
  5787. "support": {
  5788. "source": "https://github.com/symfony/http-foundation/tree/v6.4.8"
  5789. },
  5790. "funding": [
  5791. {
  5792. "url": "https://symfony.com/sponsor",
  5793. "type": "custom"
  5794. },
  5795. {
  5796. "url": "https://github.com/fabpot",
  5797. "type": "github"
  5798. },
  5799. {
  5800. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5801. "type": "tidelift"
  5802. }
  5803. ],
  5804. "time": "2024-05-31T14:49:08+00:00"
  5805. },
  5806. {
  5807. "name": "symfony/http-kernel",
  5808. "version": "v6.4.8",
  5809. "source": {
  5810. "type": "git",
  5811. "url": "https://github.com/symfony/http-kernel.git",
  5812. "reference": "6c519aa3f32adcfd1d1f18d923f6b227d9acf3c1"
  5813. },
  5814. "dist": {
  5815. "type": "zip",
  5816. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/6c519aa3f32adcfd1d1f18d923f6b227d9acf3c1",
  5817. "reference": "6c519aa3f32adcfd1d1f18d923f6b227d9acf3c1",
  5818. "shasum": ""
  5819. },
  5820. "require": {
  5821. "php": ">=8.1",
  5822. "psr/log": "^1|^2|^3",
  5823. "symfony/deprecation-contracts": "^2.5|^3",
  5824. "symfony/error-handler": "^6.4|^7.0",
  5825. "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
  5826. "symfony/http-foundation": "^6.4|^7.0",
  5827. "symfony/polyfill-ctype": "^1.8"
  5828. },
  5829. "conflict": {
  5830. "symfony/browser-kit": "<5.4",
  5831. "symfony/cache": "<5.4",
  5832. "symfony/config": "<6.1",
  5833. "symfony/console": "<5.4",
  5834. "symfony/dependency-injection": "<6.4",
  5835. "symfony/doctrine-bridge": "<5.4",
  5836. "symfony/form": "<5.4",
  5837. "symfony/http-client": "<5.4",
  5838. "symfony/http-client-contracts": "<2.5",
  5839. "symfony/mailer": "<5.4",
  5840. "symfony/messenger": "<5.4",
  5841. "symfony/translation": "<5.4",
  5842. "symfony/translation-contracts": "<2.5",
  5843. "symfony/twig-bridge": "<5.4",
  5844. "symfony/validator": "<6.4",
  5845. "symfony/var-dumper": "<6.3",
  5846. "twig/twig": "<2.13"
  5847. },
  5848. "provide": {
  5849. "psr/log-implementation": "1.0|2.0|3.0"
  5850. },
  5851. "require-dev": {
  5852. "psr/cache": "^1.0|^2.0|^3.0",
  5853. "symfony/browser-kit": "^5.4|^6.0|^7.0",
  5854. "symfony/clock": "^6.2|^7.0",
  5855. "symfony/config": "^6.1|^7.0",
  5856. "symfony/console": "^5.4|^6.0|^7.0",
  5857. "symfony/css-selector": "^5.4|^6.0|^7.0",
  5858. "symfony/dependency-injection": "^6.4|^7.0",
  5859. "symfony/dom-crawler": "^5.4|^6.0|^7.0",
  5860. "symfony/expression-language": "^5.4|^6.0|^7.0",
  5861. "symfony/finder": "^5.4|^6.0|^7.0",
  5862. "symfony/http-client-contracts": "^2.5|^3",
  5863. "symfony/process": "^5.4|^6.0|^7.0",
  5864. "symfony/property-access": "^5.4.5|^6.0.5|^7.0",
  5865. "symfony/routing": "^5.4|^6.0|^7.0",
  5866. "symfony/serializer": "^6.4.4|^7.0.4",
  5867. "symfony/stopwatch": "^5.4|^6.0|^7.0",
  5868. "symfony/translation": "^5.4|^6.0|^7.0",
  5869. "symfony/translation-contracts": "^2.5|^3",
  5870. "symfony/uid": "^5.4|^6.0|^7.0",
  5871. "symfony/validator": "^6.4|^7.0",
  5872. "symfony/var-dumper": "^5.4|^6.4|^7.0",
  5873. "symfony/var-exporter": "^6.2|^7.0",
  5874. "twig/twig": "^2.13|^3.0.4"
  5875. },
  5876. "type": "library",
  5877. "autoload": {
  5878. "psr-4": {
  5879. "Symfony\\Component\\HttpKernel\\": ""
  5880. },
  5881. "exclude-from-classmap": [
  5882. "/Tests/"
  5883. ]
  5884. },
  5885. "notification-url": "https://packagist.org/downloads/",
  5886. "license": [
  5887. "MIT"
  5888. ],
  5889. "authors": [
  5890. {
  5891. "name": "Fabien Potencier",
  5892. "email": "fabien@symfony.com"
  5893. },
  5894. {
  5895. "name": "Symfony Community",
  5896. "homepage": "https://symfony.com/contributors"
  5897. }
  5898. ],
  5899. "description": "Provides a structured process for converting a Request into a Response",
  5900. "homepage": "https://symfony.com",
  5901. "support": {
  5902. "source": "https://github.com/symfony/http-kernel/tree/v6.4.8"
  5903. },
  5904. "funding": [
  5905. {
  5906. "url": "https://symfony.com/sponsor",
  5907. "type": "custom"
  5908. },
  5909. {
  5910. "url": "https://github.com/fabpot",
  5911. "type": "github"
  5912. },
  5913. {
  5914. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5915. "type": "tidelift"
  5916. }
  5917. ],
  5918. "time": "2024-06-02T16:06:25+00:00"
  5919. },
  5920. {
  5921. "name": "symfony/mailer",
  5922. "version": "v6.4.8",
  5923. "source": {
  5924. "type": "git",
  5925. "url": "https://github.com/symfony/mailer.git",
  5926. "reference": "76326421d44c07f7824b19487cfbf87870b37efc"
  5927. },
  5928. "dist": {
  5929. "type": "zip",
  5930. "url": "https://api.github.com/repos/symfony/mailer/zipball/76326421d44c07f7824b19487cfbf87870b37efc",
  5931. "reference": "76326421d44c07f7824b19487cfbf87870b37efc",
  5932. "shasum": ""
  5933. },
  5934. "require": {
  5935. "egulias/email-validator": "^2.1.10|^3|^4",
  5936. "php": ">=8.1",
  5937. "psr/event-dispatcher": "^1",
  5938. "psr/log": "^1|^2|^3",
  5939. "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
  5940. "symfony/mime": "^6.2|^7.0",
  5941. "symfony/service-contracts": "^2.5|^3"
  5942. },
  5943. "conflict": {
  5944. "symfony/http-client-contracts": "<2.5",
  5945. "symfony/http-kernel": "<5.4",
  5946. "symfony/messenger": "<6.2",
  5947. "symfony/mime": "<6.2",
  5948. "symfony/twig-bridge": "<6.2.1"
  5949. },
  5950. "require-dev": {
  5951. "symfony/console": "^5.4|^6.0|^7.0",
  5952. "symfony/http-client": "^5.4|^6.0|^7.0",
  5953. "symfony/messenger": "^6.2|^7.0",
  5954. "symfony/twig-bridge": "^6.2|^7.0"
  5955. },
  5956. "type": "library",
  5957. "autoload": {
  5958. "psr-4": {
  5959. "Symfony\\Component\\Mailer\\": ""
  5960. },
  5961. "exclude-from-classmap": [
  5962. "/Tests/"
  5963. ]
  5964. },
  5965. "notification-url": "https://packagist.org/downloads/",
  5966. "license": [
  5967. "MIT"
  5968. ],
  5969. "authors": [
  5970. {
  5971. "name": "Fabien Potencier",
  5972. "email": "fabien@symfony.com"
  5973. },
  5974. {
  5975. "name": "Symfony Community",
  5976. "homepage": "https://symfony.com/contributors"
  5977. }
  5978. ],
  5979. "description": "Helps sending emails",
  5980. "homepage": "https://symfony.com",
  5981. "support": {
  5982. "source": "https://github.com/symfony/mailer/tree/v6.4.8"
  5983. },
  5984. "funding": [
  5985. {
  5986. "url": "https://symfony.com/sponsor",
  5987. "type": "custom"
  5988. },
  5989. {
  5990. "url": "https://github.com/fabpot",
  5991. "type": "github"
  5992. },
  5993. {
  5994. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5995. "type": "tidelift"
  5996. }
  5997. ],
  5998. "time": "2024-05-31T14:49:08+00:00"
  5999. },
  6000. {
  6001. "name": "symfony/mime",
  6002. "version": "v6.4.8",
  6003. "source": {
  6004. "type": "git",
  6005. "url": "https://github.com/symfony/mime.git",
  6006. "reference": "618597ab8b78ac86d1c75a9d0b35540cda074f33"
  6007. },
  6008. "dist": {
  6009. "type": "zip",
  6010. "url": "https://api.github.com/repos/symfony/mime/zipball/618597ab8b78ac86d1c75a9d0b35540cda074f33",
  6011. "reference": "618597ab8b78ac86d1c75a9d0b35540cda074f33",
  6012. "shasum": ""
  6013. },
  6014. "require": {
  6015. "php": ">=8.1",
  6016. "symfony/deprecation-contracts": "^2.5|^3",
  6017. "symfony/polyfill-intl-idn": "^1.10",
  6018. "symfony/polyfill-mbstring": "^1.0"
  6019. },
  6020. "conflict": {
  6021. "egulias/email-validator": "~3.0.0",
  6022. "phpdocumentor/reflection-docblock": "<3.2.2",
  6023. "phpdocumentor/type-resolver": "<1.4.0",
  6024. "symfony/mailer": "<5.4",
  6025. "symfony/serializer": "<6.3.2"
  6026. },
  6027. "require-dev": {
  6028. "egulias/email-validator": "^2.1.10|^3.1|^4",
  6029. "league/html-to-markdown": "^5.0",
  6030. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  6031. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  6032. "symfony/process": "^5.4|^6.4|^7.0",
  6033. "symfony/property-access": "^5.4|^6.0|^7.0",
  6034. "symfony/property-info": "^5.4|^6.0|^7.0",
  6035. "symfony/serializer": "^6.3.2|^7.0"
  6036. },
  6037. "type": "library",
  6038. "autoload": {
  6039. "psr-4": {
  6040. "Symfony\\Component\\Mime\\": ""
  6041. },
  6042. "exclude-from-classmap": [
  6043. "/Tests/"
  6044. ]
  6045. },
  6046. "notification-url": "https://packagist.org/downloads/",
  6047. "license": [
  6048. "MIT"
  6049. ],
  6050. "authors": [
  6051. {
  6052. "name": "Fabien Potencier",
  6053. "email": "fabien@symfony.com"
  6054. },
  6055. {
  6056. "name": "Symfony Community",
  6057. "homepage": "https://symfony.com/contributors"
  6058. }
  6059. ],
  6060. "description": "Allows manipulating MIME messages",
  6061. "homepage": "https://symfony.com",
  6062. "keywords": [
  6063. "mime",
  6064. "mime-type"
  6065. ],
  6066. "support": {
  6067. "source": "https://github.com/symfony/mime/tree/v6.4.8"
  6068. },
  6069. "funding": [
  6070. {
  6071. "url": "https://symfony.com/sponsor",
  6072. "type": "custom"
  6073. },
  6074. {
  6075. "url": "https://github.com/fabpot",
  6076. "type": "github"
  6077. },
  6078. {
  6079. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6080. "type": "tidelift"
  6081. }
  6082. ],
  6083. "time": "2024-06-01T07:50:16+00:00"
  6084. },
  6085. {
  6086. "name": "symfony/polyfill-ctype",
  6087. "version": "v1.29.0",
  6088. "source": {
  6089. "type": "git",
  6090. "url": "https://github.com/symfony/polyfill-ctype.git",
  6091. "reference": "ef4d7e442ca910c4764bce785146269b30cb5fc4"
  6092. },
  6093. "dist": {
  6094. "type": "zip",
  6095. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/ef4d7e442ca910c4764bce785146269b30cb5fc4",
  6096. "reference": "ef4d7e442ca910c4764bce785146269b30cb5fc4",
  6097. "shasum": ""
  6098. },
  6099. "require": {
  6100. "php": ">=7.1"
  6101. },
  6102. "provide": {
  6103. "ext-ctype": "*"
  6104. },
  6105. "suggest": {
  6106. "ext-ctype": "For best performance"
  6107. },
  6108. "type": "library",
  6109. "extra": {
  6110. "thanks": {
  6111. "name": "symfony/polyfill",
  6112. "url": "https://github.com/symfony/polyfill"
  6113. }
  6114. },
  6115. "autoload": {
  6116. "files": [
  6117. "bootstrap.php"
  6118. ],
  6119. "psr-4": {
  6120. "Symfony\\Polyfill\\Ctype\\": ""
  6121. }
  6122. },
  6123. "notification-url": "https://packagist.org/downloads/",
  6124. "license": [
  6125. "MIT"
  6126. ],
  6127. "authors": [
  6128. {
  6129. "name": "Gert de Pagter",
  6130. "email": "BackEndTea@gmail.com"
  6131. },
  6132. {
  6133. "name": "Symfony Community",
  6134. "homepage": "https://symfony.com/contributors"
  6135. }
  6136. ],
  6137. "description": "Symfony polyfill for ctype functions",
  6138. "homepage": "https://symfony.com",
  6139. "keywords": [
  6140. "compatibility",
  6141. "ctype",
  6142. "polyfill",
  6143. "portable"
  6144. ],
  6145. "support": {
  6146. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.29.0"
  6147. },
  6148. "funding": [
  6149. {
  6150. "url": "https://symfony.com/sponsor",
  6151. "type": "custom"
  6152. },
  6153. {
  6154. "url": "https://github.com/fabpot",
  6155. "type": "github"
  6156. },
  6157. {
  6158. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6159. "type": "tidelift"
  6160. }
  6161. ],
  6162. "time": "2024-01-29T20:11:03+00:00"
  6163. },
  6164. {
  6165. "name": "symfony/polyfill-intl-grapheme",
  6166. "version": "v1.29.0",
  6167. "source": {
  6168. "type": "git",
  6169. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  6170. "reference": "32a9da87d7b3245e09ac426c83d334ae9f06f80f"
  6171. },
  6172. "dist": {
  6173. "type": "zip",
  6174. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/32a9da87d7b3245e09ac426c83d334ae9f06f80f",
  6175. "reference": "32a9da87d7b3245e09ac426c83d334ae9f06f80f",
  6176. "shasum": ""
  6177. },
  6178. "require": {
  6179. "php": ">=7.1"
  6180. },
  6181. "suggest": {
  6182. "ext-intl": "For best performance"
  6183. },
  6184. "type": "library",
  6185. "extra": {
  6186. "thanks": {
  6187. "name": "symfony/polyfill",
  6188. "url": "https://github.com/symfony/polyfill"
  6189. }
  6190. },
  6191. "autoload": {
  6192. "files": [
  6193. "bootstrap.php"
  6194. ],
  6195. "psr-4": {
  6196. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  6197. }
  6198. },
  6199. "notification-url": "https://packagist.org/downloads/",
  6200. "license": [
  6201. "MIT"
  6202. ],
  6203. "authors": [
  6204. {
  6205. "name": "Nicolas Grekas",
  6206. "email": "p@tchwork.com"
  6207. },
  6208. {
  6209. "name": "Symfony Community",
  6210. "homepage": "https://symfony.com/contributors"
  6211. }
  6212. ],
  6213. "description": "Symfony polyfill for intl's grapheme_* functions",
  6214. "homepage": "https://symfony.com",
  6215. "keywords": [
  6216. "compatibility",
  6217. "grapheme",
  6218. "intl",
  6219. "polyfill",
  6220. "portable",
  6221. "shim"
  6222. ],
  6223. "support": {
  6224. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.29.0"
  6225. },
  6226. "funding": [
  6227. {
  6228. "url": "https://symfony.com/sponsor",
  6229. "type": "custom"
  6230. },
  6231. {
  6232. "url": "https://github.com/fabpot",
  6233. "type": "github"
  6234. },
  6235. {
  6236. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6237. "type": "tidelift"
  6238. }
  6239. ],
  6240. "time": "2024-01-29T20:11:03+00:00"
  6241. },
  6242. {
  6243. "name": "symfony/polyfill-intl-idn",
  6244. "version": "v1.29.0",
  6245. "source": {
  6246. "type": "git",
  6247. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  6248. "reference": "a287ed7475f85bf6f61890146edbc932c0fff919"
  6249. },
  6250. "dist": {
  6251. "type": "zip",
  6252. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/a287ed7475f85bf6f61890146edbc932c0fff919",
  6253. "reference": "a287ed7475f85bf6f61890146edbc932c0fff919",
  6254. "shasum": ""
  6255. },
  6256. "require": {
  6257. "php": ">=7.1",
  6258. "symfony/polyfill-intl-normalizer": "^1.10",
  6259. "symfony/polyfill-php72": "^1.10"
  6260. },
  6261. "suggest": {
  6262. "ext-intl": "For best performance"
  6263. },
  6264. "type": "library",
  6265. "extra": {
  6266. "thanks": {
  6267. "name": "symfony/polyfill",
  6268. "url": "https://github.com/symfony/polyfill"
  6269. }
  6270. },
  6271. "autoload": {
  6272. "files": [
  6273. "bootstrap.php"
  6274. ],
  6275. "psr-4": {
  6276. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  6277. }
  6278. },
  6279. "notification-url": "https://packagist.org/downloads/",
  6280. "license": [
  6281. "MIT"
  6282. ],
  6283. "authors": [
  6284. {
  6285. "name": "Laurent Bassin",
  6286. "email": "laurent@bassin.info"
  6287. },
  6288. {
  6289. "name": "Trevor Rowbotham",
  6290. "email": "trevor.rowbotham@pm.me"
  6291. },
  6292. {
  6293. "name": "Symfony Community",
  6294. "homepage": "https://symfony.com/contributors"
  6295. }
  6296. ],
  6297. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  6298. "homepage": "https://symfony.com",
  6299. "keywords": [
  6300. "compatibility",
  6301. "idn",
  6302. "intl",
  6303. "polyfill",
  6304. "portable",
  6305. "shim"
  6306. ],
  6307. "support": {
  6308. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.29.0"
  6309. },
  6310. "funding": [
  6311. {
  6312. "url": "https://symfony.com/sponsor",
  6313. "type": "custom"
  6314. },
  6315. {
  6316. "url": "https://github.com/fabpot",
  6317. "type": "github"
  6318. },
  6319. {
  6320. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6321. "type": "tidelift"
  6322. }
  6323. ],
  6324. "time": "2024-01-29T20:11:03+00:00"
  6325. },
  6326. {
  6327. "name": "symfony/polyfill-intl-normalizer",
  6328. "version": "v1.29.0",
  6329. "source": {
  6330. "type": "git",
  6331. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  6332. "reference": "bc45c394692b948b4d383a08d7753968bed9a83d"
  6333. },
  6334. "dist": {
  6335. "type": "zip",
  6336. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/bc45c394692b948b4d383a08d7753968bed9a83d",
  6337. "reference": "bc45c394692b948b4d383a08d7753968bed9a83d",
  6338. "shasum": ""
  6339. },
  6340. "require": {
  6341. "php": ">=7.1"
  6342. },
  6343. "suggest": {
  6344. "ext-intl": "For best performance"
  6345. },
  6346. "type": "library",
  6347. "extra": {
  6348. "thanks": {
  6349. "name": "symfony/polyfill",
  6350. "url": "https://github.com/symfony/polyfill"
  6351. }
  6352. },
  6353. "autoload": {
  6354. "files": [
  6355. "bootstrap.php"
  6356. ],
  6357. "psr-4": {
  6358. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  6359. },
  6360. "classmap": [
  6361. "Resources/stubs"
  6362. ]
  6363. },
  6364. "notification-url": "https://packagist.org/downloads/",
  6365. "license": [
  6366. "MIT"
  6367. ],
  6368. "authors": [
  6369. {
  6370. "name": "Nicolas Grekas",
  6371. "email": "p@tchwork.com"
  6372. },
  6373. {
  6374. "name": "Symfony Community",
  6375. "homepage": "https://symfony.com/contributors"
  6376. }
  6377. ],
  6378. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  6379. "homepage": "https://symfony.com",
  6380. "keywords": [
  6381. "compatibility",
  6382. "intl",
  6383. "normalizer",
  6384. "polyfill",
  6385. "portable",
  6386. "shim"
  6387. ],
  6388. "support": {
  6389. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.29.0"
  6390. },
  6391. "funding": [
  6392. {
  6393. "url": "https://symfony.com/sponsor",
  6394. "type": "custom"
  6395. },
  6396. {
  6397. "url": "https://github.com/fabpot",
  6398. "type": "github"
  6399. },
  6400. {
  6401. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6402. "type": "tidelift"
  6403. }
  6404. ],
  6405. "time": "2024-01-29T20:11:03+00:00"
  6406. },
  6407. {
  6408. "name": "symfony/polyfill-mbstring",
  6409. "version": "v1.29.0",
  6410. "source": {
  6411. "type": "git",
  6412. "url": "https://github.com/symfony/polyfill-mbstring.git",
  6413. "reference": "9773676c8a1bb1f8d4340a62efe641cf76eda7ec"
  6414. },
  6415. "dist": {
  6416. "type": "zip",
  6417. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/9773676c8a1bb1f8d4340a62efe641cf76eda7ec",
  6418. "reference": "9773676c8a1bb1f8d4340a62efe641cf76eda7ec",
  6419. "shasum": ""
  6420. },
  6421. "require": {
  6422. "php": ">=7.1"
  6423. },
  6424. "provide": {
  6425. "ext-mbstring": "*"
  6426. },
  6427. "suggest": {
  6428. "ext-mbstring": "For best performance"
  6429. },
  6430. "type": "library",
  6431. "extra": {
  6432. "thanks": {
  6433. "name": "symfony/polyfill",
  6434. "url": "https://github.com/symfony/polyfill"
  6435. }
  6436. },
  6437. "autoload": {
  6438. "files": [
  6439. "bootstrap.php"
  6440. ],
  6441. "psr-4": {
  6442. "Symfony\\Polyfill\\Mbstring\\": ""
  6443. }
  6444. },
  6445. "notification-url": "https://packagist.org/downloads/",
  6446. "license": [
  6447. "MIT"
  6448. ],
  6449. "authors": [
  6450. {
  6451. "name": "Nicolas Grekas",
  6452. "email": "p@tchwork.com"
  6453. },
  6454. {
  6455. "name": "Symfony Community",
  6456. "homepage": "https://symfony.com/contributors"
  6457. }
  6458. ],
  6459. "description": "Symfony polyfill for the Mbstring extension",
  6460. "homepage": "https://symfony.com",
  6461. "keywords": [
  6462. "compatibility",
  6463. "mbstring",
  6464. "polyfill",
  6465. "portable",
  6466. "shim"
  6467. ],
  6468. "support": {
  6469. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.29.0"
  6470. },
  6471. "funding": [
  6472. {
  6473. "url": "https://symfony.com/sponsor",
  6474. "type": "custom"
  6475. },
  6476. {
  6477. "url": "https://github.com/fabpot",
  6478. "type": "github"
  6479. },
  6480. {
  6481. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6482. "type": "tidelift"
  6483. }
  6484. ],
  6485. "time": "2024-01-29T20:11:03+00:00"
  6486. },
  6487. {
  6488. "name": "symfony/polyfill-php72",
  6489. "version": "v1.29.0",
  6490. "source": {
  6491. "type": "git",
  6492. "url": "https://github.com/symfony/polyfill-php72.git",
  6493. "reference": "861391a8da9a04cbad2d232ddd9e4893220d6e25"
  6494. },
  6495. "dist": {
  6496. "type": "zip",
  6497. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/861391a8da9a04cbad2d232ddd9e4893220d6e25",
  6498. "reference": "861391a8da9a04cbad2d232ddd9e4893220d6e25",
  6499. "shasum": ""
  6500. },
  6501. "require": {
  6502. "php": ">=7.1"
  6503. },
  6504. "type": "library",
  6505. "extra": {
  6506. "thanks": {
  6507. "name": "symfony/polyfill",
  6508. "url": "https://github.com/symfony/polyfill"
  6509. }
  6510. },
  6511. "autoload": {
  6512. "files": [
  6513. "bootstrap.php"
  6514. ],
  6515. "psr-4": {
  6516. "Symfony\\Polyfill\\Php72\\": ""
  6517. }
  6518. },
  6519. "notification-url": "https://packagist.org/downloads/",
  6520. "license": [
  6521. "MIT"
  6522. ],
  6523. "authors": [
  6524. {
  6525. "name": "Nicolas Grekas",
  6526. "email": "p@tchwork.com"
  6527. },
  6528. {
  6529. "name": "Symfony Community",
  6530. "homepage": "https://symfony.com/contributors"
  6531. }
  6532. ],
  6533. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  6534. "homepage": "https://symfony.com",
  6535. "keywords": [
  6536. "compatibility",
  6537. "polyfill",
  6538. "portable",
  6539. "shim"
  6540. ],
  6541. "support": {
  6542. "source": "https://github.com/symfony/polyfill-php72/tree/v1.29.0"
  6543. },
  6544. "funding": [
  6545. {
  6546. "url": "https://symfony.com/sponsor",
  6547. "type": "custom"
  6548. },
  6549. {
  6550. "url": "https://github.com/fabpot",
  6551. "type": "github"
  6552. },
  6553. {
  6554. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6555. "type": "tidelift"
  6556. }
  6557. ],
  6558. "time": "2024-01-29T20:11:03+00:00"
  6559. },
  6560. {
  6561. "name": "symfony/polyfill-php80",
  6562. "version": "v1.29.0",
  6563. "source": {
  6564. "type": "git",
  6565. "url": "https://github.com/symfony/polyfill-php80.git",
  6566. "reference": "87b68208d5c1188808dd7839ee1e6c8ec3b02f1b"
  6567. },
  6568. "dist": {
  6569. "type": "zip",
  6570. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/87b68208d5c1188808dd7839ee1e6c8ec3b02f1b",
  6571. "reference": "87b68208d5c1188808dd7839ee1e6c8ec3b02f1b",
  6572. "shasum": ""
  6573. },
  6574. "require": {
  6575. "php": ">=7.1"
  6576. },
  6577. "type": "library",
  6578. "extra": {
  6579. "thanks": {
  6580. "name": "symfony/polyfill",
  6581. "url": "https://github.com/symfony/polyfill"
  6582. }
  6583. },
  6584. "autoload": {
  6585. "files": [
  6586. "bootstrap.php"
  6587. ],
  6588. "psr-4": {
  6589. "Symfony\\Polyfill\\Php80\\": ""
  6590. },
  6591. "classmap": [
  6592. "Resources/stubs"
  6593. ]
  6594. },
  6595. "notification-url": "https://packagist.org/downloads/",
  6596. "license": [
  6597. "MIT"
  6598. ],
  6599. "authors": [
  6600. {
  6601. "name": "Ion Bazan",
  6602. "email": "ion.bazan@gmail.com"
  6603. },
  6604. {
  6605. "name": "Nicolas Grekas",
  6606. "email": "p@tchwork.com"
  6607. },
  6608. {
  6609. "name": "Symfony Community",
  6610. "homepage": "https://symfony.com/contributors"
  6611. }
  6612. ],
  6613. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  6614. "homepage": "https://symfony.com",
  6615. "keywords": [
  6616. "compatibility",
  6617. "polyfill",
  6618. "portable",
  6619. "shim"
  6620. ],
  6621. "support": {
  6622. "source": "https://github.com/symfony/polyfill-php80/tree/v1.29.0"
  6623. },
  6624. "funding": [
  6625. {
  6626. "url": "https://symfony.com/sponsor",
  6627. "type": "custom"
  6628. },
  6629. {
  6630. "url": "https://github.com/fabpot",
  6631. "type": "github"
  6632. },
  6633. {
  6634. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6635. "type": "tidelift"
  6636. }
  6637. ],
  6638. "time": "2024-01-29T20:11:03+00:00"
  6639. },
  6640. {
  6641. "name": "symfony/polyfill-php83",
  6642. "version": "v1.29.0",
  6643. "source": {
  6644. "type": "git",
  6645. "url": "https://github.com/symfony/polyfill-php83.git",
  6646. "reference": "86fcae159633351e5fd145d1c47de6c528f8caff"
  6647. },
  6648. "dist": {
  6649. "type": "zip",
  6650. "url": "https://api.github.com/repos/symfony/polyfill-php83/zipball/86fcae159633351e5fd145d1c47de6c528f8caff",
  6651. "reference": "86fcae159633351e5fd145d1c47de6c528f8caff",
  6652. "shasum": ""
  6653. },
  6654. "require": {
  6655. "php": ">=7.1",
  6656. "symfony/polyfill-php80": "^1.14"
  6657. },
  6658. "type": "library",
  6659. "extra": {
  6660. "thanks": {
  6661. "name": "symfony/polyfill",
  6662. "url": "https://github.com/symfony/polyfill"
  6663. }
  6664. },
  6665. "autoload": {
  6666. "files": [
  6667. "bootstrap.php"
  6668. ],
  6669. "psr-4": {
  6670. "Symfony\\Polyfill\\Php83\\": ""
  6671. },
  6672. "classmap": [
  6673. "Resources/stubs"
  6674. ]
  6675. },
  6676. "notification-url": "https://packagist.org/downloads/",
  6677. "license": [
  6678. "MIT"
  6679. ],
  6680. "authors": [
  6681. {
  6682. "name": "Nicolas Grekas",
  6683. "email": "p@tchwork.com"
  6684. },
  6685. {
  6686. "name": "Symfony Community",
  6687. "homepage": "https://symfony.com/contributors"
  6688. }
  6689. ],
  6690. "description": "Symfony polyfill backporting some PHP 8.3+ features to lower PHP versions",
  6691. "homepage": "https://symfony.com",
  6692. "keywords": [
  6693. "compatibility",
  6694. "polyfill",
  6695. "portable",
  6696. "shim"
  6697. ],
  6698. "support": {
  6699. "source": "https://github.com/symfony/polyfill-php83/tree/v1.29.0"
  6700. },
  6701. "funding": [
  6702. {
  6703. "url": "https://symfony.com/sponsor",
  6704. "type": "custom"
  6705. },
  6706. {
  6707. "url": "https://github.com/fabpot",
  6708. "type": "github"
  6709. },
  6710. {
  6711. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6712. "type": "tidelift"
  6713. }
  6714. ],
  6715. "time": "2024-01-29T20:11:03+00:00"
  6716. },
  6717. {
  6718. "name": "symfony/polyfill-uuid",
  6719. "version": "v1.29.0",
  6720. "source": {
  6721. "type": "git",
  6722. "url": "https://github.com/symfony/polyfill-uuid.git",
  6723. "reference": "3abdd21b0ceaa3000ee950097bc3cf9efc137853"
  6724. },
  6725. "dist": {
  6726. "type": "zip",
  6727. "url": "https://api.github.com/repos/symfony/polyfill-uuid/zipball/3abdd21b0ceaa3000ee950097bc3cf9efc137853",
  6728. "reference": "3abdd21b0ceaa3000ee950097bc3cf9efc137853",
  6729. "shasum": ""
  6730. },
  6731. "require": {
  6732. "php": ">=7.1"
  6733. },
  6734. "provide": {
  6735. "ext-uuid": "*"
  6736. },
  6737. "suggest": {
  6738. "ext-uuid": "For best performance"
  6739. },
  6740. "type": "library",
  6741. "extra": {
  6742. "thanks": {
  6743. "name": "symfony/polyfill",
  6744. "url": "https://github.com/symfony/polyfill"
  6745. }
  6746. },
  6747. "autoload": {
  6748. "files": [
  6749. "bootstrap.php"
  6750. ],
  6751. "psr-4": {
  6752. "Symfony\\Polyfill\\Uuid\\": ""
  6753. }
  6754. },
  6755. "notification-url": "https://packagist.org/downloads/",
  6756. "license": [
  6757. "MIT"
  6758. ],
  6759. "authors": [
  6760. {
  6761. "name": "Grégoire Pineau",
  6762. "email": "lyrixx@lyrixx.info"
  6763. },
  6764. {
  6765. "name": "Symfony Community",
  6766. "homepage": "https://symfony.com/contributors"
  6767. }
  6768. ],
  6769. "description": "Symfony polyfill for uuid functions",
  6770. "homepage": "https://symfony.com",
  6771. "keywords": [
  6772. "compatibility",
  6773. "polyfill",
  6774. "portable",
  6775. "uuid"
  6776. ],
  6777. "support": {
  6778. "source": "https://github.com/symfony/polyfill-uuid/tree/v1.29.0"
  6779. },
  6780. "funding": [
  6781. {
  6782. "url": "https://symfony.com/sponsor",
  6783. "type": "custom"
  6784. },
  6785. {
  6786. "url": "https://github.com/fabpot",
  6787. "type": "github"
  6788. },
  6789. {
  6790. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6791. "type": "tidelift"
  6792. }
  6793. ],
  6794. "time": "2024-01-29T20:11:03+00:00"
  6795. },
  6796. {
  6797. "name": "symfony/process",
  6798. "version": "v6.4.8",
  6799. "source": {
  6800. "type": "git",
  6801. "url": "https://github.com/symfony/process.git",
  6802. "reference": "8d92dd79149f29e89ee0f480254db595f6a6a2c5"
  6803. },
  6804. "dist": {
  6805. "type": "zip",
  6806. "url": "https://api.github.com/repos/symfony/process/zipball/8d92dd79149f29e89ee0f480254db595f6a6a2c5",
  6807. "reference": "8d92dd79149f29e89ee0f480254db595f6a6a2c5",
  6808. "shasum": ""
  6809. },
  6810. "require": {
  6811. "php": ">=8.1"
  6812. },
  6813. "type": "library",
  6814. "autoload": {
  6815. "psr-4": {
  6816. "Symfony\\Component\\Process\\": ""
  6817. },
  6818. "exclude-from-classmap": [
  6819. "/Tests/"
  6820. ]
  6821. },
  6822. "notification-url": "https://packagist.org/downloads/",
  6823. "license": [
  6824. "MIT"
  6825. ],
  6826. "authors": [
  6827. {
  6828. "name": "Fabien Potencier",
  6829. "email": "fabien@symfony.com"
  6830. },
  6831. {
  6832. "name": "Symfony Community",
  6833. "homepage": "https://symfony.com/contributors"
  6834. }
  6835. ],
  6836. "description": "Executes commands in sub-processes",
  6837. "homepage": "https://symfony.com",
  6838. "support": {
  6839. "source": "https://github.com/symfony/process/tree/v6.4.8"
  6840. },
  6841. "funding": [
  6842. {
  6843. "url": "https://symfony.com/sponsor",
  6844. "type": "custom"
  6845. },
  6846. {
  6847. "url": "https://github.com/fabpot",
  6848. "type": "github"
  6849. },
  6850. {
  6851. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6852. "type": "tidelift"
  6853. }
  6854. ],
  6855. "time": "2024-05-31T14:49:08+00:00"
  6856. },
  6857. {
  6858. "name": "symfony/routing",
  6859. "version": "v6.4.8",
  6860. "source": {
  6861. "type": "git",
  6862. "url": "https://github.com/symfony/routing.git",
  6863. "reference": "8a40d0f9b01f0fbb80885d3ce0ad6714fb603a58"
  6864. },
  6865. "dist": {
  6866. "type": "zip",
  6867. "url": "https://api.github.com/repos/symfony/routing/zipball/8a40d0f9b01f0fbb80885d3ce0ad6714fb603a58",
  6868. "reference": "8a40d0f9b01f0fbb80885d3ce0ad6714fb603a58",
  6869. "shasum": ""
  6870. },
  6871. "require": {
  6872. "php": ">=8.1",
  6873. "symfony/deprecation-contracts": "^2.5|^3"
  6874. },
  6875. "conflict": {
  6876. "doctrine/annotations": "<1.12",
  6877. "symfony/config": "<6.2",
  6878. "symfony/dependency-injection": "<5.4",
  6879. "symfony/yaml": "<5.4"
  6880. },
  6881. "require-dev": {
  6882. "doctrine/annotations": "^1.12|^2",
  6883. "psr/log": "^1|^2|^3",
  6884. "symfony/config": "^6.2|^7.0",
  6885. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  6886. "symfony/expression-language": "^5.4|^6.0|^7.0",
  6887. "symfony/http-foundation": "^5.4|^6.0|^7.0",
  6888. "symfony/yaml": "^5.4|^6.0|^7.0"
  6889. },
  6890. "type": "library",
  6891. "autoload": {
  6892. "psr-4": {
  6893. "Symfony\\Component\\Routing\\": ""
  6894. },
  6895. "exclude-from-classmap": [
  6896. "/Tests/"
  6897. ]
  6898. },
  6899. "notification-url": "https://packagist.org/downloads/",
  6900. "license": [
  6901. "MIT"
  6902. ],
  6903. "authors": [
  6904. {
  6905. "name": "Fabien Potencier",
  6906. "email": "fabien@symfony.com"
  6907. },
  6908. {
  6909. "name": "Symfony Community",
  6910. "homepage": "https://symfony.com/contributors"
  6911. }
  6912. ],
  6913. "description": "Maps an HTTP request to a set of configuration variables",
  6914. "homepage": "https://symfony.com",
  6915. "keywords": [
  6916. "router",
  6917. "routing",
  6918. "uri",
  6919. "url"
  6920. ],
  6921. "support": {
  6922. "source": "https://github.com/symfony/routing/tree/v6.4.8"
  6923. },
  6924. "funding": [
  6925. {
  6926. "url": "https://symfony.com/sponsor",
  6927. "type": "custom"
  6928. },
  6929. {
  6930. "url": "https://github.com/fabpot",
  6931. "type": "github"
  6932. },
  6933. {
  6934. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6935. "type": "tidelift"
  6936. }
  6937. ],
  6938. "time": "2024-05-31T14:49:08+00:00"
  6939. },
  6940. {
  6941. "name": "symfony/service-contracts",
  6942. "version": "v3.5.0",
  6943. "source": {
  6944. "type": "git",
  6945. "url": "https://github.com/symfony/service-contracts.git",
  6946. "reference": "bd1d9e59a81d8fa4acdcea3f617c581f7475a80f"
  6947. },
  6948. "dist": {
  6949. "type": "zip",
  6950. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/bd1d9e59a81d8fa4acdcea3f617c581f7475a80f",
  6951. "reference": "bd1d9e59a81d8fa4acdcea3f617c581f7475a80f",
  6952. "shasum": ""
  6953. },
  6954. "require": {
  6955. "php": ">=8.1",
  6956. "psr/container": "^1.1|^2.0",
  6957. "symfony/deprecation-contracts": "^2.5|^3"
  6958. },
  6959. "conflict": {
  6960. "ext-psr": "<1.1|>=2"
  6961. },
  6962. "type": "library",
  6963. "extra": {
  6964. "branch-alias": {
  6965. "dev-main": "3.5-dev"
  6966. },
  6967. "thanks": {
  6968. "name": "symfony/contracts",
  6969. "url": "https://github.com/symfony/contracts"
  6970. }
  6971. },
  6972. "autoload": {
  6973. "psr-4": {
  6974. "Symfony\\Contracts\\Service\\": ""
  6975. },
  6976. "exclude-from-classmap": [
  6977. "/Test/"
  6978. ]
  6979. },
  6980. "notification-url": "https://packagist.org/downloads/",
  6981. "license": [
  6982. "MIT"
  6983. ],
  6984. "authors": [
  6985. {
  6986. "name": "Nicolas Grekas",
  6987. "email": "p@tchwork.com"
  6988. },
  6989. {
  6990. "name": "Symfony Community",
  6991. "homepage": "https://symfony.com/contributors"
  6992. }
  6993. ],
  6994. "description": "Generic abstractions related to writing services",
  6995. "homepage": "https://symfony.com",
  6996. "keywords": [
  6997. "abstractions",
  6998. "contracts",
  6999. "decoupling",
  7000. "interfaces",
  7001. "interoperability",
  7002. "standards"
  7003. ],
  7004. "support": {
  7005. "source": "https://github.com/symfony/service-contracts/tree/v3.5.0"
  7006. },
  7007. "funding": [
  7008. {
  7009. "url": "https://symfony.com/sponsor",
  7010. "type": "custom"
  7011. },
  7012. {
  7013. "url": "https://github.com/fabpot",
  7014. "type": "github"
  7015. },
  7016. {
  7017. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7018. "type": "tidelift"
  7019. }
  7020. ],
  7021. "time": "2024-04-18T09:32:20+00:00"
  7022. },
  7023. {
  7024. "name": "symfony/string",
  7025. "version": "v6.4.8",
  7026. "source": {
  7027. "type": "git",
  7028. "url": "https://github.com/symfony/string.git",
  7029. "reference": "a147c0f826c4a1f3afb763ab8e009e37c877a44d"
  7030. },
  7031. "dist": {
  7032. "type": "zip",
  7033. "url": "https://api.github.com/repos/symfony/string/zipball/a147c0f826c4a1f3afb763ab8e009e37c877a44d",
  7034. "reference": "a147c0f826c4a1f3afb763ab8e009e37c877a44d",
  7035. "shasum": ""
  7036. },
  7037. "require": {
  7038. "php": ">=8.1",
  7039. "symfony/polyfill-ctype": "~1.8",
  7040. "symfony/polyfill-intl-grapheme": "~1.0",
  7041. "symfony/polyfill-intl-normalizer": "~1.0",
  7042. "symfony/polyfill-mbstring": "~1.0"
  7043. },
  7044. "conflict": {
  7045. "symfony/translation-contracts": "<2.5"
  7046. },
  7047. "require-dev": {
  7048. "symfony/error-handler": "^5.4|^6.0|^7.0",
  7049. "symfony/http-client": "^5.4|^6.0|^7.0",
  7050. "symfony/intl": "^6.2|^7.0",
  7051. "symfony/translation-contracts": "^2.5|^3.0",
  7052. "symfony/var-exporter": "^5.4|^6.0|^7.0"
  7053. },
  7054. "type": "library",
  7055. "autoload": {
  7056. "files": [
  7057. "Resources/functions.php"
  7058. ],
  7059. "psr-4": {
  7060. "Symfony\\Component\\String\\": ""
  7061. },
  7062. "exclude-from-classmap": [
  7063. "/Tests/"
  7064. ]
  7065. },
  7066. "notification-url": "https://packagist.org/downloads/",
  7067. "license": [
  7068. "MIT"
  7069. ],
  7070. "authors": [
  7071. {
  7072. "name": "Nicolas Grekas",
  7073. "email": "p@tchwork.com"
  7074. },
  7075. {
  7076. "name": "Symfony Community",
  7077. "homepage": "https://symfony.com/contributors"
  7078. }
  7079. ],
  7080. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  7081. "homepage": "https://symfony.com",
  7082. "keywords": [
  7083. "grapheme",
  7084. "i18n",
  7085. "string",
  7086. "unicode",
  7087. "utf-8",
  7088. "utf8"
  7089. ],
  7090. "support": {
  7091. "source": "https://github.com/symfony/string/tree/v6.4.8"
  7092. },
  7093. "funding": [
  7094. {
  7095. "url": "https://symfony.com/sponsor",
  7096. "type": "custom"
  7097. },
  7098. {
  7099. "url": "https://github.com/fabpot",
  7100. "type": "github"
  7101. },
  7102. {
  7103. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7104. "type": "tidelift"
  7105. }
  7106. ],
  7107. "time": "2024-05-31T14:49:08+00:00"
  7108. },
  7109. {
  7110. "name": "symfony/translation",
  7111. "version": "v6.4.8",
  7112. "source": {
  7113. "type": "git",
  7114. "url": "https://github.com/symfony/translation.git",
  7115. "reference": "a002933b13989fc4bd0b58e04bf7eec5210e438a"
  7116. },
  7117. "dist": {
  7118. "type": "zip",
  7119. "url": "https://api.github.com/repos/symfony/translation/zipball/a002933b13989fc4bd0b58e04bf7eec5210e438a",
  7120. "reference": "a002933b13989fc4bd0b58e04bf7eec5210e438a",
  7121. "shasum": ""
  7122. },
  7123. "require": {
  7124. "php": ">=8.1",
  7125. "symfony/deprecation-contracts": "^2.5|^3",
  7126. "symfony/polyfill-mbstring": "~1.0",
  7127. "symfony/translation-contracts": "^2.5|^3.0"
  7128. },
  7129. "conflict": {
  7130. "symfony/config": "<5.4",
  7131. "symfony/console": "<5.4",
  7132. "symfony/dependency-injection": "<5.4",
  7133. "symfony/http-client-contracts": "<2.5",
  7134. "symfony/http-kernel": "<5.4",
  7135. "symfony/service-contracts": "<2.5",
  7136. "symfony/twig-bundle": "<5.4",
  7137. "symfony/yaml": "<5.4"
  7138. },
  7139. "provide": {
  7140. "symfony/translation-implementation": "2.3|3.0"
  7141. },
  7142. "require-dev": {
  7143. "nikic/php-parser": "^4.18|^5.0",
  7144. "psr/log": "^1|^2|^3",
  7145. "symfony/config": "^5.4|^6.0|^7.0",
  7146. "symfony/console": "^5.4|^6.0|^7.0",
  7147. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  7148. "symfony/finder": "^5.4|^6.0|^7.0",
  7149. "symfony/http-client-contracts": "^2.5|^3.0",
  7150. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  7151. "symfony/intl": "^5.4|^6.0|^7.0",
  7152. "symfony/polyfill-intl-icu": "^1.21",
  7153. "symfony/routing": "^5.4|^6.0|^7.0",
  7154. "symfony/service-contracts": "^2.5|^3",
  7155. "symfony/yaml": "^5.4|^6.0|^7.0"
  7156. },
  7157. "type": "library",
  7158. "autoload": {
  7159. "files": [
  7160. "Resources/functions.php"
  7161. ],
  7162. "psr-4": {
  7163. "Symfony\\Component\\Translation\\": ""
  7164. },
  7165. "exclude-from-classmap": [
  7166. "/Tests/"
  7167. ]
  7168. },
  7169. "notification-url": "https://packagist.org/downloads/",
  7170. "license": [
  7171. "MIT"
  7172. ],
  7173. "authors": [
  7174. {
  7175. "name": "Fabien Potencier",
  7176. "email": "fabien@symfony.com"
  7177. },
  7178. {
  7179. "name": "Symfony Community",
  7180. "homepage": "https://symfony.com/contributors"
  7181. }
  7182. ],
  7183. "description": "Provides tools to internationalize your application",
  7184. "homepage": "https://symfony.com",
  7185. "support": {
  7186. "source": "https://github.com/symfony/translation/tree/v6.4.8"
  7187. },
  7188. "funding": [
  7189. {
  7190. "url": "https://symfony.com/sponsor",
  7191. "type": "custom"
  7192. },
  7193. {
  7194. "url": "https://github.com/fabpot",
  7195. "type": "github"
  7196. },
  7197. {
  7198. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7199. "type": "tidelift"
  7200. }
  7201. ],
  7202. "time": "2024-05-31T14:49:08+00:00"
  7203. },
  7204. {
  7205. "name": "symfony/translation-contracts",
  7206. "version": "v3.5.0",
  7207. "source": {
  7208. "type": "git",
  7209. "url": "https://github.com/symfony/translation-contracts.git",
  7210. "reference": "b9d2189887bb6b2e0367a9fc7136c5239ab9b05a"
  7211. },
  7212. "dist": {
  7213. "type": "zip",
  7214. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/b9d2189887bb6b2e0367a9fc7136c5239ab9b05a",
  7215. "reference": "b9d2189887bb6b2e0367a9fc7136c5239ab9b05a",
  7216. "shasum": ""
  7217. },
  7218. "require": {
  7219. "php": ">=8.1"
  7220. },
  7221. "type": "library",
  7222. "extra": {
  7223. "branch-alias": {
  7224. "dev-main": "3.5-dev"
  7225. },
  7226. "thanks": {
  7227. "name": "symfony/contracts",
  7228. "url": "https://github.com/symfony/contracts"
  7229. }
  7230. },
  7231. "autoload": {
  7232. "psr-4": {
  7233. "Symfony\\Contracts\\Translation\\": ""
  7234. },
  7235. "exclude-from-classmap": [
  7236. "/Test/"
  7237. ]
  7238. },
  7239. "notification-url": "https://packagist.org/downloads/",
  7240. "license": [
  7241. "MIT"
  7242. ],
  7243. "authors": [
  7244. {
  7245. "name": "Nicolas Grekas",
  7246. "email": "p@tchwork.com"
  7247. },
  7248. {
  7249. "name": "Symfony Community",
  7250. "homepage": "https://symfony.com/contributors"
  7251. }
  7252. ],
  7253. "description": "Generic abstractions related to translation",
  7254. "homepage": "https://symfony.com",
  7255. "keywords": [
  7256. "abstractions",
  7257. "contracts",
  7258. "decoupling",
  7259. "interfaces",
  7260. "interoperability",
  7261. "standards"
  7262. ],
  7263. "support": {
  7264. "source": "https://github.com/symfony/translation-contracts/tree/v3.5.0"
  7265. },
  7266. "funding": [
  7267. {
  7268. "url": "https://symfony.com/sponsor",
  7269. "type": "custom"
  7270. },
  7271. {
  7272. "url": "https://github.com/fabpot",
  7273. "type": "github"
  7274. },
  7275. {
  7276. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7277. "type": "tidelift"
  7278. }
  7279. ],
  7280. "time": "2024-04-18T09:32:20+00:00"
  7281. },
  7282. {
  7283. "name": "symfony/uid",
  7284. "version": "v6.4.8",
  7285. "source": {
  7286. "type": "git",
  7287. "url": "https://github.com/symfony/uid.git",
  7288. "reference": "35904eca37a84bb764c560cbfcac9f0ac2bcdbdf"
  7289. },
  7290. "dist": {
  7291. "type": "zip",
  7292. "url": "https://api.github.com/repos/symfony/uid/zipball/35904eca37a84bb764c560cbfcac9f0ac2bcdbdf",
  7293. "reference": "35904eca37a84bb764c560cbfcac9f0ac2bcdbdf",
  7294. "shasum": ""
  7295. },
  7296. "require": {
  7297. "php": ">=8.1",
  7298. "symfony/polyfill-uuid": "^1.15"
  7299. },
  7300. "require-dev": {
  7301. "symfony/console": "^5.4|^6.0|^7.0"
  7302. },
  7303. "type": "library",
  7304. "autoload": {
  7305. "psr-4": {
  7306. "Symfony\\Component\\Uid\\": ""
  7307. },
  7308. "exclude-from-classmap": [
  7309. "/Tests/"
  7310. ]
  7311. },
  7312. "notification-url": "https://packagist.org/downloads/",
  7313. "license": [
  7314. "MIT"
  7315. ],
  7316. "authors": [
  7317. {
  7318. "name": "Grégoire Pineau",
  7319. "email": "lyrixx@lyrixx.info"
  7320. },
  7321. {
  7322. "name": "Nicolas Grekas",
  7323. "email": "p@tchwork.com"
  7324. },
  7325. {
  7326. "name": "Symfony Community",
  7327. "homepage": "https://symfony.com/contributors"
  7328. }
  7329. ],
  7330. "description": "Provides an object-oriented API to generate and represent UIDs",
  7331. "homepage": "https://symfony.com",
  7332. "keywords": [
  7333. "UID",
  7334. "ulid",
  7335. "uuid"
  7336. ],
  7337. "support": {
  7338. "source": "https://github.com/symfony/uid/tree/v6.4.8"
  7339. },
  7340. "funding": [
  7341. {
  7342. "url": "https://symfony.com/sponsor",
  7343. "type": "custom"
  7344. },
  7345. {
  7346. "url": "https://github.com/fabpot",
  7347. "type": "github"
  7348. },
  7349. {
  7350. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7351. "type": "tidelift"
  7352. }
  7353. ],
  7354. "time": "2024-05-31T14:49:08+00:00"
  7355. },
  7356. {
  7357. "name": "symfony/var-dumper",
  7358. "version": "v6.4.8",
  7359. "source": {
  7360. "type": "git",
  7361. "url": "https://github.com/symfony/var-dumper.git",
  7362. "reference": "ad23ca4312395f0a8a8633c831ef4c4ee542ed25"
  7363. },
  7364. "dist": {
  7365. "type": "zip",
  7366. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/ad23ca4312395f0a8a8633c831ef4c4ee542ed25",
  7367. "reference": "ad23ca4312395f0a8a8633c831ef4c4ee542ed25",
  7368. "shasum": ""
  7369. },
  7370. "require": {
  7371. "php": ">=8.1",
  7372. "symfony/deprecation-contracts": "^2.5|^3",
  7373. "symfony/polyfill-mbstring": "~1.0"
  7374. },
  7375. "conflict": {
  7376. "symfony/console": "<5.4"
  7377. },
  7378. "require-dev": {
  7379. "ext-iconv": "*",
  7380. "symfony/console": "^5.4|^6.0|^7.0",
  7381. "symfony/error-handler": "^6.3|^7.0",
  7382. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  7383. "symfony/process": "^5.4|^6.0|^7.0",
  7384. "symfony/uid": "^5.4|^6.0|^7.0",
  7385. "twig/twig": "^2.13|^3.0.4"
  7386. },
  7387. "bin": [
  7388. "Resources/bin/var-dump-server"
  7389. ],
  7390. "type": "library",
  7391. "autoload": {
  7392. "files": [
  7393. "Resources/functions/dump.php"
  7394. ],
  7395. "psr-4": {
  7396. "Symfony\\Component\\VarDumper\\": ""
  7397. },
  7398. "exclude-from-classmap": [
  7399. "/Tests/"
  7400. ]
  7401. },
  7402. "notification-url": "https://packagist.org/downloads/",
  7403. "license": [
  7404. "MIT"
  7405. ],
  7406. "authors": [
  7407. {
  7408. "name": "Nicolas Grekas",
  7409. "email": "p@tchwork.com"
  7410. },
  7411. {
  7412. "name": "Symfony Community",
  7413. "homepage": "https://symfony.com/contributors"
  7414. }
  7415. ],
  7416. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  7417. "homepage": "https://symfony.com",
  7418. "keywords": [
  7419. "debug",
  7420. "dump"
  7421. ],
  7422. "support": {
  7423. "source": "https://github.com/symfony/var-dumper/tree/v6.4.8"
  7424. },
  7425. "funding": [
  7426. {
  7427. "url": "https://symfony.com/sponsor",
  7428. "type": "custom"
  7429. },
  7430. {
  7431. "url": "https://github.com/fabpot",
  7432. "type": "github"
  7433. },
  7434. {
  7435. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7436. "type": "tidelift"
  7437. }
  7438. ],
  7439. "time": "2024-05-31T14:49:08+00:00"
  7440. },
  7441. {
  7442. "name": "tijsverkoyen/css-to-inline-styles",
  7443. "version": "v2.2.7",
  7444. "source": {
  7445. "type": "git",
  7446. "url": "https://github.com/tijsverkoyen/CssToInlineStyles.git",
  7447. "reference": "83ee6f38df0a63106a9e4536e3060458b74ccedb"
  7448. },
  7449. "dist": {
  7450. "type": "zip",
  7451. "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/83ee6f38df0a63106a9e4536e3060458b74ccedb",
  7452. "reference": "83ee6f38df0a63106a9e4536e3060458b74ccedb",
  7453. "shasum": ""
  7454. },
  7455. "require": {
  7456. "ext-dom": "*",
  7457. "ext-libxml": "*",
  7458. "php": "^5.5 || ^7.0 || ^8.0",
  7459. "symfony/css-selector": "^2.7 || ^3.0 || ^4.0 || ^5.0 || ^6.0 || ^7.0"
  7460. },
  7461. "require-dev": {
  7462. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0 || ^7.5 || ^8.5.21 || ^9.5.10"
  7463. },
  7464. "type": "library",
  7465. "extra": {
  7466. "branch-alias": {
  7467. "dev-master": "2.2.x-dev"
  7468. }
  7469. },
  7470. "autoload": {
  7471. "psr-4": {
  7472. "TijsVerkoyen\\CssToInlineStyles\\": "src"
  7473. }
  7474. },
  7475. "notification-url": "https://packagist.org/downloads/",
  7476. "license": [
  7477. "BSD-3-Clause"
  7478. ],
  7479. "authors": [
  7480. {
  7481. "name": "Tijs Verkoyen",
  7482. "email": "css_to_inline_styles@verkoyen.eu",
  7483. "role": "Developer"
  7484. }
  7485. ],
  7486. "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.",
  7487. "homepage": "https://github.com/tijsverkoyen/CssToInlineStyles",
  7488. "support": {
  7489. "issues": "https://github.com/tijsverkoyen/CssToInlineStyles/issues",
  7490. "source": "https://github.com/tijsverkoyen/CssToInlineStyles/tree/v2.2.7"
  7491. },
  7492. "time": "2023-12-08T13:03:43+00:00"
  7493. },
  7494. {
  7495. "name": "vlucas/phpdotenv",
  7496. "version": "v5.6.0",
  7497. "source": {
  7498. "type": "git",
  7499. "url": "https://github.com/vlucas/phpdotenv.git",
  7500. "reference": "2cf9fb6054c2bb1d59d1f3817706ecdb9d2934c4"
  7501. },
  7502. "dist": {
  7503. "type": "zip",
  7504. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/2cf9fb6054c2bb1d59d1f3817706ecdb9d2934c4",
  7505. "reference": "2cf9fb6054c2bb1d59d1f3817706ecdb9d2934c4",
  7506. "shasum": ""
  7507. },
  7508. "require": {
  7509. "ext-pcre": "*",
  7510. "graham-campbell/result-type": "^1.1.2",
  7511. "php": "^7.2.5 || ^8.0",
  7512. "phpoption/phpoption": "^1.9.2",
  7513. "symfony/polyfill-ctype": "^1.24",
  7514. "symfony/polyfill-mbstring": "^1.24",
  7515. "symfony/polyfill-php80": "^1.24"
  7516. },
  7517. "require-dev": {
  7518. "bamarni/composer-bin-plugin": "^1.8.2",
  7519. "ext-filter": "*",
  7520. "phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2"
  7521. },
  7522. "suggest": {
  7523. "ext-filter": "Required to use the boolean validator."
  7524. },
  7525. "type": "library",
  7526. "extra": {
  7527. "bamarni-bin": {
  7528. "bin-links": true,
  7529. "forward-command": true
  7530. },
  7531. "branch-alias": {
  7532. "dev-master": "5.6-dev"
  7533. }
  7534. },
  7535. "autoload": {
  7536. "psr-4": {
  7537. "Dotenv\\": "src/"
  7538. }
  7539. },
  7540. "notification-url": "https://packagist.org/downloads/",
  7541. "license": [
  7542. "BSD-3-Clause"
  7543. ],
  7544. "authors": [
  7545. {
  7546. "name": "Graham Campbell",
  7547. "email": "hello@gjcampbell.co.uk",
  7548. "homepage": "https://github.com/GrahamCampbell"
  7549. },
  7550. {
  7551. "name": "Vance Lucas",
  7552. "email": "vance@vancelucas.com",
  7553. "homepage": "https://github.com/vlucas"
  7554. }
  7555. ],
  7556. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  7557. "keywords": [
  7558. "dotenv",
  7559. "env",
  7560. "environment"
  7561. ],
  7562. "support": {
  7563. "issues": "https://github.com/vlucas/phpdotenv/issues",
  7564. "source": "https://github.com/vlucas/phpdotenv/tree/v5.6.0"
  7565. },
  7566. "funding": [
  7567. {
  7568. "url": "https://github.com/GrahamCampbell",
  7569. "type": "github"
  7570. },
  7571. {
  7572. "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
  7573. "type": "tidelift"
  7574. }
  7575. ],
  7576. "time": "2023-11-12T22:43:29+00:00"
  7577. },
  7578. {
  7579. "name": "voku/portable-ascii",
  7580. "version": "2.0.1",
  7581. "source": {
  7582. "type": "git",
  7583. "url": "https://github.com/voku/portable-ascii.git",
  7584. "reference": "b56450eed252f6801410d810c8e1727224ae0743"
  7585. },
  7586. "dist": {
  7587. "type": "zip",
  7588. "url": "https://api.github.com/repos/voku/portable-ascii/zipball/b56450eed252f6801410d810c8e1727224ae0743",
  7589. "reference": "b56450eed252f6801410d810c8e1727224ae0743",
  7590. "shasum": ""
  7591. },
  7592. "require": {
  7593. "php": ">=7.0.0"
  7594. },
  7595. "require-dev": {
  7596. "phpunit/phpunit": "~6.0 || ~7.0 || ~9.0"
  7597. },
  7598. "suggest": {
  7599. "ext-intl": "Use Intl for transliterator_transliterate() support"
  7600. },
  7601. "type": "library",
  7602. "autoload": {
  7603. "psr-4": {
  7604. "voku\\": "src/voku/"
  7605. }
  7606. },
  7607. "notification-url": "https://packagist.org/downloads/",
  7608. "license": [
  7609. "MIT"
  7610. ],
  7611. "authors": [
  7612. {
  7613. "name": "Lars Moelleken",
  7614. "homepage": "http://www.moelleken.org/"
  7615. }
  7616. ],
  7617. "description": "Portable ASCII library - performance optimized (ascii) string functions for php.",
  7618. "homepage": "https://github.com/voku/portable-ascii",
  7619. "keywords": [
  7620. "ascii",
  7621. "clean",
  7622. "php"
  7623. ],
  7624. "support": {
  7625. "issues": "https://github.com/voku/portable-ascii/issues",
  7626. "source": "https://github.com/voku/portable-ascii/tree/2.0.1"
  7627. },
  7628. "funding": [
  7629. {
  7630. "url": "https://www.paypal.me/moelleken",
  7631. "type": "custom"
  7632. },
  7633. {
  7634. "url": "https://github.com/voku",
  7635. "type": "github"
  7636. },
  7637. {
  7638. "url": "https://opencollective.com/portable-ascii",
  7639. "type": "open_collective"
  7640. },
  7641. {
  7642. "url": "https://www.patreon.com/voku",
  7643. "type": "patreon"
  7644. },
  7645. {
  7646. "url": "https://tidelift.com/funding/github/packagist/voku/portable-ascii",
  7647. "type": "tidelift"
  7648. }
  7649. ],
  7650. "time": "2022-03-08T17:03:00+00:00"
  7651. },
  7652. {
  7653. "name": "webmozart/assert",
  7654. "version": "1.11.0",
  7655. "source": {
  7656. "type": "git",
  7657. "url": "https://github.com/webmozarts/assert.git",
  7658. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991"
  7659. },
  7660. "dist": {
  7661. "type": "zip",
  7662. "url": "https://api.github.com/repos/webmozarts/assert/zipball/11cb2199493b2f8a3b53e7f19068fc6aac760991",
  7663. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991",
  7664. "shasum": ""
  7665. },
  7666. "require": {
  7667. "ext-ctype": "*",
  7668. "php": "^7.2 || ^8.0"
  7669. },
  7670. "conflict": {
  7671. "phpstan/phpstan": "<0.12.20",
  7672. "vimeo/psalm": "<4.6.1 || 4.6.2"
  7673. },
  7674. "require-dev": {
  7675. "phpunit/phpunit": "^8.5.13"
  7676. },
  7677. "type": "library",
  7678. "extra": {
  7679. "branch-alias": {
  7680. "dev-master": "1.10-dev"
  7681. }
  7682. },
  7683. "autoload": {
  7684. "psr-4": {
  7685. "Webmozart\\Assert\\": "src/"
  7686. }
  7687. },
  7688. "notification-url": "https://packagist.org/downloads/",
  7689. "license": [
  7690. "MIT"
  7691. ],
  7692. "authors": [
  7693. {
  7694. "name": "Bernhard Schussek",
  7695. "email": "bschussek@gmail.com"
  7696. }
  7697. ],
  7698. "description": "Assertions to validate method input/output with nice error messages.",
  7699. "keywords": [
  7700. "assert",
  7701. "check",
  7702. "validate"
  7703. ],
  7704. "support": {
  7705. "issues": "https://github.com/webmozarts/assert/issues",
  7706. "source": "https://github.com/webmozarts/assert/tree/1.11.0"
  7707. },
  7708. "time": "2022-06-03T18:03:27+00:00"
  7709. }
  7710. ],
  7711. "packages-dev": [
  7712. {
  7713. "name": "fakerphp/faker",
  7714. "version": "v1.23.1",
  7715. "source": {
  7716. "type": "git",
  7717. "url": "https://github.com/FakerPHP/Faker.git",
  7718. "reference": "bfb4fe148adbf78eff521199619b93a52ae3554b"
  7719. },
  7720. "dist": {
  7721. "type": "zip",
  7722. "url": "https://api.github.com/repos/FakerPHP/Faker/zipball/bfb4fe148adbf78eff521199619b93a52ae3554b",
  7723. "reference": "bfb4fe148adbf78eff521199619b93a52ae3554b",
  7724. "shasum": ""
  7725. },
  7726. "require": {
  7727. "php": "^7.4 || ^8.0",
  7728. "psr/container": "^1.0 || ^2.0",
  7729. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  7730. },
  7731. "conflict": {
  7732. "fzaninotto/faker": "*"
  7733. },
  7734. "require-dev": {
  7735. "bamarni/composer-bin-plugin": "^1.4.1",
  7736. "doctrine/persistence": "^1.3 || ^2.0",
  7737. "ext-intl": "*",
  7738. "phpunit/phpunit": "^9.5.26",
  7739. "symfony/phpunit-bridge": "^5.4.16"
  7740. },
  7741. "suggest": {
  7742. "doctrine/orm": "Required to use Faker\\ORM\\Doctrine",
  7743. "ext-curl": "Required by Faker\\Provider\\Image to download images.",
  7744. "ext-dom": "Required by Faker\\Provider\\HtmlLorem for generating random HTML.",
  7745. "ext-iconv": "Required by Faker\\Provider\\ru_RU\\Text::realText() for generating real Russian text.",
  7746. "ext-mbstring": "Required for multibyte Unicode string functionality."
  7747. },
  7748. "type": "library",
  7749. "autoload": {
  7750. "psr-4": {
  7751. "Faker\\": "src/Faker/"
  7752. }
  7753. },
  7754. "notification-url": "https://packagist.org/downloads/",
  7755. "license": [
  7756. "MIT"
  7757. ],
  7758. "authors": [
  7759. {
  7760. "name": "François Zaninotto"
  7761. }
  7762. ],
  7763. "description": "Faker is a PHP library that generates fake data for you.",
  7764. "keywords": [
  7765. "data",
  7766. "faker",
  7767. "fixtures"
  7768. ],
  7769. "support": {
  7770. "issues": "https://github.com/FakerPHP/Faker/issues",
  7771. "source": "https://github.com/FakerPHP/Faker/tree/v1.23.1"
  7772. },
  7773. "time": "2024-01-02T13:46:09+00:00"
  7774. },
  7775. {
  7776. "name": "filp/whoops",
  7777. "version": "2.15.4",
  7778. "source": {
  7779. "type": "git",
  7780. "url": "https://github.com/filp/whoops.git",
  7781. "reference": "a139776fa3f5985a50b509f2a02ff0f709d2a546"
  7782. },
  7783. "dist": {
  7784. "type": "zip",
  7785. "url": "https://api.github.com/repos/filp/whoops/zipball/a139776fa3f5985a50b509f2a02ff0f709d2a546",
  7786. "reference": "a139776fa3f5985a50b509f2a02ff0f709d2a546",
  7787. "shasum": ""
  7788. },
  7789. "require": {
  7790. "php": "^5.5.9 || ^7.0 || ^8.0",
  7791. "psr/log": "^1.0.1 || ^2.0 || ^3.0"
  7792. },
  7793. "require-dev": {
  7794. "mockery/mockery": "^0.9 || ^1.0",
  7795. "phpunit/phpunit": "^4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.3",
  7796. "symfony/var-dumper": "^2.6 || ^3.0 || ^4.0 || ^5.0"
  7797. },
  7798. "suggest": {
  7799. "symfony/var-dumper": "Pretty print complex values better with var-dumper available",
  7800. "whoops/soap": "Formats errors as SOAP responses"
  7801. },
  7802. "type": "library",
  7803. "extra": {
  7804. "branch-alias": {
  7805. "dev-master": "2.7-dev"
  7806. }
  7807. },
  7808. "autoload": {
  7809. "psr-4": {
  7810. "Whoops\\": "src/Whoops/"
  7811. }
  7812. },
  7813. "notification-url": "https://packagist.org/downloads/",
  7814. "license": [
  7815. "MIT"
  7816. ],
  7817. "authors": [
  7818. {
  7819. "name": "Filipe Dobreira",
  7820. "homepage": "https://github.com/filp",
  7821. "role": "Developer"
  7822. }
  7823. ],
  7824. "description": "php error handling for cool kids",
  7825. "homepage": "https://filp.github.io/whoops/",
  7826. "keywords": [
  7827. "error",
  7828. "exception",
  7829. "handling",
  7830. "library",
  7831. "throwable",
  7832. "whoops"
  7833. ],
  7834. "support": {
  7835. "issues": "https://github.com/filp/whoops/issues",
  7836. "source": "https://github.com/filp/whoops/tree/2.15.4"
  7837. },
  7838. "funding": [
  7839. {
  7840. "url": "https://github.com/denis-sokolov",
  7841. "type": "github"
  7842. }
  7843. ],
  7844. "time": "2023-11-03T12:00:00+00:00"
  7845. },
  7846. {
  7847. "name": "hamcrest/hamcrest-php",
  7848. "version": "v2.0.1",
  7849. "source": {
  7850. "type": "git",
  7851. "url": "https://github.com/hamcrest/hamcrest-php.git",
  7852. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3"
  7853. },
  7854. "dist": {
  7855. "type": "zip",
  7856. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  7857. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  7858. "shasum": ""
  7859. },
  7860. "require": {
  7861. "php": "^5.3|^7.0|^8.0"
  7862. },
  7863. "replace": {
  7864. "cordoval/hamcrest-php": "*",
  7865. "davedevelopment/hamcrest-php": "*",
  7866. "kodova/hamcrest-php": "*"
  7867. },
  7868. "require-dev": {
  7869. "phpunit/php-file-iterator": "^1.4 || ^2.0",
  7870. "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0"
  7871. },
  7872. "type": "library",
  7873. "extra": {
  7874. "branch-alias": {
  7875. "dev-master": "2.1-dev"
  7876. }
  7877. },
  7878. "autoload": {
  7879. "classmap": [
  7880. "hamcrest"
  7881. ]
  7882. },
  7883. "notification-url": "https://packagist.org/downloads/",
  7884. "license": [
  7885. "BSD-3-Clause"
  7886. ],
  7887. "description": "This is the PHP port of Hamcrest Matchers",
  7888. "keywords": [
  7889. "test"
  7890. ],
  7891. "support": {
  7892. "issues": "https://github.com/hamcrest/hamcrest-php/issues",
  7893. "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.0.1"
  7894. },
  7895. "time": "2020-07-09T08:09:16+00:00"
  7896. },
  7897. {
  7898. "name": "laravel/pint",
  7899. "version": "v1.16.0",
  7900. "source": {
  7901. "type": "git",
  7902. "url": "https://github.com/laravel/pint.git",
  7903. "reference": "1b3a3dc5bc6a81ff52828ba7277621f1d49d6d98"
  7904. },
  7905. "dist": {
  7906. "type": "zip",
  7907. "url": "https://api.github.com/repos/laravel/pint/zipball/1b3a3dc5bc6a81ff52828ba7277621f1d49d6d98",
  7908. "reference": "1b3a3dc5bc6a81ff52828ba7277621f1d49d6d98",
  7909. "shasum": ""
  7910. },
  7911. "require": {
  7912. "ext-json": "*",
  7913. "ext-mbstring": "*",
  7914. "ext-tokenizer": "*",
  7915. "ext-xml": "*",
  7916. "php": "^8.1.0"
  7917. },
  7918. "require-dev": {
  7919. "friendsofphp/php-cs-fixer": "^3.57.1",
  7920. "illuminate/view": "^10.48.10",
  7921. "larastan/larastan": "^2.9.6",
  7922. "laravel-zero/framework": "^10.4.0",
  7923. "mockery/mockery": "^1.6.12",
  7924. "nunomaduro/termwind": "^1.15.1",
  7925. "pestphp/pest": "^2.34.7"
  7926. },
  7927. "bin": [
  7928. "builds/pint"
  7929. ],
  7930. "type": "project",
  7931. "autoload": {
  7932. "psr-4": {
  7933. "App\\": "app/",
  7934. "Database\\Seeders\\": "database/seeders/",
  7935. "Database\\Factories\\": "database/factories/"
  7936. }
  7937. },
  7938. "notification-url": "https://packagist.org/downloads/",
  7939. "license": [
  7940. "MIT"
  7941. ],
  7942. "authors": [
  7943. {
  7944. "name": "Nuno Maduro",
  7945. "email": "enunomaduro@gmail.com"
  7946. }
  7947. ],
  7948. "description": "An opinionated code formatter for PHP.",
  7949. "homepage": "https://laravel.com",
  7950. "keywords": [
  7951. "format",
  7952. "formatter",
  7953. "lint",
  7954. "linter",
  7955. "php"
  7956. ],
  7957. "support": {
  7958. "issues": "https://github.com/laravel/pint/issues",
  7959. "source": "https://github.com/laravel/pint"
  7960. },
  7961. "time": "2024-05-21T18:08:25+00:00"
  7962. },
  7963. {
  7964. "name": "laravel/sail",
  7965. "version": "v1.29.2",
  7966. "source": {
  7967. "type": "git",
  7968. "url": "https://github.com/laravel/sail.git",
  7969. "reference": "a8e4e749735ba2f091856eafeb3f99db8cd6b621"
  7970. },
  7971. "dist": {
  7972. "type": "zip",
  7973. "url": "https://api.github.com/repos/laravel/sail/zipball/a8e4e749735ba2f091856eafeb3f99db8cd6b621",
  7974. "reference": "a8e4e749735ba2f091856eafeb3f99db8cd6b621",
  7975. "shasum": ""
  7976. },
  7977. "require": {
  7978. "illuminate/console": "^9.52.16|^10.0|^11.0",
  7979. "illuminate/contracts": "^9.52.16|^10.0|^11.0",
  7980. "illuminate/support": "^9.52.16|^10.0|^11.0",
  7981. "php": "^8.0",
  7982. "symfony/console": "^6.0|^7.0",
  7983. "symfony/yaml": "^6.0|^7.0"
  7984. },
  7985. "require-dev": {
  7986. "orchestra/testbench": "^7.0|^8.0|^9.0",
  7987. "phpstan/phpstan": "^1.10"
  7988. },
  7989. "bin": [
  7990. "bin/sail"
  7991. ],
  7992. "type": "library",
  7993. "extra": {
  7994. "laravel": {
  7995. "providers": [
  7996. "Laravel\\Sail\\SailServiceProvider"
  7997. ]
  7998. }
  7999. },
  8000. "autoload": {
  8001. "psr-4": {
  8002. "Laravel\\Sail\\": "src/"
  8003. }
  8004. },
  8005. "notification-url": "https://packagist.org/downloads/",
  8006. "license": [
  8007. "MIT"
  8008. ],
  8009. "authors": [
  8010. {
  8011. "name": "Taylor Otwell",
  8012. "email": "taylor@laravel.com"
  8013. }
  8014. ],
  8015. "description": "Docker files for running a basic Laravel application.",
  8016. "keywords": [
  8017. "docker",
  8018. "laravel"
  8019. ],
  8020. "support": {
  8021. "issues": "https://github.com/laravel/sail/issues",
  8022. "source": "https://github.com/laravel/sail"
  8023. },
  8024. "time": "2024-05-16T21:39:11+00:00"
  8025. },
  8026. {
  8027. "name": "mockery/mockery",
  8028. "version": "1.6.12",
  8029. "source": {
  8030. "type": "git",
  8031. "url": "https://github.com/mockery/mockery.git",
  8032. "reference": "1f4efdd7d3beafe9807b08156dfcb176d18f1699"
  8033. },
  8034. "dist": {
  8035. "type": "zip",
  8036. "url": "https://api.github.com/repos/mockery/mockery/zipball/1f4efdd7d3beafe9807b08156dfcb176d18f1699",
  8037. "reference": "1f4efdd7d3beafe9807b08156dfcb176d18f1699",
  8038. "shasum": ""
  8039. },
  8040. "require": {
  8041. "hamcrest/hamcrest-php": "^2.0.1",
  8042. "lib-pcre": ">=7.0",
  8043. "php": ">=7.3"
  8044. },
  8045. "conflict": {
  8046. "phpunit/phpunit": "<8.0"
  8047. },
  8048. "require-dev": {
  8049. "phpunit/phpunit": "^8.5 || ^9.6.17",
  8050. "symplify/easy-coding-standard": "^12.1.14"
  8051. },
  8052. "type": "library",
  8053. "autoload": {
  8054. "files": [
  8055. "library/helpers.php",
  8056. "library/Mockery.php"
  8057. ],
  8058. "psr-4": {
  8059. "Mockery\\": "library/Mockery"
  8060. }
  8061. },
  8062. "notification-url": "https://packagist.org/downloads/",
  8063. "license": [
  8064. "BSD-3-Clause"
  8065. ],
  8066. "authors": [
  8067. {
  8068. "name": "Pádraic Brady",
  8069. "email": "padraic.brady@gmail.com",
  8070. "homepage": "https://github.com/padraic",
  8071. "role": "Author"
  8072. },
  8073. {
  8074. "name": "Dave Marshall",
  8075. "email": "dave.marshall@atstsolutions.co.uk",
  8076. "homepage": "https://davedevelopment.co.uk",
  8077. "role": "Developer"
  8078. },
  8079. {
  8080. "name": "Nathanael Esayeas",
  8081. "email": "nathanael.esayeas@protonmail.com",
  8082. "homepage": "https://github.com/ghostwriter",
  8083. "role": "Lead Developer"
  8084. }
  8085. ],
  8086. "description": "Mockery is a simple yet flexible PHP mock object framework",
  8087. "homepage": "https://github.com/mockery/mockery",
  8088. "keywords": [
  8089. "BDD",
  8090. "TDD",
  8091. "library",
  8092. "mock",
  8093. "mock objects",
  8094. "mockery",
  8095. "stub",
  8096. "test",
  8097. "test double",
  8098. "testing"
  8099. ],
  8100. "support": {
  8101. "docs": "https://docs.mockery.io/",
  8102. "issues": "https://github.com/mockery/mockery/issues",
  8103. "rss": "https://github.com/mockery/mockery/releases.atom",
  8104. "security": "https://github.com/mockery/mockery/security/advisories",
  8105. "source": "https://github.com/mockery/mockery"
  8106. },
  8107. "time": "2024-05-16T03:13:13+00:00"
  8108. },
  8109. {
  8110. "name": "myclabs/deep-copy",
  8111. "version": "1.12.0",
  8112. "source": {
  8113. "type": "git",
  8114. "url": "https://github.com/myclabs/DeepCopy.git",
  8115. "reference": "3a6b9a42cd8f8771bd4295d13e1423fa7f3d942c"
  8116. },
  8117. "dist": {
  8118. "type": "zip",
  8119. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/3a6b9a42cd8f8771bd4295d13e1423fa7f3d942c",
  8120. "reference": "3a6b9a42cd8f8771bd4295d13e1423fa7f3d942c",
  8121. "shasum": ""
  8122. },
  8123. "require": {
  8124. "php": "^7.1 || ^8.0"
  8125. },
  8126. "conflict": {
  8127. "doctrine/collections": "<1.6.8",
  8128. "doctrine/common": "<2.13.3 || >=3 <3.2.2"
  8129. },
  8130. "require-dev": {
  8131. "doctrine/collections": "^1.6.8",
  8132. "doctrine/common": "^2.13.3 || ^3.2.2",
  8133. "phpspec/prophecy": "^1.10",
  8134. "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
  8135. },
  8136. "type": "library",
  8137. "autoload": {
  8138. "files": [
  8139. "src/DeepCopy/deep_copy.php"
  8140. ],
  8141. "psr-4": {
  8142. "DeepCopy\\": "src/DeepCopy/"
  8143. }
  8144. },
  8145. "notification-url": "https://packagist.org/downloads/",
  8146. "license": [
  8147. "MIT"
  8148. ],
  8149. "description": "Create deep copies (clones) of your objects",
  8150. "keywords": [
  8151. "clone",
  8152. "copy",
  8153. "duplicate",
  8154. "object",
  8155. "object graph"
  8156. ],
  8157. "support": {
  8158. "issues": "https://github.com/myclabs/DeepCopy/issues",
  8159. "source": "https://github.com/myclabs/DeepCopy/tree/1.12.0"
  8160. },
  8161. "funding": [
  8162. {
  8163. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  8164. "type": "tidelift"
  8165. }
  8166. ],
  8167. "time": "2024-06-12T14:39:25+00:00"
  8168. },
  8169. {
  8170. "name": "nunomaduro/collision",
  8171. "version": "v7.10.0",
  8172. "source": {
  8173. "type": "git",
  8174. "url": "https://github.com/nunomaduro/collision.git",
  8175. "reference": "49ec67fa7b002712da8526678abd651c09f375b2"
  8176. },
  8177. "dist": {
  8178. "type": "zip",
  8179. "url": "https://api.github.com/repos/nunomaduro/collision/zipball/49ec67fa7b002712da8526678abd651c09f375b2",
  8180. "reference": "49ec67fa7b002712da8526678abd651c09f375b2",
  8181. "shasum": ""
  8182. },
  8183. "require": {
  8184. "filp/whoops": "^2.15.3",
  8185. "nunomaduro/termwind": "^1.15.1",
  8186. "php": "^8.1.0",
  8187. "symfony/console": "^6.3.4"
  8188. },
  8189. "conflict": {
  8190. "laravel/framework": ">=11.0.0"
  8191. },
  8192. "require-dev": {
  8193. "brianium/paratest": "^7.3.0",
  8194. "laravel/framework": "^10.28.0",
  8195. "laravel/pint": "^1.13.3",
  8196. "laravel/sail": "^1.25.0",
  8197. "laravel/sanctum": "^3.3.1",
  8198. "laravel/tinker": "^2.8.2",
  8199. "nunomaduro/larastan": "^2.6.4",
  8200. "orchestra/testbench-core": "^8.13.0",
  8201. "pestphp/pest": "^2.23.2",
  8202. "phpunit/phpunit": "^10.4.1",
  8203. "sebastian/environment": "^6.0.1",
  8204. "spatie/laravel-ignition": "^2.3.1"
  8205. },
  8206. "type": "library",
  8207. "extra": {
  8208. "laravel": {
  8209. "providers": [
  8210. "NunoMaduro\\Collision\\Adapters\\Laravel\\CollisionServiceProvider"
  8211. ]
  8212. }
  8213. },
  8214. "autoload": {
  8215. "files": [
  8216. "./src/Adapters/Phpunit/Autoload.php"
  8217. ],
  8218. "psr-4": {
  8219. "NunoMaduro\\Collision\\": "src/"
  8220. }
  8221. },
  8222. "notification-url": "https://packagist.org/downloads/",
  8223. "license": [
  8224. "MIT"
  8225. ],
  8226. "authors": [
  8227. {
  8228. "name": "Nuno Maduro",
  8229. "email": "enunomaduro@gmail.com"
  8230. }
  8231. ],
  8232. "description": "Cli error handling for console/command-line PHP applications.",
  8233. "keywords": [
  8234. "artisan",
  8235. "cli",
  8236. "command-line",
  8237. "console",
  8238. "error",
  8239. "handling",
  8240. "laravel",
  8241. "laravel-zero",
  8242. "php",
  8243. "symfony"
  8244. ],
  8245. "support": {
  8246. "issues": "https://github.com/nunomaduro/collision/issues",
  8247. "source": "https://github.com/nunomaduro/collision"
  8248. },
  8249. "funding": [
  8250. {
  8251. "url": "https://www.paypal.com/paypalme/enunomaduro",
  8252. "type": "custom"
  8253. },
  8254. {
  8255. "url": "https://github.com/nunomaduro",
  8256. "type": "github"
  8257. },
  8258. {
  8259. "url": "https://www.patreon.com/nunomaduro",
  8260. "type": "patreon"
  8261. }
  8262. ],
  8263. "time": "2023-10-11T15:45:01+00:00"
  8264. },
  8265. {
  8266. "name": "phar-io/manifest",
  8267. "version": "2.0.4",
  8268. "source": {
  8269. "type": "git",
  8270. "url": "https://github.com/phar-io/manifest.git",
  8271. "reference": "54750ef60c58e43759730615a392c31c80e23176"
  8272. },
  8273. "dist": {
  8274. "type": "zip",
  8275. "url": "https://api.github.com/repos/phar-io/manifest/zipball/54750ef60c58e43759730615a392c31c80e23176",
  8276. "reference": "54750ef60c58e43759730615a392c31c80e23176",
  8277. "shasum": ""
  8278. },
  8279. "require": {
  8280. "ext-dom": "*",
  8281. "ext-libxml": "*",
  8282. "ext-phar": "*",
  8283. "ext-xmlwriter": "*",
  8284. "phar-io/version": "^3.0.1",
  8285. "php": "^7.2 || ^8.0"
  8286. },
  8287. "type": "library",
  8288. "extra": {
  8289. "branch-alias": {
  8290. "dev-master": "2.0.x-dev"
  8291. }
  8292. },
  8293. "autoload": {
  8294. "classmap": [
  8295. "src/"
  8296. ]
  8297. },
  8298. "notification-url": "https://packagist.org/downloads/",
  8299. "license": [
  8300. "BSD-3-Clause"
  8301. ],
  8302. "authors": [
  8303. {
  8304. "name": "Arne Blankerts",
  8305. "email": "arne@blankerts.de",
  8306. "role": "Developer"
  8307. },
  8308. {
  8309. "name": "Sebastian Heuer",
  8310. "email": "sebastian@phpeople.de",
  8311. "role": "Developer"
  8312. },
  8313. {
  8314. "name": "Sebastian Bergmann",
  8315. "email": "sebastian@phpunit.de",
  8316. "role": "Developer"
  8317. }
  8318. ],
  8319. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  8320. "support": {
  8321. "issues": "https://github.com/phar-io/manifest/issues",
  8322. "source": "https://github.com/phar-io/manifest/tree/2.0.4"
  8323. },
  8324. "funding": [
  8325. {
  8326. "url": "https://github.com/theseer",
  8327. "type": "github"
  8328. }
  8329. ],
  8330. "time": "2024-03-03T12:33:53+00:00"
  8331. },
  8332. {
  8333. "name": "phar-io/version",
  8334. "version": "3.2.1",
  8335. "source": {
  8336. "type": "git",
  8337. "url": "https://github.com/phar-io/version.git",
  8338. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
  8339. },
  8340. "dist": {
  8341. "type": "zip",
  8342. "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  8343. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  8344. "shasum": ""
  8345. },
  8346. "require": {
  8347. "php": "^7.2 || ^8.0"
  8348. },
  8349. "type": "library",
  8350. "autoload": {
  8351. "classmap": [
  8352. "src/"
  8353. ]
  8354. },
  8355. "notification-url": "https://packagist.org/downloads/",
  8356. "license": [
  8357. "BSD-3-Clause"
  8358. ],
  8359. "authors": [
  8360. {
  8361. "name": "Arne Blankerts",
  8362. "email": "arne@blankerts.de",
  8363. "role": "Developer"
  8364. },
  8365. {
  8366. "name": "Sebastian Heuer",
  8367. "email": "sebastian@phpeople.de",
  8368. "role": "Developer"
  8369. },
  8370. {
  8371. "name": "Sebastian Bergmann",
  8372. "email": "sebastian@phpunit.de",
  8373. "role": "Developer"
  8374. }
  8375. ],
  8376. "description": "Library for handling version information and constraints",
  8377. "support": {
  8378. "issues": "https://github.com/phar-io/version/issues",
  8379. "source": "https://github.com/phar-io/version/tree/3.2.1"
  8380. },
  8381. "time": "2022-02-21T01:04:05+00:00"
  8382. },
  8383. {
  8384. "name": "phpunit/php-code-coverage",
  8385. "version": "10.1.14",
  8386. "source": {
  8387. "type": "git",
  8388. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  8389. "reference": "e3f51450ebffe8e0efdf7346ae966a656f7d5e5b"
  8390. },
  8391. "dist": {
  8392. "type": "zip",
  8393. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/e3f51450ebffe8e0efdf7346ae966a656f7d5e5b",
  8394. "reference": "e3f51450ebffe8e0efdf7346ae966a656f7d5e5b",
  8395. "shasum": ""
  8396. },
  8397. "require": {
  8398. "ext-dom": "*",
  8399. "ext-libxml": "*",
  8400. "ext-xmlwriter": "*",
  8401. "nikic/php-parser": "^4.18 || ^5.0",
  8402. "php": ">=8.1",
  8403. "phpunit/php-file-iterator": "^4.0",
  8404. "phpunit/php-text-template": "^3.0",
  8405. "sebastian/code-unit-reverse-lookup": "^3.0",
  8406. "sebastian/complexity": "^3.0",
  8407. "sebastian/environment": "^6.0",
  8408. "sebastian/lines-of-code": "^2.0",
  8409. "sebastian/version": "^4.0",
  8410. "theseer/tokenizer": "^1.2.0"
  8411. },
  8412. "require-dev": {
  8413. "phpunit/phpunit": "^10.1"
  8414. },
  8415. "suggest": {
  8416. "ext-pcov": "PHP extension that provides line coverage",
  8417. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  8418. },
  8419. "type": "library",
  8420. "extra": {
  8421. "branch-alias": {
  8422. "dev-main": "10.1-dev"
  8423. }
  8424. },
  8425. "autoload": {
  8426. "classmap": [
  8427. "src/"
  8428. ]
  8429. },
  8430. "notification-url": "https://packagist.org/downloads/",
  8431. "license": [
  8432. "BSD-3-Clause"
  8433. ],
  8434. "authors": [
  8435. {
  8436. "name": "Sebastian Bergmann",
  8437. "email": "sebastian@phpunit.de",
  8438. "role": "lead"
  8439. }
  8440. ],
  8441. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  8442. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  8443. "keywords": [
  8444. "coverage",
  8445. "testing",
  8446. "xunit"
  8447. ],
  8448. "support": {
  8449. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  8450. "security": "https://github.com/sebastianbergmann/php-code-coverage/security/policy",
  8451. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/10.1.14"
  8452. },
  8453. "funding": [
  8454. {
  8455. "url": "https://github.com/sebastianbergmann",
  8456. "type": "github"
  8457. }
  8458. ],
  8459. "time": "2024-03-12T15:33:41+00:00"
  8460. },
  8461. {
  8462. "name": "phpunit/php-file-iterator",
  8463. "version": "4.1.0",
  8464. "source": {
  8465. "type": "git",
  8466. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  8467. "reference": "a95037b6d9e608ba092da1b23931e537cadc3c3c"
  8468. },
  8469. "dist": {
  8470. "type": "zip",
  8471. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/a95037b6d9e608ba092da1b23931e537cadc3c3c",
  8472. "reference": "a95037b6d9e608ba092da1b23931e537cadc3c3c",
  8473. "shasum": ""
  8474. },
  8475. "require": {
  8476. "php": ">=8.1"
  8477. },
  8478. "require-dev": {
  8479. "phpunit/phpunit": "^10.0"
  8480. },
  8481. "type": "library",
  8482. "extra": {
  8483. "branch-alias": {
  8484. "dev-main": "4.0-dev"
  8485. }
  8486. },
  8487. "autoload": {
  8488. "classmap": [
  8489. "src/"
  8490. ]
  8491. },
  8492. "notification-url": "https://packagist.org/downloads/",
  8493. "license": [
  8494. "BSD-3-Clause"
  8495. ],
  8496. "authors": [
  8497. {
  8498. "name": "Sebastian Bergmann",
  8499. "email": "sebastian@phpunit.de",
  8500. "role": "lead"
  8501. }
  8502. ],
  8503. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  8504. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  8505. "keywords": [
  8506. "filesystem",
  8507. "iterator"
  8508. ],
  8509. "support": {
  8510. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  8511. "security": "https://github.com/sebastianbergmann/php-file-iterator/security/policy",
  8512. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/4.1.0"
  8513. },
  8514. "funding": [
  8515. {
  8516. "url": "https://github.com/sebastianbergmann",
  8517. "type": "github"
  8518. }
  8519. ],
  8520. "time": "2023-08-31T06:24:48+00:00"
  8521. },
  8522. {
  8523. "name": "phpunit/php-invoker",
  8524. "version": "4.0.0",
  8525. "source": {
  8526. "type": "git",
  8527. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  8528. "reference": "f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7"
  8529. },
  8530. "dist": {
  8531. "type": "zip",
  8532. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7",
  8533. "reference": "f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7",
  8534. "shasum": ""
  8535. },
  8536. "require": {
  8537. "php": ">=8.1"
  8538. },
  8539. "require-dev": {
  8540. "ext-pcntl": "*",
  8541. "phpunit/phpunit": "^10.0"
  8542. },
  8543. "suggest": {
  8544. "ext-pcntl": "*"
  8545. },
  8546. "type": "library",
  8547. "extra": {
  8548. "branch-alias": {
  8549. "dev-main": "4.0-dev"
  8550. }
  8551. },
  8552. "autoload": {
  8553. "classmap": [
  8554. "src/"
  8555. ]
  8556. },
  8557. "notification-url": "https://packagist.org/downloads/",
  8558. "license": [
  8559. "BSD-3-Clause"
  8560. ],
  8561. "authors": [
  8562. {
  8563. "name": "Sebastian Bergmann",
  8564. "email": "sebastian@phpunit.de",
  8565. "role": "lead"
  8566. }
  8567. ],
  8568. "description": "Invoke callables with a timeout",
  8569. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  8570. "keywords": [
  8571. "process"
  8572. ],
  8573. "support": {
  8574. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  8575. "source": "https://github.com/sebastianbergmann/php-invoker/tree/4.0.0"
  8576. },
  8577. "funding": [
  8578. {
  8579. "url": "https://github.com/sebastianbergmann",
  8580. "type": "github"
  8581. }
  8582. ],
  8583. "time": "2023-02-03T06:56:09+00:00"
  8584. },
  8585. {
  8586. "name": "phpunit/php-text-template",
  8587. "version": "3.0.1",
  8588. "source": {
  8589. "type": "git",
  8590. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  8591. "reference": "0c7b06ff49e3d5072f057eb1fa59258bf287a748"
  8592. },
  8593. "dist": {
  8594. "type": "zip",
  8595. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/0c7b06ff49e3d5072f057eb1fa59258bf287a748",
  8596. "reference": "0c7b06ff49e3d5072f057eb1fa59258bf287a748",
  8597. "shasum": ""
  8598. },
  8599. "require": {
  8600. "php": ">=8.1"
  8601. },
  8602. "require-dev": {
  8603. "phpunit/phpunit": "^10.0"
  8604. },
  8605. "type": "library",
  8606. "extra": {
  8607. "branch-alias": {
  8608. "dev-main": "3.0-dev"
  8609. }
  8610. },
  8611. "autoload": {
  8612. "classmap": [
  8613. "src/"
  8614. ]
  8615. },
  8616. "notification-url": "https://packagist.org/downloads/",
  8617. "license": [
  8618. "BSD-3-Clause"
  8619. ],
  8620. "authors": [
  8621. {
  8622. "name": "Sebastian Bergmann",
  8623. "email": "sebastian@phpunit.de",
  8624. "role": "lead"
  8625. }
  8626. ],
  8627. "description": "Simple template engine.",
  8628. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  8629. "keywords": [
  8630. "template"
  8631. ],
  8632. "support": {
  8633. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  8634. "security": "https://github.com/sebastianbergmann/php-text-template/security/policy",
  8635. "source": "https://github.com/sebastianbergmann/php-text-template/tree/3.0.1"
  8636. },
  8637. "funding": [
  8638. {
  8639. "url": "https://github.com/sebastianbergmann",
  8640. "type": "github"
  8641. }
  8642. ],
  8643. "time": "2023-08-31T14:07:24+00:00"
  8644. },
  8645. {
  8646. "name": "phpunit/php-timer",
  8647. "version": "6.0.0",
  8648. "source": {
  8649. "type": "git",
  8650. "url": "https://github.com/sebastianbergmann/php-timer.git",
  8651. "reference": "e2a2d67966e740530f4a3343fe2e030ffdc1161d"
  8652. },
  8653. "dist": {
  8654. "type": "zip",
  8655. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/e2a2d67966e740530f4a3343fe2e030ffdc1161d",
  8656. "reference": "e2a2d67966e740530f4a3343fe2e030ffdc1161d",
  8657. "shasum": ""
  8658. },
  8659. "require": {
  8660. "php": ">=8.1"
  8661. },
  8662. "require-dev": {
  8663. "phpunit/phpunit": "^10.0"
  8664. },
  8665. "type": "library",
  8666. "extra": {
  8667. "branch-alias": {
  8668. "dev-main": "6.0-dev"
  8669. }
  8670. },
  8671. "autoload": {
  8672. "classmap": [
  8673. "src/"
  8674. ]
  8675. },
  8676. "notification-url": "https://packagist.org/downloads/",
  8677. "license": [
  8678. "BSD-3-Clause"
  8679. ],
  8680. "authors": [
  8681. {
  8682. "name": "Sebastian Bergmann",
  8683. "email": "sebastian@phpunit.de",
  8684. "role": "lead"
  8685. }
  8686. ],
  8687. "description": "Utility class for timing",
  8688. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  8689. "keywords": [
  8690. "timer"
  8691. ],
  8692. "support": {
  8693. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  8694. "source": "https://github.com/sebastianbergmann/php-timer/tree/6.0.0"
  8695. },
  8696. "funding": [
  8697. {
  8698. "url": "https://github.com/sebastianbergmann",
  8699. "type": "github"
  8700. }
  8701. ],
  8702. "time": "2023-02-03T06:57:52+00:00"
  8703. },
  8704. {
  8705. "name": "phpunit/phpunit",
  8706. "version": "10.5.21",
  8707. "source": {
  8708. "type": "git",
  8709. "url": "https://github.com/sebastianbergmann/phpunit.git",
  8710. "reference": "ac837816fa52078f7a5e17ed774f256a72a51af6"
  8711. },
  8712. "dist": {
  8713. "type": "zip",
  8714. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/ac837816fa52078f7a5e17ed774f256a72a51af6",
  8715. "reference": "ac837816fa52078f7a5e17ed774f256a72a51af6",
  8716. "shasum": ""
  8717. },
  8718. "require": {
  8719. "ext-dom": "*",
  8720. "ext-json": "*",
  8721. "ext-libxml": "*",
  8722. "ext-mbstring": "*",
  8723. "ext-xml": "*",
  8724. "ext-xmlwriter": "*",
  8725. "myclabs/deep-copy": "^1.10.1",
  8726. "phar-io/manifest": "^2.0.3",
  8727. "phar-io/version": "^3.0.2",
  8728. "php": ">=8.1",
  8729. "phpunit/php-code-coverage": "^10.1.5",
  8730. "phpunit/php-file-iterator": "^4.0",
  8731. "phpunit/php-invoker": "^4.0",
  8732. "phpunit/php-text-template": "^3.0",
  8733. "phpunit/php-timer": "^6.0",
  8734. "sebastian/cli-parser": "^2.0",
  8735. "sebastian/code-unit": "^2.0",
  8736. "sebastian/comparator": "^5.0",
  8737. "sebastian/diff": "^5.0",
  8738. "sebastian/environment": "^6.0",
  8739. "sebastian/exporter": "^5.1",
  8740. "sebastian/global-state": "^6.0.1",
  8741. "sebastian/object-enumerator": "^5.0",
  8742. "sebastian/recursion-context": "^5.0",
  8743. "sebastian/type": "^4.0",
  8744. "sebastian/version": "^4.0"
  8745. },
  8746. "suggest": {
  8747. "ext-soap": "To be able to generate mocks based on WSDL files"
  8748. },
  8749. "bin": [
  8750. "phpunit"
  8751. ],
  8752. "type": "library",
  8753. "extra": {
  8754. "branch-alias": {
  8755. "dev-main": "10.5-dev"
  8756. }
  8757. },
  8758. "autoload": {
  8759. "files": [
  8760. "src/Framework/Assert/Functions.php"
  8761. ],
  8762. "classmap": [
  8763. "src/"
  8764. ]
  8765. },
  8766. "notification-url": "https://packagist.org/downloads/",
  8767. "license": [
  8768. "BSD-3-Clause"
  8769. ],
  8770. "authors": [
  8771. {
  8772. "name": "Sebastian Bergmann",
  8773. "email": "sebastian@phpunit.de",
  8774. "role": "lead"
  8775. }
  8776. ],
  8777. "description": "The PHP Unit Testing framework.",
  8778. "homepage": "https://phpunit.de/",
  8779. "keywords": [
  8780. "phpunit",
  8781. "testing",
  8782. "xunit"
  8783. ],
  8784. "support": {
  8785. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  8786. "security": "https://github.com/sebastianbergmann/phpunit/security/policy",
  8787. "source": "https://github.com/sebastianbergmann/phpunit/tree/10.5.21"
  8788. },
  8789. "funding": [
  8790. {
  8791. "url": "https://phpunit.de/sponsors.html",
  8792. "type": "custom"
  8793. },
  8794. {
  8795. "url": "https://github.com/sebastianbergmann",
  8796. "type": "github"
  8797. },
  8798. {
  8799. "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit",
  8800. "type": "tidelift"
  8801. }
  8802. ],
  8803. "time": "2024-06-15T09:13:15+00:00"
  8804. },
  8805. {
  8806. "name": "sebastian/cli-parser",
  8807. "version": "2.0.1",
  8808. "source": {
  8809. "type": "git",
  8810. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  8811. "reference": "c34583b87e7b7a8055bf6c450c2c77ce32a24084"
  8812. },
  8813. "dist": {
  8814. "type": "zip",
  8815. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/c34583b87e7b7a8055bf6c450c2c77ce32a24084",
  8816. "reference": "c34583b87e7b7a8055bf6c450c2c77ce32a24084",
  8817. "shasum": ""
  8818. },
  8819. "require": {
  8820. "php": ">=8.1"
  8821. },
  8822. "require-dev": {
  8823. "phpunit/phpunit": "^10.0"
  8824. },
  8825. "type": "library",
  8826. "extra": {
  8827. "branch-alias": {
  8828. "dev-main": "2.0-dev"
  8829. }
  8830. },
  8831. "autoload": {
  8832. "classmap": [
  8833. "src/"
  8834. ]
  8835. },
  8836. "notification-url": "https://packagist.org/downloads/",
  8837. "license": [
  8838. "BSD-3-Clause"
  8839. ],
  8840. "authors": [
  8841. {
  8842. "name": "Sebastian Bergmann",
  8843. "email": "sebastian@phpunit.de",
  8844. "role": "lead"
  8845. }
  8846. ],
  8847. "description": "Library for parsing CLI options",
  8848. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  8849. "support": {
  8850. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  8851. "security": "https://github.com/sebastianbergmann/cli-parser/security/policy",
  8852. "source": "https://github.com/sebastianbergmann/cli-parser/tree/2.0.1"
  8853. },
  8854. "funding": [
  8855. {
  8856. "url": "https://github.com/sebastianbergmann",
  8857. "type": "github"
  8858. }
  8859. ],
  8860. "time": "2024-03-02T07:12:49+00:00"
  8861. },
  8862. {
  8863. "name": "sebastian/code-unit",
  8864. "version": "2.0.0",
  8865. "source": {
  8866. "type": "git",
  8867. "url": "https://github.com/sebastianbergmann/code-unit.git",
  8868. "reference": "a81fee9eef0b7a76af11d121767abc44c104e503"
  8869. },
  8870. "dist": {
  8871. "type": "zip",
  8872. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/a81fee9eef0b7a76af11d121767abc44c104e503",
  8873. "reference": "a81fee9eef0b7a76af11d121767abc44c104e503",
  8874. "shasum": ""
  8875. },
  8876. "require": {
  8877. "php": ">=8.1"
  8878. },
  8879. "require-dev": {
  8880. "phpunit/phpunit": "^10.0"
  8881. },
  8882. "type": "library",
  8883. "extra": {
  8884. "branch-alias": {
  8885. "dev-main": "2.0-dev"
  8886. }
  8887. },
  8888. "autoload": {
  8889. "classmap": [
  8890. "src/"
  8891. ]
  8892. },
  8893. "notification-url": "https://packagist.org/downloads/",
  8894. "license": [
  8895. "BSD-3-Clause"
  8896. ],
  8897. "authors": [
  8898. {
  8899. "name": "Sebastian Bergmann",
  8900. "email": "sebastian@phpunit.de",
  8901. "role": "lead"
  8902. }
  8903. ],
  8904. "description": "Collection of value objects that represent the PHP code units",
  8905. "homepage": "https://github.com/sebastianbergmann/code-unit",
  8906. "support": {
  8907. "issues": "https://github.com/sebastianbergmann/code-unit/issues",
  8908. "source": "https://github.com/sebastianbergmann/code-unit/tree/2.0.0"
  8909. },
  8910. "funding": [
  8911. {
  8912. "url": "https://github.com/sebastianbergmann",
  8913. "type": "github"
  8914. }
  8915. ],
  8916. "time": "2023-02-03T06:58:43+00:00"
  8917. },
  8918. {
  8919. "name": "sebastian/code-unit-reverse-lookup",
  8920. "version": "3.0.0",
  8921. "source": {
  8922. "type": "git",
  8923. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  8924. "reference": "5e3a687f7d8ae33fb362c5c0743794bbb2420a1d"
  8925. },
  8926. "dist": {
  8927. "type": "zip",
  8928. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/5e3a687f7d8ae33fb362c5c0743794bbb2420a1d",
  8929. "reference": "5e3a687f7d8ae33fb362c5c0743794bbb2420a1d",
  8930. "shasum": ""
  8931. },
  8932. "require": {
  8933. "php": ">=8.1"
  8934. },
  8935. "require-dev": {
  8936. "phpunit/phpunit": "^10.0"
  8937. },
  8938. "type": "library",
  8939. "extra": {
  8940. "branch-alias": {
  8941. "dev-main": "3.0-dev"
  8942. }
  8943. },
  8944. "autoload": {
  8945. "classmap": [
  8946. "src/"
  8947. ]
  8948. },
  8949. "notification-url": "https://packagist.org/downloads/",
  8950. "license": [
  8951. "BSD-3-Clause"
  8952. ],
  8953. "authors": [
  8954. {
  8955. "name": "Sebastian Bergmann",
  8956. "email": "sebastian@phpunit.de"
  8957. }
  8958. ],
  8959. "description": "Looks up which function or method a line of code belongs to",
  8960. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  8961. "support": {
  8962. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  8963. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/3.0.0"
  8964. },
  8965. "funding": [
  8966. {
  8967. "url": "https://github.com/sebastianbergmann",
  8968. "type": "github"
  8969. }
  8970. ],
  8971. "time": "2023-02-03T06:59:15+00:00"
  8972. },
  8973. {
  8974. "name": "sebastian/comparator",
  8975. "version": "5.0.1",
  8976. "source": {
  8977. "type": "git",
  8978. "url": "https://github.com/sebastianbergmann/comparator.git",
  8979. "reference": "2db5010a484d53ebf536087a70b4a5423c102372"
  8980. },
  8981. "dist": {
  8982. "type": "zip",
  8983. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/2db5010a484d53ebf536087a70b4a5423c102372",
  8984. "reference": "2db5010a484d53ebf536087a70b4a5423c102372",
  8985. "shasum": ""
  8986. },
  8987. "require": {
  8988. "ext-dom": "*",
  8989. "ext-mbstring": "*",
  8990. "php": ">=8.1",
  8991. "sebastian/diff": "^5.0",
  8992. "sebastian/exporter": "^5.0"
  8993. },
  8994. "require-dev": {
  8995. "phpunit/phpunit": "^10.3"
  8996. },
  8997. "type": "library",
  8998. "extra": {
  8999. "branch-alias": {
  9000. "dev-main": "5.0-dev"
  9001. }
  9002. },
  9003. "autoload": {
  9004. "classmap": [
  9005. "src/"
  9006. ]
  9007. },
  9008. "notification-url": "https://packagist.org/downloads/",
  9009. "license": [
  9010. "BSD-3-Clause"
  9011. ],
  9012. "authors": [
  9013. {
  9014. "name": "Sebastian Bergmann",
  9015. "email": "sebastian@phpunit.de"
  9016. },
  9017. {
  9018. "name": "Jeff Welch",
  9019. "email": "whatthejeff@gmail.com"
  9020. },
  9021. {
  9022. "name": "Volker Dusch",
  9023. "email": "github@wallbash.com"
  9024. },
  9025. {
  9026. "name": "Bernhard Schussek",
  9027. "email": "bschussek@2bepublished.at"
  9028. }
  9029. ],
  9030. "description": "Provides the functionality to compare PHP values for equality",
  9031. "homepage": "https://github.com/sebastianbergmann/comparator",
  9032. "keywords": [
  9033. "comparator",
  9034. "compare",
  9035. "equality"
  9036. ],
  9037. "support": {
  9038. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  9039. "security": "https://github.com/sebastianbergmann/comparator/security/policy",
  9040. "source": "https://github.com/sebastianbergmann/comparator/tree/5.0.1"
  9041. },
  9042. "funding": [
  9043. {
  9044. "url": "https://github.com/sebastianbergmann",
  9045. "type": "github"
  9046. }
  9047. ],
  9048. "time": "2023-08-14T13:18:12+00:00"
  9049. },
  9050. {
  9051. "name": "sebastian/complexity",
  9052. "version": "3.2.0",
  9053. "source": {
  9054. "type": "git",
  9055. "url": "https://github.com/sebastianbergmann/complexity.git",
  9056. "reference": "68ff824baeae169ec9f2137158ee529584553799"
  9057. },
  9058. "dist": {
  9059. "type": "zip",
  9060. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/68ff824baeae169ec9f2137158ee529584553799",
  9061. "reference": "68ff824baeae169ec9f2137158ee529584553799",
  9062. "shasum": ""
  9063. },
  9064. "require": {
  9065. "nikic/php-parser": "^4.18 || ^5.0",
  9066. "php": ">=8.1"
  9067. },
  9068. "require-dev": {
  9069. "phpunit/phpunit": "^10.0"
  9070. },
  9071. "type": "library",
  9072. "extra": {
  9073. "branch-alias": {
  9074. "dev-main": "3.2-dev"
  9075. }
  9076. },
  9077. "autoload": {
  9078. "classmap": [
  9079. "src/"
  9080. ]
  9081. },
  9082. "notification-url": "https://packagist.org/downloads/",
  9083. "license": [
  9084. "BSD-3-Clause"
  9085. ],
  9086. "authors": [
  9087. {
  9088. "name": "Sebastian Bergmann",
  9089. "email": "sebastian@phpunit.de",
  9090. "role": "lead"
  9091. }
  9092. ],
  9093. "description": "Library for calculating the complexity of PHP code units",
  9094. "homepage": "https://github.com/sebastianbergmann/complexity",
  9095. "support": {
  9096. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  9097. "security": "https://github.com/sebastianbergmann/complexity/security/policy",
  9098. "source": "https://github.com/sebastianbergmann/complexity/tree/3.2.0"
  9099. },
  9100. "funding": [
  9101. {
  9102. "url": "https://github.com/sebastianbergmann",
  9103. "type": "github"
  9104. }
  9105. ],
  9106. "time": "2023-12-21T08:37:17+00:00"
  9107. },
  9108. {
  9109. "name": "sebastian/diff",
  9110. "version": "5.1.1",
  9111. "source": {
  9112. "type": "git",
  9113. "url": "https://github.com/sebastianbergmann/diff.git",
  9114. "reference": "c41e007b4b62af48218231d6c2275e4c9b975b2e"
  9115. },
  9116. "dist": {
  9117. "type": "zip",
  9118. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/c41e007b4b62af48218231d6c2275e4c9b975b2e",
  9119. "reference": "c41e007b4b62af48218231d6c2275e4c9b975b2e",
  9120. "shasum": ""
  9121. },
  9122. "require": {
  9123. "php": ">=8.1"
  9124. },
  9125. "require-dev": {
  9126. "phpunit/phpunit": "^10.0",
  9127. "symfony/process": "^6.4"
  9128. },
  9129. "type": "library",
  9130. "extra": {
  9131. "branch-alias": {
  9132. "dev-main": "5.1-dev"
  9133. }
  9134. },
  9135. "autoload": {
  9136. "classmap": [
  9137. "src/"
  9138. ]
  9139. },
  9140. "notification-url": "https://packagist.org/downloads/",
  9141. "license": [
  9142. "BSD-3-Clause"
  9143. ],
  9144. "authors": [
  9145. {
  9146. "name": "Sebastian Bergmann",
  9147. "email": "sebastian@phpunit.de"
  9148. },
  9149. {
  9150. "name": "Kore Nordmann",
  9151. "email": "mail@kore-nordmann.de"
  9152. }
  9153. ],
  9154. "description": "Diff implementation",
  9155. "homepage": "https://github.com/sebastianbergmann/diff",
  9156. "keywords": [
  9157. "diff",
  9158. "udiff",
  9159. "unidiff",
  9160. "unified diff"
  9161. ],
  9162. "support": {
  9163. "issues": "https://github.com/sebastianbergmann/diff/issues",
  9164. "security": "https://github.com/sebastianbergmann/diff/security/policy",
  9165. "source": "https://github.com/sebastianbergmann/diff/tree/5.1.1"
  9166. },
  9167. "funding": [
  9168. {
  9169. "url": "https://github.com/sebastianbergmann",
  9170. "type": "github"
  9171. }
  9172. ],
  9173. "time": "2024-03-02T07:15:17+00:00"
  9174. },
  9175. {
  9176. "name": "sebastian/environment",
  9177. "version": "6.1.0",
  9178. "source": {
  9179. "type": "git",
  9180. "url": "https://github.com/sebastianbergmann/environment.git",
  9181. "reference": "8074dbcd93529b357029f5cc5058fd3e43666984"
  9182. },
  9183. "dist": {
  9184. "type": "zip",
  9185. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/8074dbcd93529b357029f5cc5058fd3e43666984",
  9186. "reference": "8074dbcd93529b357029f5cc5058fd3e43666984",
  9187. "shasum": ""
  9188. },
  9189. "require": {
  9190. "php": ">=8.1"
  9191. },
  9192. "require-dev": {
  9193. "phpunit/phpunit": "^10.0"
  9194. },
  9195. "suggest": {
  9196. "ext-posix": "*"
  9197. },
  9198. "type": "library",
  9199. "extra": {
  9200. "branch-alias": {
  9201. "dev-main": "6.1-dev"
  9202. }
  9203. },
  9204. "autoload": {
  9205. "classmap": [
  9206. "src/"
  9207. ]
  9208. },
  9209. "notification-url": "https://packagist.org/downloads/",
  9210. "license": [
  9211. "BSD-3-Clause"
  9212. ],
  9213. "authors": [
  9214. {
  9215. "name": "Sebastian Bergmann",
  9216. "email": "sebastian@phpunit.de"
  9217. }
  9218. ],
  9219. "description": "Provides functionality to handle HHVM/PHP environments",
  9220. "homepage": "https://github.com/sebastianbergmann/environment",
  9221. "keywords": [
  9222. "Xdebug",
  9223. "environment",
  9224. "hhvm"
  9225. ],
  9226. "support": {
  9227. "issues": "https://github.com/sebastianbergmann/environment/issues",
  9228. "security": "https://github.com/sebastianbergmann/environment/security/policy",
  9229. "source": "https://github.com/sebastianbergmann/environment/tree/6.1.0"
  9230. },
  9231. "funding": [
  9232. {
  9233. "url": "https://github.com/sebastianbergmann",
  9234. "type": "github"
  9235. }
  9236. ],
  9237. "time": "2024-03-23T08:47:14+00:00"
  9238. },
  9239. {
  9240. "name": "sebastian/exporter",
  9241. "version": "5.1.2",
  9242. "source": {
  9243. "type": "git",
  9244. "url": "https://github.com/sebastianbergmann/exporter.git",
  9245. "reference": "955288482d97c19a372d3f31006ab3f37da47adf"
  9246. },
  9247. "dist": {
  9248. "type": "zip",
  9249. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/955288482d97c19a372d3f31006ab3f37da47adf",
  9250. "reference": "955288482d97c19a372d3f31006ab3f37da47adf",
  9251. "shasum": ""
  9252. },
  9253. "require": {
  9254. "ext-mbstring": "*",
  9255. "php": ">=8.1",
  9256. "sebastian/recursion-context": "^5.0"
  9257. },
  9258. "require-dev": {
  9259. "phpunit/phpunit": "^10.0"
  9260. },
  9261. "type": "library",
  9262. "extra": {
  9263. "branch-alias": {
  9264. "dev-main": "5.1-dev"
  9265. }
  9266. },
  9267. "autoload": {
  9268. "classmap": [
  9269. "src/"
  9270. ]
  9271. },
  9272. "notification-url": "https://packagist.org/downloads/",
  9273. "license": [
  9274. "BSD-3-Clause"
  9275. ],
  9276. "authors": [
  9277. {
  9278. "name": "Sebastian Bergmann",
  9279. "email": "sebastian@phpunit.de"
  9280. },
  9281. {
  9282. "name": "Jeff Welch",
  9283. "email": "whatthejeff@gmail.com"
  9284. },
  9285. {
  9286. "name": "Volker Dusch",
  9287. "email": "github@wallbash.com"
  9288. },
  9289. {
  9290. "name": "Adam Harvey",
  9291. "email": "aharvey@php.net"
  9292. },
  9293. {
  9294. "name": "Bernhard Schussek",
  9295. "email": "bschussek@gmail.com"
  9296. }
  9297. ],
  9298. "description": "Provides the functionality to export PHP variables for visualization",
  9299. "homepage": "https://www.github.com/sebastianbergmann/exporter",
  9300. "keywords": [
  9301. "export",
  9302. "exporter"
  9303. ],
  9304. "support": {
  9305. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  9306. "security": "https://github.com/sebastianbergmann/exporter/security/policy",
  9307. "source": "https://github.com/sebastianbergmann/exporter/tree/5.1.2"
  9308. },
  9309. "funding": [
  9310. {
  9311. "url": "https://github.com/sebastianbergmann",
  9312. "type": "github"
  9313. }
  9314. ],
  9315. "time": "2024-03-02T07:17:12+00:00"
  9316. },
  9317. {
  9318. "name": "sebastian/global-state",
  9319. "version": "6.0.2",
  9320. "source": {
  9321. "type": "git",
  9322. "url": "https://github.com/sebastianbergmann/global-state.git",
  9323. "reference": "987bafff24ecc4c9ac418cab1145b96dd6e9cbd9"
  9324. },
  9325. "dist": {
  9326. "type": "zip",
  9327. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/987bafff24ecc4c9ac418cab1145b96dd6e9cbd9",
  9328. "reference": "987bafff24ecc4c9ac418cab1145b96dd6e9cbd9",
  9329. "shasum": ""
  9330. },
  9331. "require": {
  9332. "php": ">=8.1",
  9333. "sebastian/object-reflector": "^3.0",
  9334. "sebastian/recursion-context": "^5.0"
  9335. },
  9336. "require-dev": {
  9337. "ext-dom": "*",
  9338. "phpunit/phpunit": "^10.0"
  9339. },
  9340. "type": "library",
  9341. "extra": {
  9342. "branch-alias": {
  9343. "dev-main": "6.0-dev"
  9344. }
  9345. },
  9346. "autoload": {
  9347. "classmap": [
  9348. "src/"
  9349. ]
  9350. },
  9351. "notification-url": "https://packagist.org/downloads/",
  9352. "license": [
  9353. "BSD-3-Clause"
  9354. ],
  9355. "authors": [
  9356. {
  9357. "name": "Sebastian Bergmann",
  9358. "email": "sebastian@phpunit.de"
  9359. }
  9360. ],
  9361. "description": "Snapshotting of global state",
  9362. "homepage": "https://www.github.com/sebastianbergmann/global-state",
  9363. "keywords": [
  9364. "global state"
  9365. ],
  9366. "support": {
  9367. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  9368. "security": "https://github.com/sebastianbergmann/global-state/security/policy",
  9369. "source": "https://github.com/sebastianbergmann/global-state/tree/6.0.2"
  9370. },
  9371. "funding": [
  9372. {
  9373. "url": "https://github.com/sebastianbergmann",
  9374. "type": "github"
  9375. }
  9376. ],
  9377. "time": "2024-03-02T07:19:19+00:00"
  9378. },
  9379. {
  9380. "name": "sebastian/lines-of-code",
  9381. "version": "2.0.2",
  9382. "source": {
  9383. "type": "git",
  9384. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  9385. "reference": "856e7f6a75a84e339195d48c556f23be2ebf75d0"
  9386. },
  9387. "dist": {
  9388. "type": "zip",
  9389. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/856e7f6a75a84e339195d48c556f23be2ebf75d0",
  9390. "reference": "856e7f6a75a84e339195d48c556f23be2ebf75d0",
  9391. "shasum": ""
  9392. },
  9393. "require": {
  9394. "nikic/php-parser": "^4.18 || ^5.0",
  9395. "php": ">=8.1"
  9396. },
  9397. "require-dev": {
  9398. "phpunit/phpunit": "^10.0"
  9399. },
  9400. "type": "library",
  9401. "extra": {
  9402. "branch-alias": {
  9403. "dev-main": "2.0-dev"
  9404. }
  9405. },
  9406. "autoload": {
  9407. "classmap": [
  9408. "src/"
  9409. ]
  9410. },
  9411. "notification-url": "https://packagist.org/downloads/",
  9412. "license": [
  9413. "BSD-3-Clause"
  9414. ],
  9415. "authors": [
  9416. {
  9417. "name": "Sebastian Bergmann",
  9418. "email": "sebastian@phpunit.de",
  9419. "role": "lead"
  9420. }
  9421. ],
  9422. "description": "Library for counting the lines of code in PHP source code",
  9423. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  9424. "support": {
  9425. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  9426. "security": "https://github.com/sebastianbergmann/lines-of-code/security/policy",
  9427. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/2.0.2"
  9428. },
  9429. "funding": [
  9430. {
  9431. "url": "https://github.com/sebastianbergmann",
  9432. "type": "github"
  9433. }
  9434. ],
  9435. "time": "2023-12-21T08:38:20+00:00"
  9436. },
  9437. {
  9438. "name": "sebastian/object-enumerator",
  9439. "version": "5.0.0",
  9440. "source": {
  9441. "type": "git",
  9442. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  9443. "reference": "202d0e344a580d7f7d04b3fafce6933e59dae906"
  9444. },
  9445. "dist": {
  9446. "type": "zip",
  9447. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/202d0e344a580d7f7d04b3fafce6933e59dae906",
  9448. "reference": "202d0e344a580d7f7d04b3fafce6933e59dae906",
  9449. "shasum": ""
  9450. },
  9451. "require": {
  9452. "php": ">=8.1",
  9453. "sebastian/object-reflector": "^3.0",
  9454. "sebastian/recursion-context": "^5.0"
  9455. },
  9456. "require-dev": {
  9457. "phpunit/phpunit": "^10.0"
  9458. },
  9459. "type": "library",
  9460. "extra": {
  9461. "branch-alias": {
  9462. "dev-main": "5.0-dev"
  9463. }
  9464. },
  9465. "autoload": {
  9466. "classmap": [
  9467. "src/"
  9468. ]
  9469. },
  9470. "notification-url": "https://packagist.org/downloads/",
  9471. "license": [
  9472. "BSD-3-Clause"
  9473. ],
  9474. "authors": [
  9475. {
  9476. "name": "Sebastian Bergmann",
  9477. "email": "sebastian@phpunit.de"
  9478. }
  9479. ],
  9480. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  9481. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  9482. "support": {
  9483. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  9484. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/5.0.0"
  9485. },
  9486. "funding": [
  9487. {
  9488. "url": "https://github.com/sebastianbergmann",
  9489. "type": "github"
  9490. }
  9491. ],
  9492. "time": "2023-02-03T07:08:32+00:00"
  9493. },
  9494. {
  9495. "name": "sebastian/object-reflector",
  9496. "version": "3.0.0",
  9497. "source": {
  9498. "type": "git",
  9499. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  9500. "reference": "24ed13d98130f0e7122df55d06c5c4942a577957"
  9501. },
  9502. "dist": {
  9503. "type": "zip",
  9504. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/24ed13d98130f0e7122df55d06c5c4942a577957",
  9505. "reference": "24ed13d98130f0e7122df55d06c5c4942a577957",
  9506. "shasum": ""
  9507. },
  9508. "require": {
  9509. "php": ">=8.1"
  9510. },
  9511. "require-dev": {
  9512. "phpunit/phpunit": "^10.0"
  9513. },
  9514. "type": "library",
  9515. "extra": {
  9516. "branch-alias": {
  9517. "dev-main": "3.0-dev"
  9518. }
  9519. },
  9520. "autoload": {
  9521. "classmap": [
  9522. "src/"
  9523. ]
  9524. },
  9525. "notification-url": "https://packagist.org/downloads/",
  9526. "license": [
  9527. "BSD-3-Clause"
  9528. ],
  9529. "authors": [
  9530. {
  9531. "name": "Sebastian Bergmann",
  9532. "email": "sebastian@phpunit.de"
  9533. }
  9534. ],
  9535. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  9536. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  9537. "support": {
  9538. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  9539. "source": "https://github.com/sebastianbergmann/object-reflector/tree/3.0.0"
  9540. },
  9541. "funding": [
  9542. {
  9543. "url": "https://github.com/sebastianbergmann",
  9544. "type": "github"
  9545. }
  9546. ],
  9547. "time": "2023-02-03T07:06:18+00:00"
  9548. },
  9549. {
  9550. "name": "sebastian/recursion-context",
  9551. "version": "5.0.0",
  9552. "source": {
  9553. "type": "git",
  9554. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  9555. "reference": "05909fb5bc7df4c52992396d0116aed689f93712"
  9556. },
  9557. "dist": {
  9558. "type": "zip",
  9559. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/05909fb5bc7df4c52992396d0116aed689f93712",
  9560. "reference": "05909fb5bc7df4c52992396d0116aed689f93712",
  9561. "shasum": ""
  9562. },
  9563. "require": {
  9564. "php": ">=8.1"
  9565. },
  9566. "require-dev": {
  9567. "phpunit/phpunit": "^10.0"
  9568. },
  9569. "type": "library",
  9570. "extra": {
  9571. "branch-alias": {
  9572. "dev-main": "5.0-dev"
  9573. }
  9574. },
  9575. "autoload": {
  9576. "classmap": [
  9577. "src/"
  9578. ]
  9579. },
  9580. "notification-url": "https://packagist.org/downloads/",
  9581. "license": [
  9582. "BSD-3-Clause"
  9583. ],
  9584. "authors": [
  9585. {
  9586. "name": "Sebastian Bergmann",
  9587. "email": "sebastian@phpunit.de"
  9588. },
  9589. {
  9590. "name": "Jeff Welch",
  9591. "email": "whatthejeff@gmail.com"
  9592. },
  9593. {
  9594. "name": "Adam Harvey",
  9595. "email": "aharvey@php.net"
  9596. }
  9597. ],
  9598. "description": "Provides functionality to recursively process PHP variables",
  9599. "homepage": "https://github.com/sebastianbergmann/recursion-context",
  9600. "support": {
  9601. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  9602. "source": "https://github.com/sebastianbergmann/recursion-context/tree/5.0.0"
  9603. },
  9604. "funding": [
  9605. {
  9606. "url": "https://github.com/sebastianbergmann",
  9607. "type": "github"
  9608. }
  9609. ],
  9610. "time": "2023-02-03T07:05:40+00:00"
  9611. },
  9612. {
  9613. "name": "sebastian/type",
  9614. "version": "4.0.0",
  9615. "source": {
  9616. "type": "git",
  9617. "url": "https://github.com/sebastianbergmann/type.git",
  9618. "reference": "462699a16464c3944eefc02ebdd77882bd3925bf"
  9619. },
  9620. "dist": {
  9621. "type": "zip",
  9622. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/462699a16464c3944eefc02ebdd77882bd3925bf",
  9623. "reference": "462699a16464c3944eefc02ebdd77882bd3925bf",
  9624. "shasum": ""
  9625. },
  9626. "require": {
  9627. "php": ">=8.1"
  9628. },
  9629. "require-dev": {
  9630. "phpunit/phpunit": "^10.0"
  9631. },
  9632. "type": "library",
  9633. "extra": {
  9634. "branch-alias": {
  9635. "dev-main": "4.0-dev"
  9636. }
  9637. },
  9638. "autoload": {
  9639. "classmap": [
  9640. "src/"
  9641. ]
  9642. },
  9643. "notification-url": "https://packagist.org/downloads/",
  9644. "license": [
  9645. "BSD-3-Clause"
  9646. ],
  9647. "authors": [
  9648. {
  9649. "name": "Sebastian Bergmann",
  9650. "email": "sebastian@phpunit.de",
  9651. "role": "lead"
  9652. }
  9653. ],
  9654. "description": "Collection of value objects that represent the types of the PHP type system",
  9655. "homepage": "https://github.com/sebastianbergmann/type",
  9656. "support": {
  9657. "issues": "https://github.com/sebastianbergmann/type/issues",
  9658. "source": "https://github.com/sebastianbergmann/type/tree/4.0.0"
  9659. },
  9660. "funding": [
  9661. {
  9662. "url": "https://github.com/sebastianbergmann",
  9663. "type": "github"
  9664. }
  9665. ],
  9666. "time": "2023-02-03T07:10:45+00:00"
  9667. },
  9668. {
  9669. "name": "sebastian/version",
  9670. "version": "4.0.1",
  9671. "source": {
  9672. "type": "git",
  9673. "url": "https://github.com/sebastianbergmann/version.git",
  9674. "reference": "c51fa83a5d8f43f1402e3f32a005e6262244ef17"
  9675. },
  9676. "dist": {
  9677. "type": "zip",
  9678. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c51fa83a5d8f43f1402e3f32a005e6262244ef17",
  9679. "reference": "c51fa83a5d8f43f1402e3f32a005e6262244ef17",
  9680. "shasum": ""
  9681. },
  9682. "require": {
  9683. "php": ">=8.1"
  9684. },
  9685. "type": "library",
  9686. "extra": {
  9687. "branch-alias": {
  9688. "dev-main": "4.0-dev"
  9689. }
  9690. },
  9691. "autoload": {
  9692. "classmap": [
  9693. "src/"
  9694. ]
  9695. },
  9696. "notification-url": "https://packagist.org/downloads/",
  9697. "license": [
  9698. "BSD-3-Clause"
  9699. ],
  9700. "authors": [
  9701. {
  9702. "name": "Sebastian Bergmann",
  9703. "email": "sebastian@phpunit.de",
  9704. "role": "lead"
  9705. }
  9706. ],
  9707. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  9708. "homepage": "https://github.com/sebastianbergmann/version",
  9709. "support": {
  9710. "issues": "https://github.com/sebastianbergmann/version/issues",
  9711. "source": "https://github.com/sebastianbergmann/version/tree/4.0.1"
  9712. },
  9713. "funding": [
  9714. {
  9715. "url": "https://github.com/sebastianbergmann",
  9716. "type": "github"
  9717. }
  9718. ],
  9719. "time": "2023-02-07T11:34:05+00:00"
  9720. },
  9721. {
  9722. "name": "spatie/backtrace",
  9723. "version": "1.6.1",
  9724. "source": {
  9725. "type": "git",
  9726. "url": "https://github.com/spatie/backtrace.git",
  9727. "reference": "8373b9d51638292e3bfd736a9c19a654111b4a23"
  9728. },
  9729. "dist": {
  9730. "type": "zip",
  9731. "url": "https://api.github.com/repos/spatie/backtrace/zipball/8373b9d51638292e3bfd736a9c19a654111b4a23",
  9732. "reference": "8373b9d51638292e3bfd736a9c19a654111b4a23",
  9733. "shasum": ""
  9734. },
  9735. "require": {
  9736. "php": "^7.3|^8.0"
  9737. },
  9738. "require-dev": {
  9739. "ext-json": "*",
  9740. "laravel/serializable-closure": "^1.3",
  9741. "phpunit/phpunit": "^9.3",
  9742. "spatie/phpunit-snapshot-assertions": "^4.2",
  9743. "symfony/var-dumper": "^5.1"
  9744. },
  9745. "type": "library",
  9746. "autoload": {
  9747. "psr-4": {
  9748. "Spatie\\Backtrace\\": "src"
  9749. }
  9750. },
  9751. "notification-url": "https://packagist.org/downloads/",
  9752. "license": [
  9753. "MIT"
  9754. ],
  9755. "authors": [
  9756. {
  9757. "name": "Freek Van de Herten",
  9758. "email": "freek@spatie.be",
  9759. "homepage": "https://spatie.be",
  9760. "role": "Developer"
  9761. }
  9762. ],
  9763. "description": "A better backtrace",
  9764. "homepage": "https://github.com/spatie/backtrace",
  9765. "keywords": [
  9766. "Backtrace",
  9767. "spatie"
  9768. ],
  9769. "support": {
  9770. "source": "https://github.com/spatie/backtrace/tree/1.6.1"
  9771. },
  9772. "funding": [
  9773. {
  9774. "url": "https://github.com/sponsors/spatie",
  9775. "type": "github"
  9776. },
  9777. {
  9778. "url": "https://spatie.be/open-source/support-us",
  9779. "type": "other"
  9780. }
  9781. ],
  9782. "time": "2024-04-24T13:22:11+00:00"
  9783. },
  9784. {
  9785. "name": "spatie/error-solutions",
  9786. "version": "1.0.0",
  9787. "source": {
  9788. "type": "git",
  9789. "url": "https://github.com/spatie/error-solutions.git",
  9790. "reference": "202108314a6988ede156fba1b3ea80a784c1734a"
  9791. },
  9792. "dist": {
  9793. "type": "zip",
  9794. "url": "https://api.github.com/repos/spatie/error-solutions/zipball/202108314a6988ede156fba1b3ea80a784c1734a",
  9795. "reference": "202108314a6988ede156fba1b3ea80a784c1734a",
  9796. "shasum": ""
  9797. },
  9798. "require": {
  9799. "php": "^8.0"
  9800. },
  9801. "require-dev": {
  9802. "illuminate/broadcasting": "^10.0|^11.0",
  9803. "illuminate/cache": "^10.0|^11.0",
  9804. "illuminate/support": "^10.0|^11.0",
  9805. "livewire/livewire": "^2.11|^3.3.5",
  9806. "openai-php/client": "^0.10.1",
  9807. "orchestra/testbench": "^7.0|8.22.3|^9.0",
  9808. "pestphp/pest": "^2.20",
  9809. "phpstan/phpstan": "^1.11",
  9810. "psr/simple-cache": "^3.0",
  9811. "psr/simple-cache-implementation": "^3.0",
  9812. "spatie/ray": "^1.28",
  9813. "symfony/cache": "^5.4|^6.0|^7.0",
  9814. "symfony/process": "^5.4|^6.0|^7.0",
  9815. "vlucas/phpdotenv": "^5.5"
  9816. },
  9817. "suggest": {
  9818. "openai-php/client": "Require get solutions from OpenAI",
  9819. "simple-cache-implementation": "To cache solutions from OpenAI"
  9820. },
  9821. "type": "library",
  9822. "autoload": {
  9823. "psr-4": {
  9824. "Spatie\\Ignition\\": "legacy/ignition",
  9825. "Spatie\\ErrorSolutions\\": "src",
  9826. "Spatie\\LaravelIgnition\\": "legacy/laravel-ignition"
  9827. }
  9828. },
  9829. "notification-url": "https://packagist.org/downloads/",
  9830. "license": [
  9831. "MIT"
  9832. ],
  9833. "authors": [
  9834. {
  9835. "name": "Ruben Van Assche",
  9836. "email": "ruben@spatie.be",
  9837. "role": "Developer"
  9838. }
  9839. ],
  9840. "description": "This is my package error-solutions",
  9841. "homepage": "https://github.com/spatie/error-solutions",
  9842. "keywords": [
  9843. "error-solutions",
  9844. "spatie"
  9845. ],
  9846. "support": {
  9847. "issues": "https://github.com/spatie/error-solutions/issues",
  9848. "source": "https://github.com/spatie/error-solutions/tree/1.0.0"
  9849. },
  9850. "funding": [
  9851. {
  9852. "url": "https://github.com/Spatie",
  9853. "type": "github"
  9854. }
  9855. ],
  9856. "time": "2024-06-12T14:49:54+00:00"
  9857. },
  9858. {
  9859. "name": "spatie/flare-client-php",
  9860. "version": "1.7.0",
  9861. "source": {
  9862. "type": "git",
  9863. "url": "https://github.com/spatie/flare-client-php.git",
  9864. "reference": "097040ff51e660e0f6fc863684ac4b02c93fa234"
  9865. },
  9866. "dist": {
  9867. "type": "zip",
  9868. "url": "https://api.github.com/repos/spatie/flare-client-php/zipball/097040ff51e660e0f6fc863684ac4b02c93fa234",
  9869. "reference": "097040ff51e660e0f6fc863684ac4b02c93fa234",
  9870. "shasum": ""
  9871. },
  9872. "require": {
  9873. "illuminate/pipeline": "^8.0|^9.0|^10.0|^11.0",
  9874. "php": "^8.0",
  9875. "spatie/backtrace": "^1.6.1",
  9876. "symfony/http-foundation": "^5.2|^6.0|^7.0",
  9877. "symfony/mime": "^5.2|^6.0|^7.0",
  9878. "symfony/process": "^5.2|^6.0|^7.0",
  9879. "symfony/var-dumper": "^5.2|^6.0|^7.0"
  9880. },
  9881. "require-dev": {
  9882. "dms/phpunit-arraysubset-asserts": "^0.5.0",
  9883. "pestphp/pest": "^1.20|^2.0",
  9884. "phpstan/extension-installer": "^1.1",
  9885. "phpstan/phpstan-deprecation-rules": "^1.0",
  9886. "phpstan/phpstan-phpunit": "^1.0",
  9887. "spatie/phpunit-snapshot-assertions": "^4.0|^5.0"
  9888. },
  9889. "type": "library",
  9890. "extra": {
  9891. "branch-alias": {
  9892. "dev-main": "1.3.x-dev"
  9893. }
  9894. },
  9895. "autoload": {
  9896. "files": [
  9897. "src/helpers.php"
  9898. ],
  9899. "psr-4": {
  9900. "Spatie\\FlareClient\\": "src"
  9901. }
  9902. },
  9903. "notification-url": "https://packagist.org/downloads/",
  9904. "license": [
  9905. "MIT"
  9906. ],
  9907. "description": "Send PHP errors to Flare",
  9908. "homepage": "https://github.com/spatie/flare-client-php",
  9909. "keywords": [
  9910. "exception",
  9911. "flare",
  9912. "reporting",
  9913. "spatie"
  9914. ],
  9915. "support": {
  9916. "issues": "https://github.com/spatie/flare-client-php/issues",
  9917. "source": "https://github.com/spatie/flare-client-php/tree/1.7.0"
  9918. },
  9919. "funding": [
  9920. {
  9921. "url": "https://github.com/spatie",
  9922. "type": "github"
  9923. }
  9924. ],
  9925. "time": "2024-06-12T14:39:14+00:00"
  9926. },
  9927. {
  9928. "name": "spatie/ignition",
  9929. "version": "1.15.0",
  9930. "source": {
  9931. "type": "git",
  9932. "url": "https://github.com/spatie/ignition.git",
  9933. "reference": "e3a68e137371e1eb9edc7f78ffa733f3b98991d2"
  9934. },
  9935. "dist": {
  9936. "type": "zip",
  9937. "url": "https://api.github.com/repos/spatie/ignition/zipball/e3a68e137371e1eb9edc7f78ffa733f3b98991d2",
  9938. "reference": "e3a68e137371e1eb9edc7f78ffa733f3b98991d2",
  9939. "shasum": ""
  9940. },
  9941. "require": {
  9942. "ext-json": "*",
  9943. "ext-mbstring": "*",
  9944. "php": "^8.0",
  9945. "spatie/error-solutions": "^1.0",
  9946. "spatie/flare-client-php": "^1.7",
  9947. "symfony/console": "^5.4|^6.0|^7.0",
  9948. "symfony/var-dumper": "^5.4|^6.0|^7.0"
  9949. },
  9950. "require-dev": {
  9951. "illuminate/cache": "^9.52|^10.0|^11.0",
  9952. "mockery/mockery": "^1.4",
  9953. "pestphp/pest": "^1.20|^2.0",
  9954. "phpstan/extension-installer": "^1.1",
  9955. "phpstan/phpstan-deprecation-rules": "^1.0",
  9956. "phpstan/phpstan-phpunit": "^1.0",
  9957. "psr/simple-cache-implementation": "*",
  9958. "symfony/cache": "^5.4|^6.0|^7.0",
  9959. "symfony/process": "^5.4|^6.0|^7.0",
  9960. "vlucas/phpdotenv": "^5.5"
  9961. },
  9962. "suggest": {
  9963. "openai-php/client": "Require get solutions from OpenAI",
  9964. "simple-cache-implementation": "To cache solutions from OpenAI"
  9965. },
  9966. "type": "library",
  9967. "extra": {
  9968. "branch-alias": {
  9969. "dev-main": "1.5.x-dev"
  9970. }
  9971. },
  9972. "autoload": {
  9973. "psr-4": {
  9974. "Spatie\\Ignition\\": "src"
  9975. }
  9976. },
  9977. "notification-url": "https://packagist.org/downloads/",
  9978. "license": [
  9979. "MIT"
  9980. ],
  9981. "authors": [
  9982. {
  9983. "name": "Spatie",
  9984. "email": "info@spatie.be",
  9985. "role": "Developer"
  9986. }
  9987. ],
  9988. "description": "A beautiful error page for PHP applications.",
  9989. "homepage": "https://flareapp.io/ignition",
  9990. "keywords": [
  9991. "error",
  9992. "flare",
  9993. "laravel",
  9994. "page"
  9995. ],
  9996. "support": {
  9997. "docs": "https://flareapp.io/docs/ignition-for-laravel/introduction",
  9998. "forum": "https://twitter.com/flareappio",
  9999. "issues": "https://github.com/spatie/ignition/issues",
  10000. "source": "https://github.com/spatie/ignition"
  10001. },
  10002. "funding": [
  10003. {
  10004. "url": "https://github.com/spatie",
  10005. "type": "github"
  10006. }
  10007. ],
  10008. "time": "2024-06-12T14:55:22+00:00"
  10009. },
  10010. {
  10011. "name": "spatie/laravel-ignition",
  10012. "version": "2.8.0",
  10013. "source": {
  10014. "type": "git",
  10015. "url": "https://github.com/spatie/laravel-ignition.git",
  10016. "reference": "3c067b75bfb50574db8f7e2c3978c65eed71126c"
  10017. },
  10018. "dist": {
  10019. "type": "zip",
  10020. "url": "https://api.github.com/repos/spatie/laravel-ignition/zipball/3c067b75bfb50574db8f7e2c3978c65eed71126c",
  10021. "reference": "3c067b75bfb50574db8f7e2c3978c65eed71126c",
  10022. "shasum": ""
  10023. },
  10024. "require": {
  10025. "ext-curl": "*",
  10026. "ext-json": "*",
  10027. "ext-mbstring": "*",
  10028. "illuminate/support": "^10.0|^11.0",
  10029. "php": "^8.1",
  10030. "spatie/ignition": "^1.15",
  10031. "symfony/console": "^6.2.3|^7.0",
  10032. "symfony/var-dumper": "^6.2.3|^7.0"
  10033. },
  10034. "require-dev": {
  10035. "livewire/livewire": "^2.11|^3.3.5",
  10036. "mockery/mockery": "^1.5.1",
  10037. "openai-php/client": "^0.8.1",
  10038. "orchestra/testbench": "8.22.3|^9.0",
  10039. "pestphp/pest": "^2.34",
  10040. "phpstan/extension-installer": "^1.3.1",
  10041. "phpstan/phpstan-deprecation-rules": "^1.1.1",
  10042. "phpstan/phpstan-phpunit": "^1.3.16",
  10043. "vlucas/phpdotenv": "^5.5"
  10044. },
  10045. "suggest": {
  10046. "openai-php/client": "Require get solutions from OpenAI",
  10047. "psr/simple-cache-implementation": "Needed to cache solutions from OpenAI"
  10048. },
  10049. "type": "library",
  10050. "extra": {
  10051. "laravel": {
  10052. "providers": [
  10053. "Spatie\\LaravelIgnition\\IgnitionServiceProvider"
  10054. ],
  10055. "aliases": {
  10056. "Flare": "Spatie\\LaravelIgnition\\Facades\\Flare"
  10057. }
  10058. }
  10059. },
  10060. "autoload": {
  10061. "files": [
  10062. "src/helpers.php"
  10063. ],
  10064. "psr-4": {
  10065. "Spatie\\LaravelIgnition\\": "src"
  10066. }
  10067. },
  10068. "notification-url": "https://packagist.org/downloads/",
  10069. "license": [
  10070. "MIT"
  10071. ],
  10072. "authors": [
  10073. {
  10074. "name": "Spatie",
  10075. "email": "info@spatie.be",
  10076. "role": "Developer"
  10077. }
  10078. ],
  10079. "description": "A beautiful error page for Laravel applications.",
  10080. "homepage": "https://flareapp.io/ignition",
  10081. "keywords": [
  10082. "error",
  10083. "flare",
  10084. "laravel",
  10085. "page"
  10086. ],
  10087. "support": {
  10088. "docs": "https://flareapp.io/docs/ignition-for-laravel/introduction",
  10089. "forum": "https://twitter.com/flareappio",
  10090. "issues": "https://github.com/spatie/laravel-ignition/issues",
  10091. "source": "https://github.com/spatie/laravel-ignition"
  10092. },
  10093. "funding": [
  10094. {
  10095. "url": "https://github.com/spatie",
  10096. "type": "github"
  10097. }
  10098. ],
  10099. "time": "2024-06-12T15:01:18+00:00"
  10100. },
  10101. {
  10102. "name": "symfony/yaml",
  10103. "version": "v6.4.8",
  10104. "source": {
  10105. "type": "git",
  10106. "url": "https://github.com/symfony/yaml.git",
  10107. "reference": "52903de178d542850f6f341ba92995d3d63e60c9"
  10108. },
  10109. "dist": {
  10110. "type": "zip",
  10111. "url": "https://api.github.com/repos/symfony/yaml/zipball/52903de178d542850f6f341ba92995d3d63e60c9",
  10112. "reference": "52903de178d542850f6f341ba92995d3d63e60c9",
  10113. "shasum": ""
  10114. },
  10115. "require": {
  10116. "php": ">=8.1",
  10117. "symfony/deprecation-contracts": "^2.5|^3",
  10118. "symfony/polyfill-ctype": "^1.8"
  10119. },
  10120. "conflict": {
  10121. "symfony/console": "<5.4"
  10122. },
  10123. "require-dev": {
  10124. "symfony/console": "^5.4|^6.0|^7.0"
  10125. },
  10126. "bin": [
  10127. "Resources/bin/yaml-lint"
  10128. ],
  10129. "type": "library",
  10130. "autoload": {
  10131. "psr-4": {
  10132. "Symfony\\Component\\Yaml\\": ""
  10133. },
  10134. "exclude-from-classmap": [
  10135. "/Tests/"
  10136. ]
  10137. },
  10138. "notification-url": "https://packagist.org/downloads/",
  10139. "license": [
  10140. "MIT"
  10141. ],
  10142. "authors": [
  10143. {
  10144. "name": "Fabien Potencier",
  10145. "email": "fabien@symfony.com"
  10146. },
  10147. {
  10148. "name": "Symfony Community",
  10149. "homepage": "https://symfony.com/contributors"
  10150. }
  10151. ],
  10152. "description": "Loads and dumps YAML files",
  10153. "homepage": "https://symfony.com",
  10154. "support": {
  10155. "source": "https://github.com/symfony/yaml/tree/v6.4.8"
  10156. },
  10157. "funding": [
  10158. {
  10159. "url": "https://symfony.com/sponsor",
  10160. "type": "custom"
  10161. },
  10162. {
  10163. "url": "https://github.com/fabpot",
  10164. "type": "github"
  10165. },
  10166. {
  10167. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10168. "type": "tidelift"
  10169. }
  10170. ],
  10171. "time": "2024-05-31T14:49:08+00:00"
  10172. },
  10173. {
  10174. "name": "theseer/tokenizer",
  10175. "version": "1.2.3",
  10176. "source": {
  10177. "type": "git",
  10178. "url": "https://github.com/theseer/tokenizer.git",
  10179. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2"
  10180. },
  10181. "dist": {
  10182. "type": "zip",
  10183. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  10184. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  10185. "shasum": ""
  10186. },
  10187. "require": {
  10188. "ext-dom": "*",
  10189. "ext-tokenizer": "*",
  10190. "ext-xmlwriter": "*",
  10191. "php": "^7.2 || ^8.0"
  10192. },
  10193. "type": "library",
  10194. "autoload": {
  10195. "classmap": [
  10196. "src/"
  10197. ]
  10198. },
  10199. "notification-url": "https://packagist.org/downloads/",
  10200. "license": [
  10201. "BSD-3-Clause"
  10202. ],
  10203. "authors": [
  10204. {
  10205. "name": "Arne Blankerts",
  10206. "email": "arne@blankerts.de",
  10207. "role": "Developer"
  10208. }
  10209. ],
  10210. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  10211. "support": {
  10212. "issues": "https://github.com/theseer/tokenizer/issues",
  10213. "source": "https://github.com/theseer/tokenizer/tree/1.2.3"
  10214. },
  10215. "funding": [
  10216. {
  10217. "url": "https://github.com/theseer",
  10218. "type": "github"
  10219. }
  10220. ],
  10221. "time": "2024-03-03T12:36:25+00:00"
  10222. }
  10223. ],
  10224. "aliases": [],
  10225. "minimum-stability": "stable",
  10226. "stability-flags": [],
  10227. "prefer-stable": true,
  10228. "prefer-lowest": false,
  10229. "platform": {
  10230. "php": "^8.1"
  10231. },
  10232. "platform-dev": [],
  10233. "plugin-api-version": "2.2.0"
  10234. }