composer.lock 325 KB

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