composer.lock 304 KB

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