composer.lock 280 KB

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