composer.lock 305 KB

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