composer.lock 311 KB

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