composer.lock 283 KB

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