composer.lock 354 KB

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