composer.lock 301 KB

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