composer.lock 334 KB

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