composer.lock 398 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546105471054810549105501055110552105531055410555105561055710558105591056010561105621056310564105651056610567105681056910570105711057210573105741057510576105771057810579105801058110582105831058410585105861058710588105891059010591105921059310594105951059610597105981059910600106011060210603106041060510606106071060810609106101061110612106131061410615106161061710618106191062010621106221062310624106251062610627106281062910630106311063210633106341063510636106371063810639106401064110642106431064410645106461064710648106491065010651106521065310654106551065610657106581065910660106611066210663106641066510666106671066810669106701067110672106731067410675106761067710678106791068010681106821068310684106851068610687106881068910690106911069210693106941069510696106971069810699107001070110702107031070410705107061070710708107091071010711107121071310714107151071610717107181071910720107211072210723107241072510726107271072810729107301073110732107331073410735107361073710738107391074010741107421074310744107451074610747107481074910750107511075210753107541075510756107571075810759107601076110762107631076410765107661076710768107691077010771107721077310774107751077610777107781077910780107811078210783107841078510786107871078810789107901079110792107931079410795107961079710798107991080010801108021080310804108051080610807108081080910810108111081210813108141081510816108171081810819108201082110822108231082410825108261082710828108291083010831108321083310834108351083610837108381083910840108411084210843108441084510846108471084810849108501085110852108531085410855108561085710858108591086010861108621086310864108651086610867108681086910870108711087210873108741087510876108771087810879108801088110882108831088410885108861088710888108891089010891108921089310894108951089610897108981089910900109011090210903109041090510906109071090810909109101091110912109131091410915109161091710918109191092010921109221092310924109251092610927109281092910930109311093210933109341093510936109371093810939109401094110942109431094410945109461094710948109491095010951109521095310954109551095610957109581095910960109611096210963109641096510966109671096810969109701097110972109731097410975109761097710978109791098010981109821098310984109851098610987109881098910990109911099210993109941099510996109971099810999110001100111002110031100411005110061100711008110091101011011110121101311014110151101611017110181101911020110211102211023110241102511026110271102811029110301103111032110331103411035110361103711038110391104011041110421104311044110451104611047110481104911050110511105211053110541105511056110571105811059110601106111062110631106411065110661106711068110691107011071110721107311074110751107611077110781107911080110811108211083110841108511086110871108811089110901109111092110931109411095110961109711098110991110011101111021110311104111051110611107111081110911110111111111211113
  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": "b56797762a1495020ecef2f7f139c08f",
  8. "packages": [
  9. {
  10. "name": "aws/aws-crt-php",
  11. "version": "v1.2.7",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/awslabs/aws-crt-php.git",
  15. "reference": "d71d9906c7bb63a28295447ba12e74723bd3730e"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/awslabs/aws-crt-php/zipball/d71d9906c7bb63a28295447ba12e74723bd3730e",
  20. "reference": "d71d9906c7bb63a28295447ba12e74723bd3730e",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "php": ">=5.5"
  25. },
  26. "require-dev": {
  27. "phpunit/phpunit": "^4.8.35||^5.6.3||^9.5",
  28. "yoast/phpunit-polyfills": "^1.0"
  29. },
  30. "suggest": {
  31. "ext-awscrt": "Make sure you install awscrt native extension to use any of the functionality."
  32. },
  33. "type": "library",
  34. "autoload": {
  35. "classmap": [
  36. "src/"
  37. ]
  38. },
  39. "notification-url": "https://packagist.org/downloads/",
  40. "license": [
  41. "Apache-2.0"
  42. ],
  43. "authors": [
  44. {
  45. "name": "AWS SDK Common Runtime Team",
  46. "email": "aws-sdk-common-runtime@amazon.com"
  47. }
  48. ],
  49. "description": "AWS Common Runtime for PHP",
  50. "homepage": "https://github.com/awslabs/aws-crt-php",
  51. "keywords": [
  52. "amazon",
  53. "aws",
  54. "crt",
  55. "sdk"
  56. ],
  57. "support": {
  58. "issues": "https://github.com/awslabs/aws-crt-php/issues",
  59. "source": "https://github.com/awslabs/aws-crt-php/tree/v1.2.7"
  60. },
  61. "time": "2024-10-18T22:15:13+00:00"
  62. },
  63. {
  64. "name": "aws/aws-sdk-php",
  65. "version": "3.333.0",
  66. "source": {
  67. "type": "git",
  68. "url": "https://github.com/aws/aws-sdk-php.git",
  69. "reference": "11bb2709885c9954004620d3648e9355feb92a41"
  70. },
  71. "dist": {
  72. "type": "zip",
  73. "url": "https://api.github.com/repos/aws/aws-sdk-php/zipball/11bb2709885c9954004620d3648e9355feb92a41",
  74. "reference": "11bb2709885c9954004620d3648e9355feb92a41",
  75. "shasum": ""
  76. },
  77. "require": {
  78. "aws/aws-crt-php": "^1.2.3",
  79. "ext-json": "*",
  80. "ext-pcre": "*",
  81. "ext-simplexml": "*",
  82. "guzzlehttp/guzzle": "^6.5.8 || ^7.4.5",
  83. "guzzlehttp/promises": "^1.4.0 || ^2.0",
  84. "guzzlehttp/psr7": "^1.9.1 || ^2.4.5",
  85. "mtdowling/jmespath.php": "^2.6",
  86. "php": ">=7.2.5",
  87. "psr/http-message": "^1.0 || ^2.0"
  88. },
  89. "require-dev": {
  90. "andrewsville/php-token-reflection": "^1.4",
  91. "aws/aws-php-sns-message-validator": "~1.0",
  92. "behat/behat": "~3.0",
  93. "composer/composer": "^1.10.22",
  94. "dms/phpunit-arraysubset-asserts": "^0.4.0",
  95. "doctrine/cache": "~1.4",
  96. "ext-dom": "*",
  97. "ext-openssl": "*",
  98. "ext-pcntl": "*",
  99. "ext-sockets": "*",
  100. "nette/neon": "^2.3",
  101. "paragonie/random_compat": ">= 2",
  102. "phpunit/phpunit": "^5.6.3 || ^8.5 || ^9.5",
  103. "psr/cache": "^1.0 || ^2.0 || ^3.0",
  104. "psr/simple-cache": "^1.0 || ^2.0 || ^3.0",
  105. "sebastian/comparator": "^1.2.3 || ^4.0",
  106. "yoast/phpunit-polyfills": "^1.0"
  107. },
  108. "suggest": {
  109. "aws/aws-php-sns-message-validator": "To validate incoming SNS notifications",
  110. "doctrine/cache": "To use the DoctrineCacheAdapter",
  111. "ext-curl": "To send requests using cURL",
  112. "ext-openssl": "Allows working with CloudFront private distributions and verifying received SNS messages",
  113. "ext-sockets": "To use client-side monitoring"
  114. },
  115. "type": "library",
  116. "extra": {
  117. "branch-alias": {
  118. "dev-master": "3.0-dev"
  119. }
  120. },
  121. "autoload": {
  122. "files": [
  123. "src/functions.php"
  124. ],
  125. "psr-4": {
  126. "Aws\\": "src/"
  127. },
  128. "exclude-from-classmap": [
  129. "src/data/"
  130. ]
  131. },
  132. "notification-url": "https://packagist.org/downloads/",
  133. "license": [
  134. "Apache-2.0"
  135. ],
  136. "authors": [
  137. {
  138. "name": "Amazon Web Services",
  139. "homepage": "http://aws.amazon.com"
  140. }
  141. ],
  142. "description": "AWS SDK for PHP - Use Amazon Web Services in your PHP project",
  143. "homepage": "http://aws.amazon.com/sdkforphp",
  144. "keywords": [
  145. "amazon",
  146. "aws",
  147. "cloud",
  148. "dynamodb",
  149. "ec2",
  150. "glacier",
  151. "s3",
  152. "sdk"
  153. ],
  154. "support": {
  155. "forum": "https://forums.aws.amazon.com/forum.jspa?forumID=80",
  156. "issues": "https://github.com/aws/aws-sdk-php/issues",
  157. "source": "https://github.com/aws/aws-sdk-php/tree/3.333.0"
  158. },
  159. "time": "2024-12-03T19:06:47+00:00"
  160. },
  161. {
  162. "name": "bacon/bacon-qr-code",
  163. "version": "2.0.8",
  164. "source": {
  165. "type": "git",
  166. "url": "https://github.com/Bacon/BaconQrCode.git",
  167. "reference": "8674e51bb65af933a5ffaf1c308a660387c35c22"
  168. },
  169. "dist": {
  170. "type": "zip",
  171. "url": "https://api.github.com/repos/Bacon/BaconQrCode/zipball/8674e51bb65af933a5ffaf1c308a660387c35c22",
  172. "reference": "8674e51bb65af933a5ffaf1c308a660387c35c22",
  173. "shasum": ""
  174. },
  175. "require": {
  176. "dasprid/enum": "^1.0.3",
  177. "ext-iconv": "*",
  178. "php": "^7.1 || ^8.0"
  179. },
  180. "require-dev": {
  181. "phly/keep-a-changelog": "^2.1",
  182. "phpunit/phpunit": "^7 | ^8 | ^9",
  183. "spatie/phpunit-snapshot-assertions": "^4.2.9",
  184. "squizlabs/php_codesniffer": "^3.4"
  185. },
  186. "suggest": {
  187. "ext-imagick": "to generate QR code images"
  188. },
  189. "type": "library",
  190. "autoload": {
  191. "psr-4": {
  192. "BaconQrCode\\": "src/"
  193. }
  194. },
  195. "notification-url": "https://packagist.org/downloads/",
  196. "license": [
  197. "BSD-2-Clause"
  198. ],
  199. "authors": [
  200. {
  201. "name": "Ben Scholzen 'DASPRiD'",
  202. "email": "mail@dasprids.de",
  203. "homepage": "https://dasprids.de/",
  204. "role": "Developer"
  205. }
  206. ],
  207. "description": "BaconQrCode is a QR code generator for PHP.",
  208. "homepage": "https://github.com/Bacon/BaconQrCode",
  209. "support": {
  210. "issues": "https://github.com/Bacon/BaconQrCode/issues",
  211. "source": "https://github.com/Bacon/BaconQrCode/tree/2.0.8"
  212. },
  213. "time": "2022-12-07T17:46:57+00:00"
  214. },
  215. {
  216. "name": "brick/math",
  217. "version": "0.12.1",
  218. "source": {
  219. "type": "git",
  220. "url": "https://github.com/brick/math.git",
  221. "reference": "f510c0a40911935b77b86859eb5223d58d660df1"
  222. },
  223. "dist": {
  224. "type": "zip",
  225. "url": "https://api.github.com/repos/brick/math/zipball/f510c0a40911935b77b86859eb5223d58d660df1",
  226. "reference": "f510c0a40911935b77b86859eb5223d58d660df1",
  227. "shasum": ""
  228. },
  229. "require": {
  230. "php": "^8.1"
  231. },
  232. "require-dev": {
  233. "php-coveralls/php-coveralls": "^2.2",
  234. "phpunit/phpunit": "^10.1",
  235. "vimeo/psalm": "5.16.0"
  236. },
  237. "type": "library",
  238. "autoload": {
  239. "psr-4": {
  240. "Brick\\Math\\": "src/"
  241. }
  242. },
  243. "notification-url": "https://packagist.org/downloads/",
  244. "license": [
  245. "MIT"
  246. ],
  247. "description": "Arbitrary-precision arithmetic library",
  248. "keywords": [
  249. "Arbitrary-precision",
  250. "BigInteger",
  251. "BigRational",
  252. "arithmetic",
  253. "bigdecimal",
  254. "bignum",
  255. "bignumber",
  256. "brick",
  257. "decimal",
  258. "integer",
  259. "math",
  260. "mathematics",
  261. "rational"
  262. ],
  263. "support": {
  264. "issues": "https://github.com/brick/math/issues",
  265. "source": "https://github.com/brick/math/tree/0.12.1"
  266. },
  267. "funding": [
  268. {
  269. "url": "https://github.com/BenMorel",
  270. "type": "github"
  271. }
  272. ],
  273. "time": "2023-11-29T23:19:16+00:00"
  274. },
  275. {
  276. "name": "carbonphp/carbon-doctrine-types",
  277. "version": "3.2.0",
  278. "source": {
  279. "type": "git",
  280. "url": "https://github.com/CarbonPHP/carbon-doctrine-types.git",
  281. "reference": "18ba5ddfec8976260ead6e866180bd5d2f71aa1d"
  282. },
  283. "dist": {
  284. "type": "zip",
  285. "url": "https://api.github.com/repos/CarbonPHP/carbon-doctrine-types/zipball/18ba5ddfec8976260ead6e866180bd5d2f71aa1d",
  286. "reference": "18ba5ddfec8976260ead6e866180bd5d2f71aa1d",
  287. "shasum": ""
  288. },
  289. "require": {
  290. "php": "^8.1"
  291. },
  292. "conflict": {
  293. "doctrine/dbal": "<4.0.0 || >=5.0.0"
  294. },
  295. "require-dev": {
  296. "doctrine/dbal": "^4.0.0",
  297. "nesbot/carbon": "^2.71.0 || ^3.0.0",
  298. "phpunit/phpunit": "^10.3"
  299. },
  300. "type": "library",
  301. "autoload": {
  302. "psr-4": {
  303. "Carbon\\Doctrine\\": "src/Carbon/Doctrine/"
  304. }
  305. },
  306. "notification-url": "https://packagist.org/downloads/",
  307. "license": [
  308. "MIT"
  309. ],
  310. "authors": [
  311. {
  312. "name": "KyleKatarn",
  313. "email": "kylekatarnls@gmail.com"
  314. }
  315. ],
  316. "description": "Types to use Carbon in Doctrine",
  317. "keywords": [
  318. "carbon",
  319. "date",
  320. "datetime",
  321. "doctrine",
  322. "time"
  323. ],
  324. "support": {
  325. "issues": "https://github.com/CarbonPHP/carbon-doctrine-types/issues",
  326. "source": "https://github.com/CarbonPHP/carbon-doctrine-types/tree/3.2.0"
  327. },
  328. "funding": [
  329. {
  330. "url": "https://github.com/kylekatarnls",
  331. "type": "github"
  332. },
  333. {
  334. "url": "https://opencollective.com/Carbon",
  335. "type": "open_collective"
  336. },
  337. {
  338. "url": "https://tidelift.com/funding/github/packagist/nesbot/carbon",
  339. "type": "tidelift"
  340. }
  341. ],
  342. "time": "2024-02-09T16:56:22+00:00"
  343. },
  344. {
  345. "name": "dasprid/enum",
  346. "version": "1.0.6",
  347. "source": {
  348. "type": "git",
  349. "url": "https://github.com/DASPRiD/Enum.git",
  350. "reference": "8dfd07c6d2cf31c8da90c53b83c026c7696dda90"
  351. },
  352. "dist": {
  353. "type": "zip",
  354. "url": "https://api.github.com/repos/DASPRiD/Enum/zipball/8dfd07c6d2cf31c8da90c53b83c026c7696dda90",
  355. "reference": "8dfd07c6d2cf31c8da90c53b83c026c7696dda90",
  356. "shasum": ""
  357. },
  358. "require": {
  359. "php": ">=7.1 <9.0"
  360. },
  361. "require-dev": {
  362. "phpunit/phpunit": "^7 || ^8 || ^9 || ^10 || ^11",
  363. "squizlabs/php_codesniffer": "*"
  364. },
  365. "type": "library",
  366. "autoload": {
  367. "psr-4": {
  368. "DASPRiD\\Enum\\": "src/"
  369. }
  370. },
  371. "notification-url": "https://packagist.org/downloads/",
  372. "license": [
  373. "BSD-2-Clause"
  374. ],
  375. "authors": [
  376. {
  377. "name": "Ben Scholzen 'DASPRiD'",
  378. "email": "mail@dasprids.de",
  379. "homepage": "https://dasprids.de/",
  380. "role": "Developer"
  381. }
  382. ],
  383. "description": "PHP 7.1 enum implementation",
  384. "keywords": [
  385. "enum",
  386. "map"
  387. ],
  388. "support": {
  389. "issues": "https://github.com/DASPRiD/Enum/issues",
  390. "source": "https://github.com/DASPRiD/Enum/tree/1.0.6"
  391. },
  392. "time": "2024-08-09T14:30:48+00:00"
  393. },
  394. {
  395. "name": "dflydev/dot-access-data",
  396. "version": "v3.0.3",
  397. "source": {
  398. "type": "git",
  399. "url": "https://github.com/dflydev/dflydev-dot-access-data.git",
  400. "reference": "a23a2bf4f31d3518f3ecb38660c95715dfead60f"
  401. },
  402. "dist": {
  403. "type": "zip",
  404. "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/a23a2bf4f31d3518f3ecb38660c95715dfead60f",
  405. "reference": "a23a2bf4f31d3518f3ecb38660c95715dfead60f",
  406. "shasum": ""
  407. },
  408. "require": {
  409. "php": "^7.1 || ^8.0"
  410. },
  411. "require-dev": {
  412. "phpstan/phpstan": "^0.12.42",
  413. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.3",
  414. "scrutinizer/ocular": "1.6.0",
  415. "squizlabs/php_codesniffer": "^3.5",
  416. "vimeo/psalm": "^4.0.0"
  417. },
  418. "type": "library",
  419. "extra": {
  420. "branch-alias": {
  421. "dev-main": "3.x-dev"
  422. }
  423. },
  424. "autoload": {
  425. "psr-4": {
  426. "Dflydev\\DotAccessData\\": "src/"
  427. }
  428. },
  429. "notification-url": "https://packagist.org/downloads/",
  430. "license": [
  431. "MIT"
  432. ],
  433. "authors": [
  434. {
  435. "name": "Dragonfly Development Inc.",
  436. "email": "info@dflydev.com",
  437. "homepage": "http://dflydev.com"
  438. },
  439. {
  440. "name": "Beau Simensen",
  441. "email": "beau@dflydev.com",
  442. "homepage": "http://beausimensen.com"
  443. },
  444. {
  445. "name": "Carlos Frutos",
  446. "email": "carlos@kiwing.it",
  447. "homepage": "https://github.com/cfrutos"
  448. },
  449. {
  450. "name": "Colin O'Dell",
  451. "email": "colinodell@gmail.com",
  452. "homepage": "https://www.colinodell.com"
  453. }
  454. ],
  455. "description": "Given a deep data structure, access data by dot notation.",
  456. "homepage": "https://github.com/dflydev/dflydev-dot-access-data",
  457. "keywords": [
  458. "access",
  459. "data",
  460. "dot",
  461. "notation"
  462. ],
  463. "support": {
  464. "issues": "https://github.com/dflydev/dflydev-dot-access-data/issues",
  465. "source": "https://github.com/dflydev/dflydev-dot-access-data/tree/v3.0.3"
  466. },
  467. "time": "2024-07-08T12:26:09+00:00"
  468. },
  469. {
  470. "name": "doctrine/inflector",
  471. "version": "2.0.10",
  472. "source": {
  473. "type": "git",
  474. "url": "https://github.com/doctrine/inflector.git",
  475. "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc"
  476. },
  477. "dist": {
  478. "type": "zip",
  479. "url": "https://api.github.com/repos/doctrine/inflector/zipball/5817d0659c5b50c9b950feb9af7b9668e2c436bc",
  480. "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc",
  481. "shasum": ""
  482. },
  483. "require": {
  484. "php": "^7.2 || ^8.0"
  485. },
  486. "require-dev": {
  487. "doctrine/coding-standard": "^11.0",
  488. "phpstan/phpstan": "^1.8",
  489. "phpstan/phpstan-phpunit": "^1.1",
  490. "phpstan/phpstan-strict-rules": "^1.3",
  491. "phpunit/phpunit": "^8.5 || ^9.5",
  492. "vimeo/psalm": "^4.25 || ^5.4"
  493. },
  494. "type": "library",
  495. "autoload": {
  496. "psr-4": {
  497. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  498. }
  499. },
  500. "notification-url": "https://packagist.org/downloads/",
  501. "license": [
  502. "MIT"
  503. ],
  504. "authors": [
  505. {
  506. "name": "Guilherme Blanco",
  507. "email": "guilhermeblanco@gmail.com"
  508. },
  509. {
  510. "name": "Roman Borschel",
  511. "email": "roman@code-factory.org"
  512. },
  513. {
  514. "name": "Benjamin Eberlei",
  515. "email": "kontakt@beberlei.de"
  516. },
  517. {
  518. "name": "Jonathan Wage",
  519. "email": "jonwage@gmail.com"
  520. },
  521. {
  522. "name": "Johannes Schmitt",
  523. "email": "schmittjoh@gmail.com"
  524. }
  525. ],
  526. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  527. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  528. "keywords": [
  529. "inflection",
  530. "inflector",
  531. "lowercase",
  532. "manipulation",
  533. "php",
  534. "plural",
  535. "singular",
  536. "strings",
  537. "uppercase",
  538. "words"
  539. ],
  540. "support": {
  541. "issues": "https://github.com/doctrine/inflector/issues",
  542. "source": "https://github.com/doctrine/inflector/tree/2.0.10"
  543. },
  544. "funding": [
  545. {
  546. "url": "https://www.doctrine-project.org/sponsorship.html",
  547. "type": "custom"
  548. },
  549. {
  550. "url": "https://www.patreon.com/phpdoctrine",
  551. "type": "patreon"
  552. },
  553. {
  554. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  555. "type": "tidelift"
  556. }
  557. ],
  558. "time": "2024-02-18T20:23:39+00:00"
  559. },
  560. {
  561. "name": "doctrine/lexer",
  562. "version": "3.0.1",
  563. "source": {
  564. "type": "git",
  565. "url": "https://github.com/doctrine/lexer.git",
  566. "reference": "31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd"
  567. },
  568. "dist": {
  569. "type": "zip",
  570. "url": "https://api.github.com/repos/doctrine/lexer/zipball/31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd",
  571. "reference": "31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd",
  572. "shasum": ""
  573. },
  574. "require": {
  575. "php": "^8.1"
  576. },
  577. "require-dev": {
  578. "doctrine/coding-standard": "^12",
  579. "phpstan/phpstan": "^1.10",
  580. "phpunit/phpunit": "^10.5",
  581. "psalm/plugin-phpunit": "^0.18.3",
  582. "vimeo/psalm": "^5.21"
  583. },
  584. "type": "library",
  585. "autoload": {
  586. "psr-4": {
  587. "Doctrine\\Common\\Lexer\\": "src"
  588. }
  589. },
  590. "notification-url": "https://packagist.org/downloads/",
  591. "license": [
  592. "MIT"
  593. ],
  594. "authors": [
  595. {
  596. "name": "Guilherme Blanco",
  597. "email": "guilhermeblanco@gmail.com"
  598. },
  599. {
  600. "name": "Roman Borschel",
  601. "email": "roman@code-factory.org"
  602. },
  603. {
  604. "name": "Johannes Schmitt",
  605. "email": "schmittjoh@gmail.com"
  606. }
  607. ],
  608. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  609. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  610. "keywords": [
  611. "annotations",
  612. "docblock",
  613. "lexer",
  614. "parser",
  615. "php"
  616. ],
  617. "support": {
  618. "issues": "https://github.com/doctrine/lexer/issues",
  619. "source": "https://github.com/doctrine/lexer/tree/3.0.1"
  620. },
  621. "funding": [
  622. {
  623. "url": "https://www.doctrine-project.org/sponsorship.html",
  624. "type": "custom"
  625. },
  626. {
  627. "url": "https://www.patreon.com/phpdoctrine",
  628. "type": "patreon"
  629. },
  630. {
  631. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  632. "type": "tidelift"
  633. }
  634. ],
  635. "time": "2024-02-05T11:56:58+00:00"
  636. },
  637. {
  638. "name": "dragonmantank/cron-expression",
  639. "version": "v3.4.0",
  640. "source": {
  641. "type": "git",
  642. "url": "https://github.com/dragonmantank/cron-expression.git",
  643. "reference": "8c784d071debd117328803d86b2097615b457500"
  644. },
  645. "dist": {
  646. "type": "zip",
  647. "url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/8c784d071debd117328803d86b2097615b457500",
  648. "reference": "8c784d071debd117328803d86b2097615b457500",
  649. "shasum": ""
  650. },
  651. "require": {
  652. "php": "^7.2|^8.0",
  653. "webmozart/assert": "^1.0"
  654. },
  655. "replace": {
  656. "mtdowling/cron-expression": "^1.0"
  657. },
  658. "require-dev": {
  659. "phpstan/extension-installer": "^1.0",
  660. "phpstan/phpstan": "^1.0",
  661. "phpunit/phpunit": "^7.0|^8.0|^9.0"
  662. },
  663. "type": "library",
  664. "extra": {
  665. "branch-alias": {
  666. "dev-master": "3.x-dev"
  667. }
  668. },
  669. "autoload": {
  670. "psr-4": {
  671. "Cron\\": "src/Cron/"
  672. }
  673. },
  674. "notification-url": "https://packagist.org/downloads/",
  675. "license": [
  676. "MIT"
  677. ],
  678. "authors": [
  679. {
  680. "name": "Chris Tankersley",
  681. "email": "chris@ctankersley.com",
  682. "homepage": "https://github.com/dragonmantank"
  683. }
  684. ],
  685. "description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due",
  686. "keywords": [
  687. "cron",
  688. "schedule"
  689. ],
  690. "support": {
  691. "issues": "https://github.com/dragonmantank/cron-expression/issues",
  692. "source": "https://github.com/dragonmantank/cron-expression/tree/v3.4.0"
  693. },
  694. "funding": [
  695. {
  696. "url": "https://github.com/dragonmantank",
  697. "type": "github"
  698. }
  699. ],
  700. "time": "2024-10-09T13:47:03+00:00"
  701. },
  702. {
  703. "name": "egulias/email-validator",
  704. "version": "4.0.2",
  705. "source": {
  706. "type": "git",
  707. "url": "https://github.com/egulias/EmailValidator.git",
  708. "reference": "ebaaf5be6c0286928352e054f2d5125608e5405e"
  709. },
  710. "dist": {
  711. "type": "zip",
  712. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/ebaaf5be6c0286928352e054f2d5125608e5405e",
  713. "reference": "ebaaf5be6c0286928352e054f2d5125608e5405e",
  714. "shasum": ""
  715. },
  716. "require": {
  717. "doctrine/lexer": "^2.0 || ^3.0",
  718. "php": ">=8.1",
  719. "symfony/polyfill-intl-idn": "^1.26"
  720. },
  721. "require-dev": {
  722. "phpunit/phpunit": "^10.2",
  723. "vimeo/psalm": "^5.12"
  724. },
  725. "suggest": {
  726. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  727. },
  728. "type": "library",
  729. "extra": {
  730. "branch-alias": {
  731. "dev-master": "4.0.x-dev"
  732. }
  733. },
  734. "autoload": {
  735. "psr-4": {
  736. "Egulias\\EmailValidator\\": "src"
  737. }
  738. },
  739. "notification-url": "https://packagist.org/downloads/",
  740. "license": [
  741. "MIT"
  742. ],
  743. "authors": [
  744. {
  745. "name": "Eduardo Gulias Davis"
  746. }
  747. ],
  748. "description": "A library for validating emails against several RFCs",
  749. "homepage": "https://github.com/egulias/EmailValidator",
  750. "keywords": [
  751. "email",
  752. "emailvalidation",
  753. "emailvalidator",
  754. "validation",
  755. "validator"
  756. ],
  757. "support": {
  758. "issues": "https://github.com/egulias/EmailValidator/issues",
  759. "source": "https://github.com/egulias/EmailValidator/tree/4.0.2"
  760. },
  761. "funding": [
  762. {
  763. "url": "https://github.com/egulias",
  764. "type": "github"
  765. }
  766. ],
  767. "time": "2023-10-06T06:47:41+00:00"
  768. },
  769. {
  770. "name": "erusev/parsedown",
  771. "version": "1.7.4",
  772. "source": {
  773. "type": "git",
  774. "url": "https://github.com/erusev/parsedown.git",
  775. "reference": "cb17b6477dfff935958ba01325f2e8a2bfa6dab3"
  776. },
  777. "dist": {
  778. "type": "zip",
  779. "url": "https://api.github.com/repos/erusev/parsedown/zipball/cb17b6477dfff935958ba01325f2e8a2bfa6dab3",
  780. "reference": "cb17b6477dfff935958ba01325f2e8a2bfa6dab3",
  781. "shasum": ""
  782. },
  783. "require": {
  784. "ext-mbstring": "*",
  785. "php": ">=5.3.0"
  786. },
  787. "require-dev": {
  788. "phpunit/phpunit": "^4.8.35"
  789. },
  790. "type": "library",
  791. "autoload": {
  792. "psr-0": {
  793. "Parsedown": ""
  794. }
  795. },
  796. "notification-url": "https://packagist.org/downloads/",
  797. "license": [
  798. "MIT"
  799. ],
  800. "authors": [
  801. {
  802. "name": "Emanuil Rusev",
  803. "email": "hello@erusev.com",
  804. "homepage": "http://erusev.com"
  805. }
  806. ],
  807. "description": "Parser for Markdown.",
  808. "homepage": "http://parsedown.org",
  809. "keywords": [
  810. "markdown",
  811. "parser"
  812. ],
  813. "support": {
  814. "issues": "https://github.com/erusev/parsedown/issues",
  815. "source": "https://github.com/erusev/parsedown/tree/1.7.x"
  816. },
  817. "time": "2019-12-30T22:54:17+00:00"
  818. },
  819. {
  820. "name": "fakerphp/faker",
  821. "version": "v1.24.1",
  822. "source": {
  823. "type": "git",
  824. "url": "https://github.com/FakerPHP/Faker.git",
  825. "reference": "e0ee18eb1e6dc3cda3ce9fd97e5a0689a88a64b5"
  826. },
  827. "dist": {
  828. "type": "zip",
  829. "url": "https://api.github.com/repos/FakerPHP/Faker/zipball/e0ee18eb1e6dc3cda3ce9fd97e5a0689a88a64b5",
  830. "reference": "e0ee18eb1e6dc3cda3ce9fd97e5a0689a88a64b5",
  831. "shasum": ""
  832. },
  833. "require": {
  834. "php": "^7.4 || ^8.0",
  835. "psr/container": "^1.0 || ^2.0",
  836. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  837. },
  838. "conflict": {
  839. "fzaninotto/faker": "*"
  840. },
  841. "require-dev": {
  842. "bamarni/composer-bin-plugin": "^1.4.1",
  843. "doctrine/persistence": "^1.3 || ^2.0",
  844. "ext-intl": "*",
  845. "phpunit/phpunit": "^9.5.26",
  846. "symfony/phpunit-bridge": "^5.4.16"
  847. },
  848. "suggest": {
  849. "doctrine/orm": "Required to use Faker\\ORM\\Doctrine",
  850. "ext-curl": "Required by Faker\\Provider\\Image to download images.",
  851. "ext-dom": "Required by Faker\\Provider\\HtmlLorem for generating random HTML.",
  852. "ext-iconv": "Required by Faker\\Provider\\ru_RU\\Text::realText() for generating real Russian text.",
  853. "ext-mbstring": "Required for multibyte Unicode string functionality."
  854. },
  855. "type": "library",
  856. "autoload": {
  857. "psr-4": {
  858. "Faker\\": "src/Faker/"
  859. }
  860. },
  861. "notification-url": "https://packagist.org/downloads/",
  862. "license": [
  863. "MIT"
  864. ],
  865. "authors": [
  866. {
  867. "name": "François Zaninotto"
  868. }
  869. ],
  870. "description": "Faker is a PHP library that generates fake data for you.",
  871. "keywords": [
  872. "data",
  873. "faker",
  874. "fixtures"
  875. ],
  876. "support": {
  877. "issues": "https://github.com/FakerPHP/Faker/issues",
  878. "source": "https://github.com/FakerPHP/Faker/tree/v1.24.1"
  879. },
  880. "time": "2024-11-21T13:46:39+00:00"
  881. },
  882. {
  883. "name": "filp/whoops",
  884. "version": "2.16.0",
  885. "source": {
  886. "type": "git",
  887. "url": "https://github.com/filp/whoops.git",
  888. "reference": "befcdc0e5dce67252aa6322d82424be928214fa2"
  889. },
  890. "dist": {
  891. "type": "zip",
  892. "url": "https://api.github.com/repos/filp/whoops/zipball/befcdc0e5dce67252aa6322d82424be928214fa2",
  893. "reference": "befcdc0e5dce67252aa6322d82424be928214fa2",
  894. "shasum": ""
  895. },
  896. "require": {
  897. "php": "^7.1 || ^8.0",
  898. "psr/log": "^1.0.1 || ^2.0 || ^3.0"
  899. },
  900. "require-dev": {
  901. "mockery/mockery": "^1.0",
  902. "phpunit/phpunit": "^7.5.20 || ^8.5.8 || ^9.3.3",
  903. "symfony/var-dumper": "^4.0 || ^5.0"
  904. },
  905. "suggest": {
  906. "symfony/var-dumper": "Pretty print complex values better with var-dumper available",
  907. "whoops/soap": "Formats errors as SOAP responses"
  908. },
  909. "type": "library",
  910. "extra": {
  911. "branch-alias": {
  912. "dev-master": "2.7-dev"
  913. }
  914. },
  915. "autoload": {
  916. "psr-4": {
  917. "Whoops\\": "src/Whoops/"
  918. }
  919. },
  920. "notification-url": "https://packagist.org/downloads/",
  921. "license": [
  922. "MIT"
  923. ],
  924. "authors": [
  925. {
  926. "name": "Filipe Dobreira",
  927. "homepage": "https://github.com/filp",
  928. "role": "Developer"
  929. }
  930. ],
  931. "description": "php error handling for cool kids",
  932. "homepage": "https://filp.github.io/whoops/",
  933. "keywords": [
  934. "error",
  935. "exception",
  936. "handling",
  937. "library",
  938. "throwable",
  939. "whoops"
  940. ],
  941. "support": {
  942. "issues": "https://github.com/filp/whoops/issues",
  943. "source": "https://github.com/filp/whoops/tree/2.16.0"
  944. },
  945. "funding": [
  946. {
  947. "url": "https://github.com/denis-sokolov",
  948. "type": "github"
  949. }
  950. ],
  951. "time": "2024-09-25T12:00:00+00:00"
  952. },
  953. {
  954. "name": "fruitcake/php-cors",
  955. "version": "v1.3.0",
  956. "source": {
  957. "type": "git",
  958. "url": "https://github.com/fruitcake/php-cors.git",
  959. "reference": "3d158f36e7875e2f040f37bc0573956240a5a38b"
  960. },
  961. "dist": {
  962. "type": "zip",
  963. "url": "https://api.github.com/repos/fruitcake/php-cors/zipball/3d158f36e7875e2f040f37bc0573956240a5a38b",
  964. "reference": "3d158f36e7875e2f040f37bc0573956240a5a38b",
  965. "shasum": ""
  966. },
  967. "require": {
  968. "php": "^7.4|^8.0",
  969. "symfony/http-foundation": "^4.4|^5.4|^6|^7"
  970. },
  971. "require-dev": {
  972. "phpstan/phpstan": "^1.4",
  973. "phpunit/phpunit": "^9",
  974. "squizlabs/php_codesniffer": "^3.5"
  975. },
  976. "type": "library",
  977. "extra": {
  978. "branch-alias": {
  979. "dev-master": "1.2-dev"
  980. }
  981. },
  982. "autoload": {
  983. "psr-4": {
  984. "Fruitcake\\Cors\\": "src/"
  985. }
  986. },
  987. "notification-url": "https://packagist.org/downloads/",
  988. "license": [
  989. "MIT"
  990. ],
  991. "authors": [
  992. {
  993. "name": "Fruitcake",
  994. "homepage": "https://fruitcake.nl"
  995. },
  996. {
  997. "name": "Barryvdh",
  998. "email": "barryvdh@gmail.com"
  999. }
  1000. ],
  1001. "description": "Cross-origin resource sharing library for the Symfony HttpFoundation",
  1002. "homepage": "https://github.com/fruitcake/php-cors",
  1003. "keywords": [
  1004. "cors",
  1005. "laravel",
  1006. "symfony"
  1007. ],
  1008. "support": {
  1009. "issues": "https://github.com/fruitcake/php-cors/issues",
  1010. "source": "https://github.com/fruitcake/php-cors/tree/v1.3.0"
  1011. },
  1012. "funding": [
  1013. {
  1014. "url": "https://fruitcake.nl",
  1015. "type": "custom"
  1016. },
  1017. {
  1018. "url": "https://github.com/barryvdh",
  1019. "type": "github"
  1020. }
  1021. ],
  1022. "time": "2023-10-12T05:21:21+00:00"
  1023. },
  1024. {
  1025. "name": "graham-campbell/result-type",
  1026. "version": "v1.1.3",
  1027. "source": {
  1028. "type": "git",
  1029. "url": "https://github.com/GrahamCampbell/Result-Type.git",
  1030. "reference": "3ba905c11371512af9d9bdd27d99b782216b6945"
  1031. },
  1032. "dist": {
  1033. "type": "zip",
  1034. "url": "https://api.github.com/repos/GrahamCampbell/Result-Type/zipball/3ba905c11371512af9d9bdd27d99b782216b6945",
  1035. "reference": "3ba905c11371512af9d9bdd27d99b782216b6945",
  1036. "shasum": ""
  1037. },
  1038. "require": {
  1039. "php": "^7.2.5 || ^8.0",
  1040. "phpoption/phpoption": "^1.9.3"
  1041. },
  1042. "require-dev": {
  1043. "phpunit/phpunit": "^8.5.39 || ^9.6.20 || ^10.5.28"
  1044. },
  1045. "type": "library",
  1046. "autoload": {
  1047. "psr-4": {
  1048. "GrahamCampbell\\ResultType\\": "src/"
  1049. }
  1050. },
  1051. "notification-url": "https://packagist.org/downloads/",
  1052. "license": [
  1053. "MIT"
  1054. ],
  1055. "authors": [
  1056. {
  1057. "name": "Graham Campbell",
  1058. "email": "hello@gjcampbell.co.uk",
  1059. "homepage": "https://github.com/GrahamCampbell"
  1060. }
  1061. ],
  1062. "description": "An Implementation Of The Result Type",
  1063. "keywords": [
  1064. "Graham Campbell",
  1065. "GrahamCampbell",
  1066. "Result Type",
  1067. "Result-Type",
  1068. "result"
  1069. ],
  1070. "support": {
  1071. "issues": "https://github.com/GrahamCampbell/Result-Type/issues",
  1072. "source": "https://github.com/GrahamCampbell/Result-Type/tree/v1.1.3"
  1073. },
  1074. "funding": [
  1075. {
  1076. "url": "https://github.com/GrahamCampbell",
  1077. "type": "github"
  1078. },
  1079. {
  1080. "url": "https://tidelift.com/funding/github/packagist/graham-campbell/result-type",
  1081. "type": "tidelift"
  1082. }
  1083. ],
  1084. "time": "2024-07-20T21:45:45+00:00"
  1085. },
  1086. {
  1087. "name": "guzzlehttp/guzzle",
  1088. "version": "7.9.2",
  1089. "source": {
  1090. "type": "git",
  1091. "url": "https://github.com/guzzle/guzzle.git",
  1092. "reference": "d281ed313b989f213357e3be1a179f02196ac99b"
  1093. },
  1094. "dist": {
  1095. "type": "zip",
  1096. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/d281ed313b989f213357e3be1a179f02196ac99b",
  1097. "reference": "d281ed313b989f213357e3be1a179f02196ac99b",
  1098. "shasum": ""
  1099. },
  1100. "require": {
  1101. "ext-json": "*",
  1102. "guzzlehttp/promises": "^1.5.3 || ^2.0.3",
  1103. "guzzlehttp/psr7": "^2.7.0",
  1104. "php": "^7.2.5 || ^8.0",
  1105. "psr/http-client": "^1.0",
  1106. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  1107. },
  1108. "provide": {
  1109. "psr/http-client-implementation": "1.0"
  1110. },
  1111. "require-dev": {
  1112. "bamarni/composer-bin-plugin": "^1.8.2",
  1113. "ext-curl": "*",
  1114. "guzzle/client-integration-tests": "3.0.2",
  1115. "php-http/message-factory": "^1.1",
  1116. "phpunit/phpunit": "^8.5.39 || ^9.6.20",
  1117. "psr/log": "^1.1 || ^2.0 || ^3.0"
  1118. },
  1119. "suggest": {
  1120. "ext-curl": "Required for CURL handler support",
  1121. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  1122. "psr/log": "Required for using the Log middleware"
  1123. },
  1124. "type": "library",
  1125. "extra": {
  1126. "bamarni-bin": {
  1127. "bin-links": true,
  1128. "forward-command": false
  1129. }
  1130. },
  1131. "autoload": {
  1132. "files": [
  1133. "src/functions_include.php"
  1134. ],
  1135. "psr-4": {
  1136. "GuzzleHttp\\": "src/"
  1137. }
  1138. },
  1139. "notification-url": "https://packagist.org/downloads/",
  1140. "license": [
  1141. "MIT"
  1142. ],
  1143. "authors": [
  1144. {
  1145. "name": "Graham Campbell",
  1146. "email": "hello@gjcampbell.co.uk",
  1147. "homepage": "https://github.com/GrahamCampbell"
  1148. },
  1149. {
  1150. "name": "Michael Dowling",
  1151. "email": "mtdowling@gmail.com",
  1152. "homepage": "https://github.com/mtdowling"
  1153. },
  1154. {
  1155. "name": "Jeremy Lindblom",
  1156. "email": "jeremeamia@gmail.com",
  1157. "homepage": "https://github.com/jeremeamia"
  1158. },
  1159. {
  1160. "name": "George Mponos",
  1161. "email": "gmponos@gmail.com",
  1162. "homepage": "https://github.com/gmponos"
  1163. },
  1164. {
  1165. "name": "Tobias Nyholm",
  1166. "email": "tobias.nyholm@gmail.com",
  1167. "homepage": "https://github.com/Nyholm"
  1168. },
  1169. {
  1170. "name": "Márk Sági-Kazár",
  1171. "email": "mark.sagikazar@gmail.com",
  1172. "homepage": "https://github.com/sagikazarmark"
  1173. },
  1174. {
  1175. "name": "Tobias Schultze",
  1176. "email": "webmaster@tubo-world.de",
  1177. "homepage": "https://github.com/Tobion"
  1178. }
  1179. ],
  1180. "description": "Guzzle is a PHP HTTP client library",
  1181. "keywords": [
  1182. "client",
  1183. "curl",
  1184. "framework",
  1185. "http",
  1186. "http client",
  1187. "psr-18",
  1188. "psr-7",
  1189. "rest",
  1190. "web service"
  1191. ],
  1192. "support": {
  1193. "issues": "https://github.com/guzzle/guzzle/issues",
  1194. "source": "https://github.com/guzzle/guzzle/tree/7.9.2"
  1195. },
  1196. "funding": [
  1197. {
  1198. "url": "https://github.com/GrahamCampbell",
  1199. "type": "github"
  1200. },
  1201. {
  1202. "url": "https://github.com/Nyholm",
  1203. "type": "github"
  1204. },
  1205. {
  1206. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
  1207. "type": "tidelift"
  1208. }
  1209. ],
  1210. "time": "2024-07-24T11:22:20+00:00"
  1211. },
  1212. {
  1213. "name": "guzzlehttp/promises",
  1214. "version": "2.0.4",
  1215. "source": {
  1216. "type": "git",
  1217. "url": "https://github.com/guzzle/promises.git",
  1218. "reference": "f9c436286ab2892c7db7be8c8da4ef61ccf7b455"
  1219. },
  1220. "dist": {
  1221. "type": "zip",
  1222. "url": "https://api.github.com/repos/guzzle/promises/zipball/f9c436286ab2892c7db7be8c8da4ef61ccf7b455",
  1223. "reference": "f9c436286ab2892c7db7be8c8da4ef61ccf7b455",
  1224. "shasum": ""
  1225. },
  1226. "require": {
  1227. "php": "^7.2.5 || ^8.0"
  1228. },
  1229. "require-dev": {
  1230. "bamarni/composer-bin-plugin": "^1.8.2",
  1231. "phpunit/phpunit": "^8.5.39 || ^9.6.20"
  1232. },
  1233. "type": "library",
  1234. "extra": {
  1235. "bamarni-bin": {
  1236. "bin-links": true,
  1237. "forward-command": false
  1238. }
  1239. },
  1240. "autoload": {
  1241. "psr-4": {
  1242. "GuzzleHttp\\Promise\\": "src/"
  1243. }
  1244. },
  1245. "notification-url": "https://packagist.org/downloads/",
  1246. "license": [
  1247. "MIT"
  1248. ],
  1249. "authors": [
  1250. {
  1251. "name": "Graham Campbell",
  1252. "email": "hello@gjcampbell.co.uk",
  1253. "homepage": "https://github.com/GrahamCampbell"
  1254. },
  1255. {
  1256. "name": "Michael Dowling",
  1257. "email": "mtdowling@gmail.com",
  1258. "homepage": "https://github.com/mtdowling"
  1259. },
  1260. {
  1261. "name": "Tobias Nyholm",
  1262. "email": "tobias.nyholm@gmail.com",
  1263. "homepage": "https://github.com/Nyholm"
  1264. },
  1265. {
  1266. "name": "Tobias Schultze",
  1267. "email": "webmaster@tubo-world.de",
  1268. "homepage": "https://github.com/Tobion"
  1269. }
  1270. ],
  1271. "description": "Guzzle promises library",
  1272. "keywords": [
  1273. "promise"
  1274. ],
  1275. "support": {
  1276. "issues": "https://github.com/guzzle/promises/issues",
  1277. "source": "https://github.com/guzzle/promises/tree/2.0.4"
  1278. },
  1279. "funding": [
  1280. {
  1281. "url": "https://github.com/GrahamCampbell",
  1282. "type": "github"
  1283. },
  1284. {
  1285. "url": "https://github.com/Nyholm",
  1286. "type": "github"
  1287. },
  1288. {
  1289. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  1290. "type": "tidelift"
  1291. }
  1292. ],
  1293. "time": "2024-10-17T10:06:22+00:00"
  1294. },
  1295. {
  1296. "name": "guzzlehttp/psr7",
  1297. "version": "2.7.0",
  1298. "source": {
  1299. "type": "git",
  1300. "url": "https://github.com/guzzle/psr7.git",
  1301. "reference": "a70f5c95fb43bc83f07c9c948baa0dc1829bf201"
  1302. },
  1303. "dist": {
  1304. "type": "zip",
  1305. "url": "https://api.github.com/repos/guzzle/psr7/zipball/a70f5c95fb43bc83f07c9c948baa0dc1829bf201",
  1306. "reference": "a70f5c95fb43bc83f07c9c948baa0dc1829bf201",
  1307. "shasum": ""
  1308. },
  1309. "require": {
  1310. "php": "^7.2.5 || ^8.0",
  1311. "psr/http-factory": "^1.0",
  1312. "psr/http-message": "^1.1 || ^2.0",
  1313. "ralouphie/getallheaders": "^3.0"
  1314. },
  1315. "provide": {
  1316. "psr/http-factory-implementation": "1.0",
  1317. "psr/http-message-implementation": "1.0"
  1318. },
  1319. "require-dev": {
  1320. "bamarni/composer-bin-plugin": "^1.8.2",
  1321. "http-interop/http-factory-tests": "0.9.0",
  1322. "phpunit/phpunit": "^8.5.39 || ^9.6.20"
  1323. },
  1324. "suggest": {
  1325. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  1326. },
  1327. "type": "library",
  1328. "extra": {
  1329. "bamarni-bin": {
  1330. "bin-links": true,
  1331. "forward-command": false
  1332. }
  1333. },
  1334. "autoload": {
  1335. "psr-4": {
  1336. "GuzzleHttp\\Psr7\\": "src/"
  1337. }
  1338. },
  1339. "notification-url": "https://packagist.org/downloads/",
  1340. "license": [
  1341. "MIT"
  1342. ],
  1343. "authors": [
  1344. {
  1345. "name": "Graham Campbell",
  1346. "email": "hello@gjcampbell.co.uk",
  1347. "homepage": "https://github.com/GrahamCampbell"
  1348. },
  1349. {
  1350. "name": "Michael Dowling",
  1351. "email": "mtdowling@gmail.com",
  1352. "homepage": "https://github.com/mtdowling"
  1353. },
  1354. {
  1355. "name": "George Mponos",
  1356. "email": "gmponos@gmail.com",
  1357. "homepage": "https://github.com/gmponos"
  1358. },
  1359. {
  1360. "name": "Tobias Nyholm",
  1361. "email": "tobias.nyholm@gmail.com",
  1362. "homepage": "https://github.com/Nyholm"
  1363. },
  1364. {
  1365. "name": "Márk Sági-Kazár",
  1366. "email": "mark.sagikazar@gmail.com",
  1367. "homepage": "https://github.com/sagikazarmark"
  1368. },
  1369. {
  1370. "name": "Tobias Schultze",
  1371. "email": "webmaster@tubo-world.de",
  1372. "homepage": "https://github.com/Tobion"
  1373. },
  1374. {
  1375. "name": "Márk Sági-Kazár",
  1376. "email": "mark.sagikazar@gmail.com",
  1377. "homepage": "https://sagikazarmark.hu"
  1378. }
  1379. ],
  1380. "description": "PSR-7 message implementation that also provides common utility methods",
  1381. "keywords": [
  1382. "http",
  1383. "message",
  1384. "psr-7",
  1385. "request",
  1386. "response",
  1387. "stream",
  1388. "uri",
  1389. "url"
  1390. ],
  1391. "support": {
  1392. "issues": "https://github.com/guzzle/psr7/issues",
  1393. "source": "https://github.com/guzzle/psr7/tree/2.7.0"
  1394. },
  1395. "funding": [
  1396. {
  1397. "url": "https://github.com/GrahamCampbell",
  1398. "type": "github"
  1399. },
  1400. {
  1401. "url": "https://github.com/Nyholm",
  1402. "type": "github"
  1403. },
  1404. {
  1405. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  1406. "type": "tidelift"
  1407. }
  1408. ],
  1409. "time": "2024-07-18T11:15:46+00:00"
  1410. },
  1411. {
  1412. "name": "guzzlehttp/uri-template",
  1413. "version": "v1.0.3",
  1414. "source": {
  1415. "type": "git",
  1416. "url": "https://github.com/guzzle/uri-template.git",
  1417. "reference": "ecea8feef63bd4fef1f037ecb288386999ecc11c"
  1418. },
  1419. "dist": {
  1420. "type": "zip",
  1421. "url": "https://api.github.com/repos/guzzle/uri-template/zipball/ecea8feef63bd4fef1f037ecb288386999ecc11c",
  1422. "reference": "ecea8feef63bd4fef1f037ecb288386999ecc11c",
  1423. "shasum": ""
  1424. },
  1425. "require": {
  1426. "php": "^7.2.5 || ^8.0",
  1427. "symfony/polyfill-php80": "^1.24"
  1428. },
  1429. "require-dev": {
  1430. "bamarni/composer-bin-plugin": "^1.8.2",
  1431. "phpunit/phpunit": "^8.5.36 || ^9.6.15",
  1432. "uri-template/tests": "1.0.0"
  1433. },
  1434. "type": "library",
  1435. "extra": {
  1436. "bamarni-bin": {
  1437. "bin-links": true,
  1438. "forward-command": false
  1439. }
  1440. },
  1441. "autoload": {
  1442. "psr-4": {
  1443. "GuzzleHttp\\UriTemplate\\": "src"
  1444. }
  1445. },
  1446. "notification-url": "https://packagist.org/downloads/",
  1447. "license": [
  1448. "MIT"
  1449. ],
  1450. "authors": [
  1451. {
  1452. "name": "Graham Campbell",
  1453. "email": "hello@gjcampbell.co.uk",
  1454. "homepage": "https://github.com/GrahamCampbell"
  1455. },
  1456. {
  1457. "name": "Michael Dowling",
  1458. "email": "mtdowling@gmail.com",
  1459. "homepage": "https://github.com/mtdowling"
  1460. },
  1461. {
  1462. "name": "George Mponos",
  1463. "email": "gmponos@gmail.com",
  1464. "homepage": "https://github.com/gmponos"
  1465. },
  1466. {
  1467. "name": "Tobias Nyholm",
  1468. "email": "tobias.nyholm@gmail.com",
  1469. "homepage": "https://github.com/Nyholm"
  1470. }
  1471. ],
  1472. "description": "A polyfill class for uri_template of PHP",
  1473. "keywords": [
  1474. "guzzlehttp",
  1475. "uri-template"
  1476. ],
  1477. "support": {
  1478. "issues": "https://github.com/guzzle/uri-template/issues",
  1479. "source": "https://github.com/guzzle/uri-template/tree/v1.0.3"
  1480. },
  1481. "funding": [
  1482. {
  1483. "url": "https://github.com/GrahamCampbell",
  1484. "type": "github"
  1485. },
  1486. {
  1487. "url": "https://github.com/Nyholm",
  1488. "type": "github"
  1489. },
  1490. {
  1491. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/uri-template",
  1492. "type": "tidelift"
  1493. }
  1494. ],
  1495. "time": "2023-12-03T19:50:20+00:00"
  1496. },
  1497. {
  1498. "name": "huifurepo/dg-php-sdk",
  1499. "version": "2.0.14",
  1500. "source": {
  1501. "type": "git",
  1502. "url": "https://github.com/huifurepo/bspay-php-sdk.git",
  1503. "reference": "b64924cbd9dfd7490164eff926bf651e48f8ae2c"
  1504. },
  1505. "dist": {
  1506. "type": "zip",
  1507. "url": "https://api.github.com/repos/huifurepo/bspay-php-sdk/zipball/b64924cbd9dfd7490164eff926bf651e48f8ae2c",
  1508. "reference": "b64924cbd9dfd7490164eff926bf651e48f8ae2c",
  1509. "shasum": ""
  1510. },
  1511. "type": "library",
  1512. "notification-url": "https://packagist.org/downloads/",
  1513. "license": [
  1514. "MIT"
  1515. ],
  1516. "description": "汇付天下斗拱SDK-PHP版",
  1517. "support": {
  1518. "issues": "https://github.com/huifurepo/bspay-php-sdk/issues",
  1519. "source": "https://github.com/huifurepo/bspay-php-sdk/tree/2.0.14"
  1520. },
  1521. "time": "2024-11-07T10:27:56+00:00"
  1522. },
  1523. {
  1524. "name": "iconify/json",
  1525. "version": "2.2.276",
  1526. "source": {
  1527. "type": "git",
  1528. "url": "https://github.com/iconify/icon-sets.git",
  1529. "reference": "aea1e648b6d28c7f95c3afb0eaf1338cffb0d980"
  1530. },
  1531. "dist": {
  1532. "type": "zip",
  1533. "url": "https://api.github.com/repos/iconify/icon-sets/zipball/aea1e648b6d28c7f95c3afb0eaf1338cffb0d980",
  1534. "reference": "aea1e648b6d28c7f95c3afb0eaf1338cffb0d980",
  1535. "shasum": ""
  1536. },
  1537. "type": "library",
  1538. "autoload": {
  1539. "psr-4": {
  1540. "Iconify\\IconsJSON\\": "lib"
  1541. }
  1542. },
  1543. "notification-url": "https://packagist.org/downloads/",
  1544. "license": [
  1545. "MIT"
  1546. ],
  1547. "description": "Iconify icons collection in JSON format",
  1548. "homepage": "https://iconify.design/icon-sets/",
  1549. "support": {
  1550. "issues": "https://github.com/iconify/icon-sets/issues",
  1551. "source": "https://github.com/iconify/icon-sets/tree/2.2.276"
  1552. },
  1553. "time": "2024-11-25T06:57:03+00:00"
  1554. },
  1555. {
  1556. "name": "iwzh/owl-scheduling",
  1557. "version": "1.0.2",
  1558. "source": {
  1559. "type": "git",
  1560. "url": "https://gitee.com/wzhec/owl-scheduling",
  1561. "reference": "61478147d286fddb2e0634c4d11acda862db851d"
  1562. },
  1563. "require": {
  1564. "php": ">=8.0",
  1565. "slowlyo/owl-admin": "*"
  1566. },
  1567. "type": "library",
  1568. "extra": {
  1569. "owl-admin": "Iwzh\\owlScheduling\\OwlSchedulingServiceProvider",
  1570. "laravel": {
  1571. "providers": [
  1572. "Iwzh\\owlScheduling\\OwlSchedulingServiceProvider"
  1573. ]
  1574. }
  1575. },
  1576. "autoload": {
  1577. "psr-4": {
  1578. "Iwzh\\owlScheduling\\": "src/"
  1579. }
  1580. },
  1581. "notification-url": "https://packagist.org/downloads/",
  1582. "license": [
  1583. "MIT"
  1584. ],
  1585. "authors": [
  1586. {
  1587. "name": "wzh",
  1588. "email": "wzhec@foxmail.com"
  1589. }
  1590. ],
  1591. "description": "OwlAdmin扩展:方便管理 laravel 的定时任务",
  1592. "homepage": "https://gitee.com/wzhec/owl-scheduling",
  1593. "keywords": [
  1594. "extension",
  1595. "owl-admin"
  1596. ],
  1597. "time": "2023-05-12T02:57:41+00:00"
  1598. },
  1599. {
  1600. "name": "knuckleswtf/scribe",
  1601. "version": "4.38.0",
  1602. "source": {
  1603. "type": "git",
  1604. "url": "https://github.com/knuckleswtf/scribe.git",
  1605. "reference": "da667aafb6804b4b599ac6506bb178bfa5434802"
  1606. },
  1607. "dist": {
  1608. "type": "zip",
  1609. "url": "https://api.github.com/repos/knuckleswtf/scribe/zipball/da667aafb6804b4b599ac6506bb178bfa5434802",
  1610. "reference": "da667aafb6804b4b599ac6506bb178bfa5434802",
  1611. "shasum": ""
  1612. },
  1613. "require": {
  1614. "erusev/parsedown": "1.7.4",
  1615. "ext-fileinfo": "*",
  1616. "ext-json": "*",
  1617. "ext-pdo": "*",
  1618. "fakerphp/faker": "^1.9.1",
  1619. "illuminate/console": "^8.0|^9.0|^10.0|^11.0",
  1620. "illuminate/routing": "^8.0|^9.0|^10.0|^11.0",
  1621. "illuminate/support": "^8.0|^9.0|^10.0|^11.0",
  1622. "league/flysystem": "^1.1.4|^2.1.1|^3.0",
  1623. "mpociot/reflection-docblock": "^1.0.1",
  1624. "nikic/php-parser": "^5.0",
  1625. "nunomaduro/collision": "^5.10|^6.0|^7.0|^8.0",
  1626. "php": ">=8.0",
  1627. "ramsey/uuid": "^4.2.2",
  1628. "shalvah/clara": "^3.1.0",
  1629. "shalvah/upgrader": ">=0.6.0",
  1630. "spatie/data-transfer-object": "^2.6|^3.0",
  1631. "symfony/var-exporter": "^5.4|^6.0|^7.0",
  1632. "symfony/yaml": "^5.4|^6.0|^7.0"
  1633. },
  1634. "replace": {
  1635. "mpociot/laravel-apidoc-generator": "*"
  1636. },
  1637. "require-dev": {
  1638. "brianium/paratest": "^6.0",
  1639. "dms/phpunit-arraysubset-asserts": "^0.4",
  1640. "laravel/legacy-factories": "^1.3.0",
  1641. "laravel/lumen-framework": "^8.0|^9.0|^10.0",
  1642. "league/fractal": "^0.20",
  1643. "nikic/fast-route": "^1.3",
  1644. "orchestra/testbench": "^6.0|^7.0|^8.0",
  1645. "pestphp/pest": "^1.21",
  1646. "phpstan/phpstan": "^1.0",
  1647. "phpunit/phpunit": "^9.0|^10.0",
  1648. "symfony/css-selector": "^5.4|^6.0",
  1649. "symfony/dom-crawler": "^5.4|^6.0"
  1650. },
  1651. "type": "library",
  1652. "extra": {
  1653. "laravel": {
  1654. "providers": [
  1655. "Knuckles\\Scribe\\ScribeServiceProvider"
  1656. ]
  1657. }
  1658. },
  1659. "autoload": {
  1660. "psr-4": {
  1661. "Knuckles\\Camel\\": "camel/",
  1662. "Knuckles\\Scribe\\": "src/"
  1663. }
  1664. },
  1665. "notification-url": "https://packagist.org/downloads/",
  1666. "license": [
  1667. "MIT"
  1668. ],
  1669. "authors": [
  1670. {
  1671. "name": "Shalvah"
  1672. }
  1673. ],
  1674. "description": "Generate API documentation for humans from your Laravel codebase.✍",
  1675. "homepage": "http://github.com/knuckleswtf/scribe",
  1676. "keywords": [
  1677. "api",
  1678. "dingo",
  1679. "documentation",
  1680. "laravel"
  1681. ],
  1682. "support": {
  1683. "issues": "https://github.com/knuckleswtf/scribe/issues",
  1684. "source": "https://github.com/knuckleswtf/scribe/tree/4.38.0"
  1685. },
  1686. "funding": [
  1687. {
  1688. "url": "https://patreon.com/shalvah",
  1689. "type": "patreon"
  1690. }
  1691. ],
  1692. "time": "2024-10-18T20:16:40+00:00"
  1693. },
  1694. {
  1695. "name": "laminas/laminas-diactoros",
  1696. "version": "3.5.0",
  1697. "source": {
  1698. "type": "git",
  1699. "url": "https://github.com/laminas/laminas-diactoros.git",
  1700. "reference": "143a16306602ce56b8b092a7914fef03c37f9ed2"
  1701. },
  1702. "dist": {
  1703. "type": "zip",
  1704. "url": "https://api.github.com/repos/laminas/laminas-diactoros/zipball/143a16306602ce56b8b092a7914fef03c37f9ed2",
  1705. "reference": "143a16306602ce56b8b092a7914fef03c37f9ed2",
  1706. "shasum": ""
  1707. },
  1708. "require": {
  1709. "php": "~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0",
  1710. "psr/http-factory": "^1.1",
  1711. "psr/http-message": "^1.1 || ^2.0"
  1712. },
  1713. "conflict": {
  1714. "amphp/amp": "<2.6.4"
  1715. },
  1716. "provide": {
  1717. "psr/http-factory-implementation": "^1.0",
  1718. "psr/http-message-implementation": "^1.1 || ^2.0"
  1719. },
  1720. "require-dev": {
  1721. "ext-curl": "*",
  1722. "ext-dom": "*",
  1723. "ext-gd": "*",
  1724. "ext-libxml": "*",
  1725. "http-interop/http-factory-tests": "^2.2.0",
  1726. "laminas/laminas-coding-standard": "~2.5.0",
  1727. "php-http/psr7-integration-tests": "^1.4.0",
  1728. "phpunit/phpunit": "^10.5.36",
  1729. "psalm/plugin-phpunit": "^0.19.0",
  1730. "vimeo/psalm": "^5.26.1"
  1731. },
  1732. "type": "library",
  1733. "extra": {
  1734. "laminas": {
  1735. "config-provider": "Laminas\\Diactoros\\ConfigProvider",
  1736. "module": "Laminas\\Diactoros"
  1737. }
  1738. },
  1739. "autoload": {
  1740. "files": [
  1741. "src/functions/create_uploaded_file.php",
  1742. "src/functions/marshal_headers_from_sapi.php",
  1743. "src/functions/marshal_method_from_sapi.php",
  1744. "src/functions/marshal_protocol_version_from_sapi.php",
  1745. "src/functions/normalize_server.php",
  1746. "src/functions/normalize_uploaded_files.php",
  1747. "src/functions/parse_cookie_header.php"
  1748. ],
  1749. "psr-4": {
  1750. "Laminas\\Diactoros\\": "src/"
  1751. }
  1752. },
  1753. "notification-url": "https://packagist.org/downloads/",
  1754. "license": [
  1755. "BSD-3-Clause"
  1756. ],
  1757. "description": "PSR HTTP Message implementations",
  1758. "homepage": "https://laminas.dev",
  1759. "keywords": [
  1760. "http",
  1761. "laminas",
  1762. "psr",
  1763. "psr-17",
  1764. "psr-7"
  1765. ],
  1766. "support": {
  1767. "chat": "https://laminas.dev/chat",
  1768. "docs": "https://docs.laminas.dev/laminas-diactoros/",
  1769. "forum": "https://discourse.laminas.dev",
  1770. "issues": "https://github.com/laminas/laminas-diactoros/issues",
  1771. "rss": "https://github.com/laminas/laminas-diactoros/releases.atom",
  1772. "source": "https://github.com/laminas/laminas-diactoros"
  1773. },
  1774. "funding": [
  1775. {
  1776. "url": "https://funding.communitybridge.org/projects/laminas-project",
  1777. "type": "community_bridge"
  1778. }
  1779. ],
  1780. "time": "2024-10-14T11:59:49+00:00"
  1781. },
  1782. {
  1783. "name": "laravel/framework",
  1784. "version": "v11.30.0",
  1785. "source": {
  1786. "type": "git",
  1787. "url": "https://github.com/laravel/framework.git",
  1788. "reference": "dff716442d9c229d716be82ccc9a7de52eb97193"
  1789. },
  1790. "dist": {
  1791. "type": "zip",
  1792. "url": "https://api.github.com/repos/laravel/framework/zipball/dff716442d9c229d716be82ccc9a7de52eb97193",
  1793. "reference": "dff716442d9c229d716be82ccc9a7de52eb97193",
  1794. "shasum": ""
  1795. },
  1796. "require": {
  1797. "brick/math": "^0.9.3|^0.10.2|^0.11|^0.12",
  1798. "composer-runtime-api": "^2.2",
  1799. "doctrine/inflector": "^2.0.5",
  1800. "dragonmantank/cron-expression": "^3.3.2",
  1801. "egulias/email-validator": "^3.2.1|^4.0",
  1802. "ext-ctype": "*",
  1803. "ext-filter": "*",
  1804. "ext-hash": "*",
  1805. "ext-mbstring": "*",
  1806. "ext-openssl": "*",
  1807. "ext-session": "*",
  1808. "ext-tokenizer": "*",
  1809. "fruitcake/php-cors": "^1.3",
  1810. "guzzlehttp/guzzle": "^7.8",
  1811. "guzzlehttp/uri-template": "^1.0",
  1812. "laravel/prompts": "^0.1.18|^0.2.0|^0.3.0",
  1813. "laravel/serializable-closure": "^1.3",
  1814. "league/commonmark": "^2.2.1",
  1815. "league/flysystem": "^3.8.0",
  1816. "monolog/monolog": "^3.0",
  1817. "nesbot/carbon": "^2.72.2|^3.0",
  1818. "nunomaduro/termwind": "^2.0",
  1819. "php": "^8.2",
  1820. "psr/container": "^1.1.1|^2.0.1",
  1821. "psr/log": "^1.0|^2.0|^3.0",
  1822. "psr/simple-cache": "^1.0|^2.0|^3.0",
  1823. "ramsey/uuid": "^4.7",
  1824. "symfony/console": "^7.0",
  1825. "symfony/error-handler": "^7.0",
  1826. "symfony/finder": "^7.0",
  1827. "symfony/http-foundation": "^7.0",
  1828. "symfony/http-kernel": "^7.0",
  1829. "symfony/mailer": "^7.0",
  1830. "symfony/mime": "^7.0",
  1831. "symfony/polyfill-php83": "^1.28",
  1832. "symfony/process": "^7.0",
  1833. "symfony/routing": "^7.0",
  1834. "symfony/uid": "^7.0",
  1835. "symfony/var-dumper": "^7.0",
  1836. "tijsverkoyen/css-to-inline-styles": "^2.2.5",
  1837. "vlucas/phpdotenv": "^5.4.1",
  1838. "voku/portable-ascii": "^2.0"
  1839. },
  1840. "conflict": {
  1841. "mockery/mockery": "1.6.8",
  1842. "tightenco/collect": "<5.5.33"
  1843. },
  1844. "provide": {
  1845. "psr/container-implementation": "1.1|2.0",
  1846. "psr/log-implementation": "1.0|2.0|3.0",
  1847. "psr/simple-cache-implementation": "1.0|2.0|3.0"
  1848. },
  1849. "replace": {
  1850. "illuminate/auth": "self.version",
  1851. "illuminate/broadcasting": "self.version",
  1852. "illuminate/bus": "self.version",
  1853. "illuminate/cache": "self.version",
  1854. "illuminate/collections": "self.version",
  1855. "illuminate/concurrency": "self.version",
  1856. "illuminate/conditionable": "self.version",
  1857. "illuminate/config": "self.version",
  1858. "illuminate/console": "self.version",
  1859. "illuminate/container": "self.version",
  1860. "illuminate/contracts": "self.version",
  1861. "illuminate/cookie": "self.version",
  1862. "illuminate/database": "self.version",
  1863. "illuminate/encryption": "self.version",
  1864. "illuminate/events": "self.version",
  1865. "illuminate/filesystem": "self.version",
  1866. "illuminate/hashing": "self.version",
  1867. "illuminate/http": "self.version",
  1868. "illuminate/log": "self.version",
  1869. "illuminate/macroable": "self.version",
  1870. "illuminate/mail": "self.version",
  1871. "illuminate/notifications": "self.version",
  1872. "illuminate/pagination": "self.version",
  1873. "illuminate/pipeline": "self.version",
  1874. "illuminate/process": "self.version",
  1875. "illuminate/queue": "self.version",
  1876. "illuminate/redis": "self.version",
  1877. "illuminate/routing": "self.version",
  1878. "illuminate/session": "self.version",
  1879. "illuminate/support": "self.version",
  1880. "illuminate/testing": "self.version",
  1881. "illuminate/translation": "self.version",
  1882. "illuminate/validation": "self.version",
  1883. "illuminate/view": "self.version",
  1884. "spatie/once": "*"
  1885. },
  1886. "require-dev": {
  1887. "ably/ably-php": "^1.0",
  1888. "aws/aws-sdk-php": "^3.235.5",
  1889. "ext-gmp": "*",
  1890. "fakerphp/faker": "^1.23",
  1891. "league/flysystem-aws-s3-v3": "^3.0",
  1892. "league/flysystem-ftp": "^3.0",
  1893. "league/flysystem-path-prefixing": "^3.3",
  1894. "league/flysystem-read-only": "^3.3",
  1895. "league/flysystem-sftp-v3": "^3.0",
  1896. "mockery/mockery": "^1.6",
  1897. "nyholm/psr7": "^1.2",
  1898. "orchestra/testbench-core": "^9.5",
  1899. "pda/pheanstalk": "^5.0",
  1900. "phpstan/phpstan": "^1.11.5",
  1901. "phpunit/phpunit": "^10.5|^11.0",
  1902. "predis/predis": "^2.0.2",
  1903. "resend/resend-php": "^0.10.0",
  1904. "symfony/cache": "^7.0",
  1905. "symfony/http-client": "^7.0",
  1906. "symfony/psr-http-message-bridge": "^7.0"
  1907. },
  1908. "suggest": {
  1909. "ably/ably-php": "Required to use the Ably broadcast driver (^1.0).",
  1910. "aws/aws-sdk-php": "Required to use the SQS queue driver, DynamoDb failed job storage, and SES mail driver (^3.235.5).",
  1911. "brianium/paratest": "Required to run tests in parallel (^7.0|^8.0).",
  1912. "ext-apcu": "Required to use the APC cache driver.",
  1913. "ext-fileinfo": "Required to use the Filesystem class.",
  1914. "ext-ftp": "Required to use the Flysystem FTP driver.",
  1915. "ext-gd": "Required to use Illuminate\\Http\\Testing\\FileFactory::image().",
  1916. "ext-memcached": "Required to use the memcache cache driver.",
  1917. "ext-pcntl": "Required to use all features of the queue worker and console signal trapping.",
  1918. "ext-pdo": "Required to use all database features.",
  1919. "ext-posix": "Required to use all features of the queue worker.",
  1920. "ext-redis": "Required to use the Redis cache and queue drivers (^4.0|^5.0|^6.0).",
  1921. "fakerphp/faker": "Required to use the eloquent factory builder (^1.9.1).",
  1922. "filp/whoops": "Required for friendly error pages in development (^2.14.3).",
  1923. "laravel/tinker": "Required to use the tinker console command (^2.0).",
  1924. "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (^3.0).",
  1925. "league/flysystem-ftp": "Required to use the Flysystem FTP driver (^3.0).",
  1926. "league/flysystem-path-prefixing": "Required to use the scoped driver (^3.3).",
  1927. "league/flysystem-read-only": "Required to use read-only disks (^3.3)",
  1928. "league/flysystem-sftp-v3": "Required to use the Flysystem SFTP driver (^3.0).",
  1929. "mockery/mockery": "Required to use mocking (^1.6).",
  1930. "nyholm/psr7": "Required to use PSR-7 bridging features (^1.2).",
  1931. "pda/pheanstalk": "Required to use the beanstalk queue driver (^5.0).",
  1932. "phpunit/phpunit": "Required to use assertions and run tests (^10.5|^11.0).",
  1933. "predis/predis": "Required to use the predis connector (^2.0.2).",
  1934. "psr/http-message": "Required to allow Storage::put to accept a StreamInterface (^1.0).",
  1935. "pusher/pusher-php-server": "Required to use the Pusher broadcast driver (^6.0|^7.0).",
  1936. "resend/resend-php": "Required to enable support for the Resend mail transport (^0.10.0).",
  1937. "symfony/cache": "Required to PSR-6 cache bridge (^7.0).",
  1938. "symfony/filesystem": "Required to enable support for relative symbolic links (^7.0).",
  1939. "symfony/http-client": "Required to enable support for the Symfony API mail transports (^7.0).",
  1940. "symfony/mailgun-mailer": "Required to enable support for the Mailgun mail transport (^7.0).",
  1941. "symfony/postmark-mailer": "Required to enable support for the Postmark mail transport (^7.0).",
  1942. "symfony/psr-http-message-bridge": "Required to use PSR-7 bridging features (^7.0)."
  1943. },
  1944. "type": "library",
  1945. "extra": {
  1946. "branch-alias": {
  1947. "dev-master": "11.x-dev"
  1948. }
  1949. },
  1950. "autoload": {
  1951. "files": [
  1952. "src/Illuminate/Collections/helpers.php",
  1953. "src/Illuminate/Events/functions.php",
  1954. "src/Illuminate/Filesystem/functions.php",
  1955. "src/Illuminate/Foundation/helpers.php",
  1956. "src/Illuminate/Log/functions.php",
  1957. "src/Illuminate/Support/functions.php",
  1958. "src/Illuminate/Support/helpers.php"
  1959. ],
  1960. "psr-4": {
  1961. "Illuminate\\": "src/Illuminate/",
  1962. "Illuminate\\Support\\": [
  1963. "src/Illuminate/Macroable/",
  1964. "src/Illuminate/Collections/",
  1965. "src/Illuminate/Conditionable/"
  1966. ]
  1967. }
  1968. },
  1969. "notification-url": "https://packagist.org/downloads/",
  1970. "license": [
  1971. "MIT"
  1972. ],
  1973. "authors": [
  1974. {
  1975. "name": "Taylor Otwell",
  1976. "email": "taylor@laravel.com"
  1977. }
  1978. ],
  1979. "description": "The Laravel Framework.",
  1980. "homepage": "https://laravel.com",
  1981. "keywords": [
  1982. "framework",
  1983. "laravel"
  1984. ],
  1985. "support": {
  1986. "issues": "https://github.com/laravel/framework/issues",
  1987. "source": "https://github.com/laravel/framework"
  1988. },
  1989. "time": "2024-10-30T15:00:34+00:00"
  1990. },
  1991. {
  1992. "name": "laravel/octane",
  1993. "version": "v2.6.0",
  1994. "source": {
  1995. "type": "git",
  1996. "url": "https://github.com/laravel/octane.git",
  1997. "reference": "b8b11ef25600baa835d364e724f2e948dc1eb88b"
  1998. },
  1999. "dist": {
  2000. "type": "zip",
  2001. "url": "https://api.github.com/repos/laravel/octane/zipball/b8b11ef25600baa835d364e724f2e948dc1eb88b",
  2002. "reference": "b8b11ef25600baa835d364e724f2e948dc1eb88b",
  2003. "shasum": ""
  2004. },
  2005. "require": {
  2006. "laminas/laminas-diactoros": "^3.0",
  2007. "laravel/framework": "^10.10.1|^11.0",
  2008. "laravel/prompts": "^0.1.24|^0.2.0|^0.3.0",
  2009. "laravel/serializable-closure": "^1.3|^2.0",
  2010. "nesbot/carbon": "^2.66.0|^3.0",
  2011. "php": "^8.1.0",
  2012. "symfony/console": "^6.0|^7.0",
  2013. "symfony/psr-http-message-bridge": "^2.2.0|^6.4|^7.0"
  2014. },
  2015. "conflict": {
  2016. "spiral/roadrunner": "<2023.1.0",
  2017. "spiral/roadrunner-cli": "<2.6.0",
  2018. "spiral/roadrunner-http": "<3.3.0"
  2019. },
  2020. "require-dev": {
  2021. "guzzlehttp/guzzle": "^7.6.1",
  2022. "inertiajs/inertia-laravel": "^0.6.9|^1.0",
  2023. "laravel/scout": "^10.2.1",
  2024. "laravel/socialite": "^5.6.1",
  2025. "livewire/livewire": "^2.12.3|^3.0",
  2026. "mockery/mockery": "^1.5.1",
  2027. "nunomaduro/collision": "^6.4.0|^7.5.2|^8.0",
  2028. "orchestra/testbench": "^8.21|^9.0",
  2029. "phpstan/phpstan": "^1.10.15",
  2030. "phpunit/phpunit": "^10.4",
  2031. "spiral/roadrunner-cli": "^2.6.0",
  2032. "spiral/roadrunner-http": "^3.3.0"
  2033. },
  2034. "bin": [
  2035. "bin/roadrunner-worker",
  2036. "bin/swoole-server"
  2037. ],
  2038. "type": "library",
  2039. "extra": {
  2040. "branch-alias": {
  2041. "dev-master": "2.x-dev"
  2042. },
  2043. "laravel": {
  2044. "providers": [
  2045. "Laravel\\Octane\\OctaneServiceProvider"
  2046. ],
  2047. "aliases": {
  2048. "Octane": "Laravel\\Octane\\Facades\\Octane"
  2049. }
  2050. }
  2051. },
  2052. "autoload": {
  2053. "psr-4": {
  2054. "Laravel\\Octane\\": "src"
  2055. }
  2056. },
  2057. "notification-url": "https://packagist.org/downloads/",
  2058. "license": [
  2059. "MIT"
  2060. ],
  2061. "authors": [
  2062. {
  2063. "name": "Taylor Otwell",
  2064. "email": "taylor@laravel.com"
  2065. }
  2066. ],
  2067. "description": "Supercharge your Laravel application's performance.",
  2068. "keywords": [
  2069. "frankenphp",
  2070. "laravel",
  2071. "octane",
  2072. "roadrunner",
  2073. "swoole"
  2074. ],
  2075. "support": {
  2076. "issues": "https://github.com/laravel/octane/issues",
  2077. "source": "https://github.com/laravel/octane"
  2078. },
  2079. "time": "2024-11-25T21:47:18+00:00"
  2080. },
  2081. {
  2082. "name": "laravel/prompts",
  2083. "version": "v0.3.2",
  2084. "source": {
  2085. "type": "git",
  2086. "url": "https://github.com/laravel/prompts.git",
  2087. "reference": "0e0535747c6b8d6d10adca8b68293cf4517abb0f"
  2088. },
  2089. "dist": {
  2090. "type": "zip",
  2091. "url": "https://api.github.com/repos/laravel/prompts/zipball/0e0535747c6b8d6d10adca8b68293cf4517abb0f",
  2092. "reference": "0e0535747c6b8d6d10adca8b68293cf4517abb0f",
  2093. "shasum": ""
  2094. },
  2095. "require": {
  2096. "composer-runtime-api": "^2.2",
  2097. "ext-mbstring": "*",
  2098. "php": "^8.1",
  2099. "symfony/console": "^6.2|^7.0"
  2100. },
  2101. "conflict": {
  2102. "illuminate/console": ">=10.17.0 <10.25.0",
  2103. "laravel/framework": ">=10.17.0 <10.25.0"
  2104. },
  2105. "require-dev": {
  2106. "illuminate/collections": "^10.0|^11.0",
  2107. "mockery/mockery": "^1.5",
  2108. "pestphp/pest": "^2.3|^3.4",
  2109. "phpstan/phpstan": "^1.11",
  2110. "phpstan/phpstan-mockery": "^1.1"
  2111. },
  2112. "suggest": {
  2113. "ext-pcntl": "Required for the spinner to be animated."
  2114. },
  2115. "type": "library",
  2116. "extra": {
  2117. "branch-alias": {
  2118. "dev-main": "0.3.x-dev"
  2119. }
  2120. },
  2121. "autoload": {
  2122. "files": [
  2123. "src/helpers.php"
  2124. ],
  2125. "psr-4": {
  2126. "Laravel\\Prompts\\": "src/"
  2127. }
  2128. },
  2129. "notification-url": "https://packagist.org/downloads/",
  2130. "license": [
  2131. "MIT"
  2132. ],
  2133. "description": "Add beautiful and user-friendly forms to your command-line applications.",
  2134. "support": {
  2135. "issues": "https://github.com/laravel/prompts/issues",
  2136. "source": "https://github.com/laravel/prompts/tree/v0.3.2"
  2137. },
  2138. "time": "2024-11-12T14:59:47+00:00"
  2139. },
  2140. {
  2141. "name": "laravel/sanctum",
  2142. "version": "v4.0.5",
  2143. "source": {
  2144. "type": "git",
  2145. "url": "https://github.com/laravel/sanctum.git",
  2146. "reference": "fe361b9a63407a228f884eb78d7217f680b50140"
  2147. },
  2148. "dist": {
  2149. "type": "zip",
  2150. "url": "https://api.github.com/repos/laravel/sanctum/zipball/fe361b9a63407a228f884eb78d7217f680b50140",
  2151. "reference": "fe361b9a63407a228f884eb78d7217f680b50140",
  2152. "shasum": ""
  2153. },
  2154. "require": {
  2155. "ext-json": "*",
  2156. "illuminate/console": "^11.0",
  2157. "illuminate/contracts": "^11.0",
  2158. "illuminate/database": "^11.0",
  2159. "illuminate/support": "^11.0",
  2160. "php": "^8.2",
  2161. "symfony/console": "^7.0"
  2162. },
  2163. "require-dev": {
  2164. "mockery/mockery": "^1.6",
  2165. "orchestra/testbench": "^9.0",
  2166. "phpstan/phpstan": "^1.10",
  2167. "phpunit/phpunit": "^10.5"
  2168. },
  2169. "type": "library",
  2170. "extra": {
  2171. "laravel": {
  2172. "providers": [
  2173. "Laravel\\Sanctum\\SanctumServiceProvider"
  2174. ]
  2175. }
  2176. },
  2177. "autoload": {
  2178. "psr-4": {
  2179. "Laravel\\Sanctum\\": "src/"
  2180. }
  2181. },
  2182. "notification-url": "https://packagist.org/downloads/",
  2183. "license": [
  2184. "MIT"
  2185. ],
  2186. "authors": [
  2187. {
  2188. "name": "Taylor Otwell",
  2189. "email": "taylor@laravel.com"
  2190. }
  2191. ],
  2192. "description": "Laravel Sanctum provides a featherweight authentication system for SPAs and simple APIs.",
  2193. "keywords": [
  2194. "auth",
  2195. "laravel",
  2196. "sanctum"
  2197. ],
  2198. "support": {
  2199. "issues": "https://github.com/laravel/sanctum/issues",
  2200. "source": "https://github.com/laravel/sanctum"
  2201. },
  2202. "time": "2024-11-26T14:36:23+00:00"
  2203. },
  2204. {
  2205. "name": "laravel/serializable-closure",
  2206. "version": "v1.3.7",
  2207. "source": {
  2208. "type": "git",
  2209. "url": "https://github.com/laravel/serializable-closure.git",
  2210. "reference": "4f48ade902b94323ca3be7646db16209ec76be3d"
  2211. },
  2212. "dist": {
  2213. "type": "zip",
  2214. "url": "https://api.github.com/repos/laravel/serializable-closure/zipball/4f48ade902b94323ca3be7646db16209ec76be3d",
  2215. "reference": "4f48ade902b94323ca3be7646db16209ec76be3d",
  2216. "shasum": ""
  2217. },
  2218. "require": {
  2219. "php": "^7.3|^8.0"
  2220. },
  2221. "require-dev": {
  2222. "illuminate/support": "^8.0|^9.0|^10.0|^11.0",
  2223. "nesbot/carbon": "^2.61|^3.0",
  2224. "pestphp/pest": "^1.21.3",
  2225. "phpstan/phpstan": "^1.8.2",
  2226. "symfony/var-dumper": "^5.4.11|^6.2.0|^7.0.0"
  2227. },
  2228. "type": "library",
  2229. "extra": {
  2230. "branch-alias": {
  2231. "dev-master": "1.x-dev"
  2232. }
  2233. },
  2234. "autoload": {
  2235. "psr-4": {
  2236. "Laravel\\SerializableClosure\\": "src/"
  2237. }
  2238. },
  2239. "notification-url": "https://packagist.org/downloads/",
  2240. "license": [
  2241. "MIT"
  2242. ],
  2243. "authors": [
  2244. {
  2245. "name": "Taylor Otwell",
  2246. "email": "taylor@laravel.com"
  2247. },
  2248. {
  2249. "name": "Nuno Maduro",
  2250. "email": "nuno@laravel.com"
  2251. }
  2252. ],
  2253. "description": "Laravel Serializable Closure provides an easy and secure way to serialize closures in PHP.",
  2254. "keywords": [
  2255. "closure",
  2256. "laravel",
  2257. "serializable"
  2258. ],
  2259. "support": {
  2260. "issues": "https://github.com/laravel/serializable-closure/issues",
  2261. "source": "https://github.com/laravel/serializable-closure"
  2262. },
  2263. "time": "2024-11-14T18:34:49+00:00"
  2264. },
  2265. {
  2266. "name": "laravel/tinker",
  2267. "version": "v2.10.0",
  2268. "source": {
  2269. "type": "git",
  2270. "url": "https://github.com/laravel/tinker.git",
  2271. "reference": "ba4d51eb56de7711b3a37d63aa0643e99a339ae5"
  2272. },
  2273. "dist": {
  2274. "type": "zip",
  2275. "url": "https://api.github.com/repos/laravel/tinker/zipball/ba4d51eb56de7711b3a37d63aa0643e99a339ae5",
  2276. "reference": "ba4d51eb56de7711b3a37d63aa0643e99a339ae5",
  2277. "shasum": ""
  2278. },
  2279. "require": {
  2280. "illuminate/console": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
  2281. "illuminate/contracts": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
  2282. "illuminate/support": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
  2283. "php": "^7.2.5|^8.0",
  2284. "psy/psysh": "^0.11.1|^0.12.0",
  2285. "symfony/var-dumper": "^4.3.4|^5.0|^6.0|^7.0"
  2286. },
  2287. "require-dev": {
  2288. "mockery/mockery": "~1.3.3|^1.4.2",
  2289. "phpstan/phpstan": "^1.10",
  2290. "phpunit/phpunit": "^8.5.8|^9.3.3"
  2291. },
  2292. "suggest": {
  2293. "illuminate/database": "The Illuminate Database package (^6.0|^7.0|^8.0|^9.0|^10.0|^11.0)."
  2294. },
  2295. "type": "library",
  2296. "extra": {
  2297. "laravel": {
  2298. "providers": [
  2299. "Laravel\\Tinker\\TinkerServiceProvider"
  2300. ]
  2301. }
  2302. },
  2303. "autoload": {
  2304. "psr-4": {
  2305. "Laravel\\Tinker\\": "src/"
  2306. }
  2307. },
  2308. "notification-url": "https://packagist.org/downloads/",
  2309. "license": [
  2310. "MIT"
  2311. ],
  2312. "authors": [
  2313. {
  2314. "name": "Taylor Otwell",
  2315. "email": "taylor@laravel.com"
  2316. }
  2317. ],
  2318. "description": "Powerful REPL for the Laravel framework.",
  2319. "keywords": [
  2320. "REPL",
  2321. "Tinker",
  2322. "laravel",
  2323. "psysh"
  2324. ],
  2325. "support": {
  2326. "issues": "https://github.com/laravel/tinker/issues",
  2327. "source": "https://github.com/laravel/tinker/tree/v2.10.0"
  2328. },
  2329. "time": "2024-09-23T13:32:56+00:00"
  2330. },
  2331. {
  2332. "name": "league/commonmark",
  2333. "version": "2.5.3",
  2334. "source": {
  2335. "type": "git",
  2336. "url": "https://github.com/thephpleague/commonmark.git",
  2337. "reference": "b650144166dfa7703e62a22e493b853b58d874b0"
  2338. },
  2339. "dist": {
  2340. "type": "zip",
  2341. "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/b650144166dfa7703e62a22e493b853b58d874b0",
  2342. "reference": "b650144166dfa7703e62a22e493b853b58d874b0",
  2343. "shasum": ""
  2344. },
  2345. "require": {
  2346. "ext-mbstring": "*",
  2347. "league/config": "^1.1.1",
  2348. "php": "^7.4 || ^8.0",
  2349. "psr/event-dispatcher": "^1.0",
  2350. "symfony/deprecation-contracts": "^2.1 || ^3.0",
  2351. "symfony/polyfill-php80": "^1.16"
  2352. },
  2353. "require-dev": {
  2354. "cebe/markdown": "^1.0",
  2355. "commonmark/cmark": "0.31.1",
  2356. "commonmark/commonmark.js": "0.31.1",
  2357. "composer/package-versions-deprecated": "^1.8",
  2358. "embed/embed": "^4.4",
  2359. "erusev/parsedown": "^1.0",
  2360. "ext-json": "*",
  2361. "github/gfm": "0.29.0",
  2362. "michelf/php-markdown": "^1.4 || ^2.0",
  2363. "nyholm/psr7": "^1.5",
  2364. "phpstan/phpstan": "^1.8.2",
  2365. "phpunit/phpunit": "^9.5.21 || ^10.5.9 || ^11.0.0",
  2366. "scrutinizer/ocular": "^1.8.1",
  2367. "symfony/finder": "^5.3 | ^6.0 || ^7.0",
  2368. "symfony/yaml": "^2.3 | ^3.0 | ^4.0 | ^5.0 | ^6.0 || ^7.0",
  2369. "unleashedtech/php-coding-standard": "^3.1.1",
  2370. "vimeo/psalm": "^4.24.0 || ^5.0.0"
  2371. },
  2372. "suggest": {
  2373. "symfony/yaml": "v2.3+ required if using the Front Matter extension"
  2374. },
  2375. "type": "library",
  2376. "extra": {
  2377. "branch-alias": {
  2378. "dev-main": "2.6-dev"
  2379. }
  2380. },
  2381. "autoload": {
  2382. "psr-4": {
  2383. "League\\CommonMark\\": "src"
  2384. }
  2385. },
  2386. "notification-url": "https://packagist.org/downloads/",
  2387. "license": [
  2388. "BSD-3-Clause"
  2389. ],
  2390. "authors": [
  2391. {
  2392. "name": "Colin O'Dell",
  2393. "email": "colinodell@gmail.com",
  2394. "homepage": "https://www.colinodell.com",
  2395. "role": "Lead Developer"
  2396. }
  2397. ],
  2398. "description": "Highly-extensible PHP Markdown parser which fully supports the CommonMark spec and GitHub-Flavored Markdown (GFM)",
  2399. "homepage": "https://commonmark.thephpleague.com",
  2400. "keywords": [
  2401. "commonmark",
  2402. "flavored",
  2403. "gfm",
  2404. "github",
  2405. "github-flavored",
  2406. "markdown",
  2407. "md",
  2408. "parser"
  2409. ],
  2410. "support": {
  2411. "docs": "https://commonmark.thephpleague.com/",
  2412. "forum": "https://github.com/thephpleague/commonmark/discussions",
  2413. "issues": "https://github.com/thephpleague/commonmark/issues",
  2414. "rss": "https://github.com/thephpleague/commonmark/releases.atom",
  2415. "source": "https://github.com/thephpleague/commonmark"
  2416. },
  2417. "funding": [
  2418. {
  2419. "url": "https://www.colinodell.com/sponsor",
  2420. "type": "custom"
  2421. },
  2422. {
  2423. "url": "https://www.paypal.me/colinpodell/10.00",
  2424. "type": "custom"
  2425. },
  2426. {
  2427. "url": "https://github.com/colinodell",
  2428. "type": "github"
  2429. },
  2430. {
  2431. "url": "https://tidelift.com/funding/github/packagist/league/commonmark",
  2432. "type": "tidelift"
  2433. }
  2434. ],
  2435. "time": "2024-08-16T11:46:16+00:00"
  2436. },
  2437. {
  2438. "name": "league/config",
  2439. "version": "v1.2.0",
  2440. "source": {
  2441. "type": "git",
  2442. "url": "https://github.com/thephpleague/config.git",
  2443. "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3"
  2444. },
  2445. "dist": {
  2446. "type": "zip",
  2447. "url": "https://api.github.com/repos/thephpleague/config/zipball/754b3604fb2984c71f4af4a9cbe7b57f346ec1f3",
  2448. "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3",
  2449. "shasum": ""
  2450. },
  2451. "require": {
  2452. "dflydev/dot-access-data": "^3.0.1",
  2453. "nette/schema": "^1.2",
  2454. "php": "^7.4 || ^8.0"
  2455. },
  2456. "require-dev": {
  2457. "phpstan/phpstan": "^1.8.2",
  2458. "phpunit/phpunit": "^9.5.5",
  2459. "scrutinizer/ocular": "^1.8.1",
  2460. "unleashedtech/php-coding-standard": "^3.1",
  2461. "vimeo/psalm": "^4.7.3"
  2462. },
  2463. "type": "library",
  2464. "extra": {
  2465. "branch-alias": {
  2466. "dev-main": "1.2-dev"
  2467. }
  2468. },
  2469. "autoload": {
  2470. "psr-4": {
  2471. "League\\Config\\": "src"
  2472. }
  2473. },
  2474. "notification-url": "https://packagist.org/downloads/",
  2475. "license": [
  2476. "BSD-3-Clause"
  2477. ],
  2478. "authors": [
  2479. {
  2480. "name": "Colin O'Dell",
  2481. "email": "colinodell@gmail.com",
  2482. "homepage": "https://www.colinodell.com",
  2483. "role": "Lead Developer"
  2484. }
  2485. ],
  2486. "description": "Define configuration arrays with strict schemas and access values with dot notation",
  2487. "homepage": "https://config.thephpleague.com",
  2488. "keywords": [
  2489. "array",
  2490. "config",
  2491. "configuration",
  2492. "dot",
  2493. "dot-access",
  2494. "nested",
  2495. "schema"
  2496. ],
  2497. "support": {
  2498. "docs": "https://config.thephpleague.com/",
  2499. "issues": "https://github.com/thephpleague/config/issues",
  2500. "rss": "https://github.com/thephpleague/config/releases.atom",
  2501. "source": "https://github.com/thephpleague/config"
  2502. },
  2503. "funding": [
  2504. {
  2505. "url": "https://www.colinodell.com/sponsor",
  2506. "type": "custom"
  2507. },
  2508. {
  2509. "url": "https://www.paypal.me/colinpodell/10.00",
  2510. "type": "custom"
  2511. },
  2512. {
  2513. "url": "https://github.com/colinodell",
  2514. "type": "github"
  2515. }
  2516. ],
  2517. "time": "2022-12-11T20:36:23+00:00"
  2518. },
  2519. {
  2520. "name": "league/flysystem",
  2521. "version": "3.29.1",
  2522. "source": {
  2523. "type": "git",
  2524. "url": "https://github.com/thephpleague/flysystem.git",
  2525. "reference": "edc1bb7c86fab0776c3287dbd19b5fa278347319"
  2526. },
  2527. "dist": {
  2528. "type": "zip",
  2529. "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/edc1bb7c86fab0776c3287dbd19b5fa278347319",
  2530. "reference": "edc1bb7c86fab0776c3287dbd19b5fa278347319",
  2531. "shasum": ""
  2532. },
  2533. "require": {
  2534. "league/flysystem-local": "^3.0.0",
  2535. "league/mime-type-detection": "^1.0.0",
  2536. "php": "^8.0.2"
  2537. },
  2538. "conflict": {
  2539. "async-aws/core": "<1.19.0",
  2540. "async-aws/s3": "<1.14.0",
  2541. "aws/aws-sdk-php": "3.209.31 || 3.210.0",
  2542. "guzzlehttp/guzzle": "<7.0",
  2543. "guzzlehttp/ringphp": "<1.1.1",
  2544. "phpseclib/phpseclib": "3.0.15",
  2545. "symfony/http-client": "<5.2"
  2546. },
  2547. "require-dev": {
  2548. "async-aws/s3": "^1.5 || ^2.0",
  2549. "async-aws/simple-s3": "^1.1 || ^2.0",
  2550. "aws/aws-sdk-php": "^3.295.10",
  2551. "composer/semver": "^3.0",
  2552. "ext-fileinfo": "*",
  2553. "ext-ftp": "*",
  2554. "ext-mongodb": "^1.3",
  2555. "ext-zip": "*",
  2556. "friendsofphp/php-cs-fixer": "^3.5",
  2557. "google/cloud-storage": "^1.23",
  2558. "guzzlehttp/psr7": "^2.6",
  2559. "microsoft/azure-storage-blob": "^1.1",
  2560. "mongodb/mongodb": "^1.2",
  2561. "phpseclib/phpseclib": "^3.0.36",
  2562. "phpstan/phpstan": "^1.10",
  2563. "phpunit/phpunit": "^9.5.11|^10.0",
  2564. "sabre/dav": "^4.6.0"
  2565. },
  2566. "type": "library",
  2567. "autoload": {
  2568. "psr-4": {
  2569. "League\\Flysystem\\": "src"
  2570. }
  2571. },
  2572. "notification-url": "https://packagist.org/downloads/",
  2573. "license": [
  2574. "MIT"
  2575. ],
  2576. "authors": [
  2577. {
  2578. "name": "Frank de Jonge",
  2579. "email": "info@frankdejonge.nl"
  2580. }
  2581. ],
  2582. "description": "File storage abstraction for PHP",
  2583. "keywords": [
  2584. "WebDAV",
  2585. "aws",
  2586. "cloud",
  2587. "file",
  2588. "files",
  2589. "filesystem",
  2590. "filesystems",
  2591. "ftp",
  2592. "s3",
  2593. "sftp",
  2594. "storage"
  2595. ],
  2596. "support": {
  2597. "issues": "https://github.com/thephpleague/flysystem/issues",
  2598. "source": "https://github.com/thephpleague/flysystem/tree/3.29.1"
  2599. },
  2600. "time": "2024-10-08T08:58:34+00:00"
  2601. },
  2602. {
  2603. "name": "league/flysystem-aws-s3-v3",
  2604. "version": "3.29.0",
  2605. "source": {
  2606. "type": "git",
  2607. "url": "https://github.com/thephpleague/flysystem-aws-s3-v3.git",
  2608. "reference": "c6ff6d4606e48249b63f269eba7fabdb584e76a9"
  2609. },
  2610. "dist": {
  2611. "type": "zip",
  2612. "url": "https://api.github.com/repos/thephpleague/flysystem-aws-s3-v3/zipball/c6ff6d4606e48249b63f269eba7fabdb584e76a9",
  2613. "reference": "c6ff6d4606e48249b63f269eba7fabdb584e76a9",
  2614. "shasum": ""
  2615. },
  2616. "require": {
  2617. "aws/aws-sdk-php": "^3.295.10",
  2618. "league/flysystem": "^3.10.0",
  2619. "league/mime-type-detection": "^1.0.0",
  2620. "php": "^8.0.2"
  2621. },
  2622. "conflict": {
  2623. "guzzlehttp/guzzle": "<7.0",
  2624. "guzzlehttp/ringphp": "<1.1.1"
  2625. },
  2626. "type": "library",
  2627. "autoload": {
  2628. "psr-4": {
  2629. "League\\Flysystem\\AwsS3V3\\": ""
  2630. }
  2631. },
  2632. "notification-url": "https://packagist.org/downloads/",
  2633. "license": [
  2634. "MIT"
  2635. ],
  2636. "authors": [
  2637. {
  2638. "name": "Frank de Jonge",
  2639. "email": "info@frankdejonge.nl"
  2640. }
  2641. ],
  2642. "description": "AWS S3 filesystem adapter for Flysystem.",
  2643. "keywords": [
  2644. "Flysystem",
  2645. "aws",
  2646. "file",
  2647. "files",
  2648. "filesystem",
  2649. "s3",
  2650. "storage"
  2651. ],
  2652. "support": {
  2653. "source": "https://github.com/thephpleague/flysystem-aws-s3-v3/tree/3.29.0"
  2654. },
  2655. "time": "2024-08-17T13:10:48+00:00"
  2656. },
  2657. {
  2658. "name": "league/flysystem-local",
  2659. "version": "3.29.0",
  2660. "source": {
  2661. "type": "git",
  2662. "url": "https://github.com/thephpleague/flysystem-local.git",
  2663. "reference": "e0e8d52ce4b2ed154148453d321e97c8e931bd27"
  2664. },
  2665. "dist": {
  2666. "type": "zip",
  2667. "url": "https://api.github.com/repos/thephpleague/flysystem-local/zipball/e0e8d52ce4b2ed154148453d321e97c8e931bd27",
  2668. "reference": "e0e8d52ce4b2ed154148453d321e97c8e931bd27",
  2669. "shasum": ""
  2670. },
  2671. "require": {
  2672. "ext-fileinfo": "*",
  2673. "league/flysystem": "^3.0.0",
  2674. "league/mime-type-detection": "^1.0.0",
  2675. "php": "^8.0.2"
  2676. },
  2677. "type": "library",
  2678. "autoload": {
  2679. "psr-4": {
  2680. "League\\Flysystem\\Local\\": ""
  2681. }
  2682. },
  2683. "notification-url": "https://packagist.org/downloads/",
  2684. "license": [
  2685. "MIT"
  2686. ],
  2687. "authors": [
  2688. {
  2689. "name": "Frank de Jonge",
  2690. "email": "info@frankdejonge.nl"
  2691. }
  2692. ],
  2693. "description": "Local filesystem adapter for Flysystem.",
  2694. "keywords": [
  2695. "Flysystem",
  2696. "file",
  2697. "files",
  2698. "filesystem",
  2699. "local"
  2700. ],
  2701. "support": {
  2702. "source": "https://github.com/thephpleague/flysystem-local/tree/3.29.0"
  2703. },
  2704. "time": "2024-08-09T21:24:39+00:00"
  2705. },
  2706. {
  2707. "name": "league/mime-type-detection",
  2708. "version": "1.16.0",
  2709. "source": {
  2710. "type": "git",
  2711. "url": "https://github.com/thephpleague/mime-type-detection.git",
  2712. "reference": "2d6702ff215bf922936ccc1ad31007edc76451b9"
  2713. },
  2714. "dist": {
  2715. "type": "zip",
  2716. "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/2d6702ff215bf922936ccc1ad31007edc76451b9",
  2717. "reference": "2d6702ff215bf922936ccc1ad31007edc76451b9",
  2718. "shasum": ""
  2719. },
  2720. "require": {
  2721. "ext-fileinfo": "*",
  2722. "php": "^7.4 || ^8.0"
  2723. },
  2724. "require-dev": {
  2725. "friendsofphp/php-cs-fixer": "^3.2",
  2726. "phpstan/phpstan": "^0.12.68",
  2727. "phpunit/phpunit": "^8.5.8 || ^9.3 || ^10.0"
  2728. },
  2729. "type": "library",
  2730. "autoload": {
  2731. "psr-4": {
  2732. "League\\MimeTypeDetection\\": "src"
  2733. }
  2734. },
  2735. "notification-url": "https://packagist.org/downloads/",
  2736. "license": [
  2737. "MIT"
  2738. ],
  2739. "authors": [
  2740. {
  2741. "name": "Frank de Jonge",
  2742. "email": "info@frankdejonge.nl"
  2743. }
  2744. ],
  2745. "description": "Mime-type detection for Flysystem",
  2746. "support": {
  2747. "issues": "https://github.com/thephpleague/mime-type-detection/issues",
  2748. "source": "https://github.com/thephpleague/mime-type-detection/tree/1.16.0"
  2749. },
  2750. "funding": [
  2751. {
  2752. "url": "https://github.com/frankdejonge",
  2753. "type": "github"
  2754. },
  2755. {
  2756. "url": "https://tidelift.com/funding/github/packagist/league/flysystem",
  2757. "type": "tidelift"
  2758. }
  2759. ],
  2760. "time": "2024-09-21T08:32:55+00:00"
  2761. },
  2762. {
  2763. "name": "monolog/monolog",
  2764. "version": "3.8.0",
  2765. "source": {
  2766. "type": "git",
  2767. "url": "https://github.com/Seldaek/monolog.git",
  2768. "reference": "32e515fdc02cdafbe4593e30a9350d486b125b67"
  2769. },
  2770. "dist": {
  2771. "type": "zip",
  2772. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/32e515fdc02cdafbe4593e30a9350d486b125b67",
  2773. "reference": "32e515fdc02cdafbe4593e30a9350d486b125b67",
  2774. "shasum": ""
  2775. },
  2776. "require": {
  2777. "php": ">=8.1",
  2778. "psr/log": "^2.0 || ^3.0"
  2779. },
  2780. "provide": {
  2781. "psr/log-implementation": "3.0.0"
  2782. },
  2783. "require-dev": {
  2784. "aws/aws-sdk-php": "^3.0",
  2785. "doctrine/couchdb": "~1.0@dev",
  2786. "elasticsearch/elasticsearch": "^7 || ^8",
  2787. "ext-json": "*",
  2788. "graylog2/gelf-php": "^1.4.2 || ^2.0",
  2789. "guzzlehttp/guzzle": "^7.4.5",
  2790. "guzzlehttp/psr7": "^2.2",
  2791. "mongodb/mongodb": "^1.8",
  2792. "php-amqplib/php-amqplib": "~2.4 || ^3",
  2793. "php-console/php-console": "^3.1.8",
  2794. "phpstan/phpstan": "^2",
  2795. "phpstan/phpstan-deprecation-rules": "^2",
  2796. "phpstan/phpstan-strict-rules": "^2",
  2797. "phpunit/phpunit": "^10.5.17 || ^11.0.7",
  2798. "predis/predis": "^1.1 || ^2",
  2799. "rollbar/rollbar": "^4.0",
  2800. "ruflin/elastica": "^7 || ^8",
  2801. "symfony/mailer": "^5.4 || ^6",
  2802. "symfony/mime": "^5.4 || ^6"
  2803. },
  2804. "suggest": {
  2805. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  2806. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  2807. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  2808. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  2809. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  2810. "ext-mbstring": "Allow to work properly with unicode symbols",
  2811. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  2812. "ext-openssl": "Required to send log messages using SSL",
  2813. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  2814. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  2815. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  2816. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  2817. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  2818. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  2819. },
  2820. "type": "library",
  2821. "extra": {
  2822. "branch-alias": {
  2823. "dev-main": "3.x-dev"
  2824. }
  2825. },
  2826. "autoload": {
  2827. "psr-4": {
  2828. "Monolog\\": "src/Monolog"
  2829. }
  2830. },
  2831. "notification-url": "https://packagist.org/downloads/",
  2832. "license": [
  2833. "MIT"
  2834. ],
  2835. "authors": [
  2836. {
  2837. "name": "Jordi Boggiano",
  2838. "email": "j.boggiano@seld.be",
  2839. "homepage": "https://seld.be"
  2840. }
  2841. ],
  2842. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  2843. "homepage": "https://github.com/Seldaek/monolog",
  2844. "keywords": [
  2845. "log",
  2846. "logging",
  2847. "psr-3"
  2848. ],
  2849. "support": {
  2850. "issues": "https://github.com/Seldaek/monolog/issues",
  2851. "source": "https://github.com/Seldaek/monolog/tree/3.8.0"
  2852. },
  2853. "funding": [
  2854. {
  2855. "url": "https://github.com/Seldaek",
  2856. "type": "github"
  2857. },
  2858. {
  2859. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  2860. "type": "tidelift"
  2861. }
  2862. ],
  2863. "time": "2024-11-12T13:57:08+00:00"
  2864. },
  2865. {
  2866. "name": "mpociot/reflection-docblock",
  2867. "version": "1.0.1",
  2868. "source": {
  2869. "type": "git",
  2870. "url": "https://github.com/mpociot/reflection-docblock.git",
  2871. "reference": "c8b2e2b1f5cebbb06e2b5ccbf2958f2198867587"
  2872. },
  2873. "dist": {
  2874. "type": "zip",
  2875. "url": "https://api.github.com/repos/mpociot/reflection-docblock/zipball/c8b2e2b1f5cebbb06e2b5ccbf2958f2198867587",
  2876. "reference": "c8b2e2b1f5cebbb06e2b5ccbf2958f2198867587",
  2877. "shasum": ""
  2878. },
  2879. "require": {
  2880. "php": ">=5.3.3"
  2881. },
  2882. "require-dev": {
  2883. "phpunit/phpunit": "~4.0"
  2884. },
  2885. "suggest": {
  2886. "dflydev/markdown": "~1.0",
  2887. "erusev/parsedown": "~1.0"
  2888. },
  2889. "type": "library",
  2890. "extra": {
  2891. "branch-alias": {
  2892. "dev-master": "2.0.x-dev"
  2893. }
  2894. },
  2895. "autoload": {
  2896. "psr-0": {
  2897. "Mpociot": [
  2898. "src/"
  2899. ]
  2900. }
  2901. },
  2902. "notification-url": "https://packagist.org/downloads/",
  2903. "license": [
  2904. "MIT"
  2905. ],
  2906. "authors": [
  2907. {
  2908. "name": "Mike van Riel",
  2909. "email": "mike.vanriel@naenius.com"
  2910. }
  2911. ],
  2912. "support": {
  2913. "issues": "https://github.com/mpociot/reflection-docblock/issues",
  2914. "source": "https://github.com/mpociot/reflection-docblock/tree/master"
  2915. },
  2916. "time": "2016-06-20T20:53:12+00:00"
  2917. },
  2918. {
  2919. "name": "mtdowling/jmespath.php",
  2920. "version": "2.8.0",
  2921. "source": {
  2922. "type": "git",
  2923. "url": "https://github.com/jmespath/jmespath.php.git",
  2924. "reference": "a2a865e05d5f420b50cc2f85bb78d565db12a6bc"
  2925. },
  2926. "dist": {
  2927. "type": "zip",
  2928. "url": "https://api.github.com/repos/jmespath/jmespath.php/zipball/a2a865e05d5f420b50cc2f85bb78d565db12a6bc",
  2929. "reference": "a2a865e05d5f420b50cc2f85bb78d565db12a6bc",
  2930. "shasum": ""
  2931. },
  2932. "require": {
  2933. "php": "^7.2.5 || ^8.0",
  2934. "symfony/polyfill-mbstring": "^1.17"
  2935. },
  2936. "require-dev": {
  2937. "composer/xdebug-handler": "^3.0.3",
  2938. "phpunit/phpunit": "^8.5.33"
  2939. },
  2940. "bin": [
  2941. "bin/jp.php"
  2942. ],
  2943. "type": "library",
  2944. "extra": {
  2945. "branch-alias": {
  2946. "dev-master": "2.8-dev"
  2947. }
  2948. },
  2949. "autoload": {
  2950. "files": [
  2951. "src/JmesPath.php"
  2952. ],
  2953. "psr-4": {
  2954. "JmesPath\\": "src/"
  2955. }
  2956. },
  2957. "notification-url": "https://packagist.org/downloads/",
  2958. "license": [
  2959. "MIT"
  2960. ],
  2961. "authors": [
  2962. {
  2963. "name": "Graham Campbell",
  2964. "email": "hello@gjcampbell.co.uk",
  2965. "homepage": "https://github.com/GrahamCampbell"
  2966. },
  2967. {
  2968. "name": "Michael Dowling",
  2969. "email": "mtdowling@gmail.com",
  2970. "homepage": "https://github.com/mtdowling"
  2971. }
  2972. ],
  2973. "description": "Declaratively specify how to extract elements from a JSON document",
  2974. "keywords": [
  2975. "json",
  2976. "jsonpath"
  2977. ],
  2978. "support": {
  2979. "issues": "https://github.com/jmespath/jmespath.php/issues",
  2980. "source": "https://github.com/jmespath/jmespath.php/tree/2.8.0"
  2981. },
  2982. "time": "2024-09-04T18:46:31+00:00"
  2983. },
  2984. {
  2985. "name": "nesbot/carbon",
  2986. "version": "3.8.2",
  2987. "source": {
  2988. "type": "git",
  2989. "url": "https://github.com/briannesbitt/Carbon.git",
  2990. "reference": "e1268cdbc486d97ce23fef2c666dc3c6b6de9947"
  2991. },
  2992. "dist": {
  2993. "type": "zip",
  2994. "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/e1268cdbc486d97ce23fef2c666dc3c6b6de9947",
  2995. "reference": "e1268cdbc486d97ce23fef2c666dc3c6b6de9947",
  2996. "shasum": ""
  2997. },
  2998. "require": {
  2999. "carbonphp/carbon-doctrine-types": "<100.0",
  3000. "ext-json": "*",
  3001. "php": "^8.1",
  3002. "psr/clock": "^1.0",
  3003. "symfony/clock": "^6.3 || ^7.0",
  3004. "symfony/polyfill-mbstring": "^1.0",
  3005. "symfony/translation": "^4.4.18 || ^5.2.1|| ^6.0 || ^7.0"
  3006. },
  3007. "provide": {
  3008. "psr/clock-implementation": "1.0"
  3009. },
  3010. "require-dev": {
  3011. "doctrine/dbal": "^3.6.3 || ^4.0",
  3012. "doctrine/orm": "^2.15.2 || ^3.0",
  3013. "friendsofphp/php-cs-fixer": "^3.57.2",
  3014. "kylekatarnls/multi-tester": "^2.5.3",
  3015. "ondrejmirtes/better-reflection": "^6.25.0.4",
  3016. "phpmd/phpmd": "^2.15.0",
  3017. "phpstan/extension-installer": "^1.3.1",
  3018. "phpstan/phpstan": "^1.11.2",
  3019. "phpunit/phpunit": "^10.5.20",
  3020. "squizlabs/php_codesniffer": "^3.9.0"
  3021. },
  3022. "bin": [
  3023. "bin/carbon"
  3024. ],
  3025. "type": "library",
  3026. "extra": {
  3027. "branch-alias": {
  3028. "dev-master": "3.x-dev",
  3029. "dev-2.x": "2.x-dev"
  3030. },
  3031. "laravel": {
  3032. "providers": [
  3033. "Carbon\\Laravel\\ServiceProvider"
  3034. ]
  3035. },
  3036. "phpstan": {
  3037. "includes": [
  3038. "extension.neon"
  3039. ]
  3040. }
  3041. },
  3042. "autoload": {
  3043. "psr-4": {
  3044. "Carbon\\": "src/Carbon/"
  3045. }
  3046. },
  3047. "notification-url": "https://packagist.org/downloads/",
  3048. "license": [
  3049. "MIT"
  3050. ],
  3051. "authors": [
  3052. {
  3053. "name": "Brian Nesbitt",
  3054. "email": "brian@nesbot.com",
  3055. "homepage": "https://markido.com"
  3056. },
  3057. {
  3058. "name": "kylekatarnls",
  3059. "homepage": "https://github.com/kylekatarnls"
  3060. }
  3061. ],
  3062. "description": "An API extension for DateTime that supports 281 different languages.",
  3063. "homepage": "https://carbon.nesbot.com",
  3064. "keywords": [
  3065. "date",
  3066. "datetime",
  3067. "time"
  3068. ],
  3069. "support": {
  3070. "docs": "https://carbon.nesbot.com/docs",
  3071. "issues": "https://github.com/briannesbitt/Carbon/issues",
  3072. "source": "https://github.com/briannesbitt/Carbon"
  3073. },
  3074. "funding": [
  3075. {
  3076. "url": "https://github.com/sponsors/kylekatarnls",
  3077. "type": "github"
  3078. },
  3079. {
  3080. "url": "https://opencollective.com/Carbon#sponsor",
  3081. "type": "opencollective"
  3082. },
  3083. {
  3084. "url": "https://tidelift.com/subscription/pkg/packagist-nesbot-carbon?utm_source=packagist-nesbot-carbon&utm_medium=referral&utm_campaign=readme",
  3085. "type": "tidelift"
  3086. }
  3087. ],
  3088. "time": "2024-11-07T17:46:48+00:00"
  3089. },
  3090. {
  3091. "name": "nette/schema",
  3092. "version": "v1.3.2",
  3093. "source": {
  3094. "type": "git",
  3095. "url": "https://github.com/nette/schema.git",
  3096. "reference": "da801d52f0354f70a638673c4a0f04e16529431d"
  3097. },
  3098. "dist": {
  3099. "type": "zip",
  3100. "url": "https://api.github.com/repos/nette/schema/zipball/da801d52f0354f70a638673c4a0f04e16529431d",
  3101. "reference": "da801d52f0354f70a638673c4a0f04e16529431d",
  3102. "shasum": ""
  3103. },
  3104. "require": {
  3105. "nette/utils": "^4.0",
  3106. "php": "8.1 - 8.4"
  3107. },
  3108. "require-dev": {
  3109. "nette/tester": "^2.5.2",
  3110. "phpstan/phpstan-nette": "^1.0",
  3111. "tracy/tracy": "^2.8"
  3112. },
  3113. "type": "library",
  3114. "extra": {
  3115. "branch-alias": {
  3116. "dev-master": "1.3-dev"
  3117. }
  3118. },
  3119. "autoload": {
  3120. "classmap": [
  3121. "src/"
  3122. ]
  3123. },
  3124. "notification-url": "https://packagist.org/downloads/",
  3125. "license": [
  3126. "BSD-3-Clause",
  3127. "GPL-2.0-only",
  3128. "GPL-3.0-only"
  3129. ],
  3130. "authors": [
  3131. {
  3132. "name": "David Grudl",
  3133. "homepage": "https://davidgrudl.com"
  3134. },
  3135. {
  3136. "name": "Nette Community",
  3137. "homepage": "https://nette.org/contributors"
  3138. }
  3139. ],
  3140. "description": "📐 Nette Schema: validating data structures against a given Schema.",
  3141. "homepage": "https://nette.org",
  3142. "keywords": [
  3143. "config",
  3144. "nette"
  3145. ],
  3146. "support": {
  3147. "issues": "https://github.com/nette/schema/issues",
  3148. "source": "https://github.com/nette/schema/tree/v1.3.2"
  3149. },
  3150. "time": "2024-10-06T23:10:23+00:00"
  3151. },
  3152. {
  3153. "name": "nette/utils",
  3154. "version": "v4.0.5",
  3155. "source": {
  3156. "type": "git",
  3157. "url": "https://github.com/nette/utils.git",
  3158. "reference": "736c567e257dbe0fcf6ce81b4d6dbe05c6899f96"
  3159. },
  3160. "dist": {
  3161. "type": "zip",
  3162. "url": "https://api.github.com/repos/nette/utils/zipball/736c567e257dbe0fcf6ce81b4d6dbe05c6899f96",
  3163. "reference": "736c567e257dbe0fcf6ce81b4d6dbe05c6899f96",
  3164. "shasum": ""
  3165. },
  3166. "require": {
  3167. "php": "8.0 - 8.4"
  3168. },
  3169. "conflict": {
  3170. "nette/finder": "<3",
  3171. "nette/schema": "<1.2.2"
  3172. },
  3173. "require-dev": {
  3174. "jetbrains/phpstorm-attributes": "dev-master",
  3175. "nette/tester": "^2.5",
  3176. "phpstan/phpstan": "^1.0",
  3177. "tracy/tracy": "^2.9"
  3178. },
  3179. "suggest": {
  3180. "ext-gd": "to use Image",
  3181. "ext-iconv": "to use Strings::webalize(), toAscii(), chr() and reverse()",
  3182. "ext-intl": "to use Strings::webalize(), toAscii(), normalize() and compare()",
  3183. "ext-json": "to use Nette\\Utils\\Json",
  3184. "ext-mbstring": "to use Strings::lower() etc...",
  3185. "ext-tokenizer": "to use Nette\\Utils\\Reflection::getUseStatements()"
  3186. },
  3187. "type": "library",
  3188. "extra": {
  3189. "branch-alias": {
  3190. "dev-master": "4.0-dev"
  3191. }
  3192. },
  3193. "autoload": {
  3194. "classmap": [
  3195. "src/"
  3196. ]
  3197. },
  3198. "notification-url": "https://packagist.org/downloads/",
  3199. "license": [
  3200. "BSD-3-Clause",
  3201. "GPL-2.0-only",
  3202. "GPL-3.0-only"
  3203. ],
  3204. "authors": [
  3205. {
  3206. "name": "David Grudl",
  3207. "homepage": "https://davidgrudl.com"
  3208. },
  3209. {
  3210. "name": "Nette Community",
  3211. "homepage": "https://nette.org/contributors"
  3212. }
  3213. ],
  3214. "description": "🛠 Nette Utils: lightweight utilities for string & array manipulation, image handling, safe JSON encoding/decoding, validation, slug or strong password generating etc.",
  3215. "homepage": "https://nette.org",
  3216. "keywords": [
  3217. "array",
  3218. "core",
  3219. "datetime",
  3220. "images",
  3221. "json",
  3222. "nette",
  3223. "paginator",
  3224. "password",
  3225. "slugify",
  3226. "string",
  3227. "unicode",
  3228. "utf-8",
  3229. "utility",
  3230. "validation"
  3231. ],
  3232. "support": {
  3233. "issues": "https://github.com/nette/utils/issues",
  3234. "source": "https://github.com/nette/utils/tree/v4.0.5"
  3235. },
  3236. "time": "2024-08-07T15:39:19+00:00"
  3237. },
  3238. {
  3239. "name": "nikic/php-parser",
  3240. "version": "v5.3.1",
  3241. "source": {
  3242. "type": "git",
  3243. "url": "https://github.com/nikic/PHP-Parser.git",
  3244. "reference": "8eea230464783aa9671db8eea6f8c6ac5285794b"
  3245. },
  3246. "dist": {
  3247. "type": "zip",
  3248. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/8eea230464783aa9671db8eea6f8c6ac5285794b",
  3249. "reference": "8eea230464783aa9671db8eea6f8c6ac5285794b",
  3250. "shasum": ""
  3251. },
  3252. "require": {
  3253. "ext-ctype": "*",
  3254. "ext-json": "*",
  3255. "ext-tokenizer": "*",
  3256. "php": ">=7.4"
  3257. },
  3258. "require-dev": {
  3259. "ircmaxell/php-yacc": "^0.0.7",
  3260. "phpunit/phpunit": "^9.0"
  3261. },
  3262. "bin": [
  3263. "bin/php-parse"
  3264. ],
  3265. "type": "library",
  3266. "extra": {
  3267. "branch-alias": {
  3268. "dev-master": "5.0-dev"
  3269. }
  3270. },
  3271. "autoload": {
  3272. "psr-4": {
  3273. "PhpParser\\": "lib/PhpParser"
  3274. }
  3275. },
  3276. "notification-url": "https://packagist.org/downloads/",
  3277. "license": [
  3278. "BSD-3-Clause"
  3279. ],
  3280. "authors": [
  3281. {
  3282. "name": "Nikita Popov"
  3283. }
  3284. ],
  3285. "description": "A PHP parser written in PHP",
  3286. "keywords": [
  3287. "parser",
  3288. "php"
  3289. ],
  3290. "support": {
  3291. "issues": "https://github.com/nikic/PHP-Parser/issues",
  3292. "source": "https://github.com/nikic/PHP-Parser/tree/v5.3.1"
  3293. },
  3294. "time": "2024-10-08T18:51:32+00:00"
  3295. },
  3296. {
  3297. "name": "nunomaduro/collision",
  3298. "version": "v8.5.0",
  3299. "source": {
  3300. "type": "git",
  3301. "url": "https://github.com/nunomaduro/collision.git",
  3302. "reference": "f5c101b929c958e849a633283adff296ed5f38f5"
  3303. },
  3304. "dist": {
  3305. "type": "zip",
  3306. "url": "https://api.github.com/repos/nunomaduro/collision/zipball/f5c101b929c958e849a633283adff296ed5f38f5",
  3307. "reference": "f5c101b929c958e849a633283adff296ed5f38f5",
  3308. "shasum": ""
  3309. },
  3310. "require": {
  3311. "filp/whoops": "^2.16.0",
  3312. "nunomaduro/termwind": "^2.1.0",
  3313. "php": "^8.2.0",
  3314. "symfony/console": "^7.1.5"
  3315. },
  3316. "conflict": {
  3317. "laravel/framework": "<11.0.0 || >=12.0.0",
  3318. "phpunit/phpunit": "<10.5.1 || >=12.0.0"
  3319. },
  3320. "require-dev": {
  3321. "larastan/larastan": "^2.9.8",
  3322. "laravel/framework": "^11.28.0",
  3323. "laravel/pint": "^1.18.1",
  3324. "laravel/sail": "^1.36.0",
  3325. "laravel/sanctum": "^4.0.3",
  3326. "laravel/tinker": "^2.10.0",
  3327. "orchestra/testbench-core": "^9.5.3",
  3328. "pestphp/pest": "^2.36.0 || ^3.4.0",
  3329. "sebastian/environment": "^6.1.0 || ^7.2.0"
  3330. },
  3331. "type": "library",
  3332. "extra": {
  3333. "laravel": {
  3334. "providers": [
  3335. "NunoMaduro\\Collision\\Adapters\\Laravel\\CollisionServiceProvider"
  3336. ]
  3337. },
  3338. "branch-alias": {
  3339. "dev-8.x": "8.x-dev"
  3340. }
  3341. },
  3342. "autoload": {
  3343. "files": [
  3344. "./src/Adapters/Phpunit/Autoload.php"
  3345. ],
  3346. "psr-4": {
  3347. "NunoMaduro\\Collision\\": "src/"
  3348. }
  3349. },
  3350. "notification-url": "https://packagist.org/downloads/",
  3351. "license": [
  3352. "MIT"
  3353. ],
  3354. "authors": [
  3355. {
  3356. "name": "Nuno Maduro",
  3357. "email": "enunomaduro@gmail.com"
  3358. }
  3359. ],
  3360. "description": "Cli error handling for console/command-line PHP applications.",
  3361. "keywords": [
  3362. "artisan",
  3363. "cli",
  3364. "command-line",
  3365. "console",
  3366. "error",
  3367. "handling",
  3368. "laravel",
  3369. "laravel-zero",
  3370. "php",
  3371. "symfony"
  3372. ],
  3373. "support": {
  3374. "issues": "https://github.com/nunomaduro/collision/issues",
  3375. "source": "https://github.com/nunomaduro/collision"
  3376. },
  3377. "funding": [
  3378. {
  3379. "url": "https://www.paypal.com/paypalme/enunomaduro",
  3380. "type": "custom"
  3381. },
  3382. {
  3383. "url": "https://github.com/nunomaduro",
  3384. "type": "github"
  3385. },
  3386. {
  3387. "url": "https://www.patreon.com/nunomaduro",
  3388. "type": "patreon"
  3389. }
  3390. ],
  3391. "time": "2024-10-15T16:06:32+00:00"
  3392. },
  3393. {
  3394. "name": "nunomaduro/termwind",
  3395. "version": "v2.3.0",
  3396. "source": {
  3397. "type": "git",
  3398. "url": "https://github.com/nunomaduro/termwind.git",
  3399. "reference": "52915afe6a1044e8b9cee1bcff836fb63acf9cda"
  3400. },
  3401. "dist": {
  3402. "type": "zip",
  3403. "url": "https://api.github.com/repos/nunomaduro/termwind/zipball/52915afe6a1044e8b9cee1bcff836fb63acf9cda",
  3404. "reference": "52915afe6a1044e8b9cee1bcff836fb63acf9cda",
  3405. "shasum": ""
  3406. },
  3407. "require": {
  3408. "ext-mbstring": "*",
  3409. "php": "^8.2",
  3410. "symfony/console": "^7.1.8"
  3411. },
  3412. "require-dev": {
  3413. "illuminate/console": "^11.33.2",
  3414. "laravel/pint": "^1.18.2",
  3415. "mockery/mockery": "^1.6.12",
  3416. "pestphp/pest": "^2.36.0",
  3417. "phpstan/phpstan": "^1.12.11",
  3418. "phpstan/phpstan-strict-rules": "^1.6.1",
  3419. "symfony/var-dumper": "^7.1.8",
  3420. "thecodingmachine/phpstan-strict-rules": "^1.0.0"
  3421. },
  3422. "type": "library",
  3423. "extra": {
  3424. "laravel": {
  3425. "providers": [
  3426. "Termwind\\Laravel\\TermwindServiceProvider"
  3427. ]
  3428. },
  3429. "branch-alias": {
  3430. "dev-2.x": "2.x-dev"
  3431. }
  3432. },
  3433. "autoload": {
  3434. "files": [
  3435. "src/Functions.php"
  3436. ],
  3437. "psr-4": {
  3438. "Termwind\\": "src/"
  3439. }
  3440. },
  3441. "notification-url": "https://packagist.org/downloads/",
  3442. "license": [
  3443. "MIT"
  3444. ],
  3445. "authors": [
  3446. {
  3447. "name": "Nuno Maduro",
  3448. "email": "enunomaduro@gmail.com"
  3449. }
  3450. ],
  3451. "description": "Its like Tailwind CSS, but for the console.",
  3452. "keywords": [
  3453. "cli",
  3454. "console",
  3455. "css",
  3456. "package",
  3457. "php",
  3458. "style"
  3459. ],
  3460. "support": {
  3461. "issues": "https://github.com/nunomaduro/termwind/issues",
  3462. "source": "https://github.com/nunomaduro/termwind/tree/v2.3.0"
  3463. },
  3464. "funding": [
  3465. {
  3466. "url": "https://www.paypal.com/paypalme/enunomaduro",
  3467. "type": "custom"
  3468. },
  3469. {
  3470. "url": "https://github.com/nunomaduro",
  3471. "type": "github"
  3472. },
  3473. {
  3474. "url": "https://github.com/xiCO2k",
  3475. "type": "github"
  3476. }
  3477. ],
  3478. "time": "2024-11-21T10:39:51+00:00"
  3479. },
  3480. {
  3481. "name": "nyholm/psr7",
  3482. "version": "1.8.2",
  3483. "source": {
  3484. "type": "git",
  3485. "url": "https://github.com/Nyholm/psr7.git",
  3486. "reference": "a71f2b11690f4b24d099d6b16690a90ae14fc6f3"
  3487. },
  3488. "dist": {
  3489. "type": "zip",
  3490. "url": "https://api.github.com/repos/Nyholm/psr7/zipball/a71f2b11690f4b24d099d6b16690a90ae14fc6f3",
  3491. "reference": "a71f2b11690f4b24d099d6b16690a90ae14fc6f3",
  3492. "shasum": ""
  3493. },
  3494. "require": {
  3495. "php": ">=7.2",
  3496. "psr/http-factory": "^1.0",
  3497. "psr/http-message": "^1.1 || ^2.0"
  3498. },
  3499. "provide": {
  3500. "php-http/message-factory-implementation": "1.0",
  3501. "psr/http-factory-implementation": "1.0",
  3502. "psr/http-message-implementation": "1.0"
  3503. },
  3504. "require-dev": {
  3505. "http-interop/http-factory-tests": "^0.9",
  3506. "php-http/message-factory": "^1.0",
  3507. "php-http/psr7-integration-tests": "^1.0",
  3508. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.4",
  3509. "symfony/error-handler": "^4.4"
  3510. },
  3511. "type": "library",
  3512. "extra": {
  3513. "branch-alias": {
  3514. "dev-master": "1.8-dev"
  3515. }
  3516. },
  3517. "autoload": {
  3518. "psr-4": {
  3519. "Nyholm\\Psr7\\": "src/"
  3520. }
  3521. },
  3522. "notification-url": "https://packagist.org/downloads/",
  3523. "license": [
  3524. "MIT"
  3525. ],
  3526. "authors": [
  3527. {
  3528. "name": "Tobias Nyholm",
  3529. "email": "tobias.nyholm@gmail.com"
  3530. },
  3531. {
  3532. "name": "Martijn van der Ven",
  3533. "email": "martijn@vanderven.se"
  3534. }
  3535. ],
  3536. "description": "A fast PHP7 implementation of PSR-7",
  3537. "homepage": "https://tnyholm.se",
  3538. "keywords": [
  3539. "psr-17",
  3540. "psr-7"
  3541. ],
  3542. "support": {
  3543. "issues": "https://github.com/Nyholm/psr7/issues",
  3544. "source": "https://github.com/Nyholm/psr7/tree/1.8.2"
  3545. },
  3546. "funding": [
  3547. {
  3548. "url": "https://github.com/Zegnat",
  3549. "type": "github"
  3550. },
  3551. {
  3552. "url": "https://github.com/nyholm",
  3553. "type": "github"
  3554. }
  3555. ],
  3556. "time": "2024-09-09T07:06:30+00:00"
  3557. },
  3558. {
  3559. "name": "nyholm/psr7-server",
  3560. "version": "1.1.0",
  3561. "source": {
  3562. "type": "git",
  3563. "url": "https://github.com/Nyholm/psr7-server.git",
  3564. "reference": "4335801d851f554ca43fa6e7d2602141538854dc"
  3565. },
  3566. "dist": {
  3567. "type": "zip",
  3568. "url": "https://api.github.com/repos/Nyholm/psr7-server/zipball/4335801d851f554ca43fa6e7d2602141538854dc",
  3569. "reference": "4335801d851f554ca43fa6e7d2602141538854dc",
  3570. "shasum": ""
  3571. },
  3572. "require": {
  3573. "php": "^7.1 || ^8.0",
  3574. "psr/http-factory": "^1.0",
  3575. "psr/http-message": "^1.0 || ^2.0"
  3576. },
  3577. "require-dev": {
  3578. "nyholm/nsa": "^1.1",
  3579. "nyholm/psr7": "^1.3",
  3580. "phpunit/phpunit": "^7.0 || ^8.5 || ^9.3"
  3581. },
  3582. "type": "library",
  3583. "autoload": {
  3584. "psr-4": {
  3585. "Nyholm\\Psr7Server\\": "src/"
  3586. }
  3587. },
  3588. "notification-url": "https://packagist.org/downloads/",
  3589. "license": [
  3590. "MIT"
  3591. ],
  3592. "authors": [
  3593. {
  3594. "name": "Tobias Nyholm",
  3595. "email": "tobias.nyholm@gmail.com"
  3596. },
  3597. {
  3598. "name": "Martijn van der Ven",
  3599. "email": "martijn@vanderven.se"
  3600. }
  3601. ],
  3602. "description": "Helper classes to handle PSR-7 server requests",
  3603. "homepage": "http://tnyholm.se",
  3604. "keywords": [
  3605. "psr-17",
  3606. "psr-7"
  3607. ],
  3608. "support": {
  3609. "issues": "https://github.com/Nyholm/psr7-server/issues",
  3610. "source": "https://github.com/Nyholm/psr7-server/tree/1.1.0"
  3611. },
  3612. "funding": [
  3613. {
  3614. "url": "https://github.com/Zegnat",
  3615. "type": "github"
  3616. },
  3617. {
  3618. "url": "https://github.com/nyholm",
  3619. "type": "github"
  3620. }
  3621. ],
  3622. "time": "2023-11-08T09:30:43+00:00"
  3623. },
  3624. {
  3625. "name": "overtrue/easy-sms",
  3626. "version": "3.0.1",
  3627. "source": {
  3628. "type": "git",
  3629. "url": "https://github.com/overtrue/easy-sms.git",
  3630. "reference": "b97d8b785ae07fe8c181de8d9d1f7f146a5977f7"
  3631. },
  3632. "dist": {
  3633. "type": "zip",
  3634. "url": "https://api.github.com/repos/overtrue/easy-sms/zipball/b97d8b785ae07fe8c181de8d9d1f7f146a5977f7",
  3635. "reference": "b97d8b785ae07fe8c181de8d9d1f7f146a5977f7",
  3636. "shasum": ""
  3637. },
  3638. "require": {
  3639. "ext-json": "*",
  3640. "guzzlehttp/guzzle": "^6.2 || ^7.0",
  3641. "php": ">=8.0"
  3642. },
  3643. "require-dev": {
  3644. "friendsofphp/php-cs-fixer": "^3.54",
  3645. "jetbrains/phpstorm-attributes": "^1.0",
  3646. "mockery/mockery": "^1.4.2",
  3647. "phpunit/phpunit": "^9.5.8"
  3648. },
  3649. "type": "library",
  3650. "autoload": {
  3651. "psr-4": {
  3652. "Overtrue\\EasySms\\": "src"
  3653. }
  3654. },
  3655. "notification-url": "https://packagist.org/downloads/",
  3656. "license": [
  3657. "MIT"
  3658. ],
  3659. "authors": [
  3660. {
  3661. "name": "overtrue",
  3662. "email": "i@overtrue.me"
  3663. }
  3664. ],
  3665. "description": "The easiest way to send short message.",
  3666. "support": {
  3667. "issues": "https://github.com/overtrue/easy-sms/issues",
  3668. "source": "https://github.com/overtrue/easy-sms/tree/3.0.1"
  3669. },
  3670. "funding": [
  3671. {
  3672. "url": "https://github.com/overtrue",
  3673. "type": "github"
  3674. }
  3675. ],
  3676. "time": "2024-07-16T06:07:02+00:00"
  3677. },
  3678. {
  3679. "name": "overtrue/laravel-wechat",
  3680. "version": "7.3.0",
  3681. "source": {
  3682. "type": "git",
  3683. "url": "https://github.com/overtrue/laravel-wechat.git",
  3684. "reference": "b3e89dddc45da4eb3d5322a10dee9dc65e619579"
  3685. },
  3686. "dist": {
  3687. "type": "zip",
  3688. "url": "https://api.github.com/repos/overtrue/laravel-wechat/zipball/b3e89dddc45da4eb3d5322a10dee9dc65e619579",
  3689. "reference": "b3e89dddc45da4eb3d5322a10dee9dc65e619579",
  3690. "shasum": ""
  3691. },
  3692. "require": {
  3693. "illuminate/container": "^9.0|^10.0|^11.0",
  3694. "w7corp/easywechat": "^6.0.0"
  3695. },
  3696. "require-dev": {
  3697. "brainmaestro/composer-git-hooks": "dev-master",
  3698. "jetbrains/phpstorm-attributes": "^1.0",
  3699. "laravel/framework": "^10.0",
  3700. "laravel/pint": "^1.5"
  3701. },
  3702. "type": "library",
  3703. "extra": {
  3704. "laravel": {
  3705. "providers": [
  3706. "Overtrue\\LaravelWeChat\\ServiceProvider"
  3707. ]
  3708. },
  3709. "hooks": {
  3710. "pre-commit": [
  3711. "composer check-style"
  3712. ],
  3713. "pre-push": [
  3714. "composer check-style"
  3715. ]
  3716. }
  3717. },
  3718. "autoload": {
  3719. "psr-4": {
  3720. "Overtrue\\LaravelWeChat\\": "src/"
  3721. }
  3722. },
  3723. "notification-url": "https://packagist.org/downloads/",
  3724. "license": [
  3725. "MIT"
  3726. ],
  3727. "authors": [
  3728. {
  3729. "name": "overtrue",
  3730. "email": "anzhengchao@gmail.com"
  3731. }
  3732. ],
  3733. "description": "微信 SDK for Laravel",
  3734. "keywords": [
  3735. "laravel",
  3736. "sdk",
  3737. "wechat",
  3738. "weixin"
  3739. ],
  3740. "support": {
  3741. "issues": "https://github.com/overtrue/laravel-wechat/issues",
  3742. "source": "https://github.com/overtrue/laravel-wechat/tree/7.3.0"
  3743. },
  3744. "funding": [
  3745. {
  3746. "url": "https://github.com/overtrue",
  3747. "type": "github"
  3748. }
  3749. ],
  3750. "time": "2024-03-13T02:06:36+00:00"
  3751. },
  3752. {
  3753. "name": "overtrue/socialite",
  3754. "version": "4.11.2",
  3755. "source": {
  3756. "type": "git",
  3757. "url": "https://github.com/overtrue/socialite.git",
  3758. "reference": "83dd537a88b30cd9204ee2c46a5b2e181bc1fa66"
  3759. },
  3760. "dist": {
  3761. "type": "zip",
  3762. "url": "https://api.github.com/repos/overtrue/socialite/zipball/83dd537a88b30cd9204ee2c46a5b2e181bc1fa66",
  3763. "reference": "83dd537a88b30cd9204ee2c46a5b2e181bc1fa66",
  3764. "shasum": ""
  3765. },
  3766. "require": {
  3767. "ext-json": "*",
  3768. "ext-openssl": "*",
  3769. "guzzlehttp/guzzle": "^7.0",
  3770. "php": ">=8.0.2"
  3771. },
  3772. "require-dev": {
  3773. "jetbrains/phpstorm-attributes": "^1.0",
  3774. "laravel/pint": "^1.2",
  3775. "mockery/mockery": "^1.3",
  3776. "phpstan/phpstan": "^1.7",
  3777. "phpunit/phpunit": "^11.3"
  3778. },
  3779. "type": "library",
  3780. "autoload": {
  3781. "files": [
  3782. "src/Contracts/FactoryInterface.php",
  3783. "src/Contracts/UserInterface.php",
  3784. "src/Contracts/ProviderInterface.php"
  3785. ],
  3786. "psr-4": {
  3787. "Overtrue\\Socialite\\": "src/"
  3788. }
  3789. },
  3790. "notification-url": "https://packagist.org/downloads/",
  3791. "license": [
  3792. "MIT"
  3793. ],
  3794. "authors": [
  3795. {
  3796. "name": "overtrue",
  3797. "email": "anzhengchao@gmail.com"
  3798. }
  3799. ],
  3800. "description": "A collection of OAuth 2 packages.",
  3801. "keywords": [
  3802. "Feishu",
  3803. "login",
  3804. "oauth",
  3805. "qcloud",
  3806. "qq",
  3807. "social",
  3808. "wechat",
  3809. "weibo"
  3810. ],
  3811. "support": {
  3812. "issues": "https://github.com/overtrue/socialite/issues",
  3813. "source": "https://github.com/overtrue/socialite/tree/4.11.2"
  3814. },
  3815. "funding": [
  3816. {
  3817. "url": "https://github.com/overtrue",
  3818. "type": "github"
  3819. }
  3820. ],
  3821. "time": "2024-10-08T16:23:14+00:00"
  3822. },
  3823. {
  3824. "name": "phpoption/phpoption",
  3825. "version": "1.9.3",
  3826. "source": {
  3827. "type": "git",
  3828. "url": "https://github.com/schmittjoh/php-option.git",
  3829. "reference": "e3fac8b24f56113f7cb96af14958c0dd16330f54"
  3830. },
  3831. "dist": {
  3832. "type": "zip",
  3833. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/e3fac8b24f56113f7cb96af14958c0dd16330f54",
  3834. "reference": "e3fac8b24f56113f7cb96af14958c0dd16330f54",
  3835. "shasum": ""
  3836. },
  3837. "require": {
  3838. "php": "^7.2.5 || ^8.0"
  3839. },
  3840. "require-dev": {
  3841. "bamarni/composer-bin-plugin": "^1.8.2",
  3842. "phpunit/phpunit": "^8.5.39 || ^9.6.20 || ^10.5.28"
  3843. },
  3844. "type": "library",
  3845. "extra": {
  3846. "bamarni-bin": {
  3847. "bin-links": true,
  3848. "forward-command": false
  3849. },
  3850. "branch-alias": {
  3851. "dev-master": "1.9-dev"
  3852. }
  3853. },
  3854. "autoload": {
  3855. "psr-4": {
  3856. "PhpOption\\": "src/PhpOption/"
  3857. }
  3858. },
  3859. "notification-url": "https://packagist.org/downloads/",
  3860. "license": [
  3861. "Apache-2.0"
  3862. ],
  3863. "authors": [
  3864. {
  3865. "name": "Johannes M. Schmitt",
  3866. "email": "schmittjoh@gmail.com",
  3867. "homepage": "https://github.com/schmittjoh"
  3868. },
  3869. {
  3870. "name": "Graham Campbell",
  3871. "email": "hello@gjcampbell.co.uk",
  3872. "homepage": "https://github.com/GrahamCampbell"
  3873. }
  3874. ],
  3875. "description": "Option Type for PHP",
  3876. "keywords": [
  3877. "language",
  3878. "option",
  3879. "php",
  3880. "type"
  3881. ],
  3882. "support": {
  3883. "issues": "https://github.com/schmittjoh/php-option/issues",
  3884. "source": "https://github.com/schmittjoh/php-option/tree/1.9.3"
  3885. },
  3886. "funding": [
  3887. {
  3888. "url": "https://github.com/GrahamCampbell",
  3889. "type": "github"
  3890. },
  3891. {
  3892. "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption",
  3893. "type": "tidelift"
  3894. }
  3895. ],
  3896. "time": "2024-07-20T21:41:07+00:00"
  3897. },
  3898. {
  3899. "name": "psr/cache",
  3900. "version": "3.0.0",
  3901. "source": {
  3902. "type": "git",
  3903. "url": "https://github.com/php-fig/cache.git",
  3904. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf"
  3905. },
  3906. "dist": {
  3907. "type": "zip",
  3908. "url": "https://api.github.com/repos/php-fig/cache/zipball/aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  3909. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  3910. "shasum": ""
  3911. },
  3912. "require": {
  3913. "php": ">=8.0.0"
  3914. },
  3915. "type": "library",
  3916. "extra": {
  3917. "branch-alias": {
  3918. "dev-master": "1.0.x-dev"
  3919. }
  3920. },
  3921. "autoload": {
  3922. "psr-4": {
  3923. "Psr\\Cache\\": "src/"
  3924. }
  3925. },
  3926. "notification-url": "https://packagist.org/downloads/",
  3927. "license": [
  3928. "MIT"
  3929. ],
  3930. "authors": [
  3931. {
  3932. "name": "PHP-FIG",
  3933. "homepage": "https://www.php-fig.org/"
  3934. }
  3935. ],
  3936. "description": "Common interface for caching libraries",
  3937. "keywords": [
  3938. "cache",
  3939. "psr",
  3940. "psr-6"
  3941. ],
  3942. "support": {
  3943. "source": "https://github.com/php-fig/cache/tree/3.0.0"
  3944. },
  3945. "time": "2021-02-03T23:26:27+00:00"
  3946. },
  3947. {
  3948. "name": "psr/clock",
  3949. "version": "1.0.0",
  3950. "source": {
  3951. "type": "git",
  3952. "url": "https://github.com/php-fig/clock.git",
  3953. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d"
  3954. },
  3955. "dist": {
  3956. "type": "zip",
  3957. "url": "https://api.github.com/repos/php-fig/clock/zipball/e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  3958. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  3959. "shasum": ""
  3960. },
  3961. "require": {
  3962. "php": "^7.0 || ^8.0"
  3963. },
  3964. "type": "library",
  3965. "autoload": {
  3966. "psr-4": {
  3967. "Psr\\Clock\\": "src/"
  3968. }
  3969. },
  3970. "notification-url": "https://packagist.org/downloads/",
  3971. "license": [
  3972. "MIT"
  3973. ],
  3974. "authors": [
  3975. {
  3976. "name": "PHP-FIG",
  3977. "homepage": "https://www.php-fig.org/"
  3978. }
  3979. ],
  3980. "description": "Common interface for reading the clock.",
  3981. "homepage": "https://github.com/php-fig/clock",
  3982. "keywords": [
  3983. "clock",
  3984. "now",
  3985. "psr",
  3986. "psr-20",
  3987. "time"
  3988. ],
  3989. "support": {
  3990. "issues": "https://github.com/php-fig/clock/issues",
  3991. "source": "https://github.com/php-fig/clock/tree/1.0.0"
  3992. },
  3993. "time": "2022-11-25T14:36:26+00:00"
  3994. },
  3995. {
  3996. "name": "psr/container",
  3997. "version": "2.0.2",
  3998. "source": {
  3999. "type": "git",
  4000. "url": "https://github.com/php-fig/container.git",
  4001. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963"
  4002. },
  4003. "dist": {
  4004. "type": "zip",
  4005. "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  4006. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  4007. "shasum": ""
  4008. },
  4009. "require": {
  4010. "php": ">=7.4.0"
  4011. },
  4012. "type": "library",
  4013. "extra": {
  4014. "branch-alias": {
  4015. "dev-master": "2.0.x-dev"
  4016. }
  4017. },
  4018. "autoload": {
  4019. "psr-4": {
  4020. "Psr\\Container\\": "src/"
  4021. }
  4022. },
  4023. "notification-url": "https://packagist.org/downloads/",
  4024. "license": [
  4025. "MIT"
  4026. ],
  4027. "authors": [
  4028. {
  4029. "name": "PHP-FIG",
  4030. "homepage": "https://www.php-fig.org/"
  4031. }
  4032. ],
  4033. "description": "Common Container Interface (PHP FIG PSR-11)",
  4034. "homepage": "https://github.com/php-fig/container",
  4035. "keywords": [
  4036. "PSR-11",
  4037. "container",
  4038. "container-interface",
  4039. "container-interop",
  4040. "psr"
  4041. ],
  4042. "support": {
  4043. "issues": "https://github.com/php-fig/container/issues",
  4044. "source": "https://github.com/php-fig/container/tree/2.0.2"
  4045. },
  4046. "time": "2021-11-05T16:47:00+00:00"
  4047. },
  4048. {
  4049. "name": "psr/event-dispatcher",
  4050. "version": "1.0.0",
  4051. "source": {
  4052. "type": "git",
  4053. "url": "https://github.com/php-fig/event-dispatcher.git",
  4054. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  4055. },
  4056. "dist": {
  4057. "type": "zip",
  4058. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  4059. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  4060. "shasum": ""
  4061. },
  4062. "require": {
  4063. "php": ">=7.2.0"
  4064. },
  4065. "type": "library",
  4066. "extra": {
  4067. "branch-alias": {
  4068. "dev-master": "1.0.x-dev"
  4069. }
  4070. },
  4071. "autoload": {
  4072. "psr-4": {
  4073. "Psr\\EventDispatcher\\": "src/"
  4074. }
  4075. },
  4076. "notification-url": "https://packagist.org/downloads/",
  4077. "license": [
  4078. "MIT"
  4079. ],
  4080. "authors": [
  4081. {
  4082. "name": "PHP-FIG",
  4083. "homepage": "http://www.php-fig.org/"
  4084. }
  4085. ],
  4086. "description": "Standard interfaces for event handling.",
  4087. "keywords": [
  4088. "events",
  4089. "psr",
  4090. "psr-14"
  4091. ],
  4092. "support": {
  4093. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  4094. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  4095. },
  4096. "time": "2019-01-08T18:20:26+00:00"
  4097. },
  4098. {
  4099. "name": "psr/http-client",
  4100. "version": "1.0.3",
  4101. "source": {
  4102. "type": "git",
  4103. "url": "https://github.com/php-fig/http-client.git",
  4104. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90"
  4105. },
  4106. "dist": {
  4107. "type": "zip",
  4108. "url": "https://api.github.com/repos/php-fig/http-client/zipball/bb5906edc1c324c9a05aa0873d40117941e5fa90",
  4109. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90",
  4110. "shasum": ""
  4111. },
  4112. "require": {
  4113. "php": "^7.0 || ^8.0",
  4114. "psr/http-message": "^1.0 || ^2.0"
  4115. },
  4116. "type": "library",
  4117. "extra": {
  4118. "branch-alias": {
  4119. "dev-master": "1.0.x-dev"
  4120. }
  4121. },
  4122. "autoload": {
  4123. "psr-4": {
  4124. "Psr\\Http\\Client\\": "src/"
  4125. }
  4126. },
  4127. "notification-url": "https://packagist.org/downloads/",
  4128. "license": [
  4129. "MIT"
  4130. ],
  4131. "authors": [
  4132. {
  4133. "name": "PHP-FIG",
  4134. "homepage": "https://www.php-fig.org/"
  4135. }
  4136. ],
  4137. "description": "Common interface for HTTP clients",
  4138. "homepage": "https://github.com/php-fig/http-client",
  4139. "keywords": [
  4140. "http",
  4141. "http-client",
  4142. "psr",
  4143. "psr-18"
  4144. ],
  4145. "support": {
  4146. "source": "https://github.com/php-fig/http-client"
  4147. },
  4148. "time": "2023-09-23T14:17:50+00:00"
  4149. },
  4150. {
  4151. "name": "psr/http-factory",
  4152. "version": "1.1.0",
  4153. "source": {
  4154. "type": "git",
  4155. "url": "https://github.com/php-fig/http-factory.git",
  4156. "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a"
  4157. },
  4158. "dist": {
  4159. "type": "zip",
  4160. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
  4161. "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
  4162. "shasum": ""
  4163. },
  4164. "require": {
  4165. "php": ">=7.1",
  4166. "psr/http-message": "^1.0 || ^2.0"
  4167. },
  4168. "type": "library",
  4169. "extra": {
  4170. "branch-alias": {
  4171. "dev-master": "1.0.x-dev"
  4172. }
  4173. },
  4174. "autoload": {
  4175. "psr-4": {
  4176. "Psr\\Http\\Message\\": "src/"
  4177. }
  4178. },
  4179. "notification-url": "https://packagist.org/downloads/",
  4180. "license": [
  4181. "MIT"
  4182. ],
  4183. "authors": [
  4184. {
  4185. "name": "PHP-FIG",
  4186. "homepage": "https://www.php-fig.org/"
  4187. }
  4188. ],
  4189. "description": "PSR-17: Common interfaces for PSR-7 HTTP message factories",
  4190. "keywords": [
  4191. "factory",
  4192. "http",
  4193. "message",
  4194. "psr",
  4195. "psr-17",
  4196. "psr-7",
  4197. "request",
  4198. "response"
  4199. ],
  4200. "support": {
  4201. "source": "https://github.com/php-fig/http-factory"
  4202. },
  4203. "time": "2024-04-15T12:06:14+00:00"
  4204. },
  4205. {
  4206. "name": "psr/http-message",
  4207. "version": "2.0",
  4208. "source": {
  4209. "type": "git",
  4210. "url": "https://github.com/php-fig/http-message.git",
  4211. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71"
  4212. },
  4213. "dist": {
  4214. "type": "zip",
  4215. "url": "https://api.github.com/repos/php-fig/http-message/zipball/402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  4216. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  4217. "shasum": ""
  4218. },
  4219. "require": {
  4220. "php": "^7.2 || ^8.0"
  4221. },
  4222. "type": "library",
  4223. "extra": {
  4224. "branch-alias": {
  4225. "dev-master": "2.0.x-dev"
  4226. }
  4227. },
  4228. "autoload": {
  4229. "psr-4": {
  4230. "Psr\\Http\\Message\\": "src/"
  4231. }
  4232. },
  4233. "notification-url": "https://packagist.org/downloads/",
  4234. "license": [
  4235. "MIT"
  4236. ],
  4237. "authors": [
  4238. {
  4239. "name": "PHP-FIG",
  4240. "homepage": "https://www.php-fig.org/"
  4241. }
  4242. ],
  4243. "description": "Common interface for HTTP messages",
  4244. "homepage": "https://github.com/php-fig/http-message",
  4245. "keywords": [
  4246. "http",
  4247. "http-message",
  4248. "psr",
  4249. "psr-7",
  4250. "request",
  4251. "response"
  4252. ],
  4253. "support": {
  4254. "source": "https://github.com/php-fig/http-message/tree/2.0"
  4255. },
  4256. "time": "2023-04-04T09:54:51+00:00"
  4257. },
  4258. {
  4259. "name": "psr/log",
  4260. "version": "3.0.2",
  4261. "source": {
  4262. "type": "git",
  4263. "url": "https://github.com/php-fig/log.git",
  4264. "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3"
  4265. },
  4266. "dist": {
  4267. "type": "zip",
  4268. "url": "https://api.github.com/repos/php-fig/log/zipball/f16e1d5863e37f8d8c2a01719f5b34baa2b714d3",
  4269. "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3",
  4270. "shasum": ""
  4271. },
  4272. "require": {
  4273. "php": ">=8.0.0"
  4274. },
  4275. "type": "library",
  4276. "extra": {
  4277. "branch-alias": {
  4278. "dev-master": "3.x-dev"
  4279. }
  4280. },
  4281. "autoload": {
  4282. "psr-4": {
  4283. "Psr\\Log\\": "src"
  4284. }
  4285. },
  4286. "notification-url": "https://packagist.org/downloads/",
  4287. "license": [
  4288. "MIT"
  4289. ],
  4290. "authors": [
  4291. {
  4292. "name": "PHP-FIG",
  4293. "homepage": "https://www.php-fig.org/"
  4294. }
  4295. ],
  4296. "description": "Common interface for logging libraries",
  4297. "homepage": "https://github.com/php-fig/log",
  4298. "keywords": [
  4299. "log",
  4300. "psr",
  4301. "psr-3"
  4302. ],
  4303. "support": {
  4304. "source": "https://github.com/php-fig/log/tree/3.0.2"
  4305. },
  4306. "time": "2024-09-11T13:17:53+00:00"
  4307. },
  4308. {
  4309. "name": "psr/simple-cache",
  4310. "version": "3.0.0",
  4311. "source": {
  4312. "type": "git",
  4313. "url": "https://github.com/php-fig/simple-cache.git",
  4314. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865"
  4315. },
  4316. "dist": {
  4317. "type": "zip",
  4318. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/764e0b3939f5ca87cb904f570ef9be2d78a07865",
  4319. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865",
  4320. "shasum": ""
  4321. },
  4322. "require": {
  4323. "php": ">=8.0.0"
  4324. },
  4325. "type": "library",
  4326. "extra": {
  4327. "branch-alias": {
  4328. "dev-master": "3.0.x-dev"
  4329. }
  4330. },
  4331. "autoload": {
  4332. "psr-4": {
  4333. "Psr\\SimpleCache\\": "src/"
  4334. }
  4335. },
  4336. "notification-url": "https://packagist.org/downloads/",
  4337. "license": [
  4338. "MIT"
  4339. ],
  4340. "authors": [
  4341. {
  4342. "name": "PHP-FIG",
  4343. "homepage": "https://www.php-fig.org/"
  4344. }
  4345. ],
  4346. "description": "Common interfaces for simple caching",
  4347. "keywords": [
  4348. "cache",
  4349. "caching",
  4350. "psr",
  4351. "psr-16",
  4352. "simple-cache"
  4353. ],
  4354. "support": {
  4355. "source": "https://github.com/php-fig/simple-cache/tree/3.0.0"
  4356. },
  4357. "time": "2021-10-29T13:26:27+00:00"
  4358. },
  4359. {
  4360. "name": "psy/psysh",
  4361. "version": "v0.12.4",
  4362. "source": {
  4363. "type": "git",
  4364. "url": "https://github.com/bobthecow/psysh.git",
  4365. "reference": "2fd717afa05341b4f8152547f142cd2f130f6818"
  4366. },
  4367. "dist": {
  4368. "type": "zip",
  4369. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/2fd717afa05341b4f8152547f142cd2f130f6818",
  4370. "reference": "2fd717afa05341b4f8152547f142cd2f130f6818",
  4371. "shasum": ""
  4372. },
  4373. "require": {
  4374. "ext-json": "*",
  4375. "ext-tokenizer": "*",
  4376. "nikic/php-parser": "^5.0 || ^4.0",
  4377. "php": "^8.0 || ^7.4",
  4378. "symfony/console": "^7.0 || ^6.0 || ^5.0 || ^4.0 || ^3.4",
  4379. "symfony/var-dumper": "^7.0 || ^6.0 || ^5.0 || ^4.0 || ^3.4"
  4380. },
  4381. "conflict": {
  4382. "symfony/console": "4.4.37 || 5.3.14 || 5.3.15 || 5.4.3 || 5.4.4 || 6.0.3 || 6.0.4"
  4383. },
  4384. "require-dev": {
  4385. "bamarni/composer-bin-plugin": "^1.2"
  4386. },
  4387. "suggest": {
  4388. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  4389. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  4390. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well."
  4391. },
  4392. "bin": [
  4393. "bin/psysh"
  4394. ],
  4395. "type": "library",
  4396. "extra": {
  4397. "branch-alias": {
  4398. "dev-main": "0.12.x-dev"
  4399. },
  4400. "bamarni-bin": {
  4401. "bin-links": false,
  4402. "forward-command": false
  4403. }
  4404. },
  4405. "autoload": {
  4406. "files": [
  4407. "src/functions.php"
  4408. ],
  4409. "psr-4": {
  4410. "Psy\\": "src/"
  4411. }
  4412. },
  4413. "notification-url": "https://packagist.org/downloads/",
  4414. "license": [
  4415. "MIT"
  4416. ],
  4417. "authors": [
  4418. {
  4419. "name": "Justin Hileman",
  4420. "email": "justin@justinhileman.info",
  4421. "homepage": "http://justinhileman.com"
  4422. }
  4423. ],
  4424. "description": "An interactive shell for modern PHP.",
  4425. "homepage": "http://psysh.org",
  4426. "keywords": [
  4427. "REPL",
  4428. "console",
  4429. "interactive",
  4430. "shell"
  4431. ],
  4432. "support": {
  4433. "issues": "https://github.com/bobthecow/psysh/issues",
  4434. "source": "https://github.com/bobthecow/psysh/tree/v0.12.4"
  4435. },
  4436. "time": "2024-06-10T01:18:23+00:00"
  4437. },
  4438. {
  4439. "name": "ralouphie/getallheaders",
  4440. "version": "3.0.3",
  4441. "source": {
  4442. "type": "git",
  4443. "url": "https://github.com/ralouphie/getallheaders.git",
  4444. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  4445. },
  4446. "dist": {
  4447. "type": "zip",
  4448. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  4449. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  4450. "shasum": ""
  4451. },
  4452. "require": {
  4453. "php": ">=5.6"
  4454. },
  4455. "require-dev": {
  4456. "php-coveralls/php-coveralls": "^2.1",
  4457. "phpunit/phpunit": "^5 || ^6.5"
  4458. },
  4459. "type": "library",
  4460. "autoload": {
  4461. "files": [
  4462. "src/getallheaders.php"
  4463. ]
  4464. },
  4465. "notification-url": "https://packagist.org/downloads/",
  4466. "license": [
  4467. "MIT"
  4468. ],
  4469. "authors": [
  4470. {
  4471. "name": "Ralph Khattar",
  4472. "email": "ralph.khattar@gmail.com"
  4473. }
  4474. ],
  4475. "description": "A polyfill for getallheaders.",
  4476. "support": {
  4477. "issues": "https://github.com/ralouphie/getallheaders/issues",
  4478. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  4479. },
  4480. "time": "2019-03-08T08:55:37+00:00"
  4481. },
  4482. {
  4483. "name": "ramsey/collection",
  4484. "version": "2.0.0",
  4485. "source": {
  4486. "type": "git",
  4487. "url": "https://github.com/ramsey/collection.git",
  4488. "reference": "a4b48764bfbb8f3a6a4d1aeb1a35bb5e9ecac4a5"
  4489. },
  4490. "dist": {
  4491. "type": "zip",
  4492. "url": "https://api.github.com/repos/ramsey/collection/zipball/a4b48764bfbb8f3a6a4d1aeb1a35bb5e9ecac4a5",
  4493. "reference": "a4b48764bfbb8f3a6a4d1aeb1a35bb5e9ecac4a5",
  4494. "shasum": ""
  4495. },
  4496. "require": {
  4497. "php": "^8.1"
  4498. },
  4499. "require-dev": {
  4500. "captainhook/plugin-composer": "^5.3",
  4501. "ergebnis/composer-normalize": "^2.28.3",
  4502. "fakerphp/faker": "^1.21",
  4503. "hamcrest/hamcrest-php": "^2.0",
  4504. "jangregor/phpstan-prophecy": "^1.0",
  4505. "mockery/mockery": "^1.5",
  4506. "php-parallel-lint/php-console-highlighter": "^1.0",
  4507. "php-parallel-lint/php-parallel-lint": "^1.3",
  4508. "phpcsstandards/phpcsutils": "^1.0.0-rc1",
  4509. "phpspec/prophecy-phpunit": "^2.0",
  4510. "phpstan/extension-installer": "^1.2",
  4511. "phpstan/phpstan": "^1.9",
  4512. "phpstan/phpstan-mockery": "^1.1",
  4513. "phpstan/phpstan-phpunit": "^1.3",
  4514. "phpunit/phpunit": "^9.5",
  4515. "psalm/plugin-mockery": "^1.1",
  4516. "psalm/plugin-phpunit": "^0.18.4",
  4517. "ramsey/coding-standard": "^2.0.3",
  4518. "ramsey/conventional-commits": "^1.3",
  4519. "vimeo/psalm": "^5.4"
  4520. },
  4521. "type": "library",
  4522. "extra": {
  4523. "captainhook": {
  4524. "force-install": true
  4525. },
  4526. "ramsey/conventional-commits": {
  4527. "configFile": "conventional-commits.json"
  4528. }
  4529. },
  4530. "autoload": {
  4531. "psr-4": {
  4532. "Ramsey\\Collection\\": "src/"
  4533. }
  4534. },
  4535. "notification-url": "https://packagist.org/downloads/",
  4536. "license": [
  4537. "MIT"
  4538. ],
  4539. "authors": [
  4540. {
  4541. "name": "Ben Ramsey",
  4542. "email": "ben@benramsey.com",
  4543. "homepage": "https://benramsey.com"
  4544. }
  4545. ],
  4546. "description": "A PHP library for representing and manipulating collections.",
  4547. "keywords": [
  4548. "array",
  4549. "collection",
  4550. "hash",
  4551. "map",
  4552. "queue",
  4553. "set"
  4554. ],
  4555. "support": {
  4556. "issues": "https://github.com/ramsey/collection/issues",
  4557. "source": "https://github.com/ramsey/collection/tree/2.0.0"
  4558. },
  4559. "funding": [
  4560. {
  4561. "url": "https://github.com/ramsey",
  4562. "type": "github"
  4563. },
  4564. {
  4565. "url": "https://tidelift.com/funding/github/packagist/ramsey/collection",
  4566. "type": "tidelift"
  4567. }
  4568. ],
  4569. "time": "2022-12-31T21:50:55+00:00"
  4570. },
  4571. {
  4572. "name": "ramsey/uuid",
  4573. "version": "4.7.6",
  4574. "source": {
  4575. "type": "git",
  4576. "url": "https://github.com/ramsey/uuid.git",
  4577. "reference": "91039bc1faa45ba123c4328958e620d382ec7088"
  4578. },
  4579. "dist": {
  4580. "type": "zip",
  4581. "url": "https://api.github.com/repos/ramsey/uuid/zipball/91039bc1faa45ba123c4328958e620d382ec7088",
  4582. "reference": "91039bc1faa45ba123c4328958e620d382ec7088",
  4583. "shasum": ""
  4584. },
  4585. "require": {
  4586. "brick/math": "^0.8.8 || ^0.9 || ^0.10 || ^0.11 || ^0.12",
  4587. "ext-json": "*",
  4588. "php": "^8.0",
  4589. "ramsey/collection": "^1.2 || ^2.0"
  4590. },
  4591. "replace": {
  4592. "rhumsaa/uuid": "self.version"
  4593. },
  4594. "require-dev": {
  4595. "captainhook/captainhook": "^5.10",
  4596. "captainhook/plugin-composer": "^5.3",
  4597. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  4598. "doctrine/annotations": "^1.8",
  4599. "ergebnis/composer-normalize": "^2.15",
  4600. "mockery/mockery": "^1.3",
  4601. "paragonie/random-lib": "^2",
  4602. "php-mock/php-mock": "^2.2",
  4603. "php-mock/php-mock-mockery": "^1.3",
  4604. "php-parallel-lint/php-parallel-lint": "^1.1",
  4605. "phpbench/phpbench": "^1.0",
  4606. "phpstan/extension-installer": "^1.1",
  4607. "phpstan/phpstan": "^1.8",
  4608. "phpstan/phpstan-mockery": "^1.1",
  4609. "phpstan/phpstan-phpunit": "^1.1",
  4610. "phpunit/phpunit": "^8.5 || ^9",
  4611. "ramsey/composer-repl": "^1.4",
  4612. "slevomat/coding-standard": "^8.4",
  4613. "squizlabs/php_codesniffer": "^3.5",
  4614. "vimeo/psalm": "^4.9"
  4615. },
  4616. "suggest": {
  4617. "ext-bcmath": "Enables faster math with arbitrary-precision integers using BCMath.",
  4618. "ext-gmp": "Enables faster math with arbitrary-precision integers using GMP.",
  4619. "ext-uuid": "Enables the use of PeclUuidTimeGenerator and PeclUuidRandomGenerator.",
  4620. "paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
  4621. "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type."
  4622. },
  4623. "type": "library",
  4624. "extra": {
  4625. "captainhook": {
  4626. "force-install": true
  4627. }
  4628. },
  4629. "autoload": {
  4630. "files": [
  4631. "src/functions.php"
  4632. ],
  4633. "psr-4": {
  4634. "Ramsey\\Uuid\\": "src/"
  4635. }
  4636. },
  4637. "notification-url": "https://packagist.org/downloads/",
  4638. "license": [
  4639. "MIT"
  4640. ],
  4641. "description": "A PHP library for generating and working with universally unique identifiers (UUIDs).",
  4642. "keywords": [
  4643. "guid",
  4644. "identifier",
  4645. "uuid"
  4646. ],
  4647. "support": {
  4648. "issues": "https://github.com/ramsey/uuid/issues",
  4649. "source": "https://github.com/ramsey/uuid/tree/4.7.6"
  4650. },
  4651. "funding": [
  4652. {
  4653. "url": "https://github.com/ramsey",
  4654. "type": "github"
  4655. },
  4656. {
  4657. "url": "https://tidelift.com/funding/github/packagist/ramsey/uuid",
  4658. "type": "tidelift"
  4659. }
  4660. ],
  4661. "time": "2024-04-27T21:32:50+00:00"
  4662. },
  4663. {
  4664. "name": "rap2hpoutre/laravel-log-viewer",
  4665. "version": "v2.4.0",
  4666. "source": {
  4667. "type": "git",
  4668. "url": "https://github.com/rap2hpoutre/laravel-log-viewer.git",
  4669. "reference": "49c52ae197b3d4f7f9e43d328628edc4bc529afa"
  4670. },
  4671. "dist": {
  4672. "type": "zip",
  4673. "url": "https://api.github.com/repos/rap2hpoutre/laravel-log-viewer/zipball/49c52ae197b3d4f7f9e43d328628edc4bc529afa",
  4674. "reference": "49c52ae197b3d4f7f9e43d328628edc4bc529afa",
  4675. "shasum": ""
  4676. },
  4677. "require": {
  4678. "illuminate/support": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
  4679. "php": "^7.2|^8.0"
  4680. },
  4681. "require-dev": {
  4682. "orchestra/testbench": "^4.0|^5.0|^6.0|^7.0|^8.0|^9.0",
  4683. "phpunit/phpunit": "^7||^8.4|^9.3.3|^10.1"
  4684. },
  4685. "type": "laravel-package",
  4686. "extra": {
  4687. "laravel": {
  4688. "providers": [
  4689. "Rap2hpoutre\\LaravelLogViewer\\LaravelLogViewerServiceProvider"
  4690. ]
  4691. }
  4692. },
  4693. "autoload": {
  4694. "psr-0": {
  4695. "Rap2hpoutre\\LaravelLogViewer\\": "src/"
  4696. },
  4697. "classmap": [
  4698. "src/controllers"
  4699. ]
  4700. },
  4701. "notification-url": "https://packagist.org/downloads/",
  4702. "license": [
  4703. "MIT"
  4704. ],
  4705. "authors": [
  4706. {
  4707. "name": "rap2hpoutre",
  4708. "email": "raphaelht@gmail.com"
  4709. }
  4710. ],
  4711. "description": "A Laravel log reader",
  4712. "keywords": [
  4713. "laravel",
  4714. "log",
  4715. "log-reader",
  4716. "log-viewer",
  4717. "logging",
  4718. "lumen"
  4719. ],
  4720. "support": {
  4721. "issues": "https://github.com/rap2hpoutre/laravel-log-viewer/issues",
  4722. "source": "https://github.com/rap2hpoutre/laravel-log-viewer/tree/v2.4.0"
  4723. },
  4724. "time": "2024-03-20T08:49:53+00:00"
  4725. },
  4726. {
  4727. "name": "shalvah/clara",
  4728. "version": "3.2.0",
  4729. "source": {
  4730. "type": "git",
  4731. "url": "https://github.com/shalvah/clara.git",
  4732. "reference": "cdbb5737cbdd101756d97dd2279a979a1af7710b"
  4733. },
  4734. "dist": {
  4735. "type": "zip",
  4736. "url": "https://api.github.com/repos/shalvah/clara/zipball/cdbb5737cbdd101756d97dd2279a979a1af7710b",
  4737. "reference": "cdbb5737cbdd101756d97dd2279a979a1af7710b",
  4738. "shasum": ""
  4739. },
  4740. "require": {
  4741. "php": ">=7.4",
  4742. "symfony/console": "^4.0|^5.0|^6.0|^7.0"
  4743. },
  4744. "require-dev": {
  4745. "eloquent/phony-phpunit": "^7.0",
  4746. "phpunit/phpunit": "^9.1"
  4747. },
  4748. "type": "library",
  4749. "autoload": {
  4750. "files": [
  4751. "helpers.php"
  4752. ],
  4753. "psr-4": {
  4754. "Shalvah\\Clara\\": "src/"
  4755. }
  4756. },
  4757. "notification-url": "https://packagist.org/downloads/",
  4758. "license": [
  4759. "MIT"
  4760. ],
  4761. "description": "🔊 Simple, pretty, testable console output for CLI apps.",
  4762. "keywords": [
  4763. "cli",
  4764. "log",
  4765. "logging"
  4766. ],
  4767. "support": {
  4768. "issues": "https://github.com/shalvah/clara/issues",
  4769. "source": "https://github.com/shalvah/clara/tree/3.2.0"
  4770. },
  4771. "time": "2024-02-27T20:30:59+00:00"
  4772. },
  4773. {
  4774. "name": "shalvah/upgrader",
  4775. "version": "0.6.0",
  4776. "source": {
  4777. "type": "git",
  4778. "url": "https://github.com/shalvah/upgrader.git",
  4779. "reference": "d95ed17fe9f5e1ee7d47ad835595f1af080a867f"
  4780. },
  4781. "dist": {
  4782. "type": "zip",
  4783. "url": "https://api.github.com/repos/shalvah/upgrader/zipball/d95ed17fe9f5e1ee7d47ad835595f1af080a867f",
  4784. "reference": "d95ed17fe9f5e1ee7d47ad835595f1af080a867f",
  4785. "shasum": ""
  4786. },
  4787. "require": {
  4788. "illuminate/support": ">=8.0",
  4789. "nikic/php-parser": "^5.0",
  4790. "php": ">=8.0"
  4791. },
  4792. "require-dev": {
  4793. "dms/phpunit-arraysubset-asserts": "^0.2.0",
  4794. "pestphp/pest": "^1.21",
  4795. "phpstan/phpstan": "^1.0",
  4796. "spatie/ray": "^1.33"
  4797. },
  4798. "type": "library",
  4799. "autoload": {
  4800. "psr-4": {
  4801. "Shalvah\\Upgrader\\": "src/"
  4802. }
  4803. },
  4804. "notification-url": "https://packagist.org/downloads/",
  4805. "license": [
  4806. "MIT"
  4807. ],
  4808. "authors": [
  4809. {
  4810. "name": "Shalvah",
  4811. "email": "hello@shalvah.me"
  4812. }
  4813. ],
  4814. "description": "Create automatic upgrades for your package.",
  4815. "homepage": "http://github.com/shalvah/upgrader",
  4816. "keywords": [
  4817. "upgrade"
  4818. ],
  4819. "support": {
  4820. "issues": "https://github.com/shalvah/upgrader/issues",
  4821. "source": "https://github.com/shalvah/upgrader/tree/0.6.0"
  4822. },
  4823. "funding": [
  4824. {
  4825. "url": "https://patreon.com/shalvah",
  4826. "type": "patreon"
  4827. }
  4828. ],
  4829. "time": "2024-02-20T11:51:46+00:00"
  4830. },
  4831. {
  4832. "name": "simplesoftwareio/simple-qrcode",
  4833. "version": "4.2.0",
  4834. "source": {
  4835. "type": "git",
  4836. "url": "https://github.com/SimpleSoftwareIO/simple-qrcode.git",
  4837. "reference": "916db7948ca6772d54bb617259c768c9cdc8d537"
  4838. },
  4839. "dist": {
  4840. "type": "zip",
  4841. "url": "https://api.github.com/repos/SimpleSoftwareIO/simple-qrcode/zipball/916db7948ca6772d54bb617259c768c9cdc8d537",
  4842. "reference": "916db7948ca6772d54bb617259c768c9cdc8d537",
  4843. "shasum": ""
  4844. },
  4845. "require": {
  4846. "bacon/bacon-qr-code": "^2.0",
  4847. "ext-gd": "*",
  4848. "php": ">=7.2|^8.0"
  4849. },
  4850. "require-dev": {
  4851. "mockery/mockery": "~1",
  4852. "phpunit/phpunit": "~9"
  4853. },
  4854. "suggest": {
  4855. "ext-imagick": "Allows the generation of PNG QrCodes.",
  4856. "illuminate/support": "Allows for use within Laravel."
  4857. },
  4858. "type": "library",
  4859. "extra": {
  4860. "laravel": {
  4861. "providers": [
  4862. "SimpleSoftwareIO\\QrCode\\QrCodeServiceProvider"
  4863. ],
  4864. "aliases": {
  4865. "QrCode": "SimpleSoftwareIO\\QrCode\\Facades\\QrCode"
  4866. }
  4867. }
  4868. },
  4869. "autoload": {
  4870. "psr-4": {
  4871. "SimpleSoftwareIO\\QrCode\\": "src"
  4872. }
  4873. },
  4874. "notification-url": "https://packagist.org/downloads/",
  4875. "license": [
  4876. "MIT"
  4877. ],
  4878. "authors": [
  4879. {
  4880. "name": "Simple Software LLC",
  4881. "email": "support@simplesoftware.io"
  4882. }
  4883. ],
  4884. "description": "Simple QrCode is a QR code generator made for Laravel.",
  4885. "homepage": "https://www.simplesoftware.io/#/docs/simple-qrcode",
  4886. "keywords": [
  4887. "Simple",
  4888. "generator",
  4889. "laravel",
  4890. "qrcode",
  4891. "wrapper"
  4892. ],
  4893. "support": {
  4894. "issues": "https://github.com/SimpleSoftwareIO/simple-qrcode/issues",
  4895. "source": "https://github.com/SimpleSoftwareIO/simple-qrcode/tree/4.2.0"
  4896. },
  4897. "time": "2021-02-08T20:43:55+00:00"
  4898. },
  4899. {
  4900. "name": "slowlyo/laravel-support",
  4901. "version": "v0.0.6",
  4902. "source": {
  4903. "type": "git",
  4904. "url": "https://github.com/slowlyo/laravel-support.git",
  4905. "reference": "71cd69f7ffd6eec829afb970733b54c8d860b29f"
  4906. },
  4907. "dist": {
  4908. "type": "zip",
  4909. "url": "https://api.github.com/repos/slowlyo/laravel-support/zipball/71cd69f7ffd6eec829afb970733b54c8d860b29f",
  4910. "reference": "71cd69f7ffd6eec829afb970733b54c8d860b29f",
  4911. "shasum": ""
  4912. },
  4913. "require": {
  4914. "ext-bcmath": "*",
  4915. "ext-json": "*",
  4916. "laravel/framework": ">=8",
  4917. "php": ">=7.4.0"
  4918. },
  4919. "type": "library",
  4920. "extra": {
  4921. "laravel": {
  4922. "providers": [
  4923. "Slowlyo\\Support\\SupportServiceProvider"
  4924. ]
  4925. }
  4926. },
  4927. "autoload": {
  4928. "files": [
  4929. "./src/functions.php"
  4930. ],
  4931. "psr-4": {
  4932. "Slowlyo\\Support\\": "src/"
  4933. }
  4934. },
  4935. "notification-url": "https://packagist.org/downloads/",
  4936. "license": [
  4937. "MIT"
  4938. ],
  4939. "authors": [
  4940. {
  4941. "name": "Slowlyo",
  4942. "email": "slowlyo_email@qq.com"
  4943. }
  4944. ],
  4945. "description": "php/laravel部分代码封装",
  4946. "support": {
  4947. "issues": "https://github.com/slowlyo/laravel-support/issues",
  4948. "source": "https://github.com/slowlyo/laravel-support/tree/v0.0.6"
  4949. },
  4950. "time": "2024-11-21T07:33:06+00:00"
  4951. },
  4952. {
  4953. "name": "slowlyo/owl-admin",
  4954. "version": "v4.0.6",
  4955. "source": {
  4956. "type": "git",
  4957. "url": "https://github.com/slowlyo/owl-admin.git",
  4958. "reference": "f9e20279301ac9255b54e6398397662ecb379460"
  4959. },
  4960. "dist": {
  4961. "type": "zip",
  4962. "url": "https://api.github.com/repos/slowlyo/owl-admin/zipball/f9e20279301ac9255b54e6398397662ecb379460",
  4963. "reference": "f9e20279301ac9255b54e6398397662ecb379460",
  4964. "shasum": ""
  4965. },
  4966. "require": {
  4967. "ext-gd": "*",
  4968. "ext-zip": "*",
  4969. "illuminate/support": ">=11",
  4970. "php": ">=8.2",
  4971. "slowlyo/laravel-support": "*"
  4972. },
  4973. "type": "library",
  4974. "extra": {
  4975. "laravel": {
  4976. "providers": [
  4977. "Slowlyo\\OwlAdmin\\AdminServiceProvider"
  4978. ],
  4979. "aliases": {
  4980. "OwlAdmin": "Slowlyo\\OwlAdmin\\Facades\\OwlAdmin"
  4981. }
  4982. }
  4983. },
  4984. "autoload": {
  4985. "files": [
  4986. "src/Support/helpers.php"
  4987. ],
  4988. "psr-4": {
  4989. "Slowlyo\\OwlAdmin\\": "src/"
  4990. }
  4991. },
  4992. "notification-url": "https://packagist.org/downloads/",
  4993. "license": [
  4994. "MIT"
  4995. ],
  4996. "authors": [
  4997. {
  4998. "name": "slowlyo",
  4999. "email": "slowlyo_email@qq.com",
  5000. "homepage": "https://github.com/slowlyo"
  5001. }
  5002. ],
  5003. "description": "基于 laravel、amis 开发的后台框架~",
  5004. "homepage": "https://github.com/slowlyo/owl-admin",
  5005. "keywords": [
  5006. "admin",
  5007. "amis",
  5008. "laravel",
  5009. "owl-admin"
  5010. ],
  5011. "support": {
  5012. "email": "slowlyo_email@qq.com",
  5013. "forum": "https://github.com/orgs/owl-admin/discussions",
  5014. "issues": "https://github.com/Slowlyo/owl-admin/issues",
  5015. "source": "https://github.com/slowlyo/owl-admin/tree/v4.0.6",
  5016. "wiki": "https://doc.owladmin.com/"
  5017. },
  5018. "time": "2024-11-16T05:34:20+00:00"
  5019. },
  5020. {
  5021. "name": "slowlyo/owl-dict",
  5022. "version": "v1.3.2",
  5023. "source": {
  5024. "type": "git",
  5025. "url": "https://github.com/owl-admin/dict.git",
  5026. "reference": "8754d9258a11175ec17f30e698b6489abade11ef"
  5027. },
  5028. "dist": {
  5029. "type": "zip",
  5030. "url": "https://api.github.com/repos/owl-admin/dict/zipball/8754d9258a11175ec17f30e698b6489abade11ef",
  5031. "reference": "8754d9258a11175ec17f30e698b6489abade11ef",
  5032. "shasum": ""
  5033. },
  5034. "require": {
  5035. "php": ">=8.0",
  5036. "slowlyo/owl-admin": "*"
  5037. },
  5038. "type": "library",
  5039. "extra": {
  5040. "owl-admin": "Slowlyo\\OwlDict\\OwlDictServiceProvider",
  5041. "laravel": {
  5042. "providers": [
  5043. "Slowlyo\\OwlDict\\OwlDictServiceProvider"
  5044. ]
  5045. }
  5046. },
  5047. "autoload": {
  5048. "files": [
  5049. "src/helpers.php"
  5050. ],
  5051. "psr-4": {
  5052. "Slowlyo\\OwlDict\\": "src/"
  5053. }
  5054. },
  5055. "notification-url": "https://packagist.org/downloads/",
  5056. "license": [
  5057. "MIT"
  5058. ],
  5059. "authors": [
  5060. {
  5061. "name": "slowlyo",
  5062. "email": "slowlyo_email@qq.com"
  5063. }
  5064. ],
  5065. "description": "OwlAdmin 数据字典扩展",
  5066. "homepage": "https://gitee.com/slowlyo/owl-dict",
  5067. "keywords": [
  5068. "Dict",
  5069. "extension",
  5070. "owl-admin"
  5071. ],
  5072. "support": {
  5073. "issues": "https://github.com/owl-admin/dict/issues",
  5074. "source": "https://github.com/owl-admin/dict/tree/v1.3.2"
  5075. },
  5076. "time": "2024-07-08T03:05:14+00:00"
  5077. },
  5078. {
  5079. "name": "slowlyo/owl-icon-cache",
  5080. "version": "v0.1.0",
  5081. "source": {
  5082. "type": "git",
  5083. "url": "https://github.com/slowlyo/owl-icon-cache.git",
  5084. "reference": "696a2b48ce2c5dbee0dad1f0a76622ad9bac8a28"
  5085. },
  5086. "dist": {
  5087. "type": "zip",
  5088. "url": "https://api.github.com/repos/slowlyo/owl-icon-cache/zipball/696a2b48ce2c5dbee0dad1f0a76622ad9bac8a28",
  5089. "reference": "696a2b48ce2c5dbee0dad1f0a76622ad9bac8a28",
  5090. "shasum": ""
  5091. },
  5092. "require": {
  5093. "iconify/json": "*",
  5094. "php": ">=8.0",
  5095. "slowlyo/owl-admin": "*"
  5096. },
  5097. "type": "library",
  5098. "extra": {
  5099. "owl-admin": "Slowlyo\\OwlIconCache\\OwlIconCacheServiceProvider",
  5100. "laravel": {
  5101. "providers": [
  5102. "Slowlyo\\OwlIconCache\\OwlIconCacheServiceProvider"
  5103. ]
  5104. }
  5105. },
  5106. "autoload": {
  5107. "psr-4": {
  5108. "Slowlyo\\OwlIconCache\\": "src/"
  5109. }
  5110. },
  5111. "notification-url": "https://packagist.org/downloads/",
  5112. "license": [
  5113. "MIT"
  5114. ],
  5115. "authors": [
  5116. {
  5117. "name": "slowlyo",
  5118. "email": "slowlyo_email@qq.com"
  5119. }
  5120. ],
  5121. "description": "让 iconify 图标可以离线使用",
  5122. "homepage": "https://github.com/slowlyo/owl-icon-cache",
  5123. "keywords": [
  5124. "extension",
  5125. "icon",
  5126. "owl-admin"
  5127. ],
  5128. "support": {
  5129. "issues": "https://github.com/slowlyo/owl-icon-cache/issues",
  5130. "source": "https://github.com/slowlyo/owl-icon-cache/tree/v0.1.0"
  5131. },
  5132. "time": "2024-05-01T08:30:19+00:00"
  5133. },
  5134. {
  5135. "name": "slowlyo/owl-log-viewer",
  5136. "version": "1.0.0",
  5137. "source": {
  5138. "type": "git",
  5139. "url": "https://github.com/owl-admin/log-viewer.git",
  5140. "reference": "d249c011dd7febe2f7be5bf800b42ed325b02d40"
  5141. },
  5142. "dist": {
  5143. "type": "zip",
  5144. "url": "https://api.github.com/repos/owl-admin/log-viewer/zipball/d249c011dd7febe2f7be5bf800b42ed325b02d40",
  5145. "reference": "d249c011dd7febe2f7be5bf800b42ed325b02d40",
  5146. "shasum": ""
  5147. },
  5148. "require": {
  5149. "php": ">=8.0",
  5150. "slowlyo/owl-admin": "*"
  5151. },
  5152. "type": "library",
  5153. "extra": {
  5154. "owl-admin": "Slowlyo\\OwlLogViewer\\OwlLogViewerServiceProvider",
  5155. "laravel": {
  5156. "providers": [
  5157. "Slowlyo\\OwlLogViewer\\OwlLogViewerServiceProvider"
  5158. ]
  5159. }
  5160. },
  5161. "autoload": {
  5162. "psr-4": {
  5163. "Slowlyo\\OwlLogViewer\\": "src/"
  5164. }
  5165. },
  5166. "notification-url": "https://packagist.org/downloads/",
  5167. "license": [
  5168. "MIT"
  5169. ],
  5170. "authors": [
  5171. {
  5172. "name": "slowlyo",
  5173. "email": "slowlyo_email@qq.com"
  5174. }
  5175. ],
  5176. "description": "更方便的查看laravel日志",
  5177. "homepage": "https://github.com/slowlyo/owl-log-viewer",
  5178. "keywords": [
  5179. "extension",
  5180. "owl-admin"
  5181. ],
  5182. "support": {
  5183. "issues": "https://github.com/owl-admin/log-viewer/issues",
  5184. "source": "https://github.com/owl-admin/log-viewer/tree/v1.0.0"
  5185. },
  5186. "time": "2024-03-10T13:57:59+00:00"
  5187. },
  5188. {
  5189. "name": "slowlyo/owl-module-notice",
  5190. "version": "v1.1.3",
  5191. "source": {
  5192. "type": "git",
  5193. "url": "https://gitee.com/slowlyo/owl-module-notice",
  5194. "reference": "8410e77a08cee435055f8d8cf6f57cfac5b86e3f"
  5195. },
  5196. "require": {
  5197. "php": ">=8.0",
  5198. "slowlyo/owl-admin": "*"
  5199. },
  5200. "type": "library",
  5201. "extra": {
  5202. "owl-admin": "Slowlyo\\Notice\\NoticeServiceProvider",
  5203. "laravel": {
  5204. "providers": [
  5205. "Slowlyo\\Notice\\NoticeServiceProvider"
  5206. ]
  5207. }
  5208. },
  5209. "autoload": {
  5210. "psr-4": {
  5211. "Slowlyo\\Notice\\": "src/"
  5212. }
  5213. },
  5214. "notification-url": "https://packagist.org/downloads/",
  5215. "license": [
  5216. "MIT"
  5217. ],
  5218. "authors": [
  5219. {
  5220. "name": "slowlyo",
  5221. "email": "slowlyo_email@qq.com"
  5222. }
  5223. ],
  5224. "description": "OwlAdmin 扩展: 后台功能-通知公告管理",
  5225. "homepage": "https://gitee.com/slowlyo/notice",
  5226. "keywords": [
  5227. "extension",
  5228. "notice",
  5229. "owl-admin"
  5230. ],
  5231. "time": "2023-04-10T06:25:51+00:00"
  5232. },
  5233. {
  5234. "name": "slowlyo/owl-operation-log",
  5235. "version": "v0.2.3",
  5236. "source": {
  5237. "type": "git",
  5238. "url": "https://github.com/slowlyo/owl-operation-log.git",
  5239. "reference": "fe03f85e940e069ebc024f8c257da2c44939c78d"
  5240. },
  5241. "dist": {
  5242. "type": "zip",
  5243. "url": "https://api.github.com/repos/slowlyo/owl-operation-log/zipball/fe03f85e940e069ebc024f8c257da2c44939c78d",
  5244. "reference": "fe03f85e940e069ebc024f8c257da2c44939c78d",
  5245. "shasum": ""
  5246. },
  5247. "require": {
  5248. "php": ">=8.0",
  5249. "slowlyo/owl-admin": "*"
  5250. },
  5251. "type": "library",
  5252. "extra": {
  5253. "owl-admin": "Slowlyo\\OwlOperationLog\\OwlOperationLogServiceProvider",
  5254. "laravel": {
  5255. "providers": [
  5256. "Slowlyo\\OwlOperationLog\\OwlOperationLogServiceProvider"
  5257. ]
  5258. }
  5259. },
  5260. "autoload": {
  5261. "psr-4": {
  5262. "Slowlyo\\OwlOperationLog\\": "src/"
  5263. }
  5264. },
  5265. "notification-url": "https://packagist.org/downloads/",
  5266. "license": [
  5267. "MIT"
  5268. ],
  5269. "authors": [
  5270. {
  5271. "name": "slowlyo",
  5272. "email": "slowlyo_email@qq.com"
  5273. }
  5274. ],
  5275. "description": "OwlAdmin 扩展包,用于记录用户操作日志",
  5276. "homepage": "https://github.com/slowlyo/owl-operation-log",
  5277. "keywords": [
  5278. "extension",
  5279. "owl-admin"
  5280. ],
  5281. "support": {
  5282. "issues": "https://github.com/slowlyo/owl-operation-log/issues",
  5283. "source": "https://github.com/slowlyo/owl-operation-log/tree/v0.2.3"
  5284. },
  5285. "time": "2024-03-28T06:49:24+00:00"
  5286. },
  5287. {
  5288. "name": "slowlyo/owl-system-backup",
  5289. "version": "v0.3.1",
  5290. "source": {
  5291. "type": "git",
  5292. "url": "https://github.com/owl-admin/system-backup.git",
  5293. "reference": "3ee64fc9ac0411f400f9d25b6e2c5bc409b5f9f3"
  5294. },
  5295. "dist": {
  5296. "type": "zip",
  5297. "url": "https://api.github.com/repos/owl-admin/system-backup/zipball/3ee64fc9ac0411f400f9d25b6e2c5bc409b5f9f3",
  5298. "reference": "3ee64fc9ac0411f400f9d25b6e2c5bc409b5f9f3",
  5299. "shasum": ""
  5300. },
  5301. "require": {
  5302. "php": ">=8.0",
  5303. "slowlyo/owl-admin": "*"
  5304. },
  5305. "type": "library",
  5306. "extra": {
  5307. "owl-admin": "Slowlyo\\OwlSystemBackup\\OwlSystemBackupServiceProvider",
  5308. "laravel": {
  5309. "providers": [
  5310. "Slowlyo\\OwlSystemBackup\\OwlSystemBackupServiceProvider"
  5311. ]
  5312. }
  5313. },
  5314. "autoload": {
  5315. "psr-4": {
  5316. "Slowlyo\\OwlSystemBackup\\": "src/"
  5317. }
  5318. },
  5319. "notification-url": "https://packagist.org/downloads/",
  5320. "license": [
  5321. "MIT"
  5322. ],
  5323. "authors": [
  5324. {
  5325. "name": "slowlyo",
  5326. "email": "slowlyo_email@qq.com"
  5327. }
  5328. ],
  5329. "description": "Owl Admin 系统备份扩展",
  5330. "homepage": "https://github.com/slowlyo/owl-system-backup",
  5331. "keywords": [
  5332. "extension",
  5333. "owl-admin"
  5334. ],
  5335. "support": {
  5336. "issues": "https://github.com/owl-admin/system-backup/issues",
  5337. "source": "https://github.com/owl-admin/system-backup/tree/v0.3.1"
  5338. },
  5339. "time": "2024-05-22T02:58:47+00:00"
  5340. },
  5341. {
  5342. "name": "spatie/data-transfer-object",
  5343. "version": "3.9.1",
  5344. "source": {
  5345. "type": "git",
  5346. "url": "https://github.com/spatie/data-transfer-object.git",
  5347. "reference": "1df0906c4e9e3aebd6c0506fd82c8b7d5548c1c8"
  5348. },
  5349. "dist": {
  5350. "type": "zip",
  5351. "url": "https://api.github.com/repos/spatie/data-transfer-object/zipball/1df0906c4e9e3aebd6c0506fd82c8b7d5548c1c8",
  5352. "reference": "1df0906c4e9e3aebd6c0506fd82c8b7d5548c1c8",
  5353. "shasum": ""
  5354. },
  5355. "require": {
  5356. "php": "^8.0"
  5357. },
  5358. "require-dev": {
  5359. "illuminate/collections": "^8.36",
  5360. "jetbrains/phpstorm-attributes": "^1.0",
  5361. "larapack/dd": "^1.1",
  5362. "phpunit/phpunit": "^9.5.5"
  5363. },
  5364. "type": "library",
  5365. "autoload": {
  5366. "psr-4": {
  5367. "Spatie\\DataTransferObject\\": "src"
  5368. }
  5369. },
  5370. "notification-url": "https://packagist.org/downloads/",
  5371. "license": [
  5372. "MIT"
  5373. ],
  5374. "authors": [
  5375. {
  5376. "name": "Brent Roose",
  5377. "email": "brent@spatie.be",
  5378. "homepage": "https://spatie.be",
  5379. "role": "Developer"
  5380. }
  5381. ],
  5382. "description": "Data transfer objects with batteries included",
  5383. "homepage": "https://github.com/spatie/data-transfer-object",
  5384. "keywords": [
  5385. "data-transfer-object",
  5386. "spatie"
  5387. ],
  5388. "support": {
  5389. "issues": "https://github.com/spatie/data-transfer-object/issues",
  5390. "source": "https://github.com/spatie/data-transfer-object/tree/3.9.1"
  5391. },
  5392. "funding": [
  5393. {
  5394. "url": "https://spatie.be/open-source/support-us",
  5395. "type": "custom"
  5396. },
  5397. {
  5398. "url": "https://github.com/spatie",
  5399. "type": "github"
  5400. }
  5401. ],
  5402. "abandoned": "spatie/laravel-data",
  5403. "time": "2022-09-16T13:34:38+00:00"
  5404. },
  5405. {
  5406. "name": "symfony/cache",
  5407. "version": "v7.1.7",
  5408. "source": {
  5409. "type": "git",
  5410. "url": "https://github.com/symfony/cache.git",
  5411. "reference": "23b61c9592ee72233c31625f0ae805dd1571e928"
  5412. },
  5413. "dist": {
  5414. "type": "zip",
  5415. "url": "https://api.github.com/repos/symfony/cache/zipball/23b61c9592ee72233c31625f0ae805dd1571e928",
  5416. "reference": "23b61c9592ee72233c31625f0ae805dd1571e928",
  5417. "shasum": ""
  5418. },
  5419. "require": {
  5420. "php": ">=8.2",
  5421. "psr/cache": "^2.0|^3.0",
  5422. "psr/log": "^1.1|^2|^3",
  5423. "symfony/cache-contracts": "^2.5|^3",
  5424. "symfony/deprecation-contracts": "^2.5|^3.0",
  5425. "symfony/service-contracts": "^2.5|^3",
  5426. "symfony/var-exporter": "^6.4|^7.0"
  5427. },
  5428. "conflict": {
  5429. "doctrine/dbal": "<3.6",
  5430. "symfony/dependency-injection": "<6.4",
  5431. "symfony/http-kernel": "<6.4",
  5432. "symfony/var-dumper": "<6.4"
  5433. },
  5434. "provide": {
  5435. "psr/cache-implementation": "2.0|3.0",
  5436. "psr/simple-cache-implementation": "1.0|2.0|3.0",
  5437. "symfony/cache-implementation": "1.1|2.0|3.0"
  5438. },
  5439. "require-dev": {
  5440. "cache/integration-tests": "dev-master",
  5441. "doctrine/dbal": "^3.6|^4",
  5442. "predis/predis": "^1.1|^2.0",
  5443. "psr/simple-cache": "^1.0|^2.0|^3.0",
  5444. "symfony/config": "^6.4|^7.0",
  5445. "symfony/dependency-injection": "^6.4|^7.0",
  5446. "symfony/filesystem": "^6.4|^7.0",
  5447. "symfony/http-kernel": "^6.4|^7.0",
  5448. "symfony/messenger": "^6.4|^7.0",
  5449. "symfony/var-dumper": "^6.4|^7.0"
  5450. },
  5451. "type": "library",
  5452. "autoload": {
  5453. "psr-4": {
  5454. "Symfony\\Component\\Cache\\": ""
  5455. },
  5456. "classmap": [
  5457. "Traits/ValueWrapper.php"
  5458. ],
  5459. "exclude-from-classmap": [
  5460. "/Tests/"
  5461. ]
  5462. },
  5463. "notification-url": "https://packagist.org/downloads/",
  5464. "license": [
  5465. "MIT"
  5466. ],
  5467. "authors": [
  5468. {
  5469. "name": "Nicolas Grekas",
  5470. "email": "p@tchwork.com"
  5471. },
  5472. {
  5473. "name": "Symfony Community",
  5474. "homepage": "https://symfony.com/contributors"
  5475. }
  5476. ],
  5477. "description": "Provides extended PSR-6, PSR-16 (and tags) implementations",
  5478. "homepage": "https://symfony.com",
  5479. "keywords": [
  5480. "caching",
  5481. "psr6"
  5482. ],
  5483. "support": {
  5484. "source": "https://github.com/symfony/cache/tree/v7.1.7"
  5485. },
  5486. "funding": [
  5487. {
  5488. "url": "https://symfony.com/sponsor",
  5489. "type": "custom"
  5490. },
  5491. {
  5492. "url": "https://github.com/fabpot",
  5493. "type": "github"
  5494. },
  5495. {
  5496. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5497. "type": "tidelift"
  5498. }
  5499. ],
  5500. "time": "2024-11-05T15:34:55+00:00"
  5501. },
  5502. {
  5503. "name": "symfony/cache-contracts",
  5504. "version": "v3.5.0",
  5505. "source": {
  5506. "type": "git",
  5507. "url": "https://github.com/symfony/cache-contracts.git",
  5508. "reference": "df6a1a44c890faded49a5fca33c2d5c5fd3c2197"
  5509. },
  5510. "dist": {
  5511. "type": "zip",
  5512. "url": "https://api.github.com/repos/symfony/cache-contracts/zipball/df6a1a44c890faded49a5fca33c2d5c5fd3c2197",
  5513. "reference": "df6a1a44c890faded49a5fca33c2d5c5fd3c2197",
  5514. "shasum": ""
  5515. },
  5516. "require": {
  5517. "php": ">=8.1",
  5518. "psr/cache": "^3.0"
  5519. },
  5520. "type": "library",
  5521. "extra": {
  5522. "branch-alias": {
  5523. "dev-main": "3.5-dev"
  5524. },
  5525. "thanks": {
  5526. "name": "symfony/contracts",
  5527. "url": "https://github.com/symfony/contracts"
  5528. }
  5529. },
  5530. "autoload": {
  5531. "psr-4": {
  5532. "Symfony\\Contracts\\Cache\\": ""
  5533. }
  5534. },
  5535. "notification-url": "https://packagist.org/downloads/",
  5536. "license": [
  5537. "MIT"
  5538. ],
  5539. "authors": [
  5540. {
  5541. "name": "Nicolas Grekas",
  5542. "email": "p@tchwork.com"
  5543. },
  5544. {
  5545. "name": "Symfony Community",
  5546. "homepage": "https://symfony.com/contributors"
  5547. }
  5548. ],
  5549. "description": "Generic abstractions related to caching",
  5550. "homepage": "https://symfony.com",
  5551. "keywords": [
  5552. "abstractions",
  5553. "contracts",
  5554. "decoupling",
  5555. "interfaces",
  5556. "interoperability",
  5557. "standards"
  5558. ],
  5559. "support": {
  5560. "source": "https://github.com/symfony/cache-contracts/tree/v3.5.0"
  5561. },
  5562. "funding": [
  5563. {
  5564. "url": "https://symfony.com/sponsor",
  5565. "type": "custom"
  5566. },
  5567. {
  5568. "url": "https://github.com/fabpot",
  5569. "type": "github"
  5570. },
  5571. {
  5572. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5573. "type": "tidelift"
  5574. }
  5575. ],
  5576. "time": "2024-04-18T09:32:20+00:00"
  5577. },
  5578. {
  5579. "name": "symfony/clock",
  5580. "version": "v7.1.6",
  5581. "source": {
  5582. "type": "git",
  5583. "url": "https://github.com/symfony/clock.git",
  5584. "reference": "97bebc53548684c17ed696bc8af016880f0f098d"
  5585. },
  5586. "dist": {
  5587. "type": "zip",
  5588. "url": "https://api.github.com/repos/symfony/clock/zipball/97bebc53548684c17ed696bc8af016880f0f098d",
  5589. "reference": "97bebc53548684c17ed696bc8af016880f0f098d",
  5590. "shasum": ""
  5591. },
  5592. "require": {
  5593. "php": ">=8.2",
  5594. "psr/clock": "^1.0",
  5595. "symfony/polyfill-php83": "^1.28"
  5596. },
  5597. "provide": {
  5598. "psr/clock-implementation": "1.0"
  5599. },
  5600. "type": "library",
  5601. "autoload": {
  5602. "files": [
  5603. "Resources/now.php"
  5604. ],
  5605. "psr-4": {
  5606. "Symfony\\Component\\Clock\\": ""
  5607. },
  5608. "exclude-from-classmap": [
  5609. "/Tests/"
  5610. ]
  5611. },
  5612. "notification-url": "https://packagist.org/downloads/",
  5613. "license": [
  5614. "MIT"
  5615. ],
  5616. "authors": [
  5617. {
  5618. "name": "Nicolas Grekas",
  5619. "email": "p@tchwork.com"
  5620. },
  5621. {
  5622. "name": "Symfony Community",
  5623. "homepage": "https://symfony.com/contributors"
  5624. }
  5625. ],
  5626. "description": "Decouples applications from the system clock",
  5627. "homepage": "https://symfony.com",
  5628. "keywords": [
  5629. "clock",
  5630. "psr20",
  5631. "time"
  5632. ],
  5633. "support": {
  5634. "source": "https://github.com/symfony/clock/tree/v7.1.6"
  5635. },
  5636. "funding": [
  5637. {
  5638. "url": "https://symfony.com/sponsor",
  5639. "type": "custom"
  5640. },
  5641. {
  5642. "url": "https://github.com/fabpot",
  5643. "type": "github"
  5644. },
  5645. {
  5646. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5647. "type": "tidelift"
  5648. }
  5649. ],
  5650. "time": "2024-09-25T14:20:29+00:00"
  5651. },
  5652. {
  5653. "name": "symfony/console",
  5654. "version": "v7.1.8",
  5655. "source": {
  5656. "type": "git",
  5657. "url": "https://github.com/symfony/console.git",
  5658. "reference": "ff04e5b5ba043d2badfb308197b9e6b42883fcd5"
  5659. },
  5660. "dist": {
  5661. "type": "zip",
  5662. "url": "https://api.github.com/repos/symfony/console/zipball/ff04e5b5ba043d2badfb308197b9e6b42883fcd5",
  5663. "reference": "ff04e5b5ba043d2badfb308197b9e6b42883fcd5",
  5664. "shasum": ""
  5665. },
  5666. "require": {
  5667. "php": ">=8.2",
  5668. "symfony/polyfill-mbstring": "~1.0",
  5669. "symfony/service-contracts": "^2.5|^3",
  5670. "symfony/string": "^6.4|^7.0"
  5671. },
  5672. "conflict": {
  5673. "symfony/dependency-injection": "<6.4",
  5674. "symfony/dotenv": "<6.4",
  5675. "symfony/event-dispatcher": "<6.4",
  5676. "symfony/lock": "<6.4",
  5677. "symfony/process": "<6.4"
  5678. },
  5679. "provide": {
  5680. "psr/log-implementation": "1.0|2.0|3.0"
  5681. },
  5682. "require-dev": {
  5683. "psr/log": "^1|^2|^3",
  5684. "symfony/config": "^6.4|^7.0",
  5685. "symfony/dependency-injection": "^6.4|^7.0",
  5686. "symfony/event-dispatcher": "^6.4|^7.0",
  5687. "symfony/http-foundation": "^6.4|^7.0",
  5688. "symfony/http-kernel": "^6.4|^7.0",
  5689. "symfony/lock": "^6.4|^7.0",
  5690. "symfony/messenger": "^6.4|^7.0",
  5691. "symfony/process": "^6.4|^7.0",
  5692. "symfony/stopwatch": "^6.4|^7.0",
  5693. "symfony/var-dumper": "^6.4|^7.0"
  5694. },
  5695. "type": "library",
  5696. "autoload": {
  5697. "psr-4": {
  5698. "Symfony\\Component\\Console\\": ""
  5699. },
  5700. "exclude-from-classmap": [
  5701. "/Tests/"
  5702. ]
  5703. },
  5704. "notification-url": "https://packagist.org/downloads/",
  5705. "license": [
  5706. "MIT"
  5707. ],
  5708. "authors": [
  5709. {
  5710. "name": "Fabien Potencier",
  5711. "email": "fabien@symfony.com"
  5712. },
  5713. {
  5714. "name": "Symfony Community",
  5715. "homepage": "https://symfony.com/contributors"
  5716. }
  5717. ],
  5718. "description": "Eases the creation of beautiful and testable command line interfaces",
  5719. "homepage": "https://symfony.com",
  5720. "keywords": [
  5721. "cli",
  5722. "command-line",
  5723. "console",
  5724. "terminal"
  5725. ],
  5726. "support": {
  5727. "source": "https://github.com/symfony/console/tree/v7.1.8"
  5728. },
  5729. "funding": [
  5730. {
  5731. "url": "https://symfony.com/sponsor",
  5732. "type": "custom"
  5733. },
  5734. {
  5735. "url": "https://github.com/fabpot",
  5736. "type": "github"
  5737. },
  5738. {
  5739. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5740. "type": "tidelift"
  5741. }
  5742. ],
  5743. "time": "2024-11-06T14:23:19+00:00"
  5744. },
  5745. {
  5746. "name": "symfony/css-selector",
  5747. "version": "v7.1.6",
  5748. "source": {
  5749. "type": "git",
  5750. "url": "https://github.com/symfony/css-selector.git",
  5751. "reference": "4aa4f6b3d6749c14d3aa815eef8226632e7bbc66"
  5752. },
  5753. "dist": {
  5754. "type": "zip",
  5755. "url": "https://api.github.com/repos/symfony/css-selector/zipball/4aa4f6b3d6749c14d3aa815eef8226632e7bbc66",
  5756. "reference": "4aa4f6b3d6749c14d3aa815eef8226632e7bbc66",
  5757. "shasum": ""
  5758. },
  5759. "require": {
  5760. "php": ">=8.2"
  5761. },
  5762. "type": "library",
  5763. "autoload": {
  5764. "psr-4": {
  5765. "Symfony\\Component\\CssSelector\\": ""
  5766. },
  5767. "exclude-from-classmap": [
  5768. "/Tests/"
  5769. ]
  5770. },
  5771. "notification-url": "https://packagist.org/downloads/",
  5772. "license": [
  5773. "MIT"
  5774. ],
  5775. "authors": [
  5776. {
  5777. "name": "Fabien Potencier",
  5778. "email": "fabien@symfony.com"
  5779. },
  5780. {
  5781. "name": "Jean-François Simon",
  5782. "email": "jeanfrancois.simon@sensiolabs.com"
  5783. },
  5784. {
  5785. "name": "Symfony Community",
  5786. "homepage": "https://symfony.com/contributors"
  5787. }
  5788. ],
  5789. "description": "Converts CSS selectors to XPath expressions",
  5790. "homepage": "https://symfony.com",
  5791. "support": {
  5792. "source": "https://github.com/symfony/css-selector/tree/v7.1.6"
  5793. },
  5794. "funding": [
  5795. {
  5796. "url": "https://symfony.com/sponsor",
  5797. "type": "custom"
  5798. },
  5799. {
  5800. "url": "https://github.com/fabpot",
  5801. "type": "github"
  5802. },
  5803. {
  5804. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5805. "type": "tidelift"
  5806. }
  5807. ],
  5808. "time": "2024-09-25T14:20:29+00:00"
  5809. },
  5810. {
  5811. "name": "symfony/deprecation-contracts",
  5812. "version": "v3.5.0",
  5813. "source": {
  5814. "type": "git",
  5815. "url": "https://github.com/symfony/deprecation-contracts.git",
  5816. "reference": "0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1"
  5817. },
  5818. "dist": {
  5819. "type": "zip",
  5820. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1",
  5821. "reference": "0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1",
  5822. "shasum": ""
  5823. },
  5824. "require": {
  5825. "php": ">=8.1"
  5826. },
  5827. "type": "library",
  5828. "extra": {
  5829. "branch-alias": {
  5830. "dev-main": "3.5-dev"
  5831. },
  5832. "thanks": {
  5833. "name": "symfony/contracts",
  5834. "url": "https://github.com/symfony/contracts"
  5835. }
  5836. },
  5837. "autoload": {
  5838. "files": [
  5839. "function.php"
  5840. ]
  5841. },
  5842. "notification-url": "https://packagist.org/downloads/",
  5843. "license": [
  5844. "MIT"
  5845. ],
  5846. "authors": [
  5847. {
  5848. "name": "Nicolas Grekas",
  5849. "email": "p@tchwork.com"
  5850. },
  5851. {
  5852. "name": "Symfony Community",
  5853. "homepage": "https://symfony.com/contributors"
  5854. }
  5855. ],
  5856. "description": "A generic function and convention to trigger deprecation notices",
  5857. "homepage": "https://symfony.com",
  5858. "support": {
  5859. "source": "https://github.com/symfony/deprecation-contracts/tree/v3.5.0"
  5860. },
  5861. "funding": [
  5862. {
  5863. "url": "https://symfony.com/sponsor",
  5864. "type": "custom"
  5865. },
  5866. {
  5867. "url": "https://github.com/fabpot",
  5868. "type": "github"
  5869. },
  5870. {
  5871. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5872. "type": "tidelift"
  5873. }
  5874. ],
  5875. "time": "2024-04-18T09:32:20+00:00"
  5876. },
  5877. {
  5878. "name": "symfony/error-handler",
  5879. "version": "v7.1.7",
  5880. "source": {
  5881. "type": "git",
  5882. "url": "https://github.com/symfony/error-handler.git",
  5883. "reference": "010e44661f4c6babaf8c4862fe68c24a53903342"
  5884. },
  5885. "dist": {
  5886. "type": "zip",
  5887. "url": "https://api.github.com/repos/symfony/error-handler/zipball/010e44661f4c6babaf8c4862fe68c24a53903342",
  5888. "reference": "010e44661f4c6babaf8c4862fe68c24a53903342",
  5889. "shasum": ""
  5890. },
  5891. "require": {
  5892. "php": ">=8.2",
  5893. "psr/log": "^1|^2|^3",
  5894. "symfony/var-dumper": "^6.4|^7.0"
  5895. },
  5896. "conflict": {
  5897. "symfony/deprecation-contracts": "<2.5",
  5898. "symfony/http-kernel": "<6.4"
  5899. },
  5900. "require-dev": {
  5901. "symfony/deprecation-contracts": "^2.5|^3",
  5902. "symfony/http-kernel": "^6.4|^7.0",
  5903. "symfony/serializer": "^6.4|^7.0"
  5904. },
  5905. "bin": [
  5906. "Resources/bin/patch-type-declarations"
  5907. ],
  5908. "type": "library",
  5909. "autoload": {
  5910. "psr-4": {
  5911. "Symfony\\Component\\ErrorHandler\\": ""
  5912. },
  5913. "exclude-from-classmap": [
  5914. "/Tests/"
  5915. ]
  5916. },
  5917. "notification-url": "https://packagist.org/downloads/",
  5918. "license": [
  5919. "MIT"
  5920. ],
  5921. "authors": [
  5922. {
  5923. "name": "Fabien Potencier",
  5924. "email": "fabien@symfony.com"
  5925. },
  5926. {
  5927. "name": "Symfony Community",
  5928. "homepage": "https://symfony.com/contributors"
  5929. }
  5930. ],
  5931. "description": "Provides tools to manage errors and ease debugging PHP code",
  5932. "homepage": "https://symfony.com",
  5933. "support": {
  5934. "source": "https://github.com/symfony/error-handler/tree/v7.1.7"
  5935. },
  5936. "funding": [
  5937. {
  5938. "url": "https://symfony.com/sponsor",
  5939. "type": "custom"
  5940. },
  5941. {
  5942. "url": "https://github.com/fabpot",
  5943. "type": "github"
  5944. },
  5945. {
  5946. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5947. "type": "tidelift"
  5948. }
  5949. ],
  5950. "time": "2024-11-05T15:34:55+00:00"
  5951. },
  5952. {
  5953. "name": "symfony/event-dispatcher",
  5954. "version": "v7.1.6",
  5955. "source": {
  5956. "type": "git",
  5957. "url": "https://github.com/symfony/event-dispatcher.git",
  5958. "reference": "87254c78dd50721cfd015b62277a8281c5589702"
  5959. },
  5960. "dist": {
  5961. "type": "zip",
  5962. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/87254c78dd50721cfd015b62277a8281c5589702",
  5963. "reference": "87254c78dd50721cfd015b62277a8281c5589702",
  5964. "shasum": ""
  5965. },
  5966. "require": {
  5967. "php": ">=8.2",
  5968. "symfony/event-dispatcher-contracts": "^2.5|^3"
  5969. },
  5970. "conflict": {
  5971. "symfony/dependency-injection": "<6.4",
  5972. "symfony/service-contracts": "<2.5"
  5973. },
  5974. "provide": {
  5975. "psr/event-dispatcher-implementation": "1.0",
  5976. "symfony/event-dispatcher-implementation": "2.0|3.0"
  5977. },
  5978. "require-dev": {
  5979. "psr/log": "^1|^2|^3",
  5980. "symfony/config": "^6.4|^7.0",
  5981. "symfony/dependency-injection": "^6.4|^7.0",
  5982. "symfony/error-handler": "^6.4|^7.0",
  5983. "symfony/expression-language": "^6.4|^7.0",
  5984. "symfony/http-foundation": "^6.4|^7.0",
  5985. "symfony/service-contracts": "^2.5|^3",
  5986. "symfony/stopwatch": "^6.4|^7.0"
  5987. },
  5988. "type": "library",
  5989. "autoload": {
  5990. "psr-4": {
  5991. "Symfony\\Component\\EventDispatcher\\": ""
  5992. },
  5993. "exclude-from-classmap": [
  5994. "/Tests/"
  5995. ]
  5996. },
  5997. "notification-url": "https://packagist.org/downloads/",
  5998. "license": [
  5999. "MIT"
  6000. ],
  6001. "authors": [
  6002. {
  6003. "name": "Fabien Potencier",
  6004. "email": "fabien@symfony.com"
  6005. },
  6006. {
  6007. "name": "Symfony Community",
  6008. "homepage": "https://symfony.com/contributors"
  6009. }
  6010. ],
  6011. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  6012. "homepage": "https://symfony.com",
  6013. "support": {
  6014. "source": "https://github.com/symfony/event-dispatcher/tree/v7.1.6"
  6015. },
  6016. "funding": [
  6017. {
  6018. "url": "https://symfony.com/sponsor",
  6019. "type": "custom"
  6020. },
  6021. {
  6022. "url": "https://github.com/fabpot",
  6023. "type": "github"
  6024. },
  6025. {
  6026. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6027. "type": "tidelift"
  6028. }
  6029. ],
  6030. "time": "2024-09-25T14:20:29+00:00"
  6031. },
  6032. {
  6033. "name": "symfony/event-dispatcher-contracts",
  6034. "version": "v3.5.0",
  6035. "source": {
  6036. "type": "git",
  6037. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  6038. "reference": "8f93aec25d41b72493c6ddff14e916177c9efc50"
  6039. },
  6040. "dist": {
  6041. "type": "zip",
  6042. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/8f93aec25d41b72493c6ddff14e916177c9efc50",
  6043. "reference": "8f93aec25d41b72493c6ddff14e916177c9efc50",
  6044. "shasum": ""
  6045. },
  6046. "require": {
  6047. "php": ">=8.1",
  6048. "psr/event-dispatcher": "^1"
  6049. },
  6050. "type": "library",
  6051. "extra": {
  6052. "branch-alias": {
  6053. "dev-main": "3.5-dev"
  6054. },
  6055. "thanks": {
  6056. "name": "symfony/contracts",
  6057. "url": "https://github.com/symfony/contracts"
  6058. }
  6059. },
  6060. "autoload": {
  6061. "psr-4": {
  6062. "Symfony\\Contracts\\EventDispatcher\\": ""
  6063. }
  6064. },
  6065. "notification-url": "https://packagist.org/downloads/",
  6066. "license": [
  6067. "MIT"
  6068. ],
  6069. "authors": [
  6070. {
  6071. "name": "Nicolas Grekas",
  6072. "email": "p@tchwork.com"
  6073. },
  6074. {
  6075. "name": "Symfony Community",
  6076. "homepage": "https://symfony.com/contributors"
  6077. }
  6078. ],
  6079. "description": "Generic abstractions related to dispatching event",
  6080. "homepage": "https://symfony.com",
  6081. "keywords": [
  6082. "abstractions",
  6083. "contracts",
  6084. "decoupling",
  6085. "interfaces",
  6086. "interoperability",
  6087. "standards"
  6088. ],
  6089. "support": {
  6090. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.5.0"
  6091. },
  6092. "funding": [
  6093. {
  6094. "url": "https://symfony.com/sponsor",
  6095. "type": "custom"
  6096. },
  6097. {
  6098. "url": "https://github.com/fabpot",
  6099. "type": "github"
  6100. },
  6101. {
  6102. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6103. "type": "tidelift"
  6104. }
  6105. ],
  6106. "time": "2024-04-18T09:32:20+00:00"
  6107. },
  6108. {
  6109. "name": "symfony/finder",
  6110. "version": "v7.1.6",
  6111. "source": {
  6112. "type": "git",
  6113. "url": "https://github.com/symfony/finder.git",
  6114. "reference": "2cb89664897be33f78c65d3d2845954c8d7a43b8"
  6115. },
  6116. "dist": {
  6117. "type": "zip",
  6118. "url": "https://api.github.com/repos/symfony/finder/zipball/2cb89664897be33f78c65d3d2845954c8d7a43b8",
  6119. "reference": "2cb89664897be33f78c65d3d2845954c8d7a43b8",
  6120. "shasum": ""
  6121. },
  6122. "require": {
  6123. "php": ">=8.2"
  6124. },
  6125. "require-dev": {
  6126. "symfony/filesystem": "^6.4|^7.0"
  6127. },
  6128. "type": "library",
  6129. "autoload": {
  6130. "psr-4": {
  6131. "Symfony\\Component\\Finder\\": ""
  6132. },
  6133. "exclude-from-classmap": [
  6134. "/Tests/"
  6135. ]
  6136. },
  6137. "notification-url": "https://packagist.org/downloads/",
  6138. "license": [
  6139. "MIT"
  6140. ],
  6141. "authors": [
  6142. {
  6143. "name": "Fabien Potencier",
  6144. "email": "fabien@symfony.com"
  6145. },
  6146. {
  6147. "name": "Symfony Community",
  6148. "homepage": "https://symfony.com/contributors"
  6149. }
  6150. ],
  6151. "description": "Finds files and directories via an intuitive fluent interface",
  6152. "homepage": "https://symfony.com",
  6153. "support": {
  6154. "source": "https://github.com/symfony/finder/tree/v7.1.6"
  6155. },
  6156. "funding": [
  6157. {
  6158. "url": "https://symfony.com/sponsor",
  6159. "type": "custom"
  6160. },
  6161. {
  6162. "url": "https://github.com/fabpot",
  6163. "type": "github"
  6164. },
  6165. {
  6166. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6167. "type": "tidelift"
  6168. }
  6169. ],
  6170. "time": "2024-10-01T08:31:23+00:00"
  6171. },
  6172. {
  6173. "name": "symfony/http-client",
  6174. "version": "v7.1.8",
  6175. "source": {
  6176. "type": "git",
  6177. "url": "https://github.com/symfony/http-client.git",
  6178. "reference": "c30d91a1deac0dc3ed5e604683cf2e1dfc635b8a"
  6179. },
  6180. "dist": {
  6181. "type": "zip",
  6182. "url": "https://api.github.com/repos/symfony/http-client/zipball/c30d91a1deac0dc3ed5e604683cf2e1dfc635b8a",
  6183. "reference": "c30d91a1deac0dc3ed5e604683cf2e1dfc635b8a",
  6184. "shasum": ""
  6185. },
  6186. "require": {
  6187. "php": ">=8.2",
  6188. "psr/log": "^1|^2|^3",
  6189. "symfony/deprecation-contracts": "^2.5|^3",
  6190. "symfony/http-client-contracts": "^3.4.1",
  6191. "symfony/service-contracts": "^2.5|^3"
  6192. },
  6193. "conflict": {
  6194. "php-http/discovery": "<1.15",
  6195. "symfony/http-foundation": "<6.4"
  6196. },
  6197. "provide": {
  6198. "php-http/async-client-implementation": "*",
  6199. "php-http/client-implementation": "*",
  6200. "psr/http-client-implementation": "1.0",
  6201. "symfony/http-client-implementation": "3.0"
  6202. },
  6203. "require-dev": {
  6204. "amphp/amp": "^2.5",
  6205. "amphp/http-client": "^4.2.1",
  6206. "amphp/http-tunnel": "^1.0",
  6207. "amphp/socket": "^1.1",
  6208. "guzzlehttp/promises": "^1.4|^2.0",
  6209. "nyholm/psr7": "^1.0",
  6210. "php-http/httplug": "^1.0|^2.0",
  6211. "psr/http-client": "^1.0",
  6212. "symfony/dependency-injection": "^6.4|^7.0",
  6213. "symfony/http-kernel": "^6.4|^7.0",
  6214. "symfony/messenger": "^6.4|^7.0",
  6215. "symfony/process": "^6.4|^7.0",
  6216. "symfony/rate-limiter": "^6.4|^7.0",
  6217. "symfony/stopwatch": "^6.4|^7.0"
  6218. },
  6219. "type": "library",
  6220. "autoload": {
  6221. "psr-4": {
  6222. "Symfony\\Component\\HttpClient\\": ""
  6223. },
  6224. "exclude-from-classmap": [
  6225. "/Tests/"
  6226. ]
  6227. },
  6228. "notification-url": "https://packagist.org/downloads/",
  6229. "license": [
  6230. "MIT"
  6231. ],
  6232. "authors": [
  6233. {
  6234. "name": "Nicolas Grekas",
  6235. "email": "p@tchwork.com"
  6236. },
  6237. {
  6238. "name": "Symfony Community",
  6239. "homepage": "https://symfony.com/contributors"
  6240. }
  6241. ],
  6242. "description": "Provides powerful methods to fetch HTTP resources synchronously or asynchronously",
  6243. "homepage": "https://symfony.com",
  6244. "keywords": [
  6245. "http"
  6246. ],
  6247. "support": {
  6248. "source": "https://github.com/symfony/http-client/tree/v7.1.8"
  6249. },
  6250. "funding": [
  6251. {
  6252. "url": "https://symfony.com/sponsor",
  6253. "type": "custom"
  6254. },
  6255. {
  6256. "url": "https://github.com/fabpot",
  6257. "type": "github"
  6258. },
  6259. {
  6260. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6261. "type": "tidelift"
  6262. }
  6263. ],
  6264. "time": "2024-11-13T13:40:27+00:00"
  6265. },
  6266. {
  6267. "name": "symfony/http-client-contracts",
  6268. "version": "v3.5.0",
  6269. "source": {
  6270. "type": "git",
  6271. "url": "https://github.com/symfony/http-client-contracts.git",
  6272. "reference": "20414d96f391677bf80078aa55baece78b82647d"
  6273. },
  6274. "dist": {
  6275. "type": "zip",
  6276. "url": "https://api.github.com/repos/symfony/http-client-contracts/zipball/20414d96f391677bf80078aa55baece78b82647d",
  6277. "reference": "20414d96f391677bf80078aa55baece78b82647d",
  6278. "shasum": ""
  6279. },
  6280. "require": {
  6281. "php": ">=8.1"
  6282. },
  6283. "type": "library",
  6284. "extra": {
  6285. "branch-alias": {
  6286. "dev-main": "3.5-dev"
  6287. },
  6288. "thanks": {
  6289. "name": "symfony/contracts",
  6290. "url": "https://github.com/symfony/contracts"
  6291. }
  6292. },
  6293. "autoload": {
  6294. "psr-4": {
  6295. "Symfony\\Contracts\\HttpClient\\": ""
  6296. },
  6297. "exclude-from-classmap": [
  6298. "/Test/"
  6299. ]
  6300. },
  6301. "notification-url": "https://packagist.org/downloads/",
  6302. "license": [
  6303. "MIT"
  6304. ],
  6305. "authors": [
  6306. {
  6307. "name": "Nicolas Grekas",
  6308. "email": "p@tchwork.com"
  6309. },
  6310. {
  6311. "name": "Symfony Community",
  6312. "homepage": "https://symfony.com/contributors"
  6313. }
  6314. ],
  6315. "description": "Generic abstractions related to HTTP clients",
  6316. "homepage": "https://symfony.com",
  6317. "keywords": [
  6318. "abstractions",
  6319. "contracts",
  6320. "decoupling",
  6321. "interfaces",
  6322. "interoperability",
  6323. "standards"
  6324. ],
  6325. "support": {
  6326. "source": "https://github.com/symfony/http-client-contracts/tree/v3.5.0"
  6327. },
  6328. "funding": [
  6329. {
  6330. "url": "https://symfony.com/sponsor",
  6331. "type": "custom"
  6332. },
  6333. {
  6334. "url": "https://github.com/fabpot",
  6335. "type": "github"
  6336. },
  6337. {
  6338. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6339. "type": "tidelift"
  6340. }
  6341. ],
  6342. "time": "2024-04-18T09:32:20+00:00"
  6343. },
  6344. {
  6345. "name": "symfony/http-foundation",
  6346. "version": "v7.1.8",
  6347. "source": {
  6348. "type": "git",
  6349. "url": "https://github.com/symfony/http-foundation.git",
  6350. "reference": "f4419ec69ccfc3f725a4de7c20e4e57626d10112"
  6351. },
  6352. "dist": {
  6353. "type": "zip",
  6354. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/f4419ec69ccfc3f725a4de7c20e4e57626d10112",
  6355. "reference": "f4419ec69ccfc3f725a4de7c20e4e57626d10112",
  6356. "shasum": ""
  6357. },
  6358. "require": {
  6359. "php": ">=8.2",
  6360. "symfony/polyfill-mbstring": "~1.1",
  6361. "symfony/polyfill-php83": "^1.27"
  6362. },
  6363. "conflict": {
  6364. "doctrine/dbal": "<3.6",
  6365. "symfony/cache": "<6.4.12|>=7.0,<7.1.5"
  6366. },
  6367. "require-dev": {
  6368. "doctrine/dbal": "^3.6|^4",
  6369. "predis/predis": "^1.1|^2.0",
  6370. "symfony/cache": "^6.4.12|^7.1.5",
  6371. "symfony/dependency-injection": "^6.4|^7.0",
  6372. "symfony/expression-language": "^6.4|^7.0",
  6373. "symfony/http-kernel": "^6.4|^7.0",
  6374. "symfony/mime": "^6.4|^7.0",
  6375. "symfony/rate-limiter": "^6.4|^7.0"
  6376. },
  6377. "type": "library",
  6378. "autoload": {
  6379. "psr-4": {
  6380. "Symfony\\Component\\HttpFoundation\\": ""
  6381. },
  6382. "exclude-from-classmap": [
  6383. "/Tests/"
  6384. ]
  6385. },
  6386. "notification-url": "https://packagist.org/downloads/",
  6387. "license": [
  6388. "MIT"
  6389. ],
  6390. "authors": [
  6391. {
  6392. "name": "Fabien Potencier",
  6393. "email": "fabien@symfony.com"
  6394. },
  6395. {
  6396. "name": "Symfony Community",
  6397. "homepage": "https://symfony.com/contributors"
  6398. }
  6399. ],
  6400. "description": "Defines an object-oriented layer for the HTTP specification",
  6401. "homepage": "https://symfony.com",
  6402. "support": {
  6403. "source": "https://github.com/symfony/http-foundation/tree/v7.1.8"
  6404. },
  6405. "funding": [
  6406. {
  6407. "url": "https://symfony.com/sponsor",
  6408. "type": "custom"
  6409. },
  6410. {
  6411. "url": "https://github.com/fabpot",
  6412. "type": "github"
  6413. },
  6414. {
  6415. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6416. "type": "tidelift"
  6417. }
  6418. ],
  6419. "time": "2024-11-09T09:16:45+00:00"
  6420. },
  6421. {
  6422. "name": "symfony/http-kernel",
  6423. "version": "v7.1.8",
  6424. "source": {
  6425. "type": "git",
  6426. "url": "https://github.com/symfony/http-kernel.git",
  6427. "reference": "33fef24e3dc79d6d30bf4936531f2f4bd2ca189e"
  6428. },
  6429. "dist": {
  6430. "type": "zip",
  6431. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/33fef24e3dc79d6d30bf4936531f2f4bd2ca189e",
  6432. "reference": "33fef24e3dc79d6d30bf4936531f2f4bd2ca189e",
  6433. "shasum": ""
  6434. },
  6435. "require": {
  6436. "php": ">=8.2",
  6437. "psr/log": "^1|^2|^3",
  6438. "symfony/deprecation-contracts": "^2.5|^3",
  6439. "symfony/error-handler": "^6.4|^7.0",
  6440. "symfony/event-dispatcher": "^6.4|^7.0",
  6441. "symfony/http-foundation": "^6.4|^7.0",
  6442. "symfony/polyfill-ctype": "^1.8"
  6443. },
  6444. "conflict": {
  6445. "symfony/browser-kit": "<6.4",
  6446. "symfony/cache": "<6.4",
  6447. "symfony/config": "<6.4",
  6448. "symfony/console": "<6.4",
  6449. "symfony/dependency-injection": "<6.4",
  6450. "symfony/doctrine-bridge": "<6.4",
  6451. "symfony/form": "<6.4",
  6452. "symfony/http-client": "<6.4",
  6453. "symfony/http-client-contracts": "<2.5",
  6454. "symfony/mailer": "<6.4",
  6455. "symfony/messenger": "<6.4",
  6456. "symfony/translation": "<6.4",
  6457. "symfony/translation-contracts": "<2.5",
  6458. "symfony/twig-bridge": "<6.4",
  6459. "symfony/validator": "<6.4",
  6460. "symfony/var-dumper": "<6.4",
  6461. "twig/twig": "<3.0.4"
  6462. },
  6463. "provide": {
  6464. "psr/log-implementation": "1.0|2.0|3.0"
  6465. },
  6466. "require-dev": {
  6467. "psr/cache": "^1.0|^2.0|^3.0",
  6468. "symfony/browser-kit": "^6.4|^7.0",
  6469. "symfony/clock": "^6.4|^7.0",
  6470. "symfony/config": "^6.4|^7.0",
  6471. "symfony/console": "^6.4|^7.0",
  6472. "symfony/css-selector": "^6.4|^7.0",
  6473. "symfony/dependency-injection": "^6.4|^7.0",
  6474. "symfony/dom-crawler": "^6.4|^7.0",
  6475. "symfony/expression-language": "^6.4|^7.0",
  6476. "symfony/finder": "^6.4|^7.0",
  6477. "symfony/http-client-contracts": "^2.5|^3",
  6478. "symfony/process": "^6.4|^7.0",
  6479. "symfony/property-access": "^7.1",
  6480. "symfony/routing": "^6.4|^7.0",
  6481. "symfony/serializer": "^7.1",
  6482. "symfony/stopwatch": "^6.4|^7.0",
  6483. "symfony/translation": "^6.4|^7.0",
  6484. "symfony/translation-contracts": "^2.5|^3",
  6485. "symfony/uid": "^6.4|^7.0",
  6486. "symfony/validator": "^6.4|^7.0",
  6487. "symfony/var-dumper": "^6.4|^7.0",
  6488. "symfony/var-exporter": "^6.4|^7.0",
  6489. "twig/twig": "^3.0.4"
  6490. },
  6491. "type": "library",
  6492. "autoload": {
  6493. "psr-4": {
  6494. "Symfony\\Component\\HttpKernel\\": ""
  6495. },
  6496. "exclude-from-classmap": [
  6497. "/Tests/"
  6498. ]
  6499. },
  6500. "notification-url": "https://packagist.org/downloads/",
  6501. "license": [
  6502. "MIT"
  6503. ],
  6504. "authors": [
  6505. {
  6506. "name": "Fabien Potencier",
  6507. "email": "fabien@symfony.com"
  6508. },
  6509. {
  6510. "name": "Symfony Community",
  6511. "homepage": "https://symfony.com/contributors"
  6512. }
  6513. ],
  6514. "description": "Provides a structured process for converting a Request into a Response",
  6515. "homepage": "https://symfony.com",
  6516. "support": {
  6517. "source": "https://github.com/symfony/http-kernel/tree/v7.1.8"
  6518. },
  6519. "funding": [
  6520. {
  6521. "url": "https://symfony.com/sponsor",
  6522. "type": "custom"
  6523. },
  6524. {
  6525. "url": "https://github.com/fabpot",
  6526. "type": "github"
  6527. },
  6528. {
  6529. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6530. "type": "tidelift"
  6531. }
  6532. ],
  6533. "time": "2024-11-13T14:25:32+00:00"
  6534. },
  6535. {
  6536. "name": "symfony/mailer",
  6537. "version": "v7.1.6",
  6538. "source": {
  6539. "type": "git",
  6540. "url": "https://github.com/symfony/mailer.git",
  6541. "reference": "69c9948451fb3a6a4d47dc8261d1794734e76cdd"
  6542. },
  6543. "dist": {
  6544. "type": "zip",
  6545. "url": "https://api.github.com/repos/symfony/mailer/zipball/69c9948451fb3a6a4d47dc8261d1794734e76cdd",
  6546. "reference": "69c9948451fb3a6a4d47dc8261d1794734e76cdd",
  6547. "shasum": ""
  6548. },
  6549. "require": {
  6550. "egulias/email-validator": "^2.1.10|^3|^4",
  6551. "php": ">=8.2",
  6552. "psr/event-dispatcher": "^1",
  6553. "psr/log": "^1|^2|^3",
  6554. "symfony/event-dispatcher": "^6.4|^7.0",
  6555. "symfony/mime": "^6.4|^7.0",
  6556. "symfony/service-contracts": "^2.5|^3"
  6557. },
  6558. "conflict": {
  6559. "symfony/http-client-contracts": "<2.5",
  6560. "symfony/http-kernel": "<6.4",
  6561. "symfony/messenger": "<6.4",
  6562. "symfony/mime": "<6.4",
  6563. "symfony/twig-bridge": "<6.4"
  6564. },
  6565. "require-dev": {
  6566. "symfony/console": "^6.4|^7.0",
  6567. "symfony/http-client": "^6.4|^7.0",
  6568. "symfony/messenger": "^6.4|^7.0",
  6569. "symfony/twig-bridge": "^6.4|^7.0"
  6570. },
  6571. "type": "library",
  6572. "autoload": {
  6573. "psr-4": {
  6574. "Symfony\\Component\\Mailer\\": ""
  6575. },
  6576. "exclude-from-classmap": [
  6577. "/Tests/"
  6578. ]
  6579. },
  6580. "notification-url": "https://packagist.org/downloads/",
  6581. "license": [
  6582. "MIT"
  6583. ],
  6584. "authors": [
  6585. {
  6586. "name": "Fabien Potencier",
  6587. "email": "fabien@symfony.com"
  6588. },
  6589. {
  6590. "name": "Symfony Community",
  6591. "homepage": "https://symfony.com/contributors"
  6592. }
  6593. ],
  6594. "description": "Helps sending emails",
  6595. "homepage": "https://symfony.com",
  6596. "support": {
  6597. "source": "https://github.com/symfony/mailer/tree/v7.1.6"
  6598. },
  6599. "funding": [
  6600. {
  6601. "url": "https://symfony.com/sponsor",
  6602. "type": "custom"
  6603. },
  6604. {
  6605. "url": "https://github.com/fabpot",
  6606. "type": "github"
  6607. },
  6608. {
  6609. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6610. "type": "tidelift"
  6611. }
  6612. ],
  6613. "time": "2024-09-25T14:20:29+00:00"
  6614. },
  6615. {
  6616. "name": "symfony/mime",
  6617. "version": "v7.1.6",
  6618. "source": {
  6619. "type": "git",
  6620. "url": "https://github.com/symfony/mime.git",
  6621. "reference": "caa1e521edb2650b8470918dfe51708c237f0598"
  6622. },
  6623. "dist": {
  6624. "type": "zip",
  6625. "url": "https://api.github.com/repos/symfony/mime/zipball/caa1e521edb2650b8470918dfe51708c237f0598",
  6626. "reference": "caa1e521edb2650b8470918dfe51708c237f0598",
  6627. "shasum": ""
  6628. },
  6629. "require": {
  6630. "php": ">=8.2",
  6631. "symfony/polyfill-intl-idn": "^1.10",
  6632. "symfony/polyfill-mbstring": "^1.0"
  6633. },
  6634. "conflict": {
  6635. "egulias/email-validator": "~3.0.0",
  6636. "phpdocumentor/reflection-docblock": "<3.2.2",
  6637. "phpdocumentor/type-resolver": "<1.4.0",
  6638. "symfony/mailer": "<6.4",
  6639. "symfony/serializer": "<6.4.3|>7.0,<7.0.3"
  6640. },
  6641. "require-dev": {
  6642. "egulias/email-validator": "^2.1.10|^3.1|^4",
  6643. "league/html-to-markdown": "^5.0",
  6644. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  6645. "symfony/dependency-injection": "^6.4|^7.0",
  6646. "symfony/process": "^6.4|^7.0",
  6647. "symfony/property-access": "^6.4|^7.0",
  6648. "symfony/property-info": "^6.4|^7.0",
  6649. "symfony/serializer": "^6.4.3|^7.0.3"
  6650. },
  6651. "type": "library",
  6652. "autoload": {
  6653. "psr-4": {
  6654. "Symfony\\Component\\Mime\\": ""
  6655. },
  6656. "exclude-from-classmap": [
  6657. "/Tests/"
  6658. ]
  6659. },
  6660. "notification-url": "https://packagist.org/downloads/",
  6661. "license": [
  6662. "MIT"
  6663. ],
  6664. "authors": [
  6665. {
  6666. "name": "Fabien Potencier",
  6667. "email": "fabien@symfony.com"
  6668. },
  6669. {
  6670. "name": "Symfony Community",
  6671. "homepage": "https://symfony.com/contributors"
  6672. }
  6673. ],
  6674. "description": "Allows manipulating MIME messages",
  6675. "homepage": "https://symfony.com",
  6676. "keywords": [
  6677. "mime",
  6678. "mime-type"
  6679. ],
  6680. "support": {
  6681. "source": "https://github.com/symfony/mime/tree/v7.1.6"
  6682. },
  6683. "funding": [
  6684. {
  6685. "url": "https://symfony.com/sponsor",
  6686. "type": "custom"
  6687. },
  6688. {
  6689. "url": "https://github.com/fabpot",
  6690. "type": "github"
  6691. },
  6692. {
  6693. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6694. "type": "tidelift"
  6695. }
  6696. ],
  6697. "time": "2024-10-25T15:11:02+00:00"
  6698. },
  6699. {
  6700. "name": "symfony/polyfill-ctype",
  6701. "version": "v1.31.0",
  6702. "source": {
  6703. "type": "git",
  6704. "url": "https://github.com/symfony/polyfill-ctype.git",
  6705. "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638"
  6706. },
  6707. "dist": {
  6708. "type": "zip",
  6709. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/a3cc8b044a6ea513310cbd48ef7333b384945638",
  6710. "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638",
  6711. "shasum": ""
  6712. },
  6713. "require": {
  6714. "php": ">=7.2"
  6715. },
  6716. "provide": {
  6717. "ext-ctype": "*"
  6718. },
  6719. "suggest": {
  6720. "ext-ctype": "For best performance"
  6721. },
  6722. "type": "library",
  6723. "extra": {
  6724. "thanks": {
  6725. "name": "symfony/polyfill",
  6726. "url": "https://github.com/symfony/polyfill"
  6727. }
  6728. },
  6729. "autoload": {
  6730. "files": [
  6731. "bootstrap.php"
  6732. ],
  6733. "psr-4": {
  6734. "Symfony\\Polyfill\\Ctype\\": ""
  6735. }
  6736. },
  6737. "notification-url": "https://packagist.org/downloads/",
  6738. "license": [
  6739. "MIT"
  6740. ],
  6741. "authors": [
  6742. {
  6743. "name": "Gert de Pagter",
  6744. "email": "BackEndTea@gmail.com"
  6745. },
  6746. {
  6747. "name": "Symfony Community",
  6748. "homepage": "https://symfony.com/contributors"
  6749. }
  6750. ],
  6751. "description": "Symfony polyfill for ctype functions",
  6752. "homepage": "https://symfony.com",
  6753. "keywords": [
  6754. "compatibility",
  6755. "ctype",
  6756. "polyfill",
  6757. "portable"
  6758. ],
  6759. "support": {
  6760. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.31.0"
  6761. },
  6762. "funding": [
  6763. {
  6764. "url": "https://symfony.com/sponsor",
  6765. "type": "custom"
  6766. },
  6767. {
  6768. "url": "https://github.com/fabpot",
  6769. "type": "github"
  6770. },
  6771. {
  6772. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6773. "type": "tidelift"
  6774. }
  6775. ],
  6776. "time": "2024-09-09T11:45:10+00:00"
  6777. },
  6778. {
  6779. "name": "symfony/polyfill-intl-grapheme",
  6780. "version": "v1.31.0",
  6781. "source": {
  6782. "type": "git",
  6783. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  6784. "reference": "b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe"
  6785. },
  6786. "dist": {
  6787. "type": "zip",
  6788. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe",
  6789. "reference": "b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe",
  6790. "shasum": ""
  6791. },
  6792. "require": {
  6793. "php": ">=7.2"
  6794. },
  6795. "suggest": {
  6796. "ext-intl": "For best performance"
  6797. },
  6798. "type": "library",
  6799. "extra": {
  6800. "thanks": {
  6801. "name": "symfony/polyfill",
  6802. "url": "https://github.com/symfony/polyfill"
  6803. }
  6804. },
  6805. "autoload": {
  6806. "files": [
  6807. "bootstrap.php"
  6808. ],
  6809. "psr-4": {
  6810. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  6811. }
  6812. },
  6813. "notification-url": "https://packagist.org/downloads/",
  6814. "license": [
  6815. "MIT"
  6816. ],
  6817. "authors": [
  6818. {
  6819. "name": "Nicolas Grekas",
  6820. "email": "p@tchwork.com"
  6821. },
  6822. {
  6823. "name": "Symfony Community",
  6824. "homepage": "https://symfony.com/contributors"
  6825. }
  6826. ],
  6827. "description": "Symfony polyfill for intl's grapheme_* functions",
  6828. "homepage": "https://symfony.com",
  6829. "keywords": [
  6830. "compatibility",
  6831. "grapheme",
  6832. "intl",
  6833. "polyfill",
  6834. "portable",
  6835. "shim"
  6836. ],
  6837. "support": {
  6838. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.31.0"
  6839. },
  6840. "funding": [
  6841. {
  6842. "url": "https://symfony.com/sponsor",
  6843. "type": "custom"
  6844. },
  6845. {
  6846. "url": "https://github.com/fabpot",
  6847. "type": "github"
  6848. },
  6849. {
  6850. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6851. "type": "tidelift"
  6852. }
  6853. ],
  6854. "time": "2024-09-09T11:45:10+00:00"
  6855. },
  6856. {
  6857. "name": "symfony/polyfill-intl-idn",
  6858. "version": "v1.31.0",
  6859. "source": {
  6860. "type": "git",
  6861. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  6862. "reference": "c36586dcf89a12315939e00ec9b4474adcb1d773"
  6863. },
  6864. "dist": {
  6865. "type": "zip",
  6866. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/c36586dcf89a12315939e00ec9b4474adcb1d773",
  6867. "reference": "c36586dcf89a12315939e00ec9b4474adcb1d773",
  6868. "shasum": ""
  6869. },
  6870. "require": {
  6871. "php": ">=7.2",
  6872. "symfony/polyfill-intl-normalizer": "^1.10"
  6873. },
  6874. "suggest": {
  6875. "ext-intl": "For best performance"
  6876. },
  6877. "type": "library",
  6878. "extra": {
  6879. "thanks": {
  6880. "name": "symfony/polyfill",
  6881. "url": "https://github.com/symfony/polyfill"
  6882. }
  6883. },
  6884. "autoload": {
  6885. "files": [
  6886. "bootstrap.php"
  6887. ],
  6888. "psr-4": {
  6889. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  6890. }
  6891. },
  6892. "notification-url": "https://packagist.org/downloads/",
  6893. "license": [
  6894. "MIT"
  6895. ],
  6896. "authors": [
  6897. {
  6898. "name": "Laurent Bassin",
  6899. "email": "laurent@bassin.info"
  6900. },
  6901. {
  6902. "name": "Trevor Rowbotham",
  6903. "email": "trevor.rowbotham@pm.me"
  6904. },
  6905. {
  6906. "name": "Symfony Community",
  6907. "homepage": "https://symfony.com/contributors"
  6908. }
  6909. ],
  6910. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  6911. "homepage": "https://symfony.com",
  6912. "keywords": [
  6913. "compatibility",
  6914. "idn",
  6915. "intl",
  6916. "polyfill",
  6917. "portable",
  6918. "shim"
  6919. ],
  6920. "support": {
  6921. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.31.0"
  6922. },
  6923. "funding": [
  6924. {
  6925. "url": "https://symfony.com/sponsor",
  6926. "type": "custom"
  6927. },
  6928. {
  6929. "url": "https://github.com/fabpot",
  6930. "type": "github"
  6931. },
  6932. {
  6933. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6934. "type": "tidelift"
  6935. }
  6936. ],
  6937. "time": "2024-09-09T11:45:10+00:00"
  6938. },
  6939. {
  6940. "name": "symfony/polyfill-intl-normalizer",
  6941. "version": "v1.31.0",
  6942. "source": {
  6943. "type": "git",
  6944. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  6945. "reference": "3833d7255cc303546435cb650316bff708a1c75c"
  6946. },
  6947. "dist": {
  6948. "type": "zip",
  6949. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/3833d7255cc303546435cb650316bff708a1c75c",
  6950. "reference": "3833d7255cc303546435cb650316bff708a1c75c",
  6951. "shasum": ""
  6952. },
  6953. "require": {
  6954. "php": ">=7.2"
  6955. },
  6956. "suggest": {
  6957. "ext-intl": "For best performance"
  6958. },
  6959. "type": "library",
  6960. "extra": {
  6961. "thanks": {
  6962. "name": "symfony/polyfill",
  6963. "url": "https://github.com/symfony/polyfill"
  6964. }
  6965. },
  6966. "autoload": {
  6967. "files": [
  6968. "bootstrap.php"
  6969. ],
  6970. "psr-4": {
  6971. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  6972. },
  6973. "classmap": [
  6974. "Resources/stubs"
  6975. ]
  6976. },
  6977. "notification-url": "https://packagist.org/downloads/",
  6978. "license": [
  6979. "MIT"
  6980. ],
  6981. "authors": [
  6982. {
  6983. "name": "Nicolas Grekas",
  6984. "email": "p@tchwork.com"
  6985. },
  6986. {
  6987. "name": "Symfony Community",
  6988. "homepage": "https://symfony.com/contributors"
  6989. }
  6990. ],
  6991. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  6992. "homepage": "https://symfony.com",
  6993. "keywords": [
  6994. "compatibility",
  6995. "intl",
  6996. "normalizer",
  6997. "polyfill",
  6998. "portable",
  6999. "shim"
  7000. ],
  7001. "support": {
  7002. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.31.0"
  7003. },
  7004. "funding": [
  7005. {
  7006. "url": "https://symfony.com/sponsor",
  7007. "type": "custom"
  7008. },
  7009. {
  7010. "url": "https://github.com/fabpot",
  7011. "type": "github"
  7012. },
  7013. {
  7014. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7015. "type": "tidelift"
  7016. }
  7017. ],
  7018. "time": "2024-09-09T11:45:10+00:00"
  7019. },
  7020. {
  7021. "name": "symfony/polyfill-mbstring",
  7022. "version": "v1.31.0",
  7023. "source": {
  7024. "type": "git",
  7025. "url": "https://github.com/symfony/polyfill-mbstring.git",
  7026. "reference": "85181ba99b2345b0ef10ce42ecac37612d9fd341"
  7027. },
  7028. "dist": {
  7029. "type": "zip",
  7030. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/85181ba99b2345b0ef10ce42ecac37612d9fd341",
  7031. "reference": "85181ba99b2345b0ef10ce42ecac37612d9fd341",
  7032. "shasum": ""
  7033. },
  7034. "require": {
  7035. "php": ">=7.2"
  7036. },
  7037. "provide": {
  7038. "ext-mbstring": "*"
  7039. },
  7040. "suggest": {
  7041. "ext-mbstring": "For best performance"
  7042. },
  7043. "type": "library",
  7044. "extra": {
  7045. "thanks": {
  7046. "name": "symfony/polyfill",
  7047. "url": "https://github.com/symfony/polyfill"
  7048. }
  7049. },
  7050. "autoload": {
  7051. "files": [
  7052. "bootstrap.php"
  7053. ],
  7054. "psr-4": {
  7055. "Symfony\\Polyfill\\Mbstring\\": ""
  7056. }
  7057. },
  7058. "notification-url": "https://packagist.org/downloads/",
  7059. "license": [
  7060. "MIT"
  7061. ],
  7062. "authors": [
  7063. {
  7064. "name": "Nicolas Grekas",
  7065. "email": "p@tchwork.com"
  7066. },
  7067. {
  7068. "name": "Symfony Community",
  7069. "homepage": "https://symfony.com/contributors"
  7070. }
  7071. ],
  7072. "description": "Symfony polyfill for the Mbstring extension",
  7073. "homepage": "https://symfony.com",
  7074. "keywords": [
  7075. "compatibility",
  7076. "mbstring",
  7077. "polyfill",
  7078. "portable",
  7079. "shim"
  7080. ],
  7081. "support": {
  7082. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.31.0"
  7083. },
  7084. "funding": [
  7085. {
  7086. "url": "https://symfony.com/sponsor",
  7087. "type": "custom"
  7088. },
  7089. {
  7090. "url": "https://github.com/fabpot",
  7091. "type": "github"
  7092. },
  7093. {
  7094. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7095. "type": "tidelift"
  7096. }
  7097. ],
  7098. "time": "2024-09-09T11:45:10+00:00"
  7099. },
  7100. {
  7101. "name": "symfony/polyfill-php80",
  7102. "version": "v1.31.0",
  7103. "source": {
  7104. "type": "git",
  7105. "url": "https://github.com/symfony/polyfill-php80.git",
  7106. "reference": "60328e362d4c2c802a54fcbf04f9d3fb892b4cf8"
  7107. },
  7108. "dist": {
  7109. "type": "zip",
  7110. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/60328e362d4c2c802a54fcbf04f9d3fb892b4cf8",
  7111. "reference": "60328e362d4c2c802a54fcbf04f9d3fb892b4cf8",
  7112. "shasum": ""
  7113. },
  7114. "require": {
  7115. "php": ">=7.2"
  7116. },
  7117. "type": "library",
  7118. "extra": {
  7119. "thanks": {
  7120. "name": "symfony/polyfill",
  7121. "url": "https://github.com/symfony/polyfill"
  7122. }
  7123. },
  7124. "autoload": {
  7125. "files": [
  7126. "bootstrap.php"
  7127. ],
  7128. "psr-4": {
  7129. "Symfony\\Polyfill\\Php80\\": ""
  7130. },
  7131. "classmap": [
  7132. "Resources/stubs"
  7133. ]
  7134. },
  7135. "notification-url": "https://packagist.org/downloads/",
  7136. "license": [
  7137. "MIT"
  7138. ],
  7139. "authors": [
  7140. {
  7141. "name": "Ion Bazan",
  7142. "email": "ion.bazan@gmail.com"
  7143. },
  7144. {
  7145. "name": "Nicolas Grekas",
  7146. "email": "p@tchwork.com"
  7147. },
  7148. {
  7149. "name": "Symfony Community",
  7150. "homepage": "https://symfony.com/contributors"
  7151. }
  7152. ],
  7153. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  7154. "homepage": "https://symfony.com",
  7155. "keywords": [
  7156. "compatibility",
  7157. "polyfill",
  7158. "portable",
  7159. "shim"
  7160. ],
  7161. "support": {
  7162. "source": "https://github.com/symfony/polyfill-php80/tree/v1.31.0"
  7163. },
  7164. "funding": [
  7165. {
  7166. "url": "https://symfony.com/sponsor",
  7167. "type": "custom"
  7168. },
  7169. {
  7170. "url": "https://github.com/fabpot",
  7171. "type": "github"
  7172. },
  7173. {
  7174. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7175. "type": "tidelift"
  7176. }
  7177. ],
  7178. "time": "2024-09-09T11:45:10+00:00"
  7179. },
  7180. {
  7181. "name": "symfony/polyfill-php81",
  7182. "version": "v1.31.0",
  7183. "source": {
  7184. "type": "git",
  7185. "url": "https://github.com/symfony/polyfill-php81.git",
  7186. "reference": "4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c"
  7187. },
  7188. "dist": {
  7189. "type": "zip",
  7190. "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c",
  7191. "reference": "4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c",
  7192. "shasum": ""
  7193. },
  7194. "require": {
  7195. "php": ">=7.2"
  7196. },
  7197. "type": "library",
  7198. "extra": {
  7199. "thanks": {
  7200. "name": "symfony/polyfill",
  7201. "url": "https://github.com/symfony/polyfill"
  7202. }
  7203. },
  7204. "autoload": {
  7205. "files": [
  7206. "bootstrap.php"
  7207. ],
  7208. "psr-4": {
  7209. "Symfony\\Polyfill\\Php81\\": ""
  7210. },
  7211. "classmap": [
  7212. "Resources/stubs"
  7213. ]
  7214. },
  7215. "notification-url": "https://packagist.org/downloads/",
  7216. "license": [
  7217. "MIT"
  7218. ],
  7219. "authors": [
  7220. {
  7221. "name": "Nicolas Grekas",
  7222. "email": "p@tchwork.com"
  7223. },
  7224. {
  7225. "name": "Symfony Community",
  7226. "homepage": "https://symfony.com/contributors"
  7227. }
  7228. ],
  7229. "description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions",
  7230. "homepage": "https://symfony.com",
  7231. "keywords": [
  7232. "compatibility",
  7233. "polyfill",
  7234. "portable",
  7235. "shim"
  7236. ],
  7237. "support": {
  7238. "source": "https://github.com/symfony/polyfill-php81/tree/v1.31.0"
  7239. },
  7240. "funding": [
  7241. {
  7242. "url": "https://symfony.com/sponsor",
  7243. "type": "custom"
  7244. },
  7245. {
  7246. "url": "https://github.com/fabpot",
  7247. "type": "github"
  7248. },
  7249. {
  7250. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7251. "type": "tidelift"
  7252. }
  7253. ],
  7254. "time": "2024-09-09T11:45:10+00:00"
  7255. },
  7256. {
  7257. "name": "symfony/polyfill-php83",
  7258. "version": "v1.31.0",
  7259. "source": {
  7260. "type": "git",
  7261. "url": "https://github.com/symfony/polyfill-php83.git",
  7262. "reference": "2fb86d65e2d424369ad2905e83b236a8805ba491"
  7263. },
  7264. "dist": {
  7265. "type": "zip",
  7266. "url": "https://api.github.com/repos/symfony/polyfill-php83/zipball/2fb86d65e2d424369ad2905e83b236a8805ba491",
  7267. "reference": "2fb86d65e2d424369ad2905e83b236a8805ba491",
  7268. "shasum": ""
  7269. },
  7270. "require": {
  7271. "php": ">=7.2"
  7272. },
  7273. "type": "library",
  7274. "extra": {
  7275. "thanks": {
  7276. "name": "symfony/polyfill",
  7277. "url": "https://github.com/symfony/polyfill"
  7278. }
  7279. },
  7280. "autoload": {
  7281. "files": [
  7282. "bootstrap.php"
  7283. ],
  7284. "psr-4": {
  7285. "Symfony\\Polyfill\\Php83\\": ""
  7286. },
  7287. "classmap": [
  7288. "Resources/stubs"
  7289. ]
  7290. },
  7291. "notification-url": "https://packagist.org/downloads/",
  7292. "license": [
  7293. "MIT"
  7294. ],
  7295. "authors": [
  7296. {
  7297. "name": "Nicolas Grekas",
  7298. "email": "p@tchwork.com"
  7299. },
  7300. {
  7301. "name": "Symfony Community",
  7302. "homepage": "https://symfony.com/contributors"
  7303. }
  7304. ],
  7305. "description": "Symfony polyfill backporting some PHP 8.3+ features to lower PHP versions",
  7306. "homepage": "https://symfony.com",
  7307. "keywords": [
  7308. "compatibility",
  7309. "polyfill",
  7310. "portable",
  7311. "shim"
  7312. ],
  7313. "support": {
  7314. "source": "https://github.com/symfony/polyfill-php83/tree/v1.31.0"
  7315. },
  7316. "funding": [
  7317. {
  7318. "url": "https://symfony.com/sponsor",
  7319. "type": "custom"
  7320. },
  7321. {
  7322. "url": "https://github.com/fabpot",
  7323. "type": "github"
  7324. },
  7325. {
  7326. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7327. "type": "tidelift"
  7328. }
  7329. ],
  7330. "time": "2024-09-09T11:45:10+00:00"
  7331. },
  7332. {
  7333. "name": "symfony/polyfill-uuid",
  7334. "version": "v1.31.0",
  7335. "source": {
  7336. "type": "git",
  7337. "url": "https://github.com/symfony/polyfill-uuid.git",
  7338. "reference": "21533be36c24be3f4b1669c4725c7d1d2bab4ae2"
  7339. },
  7340. "dist": {
  7341. "type": "zip",
  7342. "url": "https://api.github.com/repos/symfony/polyfill-uuid/zipball/21533be36c24be3f4b1669c4725c7d1d2bab4ae2",
  7343. "reference": "21533be36c24be3f4b1669c4725c7d1d2bab4ae2",
  7344. "shasum": ""
  7345. },
  7346. "require": {
  7347. "php": ">=7.2"
  7348. },
  7349. "provide": {
  7350. "ext-uuid": "*"
  7351. },
  7352. "suggest": {
  7353. "ext-uuid": "For best performance"
  7354. },
  7355. "type": "library",
  7356. "extra": {
  7357. "thanks": {
  7358. "name": "symfony/polyfill",
  7359. "url": "https://github.com/symfony/polyfill"
  7360. }
  7361. },
  7362. "autoload": {
  7363. "files": [
  7364. "bootstrap.php"
  7365. ],
  7366. "psr-4": {
  7367. "Symfony\\Polyfill\\Uuid\\": ""
  7368. }
  7369. },
  7370. "notification-url": "https://packagist.org/downloads/",
  7371. "license": [
  7372. "MIT"
  7373. ],
  7374. "authors": [
  7375. {
  7376. "name": "Grégoire Pineau",
  7377. "email": "lyrixx@lyrixx.info"
  7378. },
  7379. {
  7380. "name": "Symfony Community",
  7381. "homepage": "https://symfony.com/contributors"
  7382. }
  7383. ],
  7384. "description": "Symfony polyfill for uuid functions",
  7385. "homepage": "https://symfony.com",
  7386. "keywords": [
  7387. "compatibility",
  7388. "polyfill",
  7389. "portable",
  7390. "uuid"
  7391. ],
  7392. "support": {
  7393. "source": "https://github.com/symfony/polyfill-uuid/tree/v1.31.0"
  7394. },
  7395. "funding": [
  7396. {
  7397. "url": "https://symfony.com/sponsor",
  7398. "type": "custom"
  7399. },
  7400. {
  7401. "url": "https://github.com/fabpot",
  7402. "type": "github"
  7403. },
  7404. {
  7405. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7406. "type": "tidelift"
  7407. }
  7408. ],
  7409. "time": "2024-09-09T11:45:10+00:00"
  7410. },
  7411. {
  7412. "name": "symfony/process",
  7413. "version": "v7.1.8",
  7414. "source": {
  7415. "type": "git",
  7416. "url": "https://github.com/symfony/process.git",
  7417. "reference": "42783370fda6e538771f7c7a36e9fa2ee3a84892"
  7418. },
  7419. "dist": {
  7420. "type": "zip",
  7421. "url": "https://api.github.com/repos/symfony/process/zipball/42783370fda6e538771f7c7a36e9fa2ee3a84892",
  7422. "reference": "42783370fda6e538771f7c7a36e9fa2ee3a84892",
  7423. "shasum": ""
  7424. },
  7425. "require": {
  7426. "php": ">=8.2"
  7427. },
  7428. "type": "library",
  7429. "autoload": {
  7430. "psr-4": {
  7431. "Symfony\\Component\\Process\\": ""
  7432. },
  7433. "exclude-from-classmap": [
  7434. "/Tests/"
  7435. ]
  7436. },
  7437. "notification-url": "https://packagist.org/downloads/",
  7438. "license": [
  7439. "MIT"
  7440. ],
  7441. "authors": [
  7442. {
  7443. "name": "Fabien Potencier",
  7444. "email": "fabien@symfony.com"
  7445. },
  7446. {
  7447. "name": "Symfony Community",
  7448. "homepage": "https://symfony.com/contributors"
  7449. }
  7450. ],
  7451. "description": "Executes commands in sub-processes",
  7452. "homepage": "https://symfony.com",
  7453. "support": {
  7454. "source": "https://github.com/symfony/process/tree/v7.1.8"
  7455. },
  7456. "funding": [
  7457. {
  7458. "url": "https://symfony.com/sponsor",
  7459. "type": "custom"
  7460. },
  7461. {
  7462. "url": "https://github.com/fabpot",
  7463. "type": "github"
  7464. },
  7465. {
  7466. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7467. "type": "tidelift"
  7468. }
  7469. ],
  7470. "time": "2024-11-06T14:23:19+00:00"
  7471. },
  7472. {
  7473. "name": "symfony/psr-http-message-bridge",
  7474. "version": "v7.1.6",
  7475. "source": {
  7476. "type": "git",
  7477. "url": "https://github.com/symfony/psr-http-message-bridge.git",
  7478. "reference": "f16471bb19f6685b9ccf0a2c03c213840ae68cd6"
  7479. },
  7480. "dist": {
  7481. "type": "zip",
  7482. "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/f16471bb19f6685b9ccf0a2c03c213840ae68cd6",
  7483. "reference": "f16471bb19f6685b9ccf0a2c03c213840ae68cd6",
  7484. "shasum": ""
  7485. },
  7486. "require": {
  7487. "php": ">=8.2",
  7488. "psr/http-message": "^1.0|^2.0",
  7489. "symfony/http-foundation": "^6.4|^7.0"
  7490. },
  7491. "conflict": {
  7492. "php-http/discovery": "<1.15",
  7493. "symfony/http-kernel": "<6.4"
  7494. },
  7495. "require-dev": {
  7496. "nyholm/psr7": "^1.1",
  7497. "php-http/discovery": "^1.15",
  7498. "psr/log": "^1.1.4|^2|^3",
  7499. "symfony/browser-kit": "^6.4|^7.0",
  7500. "symfony/config": "^6.4|^7.0",
  7501. "symfony/event-dispatcher": "^6.4|^7.0",
  7502. "symfony/framework-bundle": "^6.4|^7.0",
  7503. "symfony/http-kernel": "^6.4|^7.0"
  7504. },
  7505. "type": "symfony-bridge",
  7506. "autoload": {
  7507. "psr-4": {
  7508. "Symfony\\Bridge\\PsrHttpMessage\\": ""
  7509. },
  7510. "exclude-from-classmap": [
  7511. "/Tests/"
  7512. ]
  7513. },
  7514. "notification-url": "https://packagist.org/downloads/",
  7515. "license": [
  7516. "MIT"
  7517. ],
  7518. "authors": [
  7519. {
  7520. "name": "Fabien Potencier",
  7521. "email": "fabien@symfony.com"
  7522. },
  7523. {
  7524. "name": "Symfony Community",
  7525. "homepage": "https://symfony.com/contributors"
  7526. }
  7527. ],
  7528. "description": "PSR HTTP message bridge",
  7529. "homepage": "https://symfony.com",
  7530. "keywords": [
  7531. "http",
  7532. "http-message",
  7533. "psr-17",
  7534. "psr-7"
  7535. ],
  7536. "support": {
  7537. "source": "https://github.com/symfony/psr-http-message-bridge/tree/v7.1.6"
  7538. },
  7539. "funding": [
  7540. {
  7541. "url": "https://symfony.com/sponsor",
  7542. "type": "custom"
  7543. },
  7544. {
  7545. "url": "https://github.com/fabpot",
  7546. "type": "github"
  7547. },
  7548. {
  7549. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7550. "type": "tidelift"
  7551. }
  7552. ],
  7553. "time": "2024-09-25T14:20:29+00:00"
  7554. },
  7555. {
  7556. "name": "symfony/routing",
  7557. "version": "v7.1.6",
  7558. "source": {
  7559. "type": "git",
  7560. "url": "https://github.com/symfony/routing.git",
  7561. "reference": "66a2c469f6c22d08603235c46a20007c0701ea0a"
  7562. },
  7563. "dist": {
  7564. "type": "zip",
  7565. "url": "https://api.github.com/repos/symfony/routing/zipball/66a2c469f6c22d08603235c46a20007c0701ea0a",
  7566. "reference": "66a2c469f6c22d08603235c46a20007c0701ea0a",
  7567. "shasum": ""
  7568. },
  7569. "require": {
  7570. "php": ">=8.2",
  7571. "symfony/deprecation-contracts": "^2.5|^3"
  7572. },
  7573. "conflict": {
  7574. "symfony/config": "<6.4",
  7575. "symfony/dependency-injection": "<6.4",
  7576. "symfony/yaml": "<6.4"
  7577. },
  7578. "require-dev": {
  7579. "psr/log": "^1|^2|^3",
  7580. "symfony/config": "^6.4|^7.0",
  7581. "symfony/dependency-injection": "^6.4|^7.0",
  7582. "symfony/expression-language": "^6.4|^7.0",
  7583. "symfony/http-foundation": "^6.4|^7.0",
  7584. "symfony/yaml": "^6.4|^7.0"
  7585. },
  7586. "type": "library",
  7587. "autoload": {
  7588. "psr-4": {
  7589. "Symfony\\Component\\Routing\\": ""
  7590. },
  7591. "exclude-from-classmap": [
  7592. "/Tests/"
  7593. ]
  7594. },
  7595. "notification-url": "https://packagist.org/downloads/",
  7596. "license": [
  7597. "MIT"
  7598. ],
  7599. "authors": [
  7600. {
  7601. "name": "Fabien Potencier",
  7602. "email": "fabien@symfony.com"
  7603. },
  7604. {
  7605. "name": "Symfony Community",
  7606. "homepage": "https://symfony.com/contributors"
  7607. }
  7608. ],
  7609. "description": "Maps an HTTP request to a set of configuration variables",
  7610. "homepage": "https://symfony.com",
  7611. "keywords": [
  7612. "router",
  7613. "routing",
  7614. "uri",
  7615. "url"
  7616. ],
  7617. "support": {
  7618. "source": "https://github.com/symfony/routing/tree/v7.1.6"
  7619. },
  7620. "funding": [
  7621. {
  7622. "url": "https://symfony.com/sponsor",
  7623. "type": "custom"
  7624. },
  7625. {
  7626. "url": "https://github.com/fabpot",
  7627. "type": "github"
  7628. },
  7629. {
  7630. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7631. "type": "tidelift"
  7632. }
  7633. ],
  7634. "time": "2024-10-01T08:31:23+00:00"
  7635. },
  7636. {
  7637. "name": "symfony/service-contracts",
  7638. "version": "v3.5.0",
  7639. "source": {
  7640. "type": "git",
  7641. "url": "https://github.com/symfony/service-contracts.git",
  7642. "reference": "bd1d9e59a81d8fa4acdcea3f617c581f7475a80f"
  7643. },
  7644. "dist": {
  7645. "type": "zip",
  7646. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/bd1d9e59a81d8fa4acdcea3f617c581f7475a80f",
  7647. "reference": "bd1d9e59a81d8fa4acdcea3f617c581f7475a80f",
  7648. "shasum": ""
  7649. },
  7650. "require": {
  7651. "php": ">=8.1",
  7652. "psr/container": "^1.1|^2.0",
  7653. "symfony/deprecation-contracts": "^2.5|^3"
  7654. },
  7655. "conflict": {
  7656. "ext-psr": "<1.1|>=2"
  7657. },
  7658. "type": "library",
  7659. "extra": {
  7660. "branch-alias": {
  7661. "dev-main": "3.5-dev"
  7662. },
  7663. "thanks": {
  7664. "name": "symfony/contracts",
  7665. "url": "https://github.com/symfony/contracts"
  7666. }
  7667. },
  7668. "autoload": {
  7669. "psr-4": {
  7670. "Symfony\\Contracts\\Service\\": ""
  7671. },
  7672. "exclude-from-classmap": [
  7673. "/Test/"
  7674. ]
  7675. },
  7676. "notification-url": "https://packagist.org/downloads/",
  7677. "license": [
  7678. "MIT"
  7679. ],
  7680. "authors": [
  7681. {
  7682. "name": "Nicolas Grekas",
  7683. "email": "p@tchwork.com"
  7684. },
  7685. {
  7686. "name": "Symfony Community",
  7687. "homepage": "https://symfony.com/contributors"
  7688. }
  7689. ],
  7690. "description": "Generic abstractions related to writing services",
  7691. "homepage": "https://symfony.com",
  7692. "keywords": [
  7693. "abstractions",
  7694. "contracts",
  7695. "decoupling",
  7696. "interfaces",
  7697. "interoperability",
  7698. "standards"
  7699. ],
  7700. "support": {
  7701. "source": "https://github.com/symfony/service-contracts/tree/v3.5.0"
  7702. },
  7703. "funding": [
  7704. {
  7705. "url": "https://symfony.com/sponsor",
  7706. "type": "custom"
  7707. },
  7708. {
  7709. "url": "https://github.com/fabpot",
  7710. "type": "github"
  7711. },
  7712. {
  7713. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7714. "type": "tidelift"
  7715. }
  7716. ],
  7717. "time": "2024-04-18T09:32:20+00:00"
  7718. },
  7719. {
  7720. "name": "symfony/string",
  7721. "version": "v7.1.8",
  7722. "source": {
  7723. "type": "git",
  7724. "url": "https://github.com/symfony/string.git",
  7725. "reference": "591ebd41565f356fcd8b090fe64dbb5878f50281"
  7726. },
  7727. "dist": {
  7728. "type": "zip",
  7729. "url": "https://api.github.com/repos/symfony/string/zipball/591ebd41565f356fcd8b090fe64dbb5878f50281",
  7730. "reference": "591ebd41565f356fcd8b090fe64dbb5878f50281",
  7731. "shasum": ""
  7732. },
  7733. "require": {
  7734. "php": ">=8.2",
  7735. "symfony/polyfill-ctype": "~1.8",
  7736. "symfony/polyfill-intl-grapheme": "~1.0",
  7737. "symfony/polyfill-intl-normalizer": "~1.0",
  7738. "symfony/polyfill-mbstring": "~1.0"
  7739. },
  7740. "conflict": {
  7741. "symfony/translation-contracts": "<2.5"
  7742. },
  7743. "require-dev": {
  7744. "symfony/emoji": "^7.1",
  7745. "symfony/error-handler": "^6.4|^7.0",
  7746. "symfony/http-client": "^6.4|^7.0",
  7747. "symfony/intl": "^6.4|^7.0",
  7748. "symfony/translation-contracts": "^2.5|^3.0",
  7749. "symfony/var-exporter": "^6.4|^7.0"
  7750. },
  7751. "type": "library",
  7752. "autoload": {
  7753. "files": [
  7754. "Resources/functions.php"
  7755. ],
  7756. "psr-4": {
  7757. "Symfony\\Component\\String\\": ""
  7758. },
  7759. "exclude-from-classmap": [
  7760. "/Tests/"
  7761. ]
  7762. },
  7763. "notification-url": "https://packagist.org/downloads/",
  7764. "license": [
  7765. "MIT"
  7766. ],
  7767. "authors": [
  7768. {
  7769. "name": "Nicolas Grekas",
  7770. "email": "p@tchwork.com"
  7771. },
  7772. {
  7773. "name": "Symfony Community",
  7774. "homepage": "https://symfony.com/contributors"
  7775. }
  7776. ],
  7777. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  7778. "homepage": "https://symfony.com",
  7779. "keywords": [
  7780. "grapheme",
  7781. "i18n",
  7782. "string",
  7783. "unicode",
  7784. "utf-8",
  7785. "utf8"
  7786. ],
  7787. "support": {
  7788. "source": "https://github.com/symfony/string/tree/v7.1.8"
  7789. },
  7790. "funding": [
  7791. {
  7792. "url": "https://symfony.com/sponsor",
  7793. "type": "custom"
  7794. },
  7795. {
  7796. "url": "https://github.com/fabpot",
  7797. "type": "github"
  7798. },
  7799. {
  7800. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7801. "type": "tidelift"
  7802. }
  7803. ],
  7804. "time": "2024-11-13T13:31:21+00:00"
  7805. },
  7806. {
  7807. "name": "symfony/translation",
  7808. "version": "v7.1.6",
  7809. "source": {
  7810. "type": "git",
  7811. "url": "https://github.com/symfony/translation.git",
  7812. "reference": "b9f72ab14efdb6b772f85041fa12f820dee8d55f"
  7813. },
  7814. "dist": {
  7815. "type": "zip",
  7816. "url": "https://api.github.com/repos/symfony/translation/zipball/b9f72ab14efdb6b772f85041fa12f820dee8d55f",
  7817. "reference": "b9f72ab14efdb6b772f85041fa12f820dee8d55f",
  7818. "shasum": ""
  7819. },
  7820. "require": {
  7821. "php": ">=8.2",
  7822. "symfony/polyfill-mbstring": "~1.0",
  7823. "symfony/translation-contracts": "^2.5|^3.0"
  7824. },
  7825. "conflict": {
  7826. "symfony/config": "<6.4",
  7827. "symfony/console": "<6.4",
  7828. "symfony/dependency-injection": "<6.4",
  7829. "symfony/http-client-contracts": "<2.5",
  7830. "symfony/http-kernel": "<6.4",
  7831. "symfony/service-contracts": "<2.5",
  7832. "symfony/twig-bundle": "<6.4",
  7833. "symfony/yaml": "<6.4"
  7834. },
  7835. "provide": {
  7836. "symfony/translation-implementation": "2.3|3.0"
  7837. },
  7838. "require-dev": {
  7839. "nikic/php-parser": "^4.18|^5.0",
  7840. "psr/log": "^1|^2|^3",
  7841. "symfony/config": "^6.4|^7.0",
  7842. "symfony/console": "^6.4|^7.0",
  7843. "symfony/dependency-injection": "^6.4|^7.0",
  7844. "symfony/finder": "^6.4|^7.0",
  7845. "symfony/http-client-contracts": "^2.5|^3.0",
  7846. "symfony/http-kernel": "^6.4|^7.0",
  7847. "symfony/intl": "^6.4|^7.0",
  7848. "symfony/polyfill-intl-icu": "^1.21",
  7849. "symfony/routing": "^6.4|^7.0",
  7850. "symfony/service-contracts": "^2.5|^3",
  7851. "symfony/yaml": "^6.4|^7.0"
  7852. },
  7853. "type": "library",
  7854. "autoload": {
  7855. "files": [
  7856. "Resources/functions.php"
  7857. ],
  7858. "psr-4": {
  7859. "Symfony\\Component\\Translation\\": ""
  7860. },
  7861. "exclude-from-classmap": [
  7862. "/Tests/"
  7863. ]
  7864. },
  7865. "notification-url": "https://packagist.org/downloads/",
  7866. "license": [
  7867. "MIT"
  7868. ],
  7869. "authors": [
  7870. {
  7871. "name": "Fabien Potencier",
  7872. "email": "fabien@symfony.com"
  7873. },
  7874. {
  7875. "name": "Symfony Community",
  7876. "homepage": "https://symfony.com/contributors"
  7877. }
  7878. ],
  7879. "description": "Provides tools to internationalize your application",
  7880. "homepage": "https://symfony.com",
  7881. "support": {
  7882. "source": "https://github.com/symfony/translation/tree/v7.1.6"
  7883. },
  7884. "funding": [
  7885. {
  7886. "url": "https://symfony.com/sponsor",
  7887. "type": "custom"
  7888. },
  7889. {
  7890. "url": "https://github.com/fabpot",
  7891. "type": "github"
  7892. },
  7893. {
  7894. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7895. "type": "tidelift"
  7896. }
  7897. ],
  7898. "time": "2024-09-28T12:35:13+00:00"
  7899. },
  7900. {
  7901. "name": "symfony/translation-contracts",
  7902. "version": "v3.5.0",
  7903. "source": {
  7904. "type": "git",
  7905. "url": "https://github.com/symfony/translation-contracts.git",
  7906. "reference": "b9d2189887bb6b2e0367a9fc7136c5239ab9b05a"
  7907. },
  7908. "dist": {
  7909. "type": "zip",
  7910. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/b9d2189887bb6b2e0367a9fc7136c5239ab9b05a",
  7911. "reference": "b9d2189887bb6b2e0367a9fc7136c5239ab9b05a",
  7912. "shasum": ""
  7913. },
  7914. "require": {
  7915. "php": ">=8.1"
  7916. },
  7917. "type": "library",
  7918. "extra": {
  7919. "branch-alias": {
  7920. "dev-main": "3.5-dev"
  7921. },
  7922. "thanks": {
  7923. "name": "symfony/contracts",
  7924. "url": "https://github.com/symfony/contracts"
  7925. }
  7926. },
  7927. "autoload": {
  7928. "psr-4": {
  7929. "Symfony\\Contracts\\Translation\\": ""
  7930. },
  7931. "exclude-from-classmap": [
  7932. "/Test/"
  7933. ]
  7934. },
  7935. "notification-url": "https://packagist.org/downloads/",
  7936. "license": [
  7937. "MIT"
  7938. ],
  7939. "authors": [
  7940. {
  7941. "name": "Nicolas Grekas",
  7942. "email": "p@tchwork.com"
  7943. },
  7944. {
  7945. "name": "Symfony Community",
  7946. "homepage": "https://symfony.com/contributors"
  7947. }
  7948. ],
  7949. "description": "Generic abstractions related to translation",
  7950. "homepage": "https://symfony.com",
  7951. "keywords": [
  7952. "abstractions",
  7953. "contracts",
  7954. "decoupling",
  7955. "interfaces",
  7956. "interoperability",
  7957. "standards"
  7958. ],
  7959. "support": {
  7960. "source": "https://github.com/symfony/translation-contracts/tree/v3.5.0"
  7961. },
  7962. "funding": [
  7963. {
  7964. "url": "https://symfony.com/sponsor",
  7965. "type": "custom"
  7966. },
  7967. {
  7968. "url": "https://github.com/fabpot",
  7969. "type": "github"
  7970. },
  7971. {
  7972. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7973. "type": "tidelift"
  7974. }
  7975. ],
  7976. "time": "2024-04-18T09:32:20+00:00"
  7977. },
  7978. {
  7979. "name": "symfony/uid",
  7980. "version": "v7.1.6",
  7981. "source": {
  7982. "type": "git",
  7983. "url": "https://github.com/symfony/uid.git",
  7984. "reference": "65befb3bb2d503bbffbd08c815aa38b472999917"
  7985. },
  7986. "dist": {
  7987. "type": "zip",
  7988. "url": "https://api.github.com/repos/symfony/uid/zipball/65befb3bb2d503bbffbd08c815aa38b472999917",
  7989. "reference": "65befb3bb2d503bbffbd08c815aa38b472999917",
  7990. "shasum": ""
  7991. },
  7992. "require": {
  7993. "php": ">=8.2",
  7994. "symfony/polyfill-uuid": "^1.15"
  7995. },
  7996. "require-dev": {
  7997. "symfony/console": "^6.4|^7.0"
  7998. },
  7999. "type": "library",
  8000. "autoload": {
  8001. "psr-4": {
  8002. "Symfony\\Component\\Uid\\": ""
  8003. },
  8004. "exclude-from-classmap": [
  8005. "/Tests/"
  8006. ]
  8007. },
  8008. "notification-url": "https://packagist.org/downloads/",
  8009. "license": [
  8010. "MIT"
  8011. ],
  8012. "authors": [
  8013. {
  8014. "name": "Grégoire Pineau",
  8015. "email": "lyrixx@lyrixx.info"
  8016. },
  8017. {
  8018. "name": "Nicolas Grekas",
  8019. "email": "p@tchwork.com"
  8020. },
  8021. {
  8022. "name": "Symfony Community",
  8023. "homepage": "https://symfony.com/contributors"
  8024. }
  8025. ],
  8026. "description": "Provides an object-oriented API to generate and represent UIDs",
  8027. "homepage": "https://symfony.com",
  8028. "keywords": [
  8029. "UID",
  8030. "ulid",
  8031. "uuid"
  8032. ],
  8033. "support": {
  8034. "source": "https://github.com/symfony/uid/tree/v7.1.6"
  8035. },
  8036. "funding": [
  8037. {
  8038. "url": "https://symfony.com/sponsor",
  8039. "type": "custom"
  8040. },
  8041. {
  8042. "url": "https://github.com/fabpot",
  8043. "type": "github"
  8044. },
  8045. {
  8046. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8047. "type": "tidelift"
  8048. }
  8049. ],
  8050. "time": "2024-09-25T14:20:29+00:00"
  8051. },
  8052. {
  8053. "name": "symfony/var-dumper",
  8054. "version": "v7.1.8",
  8055. "source": {
  8056. "type": "git",
  8057. "url": "https://github.com/symfony/var-dumper.git",
  8058. "reference": "7bb01a47b1b00428d32b5e7b4d3b2d1aa58d3db8"
  8059. },
  8060. "dist": {
  8061. "type": "zip",
  8062. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/7bb01a47b1b00428d32b5e7b4d3b2d1aa58d3db8",
  8063. "reference": "7bb01a47b1b00428d32b5e7b4d3b2d1aa58d3db8",
  8064. "shasum": ""
  8065. },
  8066. "require": {
  8067. "php": ">=8.2",
  8068. "symfony/polyfill-mbstring": "~1.0"
  8069. },
  8070. "conflict": {
  8071. "symfony/console": "<6.4"
  8072. },
  8073. "require-dev": {
  8074. "ext-iconv": "*",
  8075. "symfony/console": "^6.4|^7.0",
  8076. "symfony/http-kernel": "^6.4|^7.0",
  8077. "symfony/process": "^6.4|^7.0",
  8078. "symfony/uid": "^6.4|^7.0",
  8079. "twig/twig": "^3.0.4"
  8080. },
  8081. "bin": [
  8082. "Resources/bin/var-dump-server"
  8083. ],
  8084. "type": "library",
  8085. "autoload": {
  8086. "files": [
  8087. "Resources/functions/dump.php"
  8088. ],
  8089. "psr-4": {
  8090. "Symfony\\Component\\VarDumper\\": ""
  8091. },
  8092. "exclude-from-classmap": [
  8093. "/Tests/"
  8094. ]
  8095. },
  8096. "notification-url": "https://packagist.org/downloads/",
  8097. "license": [
  8098. "MIT"
  8099. ],
  8100. "authors": [
  8101. {
  8102. "name": "Nicolas Grekas",
  8103. "email": "p@tchwork.com"
  8104. },
  8105. {
  8106. "name": "Symfony Community",
  8107. "homepage": "https://symfony.com/contributors"
  8108. }
  8109. ],
  8110. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  8111. "homepage": "https://symfony.com",
  8112. "keywords": [
  8113. "debug",
  8114. "dump"
  8115. ],
  8116. "support": {
  8117. "source": "https://github.com/symfony/var-dumper/tree/v7.1.8"
  8118. },
  8119. "funding": [
  8120. {
  8121. "url": "https://symfony.com/sponsor",
  8122. "type": "custom"
  8123. },
  8124. {
  8125. "url": "https://github.com/fabpot",
  8126. "type": "github"
  8127. },
  8128. {
  8129. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8130. "type": "tidelift"
  8131. }
  8132. ],
  8133. "time": "2024-11-08T15:46:42+00:00"
  8134. },
  8135. {
  8136. "name": "symfony/var-exporter",
  8137. "version": "v7.1.6",
  8138. "source": {
  8139. "type": "git",
  8140. "url": "https://github.com/symfony/var-exporter.git",
  8141. "reference": "90173ef89c40e7c8c616653241048705f84130ef"
  8142. },
  8143. "dist": {
  8144. "type": "zip",
  8145. "url": "https://api.github.com/repos/symfony/var-exporter/zipball/90173ef89c40e7c8c616653241048705f84130ef",
  8146. "reference": "90173ef89c40e7c8c616653241048705f84130ef",
  8147. "shasum": ""
  8148. },
  8149. "require": {
  8150. "php": ">=8.2"
  8151. },
  8152. "require-dev": {
  8153. "symfony/property-access": "^6.4|^7.0",
  8154. "symfony/serializer": "^6.4|^7.0",
  8155. "symfony/var-dumper": "^6.4|^7.0"
  8156. },
  8157. "type": "library",
  8158. "autoload": {
  8159. "psr-4": {
  8160. "Symfony\\Component\\VarExporter\\": ""
  8161. },
  8162. "exclude-from-classmap": [
  8163. "/Tests/"
  8164. ]
  8165. },
  8166. "notification-url": "https://packagist.org/downloads/",
  8167. "license": [
  8168. "MIT"
  8169. ],
  8170. "authors": [
  8171. {
  8172. "name": "Nicolas Grekas",
  8173. "email": "p@tchwork.com"
  8174. },
  8175. {
  8176. "name": "Symfony Community",
  8177. "homepage": "https://symfony.com/contributors"
  8178. }
  8179. ],
  8180. "description": "Allows exporting any serializable PHP data structure to plain PHP code",
  8181. "homepage": "https://symfony.com",
  8182. "keywords": [
  8183. "clone",
  8184. "construct",
  8185. "export",
  8186. "hydrate",
  8187. "instantiate",
  8188. "lazy-loading",
  8189. "proxy",
  8190. "serialize"
  8191. ],
  8192. "support": {
  8193. "source": "https://github.com/symfony/var-exporter/tree/v7.1.6"
  8194. },
  8195. "funding": [
  8196. {
  8197. "url": "https://symfony.com/sponsor",
  8198. "type": "custom"
  8199. },
  8200. {
  8201. "url": "https://github.com/fabpot",
  8202. "type": "github"
  8203. },
  8204. {
  8205. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8206. "type": "tidelift"
  8207. }
  8208. ],
  8209. "time": "2024-09-25T14:20:29+00:00"
  8210. },
  8211. {
  8212. "name": "symfony/yaml",
  8213. "version": "v7.1.6",
  8214. "source": {
  8215. "type": "git",
  8216. "url": "https://github.com/symfony/yaml.git",
  8217. "reference": "3ced3f29e4f0d6bce2170ff26719f1fe9aacc671"
  8218. },
  8219. "dist": {
  8220. "type": "zip",
  8221. "url": "https://api.github.com/repos/symfony/yaml/zipball/3ced3f29e4f0d6bce2170ff26719f1fe9aacc671",
  8222. "reference": "3ced3f29e4f0d6bce2170ff26719f1fe9aacc671",
  8223. "shasum": ""
  8224. },
  8225. "require": {
  8226. "php": ">=8.2",
  8227. "symfony/polyfill-ctype": "^1.8"
  8228. },
  8229. "conflict": {
  8230. "symfony/console": "<6.4"
  8231. },
  8232. "require-dev": {
  8233. "symfony/console": "^6.4|^7.0"
  8234. },
  8235. "bin": [
  8236. "Resources/bin/yaml-lint"
  8237. ],
  8238. "type": "library",
  8239. "autoload": {
  8240. "psr-4": {
  8241. "Symfony\\Component\\Yaml\\": ""
  8242. },
  8243. "exclude-from-classmap": [
  8244. "/Tests/"
  8245. ]
  8246. },
  8247. "notification-url": "https://packagist.org/downloads/",
  8248. "license": [
  8249. "MIT"
  8250. ],
  8251. "authors": [
  8252. {
  8253. "name": "Fabien Potencier",
  8254. "email": "fabien@symfony.com"
  8255. },
  8256. {
  8257. "name": "Symfony Community",
  8258. "homepage": "https://symfony.com/contributors"
  8259. }
  8260. ],
  8261. "description": "Loads and dumps YAML files",
  8262. "homepage": "https://symfony.com",
  8263. "support": {
  8264. "source": "https://github.com/symfony/yaml/tree/v7.1.6"
  8265. },
  8266. "funding": [
  8267. {
  8268. "url": "https://symfony.com/sponsor",
  8269. "type": "custom"
  8270. },
  8271. {
  8272. "url": "https://github.com/fabpot",
  8273. "type": "github"
  8274. },
  8275. {
  8276. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8277. "type": "tidelift"
  8278. }
  8279. ],
  8280. "time": "2024-09-25T14:20:29+00:00"
  8281. },
  8282. {
  8283. "name": "thenorthmemory/xml",
  8284. "version": "1.1.1",
  8285. "source": {
  8286. "type": "git",
  8287. "url": "https://github.com/TheNorthMemory/xml.git",
  8288. "reference": "6f50c63450a0b098772423f8bdc3c4ad2c4c30bb"
  8289. },
  8290. "dist": {
  8291. "type": "zip",
  8292. "url": "https://api.github.com/repos/TheNorthMemory/xml/zipball/6f50c63450a0b098772423f8bdc3c4ad2c4c30bb",
  8293. "reference": "6f50c63450a0b098772423f8bdc3c4ad2c4c30bb",
  8294. "shasum": ""
  8295. },
  8296. "require": {
  8297. "ext-libxml": "*",
  8298. "ext-simplexml": "*",
  8299. "php": ">=7.1.2"
  8300. },
  8301. "require-dev": {
  8302. "phpstan/phpstan": "^0.12.89 || ^1.0",
  8303. "phpunit/phpunit": "^7.5 || ^8.5.16 || ^9.3.5"
  8304. },
  8305. "type": "library",
  8306. "autoload": {
  8307. "psr-4": {
  8308. "TheNorthMemory\\Xml\\": "src/"
  8309. }
  8310. },
  8311. "notification-url": "https://packagist.org/downloads/",
  8312. "license": [
  8313. "Apache-2.0"
  8314. ],
  8315. "authors": [
  8316. {
  8317. "name": "James ZHANG",
  8318. "homepage": "https://github.com/TheNorthMemory"
  8319. }
  8320. ],
  8321. "description": "A wrapper of the XML parser and builder",
  8322. "homepage": "https://github.com/TheNorthMemory/xml",
  8323. "keywords": [
  8324. "xml-builder",
  8325. "xml-parser"
  8326. ],
  8327. "support": {
  8328. "issues": "https://github.com/TheNorthMemory/xml/issues",
  8329. "source": "https://github.com/TheNorthMemory/xml/tree/1.1.1"
  8330. },
  8331. "time": "2023-01-15T06:01:13+00:00"
  8332. },
  8333. {
  8334. "name": "tijsverkoyen/css-to-inline-styles",
  8335. "version": "v2.2.7",
  8336. "source": {
  8337. "type": "git",
  8338. "url": "https://github.com/tijsverkoyen/CssToInlineStyles.git",
  8339. "reference": "83ee6f38df0a63106a9e4536e3060458b74ccedb"
  8340. },
  8341. "dist": {
  8342. "type": "zip",
  8343. "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/83ee6f38df0a63106a9e4536e3060458b74ccedb",
  8344. "reference": "83ee6f38df0a63106a9e4536e3060458b74ccedb",
  8345. "shasum": ""
  8346. },
  8347. "require": {
  8348. "ext-dom": "*",
  8349. "ext-libxml": "*",
  8350. "php": "^5.5 || ^7.0 || ^8.0",
  8351. "symfony/css-selector": "^2.7 || ^3.0 || ^4.0 || ^5.0 || ^6.0 || ^7.0"
  8352. },
  8353. "require-dev": {
  8354. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0 || ^7.5 || ^8.5.21 || ^9.5.10"
  8355. },
  8356. "type": "library",
  8357. "extra": {
  8358. "branch-alias": {
  8359. "dev-master": "2.2.x-dev"
  8360. }
  8361. },
  8362. "autoload": {
  8363. "psr-4": {
  8364. "TijsVerkoyen\\CssToInlineStyles\\": "src"
  8365. }
  8366. },
  8367. "notification-url": "https://packagist.org/downloads/",
  8368. "license": [
  8369. "BSD-3-Clause"
  8370. ],
  8371. "authors": [
  8372. {
  8373. "name": "Tijs Verkoyen",
  8374. "email": "css_to_inline_styles@verkoyen.eu",
  8375. "role": "Developer"
  8376. }
  8377. ],
  8378. "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.",
  8379. "homepage": "https://github.com/tijsverkoyen/CssToInlineStyles",
  8380. "support": {
  8381. "issues": "https://github.com/tijsverkoyen/CssToInlineStyles/issues",
  8382. "source": "https://github.com/tijsverkoyen/CssToInlineStyles/tree/v2.2.7"
  8383. },
  8384. "time": "2023-12-08T13:03:43+00:00"
  8385. },
  8386. {
  8387. "name": "vlucas/phpdotenv",
  8388. "version": "v5.6.1",
  8389. "source": {
  8390. "type": "git",
  8391. "url": "https://github.com/vlucas/phpdotenv.git",
  8392. "reference": "a59a13791077fe3d44f90e7133eb68e7d22eaff2"
  8393. },
  8394. "dist": {
  8395. "type": "zip",
  8396. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/a59a13791077fe3d44f90e7133eb68e7d22eaff2",
  8397. "reference": "a59a13791077fe3d44f90e7133eb68e7d22eaff2",
  8398. "shasum": ""
  8399. },
  8400. "require": {
  8401. "ext-pcre": "*",
  8402. "graham-campbell/result-type": "^1.1.3",
  8403. "php": "^7.2.5 || ^8.0",
  8404. "phpoption/phpoption": "^1.9.3",
  8405. "symfony/polyfill-ctype": "^1.24",
  8406. "symfony/polyfill-mbstring": "^1.24",
  8407. "symfony/polyfill-php80": "^1.24"
  8408. },
  8409. "require-dev": {
  8410. "bamarni/composer-bin-plugin": "^1.8.2",
  8411. "ext-filter": "*",
  8412. "phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2"
  8413. },
  8414. "suggest": {
  8415. "ext-filter": "Required to use the boolean validator."
  8416. },
  8417. "type": "library",
  8418. "extra": {
  8419. "bamarni-bin": {
  8420. "bin-links": true,
  8421. "forward-command": false
  8422. },
  8423. "branch-alias": {
  8424. "dev-master": "5.6-dev"
  8425. }
  8426. },
  8427. "autoload": {
  8428. "psr-4": {
  8429. "Dotenv\\": "src/"
  8430. }
  8431. },
  8432. "notification-url": "https://packagist.org/downloads/",
  8433. "license": [
  8434. "BSD-3-Clause"
  8435. ],
  8436. "authors": [
  8437. {
  8438. "name": "Graham Campbell",
  8439. "email": "hello@gjcampbell.co.uk",
  8440. "homepage": "https://github.com/GrahamCampbell"
  8441. },
  8442. {
  8443. "name": "Vance Lucas",
  8444. "email": "vance@vancelucas.com",
  8445. "homepage": "https://github.com/vlucas"
  8446. }
  8447. ],
  8448. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  8449. "keywords": [
  8450. "dotenv",
  8451. "env",
  8452. "environment"
  8453. ],
  8454. "support": {
  8455. "issues": "https://github.com/vlucas/phpdotenv/issues",
  8456. "source": "https://github.com/vlucas/phpdotenv/tree/v5.6.1"
  8457. },
  8458. "funding": [
  8459. {
  8460. "url": "https://github.com/GrahamCampbell",
  8461. "type": "github"
  8462. },
  8463. {
  8464. "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
  8465. "type": "tidelift"
  8466. }
  8467. ],
  8468. "time": "2024-07-20T21:52:34+00:00"
  8469. },
  8470. {
  8471. "name": "voku/portable-ascii",
  8472. "version": "2.0.3",
  8473. "source": {
  8474. "type": "git",
  8475. "url": "https://github.com/voku/portable-ascii.git",
  8476. "reference": "b1d923f88091c6bf09699efcd7c8a1b1bfd7351d"
  8477. },
  8478. "dist": {
  8479. "type": "zip",
  8480. "url": "https://api.github.com/repos/voku/portable-ascii/zipball/b1d923f88091c6bf09699efcd7c8a1b1bfd7351d",
  8481. "reference": "b1d923f88091c6bf09699efcd7c8a1b1bfd7351d",
  8482. "shasum": ""
  8483. },
  8484. "require": {
  8485. "php": ">=7.0.0"
  8486. },
  8487. "require-dev": {
  8488. "phpunit/phpunit": "~6.0 || ~7.0 || ~9.0"
  8489. },
  8490. "suggest": {
  8491. "ext-intl": "Use Intl for transliterator_transliterate() support"
  8492. },
  8493. "type": "library",
  8494. "autoload": {
  8495. "psr-4": {
  8496. "voku\\": "src/voku/"
  8497. }
  8498. },
  8499. "notification-url": "https://packagist.org/downloads/",
  8500. "license": [
  8501. "MIT"
  8502. ],
  8503. "authors": [
  8504. {
  8505. "name": "Lars Moelleken",
  8506. "homepage": "https://www.moelleken.org/"
  8507. }
  8508. ],
  8509. "description": "Portable ASCII library - performance optimized (ascii) string functions for php.",
  8510. "homepage": "https://github.com/voku/portable-ascii",
  8511. "keywords": [
  8512. "ascii",
  8513. "clean",
  8514. "php"
  8515. ],
  8516. "support": {
  8517. "issues": "https://github.com/voku/portable-ascii/issues",
  8518. "source": "https://github.com/voku/portable-ascii/tree/2.0.3"
  8519. },
  8520. "funding": [
  8521. {
  8522. "url": "https://www.paypal.me/moelleken",
  8523. "type": "custom"
  8524. },
  8525. {
  8526. "url": "https://github.com/voku",
  8527. "type": "github"
  8528. },
  8529. {
  8530. "url": "https://opencollective.com/portable-ascii",
  8531. "type": "open_collective"
  8532. },
  8533. {
  8534. "url": "https://www.patreon.com/voku",
  8535. "type": "patreon"
  8536. },
  8537. {
  8538. "url": "https://tidelift.com/funding/github/packagist/voku/portable-ascii",
  8539. "type": "tidelift"
  8540. }
  8541. ],
  8542. "time": "2024-11-21T01:49:47+00:00"
  8543. },
  8544. {
  8545. "name": "w7corp/easywechat",
  8546. "version": "6.15.5",
  8547. "source": {
  8548. "type": "git",
  8549. "url": "https://github.com/w7corp/easywechat.git",
  8550. "reference": "d643084ba958ba8ca077e82b805748dfeb5aa44d"
  8551. },
  8552. "dist": {
  8553. "type": "zip",
  8554. "url": "https://api.github.com/repos/w7corp/easywechat/zipball/d643084ba958ba8ca077e82b805748dfeb5aa44d",
  8555. "reference": "d643084ba958ba8ca077e82b805748dfeb5aa44d",
  8556. "shasum": ""
  8557. },
  8558. "require": {
  8559. "ext-curl": "*",
  8560. "ext-fileinfo": "*",
  8561. "ext-libxml": "*",
  8562. "ext-openssl": "*",
  8563. "ext-simplexml": "*",
  8564. "ext-sodium": "*",
  8565. "nyholm/psr7": "^1.5",
  8566. "nyholm/psr7-server": "^1.0",
  8567. "overtrue/socialite": "^3.5.4|^4.0.1",
  8568. "php": ">=8.0.2",
  8569. "psr/http-client": "^1.0",
  8570. "psr/simple-cache": "^1.0|^2.0|^3.0",
  8571. "symfony/cache": "^5.4|^6.0|^7.0",
  8572. "symfony/http-client": "^5.4|^6.0|^7.0",
  8573. "symfony/http-foundation": "^5.4|^6.0|^7.0",
  8574. "symfony/mime": "^5.4|^6.0|^7.0",
  8575. "symfony/polyfill-php81": "^1.25",
  8576. "symfony/psr-http-message-bridge": "^2.1.2|^6.4.0|^7.1",
  8577. "thenorthmemory/xml": "^1.0"
  8578. },
  8579. "require-dev": {
  8580. "jetbrains/phpstorm-attributes": "^1.0",
  8581. "laravel/pint": "^1.2",
  8582. "mikey179/vfsstream": "^1.6",
  8583. "mockery/mockery": "^1.4.4",
  8584. "phpstan/phpstan": "^1.0",
  8585. "phpunit/phpunit": "^9.5",
  8586. "symfony/var-dumper": "^5.2"
  8587. },
  8588. "type": "library",
  8589. "autoload": {
  8590. "psr-4": {
  8591. "EasyWeChat\\": "src/"
  8592. }
  8593. },
  8594. "notification-url": "https://packagist.org/downloads/",
  8595. "license": [
  8596. "MIT"
  8597. ],
  8598. "authors": [
  8599. {
  8600. "name": "overtrue",
  8601. "email": "anzhengchao@gmail.com"
  8602. }
  8603. ],
  8604. "description": "微信SDK",
  8605. "keywords": [
  8606. "easywechat",
  8607. "sdk",
  8608. "wechat",
  8609. "weixin",
  8610. "weixin-sdk"
  8611. ],
  8612. "support": {
  8613. "issues": "https://github.com/w7corp/easywechat/issues",
  8614. "source": "https://github.com/w7corp/easywechat/tree/6.15.5"
  8615. },
  8616. "funding": [
  8617. {
  8618. "url": "https://github.com/overtrue",
  8619. "type": "github"
  8620. }
  8621. ],
  8622. "time": "2024-11-15T04:34:15+00:00"
  8623. },
  8624. {
  8625. "name": "webmozart/assert",
  8626. "version": "1.11.0",
  8627. "source": {
  8628. "type": "git",
  8629. "url": "https://github.com/webmozarts/assert.git",
  8630. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991"
  8631. },
  8632. "dist": {
  8633. "type": "zip",
  8634. "url": "https://api.github.com/repos/webmozarts/assert/zipball/11cb2199493b2f8a3b53e7f19068fc6aac760991",
  8635. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991",
  8636. "shasum": ""
  8637. },
  8638. "require": {
  8639. "ext-ctype": "*",
  8640. "php": "^7.2 || ^8.0"
  8641. },
  8642. "conflict": {
  8643. "phpstan/phpstan": "<0.12.20",
  8644. "vimeo/psalm": "<4.6.1 || 4.6.2"
  8645. },
  8646. "require-dev": {
  8647. "phpunit/phpunit": "^8.5.13"
  8648. },
  8649. "type": "library",
  8650. "extra": {
  8651. "branch-alias": {
  8652. "dev-master": "1.10-dev"
  8653. }
  8654. },
  8655. "autoload": {
  8656. "psr-4": {
  8657. "Webmozart\\Assert\\": "src/"
  8658. }
  8659. },
  8660. "notification-url": "https://packagist.org/downloads/",
  8661. "license": [
  8662. "MIT"
  8663. ],
  8664. "authors": [
  8665. {
  8666. "name": "Bernhard Schussek",
  8667. "email": "bschussek@gmail.com"
  8668. }
  8669. ],
  8670. "description": "Assertions to validate method input/output with nice error messages.",
  8671. "keywords": [
  8672. "assert",
  8673. "check",
  8674. "validate"
  8675. ],
  8676. "support": {
  8677. "issues": "https://github.com/webmozarts/assert/issues",
  8678. "source": "https://github.com/webmozarts/assert/tree/1.11.0"
  8679. },
  8680. "time": "2022-06-03T18:03:27+00:00"
  8681. }
  8682. ],
  8683. "packages-dev": [
  8684. {
  8685. "name": "barryvdh/laravel-ide-helper",
  8686. "version": "v3.2.2",
  8687. "source": {
  8688. "type": "git",
  8689. "url": "https://github.com/barryvdh/laravel-ide-helper.git",
  8690. "reference": "07e3bd8796f3d1414801a03d3783f9d3ec9efc08"
  8691. },
  8692. "dist": {
  8693. "type": "zip",
  8694. "url": "https://api.github.com/repos/barryvdh/laravel-ide-helper/zipball/07e3bd8796f3d1414801a03d3783f9d3ec9efc08",
  8695. "reference": "07e3bd8796f3d1414801a03d3783f9d3ec9efc08",
  8696. "shasum": ""
  8697. },
  8698. "require": {
  8699. "barryvdh/reflection-docblock": "^2.1.2",
  8700. "composer/class-map-generator": "^1.0",
  8701. "ext-json": "*",
  8702. "illuminate/console": "^11.15",
  8703. "illuminate/database": "^11.15",
  8704. "illuminate/filesystem": "^11.15",
  8705. "illuminate/support": "^11.15",
  8706. "nikic/php-parser": "^4.18 || ^5",
  8707. "php": "^8.2",
  8708. "phpdocumentor/type-resolver": "^1.1.0"
  8709. },
  8710. "require-dev": {
  8711. "ext-pdo_sqlite": "*",
  8712. "friendsofphp/php-cs-fixer": "^3",
  8713. "illuminate/config": "^11.15",
  8714. "illuminate/view": "^11.15",
  8715. "mockery/mockery": "^1.4",
  8716. "orchestra/testbench": "^9.2",
  8717. "phpunit/phpunit": "^10.5",
  8718. "spatie/phpunit-snapshot-assertions": "^4 || ^5",
  8719. "vimeo/psalm": "^5.4"
  8720. },
  8721. "suggest": {
  8722. "illuminate/events": "Required for automatic helper generation (^6|^7|^8|^9|^10|^11)."
  8723. },
  8724. "type": "library",
  8725. "extra": {
  8726. "branch-alias": {
  8727. "dev-master": "3.2-dev"
  8728. },
  8729. "laravel": {
  8730. "providers": [
  8731. "Barryvdh\\LaravelIdeHelper\\IdeHelperServiceProvider"
  8732. ]
  8733. }
  8734. },
  8735. "autoload": {
  8736. "psr-4": {
  8737. "Barryvdh\\LaravelIdeHelper\\": "src"
  8738. }
  8739. },
  8740. "notification-url": "https://packagist.org/downloads/",
  8741. "license": [
  8742. "MIT"
  8743. ],
  8744. "authors": [
  8745. {
  8746. "name": "Barry vd. Heuvel",
  8747. "email": "barryvdh@gmail.com"
  8748. }
  8749. ],
  8750. "description": "Laravel IDE Helper, generates correct PHPDocs for all Facade classes, to improve auto-completion.",
  8751. "keywords": [
  8752. "autocomplete",
  8753. "codeintel",
  8754. "helper",
  8755. "ide",
  8756. "laravel",
  8757. "netbeans",
  8758. "phpdoc",
  8759. "phpstorm",
  8760. "sublime"
  8761. ],
  8762. "support": {
  8763. "issues": "https://github.com/barryvdh/laravel-ide-helper/issues",
  8764. "source": "https://github.com/barryvdh/laravel-ide-helper/tree/v3.2.2"
  8765. },
  8766. "funding": [
  8767. {
  8768. "url": "https://fruitcake.nl",
  8769. "type": "custom"
  8770. },
  8771. {
  8772. "url": "https://github.com/barryvdh",
  8773. "type": "github"
  8774. }
  8775. ],
  8776. "time": "2024-10-29T14:00:16+00:00"
  8777. },
  8778. {
  8779. "name": "barryvdh/reflection-docblock",
  8780. "version": "v2.1.3",
  8781. "source": {
  8782. "type": "git",
  8783. "url": "https://github.com/barryvdh/ReflectionDocBlock.git",
  8784. "reference": "c6fad15f7c878be21650c51e1f841bca7e49752e"
  8785. },
  8786. "dist": {
  8787. "type": "zip",
  8788. "url": "https://api.github.com/repos/barryvdh/ReflectionDocBlock/zipball/c6fad15f7c878be21650c51e1f841bca7e49752e",
  8789. "reference": "c6fad15f7c878be21650c51e1f841bca7e49752e",
  8790. "shasum": ""
  8791. },
  8792. "require": {
  8793. "php": ">=5.3.3"
  8794. },
  8795. "require-dev": {
  8796. "phpunit/phpunit": "^8.5.14|^9"
  8797. },
  8798. "suggest": {
  8799. "dflydev/markdown": "~1.0",
  8800. "erusev/parsedown": "~1.0"
  8801. },
  8802. "type": "library",
  8803. "extra": {
  8804. "branch-alias": {
  8805. "dev-master": "2.0.x-dev"
  8806. }
  8807. },
  8808. "autoload": {
  8809. "psr-0": {
  8810. "Barryvdh": [
  8811. "src/"
  8812. ]
  8813. }
  8814. },
  8815. "notification-url": "https://packagist.org/downloads/",
  8816. "license": [
  8817. "MIT"
  8818. ],
  8819. "authors": [
  8820. {
  8821. "name": "Mike van Riel",
  8822. "email": "mike.vanriel@naenius.com"
  8823. }
  8824. ],
  8825. "support": {
  8826. "source": "https://github.com/barryvdh/ReflectionDocBlock/tree/v2.1.3"
  8827. },
  8828. "time": "2024-10-23T11:41:03+00:00"
  8829. },
  8830. {
  8831. "name": "composer/class-map-generator",
  8832. "version": "1.5.0",
  8833. "source": {
  8834. "type": "git",
  8835. "url": "https://github.com/composer/class-map-generator.git",
  8836. "reference": "4b0a223cf5be7c9ee7e0ef1bc7db42b4a97c9915"
  8837. },
  8838. "dist": {
  8839. "type": "zip",
  8840. "url": "https://api.github.com/repos/composer/class-map-generator/zipball/4b0a223cf5be7c9ee7e0ef1bc7db42b4a97c9915",
  8841. "reference": "4b0a223cf5be7c9ee7e0ef1bc7db42b4a97c9915",
  8842. "shasum": ""
  8843. },
  8844. "require": {
  8845. "composer/pcre": "^2.1 || ^3.1",
  8846. "php": "^7.2 || ^8.0",
  8847. "symfony/finder": "^4.4 || ^5.3 || ^6 || ^7"
  8848. },
  8849. "require-dev": {
  8850. "phpstan/phpstan": "^1.12 || ^2",
  8851. "phpstan/phpstan-deprecation-rules": "^1 || ^2",
  8852. "phpstan/phpstan-phpunit": "^1 || ^2",
  8853. "phpstan/phpstan-strict-rules": "^1.1 || ^2",
  8854. "phpunit/phpunit": "^8",
  8855. "symfony/filesystem": "^5.4 || ^6"
  8856. },
  8857. "type": "library",
  8858. "extra": {
  8859. "branch-alias": {
  8860. "dev-main": "1.x-dev"
  8861. }
  8862. },
  8863. "autoload": {
  8864. "psr-4": {
  8865. "Composer\\ClassMapGenerator\\": "src"
  8866. }
  8867. },
  8868. "notification-url": "https://packagist.org/downloads/",
  8869. "license": [
  8870. "MIT"
  8871. ],
  8872. "authors": [
  8873. {
  8874. "name": "Jordi Boggiano",
  8875. "email": "j.boggiano@seld.be",
  8876. "homepage": "https://seld.be"
  8877. }
  8878. ],
  8879. "description": "Utilities to scan PHP code and generate class maps.",
  8880. "keywords": [
  8881. "classmap"
  8882. ],
  8883. "support": {
  8884. "issues": "https://github.com/composer/class-map-generator/issues",
  8885. "source": "https://github.com/composer/class-map-generator/tree/1.5.0"
  8886. },
  8887. "funding": [
  8888. {
  8889. "url": "https://packagist.com",
  8890. "type": "custom"
  8891. },
  8892. {
  8893. "url": "https://github.com/composer",
  8894. "type": "github"
  8895. },
  8896. {
  8897. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  8898. "type": "tidelift"
  8899. }
  8900. ],
  8901. "time": "2024-11-25T16:11:06+00:00"
  8902. },
  8903. {
  8904. "name": "composer/pcre",
  8905. "version": "3.3.2",
  8906. "source": {
  8907. "type": "git",
  8908. "url": "https://github.com/composer/pcre.git",
  8909. "reference": "b2bed4734f0cc156ee1fe9c0da2550420d99a21e"
  8910. },
  8911. "dist": {
  8912. "type": "zip",
  8913. "url": "https://api.github.com/repos/composer/pcre/zipball/b2bed4734f0cc156ee1fe9c0da2550420d99a21e",
  8914. "reference": "b2bed4734f0cc156ee1fe9c0da2550420d99a21e",
  8915. "shasum": ""
  8916. },
  8917. "require": {
  8918. "php": "^7.4 || ^8.0"
  8919. },
  8920. "conflict": {
  8921. "phpstan/phpstan": "<1.11.10"
  8922. },
  8923. "require-dev": {
  8924. "phpstan/phpstan": "^1.12 || ^2",
  8925. "phpstan/phpstan-strict-rules": "^1 || ^2",
  8926. "phpunit/phpunit": "^8 || ^9"
  8927. },
  8928. "type": "library",
  8929. "extra": {
  8930. "branch-alias": {
  8931. "dev-main": "3.x-dev"
  8932. },
  8933. "phpstan": {
  8934. "includes": [
  8935. "extension.neon"
  8936. ]
  8937. }
  8938. },
  8939. "autoload": {
  8940. "psr-4": {
  8941. "Composer\\Pcre\\": "src"
  8942. }
  8943. },
  8944. "notification-url": "https://packagist.org/downloads/",
  8945. "license": [
  8946. "MIT"
  8947. ],
  8948. "authors": [
  8949. {
  8950. "name": "Jordi Boggiano",
  8951. "email": "j.boggiano@seld.be",
  8952. "homepage": "http://seld.be"
  8953. }
  8954. ],
  8955. "description": "PCRE wrapping library that offers type-safe preg_* replacements.",
  8956. "keywords": [
  8957. "PCRE",
  8958. "preg",
  8959. "regex",
  8960. "regular expression"
  8961. ],
  8962. "support": {
  8963. "issues": "https://github.com/composer/pcre/issues",
  8964. "source": "https://github.com/composer/pcre/tree/3.3.2"
  8965. },
  8966. "funding": [
  8967. {
  8968. "url": "https://packagist.com",
  8969. "type": "custom"
  8970. },
  8971. {
  8972. "url": "https://github.com/composer",
  8973. "type": "github"
  8974. },
  8975. {
  8976. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  8977. "type": "tidelift"
  8978. }
  8979. ],
  8980. "time": "2024-11-12T16:29:46+00:00"
  8981. },
  8982. {
  8983. "name": "doctrine/deprecations",
  8984. "version": "1.1.3",
  8985. "source": {
  8986. "type": "git",
  8987. "url": "https://github.com/doctrine/deprecations.git",
  8988. "reference": "dfbaa3c2d2e9a9df1118213f3b8b0c597bb99fab"
  8989. },
  8990. "dist": {
  8991. "type": "zip",
  8992. "url": "https://api.github.com/repos/doctrine/deprecations/zipball/dfbaa3c2d2e9a9df1118213f3b8b0c597bb99fab",
  8993. "reference": "dfbaa3c2d2e9a9df1118213f3b8b0c597bb99fab",
  8994. "shasum": ""
  8995. },
  8996. "require": {
  8997. "php": "^7.1 || ^8.0"
  8998. },
  8999. "require-dev": {
  9000. "doctrine/coding-standard": "^9",
  9001. "phpstan/phpstan": "1.4.10 || 1.10.15",
  9002. "phpstan/phpstan-phpunit": "^1.0",
  9003. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  9004. "psalm/plugin-phpunit": "0.18.4",
  9005. "psr/log": "^1 || ^2 || ^3",
  9006. "vimeo/psalm": "4.30.0 || 5.12.0"
  9007. },
  9008. "suggest": {
  9009. "psr/log": "Allows logging deprecations via PSR-3 logger implementation"
  9010. },
  9011. "type": "library",
  9012. "autoload": {
  9013. "psr-4": {
  9014. "Doctrine\\Deprecations\\": "lib/Doctrine/Deprecations"
  9015. }
  9016. },
  9017. "notification-url": "https://packagist.org/downloads/",
  9018. "license": [
  9019. "MIT"
  9020. ],
  9021. "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.",
  9022. "homepage": "https://www.doctrine-project.org/",
  9023. "support": {
  9024. "issues": "https://github.com/doctrine/deprecations/issues",
  9025. "source": "https://github.com/doctrine/deprecations/tree/1.1.3"
  9026. },
  9027. "time": "2024-01-30T19:34:25+00:00"
  9028. },
  9029. {
  9030. "name": "hamcrest/hamcrest-php",
  9031. "version": "v2.0.1",
  9032. "source": {
  9033. "type": "git",
  9034. "url": "https://github.com/hamcrest/hamcrest-php.git",
  9035. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3"
  9036. },
  9037. "dist": {
  9038. "type": "zip",
  9039. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  9040. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  9041. "shasum": ""
  9042. },
  9043. "require": {
  9044. "php": "^5.3|^7.0|^8.0"
  9045. },
  9046. "replace": {
  9047. "cordoval/hamcrest-php": "*",
  9048. "davedevelopment/hamcrest-php": "*",
  9049. "kodova/hamcrest-php": "*"
  9050. },
  9051. "require-dev": {
  9052. "phpunit/php-file-iterator": "^1.4 || ^2.0",
  9053. "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0"
  9054. },
  9055. "type": "library",
  9056. "extra": {
  9057. "branch-alias": {
  9058. "dev-master": "2.1-dev"
  9059. }
  9060. },
  9061. "autoload": {
  9062. "classmap": [
  9063. "hamcrest"
  9064. ]
  9065. },
  9066. "notification-url": "https://packagist.org/downloads/",
  9067. "license": [
  9068. "BSD-3-Clause"
  9069. ],
  9070. "description": "This is the PHP port of Hamcrest Matchers",
  9071. "keywords": [
  9072. "test"
  9073. ],
  9074. "support": {
  9075. "issues": "https://github.com/hamcrest/hamcrest-php/issues",
  9076. "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.0.1"
  9077. },
  9078. "time": "2020-07-09T08:09:16+00:00"
  9079. },
  9080. {
  9081. "name": "laravel/pail",
  9082. "version": "v1.2.1",
  9083. "source": {
  9084. "type": "git",
  9085. "url": "https://github.com/laravel/pail.git",
  9086. "reference": "353ac12134b98e2e7c3333d916bd3e523931e583"
  9087. },
  9088. "dist": {
  9089. "type": "zip",
  9090. "url": "https://api.github.com/repos/laravel/pail/zipball/353ac12134b98e2e7c3333d916bd3e523931e583",
  9091. "reference": "353ac12134b98e2e7c3333d916bd3e523931e583",
  9092. "shasum": ""
  9093. },
  9094. "require": {
  9095. "ext-mbstring": "*",
  9096. "illuminate/console": "^10.24|^11.0",
  9097. "illuminate/contracts": "^10.24|^11.0",
  9098. "illuminate/log": "^10.24|^11.0",
  9099. "illuminate/process": "^10.24|^11.0",
  9100. "illuminate/support": "^10.24|^11.0",
  9101. "nunomaduro/termwind": "^1.15|^2.0",
  9102. "php": "^8.2",
  9103. "symfony/console": "^6.0|^7.0"
  9104. },
  9105. "require-dev": {
  9106. "laravel/framework": "^10.24|^11.0",
  9107. "laravel/pint": "^1.13",
  9108. "orchestra/testbench-core": "^8.12|^9.0",
  9109. "pestphp/pest": "^2.20",
  9110. "pestphp/pest-plugin-type-coverage": "^2.3",
  9111. "phpstan/phpstan": "^1.10",
  9112. "symfony/var-dumper": "^6.3|^7.0"
  9113. },
  9114. "type": "library",
  9115. "extra": {
  9116. "branch-alias": {
  9117. "dev-main": "1.x-dev"
  9118. },
  9119. "laravel": {
  9120. "providers": [
  9121. "Laravel\\Pail\\PailServiceProvider"
  9122. ]
  9123. }
  9124. },
  9125. "autoload": {
  9126. "psr-4": {
  9127. "Laravel\\Pail\\": "src/"
  9128. }
  9129. },
  9130. "notification-url": "https://packagist.org/downloads/",
  9131. "license": [
  9132. "MIT"
  9133. ],
  9134. "authors": [
  9135. {
  9136. "name": "Taylor Otwell",
  9137. "email": "taylor@laravel.com"
  9138. },
  9139. {
  9140. "name": "Nuno Maduro",
  9141. "email": "enunomaduro@gmail.com"
  9142. }
  9143. ],
  9144. "description": "Easily delve into your Laravel application's log files directly from the command line.",
  9145. "homepage": "https://github.com/laravel/pail",
  9146. "keywords": [
  9147. "laravel",
  9148. "logs",
  9149. "php",
  9150. "tail"
  9151. ],
  9152. "support": {
  9153. "issues": "https://github.com/laravel/pail/issues",
  9154. "source": "https://github.com/laravel/pail"
  9155. },
  9156. "time": "2024-10-23T12:56:23+00:00"
  9157. },
  9158. {
  9159. "name": "laravel/pint",
  9160. "version": "v1.18.3",
  9161. "source": {
  9162. "type": "git",
  9163. "url": "https://github.com/laravel/pint.git",
  9164. "reference": "cef51821608239040ab841ad6e1c6ae502ae3026"
  9165. },
  9166. "dist": {
  9167. "type": "zip",
  9168. "url": "https://api.github.com/repos/laravel/pint/zipball/cef51821608239040ab841ad6e1c6ae502ae3026",
  9169. "reference": "cef51821608239040ab841ad6e1c6ae502ae3026",
  9170. "shasum": ""
  9171. },
  9172. "require": {
  9173. "ext-json": "*",
  9174. "ext-mbstring": "*",
  9175. "ext-tokenizer": "*",
  9176. "ext-xml": "*",
  9177. "php": "^8.1.0"
  9178. },
  9179. "require-dev": {
  9180. "friendsofphp/php-cs-fixer": "^3.65.0",
  9181. "illuminate/view": "^10.48.24",
  9182. "larastan/larastan": "^2.9.11",
  9183. "laravel-zero/framework": "^10.4.0",
  9184. "mockery/mockery": "^1.6.12",
  9185. "nunomaduro/termwind": "^1.17.0",
  9186. "pestphp/pest": "^2.36.0"
  9187. },
  9188. "bin": [
  9189. "builds/pint"
  9190. ],
  9191. "type": "project",
  9192. "autoload": {
  9193. "psr-4": {
  9194. "App\\": "app/",
  9195. "Database\\Seeders\\": "database/seeders/",
  9196. "Database\\Factories\\": "database/factories/"
  9197. }
  9198. },
  9199. "notification-url": "https://packagist.org/downloads/",
  9200. "license": [
  9201. "MIT"
  9202. ],
  9203. "authors": [
  9204. {
  9205. "name": "Nuno Maduro",
  9206. "email": "enunomaduro@gmail.com"
  9207. }
  9208. ],
  9209. "description": "An opinionated code formatter for PHP.",
  9210. "homepage": "https://laravel.com",
  9211. "keywords": [
  9212. "format",
  9213. "formatter",
  9214. "lint",
  9215. "linter",
  9216. "php"
  9217. ],
  9218. "support": {
  9219. "issues": "https://github.com/laravel/pint/issues",
  9220. "source": "https://github.com/laravel/pint"
  9221. },
  9222. "time": "2024-11-26T15:34:00+00:00"
  9223. },
  9224. {
  9225. "name": "laravel/sail",
  9226. "version": "v1.39.0",
  9227. "source": {
  9228. "type": "git",
  9229. "url": "https://github.com/laravel/sail.git",
  9230. "reference": "be9d67a11133535811f9ec4ab5c176a2f47250fc"
  9231. },
  9232. "dist": {
  9233. "type": "zip",
  9234. "url": "https://api.github.com/repos/laravel/sail/zipball/be9d67a11133535811f9ec4ab5c176a2f47250fc",
  9235. "reference": "be9d67a11133535811f9ec4ab5c176a2f47250fc",
  9236. "shasum": ""
  9237. },
  9238. "require": {
  9239. "illuminate/console": "^9.52.16|^10.0|^11.0",
  9240. "illuminate/contracts": "^9.52.16|^10.0|^11.0",
  9241. "illuminate/support": "^9.52.16|^10.0|^11.0",
  9242. "php": "^8.0",
  9243. "symfony/console": "^6.0|^7.0",
  9244. "symfony/yaml": "^6.0|^7.0"
  9245. },
  9246. "require-dev": {
  9247. "orchestra/testbench": "^7.0|^8.0|^9.0",
  9248. "phpstan/phpstan": "^1.10"
  9249. },
  9250. "bin": [
  9251. "bin/sail"
  9252. ],
  9253. "type": "library",
  9254. "extra": {
  9255. "laravel": {
  9256. "providers": [
  9257. "Laravel\\Sail\\SailServiceProvider"
  9258. ]
  9259. }
  9260. },
  9261. "autoload": {
  9262. "psr-4": {
  9263. "Laravel\\Sail\\": "src/"
  9264. }
  9265. },
  9266. "notification-url": "https://packagist.org/downloads/",
  9267. "license": [
  9268. "MIT"
  9269. ],
  9270. "authors": [
  9271. {
  9272. "name": "Taylor Otwell",
  9273. "email": "taylor@laravel.com"
  9274. }
  9275. ],
  9276. "description": "Docker files for running a basic Laravel application.",
  9277. "keywords": [
  9278. "docker",
  9279. "laravel"
  9280. ],
  9281. "support": {
  9282. "issues": "https://github.com/laravel/sail/issues",
  9283. "source": "https://github.com/laravel/sail"
  9284. },
  9285. "time": "2024-11-25T23:48:26+00:00"
  9286. },
  9287. {
  9288. "name": "mockery/mockery",
  9289. "version": "1.6.12",
  9290. "source": {
  9291. "type": "git",
  9292. "url": "https://github.com/mockery/mockery.git",
  9293. "reference": "1f4efdd7d3beafe9807b08156dfcb176d18f1699"
  9294. },
  9295. "dist": {
  9296. "type": "zip",
  9297. "url": "https://api.github.com/repos/mockery/mockery/zipball/1f4efdd7d3beafe9807b08156dfcb176d18f1699",
  9298. "reference": "1f4efdd7d3beafe9807b08156dfcb176d18f1699",
  9299. "shasum": ""
  9300. },
  9301. "require": {
  9302. "hamcrest/hamcrest-php": "^2.0.1",
  9303. "lib-pcre": ">=7.0",
  9304. "php": ">=7.3"
  9305. },
  9306. "conflict": {
  9307. "phpunit/phpunit": "<8.0"
  9308. },
  9309. "require-dev": {
  9310. "phpunit/phpunit": "^8.5 || ^9.6.17",
  9311. "symplify/easy-coding-standard": "^12.1.14"
  9312. },
  9313. "type": "library",
  9314. "autoload": {
  9315. "files": [
  9316. "library/helpers.php",
  9317. "library/Mockery.php"
  9318. ],
  9319. "psr-4": {
  9320. "Mockery\\": "library/Mockery"
  9321. }
  9322. },
  9323. "notification-url": "https://packagist.org/downloads/",
  9324. "license": [
  9325. "BSD-3-Clause"
  9326. ],
  9327. "authors": [
  9328. {
  9329. "name": "Pádraic Brady",
  9330. "email": "padraic.brady@gmail.com",
  9331. "homepage": "https://github.com/padraic",
  9332. "role": "Author"
  9333. },
  9334. {
  9335. "name": "Dave Marshall",
  9336. "email": "dave.marshall@atstsolutions.co.uk",
  9337. "homepage": "https://davedevelopment.co.uk",
  9338. "role": "Developer"
  9339. },
  9340. {
  9341. "name": "Nathanael Esayeas",
  9342. "email": "nathanael.esayeas@protonmail.com",
  9343. "homepage": "https://github.com/ghostwriter",
  9344. "role": "Lead Developer"
  9345. }
  9346. ],
  9347. "description": "Mockery is a simple yet flexible PHP mock object framework",
  9348. "homepage": "https://github.com/mockery/mockery",
  9349. "keywords": [
  9350. "BDD",
  9351. "TDD",
  9352. "library",
  9353. "mock",
  9354. "mock objects",
  9355. "mockery",
  9356. "stub",
  9357. "test",
  9358. "test double",
  9359. "testing"
  9360. ],
  9361. "support": {
  9362. "docs": "https://docs.mockery.io/",
  9363. "issues": "https://github.com/mockery/mockery/issues",
  9364. "rss": "https://github.com/mockery/mockery/releases.atom",
  9365. "security": "https://github.com/mockery/mockery/security/advisories",
  9366. "source": "https://github.com/mockery/mockery"
  9367. },
  9368. "time": "2024-05-16T03:13:13+00:00"
  9369. },
  9370. {
  9371. "name": "myclabs/deep-copy",
  9372. "version": "1.12.1",
  9373. "source": {
  9374. "type": "git",
  9375. "url": "https://github.com/myclabs/DeepCopy.git",
  9376. "reference": "123267b2c49fbf30d78a7b2d333f6be754b94845"
  9377. },
  9378. "dist": {
  9379. "type": "zip",
  9380. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/123267b2c49fbf30d78a7b2d333f6be754b94845",
  9381. "reference": "123267b2c49fbf30d78a7b2d333f6be754b94845",
  9382. "shasum": ""
  9383. },
  9384. "require": {
  9385. "php": "^7.1 || ^8.0"
  9386. },
  9387. "conflict": {
  9388. "doctrine/collections": "<1.6.8",
  9389. "doctrine/common": "<2.13.3 || >=3 <3.2.2"
  9390. },
  9391. "require-dev": {
  9392. "doctrine/collections": "^1.6.8",
  9393. "doctrine/common": "^2.13.3 || ^3.2.2",
  9394. "phpspec/prophecy": "^1.10",
  9395. "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
  9396. },
  9397. "type": "library",
  9398. "autoload": {
  9399. "files": [
  9400. "src/DeepCopy/deep_copy.php"
  9401. ],
  9402. "psr-4": {
  9403. "DeepCopy\\": "src/DeepCopy/"
  9404. }
  9405. },
  9406. "notification-url": "https://packagist.org/downloads/",
  9407. "license": [
  9408. "MIT"
  9409. ],
  9410. "description": "Create deep copies (clones) of your objects",
  9411. "keywords": [
  9412. "clone",
  9413. "copy",
  9414. "duplicate",
  9415. "object",
  9416. "object graph"
  9417. ],
  9418. "support": {
  9419. "issues": "https://github.com/myclabs/DeepCopy/issues",
  9420. "source": "https://github.com/myclabs/DeepCopy/tree/1.12.1"
  9421. },
  9422. "funding": [
  9423. {
  9424. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  9425. "type": "tidelift"
  9426. }
  9427. ],
  9428. "time": "2024-11-08T17:47:46+00:00"
  9429. },
  9430. {
  9431. "name": "phar-io/manifest",
  9432. "version": "2.0.4",
  9433. "source": {
  9434. "type": "git",
  9435. "url": "https://github.com/phar-io/manifest.git",
  9436. "reference": "54750ef60c58e43759730615a392c31c80e23176"
  9437. },
  9438. "dist": {
  9439. "type": "zip",
  9440. "url": "https://api.github.com/repos/phar-io/manifest/zipball/54750ef60c58e43759730615a392c31c80e23176",
  9441. "reference": "54750ef60c58e43759730615a392c31c80e23176",
  9442. "shasum": ""
  9443. },
  9444. "require": {
  9445. "ext-dom": "*",
  9446. "ext-libxml": "*",
  9447. "ext-phar": "*",
  9448. "ext-xmlwriter": "*",
  9449. "phar-io/version": "^3.0.1",
  9450. "php": "^7.2 || ^8.0"
  9451. },
  9452. "type": "library",
  9453. "extra": {
  9454. "branch-alias": {
  9455. "dev-master": "2.0.x-dev"
  9456. }
  9457. },
  9458. "autoload": {
  9459. "classmap": [
  9460. "src/"
  9461. ]
  9462. },
  9463. "notification-url": "https://packagist.org/downloads/",
  9464. "license": [
  9465. "BSD-3-Clause"
  9466. ],
  9467. "authors": [
  9468. {
  9469. "name": "Arne Blankerts",
  9470. "email": "arne@blankerts.de",
  9471. "role": "Developer"
  9472. },
  9473. {
  9474. "name": "Sebastian Heuer",
  9475. "email": "sebastian@phpeople.de",
  9476. "role": "Developer"
  9477. },
  9478. {
  9479. "name": "Sebastian Bergmann",
  9480. "email": "sebastian@phpunit.de",
  9481. "role": "Developer"
  9482. }
  9483. ],
  9484. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  9485. "support": {
  9486. "issues": "https://github.com/phar-io/manifest/issues",
  9487. "source": "https://github.com/phar-io/manifest/tree/2.0.4"
  9488. },
  9489. "funding": [
  9490. {
  9491. "url": "https://github.com/theseer",
  9492. "type": "github"
  9493. }
  9494. ],
  9495. "time": "2024-03-03T12:33:53+00:00"
  9496. },
  9497. {
  9498. "name": "phar-io/version",
  9499. "version": "3.2.1",
  9500. "source": {
  9501. "type": "git",
  9502. "url": "https://github.com/phar-io/version.git",
  9503. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
  9504. },
  9505. "dist": {
  9506. "type": "zip",
  9507. "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  9508. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  9509. "shasum": ""
  9510. },
  9511. "require": {
  9512. "php": "^7.2 || ^8.0"
  9513. },
  9514. "type": "library",
  9515. "autoload": {
  9516. "classmap": [
  9517. "src/"
  9518. ]
  9519. },
  9520. "notification-url": "https://packagist.org/downloads/",
  9521. "license": [
  9522. "BSD-3-Clause"
  9523. ],
  9524. "authors": [
  9525. {
  9526. "name": "Arne Blankerts",
  9527. "email": "arne@blankerts.de",
  9528. "role": "Developer"
  9529. },
  9530. {
  9531. "name": "Sebastian Heuer",
  9532. "email": "sebastian@phpeople.de",
  9533. "role": "Developer"
  9534. },
  9535. {
  9536. "name": "Sebastian Bergmann",
  9537. "email": "sebastian@phpunit.de",
  9538. "role": "Developer"
  9539. }
  9540. ],
  9541. "description": "Library for handling version information and constraints",
  9542. "support": {
  9543. "issues": "https://github.com/phar-io/version/issues",
  9544. "source": "https://github.com/phar-io/version/tree/3.2.1"
  9545. },
  9546. "time": "2022-02-21T01:04:05+00:00"
  9547. },
  9548. {
  9549. "name": "phpdocumentor/reflection-common",
  9550. "version": "2.2.0",
  9551. "source": {
  9552. "type": "git",
  9553. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  9554. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b"
  9555. },
  9556. "dist": {
  9557. "type": "zip",
  9558. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  9559. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  9560. "shasum": ""
  9561. },
  9562. "require": {
  9563. "php": "^7.2 || ^8.0"
  9564. },
  9565. "type": "library",
  9566. "extra": {
  9567. "branch-alias": {
  9568. "dev-2.x": "2.x-dev"
  9569. }
  9570. },
  9571. "autoload": {
  9572. "psr-4": {
  9573. "phpDocumentor\\Reflection\\": "src/"
  9574. }
  9575. },
  9576. "notification-url": "https://packagist.org/downloads/",
  9577. "license": [
  9578. "MIT"
  9579. ],
  9580. "authors": [
  9581. {
  9582. "name": "Jaap van Otterdijk",
  9583. "email": "opensource@ijaap.nl"
  9584. }
  9585. ],
  9586. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  9587. "homepage": "http://www.phpdoc.org",
  9588. "keywords": [
  9589. "FQSEN",
  9590. "phpDocumentor",
  9591. "phpdoc",
  9592. "reflection",
  9593. "static analysis"
  9594. ],
  9595. "support": {
  9596. "issues": "https://github.com/phpDocumentor/ReflectionCommon/issues",
  9597. "source": "https://github.com/phpDocumentor/ReflectionCommon/tree/2.x"
  9598. },
  9599. "time": "2020-06-27T09:03:43+00:00"
  9600. },
  9601. {
  9602. "name": "phpdocumentor/type-resolver",
  9603. "version": "1.10.0",
  9604. "source": {
  9605. "type": "git",
  9606. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  9607. "reference": "679e3ce485b99e84c775d28e2e96fade9a7fb50a"
  9608. },
  9609. "dist": {
  9610. "type": "zip",
  9611. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/679e3ce485b99e84c775d28e2e96fade9a7fb50a",
  9612. "reference": "679e3ce485b99e84c775d28e2e96fade9a7fb50a",
  9613. "shasum": ""
  9614. },
  9615. "require": {
  9616. "doctrine/deprecations": "^1.0",
  9617. "php": "^7.3 || ^8.0",
  9618. "phpdocumentor/reflection-common": "^2.0",
  9619. "phpstan/phpdoc-parser": "^1.18|^2.0"
  9620. },
  9621. "require-dev": {
  9622. "ext-tokenizer": "*",
  9623. "phpbench/phpbench": "^1.2",
  9624. "phpstan/extension-installer": "^1.1",
  9625. "phpstan/phpstan": "^1.8",
  9626. "phpstan/phpstan-phpunit": "^1.1",
  9627. "phpunit/phpunit": "^9.5",
  9628. "rector/rector": "^0.13.9",
  9629. "vimeo/psalm": "^4.25"
  9630. },
  9631. "type": "library",
  9632. "extra": {
  9633. "branch-alias": {
  9634. "dev-1.x": "1.x-dev"
  9635. }
  9636. },
  9637. "autoload": {
  9638. "psr-4": {
  9639. "phpDocumentor\\Reflection\\": "src"
  9640. }
  9641. },
  9642. "notification-url": "https://packagist.org/downloads/",
  9643. "license": [
  9644. "MIT"
  9645. ],
  9646. "authors": [
  9647. {
  9648. "name": "Mike van Riel",
  9649. "email": "me@mikevanriel.com"
  9650. }
  9651. ],
  9652. "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names",
  9653. "support": {
  9654. "issues": "https://github.com/phpDocumentor/TypeResolver/issues",
  9655. "source": "https://github.com/phpDocumentor/TypeResolver/tree/1.10.0"
  9656. },
  9657. "time": "2024-11-09T15:12:26+00:00"
  9658. },
  9659. {
  9660. "name": "phpstan/phpdoc-parser",
  9661. "version": "2.0.0",
  9662. "source": {
  9663. "type": "git",
  9664. "url": "https://github.com/phpstan/phpdoc-parser.git",
  9665. "reference": "c00d78fb6b29658347f9d37ebe104bffadf36299"
  9666. },
  9667. "dist": {
  9668. "type": "zip",
  9669. "url": "https://api.github.com/repos/phpstan/phpdoc-parser/zipball/c00d78fb6b29658347f9d37ebe104bffadf36299",
  9670. "reference": "c00d78fb6b29658347f9d37ebe104bffadf36299",
  9671. "shasum": ""
  9672. },
  9673. "require": {
  9674. "php": "^7.4 || ^8.0"
  9675. },
  9676. "require-dev": {
  9677. "doctrine/annotations": "^2.0",
  9678. "nikic/php-parser": "^5.3.0",
  9679. "php-parallel-lint/php-parallel-lint": "^1.2",
  9680. "phpstan/extension-installer": "^1.0",
  9681. "phpstan/phpstan": "^2.0",
  9682. "phpstan/phpstan-phpunit": "^2.0",
  9683. "phpstan/phpstan-strict-rules": "^2.0",
  9684. "phpunit/phpunit": "^9.6",
  9685. "symfony/process": "^5.2"
  9686. },
  9687. "type": "library",
  9688. "autoload": {
  9689. "psr-4": {
  9690. "PHPStan\\PhpDocParser\\": [
  9691. "src/"
  9692. ]
  9693. }
  9694. },
  9695. "notification-url": "https://packagist.org/downloads/",
  9696. "license": [
  9697. "MIT"
  9698. ],
  9699. "description": "PHPDoc parser with support for nullable, intersection and generic types",
  9700. "support": {
  9701. "issues": "https://github.com/phpstan/phpdoc-parser/issues",
  9702. "source": "https://github.com/phpstan/phpdoc-parser/tree/2.0.0"
  9703. },
  9704. "time": "2024-10-13T11:29:49+00:00"
  9705. },
  9706. {
  9707. "name": "phpunit/php-code-coverage",
  9708. "version": "11.0.7",
  9709. "source": {
  9710. "type": "git",
  9711. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  9712. "reference": "f7f08030e8811582cc459871d28d6f5a1a4d35ca"
  9713. },
  9714. "dist": {
  9715. "type": "zip",
  9716. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/f7f08030e8811582cc459871d28d6f5a1a4d35ca",
  9717. "reference": "f7f08030e8811582cc459871d28d6f5a1a4d35ca",
  9718. "shasum": ""
  9719. },
  9720. "require": {
  9721. "ext-dom": "*",
  9722. "ext-libxml": "*",
  9723. "ext-xmlwriter": "*",
  9724. "nikic/php-parser": "^5.3.1",
  9725. "php": ">=8.2",
  9726. "phpunit/php-file-iterator": "^5.1.0",
  9727. "phpunit/php-text-template": "^4.0.1",
  9728. "sebastian/code-unit-reverse-lookup": "^4.0.1",
  9729. "sebastian/complexity": "^4.0.1",
  9730. "sebastian/environment": "^7.2.0",
  9731. "sebastian/lines-of-code": "^3.0.1",
  9732. "sebastian/version": "^5.0.2",
  9733. "theseer/tokenizer": "^1.2.3"
  9734. },
  9735. "require-dev": {
  9736. "phpunit/phpunit": "^11.4.1"
  9737. },
  9738. "suggest": {
  9739. "ext-pcov": "PHP extension that provides line coverage",
  9740. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  9741. },
  9742. "type": "library",
  9743. "extra": {
  9744. "branch-alias": {
  9745. "dev-main": "11.0.x-dev"
  9746. }
  9747. },
  9748. "autoload": {
  9749. "classmap": [
  9750. "src/"
  9751. ]
  9752. },
  9753. "notification-url": "https://packagist.org/downloads/",
  9754. "license": [
  9755. "BSD-3-Clause"
  9756. ],
  9757. "authors": [
  9758. {
  9759. "name": "Sebastian Bergmann",
  9760. "email": "sebastian@phpunit.de",
  9761. "role": "lead"
  9762. }
  9763. ],
  9764. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  9765. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  9766. "keywords": [
  9767. "coverage",
  9768. "testing",
  9769. "xunit"
  9770. ],
  9771. "support": {
  9772. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  9773. "security": "https://github.com/sebastianbergmann/php-code-coverage/security/policy",
  9774. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/11.0.7"
  9775. },
  9776. "funding": [
  9777. {
  9778. "url": "https://github.com/sebastianbergmann",
  9779. "type": "github"
  9780. }
  9781. ],
  9782. "time": "2024-10-09T06:21:38+00:00"
  9783. },
  9784. {
  9785. "name": "phpunit/php-file-iterator",
  9786. "version": "5.1.0",
  9787. "source": {
  9788. "type": "git",
  9789. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  9790. "reference": "118cfaaa8bc5aef3287bf315b6060b1174754af6"
  9791. },
  9792. "dist": {
  9793. "type": "zip",
  9794. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/118cfaaa8bc5aef3287bf315b6060b1174754af6",
  9795. "reference": "118cfaaa8bc5aef3287bf315b6060b1174754af6",
  9796. "shasum": ""
  9797. },
  9798. "require": {
  9799. "php": ">=8.2"
  9800. },
  9801. "require-dev": {
  9802. "phpunit/phpunit": "^11.0"
  9803. },
  9804. "type": "library",
  9805. "extra": {
  9806. "branch-alias": {
  9807. "dev-main": "5.0-dev"
  9808. }
  9809. },
  9810. "autoload": {
  9811. "classmap": [
  9812. "src/"
  9813. ]
  9814. },
  9815. "notification-url": "https://packagist.org/downloads/",
  9816. "license": [
  9817. "BSD-3-Clause"
  9818. ],
  9819. "authors": [
  9820. {
  9821. "name": "Sebastian Bergmann",
  9822. "email": "sebastian@phpunit.de",
  9823. "role": "lead"
  9824. }
  9825. ],
  9826. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  9827. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  9828. "keywords": [
  9829. "filesystem",
  9830. "iterator"
  9831. ],
  9832. "support": {
  9833. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  9834. "security": "https://github.com/sebastianbergmann/php-file-iterator/security/policy",
  9835. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/5.1.0"
  9836. },
  9837. "funding": [
  9838. {
  9839. "url": "https://github.com/sebastianbergmann",
  9840. "type": "github"
  9841. }
  9842. ],
  9843. "time": "2024-08-27T05:02:59+00:00"
  9844. },
  9845. {
  9846. "name": "phpunit/php-invoker",
  9847. "version": "5.0.1",
  9848. "source": {
  9849. "type": "git",
  9850. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  9851. "reference": "c1ca3814734c07492b3d4c5f794f4b0995333da2"
  9852. },
  9853. "dist": {
  9854. "type": "zip",
  9855. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/c1ca3814734c07492b3d4c5f794f4b0995333da2",
  9856. "reference": "c1ca3814734c07492b3d4c5f794f4b0995333da2",
  9857. "shasum": ""
  9858. },
  9859. "require": {
  9860. "php": ">=8.2"
  9861. },
  9862. "require-dev": {
  9863. "ext-pcntl": "*",
  9864. "phpunit/phpunit": "^11.0"
  9865. },
  9866. "suggest": {
  9867. "ext-pcntl": "*"
  9868. },
  9869. "type": "library",
  9870. "extra": {
  9871. "branch-alias": {
  9872. "dev-main": "5.0-dev"
  9873. }
  9874. },
  9875. "autoload": {
  9876. "classmap": [
  9877. "src/"
  9878. ]
  9879. },
  9880. "notification-url": "https://packagist.org/downloads/",
  9881. "license": [
  9882. "BSD-3-Clause"
  9883. ],
  9884. "authors": [
  9885. {
  9886. "name": "Sebastian Bergmann",
  9887. "email": "sebastian@phpunit.de",
  9888. "role": "lead"
  9889. }
  9890. ],
  9891. "description": "Invoke callables with a timeout",
  9892. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  9893. "keywords": [
  9894. "process"
  9895. ],
  9896. "support": {
  9897. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  9898. "security": "https://github.com/sebastianbergmann/php-invoker/security/policy",
  9899. "source": "https://github.com/sebastianbergmann/php-invoker/tree/5.0.1"
  9900. },
  9901. "funding": [
  9902. {
  9903. "url": "https://github.com/sebastianbergmann",
  9904. "type": "github"
  9905. }
  9906. ],
  9907. "time": "2024-07-03T05:07:44+00:00"
  9908. },
  9909. {
  9910. "name": "phpunit/php-text-template",
  9911. "version": "4.0.1",
  9912. "source": {
  9913. "type": "git",
  9914. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  9915. "reference": "3e0404dc6b300e6bf56415467ebcb3fe4f33e964"
  9916. },
  9917. "dist": {
  9918. "type": "zip",
  9919. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/3e0404dc6b300e6bf56415467ebcb3fe4f33e964",
  9920. "reference": "3e0404dc6b300e6bf56415467ebcb3fe4f33e964",
  9921. "shasum": ""
  9922. },
  9923. "require": {
  9924. "php": ">=8.2"
  9925. },
  9926. "require-dev": {
  9927. "phpunit/phpunit": "^11.0"
  9928. },
  9929. "type": "library",
  9930. "extra": {
  9931. "branch-alias": {
  9932. "dev-main": "4.0-dev"
  9933. }
  9934. },
  9935. "autoload": {
  9936. "classmap": [
  9937. "src/"
  9938. ]
  9939. },
  9940. "notification-url": "https://packagist.org/downloads/",
  9941. "license": [
  9942. "BSD-3-Clause"
  9943. ],
  9944. "authors": [
  9945. {
  9946. "name": "Sebastian Bergmann",
  9947. "email": "sebastian@phpunit.de",
  9948. "role": "lead"
  9949. }
  9950. ],
  9951. "description": "Simple template engine.",
  9952. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  9953. "keywords": [
  9954. "template"
  9955. ],
  9956. "support": {
  9957. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  9958. "security": "https://github.com/sebastianbergmann/php-text-template/security/policy",
  9959. "source": "https://github.com/sebastianbergmann/php-text-template/tree/4.0.1"
  9960. },
  9961. "funding": [
  9962. {
  9963. "url": "https://github.com/sebastianbergmann",
  9964. "type": "github"
  9965. }
  9966. ],
  9967. "time": "2024-07-03T05:08:43+00:00"
  9968. },
  9969. {
  9970. "name": "phpunit/php-timer",
  9971. "version": "7.0.1",
  9972. "source": {
  9973. "type": "git",
  9974. "url": "https://github.com/sebastianbergmann/php-timer.git",
  9975. "reference": "3b415def83fbcb41f991d9ebf16ae4ad8b7837b3"
  9976. },
  9977. "dist": {
  9978. "type": "zip",
  9979. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/3b415def83fbcb41f991d9ebf16ae4ad8b7837b3",
  9980. "reference": "3b415def83fbcb41f991d9ebf16ae4ad8b7837b3",
  9981. "shasum": ""
  9982. },
  9983. "require": {
  9984. "php": ">=8.2"
  9985. },
  9986. "require-dev": {
  9987. "phpunit/phpunit": "^11.0"
  9988. },
  9989. "type": "library",
  9990. "extra": {
  9991. "branch-alias": {
  9992. "dev-main": "7.0-dev"
  9993. }
  9994. },
  9995. "autoload": {
  9996. "classmap": [
  9997. "src/"
  9998. ]
  9999. },
  10000. "notification-url": "https://packagist.org/downloads/",
  10001. "license": [
  10002. "BSD-3-Clause"
  10003. ],
  10004. "authors": [
  10005. {
  10006. "name": "Sebastian Bergmann",
  10007. "email": "sebastian@phpunit.de",
  10008. "role": "lead"
  10009. }
  10010. ],
  10011. "description": "Utility class for timing",
  10012. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  10013. "keywords": [
  10014. "timer"
  10015. ],
  10016. "support": {
  10017. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  10018. "security": "https://github.com/sebastianbergmann/php-timer/security/policy",
  10019. "source": "https://github.com/sebastianbergmann/php-timer/tree/7.0.1"
  10020. },
  10021. "funding": [
  10022. {
  10023. "url": "https://github.com/sebastianbergmann",
  10024. "type": "github"
  10025. }
  10026. ],
  10027. "time": "2024-07-03T05:09:35+00:00"
  10028. },
  10029. {
  10030. "name": "phpunit/phpunit",
  10031. "version": "11.4.3",
  10032. "source": {
  10033. "type": "git",
  10034. "url": "https://github.com/sebastianbergmann/phpunit.git",
  10035. "reference": "e8e8ed1854de5d36c088ec1833beae40d2dedd76"
  10036. },
  10037. "dist": {
  10038. "type": "zip",
  10039. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/e8e8ed1854de5d36c088ec1833beae40d2dedd76",
  10040. "reference": "e8e8ed1854de5d36c088ec1833beae40d2dedd76",
  10041. "shasum": ""
  10042. },
  10043. "require": {
  10044. "ext-dom": "*",
  10045. "ext-json": "*",
  10046. "ext-libxml": "*",
  10047. "ext-mbstring": "*",
  10048. "ext-xml": "*",
  10049. "ext-xmlwriter": "*",
  10050. "myclabs/deep-copy": "^1.12.0",
  10051. "phar-io/manifest": "^2.0.4",
  10052. "phar-io/version": "^3.2.1",
  10053. "php": ">=8.2",
  10054. "phpunit/php-code-coverage": "^11.0.7",
  10055. "phpunit/php-file-iterator": "^5.1.0",
  10056. "phpunit/php-invoker": "^5.0.1",
  10057. "phpunit/php-text-template": "^4.0.1",
  10058. "phpunit/php-timer": "^7.0.1",
  10059. "sebastian/cli-parser": "^3.0.2",
  10060. "sebastian/code-unit": "^3.0.1",
  10061. "sebastian/comparator": "^6.1.1",
  10062. "sebastian/diff": "^6.0.2",
  10063. "sebastian/environment": "^7.2.0",
  10064. "sebastian/exporter": "^6.1.3",
  10065. "sebastian/global-state": "^7.0.2",
  10066. "sebastian/object-enumerator": "^6.0.1",
  10067. "sebastian/type": "^5.1.0",
  10068. "sebastian/version": "^5.0.2"
  10069. },
  10070. "suggest": {
  10071. "ext-soap": "To be able to generate mocks based on WSDL files"
  10072. },
  10073. "bin": [
  10074. "phpunit"
  10075. ],
  10076. "type": "library",
  10077. "extra": {
  10078. "branch-alias": {
  10079. "dev-main": "11.4-dev"
  10080. }
  10081. },
  10082. "autoload": {
  10083. "files": [
  10084. "src/Framework/Assert/Functions.php"
  10085. ],
  10086. "classmap": [
  10087. "src/"
  10088. ]
  10089. },
  10090. "notification-url": "https://packagist.org/downloads/",
  10091. "license": [
  10092. "BSD-3-Clause"
  10093. ],
  10094. "authors": [
  10095. {
  10096. "name": "Sebastian Bergmann",
  10097. "email": "sebastian@phpunit.de",
  10098. "role": "lead"
  10099. }
  10100. ],
  10101. "description": "The PHP Unit Testing framework.",
  10102. "homepage": "https://phpunit.de/",
  10103. "keywords": [
  10104. "phpunit",
  10105. "testing",
  10106. "xunit"
  10107. ],
  10108. "support": {
  10109. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  10110. "security": "https://github.com/sebastianbergmann/phpunit/security/policy",
  10111. "source": "https://github.com/sebastianbergmann/phpunit/tree/11.4.3"
  10112. },
  10113. "funding": [
  10114. {
  10115. "url": "https://phpunit.de/sponsors.html",
  10116. "type": "custom"
  10117. },
  10118. {
  10119. "url": "https://github.com/sebastianbergmann",
  10120. "type": "github"
  10121. },
  10122. {
  10123. "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit",
  10124. "type": "tidelift"
  10125. }
  10126. ],
  10127. "time": "2024-10-28T13:07:50+00:00"
  10128. },
  10129. {
  10130. "name": "sebastian/cli-parser",
  10131. "version": "3.0.2",
  10132. "source": {
  10133. "type": "git",
  10134. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  10135. "reference": "15c5dd40dc4f38794d383bb95465193f5e0ae180"
  10136. },
  10137. "dist": {
  10138. "type": "zip",
  10139. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/15c5dd40dc4f38794d383bb95465193f5e0ae180",
  10140. "reference": "15c5dd40dc4f38794d383bb95465193f5e0ae180",
  10141. "shasum": ""
  10142. },
  10143. "require": {
  10144. "php": ">=8.2"
  10145. },
  10146. "require-dev": {
  10147. "phpunit/phpunit": "^11.0"
  10148. },
  10149. "type": "library",
  10150. "extra": {
  10151. "branch-alias": {
  10152. "dev-main": "3.0-dev"
  10153. }
  10154. },
  10155. "autoload": {
  10156. "classmap": [
  10157. "src/"
  10158. ]
  10159. },
  10160. "notification-url": "https://packagist.org/downloads/",
  10161. "license": [
  10162. "BSD-3-Clause"
  10163. ],
  10164. "authors": [
  10165. {
  10166. "name": "Sebastian Bergmann",
  10167. "email": "sebastian@phpunit.de",
  10168. "role": "lead"
  10169. }
  10170. ],
  10171. "description": "Library for parsing CLI options",
  10172. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  10173. "support": {
  10174. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  10175. "security": "https://github.com/sebastianbergmann/cli-parser/security/policy",
  10176. "source": "https://github.com/sebastianbergmann/cli-parser/tree/3.0.2"
  10177. },
  10178. "funding": [
  10179. {
  10180. "url": "https://github.com/sebastianbergmann",
  10181. "type": "github"
  10182. }
  10183. ],
  10184. "time": "2024-07-03T04:41:36+00:00"
  10185. },
  10186. {
  10187. "name": "sebastian/code-unit",
  10188. "version": "3.0.1",
  10189. "source": {
  10190. "type": "git",
  10191. "url": "https://github.com/sebastianbergmann/code-unit.git",
  10192. "reference": "6bb7d09d6623567178cf54126afa9c2310114268"
  10193. },
  10194. "dist": {
  10195. "type": "zip",
  10196. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/6bb7d09d6623567178cf54126afa9c2310114268",
  10197. "reference": "6bb7d09d6623567178cf54126afa9c2310114268",
  10198. "shasum": ""
  10199. },
  10200. "require": {
  10201. "php": ">=8.2"
  10202. },
  10203. "require-dev": {
  10204. "phpunit/phpunit": "^11.0"
  10205. },
  10206. "type": "library",
  10207. "extra": {
  10208. "branch-alias": {
  10209. "dev-main": "3.0-dev"
  10210. }
  10211. },
  10212. "autoload": {
  10213. "classmap": [
  10214. "src/"
  10215. ]
  10216. },
  10217. "notification-url": "https://packagist.org/downloads/",
  10218. "license": [
  10219. "BSD-3-Clause"
  10220. ],
  10221. "authors": [
  10222. {
  10223. "name": "Sebastian Bergmann",
  10224. "email": "sebastian@phpunit.de",
  10225. "role": "lead"
  10226. }
  10227. ],
  10228. "description": "Collection of value objects that represent the PHP code units",
  10229. "homepage": "https://github.com/sebastianbergmann/code-unit",
  10230. "support": {
  10231. "issues": "https://github.com/sebastianbergmann/code-unit/issues",
  10232. "security": "https://github.com/sebastianbergmann/code-unit/security/policy",
  10233. "source": "https://github.com/sebastianbergmann/code-unit/tree/3.0.1"
  10234. },
  10235. "funding": [
  10236. {
  10237. "url": "https://github.com/sebastianbergmann",
  10238. "type": "github"
  10239. }
  10240. ],
  10241. "time": "2024-07-03T04:44:28+00:00"
  10242. },
  10243. {
  10244. "name": "sebastian/code-unit-reverse-lookup",
  10245. "version": "4.0.1",
  10246. "source": {
  10247. "type": "git",
  10248. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  10249. "reference": "183a9b2632194febd219bb9246eee421dad8d45e"
  10250. },
  10251. "dist": {
  10252. "type": "zip",
  10253. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/183a9b2632194febd219bb9246eee421dad8d45e",
  10254. "reference": "183a9b2632194febd219bb9246eee421dad8d45e",
  10255. "shasum": ""
  10256. },
  10257. "require": {
  10258. "php": ">=8.2"
  10259. },
  10260. "require-dev": {
  10261. "phpunit/phpunit": "^11.0"
  10262. },
  10263. "type": "library",
  10264. "extra": {
  10265. "branch-alias": {
  10266. "dev-main": "4.0-dev"
  10267. }
  10268. },
  10269. "autoload": {
  10270. "classmap": [
  10271. "src/"
  10272. ]
  10273. },
  10274. "notification-url": "https://packagist.org/downloads/",
  10275. "license": [
  10276. "BSD-3-Clause"
  10277. ],
  10278. "authors": [
  10279. {
  10280. "name": "Sebastian Bergmann",
  10281. "email": "sebastian@phpunit.de"
  10282. }
  10283. ],
  10284. "description": "Looks up which function or method a line of code belongs to",
  10285. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  10286. "support": {
  10287. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  10288. "security": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/security/policy",
  10289. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/4.0.1"
  10290. },
  10291. "funding": [
  10292. {
  10293. "url": "https://github.com/sebastianbergmann",
  10294. "type": "github"
  10295. }
  10296. ],
  10297. "time": "2024-07-03T04:45:54+00:00"
  10298. },
  10299. {
  10300. "name": "sebastian/comparator",
  10301. "version": "6.2.1",
  10302. "source": {
  10303. "type": "git",
  10304. "url": "https://github.com/sebastianbergmann/comparator.git",
  10305. "reference": "43d129d6a0f81c78bee378b46688293eb7ea3739"
  10306. },
  10307. "dist": {
  10308. "type": "zip",
  10309. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/43d129d6a0f81c78bee378b46688293eb7ea3739",
  10310. "reference": "43d129d6a0f81c78bee378b46688293eb7ea3739",
  10311. "shasum": ""
  10312. },
  10313. "require": {
  10314. "ext-dom": "*",
  10315. "ext-mbstring": "*",
  10316. "php": ">=8.2",
  10317. "sebastian/diff": "^6.0",
  10318. "sebastian/exporter": "^6.0"
  10319. },
  10320. "require-dev": {
  10321. "phpunit/phpunit": "^11.4"
  10322. },
  10323. "type": "library",
  10324. "extra": {
  10325. "branch-alias": {
  10326. "dev-main": "6.2-dev"
  10327. }
  10328. },
  10329. "autoload": {
  10330. "classmap": [
  10331. "src/"
  10332. ]
  10333. },
  10334. "notification-url": "https://packagist.org/downloads/",
  10335. "license": [
  10336. "BSD-3-Clause"
  10337. ],
  10338. "authors": [
  10339. {
  10340. "name": "Sebastian Bergmann",
  10341. "email": "sebastian@phpunit.de"
  10342. },
  10343. {
  10344. "name": "Jeff Welch",
  10345. "email": "whatthejeff@gmail.com"
  10346. },
  10347. {
  10348. "name": "Volker Dusch",
  10349. "email": "github@wallbash.com"
  10350. },
  10351. {
  10352. "name": "Bernhard Schussek",
  10353. "email": "bschussek@2bepublished.at"
  10354. }
  10355. ],
  10356. "description": "Provides the functionality to compare PHP values for equality",
  10357. "homepage": "https://github.com/sebastianbergmann/comparator",
  10358. "keywords": [
  10359. "comparator",
  10360. "compare",
  10361. "equality"
  10362. ],
  10363. "support": {
  10364. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  10365. "security": "https://github.com/sebastianbergmann/comparator/security/policy",
  10366. "source": "https://github.com/sebastianbergmann/comparator/tree/6.2.1"
  10367. },
  10368. "funding": [
  10369. {
  10370. "url": "https://github.com/sebastianbergmann",
  10371. "type": "github"
  10372. }
  10373. ],
  10374. "time": "2024-10-31T05:30:08+00:00"
  10375. },
  10376. {
  10377. "name": "sebastian/complexity",
  10378. "version": "4.0.1",
  10379. "source": {
  10380. "type": "git",
  10381. "url": "https://github.com/sebastianbergmann/complexity.git",
  10382. "reference": "ee41d384ab1906c68852636b6de493846e13e5a0"
  10383. },
  10384. "dist": {
  10385. "type": "zip",
  10386. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/ee41d384ab1906c68852636b6de493846e13e5a0",
  10387. "reference": "ee41d384ab1906c68852636b6de493846e13e5a0",
  10388. "shasum": ""
  10389. },
  10390. "require": {
  10391. "nikic/php-parser": "^5.0",
  10392. "php": ">=8.2"
  10393. },
  10394. "require-dev": {
  10395. "phpunit/phpunit": "^11.0"
  10396. },
  10397. "type": "library",
  10398. "extra": {
  10399. "branch-alias": {
  10400. "dev-main": "4.0-dev"
  10401. }
  10402. },
  10403. "autoload": {
  10404. "classmap": [
  10405. "src/"
  10406. ]
  10407. },
  10408. "notification-url": "https://packagist.org/downloads/",
  10409. "license": [
  10410. "BSD-3-Clause"
  10411. ],
  10412. "authors": [
  10413. {
  10414. "name": "Sebastian Bergmann",
  10415. "email": "sebastian@phpunit.de",
  10416. "role": "lead"
  10417. }
  10418. ],
  10419. "description": "Library for calculating the complexity of PHP code units",
  10420. "homepage": "https://github.com/sebastianbergmann/complexity",
  10421. "support": {
  10422. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  10423. "security": "https://github.com/sebastianbergmann/complexity/security/policy",
  10424. "source": "https://github.com/sebastianbergmann/complexity/tree/4.0.1"
  10425. },
  10426. "funding": [
  10427. {
  10428. "url": "https://github.com/sebastianbergmann",
  10429. "type": "github"
  10430. }
  10431. ],
  10432. "time": "2024-07-03T04:49:50+00:00"
  10433. },
  10434. {
  10435. "name": "sebastian/diff",
  10436. "version": "6.0.2",
  10437. "source": {
  10438. "type": "git",
  10439. "url": "https://github.com/sebastianbergmann/diff.git",
  10440. "reference": "b4ccd857127db5d41a5b676f24b51371d76d8544"
  10441. },
  10442. "dist": {
  10443. "type": "zip",
  10444. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/b4ccd857127db5d41a5b676f24b51371d76d8544",
  10445. "reference": "b4ccd857127db5d41a5b676f24b51371d76d8544",
  10446. "shasum": ""
  10447. },
  10448. "require": {
  10449. "php": ">=8.2"
  10450. },
  10451. "require-dev": {
  10452. "phpunit/phpunit": "^11.0",
  10453. "symfony/process": "^4.2 || ^5"
  10454. },
  10455. "type": "library",
  10456. "extra": {
  10457. "branch-alias": {
  10458. "dev-main": "6.0-dev"
  10459. }
  10460. },
  10461. "autoload": {
  10462. "classmap": [
  10463. "src/"
  10464. ]
  10465. },
  10466. "notification-url": "https://packagist.org/downloads/",
  10467. "license": [
  10468. "BSD-3-Clause"
  10469. ],
  10470. "authors": [
  10471. {
  10472. "name": "Sebastian Bergmann",
  10473. "email": "sebastian@phpunit.de"
  10474. },
  10475. {
  10476. "name": "Kore Nordmann",
  10477. "email": "mail@kore-nordmann.de"
  10478. }
  10479. ],
  10480. "description": "Diff implementation",
  10481. "homepage": "https://github.com/sebastianbergmann/diff",
  10482. "keywords": [
  10483. "diff",
  10484. "udiff",
  10485. "unidiff",
  10486. "unified diff"
  10487. ],
  10488. "support": {
  10489. "issues": "https://github.com/sebastianbergmann/diff/issues",
  10490. "security": "https://github.com/sebastianbergmann/diff/security/policy",
  10491. "source": "https://github.com/sebastianbergmann/diff/tree/6.0.2"
  10492. },
  10493. "funding": [
  10494. {
  10495. "url": "https://github.com/sebastianbergmann",
  10496. "type": "github"
  10497. }
  10498. ],
  10499. "time": "2024-07-03T04:53:05+00:00"
  10500. },
  10501. {
  10502. "name": "sebastian/environment",
  10503. "version": "7.2.0",
  10504. "source": {
  10505. "type": "git",
  10506. "url": "https://github.com/sebastianbergmann/environment.git",
  10507. "reference": "855f3ae0ab316bbafe1ba4e16e9f3c078d24a0c5"
  10508. },
  10509. "dist": {
  10510. "type": "zip",
  10511. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/855f3ae0ab316bbafe1ba4e16e9f3c078d24a0c5",
  10512. "reference": "855f3ae0ab316bbafe1ba4e16e9f3c078d24a0c5",
  10513. "shasum": ""
  10514. },
  10515. "require": {
  10516. "php": ">=8.2"
  10517. },
  10518. "require-dev": {
  10519. "phpunit/phpunit": "^11.0"
  10520. },
  10521. "suggest": {
  10522. "ext-posix": "*"
  10523. },
  10524. "type": "library",
  10525. "extra": {
  10526. "branch-alias": {
  10527. "dev-main": "7.2-dev"
  10528. }
  10529. },
  10530. "autoload": {
  10531. "classmap": [
  10532. "src/"
  10533. ]
  10534. },
  10535. "notification-url": "https://packagist.org/downloads/",
  10536. "license": [
  10537. "BSD-3-Clause"
  10538. ],
  10539. "authors": [
  10540. {
  10541. "name": "Sebastian Bergmann",
  10542. "email": "sebastian@phpunit.de"
  10543. }
  10544. ],
  10545. "description": "Provides functionality to handle HHVM/PHP environments",
  10546. "homepage": "https://github.com/sebastianbergmann/environment",
  10547. "keywords": [
  10548. "Xdebug",
  10549. "environment",
  10550. "hhvm"
  10551. ],
  10552. "support": {
  10553. "issues": "https://github.com/sebastianbergmann/environment/issues",
  10554. "security": "https://github.com/sebastianbergmann/environment/security/policy",
  10555. "source": "https://github.com/sebastianbergmann/environment/tree/7.2.0"
  10556. },
  10557. "funding": [
  10558. {
  10559. "url": "https://github.com/sebastianbergmann",
  10560. "type": "github"
  10561. }
  10562. ],
  10563. "time": "2024-07-03T04:54:44+00:00"
  10564. },
  10565. {
  10566. "name": "sebastian/exporter",
  10567. "version": "6.1.3",
  10568. "source": {
  10569. "type": "git",
  10570. "url": "https://github.com/sebastianbergmann/exporter.git",
  10571. "reference": "c414673eee9a8f9d51bbf8d61fc9e3ef1e85b20e"
  10572. },
  10573. "dist": {
  10574. "type": "zip",
  10575. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/c414673eee9a8f9d51bbf8d61fc9e3ef1e85b20e",
  10576. "reference": "c414673eee9a8f9d51bbf8d61fc9e3ef1e85b20e",
  10577. "shasum": ""
  10578. },
  10579. "require": {
  10580. "ext-mbstring": "*",
  10581. "php": ">=8.2",
  10582. "sebastian/recursion-context": "^6.0"
  10583. },
  10584. "require-dev": {
  10585. "phpunit/phpunit": "^11.2"
  10586. },
  10587. "type": "library",
  10588. "extra": {
  10589. "branch-alias": {
  10590. "dev-main": "6.1-dev"
  10591. }
  10592. },
  10593. "autoload": {
  10594. "classmap": [
  10595. "src/"
  10596. ]
  10597. },
  10598. "notification-url": "https://packagist.org/downloads/",
  10599. "license": [
  10600. "BSD-3-Clause"
  10601. ],
  10602. "authors": [
  10603. {
  10604. "name": "Sebastian Bergmann",
  10605. "email": "sebastian@phpunit.de"
  10606. },
  10607. {
  10608. "name": "Jeff Welch",
  10609. "email": "whatthejeff@gmail.com"
  10610. },
  10611. {
  10612. "name": "Volker Dusch",
  10613. "email": "github@wallbash.com"
  10614. },
  10615. {
  10616. "name": "Adam Harvey",
  10617. "email": "aharvey@php.net"
  10618. },
  10619. {
  10620. "name": "Bernhard Schussek",
  10621. "email": "bschussek@gmail.com"
  10622. }
  10623. ],
  10624. "description": "Provides the functionality to export PHP variables for visualization",
  10625. "homepage": "https://www.github.com/sebastianbergmann/exporter",
  10626. "keywords": [
  10627. "export",
  10628. "exporter"
  10629. ],
  10630. "support": {
  10631. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  10632. "security": "https://github.com/sebastianbergmann/exporter/security/policy",
  10633. "source": "https://github.com/sebastianbergmann/exporter/tree/6.1.3"
  10634. },
  10635. "funding": [
  10636. {
  10637. "url": "https://github.com/sebastianbergmann",
  10638. "type": "github"
  10639. }
  10640. ],
  10641. "time": "2024-07-03T04:56:19+00:00"
  10642. },
  10643. {
  10644. "name": "sebastian/global-state",
  10645. "version": "7.0.2",
  10646. "source": {
  10647. "type": "git",
  10648. "url": "https://github.com/sebastianbergmann/global-state.git",
  10649. "reference": "3be331570a721f9a4b5917f4209773de17f747d7"
  10650. },
  10651. "dist": {
  10652. "type": "zip",
  10653. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/3be331570a721f9a4b5917f4209773de17f747d7",
  10654. "reference": "3be331570a721f9a4b5917f4209773de17f747d7",
  10655. "shasum": ""
  10656. },
  10657. "require": {
  10658. "php": ">=8.2",
  10659. "sebastian/object-reflector": "^4.0",
  10660. "sebastian/recursion-context": "^6.0"
  10661. },
  10662. "require-dev": {
  10663. "ext-dom": "*",
  10664. "phpunit/phpunit": "^11.0"
  10665. },
  10666. "type": "library",
  10667. "extra": {
  10668. "branch-alias": {
  10669. "dev-main": "7.0-dev"
  10670. }
  10671. },
  10672. "autoload": {
  10673. "classmap": [
  10674. "src/"
  10675. ]
  10676. },
  10677. "notification-url": "https://packagist.org/downloads/",
  10678. "license": [
  10679. "BSD-3-Clause"
  10680. ],
  10681. "authors": [
  10682. {
  10683. "name": "Sebastian Bergmann",
  10684. "email": "sebastian@phpunit.de"
  10685. }
  10686. ],
  10687. "description": "Snapshotting of global state",
  10688. "homepage": "https://www.github.com/sebastianbergmann/global-state",
  10689. "keywords": [
  10690. "global state"
  10691. ],
  10692. "support": {
  10693. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  10694. "security": "https://github.com/sebastianbergmann/global-state/security/policy",
  10695. "source": "https://github.com/sebastianbergmann/global-state/tree/7.0.2"
  10696. },
  10697. "funding": [
  10698. {
  10699. "url": "https://github.com/sebastianbergmann",
  10700. "type": "github"
  10701. }
  10702. ],
  10703. "time": "2024-07-03T04:57:36+00:00"
  10704. },
  10705. {
  10706. "name": "sebastian/lines-of-code",
  10707. "version": "3.0.1",
  10708. "source": {
  10709. "type": "git",
  10710. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  10711. "reference": "d36ad0d782e5756913e42ad87cb2890f4ffe467a"
  10712. },
  10713. "dist": {
  10714. "type": "zip",
  10715. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/d36ad0d782e5756913e42ad87cb2890f4ffe467a",
  10716. "reference": "d36ad0d782e5756913e42ad87cb2890f4ffe467a",
  10717. "shasum": ""
  10718. },
  10719. "require": {
  10720. "nikic/php-parser": "^5.0",
  10721. "php": ">=8.2"
  10722. },
  10723. "require-dev": {
  10724. "phpunit/phpunit": "^11.0"
  10725. },
  10726. "type": "library",
  10727. "extra": {
  10728. "branch-alias": {
  10729. "dev-main": "3.0-dev"
  10730. }
  10731. },
  10732. "autoload": {
  10733. "classmap": [
  10734. "src/"
  10735. ]
  10736. },
  10737. "notification-url": "https://packagist.org/downloads/",
  10738. "license": [
  10739. "BSD-3-Clause"
  10740. ],
  10741. "authors": [
  10742. {
  10743. "name": "Sebastian Bergmann",
  10744. "email": "sebastian@phpunit.de",
  10745. "role": "lead"
  10746. }
  10747. ],
  10748. "description": "Library for counting the lines of code in PHP source code",
  10749. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  10750. "support": {
  10751. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  10752. "security": "https://github.com/sebastianbergmann/lines-of-code/security/policy",
  10753. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/3.0.1"
  10754. },
  10755. "funding": [
  10756. {
  10757. "url": "https://github.com/sebastianbergmann",
  10758. "type": "github"
  10759. }
  10760. ],
  10761. "time": "2024-07-03T04:58:38+00:00"
  10762. },
  10763. {
  10764. "name": "sebastian/object-enumerator",
  10765. "version": "6.0.1",
  10766. "source": {
  10767. "type": "git",
  10768. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  10769. "reference": "f5b498e631a74204185071eb41f33f38d64608aa"
  10770. },
  10771. "dist": {
  10772. "type": "zip",
  10773. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/f5b498e631a74204185071eb41f33f38d64608aa",
  10774. "reference": "f5b498e631a74204185071eb41f33f38d64608aa",
  10775. "shasum": ""
  10776. },
  10777. "require": {
  10778. "php": ">=8.2",
  10779. "sebastian/object-reflector": "^4.0",
  10780. "sebastian/recursion-context": "^6.0"
  10781. },
  10782. "require-dev": {
  10783. "phpunit/phpunit": "^11.0"
  10784. },
  10785. "type": "library",
  10786. "extra": {
  10787. "branch-alias": {
  10788. "dev-main": "6.0-dev"
  10789. }
  10790. },
  10791. "autoload": {
  10792. "classmap": [
  10793. "src/"
  10794. ]
  10795. },
  10796. "notification-url": "https://packagist.org/downloads/",
  10797. "license": [
  10798. "BSD-3-Clause"
  10799. ],
  10800. "authors": [
  10801. {
  10802. "name": "Sebastian Bergmann",
  10803. "email": "sebastian@phpunit.de"
  10804. }
  10805. ],
  10806. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  10807. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  10808. "support": {
  10809. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  10810. "security": "https://github.com/sebastianbergmann/object-enumerator/security/policy",
  10811. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/6.0.1"
  10812. },
  10813. "funding": [
  10814. {
  10815. "url": "https://github.com/sebastianbergmann",
  10816. "type": "github"
  10817. }
  10818. ],
  10819. "time": "2024-07-03T05:00:13+00:00"
  10820. },
  10821. {
  10822. "name": "sebastian/object-reflector",
  10823. "version": "4.0.1",
  10824. "source": {
  10825. "type": "git",
  10826. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  10827. "reference": "6e1a43b411b2ad34146dee7524cb13a068bb35f9"
  10828. },
  10829. "dist": {
  10830. "type": "zip",
  10831. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/6e1a43b411b2ad34146dee7524cb13a068bb35f9",
  10832. "reference": "6e1a43b411b2ad34146dee7524cb13a068bb35f9",
  10833. "shasum": ""
  10834. },
  10835. "require": {
  10836. "php": ">=8.2"
  10837. },
  10838. "require-dev": {
  10839. "phpunit/phpunit": "^11.0"
  10840. },
  10841. "type": "library",
  10842. "extra": {
  10843. "branch-alias": {
  10844. "dev-main": "4.0-dev"
  10845. }
  10846. },
  10847. "autoload": {
  10848. "classmap": [
  10849. "src/"
  10850. ]
  10851. },
  10852. "notification-url": "https://packagist.org/downloads/",
  10853. "license": [
  10854. "BSD-3-Clause"
  10855. ],
  10856. "authors": [
  10857. {
  10858. "name": "Sebastian Bergmann",
  10859. "email": "sebastian@phpunit.de"
  10860. }
  10861. ],
  10862. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  10863. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  10864. "support": {
  10865. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  10866. "security": "https://github.com/sebastianbergmann/object-reflector/security/policy",
  10867. "source": "https://github.com/sebastianbergmann/object-reflector/tree/4.0.1"
  10868. },
  10869. "funding": [
  10870. {
  10871. "url": "https://github.com/sebastianbergmann",
  10872. "type": "github"
  10873. }
  10874. ],
  10875. "time": "2024-07-03T05:01:32+00:00"
  10876. },
  10877. {
  10878. "name": "sebastian/recursion-context",
  10879. "version": "6.0.2",
  10880. "source": {
  10881. "type": "git",
  10882. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  10883. "reference": "694d156164372abbd149a4b85ccda2e4670c0e16"
  10884. },
  10885. "dist": {
  10886. "type": "zip",
  10887. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/694d156164372abbd149a4b85ccda2e4670c0e16",
  10888. "reference": "694d156164372abbd149a4b85ccda2e4670c0e16",
  10889. "shasum": ""
  10890. },
  10891. "require": {
  10892. "php": ">=8.2"
  10893. },
  10894. "require-dev": {
  10895. "phpunit/phpunit": "^11.0"
  10896. },
  10897. "type": "library",
  10898. "extra": {
  10899. "branch-alias": {
  10900. "dev-main": "6.0-dev"
  10901. }
  10902. },
  10903. "autoload": {
  10904. "classmap": [
  10905. "src/"
  10906. ]
  10907. },
  10908. "notification-url": "https://packagist.org/downloads/",
  10909. "license": [
  10910. "BSD-3-Clause"
  10911. ],
  10912. "authors": [
  10913. {
  10914. "name": "Sebastian Bergmann",
  10915. "email": "sebastian@phpunit.de"
  10916. },
  10917. {
  10918. "name": "Jeff Welch",
  10919. "email": "whatthejeff@gmail.com"
  10920. },
  10921. {
  10922. "name": "Adam Harvey",
  10923. "email": "aharvey@php.net"
  10924. }
  10925. ],
  10926. "description": "Provides functionality to recursively process PHP variables",
  10927. "homepage": "https://github.com/sebastianbergmann/recursion-context",
  10928. "support": {
  10929. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  10930. "security": "https://github.com/sebastianbergmann/recursion-context/security/policy",
  10931. "source": "https://github.com/sebastianbergmann/recursion-context/tree/6.0.2"
  10932. },
  10933. "funding": [
  10934. {
  10935. "url": "https://github.com/sebastianbergmann",
  10936. "type": "github"
  10937. }
  10938. ],
  10939. "time": "2024-07-03T05:10:34+00:00"
  10940. },
  10941. {
  10942. "name": "sebastian/type",
  10943. "version": "5.1.0",
  10944. "source": {
  10945. "type": "git",
  10946. "url": "https://github.com/sebastianbergmann/type.git",
  10947. "reference": "461b9c5da241511a2a0e8f240814fb23ce5c0aac"
  10948. },
  10949. "dist": {
  10950. "type": "zip",
  10951. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/461b9c5da241511a2a0e8f240814fb23ce5c0aac",
  10952. "reference": "461b9c5da241511a2a0e8f240814fb23ce5c0aac",
  10953. "shasum": ""
  10954. },
  10955. "require": {
  10956. "php": ">=8.2"
  10957. },
  10958. "require-dev": {
  10959. "phpunit/phpunit": "^11.3"
  10960. },
  10961. "type": "library",
  10962. "extra": {
  10963. "branch-alias": {
  10964. "dev-main": "5.1-dev"
  10965. }
  10966. },
  10967. "autoload": {
  10968. "classmap": [
  10969. "src/"
  10970. ]
  10971. },
  10972. "notification-url": "https://packagist.org/downloads/",
  10973. "license": [
  10974. "BSD-3-Clause"
  10975. ],
  10976. "authors": [
  10977. {
  10978. "name": "Sebastian Bergmann",
  10979. "email": "sebastian@phpunit.de",
  10980. "role": "lead"
  10981. }
  10982. ],
  10983. "description": "Collection of value objects that represent the types of the PHP type system",
  10984. "homepage": "https://github.com/sebastianbergmann/type",
  10985. "support": {
  10986. "issues": "https://github.com/sebastianbergmann/type/issues",
  10987. "security": "https://github.com/sebastianbergmann/type/security/policy",
  10988. "source": "https://github.com/sebastianbergmann/type/tree/5.1.0"
  10989. },
  10990. "funding": [
  10991. {
  10992. "url": "https://github.com/sebastianbergmann",
  10993. "type": "github"
  10994. }
  10995. ],
  10996. "time": "2024-09-17T13:12:04+00:00"
  10997. },
  10998. {
  10999. "name": "sebastian/version",
  11000. "version": "5.0.2",
  11001. "source": {
  11002. "type": "git",
  11003. "url": "https://github.com/sebastianbergmann/version.git",
  11004. "reference": "c687e3387b99f5b03b6caa64c74b63e2936ff874"
  11005. },
  11006. "dist": {
  11007. "type": "zip",
  11008. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c687e3387b99f5b03b6caa64c74b63e2936ff874",
  11009. "reference": "c687e3387b99f5b03b6caa64c74b63e2936ff874",
  11010. "shasum": ""
  11011. },
  11012. "require": {
  11013. "php": ">=8.2"
  11014. },
  11015. "type": "library",
  11016. "extra": {
  11017. "branch-alias": {
  11018. "dev-main": "5.0-dev"
  11019. }
  11020. },
  11021. "autoload": {
  11022. "classmap": [
  11023. "src/"
  11024. ]
  11025. },
  11026. "notification-url": "https://packagist.org/downloads/",
  11027. "license": [
  11028. "BSD-3-Clause"
  11029. ],
  11030. "authors": [
  11031. {
  11032. "name": "Sebastian Bergmann",
  11033. "email": "sebastian@phpunit.de",
  11034. "role": "lead"
  11035. }
  11036. ],
  11037. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  11038. "homepage": "https://github.com/sebastianbergmann/version",
  11039. "support": {
  11040. "issues": "https://github.com/sebastianbergmann/version/issues",
  11041. "security": "https://github.com/sebastianbergmann/version/security/policy",
  11042. "source": "https://github.com/sebastianbergmann/version/tree/5.0.2"
  11043. },
  11044. "funding": [
  11045. {
  11046. "url": "https://github.com/sebastianbergmann",
  11047. "type": "github"
  11048. }
  11049. ],
  11050. "time": "2024-10-09T05:16:32+00:00"
  11051. },
  11052. {
  11053. "name": "theseer/tokenizer",
  11054. "version": "1.2.3",
  11055. "source": {
  11056. "type": "git",
  11057. "url": "https://github.com/theseer/tokenizer.git",
  11058. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2"
  11059. },
  11060. "dist": {
  11061. "type": "zip",
  11062. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  11063. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  11064. "shasum": ""
  11065. },
  11066. "require": {
  11067. "ext-dom": "*",
  11068. "ext-tokenizer": "*",
  11069. "ext-xmlwriter": "*",
  11070. "php": "^7.2 || ^8.0"
  11071. },
  11072. "type": "library",
  11073. "autoload": {
  11074. "classmap": [
  11075. "src/"
  11076. ]
  11077. },
  11078. "notification-url": "https://packagist.org/downloads/",
  11079. "license": [
  11080. "BSD-3-Clause"
  11081. ],
  11082. "authors": [
  11083. {
  11084. "name": "Arne Blankerts",
  11085. "email": "arne@blankerts.de",
  11086. "role": "Developer"
  11087. }
  11088. ],
  11089. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  11090. "support": {
  11091. "issues": "https://github.com/theseer/tokenizer/issues",
  11092. "source": "https://github.com/theseer/tokenizer/tree/1.2.3"
  11093. },
  11094. "funding": [
  11095. {
  11096. "url": "https://github.com/theseer",
  11097. "type": "github"
  11098. }
  11099. ],
  11100. "time": "2024-03-03T12:36:25+00:00"
  11101. }
  11102. ],
  11103. "aliases": [],
  11104. "minimum-stability": "stable",
  11105. "stability-flags": [],
  11106. "prefer-stable": true,
  11107. "prefer-lowest": false,
  11108. "platform": {
  11109. "php": "^8.2"
  11110. },
  11111. "platform-dev": [],
  11112. "plugin-api-version": "2.6.0"
  11113. }