composer.lock 289 KB

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