composer.lock 325 KB

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