You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

composer.lock 279KB

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