composer.lock 346 KB

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