composer.lock 413 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546105471054810549105501055110552105531055410555105561055710558105591056010561105621056310564105651056610567105681056910570105711057210573105741057510576105771057810579105801058110582105831058410585105861058710588105891059010591105921059310594105951059610597105981059910600106011060210603106041060510606106071060810609106101061110612106131061410615106161061710618106191062010621106221062310624106251062610627106281062910630106311063210633106341063510636106371063810639106401064110642106431064410645106461064710648106491065010651106521065310654106551065610657106581065910660106611066210663106641066510666106671066810669106701067110672106731067410675106761067710678106791068010681106821068310684106851068610687106881068910690106911069210693106941069510696106971069810699107001070110702107031070410705107061070710708107091071010711107121071310714107151071610717107181071910720107211072210723107241072510726107271072810729107301073110732107331073410735107361073710738107391074010741107421074310744107451074610747107481074910750107511075210753107541075510756107571075810759107601076110762107631076410765107661076710768107691077010771107721077310774107751077610777107781077910780107811078210783107841078510786107871078810789107901079110792107931079410795107961079710798107991080010801108021080310804108051080610807108081080910810108111081210813108141081510816108171081810819108201082110822108231082410825108261082710828108291083010831108321083310834108351083610837108381083910840108411084210843108441084510846108471084810849108501085110852108531085410855108561085710858108591086010861108621086310864108651086610867108681086910870108711087210873108741087510876108771087810879108801088110882108831088410885108861088710888108891089010891108921089310894108951089610897108981089910900109011090210903109041090510906109071090810909109101091110912109131091410915109161091710918109191092010921109221092310924109251092610927109281092910930109311093210933109341093510936109371093810939109401094110942109431094410945109461094710948109491095010951109521095310954109551095610957109581095910960109611096210963109641096510966109671096810969109701097110972109731097410975109761097710978109791098010981109821098310984109851098610987109881098910990109911099210993109941099510996109971099810999110001100111002110031100411005110061100711008110091101011011110121101311014110151101611017110181101911020110211102211023110241102511026110271102811029110301103111032110331103411035110361103711038110391104011041110421104311044110451104611047110481104911050110511105211053110541105511056110571105811059110601106111062110631106411065110661106711068110691107011071110721107311074110751107611077110781107911080110811108211083110841108511086110871108811089110901109111092110931109411095110961109711098110991110011101111021110311104111051110611107111081110911110111111111211113111141111511116111171111811119111201112111122111231112411125111261112711128111291113011131111321113311134111351113611137111381113911140111411114211143111441114511146111471114811149111501115111152111531115411155111561115711158111591116011161111621116311164111651116611167111681116911170111711117211173111741117511176111771117811179111801118111182111831118411185111861118711188111891119011191111921119311194111951119611197111981119911200112011120211203112041120511206112071120811209112101121111212112131121411215112161121711218112191122011221112221122311224112251122611227112281122911230112311123211233112341123511236112371123811239112401124111242112431124411245112461124711248112491125011251112521125311254112551125611257112581125911260112611126211263112641126511266112671126811269112701127111272112731127411275112761127711278112791128011281112821128311284112851128611287112881128911290112911129211293112941129511296112971129811299113001130111302113031130411305113061130711308113091131011311113121131311314113151131611317113181131911320113211132211323113241132511326113271132811329113301133111332113331133411335113361133711338113391134011341113421134311344113451134611347113481134911350113511135211353113541135511356113571135811359113601136111362113631136411365113661136711368113691137011371113721137311374113751137611377113781137911380113811138211383113841138511386113871138811389113901139111392113931139411395113961139711398113991140011401114021140311404114051140611407114081140911410114111141211413114141141511416114171141811419114201142111422114231142411425114261142711428114291143011431114321143311434114351143611437114381143911440114411144211443114441144511446114471144811449114501145111452114531145411455114561145711458114591146011461114621146311464114651146611467114681146911470114711147211473114741147511476114771147811479114801148111482114831148411485114861148711488114891149011491114921149311494114951149611497114981149911500115011150211503115041150511506115071150811509115101151111512115131151411515115161151711518115191152011521115221152311524115251152611527115281152911530115311153211533115341153511536115371153811539115401154111542115431154411545115461154711548115491155011551115521155311554115551155611557115581155911560
  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": "3c21217e74cf762827c63ab922e9f046",
  8. "packages": [
  9. {
  10. "name": "alchemy/binary-driver",
  11. "version": "v5.2.0",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/alchemy-fr/BinaryDriver.git",
  15. "reference": "e0615cdff315e6b4b05ada67906df6262a020d22"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/alchemy-fr/BinaryDriver/zipball/e0615cdff315e6b4b05ada67906df6262a020d22",
  20. "reference": "e0615cdff315e6b4b05ada67906df6262a020d22",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "evenement/evenement": "^3.0|^2.0|^1.0",
  25. "php": ">=5.5",
  26. "psr/log": "^1.0",
  27. "symfony/process": "^2.3|^3.0|^4.0|^5.0"
  28. },
  29. "require-dev": {
  30. "phpunit/phpunit": "^4.0|^5.0"
  31. },
  32. "type": "library",
  33. "autoload": {
  34. "psr-0": {
  35. "Alchemy": "src"
  36. }
  37. },
  38. "notification-url": "https://packagist.org/downloads/",
  39. "license": [
  40. "MIT"
  41. ],
  42. "authors": [
  43. {
  44. "name": "Nicolas Le Goff",
  45. "email": "legoff.n@gmail.com"
  46. },
  47. {
  48. "name": "Romain Neutron",
  49. "email": "imprec@gmail.com",
  50. "homepage": "http://www.lickmychip.com/"
  51. },
  52. {
  53. "name": "Phraseanet Team",
  54. "email": "info@alchemy.fr",
  55. "homepage": "http://www.phraseanet.com/"
  56. },
  57. {
  58. "name": "Jens Hausdorf",
  59. "email": "mail@jens-hausdorf.de",
  60. "homepage": "https://jens-hausdorf.de",
  61. "role": "Maintainer"
  62. }
  63. ],
  64. "description": "A set of tools to build binary drivers",
  65. "keywords": [
  66. "binary",
  67. "driver"
  68. ],
  69. "support": {
  70. "issues": "https://github.com/alchemy-fr/BinaryDriver/issues",
  71. "source": "https://github.com/alchemy-fr/BinaryDriver/tree/master"
  72. },
  73. "time": "2020-02-12T19:35:11+00:00"
  74. },
  75. {
  76. "name": "asm89/stack-cors",
  77. "version": "v2.0.3",
  78. "source": {
  79. "type": "git",
  80. "url": "https://github.com/asm89/stack-cors.git",
  81. "reference": "9cb795bf30988e8c96dd3c40623c48a877bc6714"
  82. },
  83. "dist": {
  84. "type": "zip",
  85. "url": "https://api.github.com/repos/asm89/stack-cors/zipball/9cb795bf30988e8c96dd3c40623c48a877bc6714",
  86. "reference": "9cb795bf30988e8c96dd3c40623c48a877bc6714",
  87. "shasum": ""
  88. },
  89. "require": {
  90. "php": "^7.0|^8.0",
  91. "symfony/http-foundation": "~2.7|~3.0|~4.0|~5.0",
  92. "symfony/http-kernel": "~2.7|~3.0|~4.0|~5.0"
  93. },
  94. "require-dev": {
  95. "phpunit/phpunit": "^6|^7|^8|^9",
  96. "squizlabs/php_codesniffer": "^3.5"
  97. },
  98. "type": "library",
  99. "extra": {
  100. "branch-alias": {
  101. "dev-master": "2.0-dev"
  102. }
  103. },
  104. "autoload": {
  105. "psr-4": {
  106. "Asm89\\Stack\\": "src/"
  107. }
  108. },
  109. "notification-url": "https://packagist.org/downloads/",
  110. "license": [
  111. "MIT"
  112. ],
  113. "authors": [
  114. {
  115. "name": "Alexander",
  116. "email": "iam.asm89@gmail.com"
  117. }
  118. ],
  119. "description": "Cross-origin resource sharing library and stack middleware",
  120. "homepage": "https://github.com/asm89/stack-cors",
  121. "keywords": [
  122. "cors",
  123. "stack"
  124. ],
  125. "support": {
  126. "issues": "https://github.com/asm89/stack-cors/issues",
  127. "source": "https://github.com/asm89/stack-cors/tree/v2.0.3"
  128. },
  129. "time": "2021-03-11T06:42:03+00:00"
  130. },
  131. {
  132. "name": "aws/aws-crt-php",
  133. "version": "v1.0.2",
  134. "source": {
  135. "type": "git",
  136. "url": "https://github.com/awslabs/aws-crt-php.git",
  137. "reference": "3942776a8c99209908ee0b287746263725685732"
  138. },
  139. "dist": {
  140. "type": "zip",
  141. "url": "https://api.github.com/repos/awslabs/aws-crt-php/zipball/3942776a8c99209908ee0b287746263725685732",
  142. "reference": "3942776a8c99209908ee0b287746263725685732",
  143. "shasum": ""
  144. },
  145. "require": {
  146. "php": ">=5.5"
  147. },
  148. "require-dev": {
  149. "phpunit/phpunit": "^4.8.35|^5.4.3"
  150. },
  151. "type": "library",
  152. "autoload": {
  153. "classmap": [
  154. "src/"
  155. ]
  156. },
  157. "notification-url": "https://packagist.org/downloads/",
  158. "license": [
  159. "Apache-2.0"
  160. ],
  161. "authors": [
  162. {
  163. "name": "AWS SDK Common Runtime Team",
  164. "email": "aws-sdk-common-runtime@amazon.com"
  165. }
  166. ],
  167. "description": "AWS Common Runtime for PHP",
  168. "homepage": "http://aws.amazon.com/sdkforphp",
  169. "keywords": [
  170. "amazon",
  171. "aws",
  172. "crt",
  173. "sdk"
  174. ],
  175. "support": {
  176. "issues": "https://github.com/awslabs/aws-crt-php/issues",
  177. "source": "https://github.com/awslabs/aws-crt-php/tree/v1.0.2"
  178. },
  179. "time": "2021-09-03T22:57:30+00:00"
  180. },
  181. {
  182. "name": "aws/aws-sdk-php",
  183. "version": "3.208.7",
  184. "source": {
  185. "type": "git",
  186. "url": "https://github.com/aws/aws-sdk-php.git",
  187. "reference": "41a800dd7cf5c4ac0ef9bf8db01e838ab6a3698c"
  188. },
  189. "dist": {
  190. "type": "zip",
  191. "url": "https://api.github.com/repos/aws/aws-sdk-php/zipball/41a800dd7cf5c4ac0ef9bf8db01e838ab6a3698c",
  192. "reference": "41a800dd7cf5c4ac0ef9bf8db01e838ab6a3698c",
  193. "shasum": ""
  194. },
  195. "require": {
  196. "aws/aws-crt-php": "^1.0.2",
  197. "ext-json": "*",
  198. "ext-pcre": "*",
  199. "ext-simplexml": "*",
  200. "guzzlehttp/guzzle": "^5.3.3|^6.2.1|^7.0",
  201. "guzzlehttp/promises": "^1.4.0",
  202. "guzzlehttp/psr7": "^1.7.0|^2.0",
  203. "mtdowling/jmespath.php": "^2.6",
  204. "php": ">=5.5"
  205. },
  206. "require-dev": {
  207. "andrewsville/php-token-reflection": "^1.4",
  208. "aws/aws-php-sns-message-validator": "~1.0",
  209. "behat/behat": "~3.0",
  210. "doctrine/cache": "~1.4",
  211. "ext-dom": "*",
  212. "ext-openssl": "*",
  213. "ext-pcntl": "*",
  214. "ext-sockets": "*",
  215. "nette/neon": "^2.3",
  216. "paragonie/random_compat": ">= 2",
  217. "phpunit/phpunit": "^4.8.35|^5.4.3",
  218. "psr/cache": "^1.0",
  219. "psr/simple-cache": "^1.0",
  220. "sebastian/comparator": "^1.2.3"
  221. },
  222. "suggest": {
  223. "aws/aws-php-sns-message-validator": "To validate incoming SNS notifications",
  224. "doctrine/cache": "To use the DoctrineCacheAdapter",
  225. "ext-curl": "To send requests using cURL",
  226. "ext-openssl": "Allows working with CloudFront private distributions and verifying received SNS messages",
  227. "ext-sockets": "To use client-side monitoring"
  228. },
  229. "type": "library",
  230. "extra": {
  231. "branch-alias": {
  232. "dev-master": "3.0-dev"
  233. }
  234. },
  235. "autoload": {
  236. "psr-4": {
  237. "Aws\\": "src/"
  238. },
  239. "files": [
  240. "src/functions.php"
  241. ]
  242. },
  243. "notification-url": "https://packagist.org/downloads/",
  244. "license": [
  245. "Apache-2.0"
  246. ],
  247. "authors": [
  248. {
  249. "name": "Amazon Web Services",
  250. "homepage": "http://aws.amazon.com"
  251. }
  252. ],
  253. "description": "AWS SDK for PHP - Use Amazon Web Services in your PHP project",
  254. "homepage": "http://aws.amazon.com/sdkforphp",
  255. "keywords": [
  256. "amazon",
  257. "aws",
  258. "cloud",
  259. "dynamodb",
  260. "ec2",
  261. "glacier",
  262. "s3",
  263. "sdk"
  264. ],
  265. "support": {
  266. "forum": "https://forums.aws.amazon.com/forum.jspa?forumID=80",
  267. "issues": "https://github.com/aws/aws-sdk-php/issues",
  268. "source": "https://github.com/aws/aws-sdk-php/tree/3.208.7"
  269. },
  270. "time": "2021-12-21T19:16:39+00:00"
  271. },
  272. {
  273. "name": "bacon/bacon-qr-code",
  274. "version": "2.0.4",
  275. "source": {
  276. "type": "git",
  277. "url": "https://github.com/Bacon/BaconQrCode.git",
  278. "reference": "f73543ac4e1def05f1a70bcd1525c8a157a1ad09"
  279. },
  280. "dist": {
  281. "type": "zip",
  282. "url": "https://api.github.com/repos/Bacon/BaconQrCode/zipball/f73543ac4e1def05f1a70bcd1525c8a157a1ad09",
  283. "reference": "f73543ac4e1def05f1a70bcd1525c8a157a1ad09",
  284. "shasum": ""
  285. },
  286. "require": {
  287. "dasprid/enum": "^1.0.3",
  288. "ext-iconv": "*",
  289. "php": "^7.1 || ^8.0"
  290. },
  291. "require-dev": {
  292. "phly/keep-a-changelog": "^1.4",
  293. "phpunit/phpunit": "^7 | ^8 | ^9",
  294. "squizlabs/php_codesniffer": "^3.4"
  295. },
  296. "suggest": {
  297. "ext-imagick": "to generate QR code images"
  298. },
  299. "type": "library",
  300. "autoload": {
  301. "psr-4": {
  302. "BaconQrCode\\": "src/"
  303. }
  304. },
  305. "notification-url": "https://packagist.org/downloads/",
  306. "license": [
  307. "BSD-2-Clause"
  308. ],
  309. "authors": [
  310. {
  311. "name": "Ben Scholzen 'DASPRiD'",
  312. "email": "mail@dasprids.de",
  313. "homepage": "https://dasprids.de/",
  314. "role": "Developer"
  315. }
  316. ],
  317. "description": "BaconQrCode is a QR code generator for PHP.",
  318. "homepage": "https://github.com/Bacon/BaconQrCode",
  319. "support": {
  320. "issues": "https://github.com/Bacon/BaconQrCode/issues",
  321. "source": "https://github.com/Bacon/BaconQrCode/tree/2.0.4"
  322. },
  323. "time": "2021-06-18T13:26:35+00:00"
  324. },
  325. {
  326. "name": "brick/math",
  327. "version": "0.8.17",
  328. "source": {
  329. "type": "git",
  330. "url": "https://github.com/brick/math.git",
  331. "reference": "e6f8e7d04346a95be89580f8c2c22d6c3fa65556"
  332. },
  333. "dist": {
  334. "type": "zip",
  335. "url": "https://api.github.com/repos/brick/math/zipball/e6f8e7d04346a95be89580f8c2c22d6c3fa65556",
  336. "reference": "e6f8e7d04346a95be89580f8c2c22d6c3fa65556",
  337. "shasum": ""
  338. },
  339. "require": {
  340. "ext-json": "*",
  341. "php": "^7.1|^8.0"
  342. },
  343. "require-dev": {
  344. "php-coveralls/php-coveralls": "^2.2",
  345. "phpunit/phpunit": "^7.5.15|^8.5",
  346. "vimeo/psalm": "^3.5"
  347. },
  348. "type": "library",
  349. "autoload": {
  350. "psr-4": {
  351. "Brick\\Math\\": "src/"
  352. }
  353. },
  354. "notification-url": "https://packagist.org/downloads/",
  355. "license": [
  356. "MIT"
  357. ],
  358. "description": "Arbitrary-precision arithmetic library",
  359. "keywords": [
  360. "Arbitrary-precision",
  361. "BigInteger",
  362. "BigRational",
  363. "arithmetic",
  364. "bigdecimal",
  365. "bignum",
  366. "brick",
  367. "math"
  368. ],
  369. "support": {
  370. "issues": "https://github.com/brick/math/issues",
  371. "source": "https://github.com/brick/math/tree/v0.8"
  372. },
  373. "funding": [
  374. {
  375. "url": "https://tidelift.com/funding/github/packagist/brick/math",
  376. "type": "tidelift"
  377. }
  378. ],
  379. "time": "2020-08-18T23:41:20+00:00"
  380. },
  381. {
  382. "name": "buzz/laravel-h-captcha",
  383. "version": "v1.0.2",
  384. "source": {
  385. "type": "git",
  386. "url": "https://github.com/thinhbuzz/laravel-h-captcha.git",
  387. "reference": "41a063bea0e204ae5b8afbafce981d4675dd8af7"
  388. },
  389. "dist": {
  390. "type": "zip",
  391. "url": "https://api.github.com/repos/thinhbuzz/laravel-h-captcha/zipball/41a063bea0e204ae5b8afbafce981d4675dd8af7",
  392. "reference": "41a063bea0e204ae5b8afbafce981d4675dd8af7",
  393. "shasum": ""
  394. },
  395. "require": {
  396. "guzzlehttp/guzzle": "6.*|7.*",
  397. "illuminate/support": "5.*|6.*|7.*|8.*",
  398. "php": ">=5.4.0"
  399. },
  400. "type": "library",
  401. "extra": {
  402. "laravel": {
  403. "providers": [
  404. "Buzz\\LaravelHCaptcha\\CaptchaServiceProvider"
  405. ],
  406. "aliases": {
  407. "Captcha": "Buzz\\LaravelHCaptcha\\CaptchaFacade"
  408. }
  409. }
  410. },
  411. "autoload": {
  412. "psr-4": {
  413. "Buzz\\LaravelHCaptcha\\": "src"
  414. }
  415. },
  416. "notification-url": "https://packagist.org/downloads/",
  417. "license": [
  418. "MIT"
  419. ],
  420. "authors": [
  421. {
  422. "name": "ThinhBuzz",
  423. "email": "mr.thinhbuzz@gmail.com",
  424. "homepage": "https://www.facebook.com/thinh.buzz"
  425. }
  426. ],
  427. "description": "hCaptcha for Laravel 5, Laravel 6, Laravel 7 and Laravel 8",
  428. "homepage": "https://github.com/thinhbuzz/laravel-h-captcha",
  429. "keywords": [
  430. "captcha",
  431. "h captcha",
  432. "h-captcha",
  433. "hcaptcha",
  434. "laravel",
  435. "laravel 5",
  436. "laravel 6",
  437. "laravel 7",
  438. "laravel 8",
  439. "laravel5",
  440. "laravel6",
  441. "laravel7"
  442. ],
  443. "support": {
  444. "issues": "https://github.com/thinhbuzz/laravel-h-captcha/issues",
  445. "source": "https://github.com/thinhbuzz/laravel-h-captcha/tree/v1.0.2"
  446. },
  447. "time": "2020-09-14T15:04:45+00:00"
  448. },
  449. {
  450. "name": "dasprid/enum",
  451. "version": "1.0.3",
  452. "source": {
  453. "type": "git",
  454. "url": "https://github.com/DASPRiD/Enum.git",
  455. "reference": "5abf82f213618696dda8e3bf6f64dd042d8542b2"
  456. },
  457. "dist": {
  458. "type": "zip",
  459. "url": "https://api.github.com/repos/DASPRiD/Enum/zipball/5abf82f213618696dda8e3bf6f64dd042d8542b2",
  460. "reference": "5abf82f213618696dda8e3bf6f64dd042d8542b2",
  461. "shasum": ""
  462. },
  463. "require-dev": {
  464. "phpunit/phpunit": "^7 | ^8 | ^9",
  465. "squizlabs/php_codesniffer": "^3.4"
  466. },
  467. "type": "library",
  468. "autoload": {
  469. "psr-4": {
  470. "DASPRiD\\Enum\\": "src/"
  471. }
  472. },
  473. "notification-url": "https://packagist.org/downloads/",
  474. "license": [
  475. "BSD-2-Clause"
  476. ],
  477. "authors": [
  478. {
  479. "name": "Ben Scholzen 'DASPRiD'",
  480. "email": "mail@dasprids.de",
  481. "homepage": "https://dasprids.de/",
  482. "role": "Developer"
  483. }
  484. ],
  485. "description": "PHP 7.1 enum implementation",
  486. "keywords": [
  487. "enum",
  488. "map"
  489. ],
  490. "support": {
  491. "issues": "https://github.com/DASPRiD/Enum/issues",
  492. "source": "https://github.com/DASPRiD/Enum/tree/1.0.3"
  493. },
  494. "time": "2020-10-02T16:03:48+00:00"
  495. },
  496. {
  497. "name": "defuse/php-encryption",
  498. "version": "v2.3.1",
  499. "source": {
  500. "type": "git",
  501. "url": "https://github.com/defuse/php-encryption.git",
  502. "reference": "77880488b9954b7884c25555c2a0ea9e7053f9d2"
  503. },
  504. "dist": {
  505. "type": "zip",
  506. "url": "https://api.github.com/repos/defuse/php-encryption/zipball/77880488b9954b7884c25555c2a0ea9e7053f9d2",
  507. "reference": "77880488b9954b7884c25555c2a0ea9e7053f9d2",
  508. "shasum": ""
  509. },
  510. "require": {
  511. "ext-openssl": "*",
  512. "paragonie/random_compat": ">= 2",
  513. "php": ">=5.6.0"
  514. },
  515. "require-dev": {
  516. "phpunit/phpunit": "^4|^5|^6|^7|^8|^9"
  517. },
  518. "bin": [
  519. "bin/generate-defuse-key"
  520. ],
  521. "type": "library",
  522. "autoload": {
  523. "psr-4": {
  524. "Defuse\\Crypto\\": "src"
  525. }
  526. },
  527. "notification-url": "https://packagist.org/downloads/",
  528. "license": [
  529. "MIT"
  530. ],
  531. "authors": [
  532. {
  533. "name": "Taylor Hornby",
  534. "email": "taylor@defuse.ca",
  535. "homepage": "https://defuse.ca/"
  536. },
  537. {
  538. "name": "Scott Arciszewski",
  539. "email": "info@paragonie.com",
  540. "homepage": "https://paragonie.com"
  541. }
  542. ],
  543. "description": "Secure PHP Encryption Library",
  544. "keywords": [
  545. "aes",
  546. "authenticated encryption",
  547. "cipher",
  548. "crypto",
  549. "cryptography",
  550. "encrypt",
  551. "encryption",
  552. "openssl",
  553. "security",
  554. "symmetric key cryptography"
  555. ],
  556. "support": {
  557. "issues": "https://github.com/defuse/php-encryption/issues",
  558. "source": "https://github.com/defuse/php-encryption/tree/v2.3.1"
  559. },
  560. "time": "2021-04-09T23:57:26+00:00"
  561. },
  562. {
  563. "name": "dflydev/dot-access-data",
  564. "version": "v3.0.1",
  565. "source": {
  566. "type": "git",
  567. "url": "https://github.com/dflydev/dflydev-dot-access-data.git",
  568. "reference": "0992cc19268b259a39e86f296da5f0677841f42c"
  569. },
  570. "dist": {
  571. "type": "zip",
  572. "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/0992cc19268b259a39e86f296da5f0677841f42c",
  573. "reference": "0992cc19268b259a39e86f296da5f0677841f42c",
  574. "shasum": ""
  575. },
  576. "require": {
  577. "php": "^7.1 || ^8.0"
  578. },
  579. "require-dev": {
  580. "phpstan/phpstan": "^0.12.42",
  581. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.3",
  582. "scrutinizer/ocular": "1.6.0",
  583. "squizlabs/php_codesniffer": "^3.5",
  584. "vimeo/psalm": "^3.14"
  585. },
  586. "type": "library",
  587. "extra": {
  588. "branch-alias": {
  589. "dev-main": "3.x-dev"
  590. }
  591. },
  592. "autoload": {
  593. "psr-4": {
  594. "Dflydev\\DotAccessData\\": "src/"
  595. }
  596. },
  597. "notification-url": "https://packagist.org/downloads/",
  598. "license": [
  599. "MIT"
  600. ],
  601. "authors": [
  602. {
  603. "name": "Dragonfly Development Inc.",
  604. "email": "info@dflydev.com",
  605. "homepage": "http://dflydev.com"
  606. },
  607. {
  608. "name": "Beau Simensen",
  609. "email": "beau@dflydev.com",
  610. "homepage": "http://beausimensen.com"
  611. },
  612. {
  613. "name": "Carlos Frutos",
  614. "email": "carlos@kiwing.it",
  615. "homepage": "https://github.com/cfrutos"
  616. },
  617. {
  618. "name": "Colin O'Dell",
  619. "email": "colinodell@gmail.com",
  620. "homepage": "https://www.colinodell.com"
  621. }
  622. ],
  623. "description": "Given a deep data structure, access data by dot notation.",
  624. "homepage": "https://github.com/dflydev/dflydev-dot-access-data",
  625. "keywords": [
  626. "access",
  627. "data",
  628. "dot",
  629. "notation"
  630. ],
  631. "support": {
  632. "issues": "https://github.com/dflydev/dflydev-dot-access-data/issues",
  633. "source": "https://github.com/dflydev/dflydev-dot-access-data/tree/v3.0.1"
  634. },
  635. "time": "2021-08-13T13:06:58+00:00"
  636. },
  637. {
  638. "name": "doctrine/cache",
  639. "version": "2.1.1",
  640. "source": {
  641. "type": "git",
  642. "url": "https://github.com/doctrine/cache.git",
  643. "reference": "331b4d5dbaeab3827976273e9356b3b453c300ce"
  644. },
  645. "dist": {
  646. "type": "zip",
  647. "url": "https://api.github.com/repos/doctrine/cache/zipball/331b4d5dbaeab3827976273e9356b3b453c300ce",
  648. "reference": "331b4d5dbaeab3827976273e9356b3b453c300ce",
  649. "shasum": ""
  650. },
  651. "require": {
  652. "php": "~7.1 || ^8.0"
  653. },
  654. "conflict": {
  655. "doctrine/common": ">2.2,<2.4"
  656. },
  657. "require-dev": {
  658. "alcaeus/mongo-php-adapter": "^1.1",
  659. "cache/integration-tests": "dev-master",
  660. "doctrine/coding-standard": "^8.0",
  661. "mongodb/mongodb": "^1.1",
  662. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0",
  663. "predis/predis": "~1.0",
  664. "psr/cache": "^1.0 || ^2.0 || ^3.0",
  665. "symfony/cache": "^4.4 || ^5.2 || ^6.0@dev",
  666. "symfony/var-exporter": "^4.4 || ^5.2 || ^6.0@dev"
  667. },
  668. "suggest": {
  669. "alcaeus/mongo-php-adapter": "Required to use legacy MongoDB driver"
  670. },
  671. "type": "library",
  672. "autoload": {
  673. "psr-4": {
  674. "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache"
  675. }
  676. },
  677. "notification-url": "https://packagist.org/downloads/",
  678. "license": [
  679. "MIT"
  680. ],
  681. "authors": [
  682. {
  683. "name": "Guilherme Blanco",
  684. "email": "guilhermeblanco@gmail.com"
  685. },
  686. {
  687. "name": "Roman Borschel",
  688. "email": "roman@code-factory.org"
  689. },
  690. {
  691. "name": "Benjamin Eberlei",
  692. "email": "kontakt@beberlei.de"
  693. },
  694. {
  695. "name": "Jonathan Wage",
  696. "email": "jonwage@gmail.com"
  697. },
  698. {
  699. "name": "Johannes Schmitt",
  700. "email": "schmittjoh@gmail.com"
  701. }
  702. ],
  703. "description": "PHP Doctrine Cache library is a popular cache implementation that supports many different drivers such as redis, memcache, apc, mongodb and others.",
  704. "homepage": "https://www.doctrine-project.org/projects/cache.html",
  705. "keywords": [
  706. "abstraction",
  707. "apcu",
  708. "cache",
  709. "caching",
  710. "couchdb",
  711. "memcached",
  712. "php",
  713. "redis",
  714. "xcache"
  715. ],
  716. "support": {
  717. "issues": "https://github.com/doctrine/cache/issues",
  718. "source": "https://github.com/doctrine/cache/tree/2.1.1"
  719. },
  720. "funding": [
  721. {
  722. "url": "https://www.doctrine-project.org/sponsorship.html",
  723. "type": "custom"
  724. },
  725. {
  726. "url": "https://www.patreon.com/phpdoctrine",
  727. "type": "patreon"
  728. },
  729. {
  730. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcache",
  731. "type": "tidelift"
  732. }
  733. ],
  734. "time": "2021-07-17T14:49:29+00:00"
  735. },
  736. {
  737. "name": "doctrine/dbal",
  738. "version": "2.13.6",
  739. "source": {
  740. "type": "git",
  741. "url": "https://github.com/doctrine/dbal.git",
  742. "reference": "67ef6d0327ccbab1202b39e0222977a47ed3ef2f"
  743. },
  744. "dist": {
  745. "type": "zip",
  746. "url": "https://api.github.com/repos/doctrine/dbal/zipball/67ef6d0327ccbab1202b39e0222977a47ed3ef2f",
  747. "reference": "67ef6d0327ccbab1202b39e0222977a47ed3ef2f",
  748. "shasum": ""
  749. },
  750. "require": {
  751. "doctrine/cache": "^1.0|^2.0",
  752. "doctrine/deprecations": "^0.5.3",
  753. "doctrine/event-manager": "^1.0",
  754. "ext-pdo": "*",
  755. "php": "^7.1 || ^8"
  756. },
  757. "require-dev": {
  758. "doctrine/coding-standard": "9.0.0",
  759. "jetbrains/phpstorm-stubs": "2021.1",
  760. "phpstan/phpstan": "1.2.0",
  761. "phpunit/phpunit": "^7.5.20|^8.5|9.5.10",
  762. "psalm/plugin-phpunit": "0.16.1",
  763. "squizlabs/php_codesniffer": "3.6.1",
  764. "symfony/cache": "^4.4",
  765. "symfony/console": "^2.0.5|^3.0|^4.0|^5.0",
  766. "vimeo/psalm": "4.13.0"
  767. },
  768. "suggest": {
  769. "symfony/console": "For helpful console commands such as SQL execution and import of files."
  770. },
  771. "bin": [
  772. "bin/doctrine-dbal"
  773. ],
  774. "type": "library",
  775. "autoload": {
  776. "psr-4": {
  777. "Doctrine\\DBAL\\": "lib/Doctrine/DBAL"
  778. }
  779. },
  780. "notification-url": "https://packagist.org/downloads/",
  781. "license": [
  782. "MIT"
  783. ],
  784. "authors": [
  785. {
  786. "name": "Guilherme Blanco",
  787. "email": "guilhermeblanco@gmail.com"
  788. },
  789. {
  790. "name": "Roman Borschel",
  791. "email": "roman@code-factory.org"
  792. },
  793. {
  794. "name": "Benjamin Eberlei",
  795. "email": "kontakt@beberlei.de"
  796. },
  797. {
  798. "name": "Jonathan Wage",
  799. "email": "jonwage@gmail.com"
  800. }
  801. ],
  802. "description": "Powerful PHP database abstraction layer (DBAL) with many features for database schema introspection and management.",
  803. "homepage": "https://www.doctrine-project.org/projects/dbal.html",
  804. "keywords": [
  805. "abstraction",
  806. "database",
  807. "db2",
  808. "dbal",
  809. "mariadb",
  810. "mssql",
  811. "mysql",
  812. "oci8",
  813. "oracle",
  814. "pdo",
  815. "pgsql",
  816. "postgresql",
  817. "queryobject",
  818. "sasql",
  819. "sql",
  820. "sqlanywhere",
  821. "sqlite",
  822. "sqlserver",
  823. "sqlsrv"
  824. ],
  825. "support": {
  826. "issues": "https://github.com/doctrine/dbal/issues",
  827. "source": "https://github.com/doctrine/dbal/tree/2.13.6"
  828. },
  829. "funding": [
  830. {
  831. "url": "https://www.doctrine-project.org/sponsorship.html",
  832. "type": "custom"
  833. },
  834. {
  835. "url": "https://www.patreon.com/phpdoctrine",
  836. "type": "patreon"
  837. },
  838. {
  839. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdbal",
  840. "type": "tidelift"
  841. }
  842. ],
  843. "time": "2021-11-26T20:11:05+00:00"
  844. },
  845. {
  846. "name": "doctrine/deprecations",
  847. "version": "v0.5.3",
  848. "source": {
  849. "type": "git",
  850. "url": "https://github.com/doctrine/deprecations.git",
  851. "reference": "9504165960a1f83cc1480e2be1dd0a0478561314"
  852. },
  853. "dist": {
  854. "type": "zip",
  855. "url": "https://api.github.com/repos/doctrine/deprecations/zipball/9504165960a1f83cc1480e2be1dd0a0478561314",
  856. "reference": "9504165960a1f83cc1480e2be1dd0a0478561314",
  857. "shasum": ""
  858. },
  859. "require": {
  860. "php": "^7.1|^8.0"
  861. },
  862. "require-dev": {
  863. "doctrine/coding-standard": "^6.0|^7.0|^8.0",
  864. "phpunit/phpunit": "^7.0|^8.0|^9.0",
  865. "psr/log": "^1.0"
  866. },
  867. "suggest": {
  868. "psr/log": "Allows logging deprecations via PSR-3 logger implementation"
  869. },
  870. "type": "library",
  871. "autoload": {
  872. "psr-4": {
  873. "Doctrine\\Deprecations\\": "lib/Doctrine/Deprecations"
  874. }
  875. },
  876. "notification-url": "https://packagist.org/downloads/",
  877. "license": [
  878. "MIT"
  879. ],
  880. "description": "A small layer on top of trigger_error(E_USER_DEPRECATED) or PSR-3 logging with options to disable all deprecations or selectively for packages.",
  881. "homepage": "https://www.doctrine-project.org/",
  882. "support": {
  883. "issues": "https://github.com/doctrine/deprecations/issues",
  884. "source": "https://github.com/doctrine/deprecations/tree/v0.5.3"
  885. },
  886. "time": "2021-03-21T12:59:47+00:00"
  887. },
  888. {
  889. "name": "doctrine/event-manager",
  890. "version": "1.1.1",
  891. "source": {
  892. "type": "git",
  893. "url": "https://github.com/doctrine/event-manager.git",
  894. "reference": "41370af6a30faa9dc0368c4a6814d596e81aba7f"
  895. },
  896. "dist": {
  897. "type": "zip",
  898. "url": "https://api.github.com/repos/doctrine/event-manager/zipball/41370af6a30faa9dc0368c4a6814d596e81aba7f",
  899. "reference": "41370af6a30faa9dc0368c4a6814d596e81aba7f",
  900. "shasum": ""
  901. },
  902. "require": {
  903. "php": "^7.1 || ^8.0"
  904. },
  905. "conflict": {
  906. "doctrine/common": "<2.9@dev"
  907. },
  908. "require-dev": {
  909. "doctrine/coding-standard": "^6.0",
  910. "phpunit/phpunit": "^7.0"
  911. },
  912. "type": "library",
  913. "extra": {
  914. "branch-alias": {
  915. "dev-master": "1.0.x-dev"
  916. }
  917. },
  918. "autoload": {
  919. "psr-4": {
  920. "Doctrine\\Common\\": "lib/Doctrine/Common"
  921. }
  922. },
  923. "notification-url": "https://packagist.org/downloads/",
  924. "license": [
  925. "MIT"
  926. ],
  927. "authors": [
  928. {
  929. "name": "Guilherme Blanco",
  930. "email": "guilhermeblanco@gmail.com"
  931. },
  932. {
  933. "name": "Roman Borschel",
  934. "email": "roman@code-factory.org"
  935. },
  936. {
  937. "name": "Benjamin Eberlei",
  938. "email": "kontakt@beberlei.de"
  939. },
  940. {
  941. "name": "Jonathan Wage",
  942. "email": "jonwage@gmail.com"
  943. },
  944. {
  945. "name": "Johannes Schmitt",
  946. "email": "schmittjoh@gmail.com"
  947. },
  948. {
  949. "name": "Marco Pivetta",
  950. "email": "ocramius@gmail.com"
  951. }
  952. ],
  953. "description": "The Doctrine Event Manager is a simple PHP event system that was built to be used with the various Doctrine projects.",
  954. "homepage": "https://www.doctrine-project.org/projects/event-manager.html",
  955. "keywords": [
  956. "event",
  957. "event dispatcher",
  958. "event manager",
  959. "event system",
  960. "events"
  961. ],
  962. "support": {
  963. "issues": "https://github.com/doctrine/event-manager/issues",
  964. "source": "https://github.com/doctrine/event-manager/tree/1.1.x"
  965. },
  966. "funding": [
  967. {
  968. "url": "https://www.doctrine-project.org/sponsorship.html",
  969. "type": "custom"
  970. },
  971. {
  972. "url": "https://www.patreon.com/phpdoctrine",
  973. "type": "patreon"
  974. },
  975. {
  976. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fevent-manager",
  977. "type": "tidelift"
  978. }
  979. ],
  980. "time": "2020-05-29T18:28:51+00:00"
  981. },
  982. {
  983. "name": "doctrine/inflector",
  984. "version": "2.0.4",
  985. "source": {
  986. "type": "git",
  987. "url": "https://github.com/doctrine/inflector.git",
  988. "reference": "8b7ff3e4b7de6b2c84da85637b59fd2880ecaa89"
  989. },
  990. "dist": {
  991. "type": "zip",
  992. "url": "https://api.github.com/repos/doctrine/inflector/zipball/8b7ff3e4b7de6b2c84da85637b59fd2880ecaa89",
  993. "reference": "8b7ff3e4b7de6b2c84da85637b59fd2880ecaa89",
  994. "shasum": ""
  995. },
  996. "require": {
  997. "php": "^7.2 || ^8.0"
  998. },
  999. "require-dev": {
  1000. "doctrine/coding-standard": "^8.2",
  1001. "phpstan/phpstan": "^0.12",
  1002. "phpstan/phpstan-phpunit": "^0.12",
  1003. "phpstan/phpstan-strict-rules": "^0.12",
  1004. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0",
  1005. "vimeo/psalm": "^4.10"
  1006. },
  1007. "type": "library",
  1008. "autoload": {
  1009. "psr-4": {
  1010. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  1011. }
  1012. },
  1013. "notification-url": "https://packagist.org/downloads/",
  1014. "license": [
  1015. "MIT"
  1016. ],
  1017. "authors": [
  1018. {
  1019. "name": "Guilherme Blanco",
  1020. "email": "guilhermeblanco@gmail.com"
  1021. },
  1022. {
  1023. "name": "Roman Borschel",
  1024. "email": "roman@code-factory.org"
  1025. },
  1026. {
  1027. "name": "Benjamin Eberlei",
  1028. "email": "kontakt@beberlei.de"
  1029. },
  1030. {
  1031. "name": "Jonathan Wage",
  1032. "email": "jonwage@gmail.com"
  1033. },
  1034. {
  1035. "name": "Johannes Schmitt",
  1036. "email": "schmittjoh@gmail.com"
  1037. }
  1038. ],
  1039. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  1040. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  1041. "keywords": [
  1042. "inflection",
  1043. "inflector",
  1044. "lowercase",
  1045. "manipulation",
  1046. "php",
  1047. "plural",
  1048. "singular",
  1049. "strings",
  1050. "uppercase",
  1051. "words"
  1052. ],
  1053. "support": {
  1054. "issues": "https://github.com/doctrine/inflector/issues",
  1055. "source": "https://github.com/doctrine/inflector/tree/2.0.4"
  1056. },
  1057. "funding": [
  1058. {
  1059. "url": "https://www.doctrine-project.org/sponsorship.html",
  1060. "type": "custom"
  1061. },
  1062. {
  1063. "url": "https://www.patreon.com/phpdoctrine",
  1064. "type": "patreon"
  1065. },
  1066. {
  1067. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  1068. "type": "tidelift"
  1069. }
  1070. ],
  1071. "time": "2021-10-22T20:16:43+00:00"
  1072. },
  1073. {
  1074. "name": "doctrine/lexer",
  1075. "version": "1.2.1",
  1076. "source": {
  1077. "type": "git",
  1078. "url": "https://github.com/doctrine/lexer.git",
  1079. "reference": "e864bbf5904cb8f5bb334f99209b48018522f042"
  1080. },
  1081. "dist": {
  1082. "type": "zip",
  1083. "url": "https://api.github.com/repos/doctrine/lexer/zipball/e864bbf5904cb8f5bb334f99209b48018522f042",
  1084. "reference": "e864bbf5904cb8f5bb334f99209b48018522f042",
  1085. "shasum": ""
  1086. },
  1087. "require": {
  1088. "php": "^7.2 || ^8.0"
  1089. },
  1090. "require-dev": {
  1091. "doctrine/coding-standard": "^6.0",
  1092. "phpstan/phpstan": "^0.11.8",
  1093. "phpunit/phpunit": "^8.2"
  1094. },
  1095. "type": "library",
  1096. "extra": {
  1097. "branch-alias": {
  1098. "dev-master": "1.2.x-dev"
  1099. }
  1100. },
  1101. "autoload": {
  1102. "psr-4": {
  1103. "Doctrine\\Common\\Lexer\\": "lib/Doctrine/Common/Lexer"
  1104. }
  1105. },
  1106. "notification-url": "https://packagist.org/downloads/",
  1107. "license": [
  1108. "MIT"
  1109. ],
  1110. "authors": [
  1111. {
  1112. "name": "Guilherme Blanco",
  1113. "email": "guilhermeblanco@gmail.com"
  1114. },
  1115. {
  1116. "name": "Roman Borschel",
  1117. "email": "roman@code-factory.org"
  1118. },
  1119. {
  1120. "name": "Johannes Schmitt",
  1121. "email": "schmittjoh@gmail.com"
  1122. }
  1123. ],
  1124. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  1125. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  1126. "keywords": [
  1127. "annotations",
  1128. "docblock",
  1129. "lexer",
  1130. "parser",
  1131. "php"
  1132. ],
  1133. "support": {
  1134. "issues": "https://github.com/doctrine/lexer/issues",
  1135. "source": "https://github.com/doctrine/lexer/tree/1.2.1"
  1136. },
  1137. "funding": [
  1138. {
  1139. "url": "https://www.doctrine-project.org/sponsorship.html",
  1140. "type": "custom"
  1141. },
  1142. {
  1143. "url": "https://www.patreon.com/phpdoctrine",
  1144. "type": "patreon"
  1145. },
  1146. {
  1147. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  1148. "type": "tidelift"
  1149. }
  1150. ],
  1151. "time": "2020-05-25T17:44:05+00:00"
  1152. },
  1153. {
  1154. "name": "dragonmantank/cron-expression",
  1155. "version": "v3.1.0",
  1156. "source": {
  1157. "type": "git",
  1158. "url": "https://github.com/dragonmantank/cron-expression.git",
  1159. "reference": "7a8c6e56ab3ffcc538d05e8155bb42269abf1a0c"
  1160. },
  1161. "dist": {
  1162. "type": "zip",
  1163. "url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/7a8c6e56ab3ffcc538d05e8155bb42269abf1a0c",
  1164. "reference": "7a8c6e56ab3ffcc538d05e8155bb42269abf1a0c",
  1165. "shasum": ""
  1166. },
  1167. "require": {
  1168. "php": "^7.2|^8.0",
  1169. "webmozart/assert": "^1.7.0"
  1170. },
  1171. "replace": {
  1172. "mtdowling/cron-expression": "^1.0"
  1173. },
  1174. "require-dev": {
  1175. "phpstan/extension-installer": "^1.0",
  1176. "phpstan/phpstan": "^0.12",
  1177. "phpstan/phpstan-webmozart-assert": "^0.12.7",
  1178. "phpunit/phpunit": "^7.0|^8.0|^9.0"
  1179. },
  1180. "type": "library",
  1181. "autoload": {
  1182. "psr-4": {
  1183. "Cron\\": "src/Cron/"
  1184. }
  1185. },
  1186. "notification-url": "https://packagist.org/downloads/",
  1187. "license": [
  1188. "MIT"
  1189. ],
  1190. "authors": [
  1191. {
  1192. "name": "Chris Tankersley",
  1193. "email": "chris@ctankersley.com",
  1194. "homepage": "https://github.com/dragonmantank"
  1195. }
  1196. ],
  1197. "description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due",
  1198. "keywords": [
  1199. "cron",
  1200. "schedule"
  1201. ],
  1202. "support": {
  1203. "issues": "https://github.com/dragonmantank/cron-expression/issues",
  1204. "source": "https://github.com/dragonmantank/cron-expression/tree/v3.1.0"
  1205. },
  1206. "funding": [
  1207. {
  1208. "url": "https://github.com/dragonmantank",
  1209. "type": "github"
  1210. }
  1211. ],
  1212. "time": "2020-11-24T19:55:57+00:00"
  1213. },
  1214. {
  1215. "name": "egulias/email-validator",
  1216. "version": "2.1.25",
  1217. "source": {
  1218. "type": "git",
  1219. "url": "https://github.com/egulias/EmailValidator.git",
  1220. "reference": "0dbf5d78455d4d6a41d186da50adc1122ec066f4"
  1221. },
  1222. "dist": {
  1223. "type": "zip",
  1224. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/0dbf5d78455d4d6a41d186da50adc1122ec066f4",
  1225. "reference": "0dbf5d78455d4d6a41d186da50adc1122ec066f4",
  1226. "shasum": ""
  1227. },
  1228. "require": {
  1229. "doctrine/lexer": "^1.0.1",
  1230. "php": ">=5.5",
  1231. "symfony/polyfill-intl-idn": "^1.10"
  1232. },
  1233. "require-dev": {
  1234. "dominicsayers/isemail": "^3.0.7",
  1235. "phpunit/phpunit": "^4.8.36|^7.5.15",
  1236. "satooshi/php-coveralls": "^1.0.1"
  1237. },
  1238. "suggest": {
  1239. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  1240. },
  1241. "type": "library",
  1242. "extra": {
  1243. "branch-alias": {
  1244. "dev-master": "2.1.x-dev"
  1245. }
  1246. },
  1247. "autoload": {
  1248. "psr-4": {
  1249. "Egulias\\EmailValidator\\": "src"
  1250. }
  1251. },
  1252. "notification-url": "https://packagist.org/downloads/",
  1253. "license": [
  1254. "MIT"
  1255. ],
  1256. "authors": [
  1257. {
  1258. "name": "Eduardo Gulias Davis"
  1259. }
  1260. ],
  1261. "description": "A library for validating emails against several RFCs",
  1262. "homepage": "https://github.com/egulias/EmailValidator",
  1263. "keywords": [
  1264. "email",
  1265. "emailvalidation",
  1266. "emailvalidator",
  1267. "validation",
  1268. "validator"
  1269. ],
  1270. "support": {
  1271. "issues": "https://github.com/egulias/EmailValidator/issues",
  1272. "source": "https://github.com/egulias/EmailValidator/tree/2.1.25"
  1273. },
  1274. "funding": [
  1275. {
  1276. "url": "https://github.com/egulias",
  1277. "type": "github"
  1278. }
  1279. ],
  1280. "time": "2020-12-29T14:50:06+00:00"
  1281. },
  1282. {
  1283. "name": "evenement/evenement",
  1284. "version": "v3.0.1",
  1285. "source": {
  1286. "type": "git",
  1287. "url": "https://github.com/igorw/evenement.git",
  1288. "reference": "531bfb9d15f8aa57454f5f0285b18bec903b8fb7"
  1289. },
  1290. "dist": {
  1291. "type": "zip",
  1292. "url": "https://api.github.com/repos/igorw/evenement/zipball/531bfb9d15f8aa57454f5f0285b18bec903b8fb7",
  1293. "reference": "531bfb9d15f8aa57454f5f0285b18bec903b8fb7",
  1294. "shasum": ""
  1295. },
  1296. "require": {
  1297. "php": ">=7.0"
  1298. },
  1299. "require-dev": {
  1300. "phpunit/phpunit": "^6.0"
  1301. },
  1302. "type": "library",
  1303. "autoload": {
  1304. "psr-0": {
  1305. "Evenement": "src"
  1306. }
  1307. },
  1308. "notification-url": "https://packagist.org/downloads/",
  1309. "license": [
  1310. "MIT"
  1311. ],
  1312. "authors": [
  1313. {
  1314. "name": "Igor Wiedler",
  1315. "email": "igor@wiedler.ch"
  1316. }
  1317. ],
  1318. "description": "Événement is a very simple event dispatching library for PHP",
  1319. "keywords": [
  1320. "event-dispatcher",
  1321. "event-emitter"
  1322. ],
  1323. "support": {
  1324. "issues": "https://github.com/igorw/evenement/issues",
  1325. "source": "https://github.com/igorw/evenement/tree/master"
  1326. },
  1327. "time": "2017-07-23T21:35:13+00:00"
  1328. },
  1329. {
  1330. "name": "ezyang/htmlpurifier",
  1331. "version": "v4.14.0",
  1332. "source": {
  1333. "type": "git",
  1334. "url": "https://github.com/ezyang/htmlpurifier.git",
  1335. "reference": "12ab42bd6e742c70c0a52f7b82477fcd44e64b75"
  1336. },
  1337. "dist": {
  1338. "type": "zip",
  1339. "url": "https://api.github.com/repos/ezyang/htmlpurifier/zipball/12ab42bd6e742c70c0a52f7b82477fcd44e64b75",
  1340. "reference": "12ab42bd6e742c70c0a52f7b82477fcd44e64b75",
  1341. "shasum": ""
  1342. },
  1343. "require": {
  1344. "php": ">=5.2"
  1345. },
  1346. "type": "library",
  1347. "autoload": {
  1348. "psr-0": {
  1349. "HTMLPurifier": "library/"
  1350. },
  1351. "files": [
  1352. "library/HTMLPurifier.composer.php"
  1353. ],
  1354. "exclude-from-classmap": [
  1355. "/library/HTMLPurifier/Language/"
  1356. ]
  1357. },
  1358. "notification-url": "https://packagist.org/downloads/",
  1359. "license": [
  1360. "LGPL-2.1-or-later"
  1361. ],
  1362. "authors": [
  1363. {
  1364. "name": "Edward Z. Yang",
  1365. "email": "admin@htmlpurifier.org",
  1366. "homepage": "http://ezyang.com"
  1367. }
  1368. ],
  1369. "description": "Standards compliant HTML filter written in PHP",
  1370. "homepage": "http://htmlpurifier.org/",
  1371. "keywords": [
  1372. "html"
  1373. ],
  1374. "support": {
  1375. "issues": "https://github.com/ezyang/htmlpurifier/issues",
  1376. "source": "https://github.com/ezyang/htmlpurifier/tree/v4.14.0"
  1377. },
  1378. "time": "2021-12-25T01:21:49+00:00"
  1379. },
  1380. {
  1381. "name": "fideloper/proxy",
  1382. "version": "4.4.1",
  1383. "source": {
  1384. "type": "git",
  1385. "url": "https://github.com/fideloper/TrustedProxy.git",
  1386. "reference": "c073b2bd04d1c90e04dc1b787662b558dd65ade0"
  1387. },
  1388. "dist": {
  1389. "type": "zip",
  1390. "url": "https://api.github.com/repos/fideloper/TrustedProxy/zipball/c073b2bd04d1c90e04dc1b787662b558dd65ade0",
  1391. "reference": "c073b2bd04d1c90e04dc1b787662b558dd65ade0",
  1392. "shasum": ""
  1393. },
  1394. "require": {
  1395. "illuminate/contracts": "^5.0|^6.0|^7.0|^8.0|^9.0",
  1396. "php": ">=5.4.0"
  1397. },
  1398. "require-dev": {
  1399. "illuminate/http": "^5.0|^6.0|^7.0|^8.0|^9.0",
  1400. "mockery/mockery": "^1.0",
  1401. "phpunit/phpunit": "^6.0"
  1402. },
  1403. "type": "library",
  1404. "extra": {
  1405. "laravel": {
  1406. "providers": [
  1407. "Fideloper\\Proxy\\TrustedProxyServiceProvider"
  1408. ]
  1409. }
  1410. },
  1411. "autoload": {
  1412. "psr-4": {
  1413. "Fideloper\\Proxy\\": "src/"
  1414. }
  1415. },
  1416. "notification-url": "https://packagist.org/downloads/",
  1417. "license": [
  1418. "MIT"
  1419. ],
  1420. "authors": [
  1421. {
  1422. "name": "Chris Fidao",
  1423. "email": "fideloper@gmail.com"
  1424. }
  1425. ],
  1426. "description": "Set trusted proxies for Laravel",
  1427. "keywords": [
  1428. "load balancing",
  1429. "proxy",
  1430. "trusted proxy"
  1431. ],
  1432. "support": {
  1433. "issues": "https://github.com/fideloper/TrustedProxy/issues",
  1434. "source": "https://github.com/fideloper/TrustedProxy/tree/4.4.1"
  1435. },
  1436. "time": "2020-10-22T13:48:01+00:00"
  1437. },
  1438. {
  1439. "name": "firebase/php-jwt",
  1440. "version": "v5.5.1",
  1441. "source": {
  1442. "type": "git",
  1443. "url": "https://github.com/firebase/php-jwt.git",
  1444. "reference": "83b609028194aa042ea33b5af2d41a7427de80e6"
  1445. },
  1446. "dist": {
  1447. "type": "zip",
  1448. "url": "https://api.github.com/repos/firebase/php-jwt/zipball/83b609028194aa042ea33b5af2d41a7427de80e6",
  1449. "reference": "83b609028194aa042ea33b5af2d41a7427de80e6",
  1450. "shasum": ""
  1451. },
  1452. "require": {
  1453. "php": ">=5.3.0"
  1454. },
  1455. "require-dev": {
  1456. "phpunit/phpunit": ">=4.8 <=9"
  1457. },
  1458. "suggest": {
  1459. "paragonie/sodium_compat": "Support EdDSA (Ed25519) signatures when libsodium is not present"
  1460. },
  1461. "type": "library",
  1462. "autoload": {
  1463. "psr-4": {
  1464. "Firebase\\JWT\\": "src"
  1465. }
  1466. },
  1467. "notification-url": "https://packagist.org/downloads/",
  1468. "license": [
  1469. "BSD-3-Clause"
  1470. ],
  1471. "authors": [
  1472. {
  1473. "name": "Neuman Vong",
  1474. "email": "neuman+pear@twilio.com",
  1475. "role": "Developer"
  1476. },
  1477. {
  1478. "name": "Anant Narayanan",
  1479. "email": "anant@php.net",
  1480. "role": "Developer"
  1481. }
  1482. ],
  1483. "description": "A simple library to encode and decode JSON Web Tokens (JWT) in PHP. Should conform to the current spec.",
  1484. "homepage": "https://github.com/firebase/php-jwt",
  1485. "keywords": [
  1486. "jwt",
  1487. "php"
  1488. ],
  1489. "support": {
  1490. "issues": "https://github.com/firebase/php-jwt/issues",
  1491. "source": "https://github.com/firebase/php-jwt/tree/v5.5.1"
  1492. },
  1493. "time": "2021-11-08T20:18:51+00:00"
  1494. },
  1495. {
  1496. "name": "fruitcake/laravel-cors",
  1497. "version": "v2.0.4",
  1498. "source": {
  1499. "type": "git",
  1500. "url": "https://github.com/fruitcake/laravel-cors.git",
  1501. "reference": "a8ccedc7ca95189ead0e407c43b530dc17791d6a"
  1502. },
  1503. "dist": {
  1504. "type": "zip",
  1505. "url": "https://api.github.com/repos/fruitcake/laravel-cors/zipball/a8ccedc7ca95189ead0e407c43b530dc17791d6a",
  1506. "reference": "a8ccedc7ca95189ead0e407c43b530dc17791d6a",
  1507. "shasum": ""
  1508. },
  1509. "require": {
  1510. "asm89/stack-cors": "^2.0.1",
  1511. "illuminate/contracts": "^6|^7|^8|^9",
  1512. "illuminate/support": "^6|^7|^8|^9",
  1513. "php": ">=7.2",
  1514. "symfony/http-foundation": "^4|^5",
  1515. "symfony/http-kernel": "^4.3.4|^5"
  1516. },
  1517. "require-dev": {
  1518. "laravel/framework": "^6|^7|^8",
  1519. "orchestra/testbench-dusk": "^4|^5|^6|^7",
  1520. "phpunit/phpunit": "^6|^7|^8|^9",
  1521. "squizlabs/php_codesniffer": "^3.5"
  1522. },
  1523. "type": "library",
  1524. "extra": {
  1525. "branch-alias": {
  1526. "dev-master": "2.0-dev"
  1527. },
  1528. "laravel": {
  1529. "providers": [
  1530. "Fruitcake\\Cors\\CorsServiceProvider"
  1531. ]
  1532. }
  1533. },
  1534. "autoload": {
  1535. "psr-4": {
  1536. "Fruitcake\\Cors\\": "src/"
  1537. }
  1538. },
  1539. "notification-url": "https://packagist.org/downloads/",
  1540. "license": [
  1541. "MIT"
  1542. ],
  1543. "authors": [
  1544. {
  1545. "name": "Fruitcake",
  1546. "homepage": "https://fruitcake.nl"
  1547. },
  1548. {
  1549. "name": "Barry vd. Heuvel",
  1550. "email": "barryvdh@gmail.com"
  1551. }
  1552. ],
  1553. "description": "Adds CORS (Cross-Origin Resource Sharing) headers support in your Laravel application",
  1554. "keywords": [
  1555. "api",
  1556. "cors",
  1557. "crossdomain",
  1558. "laravel"
  1559. ],
  1560. "support": {
  1561. "issues": "https://github.com/fruitcake/laravel-cors/issues",
  1562. "source": "https://github.com/fruitcake/laravel-cors/tree/v2.0.4"
  1563. },
  1564. "funding": [
  1565. {
  1566. "url": "https://github.com/barryvdh",
  1567. "type": "github"
  1568. }
  1569. ],
  1570. "time": "2021-04-26T11:24:25+00:00"
  1571. },
  1572. {
  1573. "name": "graham-campbell/result-type",
  1574. "version": "v1.0.4",
  1575. "source": {
  1576. "type": "git",
  1577. "url": "https://github.com/GrahamCampbell/Result-Type.git",
  1578. "reference": "0690bde05318336c7221785f2a932467f98b64ca"
  1579. },
  1580. "dist": {
  1581. "type": "zip",
  1582. "url": "https://api.github.com/repos/GrahamCampbell/Result-Type/zipball/0690bde05318336c7221785f2a932467f98b64ca",
  1583. "reference": "0690bde05318336c7221785f2a932467f98b64ca",
  1584. "shasum": ""
  1585. },
  1586. "require": {
  1587. "php": "^7.0 || ^8.0",
  1588. "phpoption/phpoption": "^1.8"
  1589. },
  1590. "require-dev": {
  1591. "phpunit/phpunit": "^6.5.14 || ^7.5.20 || ^8.5.19 || ^9.5.8"
  1592. },
  1593. "type": "library",
  1594. "autoload": {
  1595. "psr-4": {
  1596. "GrahamCampbell\\ResultType\\": "src/"
  1597. }
  1598. },
  1599. "notification-url": "https://packagist.org/downloads/",
  1600. "license": [
  1601. "MIT"
  1602. ],
  1603. "authors": [
  1604. {
  1605. "name": "Graham Campbell",
  1606. "email": "hello@gjcampbell.co.uk",
  1607. "homepage": "https://github.com/GrahamCampbell"
  1608. }
  1609. ],
  1610. "description": "An Implementation Of The Result Type",
  1611. "keywords": [
  1612. "Graham Campbell",
  1613. "GrahamCampbell",
  1614. "Result Type",
  1615. "Result-Type",
  1616. "result"
  1617. ],
  1618. "support": {
  1619. "issues": "https://github.com/GrahamCampbell/Result-Type/issues",
  1620. "source": "https://github.com/GrahamCampbell/Result-Type/tree/v1.0.4"
  1621. },
  1622. "funding": [
  1623. {
  1624. "url": "https://github.com/GrahamCampbell",
  1625. "type": "github"
  1626. },
  1627. {
  1628. "url": "https://tidelift.com/funding/github/packagist/graham-campbell/result-type",
  1629. "type": "tidelift"
  1630. }
  1631. ],
  1632. "time": "2021-11-21T21:41:47+00:00"
  1633. },
  1634. {
  1635. "name": "guzzlehttp/guzzle",
  1636. "version": "6.5.5",
  1637. "source": {
  1638. "type": "git",
  1639. "url": "https://github.com/guzzle/guzzle.git",
  1640. "reference": "9d4290de1cfd701f38099ef7e183b64b4b7b0c5e"
  1641. },
  1642. "dist": {
  1643. "type": "zip",
  1644. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/9d4290de1cfd701f38099ef7e183b64b4b7b0c5e",
  1645. "reference": "9d4290de1cfd701f38099ef7e183b64b4b7b0c5e",
  1646. "shasum": ""
  1647. },
  1648. "require": {
  1649. "ext-json": "*",
  1650. "guzzlehttp/promises": "^1.0",
  1651. "guzzlehttp/psr7": "^1.6.1",
  1652. "php": ">=5.5",
  1653. "symfony/polyfill-intl-idn": "^1.17.0"
  1654. },
  1655. "require-dev": {
  1656. "ext-curl": "*",
  1657. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.4 || ^7.0",
  1658. "psr/log": "^1.1"
  1659. },
  1660. "suggest": {
  1661. "psr/log": "Required for using the Log middleware"
  1662. },
  1663. "type": "library",
  1664. "extra": {
  1665. "branch-alias": {
  1666. "dev-master": "6.5-dev"
  1667. }
  1668. },
  1669. "autoload": {
  1670. "psr-4": {
  1671. "GuzzleHttp\\": "src/"
  1672. },
  1673. "files": [
  1674. "src/functions_include.php"
  1675. ]
  1676. },
  1677. "notification-url": "https://packagist.org/downloads/",
  1678. "license": [
  1679. "MIT"
  1680. ],
  1681. "authors": [
  1682. {
  1683. "name": "Michael Dowling",
  1684. "email": "mtdowling@gmail.com",
  1685. "homepage": "https://github.com/mtdowling"
  1686. }
  1687. ],
  1688. "description": "Guzzle is a PHP HTTP client library",
  1689. "homepage": "http://guzzlephp.org/",
  1690. "keywords": [
  1691. "client",
  1692. "curl",
  1693. "framework",
  1694. "http",
  1695. "http client",
  1696. "rest",
  1697. "web service"
  1698. ],
  1699. "support": {
  1700. "issues": "https://github.com/guzzle/guzzle/issues",
  1701. "source": "https://github.com/guzzle/guzzle/tree/6.5"
  1702. },
  1703. "time": "2020-06-16T21:01:06+00:00"
  1704. },
  1705. {
  1706. "name": "guzzlehttp/promises",
  1707. "version": "1.5.1",
  1708. "source": {
  1709. "type": "git",
  1710. "url": "https://github.com/guzzle/promises.git",
  1711. "reference": "fe752aedc9fd8fcca3fe7ad05d419d32998a06da"
  1712. },
  1713. "dist": {
  1714. "type": "zip",
  1715. "url": "https://api.github.com/repos/guzzle/promises/zipball/fe752aedc9fd8fcca3fe7ad05d419d32998a06da",
  1716. "reference": "fe752aedc9fd8fcca3fe7ad05d419d32998a06da",
  1717. "shasum": ""
  1718. },
  1719. "require": {
  1720. "php": ">=5.5"
  1721. },
  1722. "require-dev": {
  1723. "symfony/phpunit-bridge": "^4.4 || ^5.1"
  1724. },
  1725. "type": "library",
  1726. "extra": {
  1727. "branch-alias": {
  1728. "dev-master": "1.5-dev"
  1729. }
  1730. },
  1731. "autoload": {
  1732. "psr-4": {
  1733. "GuzzleHttp\\Promise\\": "src/"
  1734. },
  1735. "files": [
  1736. "src/functions_include.php"
  1737. ]
  1738. },
  1739. "notification-url": "https://packagist.org/downloads/",
  1740. "license": [
  1741. "MIT"
  1742. ],
  1743. "authors": [
  1744. {
  1745. "name": "Graham Campbell",
  1746. "email": "hello@gjcampbell.co.uk",
  1747. "homepage": "https://github.com/GrahamCampbell"
  1748. },
  1749. {
  1750. "name": "Michael Dowling",
  1751. "email": "mtdowling@gmail.com",
  1752. "homepage": "https://github.com/mtdowling"
  1753. },
  1754. {
  1755. "name": "Tobias Nyholm",
  1756. "email": "tobias.nyholm@gmail.com",
  1757. "homepage": "https://github.com/Nyholm"
  1758. },
  1759. {
  1760. "name": "Tobias Schultze",
  1761. "email": "webmaster@tubo-world.de",
  1762. "homepage": "https://github.com/Tobion"
  1763. }
  1764. ],
  1765. "description": "Guzzle promises library",
  1766. "keywords": [
  1767. "promise"
  1768. ],
  1769. "support": {
  1770. "issues": "https://github.com/guzzle/promises/issues",
  1771. "source": "https://github.com/guzzle/promises/tree/1.5.1"
  1772. },
  1773. "funding": [
  1774. {
  1775. "url": "https://github.com/GrahamCampbell",
  1776. "type": "github"
  1777. },
  1778. {
  1779. "url": "https://github.com/Nyholm",
  1780. "type": "github"
  1781. },
  1782. {
  1783. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  1784. "type": "tidelift"
  1785. }
  1786. ],
  1787. "time": "2021-10-22T20:56:57+00:00"
  1788. },
  1789. {
  1790. "name": "guzzlehttp/psr7",
  1791. "version": "1.8.3",
  1792. "source": {
  1793. "type": "git",
  1794. "url": "https://github.com/guzzle/psr7.git",
  1795. "reference": "1afdd860a2566ed3c2b0b4a3de6e23434a79ec85"
  1796. },
  1797. "dist": {
  1798. "type": "zip",
  1799. "url": "https://api.github.com/repos/guzzle/psr7/zipball/1afdd860a2566ed3c2b0b4a3de6e23434a79ec85",
  1800. "reference": "1afdd860a2566ed3c2b0b4a3de6e23434a79ec85",
  1801. "shasum": ""
  1802. },
  1803. "require": {
  1804. "php": ">=5.4.0",
  1805. "psr/http-message": "~1.0",
  1806. "ralouphie/getallheaders": "^2.0.5 || ^3.0.0"
  1807. },
  1808. "provide": {
  1809. "psr/http-message-implementation": "1.0"
  1810. },
  1811. "require-dev": {
  1812. "ext-zlib": "*",
  1813. "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.10"
  1814. },
  1815. "suggest": {
  1816. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  1817. },
  1818. "type": "library",
  1819. "extra": {
  1820. "branch-alias": {
  1821. "dev-master": "1.7-dev"
  1822. }
  1823. },
  1824. "autoload": {
  1825. "psr-4": {
  1826. "GuzzleHttp\\Psr7\\": "src/"
  1827. },
  1828. "files": [
  1829. "src/functions_include.php"
  1830. ]
  1831. },
  1832. "notification-url": "https://packagist.org/downloads/",
  1833. "license": [
  1834. "MIT"
  1835. ],
  1836. "authors": [
  1837. {
  1838. "name": "Graham Campbell",
  1839. "email": "hello@gjcampbell.co.uk",
  1840. "homepage": "https://github.com/GrahamCampbell"
  1841. },
  1842. {
  1843. "name": "Michael Dowling",
  1844. "email": "mtdowling@gmail.com",
  1845. "homepage": "https://github.com/mtdowling"
  1846. },
  1847. {
  1848. "name": "George Mponos",
  1849. "email": "gmponos@gmail.com",
  1850. "homepage": "https://github.com/gmponos"
  1851. },
  1852. {
  1853. "name": "Tobias Nyholm",
  1854. "email": "tobias.nyholm@gmail.com",
  1855. "homepage": "https://github.com/Nyholm"
  1856. },
  1857. {
  1858. "name": "Márk Sági-Kazár",
  1859. "email": "mark.sagikazar@gmail.com",
  1860. "homepage": "https://github.com/sagikazarmark"
  1861. },
  1862. {
  1863. "name": "Tobias Schultze",
  1864. "email": "webmaster@tubo-world.de",
  1865. "homepage": "https://github.com/Tobion"
  1866. }
  1867. ],
  1868. "description": "PSR-7 message implementation that also provides common utility methods",
  1869. "keywords": [
  1870. "http",
  1871. "message",
  1872. "psr-7",
  1873. "request",
  1874. "response",
  1875. "stream",
  1876. "uri",
  1877. "url"
  1878. ],
  1879. "support": {
  1880. "issues": "https://github.com/guzzle/psr7/issues",
  1881. "source": "https://github.com/guzzle/psr7/tree/1.8.3"
  1882. },
  1883. "funding": [
  1884. {
  1885. "url": "https://github.com/GrahamCampbell",
  1886. "type": "github"
  1887. },
  1888. {
  1889. "url": "https://github.com/Nyholm",
  1890. "type": "github"
  1891. },
  1892. {
  1893. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  1894. "type": "tidelift"
  1895. }
  1896. ],
  1897. "time": "2021-10-05T13:56:00+00:00"
  1898. },
  1899. {
  1900. "name": "intervention/image",
  1901. "version": "2.7.1",
  1902. "source": {
  1903. "type": "git",
  1904. "url": "https://github.com/Intervention/image.git",
  1905. "reference": "744ebba495319501b873a4e48787759c72e3fb8c"
  1906. },
  1907. "dist": {
  1908. "type": "zip",
  1909. "url": "https://api.github.com/repos/Intervention/image/zipball/744ebba495319501b873a4e48787759c72e3fb8c",
  1910. "reference": "744ebba495319501b873a4e48787759c72e3fb8c",
  1911. "shasum": ""
  1912. },
  1913. "require": {
  1914. "ext-fileinfo": "*",
  1915. "guzzlehttp/psr7": "~1.1 || ^2.0",
  1916. "php": ">=5.4.0"
  1917. },
  1918. "require-dev": {
  1919. "mockery/mockery": "~0.9.2",
  1920. "phpunit/phpunit": "^4.8 || ^5.7 || ^7.5.15"
  1921. },
  1922. "suggest": {
  1923. "ext-gd": "to use GD library based image processing.",
  1924. "ext-imagick": "to use Imagick based image processing.",
  1925. "intervention/imagecache": "Caching extension for the Intervention Image library"
  1926. },
  1927. "type": "library",
  1928. "extra": {
  1929. "branch-alias": {
  1930. "dev-master": "2.4-dev"
  1931. },
  1932. "laravel": {
  1933. "providers": [
  1934. "Intervention\\Image\\ImageServiceProvider"
  1935. ],
  1936. "aliases": {
  1937. "Image": "Intervention\\Image\\Facades\\Image"
  1938. }
  1939. }
  1940. },
  1941. "autoload": {
  1942. "psr-4": {
  1943. "Intervention\\Image\\": "src/Intervention/Image"
  1944. }
  1945. },
  1946. "notification-url": "https://packagist.org/downloads/",
  1947. "license": [
  1948. "MIT"
  1949. ],
  1950. "authors": [
  1951. {
  1952. "name": "Oliver Vogel",
  1953. "email": "oliver@olivervogel.com",
  1954. "homepage": "http://olivervogel.com/"
  1955. }
  1956. ],
  1957. "description": "Image handling and manipulation library with support for Laravel integration",
  1958. "homepage": "http://image.intervention.io/",
  1959. "keywords": [
  1960. "gd",
  1961. "image",
  1962. "imagick",
  1963. "laravel",
  1964. "thumbnail",
  1965. "watermark"
  1966. ],
  1967. "support": {
  1968. "issues": "https://github.com/Intervention/image/issues",
  1969. "source": "https://github.com/Intervention/image/tree/2.7.1"
  1970. },
  1971. "funding": [
  1972. {
  1973. "url": "https://www.paypal.me/interventionphp",
  1974. "type": "custom"
  1975. },
  1976. {
  1977. "url": "https://github.com/Intervention",
  1978. "type": "github"
  1979. }
  1980. ],
  1981. "time": "2021-12-16T16:49:26+00:00"
  1982. },
  1983. {
  1984. "name": "jaybizzle/crawler-detect",
  1985. "version": "v1.2.110",
  1986. "source": {
  1987. "type": "git",
  1988. "url": "https://github.com/JayBizzle/Crawler-Detect.git",
  1989. "reference": "f9d63a3581428fd8a3858e161d072f0b9debc26f"
  1990. },
  1991. "dist": {
  1992. "type": "zip",
  1993. "url": "https://api.github.com/repos/JayBizzle/Crawler-Detect/zipball/f9d63a3581428fd8a3858e161d072f0b9debc26f",
  1994. "reference": "f9d63a3581428fd8a3858e161d072f0b9debc26f",
  1995. "shasum": ""
  1996. },
  1997. "require": {
  1998. "php": ">=5.3.0"
  1999. },
  2000. "require-dev": {
  2001. "phpunit/phpunit": "^4.8|^5.5|^6.5|^9.4"
  2002. },
  2003. "type": "library",
  2004. "autoload": {
  2005. "psr-4": {
  2006. "Jaybizzle\\CrawlerDetect\\": "src/"
  2007. }
  2008. },
  2009. "notification-url": "https://packagist.org/downloads/",
  2010. "license": [
  2011. "MIT"
  2012. ],
  2013. "authors": [
  2014. {
  2015. "name": "Mark Beech",
  2016. "email": "m@rkbee.ch",
  2017. "role": "Developer"
  2018. }
  2019. ],
  2020. "description": "CrawlerDetect is a PHP class for detecting bots/crawlers/spiders via the user agent",
  2021. "homepage": "https://github.com/JayBizzle/Crawler-Detect/",
  2022. "keywords": [
  2023. "crawler",
  2024. "crawler detect",
  2025. "crawler detector",
  2026. "crawlerdetect",
  2027. "php crawler detect"
  2028. ],
  2029. "support": {
  2030. "issues": "https://github.com/JayBizzle/Crawler-Detect/issues",
  2031. "source": "https://github.com/JayBizzle/Crawler-Detect/tree/v1.2.110"
  2032. },
  2033. "time": "2021-12-07T18:35:06+00:00"
  2034. },
  2035. {
  2036. "name": "jenssegers/agent",
  2037. "version": "v2.6.4",
  2038. "source": {
  2039. "type": "git",
  2040. "url": "https://github.com/jenssegers/agent.git",
  2041. "reference": "daa11c43729510b3700bc34d414664966b03bffe"
  2042. },
  2043. "dist": {
  2044. "type": "zip",
  2045. "url": "https://api.github.com/repos/jenssegers/agent/zipball/daa11c43729510b3700bc34d414664966b03bffe",
  2046. "reference": "daa11c43729510b3700bc34d414664966b03bffe",
  2047. "shasum": ""
  2048. },
  2049. "require": {
  2050. "jaybizzle/crawler-detect": "^1.2",
  2051. "mobiledetect/mobiledetectlib": "^2.7.6",
  2052. "php": ">=5.6"
  2053. },
  2054. "require-dev": {
  2055. "php-coveralls/php-coveralls": "^2.1",
  2056. "phpunit/phpunit": "^5.0|^6.0|^7.0"
  2057. },
  2058. "suggest": {
  2059. "illuminate/support": "Required for laravel service providers"
  2060. },
  2061. "type": "library",
  2062. "extra": {
  2063. "branch-alias": {
  2064. "dev-master": "3.0-dev"
  2065. },
  2066. "laravel": {
  2067. "providers": [
  2068. "Jenssegers\\Agent\\AgentServiceProvider"
  2069. ],
  2070. "aliases": {
  2071. "Agent": "Jenssegers\\Agent\\Facades\\Agent"
  2072. }
  2073. }
  2074. },
  2075. "autoload": {
  2076. "psr-4": {
  2077. "Jenssegers\\Agent\\": "src/"
  2078. }
  2079. },
  2080. "notification-url": "https://packagist.org/downloads/",
  2081. "license": [
  2082. "MIT"
  2083. ],
  2084. "authors": [
  2085. {
  2086. "name": "Jens Segers",
  2087. "homepage": "https://jenssegers.com"
  2088. }
  2089. ],
  2090. "description": "Desktop/mobile user agent parser with support for Laravel, based on Mobiledetect",
  2091. "homepage": "https://github.com/jenssegers/agent",
  2092. "keywords": [
  2093. "Agent",
  2094. "browser",
  2095. "desktop",
  2096. "laravel",
  2097. "mobile",
  2098. "platform",
  2099. "user agent",
  2100. "useragent"
  2101. ],
  2102. "support": {
  2103. "issues": "https://github.com/jenssegers/agent/issues",
  2104. "source": "https://github.com/jenssegers/agent/tree/v2.6.4"
  2105. },
  2106. "funding": [
  2107. {
  2108. "url": "https://github.com/jenssegers",
  2109. "type": "github"
  2110. },
  2111. {
  2112. "url": "https://tidelift.com/funding/github/packagist/jenssegers/agent",
  2113. "type": "tidelift"
  2114. }
  2115. ],
  2116. "time": "2020-06-13T08:05:20+00:00"
  2117. },
  2118. {
  2119. "name": "laravel/framework",
  2120. "version": "v8.73.2",
  2121. "source": {
  2122. "type": "git",
  2123. "url": "https://github.com/laravel/framework.git",
  2124. "reference": "0e1c63315eeaee5920552ff042bd820bb4014533"
  2125. },
  2126. "dist": {
  2127. "type": "zip",
  2128. "url": "https://api.github.com/repos/laravel/framework/zipball/0e1c63315eeaee5920552ff042bd820bb4014533",
  2129. "reference": "0e1c63315eeaee5920552ff042bd820bb4014533",
  2130. "shasum": ""
  2131. },
  2132. "require": {
  2133. "doctrine/inflector": "^1.4|^2.0",
  2134. "dragonmantank/cron-expression": "^3.0.2",
  2135. "egulias/email-validator": "^2.1.10",
  2136. "ext-json": "*",
  2137. "ext-mbstring": "*",
  2138. "ext-openssl": "*",
  2139. "laravel/serializable-closure": "^1.0",
  2140. "league/commonmark": "^1.3|^2.0.2",
  2141. "league/flysystem": "^1.1",
  2142. "monolog/monolog": "^2.0",
  2143. "nesbot/carbon": "^2.53.1",
  2144. "opis/closure": "^3.6",
  2145. "php": "^7.3|^8.0",
  2146. "psr/container": "^1.0",
  2147. "psr/log": "^1.0 || ^2.0",
  2148. "psr/simple-cache": "^1.0",
  2149. "ramsey/uuid": "^4.2.2",
  2150. "swiftmailer/swiftmailer": "^6.3",
  2151. "symfony/console": "^5.1.4",
  2152. "symfony/error-handler": "^5.1.4",
  2153. "symfony/finder": "^5.1.4",
  2154. "symfony/http-foundation": "^5.1.4",
  2155. "symfony/http-kernel": "^5.1.4",
  2156. "symfony/mime": "^5.1.4",
  2157. "symfony/process": "^5.1.4",
  2158. "symfony/routing": "^5.1.4",
  2159. "symfony/var-dumper": "^5.1.4",
  2160. "tijsverkoyen/css-to-inline-styles": "^2.2.2",
  2161. "vlucas/phpdotenv": "^5.2",
  2162. "voku/portable-ascii": "^1.4.8"
  2163. },
  2164. "conflict": {
  2165. "tightenco/collect": "<5.5.33"
  2166. },
  2167. "provide": {
  2168. "psr/container-implementation": "1.0",
  2169. "psr/simple-cache-implementation": "1.0"
  2170. },
  2171. "replace": {
  2172. "illuminate/auth": "self.version",
  2173. "illuminate/broadcasting": "self.version",
  2174. "illuminate/bus": "self.version",
  2175. "illuminate/cache": "self.version",
  2176. "illuminate/collections": "self.version",
  2177. "illuminate/config": "self.version",
  2178. "illuminate/console": "self.version",
  2179. "illuminate/container": "self.version",
  2180. "illuminate/contracts": "self.version",
  2181. "illuminate/cookie": "self.version",
  2182. "illuminate/database": "self.version",
  2183. "illuminate/encryption": "self.version",
  2184. "illuminate/events": "self.version",
  2185. "illuminate/filesystem": "self.version",
  2186. "illuminate/hashing": "self.version",
  2187. "illuminate/http": "self.version",
  2188. "illuminate/log": "self.version",
  2189. "illuminate/macroable": "self.version",
  2190. "illuminate/mail": "self.version",
  2191. "illuminate/notifications": "self.version",
  2192. "illuminate/pagination": "self.version",
  2193. "illuminate/pipeline": "self.version",
  2194. "illuminate/queue": "self.version",
  2195. "illuminate/redis": "self.version",
  2196. "illuminate/routing": "self.version",
  2197. "illuminate/session": "self.version",
  2198. "illuminate/support": "self.version",
  2199. "illuminate/testing": "self.version",
  2200. "illuminate/translation": "self.version",
  2201. "illuminate/validation": "self.version",
  2202. "illuminate/view": "self.version"
  2203. },
  2204. "require-dev": {
  2205. "aws/aws-sdk-php": "^3.198.1",
  2206. "doctrine/dbal": "^2.13.3|^3.1.4",
  2207. "filp/whoops": "^2.14.3",
  2208. "guzzlehttp/guzzle": "^6.5.5|^7.0.1",
  2209. "league/flysystem-cached-adapter": "^1.0",
  2210. "mockery/mockery": "^1.4.4",
  2211. "orchestra/testbench-core": "^6.27",
  2212. "pda/pheanstalk": "^4.0",
  2213. "phpunit/phpunit": "^8.5.19|^9.5.8",
  2214. "predis/predis": "^1.1.9",
  2215. "symfony/cache": "^5.1.4"
  2216. },
  2217. "suggest": {
  2218. "aws/aws-sdk-php": "Required to use the SQS queue driver, DynamoDb failed job storage and SES mail driver (^3.198.1).",
  2219. "brianium/paratest": "Required to run tests in parallel (^6.0).",
  2220. "doctrine/dbal": "Required to rename columns and drop SQLite columns (^2.13.3|^3.1.4).",
  2221. "ext-bcmath": "Required to use the multiple_of validation rule.",
  2222. "ext-ftp": "Required to use the Flysystem FTP driver.",
  2223. "ext-gd": "Required to use Illuminate\\Http\\Testing\\FileFactory::image().",
  2224. "ext-memcached": "Required to use the memcache cache driver.",
  2225. "ext-pcntl": "Required to use all features of the queue worker.",
  2226. "ext-posix": "Required to use all features of the queue worker.",
  2227. "ext-redis": "Required to use the Redis cache and queue drivers (^4.0|^5.0).",
  2228. "fakerphp/faker": "Required to use the eloquent factory builder (^1.9.1).",
  2229. "filp/whoops": "Required for friendly error pages in development (^2.14.3).",
  2230. "guzzlehttp/guzzle": "Required to use the HTTP Client, Mailgun mail driver and the ping methods on schedules (^6.5.5|^7.0.1).",
  2231. "laravel/tinker": "Required to use the tinker console command (^2.0).",
  2232. "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (^1.0).",
  2233. "league/flysystem-cached-adapter": "Required to use the Flysystem cache (^1.0).",
  2234. "league/flysystem-sftp": "Required to use the Flysystem SFTP driver (^1.0).",
  2235. "mockery/mockery": "Required to use mocking (^1.4.4).",
  2236. "nyholm/psr7": "Required to use PSR-7 bridging features (^1.2).",
  2237. "pda/pheanstalk": "Required to use the beanstalk queue driver (^4.0).",
  2238. "phpunit/phpunit": "Required to use assertions and run tests (^8.5.19|^9.5.8).",
  2239. "predis/predis": "Required to use the predis connector (^1.1.9).",
  2240. "psr/http-message": "Required to allow Storage::put to accept a StreamInterface (^1.0).",
  2241. "pusher/pusher-php-server": "Required to use the Pusher broadcast driver (^4.0|^5.0|^6.0|^7.0).",
  2242. "symfony/cache": "Required to PSR-6 cache bridge (^5.1.4).",
  2243. "symfony/filesystem": "Required to enable support for relative symbolic links (^5.1.4).",
  2244. "symfony/psr-http-message-bridge": "Required to use PSR-7 bridging features (^2.0).",
  2245. "wildbit/swiftmailer-postmark": "Required to use Postmark mail driver (^3.0)."
  2246. },
  2247. "type": "library",
  2248. "extra": {
  2249. "branch-alias": {
  2250. "dev-master": "8.x-dev"
  2251. }
  2252. },
  2253. "autoload": {
  2254. "files": [
  2255. "src/Illuminate/Collections/helpers.php",
  2256. "src/Illuminate/Events/functions.php",
  2257. "src/Illuminate/Foundation/helpers.php",
  2258. "src/Illuminate/Support/helpers.php"
  2259. ],
  2260. "psr-4": {
  2261. "Illuminate\\": "src/Illuminate/",
  2262. "Illuminate\\Support\\": [
  2263. "src/Illuminate/Macroable/",
  2264. "src/Illuminate/Collections/"
  2265. ]
  2266. }
  2267. },
  2268. "notification-url": "https://packagist.org/downloads/",
  2269. "license": [
  2270. "MIT"
  2271. ],
  2272. "authors": [
  2273. {
  2274. "name": "Taylor Otwell",
  2275. "email": "taylor@laravel.com"
  2276. }
  2277. ],
  2278. "description": "The Laravel Framework.",
  2279. "homepage": "https://laravel.com",
  2280. "keywords": [
  2281. "framework",
  2282. "laravel"
  2283. ],
  2284. "support": {
  2285. "issues": "https://github.com/laravel/framework/issues",
  2286. "source": "https://github.com/laravel/framework"
  2287. },
  2288. "time": "2021-11-23T14:27:43+00:00"
  2289. },
  2290. {
  2291. "name": "laravel/helpers",
  2292. "version": "v1.4.1",
  2293. "source": {
  2294. "type": "git",
  2295. "url": "https://github.com/laravel/helpers.git",
  2296. "reference": "febb10d8daaf86123825de2cb87f789a3371f0ac"
  2297. },
  2298. "dist": {
  2299. "type": "zip",
  2300. "url": "https://api.github.com/repos/laravel/helpers/zipball/febb10d8daaf86123825de2cb87f789a3371f0ac",
  2301. "reference": "febb10d8daaf86123825de2cb87f789a3371f0ac",
  2302. "shasum": ""
  2303. },
  2304. "require": {
  2305. "illuminate/support": "~5.8.0|^6.0|^7.0|^8.0",
  2306. "php": "^7.1.3|^8.0"
  2307. },
  2308. "require-dev": {
  2309. "phpunit/phpunit": "^7.0|^8.0|^9.0"
  2310. },
  2311. "type": "library",
  2312. "extra": {
  2313. "branch-alias": {
  2314. "dev-master": "1.x-dev"
  2315. }
  2316. },
  2317. "autoload": {
  2318. "files": [
  2319. "src/helpers.php"
  2320. ]
  2321. },
  2322. "notification-url": "https://packagist.org/downloads/",
  2323. "license": [
  2324. "MIT"
  2325. ],
  2326. "authors": [
  2327. {
  2328. "name": "Taylor Otwell",
  2329. "email": "taylor@laravel.com"
  2330. },
  2331. {
  2332. "name": "Dries Vints",
  2333. "email": "dries.vints@gmail.com"
  2334. }
  2335. ],
  2336. "description": "Provides backwards compatibility for helpers in the latest Laravel release.",
  2337. "keywords": [
  2338. "helpers",
  2339. "laravel"
  2340. ],
  2341. "support": {
  2342. "source": "https://github.com/laravel/helpers/tree/v1.4.1"
  2343. },
  2344. "time": "2021-02-16T15:27:11+00:00"
  2345. },
  2346. {
  2347. "name": "laravel/horizon",
  2348. "version": "v5.7.17",
  2349. "source": {
  2350. "type": "git",
  2351. "url": "https://github.com/laravel/horizon.git",
  2352. "reference": "5b14ede6cd8b63cd42d3585096bb55561866c6d9"
  2353. },
  2354. "dist": {
  2355. "type": "zip",
  2356. "url": "https://api.github.com/repos/laravel/horizon/zipball/5b14ede6cd8b63cd42d3585096bb55561866c6d9",
  2357. "reference": "5b14ede6cd8b63cd42d3585096bb55561866c6d9",
  2358. "shasum": ""
  2359. },
  2360. "require": {
  2361. "ext-json": "*",
  2362. "ext-pcntl": "*",
  2363. "ext-posix": "*",
  2364. "illuminate/contracts": "^8.17",
  2365. "illuminate/queue": "^8.17",
  2366. "illuminate/support": "^8.17",
  2367. "nesbot/carbon": "^2.17",
  2368. "php": "^7.3|^8.0",
  2369. "ramsey/uuid": "^4.0",
  2370. "symfony/error-handler": "^5.0",
  2371. "symfony/process": "^5.0"
  2372. },
  2373. "require-dev": {
  2374. "mockery/mockery": "^1.0",
  2375. "orchestra/testbench": "^6.0",
  2376. "phpunit/phpunit": "^9.0",
  2377. "predis/predis": "^1.1"
  2378. },
  2379. "suggest": {
  2380. "ext-redis": "Required to use the Redis PHP driver.",
  2381. "predis/predis": "Required when not using the Redis PHP driver (^1.1)."
  2382. },
  2383. "type": "library",
  2384. "extra": {
  2385. "branch-alias": {
  2386. "dev-master": "5.x-dev"
  2387. },
  2388. "laravel": {
  2389. "providers": [
  2390. "Laravel\\Horizon\\HorizonServiceProvider"
  2391. ],
  2392. "aliases": {
  2393. "Horizon": "Laravel\\Horizon\\Horizon"
  2394. }
  2395. }
  2396. },
  2397. "autoload": {
  2398. "psr-4": {
  2399. "Laravel\\Horizon\\": "src/"
  2400. }
  2401. },
  2402. "notification-url": "https://packagist.org/downloads/",
  2403. "license": [
  2404. "MIT"
  2405. ],
  2406. "authors": [
  2407. {
  2408. "name": "Taylor Otwell",
  2409. "email": "taylor@laravel.com"
  2410. }
  2411. ],
  2412. "description": "Dashboard and code-driven configuration for Laravel queues.",
  2413. "keywords": [
  2414. "laravel",
  2415. "queue"
  2416. ],
  2417. "support": {
  2418. "issues": "https://github.com/laravel/horizon/issues",
  2419. "source": "https://github.com/laravel/horizon/tree/v5.7.17"
  2420. },
  2421. "time": "2021-12-07T16:02:09+00:00"
  2422. },
  2423. {
  2424. "name": "laravel/passport",
  2425. "version": "v10.2.2",
  2426. "source": {
  2427. "type": "git",
  2428. "url": "https://github.com/laravel/passport.git",
  2429. "reference": "7981abed1a0979afd4a5a8bec81624b8127a287f"
  2430. },
  2431. "dist": {
  2432. "type": "zip",
  2433. "url": "https://api.github.com/repos/laravel/passport/zipball/7981abed1a0979afd4a5a8bec81624b8127a287f",
  2434. "reference": "7981abed1a0979afd4a5a8bec81624b8127a287f",
  2435. "shasum": ""
  2436. },
  2437. "require": {
  2438. "ext-json": "*",
  2439. "firebase/php-jwt": "^5.0",
  2440. "illuminate/auth": "^8.2",
  2441. "illuminate/console": "^8.2",
  2442. "illuminate/container": "^8.2",
  2443. "illuminate/contracts": "^8.2",
  2444. "illuminate/cookie": "^8.2",
  2445. "illuminate/database": "^8.2",
  2446. "illuminate/encryption": "^8.2",
  2447. "illuminate/http": "^8.2",
  2448. "illuminate/support": "^8.2",
  2449. "lcobucci/jwt": "^3.4|^4.0",
  2450. "league/oauth2-server": "^8.2",
  2451. "nyholm/psr7": "^1.3",
  2452. "php": "^7.3|^8.0",
  2453. "phpseclib/phpseclib": "^2.0|^3.0",
  2454. "symfony/psr-http-message-bridge": "^2.0"
  2455. },
  2456. "require-dev": {
  2457. "mockery/mockery": "^1.0",
  2458. "orchestra/testbench": "^6.0",
  2459. "phpunit/phpunit": "^9.3"
  2460. },
  2461. "type": "library",
  2462. "extra": {
  2463. "branch-alias": {
  2464. "dev-master": "10.x-dev"
  2465. },
  2466. "laravel": {
  2467. "providers": [
  2468. "Laravel\\Passport\\PassportServiceProvider"
  2469. ]
  2470. }
  2471. },
  2472. "autoload": {
  2473. "psr-4": {
  2474. "Laravel\\Passport\\": "src/",
  2475. "Laravel\\Passport\\Database\\Factories\\": "database/factories/"
  2476. }
  2477. },
  2478. "notification-url": "https://packagist.org/downloads/",
  2479. "license": [
  2480. "MIT"
  2481. ],
  2482. "authors": [
  2483. {
  2484. "name": "Taylor Otwell",
  2485. "email": "taylor@laravel.com"
  2486. }
  2487. ],
  2488. "description": "Laravel Passport provides OAuth2 server support to Laravel.",
  2489. "keywords": [
  2490. "laravel",
  2491. "oauth",
  2492. "passport"
  2493. ],
  2494. "support": {
  2495. "issues": "https://github.com/laravel/passport/issues",
  2496. "source": "https://github.com/laravel/passport"
  2497. },
  2498. "time": "2021-12-07T16:57:03+00:00"
  2499. },
  2500. {
  2501. "name": "laravel/serializable-closure",
  2502. "version": "v1.0.5",
  2503. "source": {
  2504. "type": "git",
  2505. "url": "https://github.com/laravel/serializable-closure.git",
  2506. "reference": "25de3be1bca1b17d52ff0dc02b646c667ac7266c"
  2507. },
  2508. "dist": {
  2509. "type": "zip",
  2510. "url": "https://api.github.com/repos/laravel/serializable-closure/zipball/25de3be1bca1b17d52ff0dc02b646c667ac7266c",
  2511. "reference": "25de3be1bca1b17d52ff0dc02b646c667ac7266c",
  2512. "shasum": ""
  2513. },
  2514. "require": {
  2515. "php": "^7.3|^8.0"
  2516. },
  2517. "require-dev": {
  2518. "pestphp/pest": "^1.18",
  2519. "phpstan/phpstan": "^0.12.98",
  2520. "symfony/var-dumper": "^5.3"
  2521. },
  2522. "type": "library",
  2523. "extra": {
  2524. "branch-alias": {
  2525. "dev-master": "1.x-dev"
  2526. }
  2527. },
  2528. "autoload": {
  2529. "psr-4": {
  2530. "Laravel\\SerializableClosure\\": "src/"
  2531. }
  2532. },
  2533. "notification-url": "https://packagist.org/downloads/",
  2534. "license": [
  2535. "MIT"
  2536. ],
  2537. "authors": [
  2538. {
  2539. "name": "Taylor Otwell",
  2540. "email": "taylor@laravel.com"
  2541. },
  2542. {
  2543. "name": "Nuno Maduro",
  2544. "email": "nuno@laravel.com"
  2545. }
  2546. ],
  2547. "description": "Laravel Serializable Closure provides an easy and secure way to serialize closures in PHP.",
  2548. "keywords": [
  2549. "closure",
  2550. "laravel",
  2551. "serializable"
  2552. ],
  2553. "support": {
  2554. "issues": "https://github.com/laravel/serializable-closure/issues",
  2555. "source": "https://github.com/laravel/serializable-closure"
  2556. },
  2557. "time": "2021-11-30T15:53:04+00:00"
  2558. },
  2559. {
  2560. "name": "laravel/tinker",
  2561. "version": "v2.6.3",
  2562. "source": {
  2563. "type": "git",
  2564. "url": "https://github.com/laravel/tinker.git",
  2565. "reference": "a9ddee4761ec8453c584e393b393caff189a3e42"
  2566. },
  2567. "dist": {
  2568. "type": "zip",
  2569. "url": "https://api.github.com/repos/laravel/tinker/zipball/a9ddee4761ec8453c584e393b393caff189a3e42",
  2570. "reference": "a9ddee4761ec8453c584e393b393caff189a3e42",
  2571. "shasum": ""
  2572. },
  2573. "require": {
  2574. "illuminate/console": "^6.0|^7.0|^8.0",
  2575. "illuminate/contracts": "^6.0|^7.0|^8.0",
  2576. "illuminate/support": "^6.0|^7.0|^8.0",
  2577. "php": "^7.2.5|^8.0",
  2578. "psy/psysh": "^0.10.4",
  2579. "symfony/var-dumper": "^4.3.4|^5.0"
  2580. },
  2581. "require-dev": {
  2582. "mockery/mockery": "~1.3.3|^1.4.2",
  2583. "phpunit/phpunit": "^8.5.8|^9.3.3"
  2584. },
  2585. "suggest": {
  2586. "illuminate/database": "The Illuminate Database package (^6.0|^7.0|^8.0)."
  2587. },
  2588. "type": "library",
  2589. "extra": {
  2590. "branch-alias": {
  2591. "dev-master": "2.x-dev"
  2592. },
  2593. "laravel": {
  2594. "providers": [
  2595. "Laravel\\Tinker\\TinkerServiceProvider"
  2596. ]
  2597. }
  2598. },
  2599. "autoload": {
  2600. "psr-4": {
  2601. "Laravel\\Tinker\\": "src/"
  2602. }
  2603. },
  2604. "notification-url": "https://packagist.org/downloads/",
  2605. "license": [
  2606. "MIT"
  2607. ],
  2608. "authors": [
  2609. {
  2610. "name": "Taylor Otwell",
  2611. "email": "taylor@laravel.com"
  2612. }
  2613. ],
  2614. "description": "Powerful REPL for the Laravel framework.",
  2615. "keywords": [
  2616. "REPL",
  2617. "Tinker",
  2618. "laravel",
  2619. "psysh"
  2620. ],
  2621. "support": {
  2622. "issues": "https://github.com/laravel/tinker/issues",
  2623. "source": "https://github.com/laravel/tinker/tree/v2.6.3"
  2624. },
  2625. "time": "2021-12-07T16:41:42+00:00"
  2626. },
  2627. {
  2628. "name": "laravel/ui",
  2629. "version": "v3.4.1",
  2630. "source": {
  2631. "type": "git",
  2632. "url": "https://github.com/laravel/ui.git",
  2633. "reference": "9a1e52442dd238647905b98d773d59e438eb9f9d"
  2634. },
  2635. "dist": {
  2636. "type": "zip",
  2637. "url": "https://api.github.com/repos/laravel/ui/zipball/9a1e52442dd238647905b98d773d59e438eb9f9d",
  2638. "reference": "9a1e52442dd238647905b98d773d59e438eb9f9d",
  2639. "shasum": ""
  2640. },
  2641. "require": {
  2642. "illuminate/console": "^8.42|^9.0",
  2643. "illuminate/filesystem": "^8.42|^9.0",
  2644. "illuminate/support": "^8.42|^9.0",
  2645. "illuminate/validation": "^8.42|^9.0",
  2646. "php": "^7.3|^8.0"
  2647. },
  2648. "require-dev": {
  2649. "orchestra/testbench": "^6.23|^7.0"
  2650. },
  2651. "type": "library",
  2652. "extra": {
  2653. "branch-alias": {
  2654. "dev-master": "3.x-dev"
  2655. },
  2656. "laravel": {
  2657. "providers": [
  2658. "Laravel\\Ui\\UiServiceProvider"
  2659. ]
  2660. }
  2661. },
  2662. "autoload": {
  2663. "psr-4": {
  2664. "Laravel\\Ui\\": "src/",
  2665. "Illuminate\\Foundation\\Auth\\": "auth-backend/"
  2666. }
  2667. },
  2668. "notification-url": "https://packagist.org/downloads/",
  2669. "license": [
  2670. "MIT"
  2671. ],
  2672. "authors": [
  2673. {
  2674. "name": "Taylor Otwell",
  2675. "email": "taylor@laravel.com"
  2676. }
  2677. ],
  2678. "description": "Laravel UI utilities and presets.",
  2679. "keywords": [
  2680. "laravel",
  2681. "ui"
  2682. ],
  2683. "support": {
  2684. "source": "https://github.com/laravel/ui/tree/v3.4.1"
  2685. },
  2686. "time": "2021-12-22T10:40:50+00:00"
  2687. },
  2688. {
  2689. "name": "lcobucci/clock",
  2690. "version": "2.0.0",
  2691. "source": {
  2692. "type": "git",
  2693. "url": "https://github.com/lcobucci/clock.git",
  2694. "reference": "353d83fe2e6ae95745b16b3d911813df6a05bfb3"
  2695. },
  2696. "dist": {
  2697. "type": "zip",
  2698. "url": "https://api.github.com/repos/lcobucci/clock/zipball/353d83fe2e6ae95745b16b3d911813df6a05bfb3",
  2699. "reference": "353d83fe2e6ae95745b16b3d911813df6a05bfb3",
  2700. "shasum": ""
  2701. },
  2702. "require": {
  2703. "php": "^7.4 || ^8.0"
  2704. },
  2705. "require-dev": {
  2706. "infection/infection": "^0.17",
  2707. "lcobucci/coding-standard": "^6.0",
  2708. "phpstan/extension-installer": "^1.0",
  2709. "phpstan/phpstan": "^0.12",
  2710. "phpstan/phpstan-deprecation-rules": "^0.12",
  2711. "phpstan/phpstan-phpunit": "^0.12",
  2712. "phpstan/phpstan-strict-rules": "^0.12",
  2713. "phpunit/php-code-coverage": "9.1.4",
  2714. "phpunit/phpunit": "9.3.7"
  2715. },
  2716. "type": "library",
  2717. "autoload": {
  2718. "psr-4": {
  2719. "Lcobucci\\Clock\\": "src"
  2720. }
  2721. },
  2722. "notification-url": "https://packagist.org/downloads/",
  2723. "license": [
  2724. "MIT"
  2725. ],
  2726. "authors": [
  2727. {
  2728. "name": "Luís Cobucci",
  2729. "email": "lcobucci@gmail.com"
  2730. }
  2731. ],
  2732. "description": "Yet another clock abstraction",
  2733. "support": {
  2734. "issues": "https://github.com/lcobucci/clock/issues",
  2735. "source": "https://github.com/lcobucci/clock/tree/2.0.x"
  2736. },
  2737. "funding": [
  2738. {
  2739. "url": "https://github.com/lcobucci",
  2740. "type": "github"
  2741. },
  2742. {
  2743. "url": "https://www.patreon.com/lcobucci",
  2744. "type": "patreon"
  2745. }
  2746. ],
  2747. "time": "2020-08-27T18:56:02+00:00"
  2748. },
  2749. {
  2750. "name": "lcobucci/jwt",
  2751. "version": "4.1.5",
  2752. "source": {
  2753. "type": "git",
  2754. "url": "https://github.com/lcobucci/jwt.git",
  2755. "reference": "fe2d89f2eaa7087af4aa166c6f480ef04e000582"
  2756. },
  2757. "dist": {
  2758. "type": "zip",
  2759. "url": "https://api.github.com/repos/lcobucci/jwt/zipball/fe2d89f2eaa7087af4aa166c6f480ef04e000582",
  2760. "reference": "fe2d89f2eaa7087af4aa166c6f480ef04e000582",
  2761. "shasum": ""
  2762. },
  2763. "require": {
  2764. "ext-hash": "*",
  2765. "ext-json": "*",
  2766. "ext-mbstring": "*",
  2767. "ext-openssl": "*",
  2768. "ext-sodium": "*",
  2769. "lcobucci/clock": "^2.0",
  2770. "php": "^7.4 || ^8.0"
  2771. },
  2772. "require-dev": {
  2773. "infection/infection": "^0.21",
  2774. "lcobucci/coding-standard": "^6.0",
  2775. "mikey179/vfsstream": "^1.6.7",
  2776. "phpbench/phpbench": "^1.0",
  2777. "phpstan/extension-installer": "^1.0",
  2778. "phpstan/phpstan": "^0.12",
  2779. "phpstan/phpstan-deprecation-rules": "^0.12",
  2780. "phpstan/phpstan-phpunit": "^0.12",
  2781. "phpstan/phpstan-strict-rules": "^0.12",
  2782. "phpunit/php-invoker": "^3.1",
  2783. "phpunit/phpunit": "^9.5"
  2784. },
  2785. "type": "library",
  2786. "autoload": {
  2787. "psr-4": {
  2788. "Lcobucci\\JWT\\": "src"
  2789. }
  2790. },
  2791. "notification-url": "https://packagist.org/downloads/",
  2792. "license": [
  2793. "BSD-3-Clause"
  2794. ],
  2795. "authors": [
  2796. {
  2797. "name": "Luís Cobucci",
  2798. "email": "lcobucci@gmail.com",
  2799. "role": "Developer"
  2800. }
  2801. ],
  2802. "description": "A simple library to work with JSON Web Token and JSON Web Signature",
  2803. "keywords": [
  2804. "JWS",
  2805. "jwt"
  2806. ],
  2807. "support": {
  2808. "issues": "https://github.com/lcobucci/jwt/issues",
  2809. "source": "https://github.com/lcobucci/jwt/tree/4.1.5"
  2810. },
  2811. "funding": [
  2812. {
  2813. "url": "https://github.com/lcobucci",
  2814. "type": "github"
  2815. },
  2816. {
  2817. "url": "https://www.patreon.com/lcobucci",
  2818. "type": "patreon"
  2819. }
  2820. ],
  2821. "time": "2021-09-28T19:34:56+00:00"
  2822. },
  2823. {
  2824. "name": "league/commonmark",
  2825. "version": "2.1.0",
  2826. "source": {
  2827. "type": "git",
  2828. "url": "https://github.com/thephpleague/commonmark.git",
  2829. "reference": "819276bc54e83c160617d3ac0a436c239e479928"
  2830. },
  2831. "dist": {
  2832. "type": "zip",
  2833. "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/819276bc54e83c160617d3ac0a436c239e479928",
  2834. "reference": "819276bc54e83c160617d3ac0a436c239e479928",
  2835. "shasum": ""
  2836. },
  2837. "require": {
  2838. "ext-mbstring": "*",
  2839. "league/config": "^1.1.1",
  2840. "php": "^7.4 || ^8.0",
  2841. "psr/event-dispatcher": "^1.0",
  2842. "symfony/polyfill-php80": "^1.15"
  2843. },
  2844. "require-dev": {
  2845. "cebe/markdown": "^1.0",
  2846. "commonmark/cmark": "0.30.0",
  2847. "commonmark/commonmark.js": "0.30.0",
  2848. "composer/package-versions-deprecated": "^1.8",
  2849. "erusev/parsedown": "^1.0",
  2850. "ext-json": "*",
  2851. "github/gfm": "0.29.0",
  2852. "michelf/php-markdown": "^1.4",
  2853. "phpstan/phpstan": "^0.12.88 || ^1.0.0",
  2854. "phpunit/phpunit": "^9.5.5",
  2855. "scrutinizer/ocular": "^1.8.1",
  2856. "symfony/finder": "^5.3",
  2857. "symfony/yaml": "^2.3 | ^3.0 | ^4.0 | ^5.0 | ^6.0",
  2858. "unleashedtech/php-coding-standard": "^3.1",
  2859. "vimeo/psalm": "^4.7.3"
  2860. },
  2861. "suggest": {
  2862. "symfony/yaml": "v2.3+ required if using the Front Matter extension"
  2863. },
  2864. "type": "library",
  2865. "extra": {
  2866. "branch-alias": {
  2867. "dev-main": "2.2-dev"
  2868. }
  2869. },
  2870. "autoload": {
  2871. "psr-4": {
  2872. "League\\CommonMark\\": "src"
  2873. }
  2874. },
  2875. "notification-url": "https://packagist.org/downloads/",
  2876. "license": [
  2877. "BSD-3-Clause"
  2878. ],
  2879. "authors": [
  2880. {
  2881. "name": "Colin O'Dell",
  2882. "email": "colinodell@gmail.com",
  2883. "homepage": "https://www.colinodell.com",
  2884. "role": "Lead Developer"
  2885. }
  2886. ],
  2887. "description": "Highly-extensible PHP Markdown parser which fully supports the CommonMark spec and GitHub-Flavored Markdown (GFM)",
  2888. "homepage": "https://commonmark.thephpleague.com",
  2889. "keywords": [
  2890. "commonmark",
  2891. "flavored",
  2892. "gfm",
  2893. "github",
  2894. "github-flavored",
  2895. "markdown",
  2896. "md",
  2897. "parser"
  2898. ],
  2899. "support": {
  2900. "docs": "https://commonmark.thephpleague.com/",
  2901. "forum": "https://github.com/thephpleague/commonmark/discussions",
  2902. "issues": "https://github.com/thephpleague/commonmark/issues",
  2903. "rss": "https://github.com/thephpleague/commonmark/releases.atom",
  2904. "source": "https://github.com/thephpleague/commonmark"
  2905. },
  2906. "funding": [
  2907. {
  2908. "url": "https://www.colinodell.com/sponsor",
  2909. "type": "custom"
  2910. },
  2911. {
  2912. "url": "https://www.paypal.me/colinpodell/10.00",
  2913. "type": "custom"
  2914. },
  2915. {
  2916. "url": "https://github.com/colinodell",
  2917. "type": "github"
  2918. },
  2919. {
  2920. "url": "https://tidelift.com/funding/github/packagist/league/commonmark",
  2921. "type": "tidelift"
  2922. }
  2923. ],
  2924. "time": "2021-12-05T18:25:20+00:00"
  2925. },
  2926. {
  2927. "name": "league/config",
  2928. "version": "v1.1.1",
  2929. "source": {
  2930. "type": "git",
  2931. "url": "https://github.com/thephpleague/config.git",
  2932. "reference": "a9d39eeeb6cc49d10a6e6c36f22c4c1f4a767f3e"
  2933. },
  2934. "dist": {
  2935. "type": "zip",
  2936. "url": "https://api.github.com/repos/thephpleague/config/zipball/a9d39eeeb6cc49d10a6e6c36f22c4c1f4a767f3e",
  2937. "reference": "a9d39eeeb6cc49d10a6e6c36f22c4c1f4a767f3e",
  2938. "shasum": ""
  2939. },
  2940. "require": {
  2941. "dflydev/dot-access-data": "^3.0.1",
  2942. "nette/schema": "^1.2",
  2943. "php": "^7.4 || ^8.0"
  2944. },
  2945. "require-dev": {
  2946. "phpstan/phpstan": "^0.12.90",
  2947. "phpunit/phpunit": "^9.5.5",
  2948. "scrutinizer/ocular": "^1.8.1",
  2949. "unleashedtech/php-coding-standard": "^3.1",
  2950. "vimeo/psalm": "^4.7.3"
  2951. },
  2952. "type": "library",
  2953. "extra": {
  2954. "branch-alias": {
  2955. "dev-main": "1.2-dev"
  2956. }
  2957. },
  2958. "autoload": {
  2959. "psr-4": {
  2960. "League\\Config\\": "src"
  2961. }
  2962. },
  2963. "notification-url": "https://packagist.org/downloads/",
  2964. "license": [
  2965. "BSD-3-Clause"
  2966. ],
  2967. "authors": [
  2968. {
  2969. "name": "Colin O'Dell",
  2970. "email": "colinodell@gmail.com",
  2971. "homepage": "https://www.colinodell.com",
  2972. "role": "Lead Developer"
  2973. }
  2974. ],
  2975. "description": "Define configuration arrays with strict schemas and access values with dot notation",
  2976. "homepage": "https://config.thephpleague.com",
  2977. "keywords": [
  2978. "array",
  2979. "config",
  2980. "configuration",
  2981. "dot",
  2982. "dot-access",
  2983. "nested",
  2984. "schema"
  2985. ],
  2986. "support": {
  2987. "docs": "https://config.thephpleague.com/",
  2988. "issues": "https://github.com/thephpleague/config/issues",
  2989. "rss": "https://github.com/thephpleague/config/releases.atom",
  2990. "source": "https://github.com/thephpleague/config"
  2991. },
  2992. "funding": [
  2993. {
  2994. "url": "https://www.colinodell.com/sponsor",
  2995. "type": "custom"
  2996. },
  2997. {
  2998. "url": "https://www.paypal.me/colinpodell/10.00",
  2999. "type": "custom"
  3000. },
  3001. {
  3002. "url": "https://github.com/colinodell",
  3003. "type": "github"
  3004. }
  3005. ],
  3006. "time": "2021-08-14T12:15:32+00:00"
  3007. },
  3008. {
  3009. "name": "league/event",
  3010. "version": "2.2.0",
  3011. "source": {
  3012. "type": "git",
  3013. "url": "https://github.com/thephpleague/event.git",
  3014. "reference": "d2cc124cf9a3fab2bb4ff963307f60361ce4d119"
  3015. },
  3016. "dist": {
  3017. "type": "zip",
  3018. "url": "https://api.github.com/repos/thephpleague/event/zipball/d2cc124cf9a3fab2bb4ff963307f60361ce4d119",
  3019. "reference": "d2cc124cf9a3fab2bb4ff963307f60361ce4d119",
  3020. "shasum": ""
  3021. },
  3022. "require": {
  3023. "php": ">=5.4.0"
  3024. },
  3025. "require-dev": {
  3026. "henrikbjorn/phpspec-code-coverage": "~1.0.1",
  3027. "phpspec/phpspec": "^2.2"
  3028. },
  3029. "type": "library",
  3030. "extra": {
  3031. "branch-alias": {
  3032. "dev-master": "2.2-dev"
  3033. }
  3034. },
  3035. "autoload": {
  3036. "psr-4": {
  3037. "League\\Event\\": "src/"
  3038. }
  3039. },
  3040. "notification-url": "https://packagist.org/downloads/",
  3041. "license": [
  3042. "MIT"
  3043. ],
  3044. "authors": [
  3045. {
  3046. "name": "Frank de Jonge",
  3047. "email": "info@frenky.net"
  3048. }
  3049. ],
  3050. "description": "Event package",
  3051. "keywords": [
  3052. "emitter",
  3053. "event",
  3054. "listener"
  3055. ],
  3056. "support": {
  3057. "issues": "https://github.com/thephpleague/event/issues",
  3058. "source": "https://github.com/thephpleague/event/tree/master"
  3059. },
  3060. "time": "2018-11-26T11:52:41+00:00"
  3061. },
  3062. {
  3063. "name": "league/flysystem",
  3064. "version": "1.1.9",
  3065. "source": {
  3066. "type": "git",
  3067. "url": "https://github.com/thephpleague/flysystem.git",
  3068. "reference": "094defdb4a7001845300334e7c1ee2335925ef99"
  3069. },
  3070. "dist": {
  3071. "type": "zip",
  3072. "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/094defdb4a7001845300334e7c1ee2335925ef99",
  3073. "reference": "094defdb4a7001845300334e7c1ee2335925ef99",
  3074. "shasum": ""
  3075. },
  3076. "require": {
  3077. "ext-fileinfo": "*",
  3078. "league/mime-type-detection": "^1.3",
  3079. "php": "^7.2.5 || ^8.0"
  3080. },
  3081. "conflict": {
  3082. "league/flysystem-sftp": "<1.0.6"
  3083. },
  3084. "require-dev": {
  3085. "phpspec/prophecy": "^1.11.1",
  3086. "phpunit/phpunit": "^8.5.8"
  3087. },
  3088. "suggest": {
  3089. "ext-ftp": "Allows you to use FTP server storage",
  3090. "ext-openssl": "Allows you to use FTPS server storage",
  3091. "league/flysystem-aws-s3-v2": "Allows you to use S3 storage with AWS SDK v2",
  3092. "league/flysystem-aws-s3-v3": "Allows you to use S3 storage with AWS SDK v3",
  3093. "league/flysystem-azure": "Allows you to use Windows Azure Blob storage",
  3094. "league/flysystem-cached-adapter": "Flysystem adapter decorator for metadata caching",
  3095. "league/flysystem-eventable-filesystem": "Allows you to use EventableFilesystem",
  3096. "league/flysystem-rackspace": "Allows you to use Rackspace Cloud Files",
  3097. "league/flysystem-sftp": "Allows you to use SFTP server storage via phpseclib",
  3098. "league/flysystem-webdav": "Allows you to use WebDAV storage",
  3099. "league/flysystem-ziparchive": "Allows you to use ZipArchive adapter",
  3100. "spatie/flysystem-dropbox": "Allows you to use Dropbox storage",
  3101. "srmklive/flysystem-dropbox-v2": "Allows you to use Dropbox storage for PHP 5 applications"
  3102. },
  3103. "type": "library",
  3104. "extra": {
  3105. "branch-alias": {
  3106. "dev-master": "1.1-dev"
  3107. }
  3108. },
  3109. "autoload": {
  3110. "psr-4": {
  3111. "League\\Flysystem\\": "src/"
  3112. }
  3113. },
  3114. "notification-url": "https://packagist.org/downloads/",
  3115. "license": [
  3116. "MIT"
  3117. ],
  3118. "authors": [
  3119. {
  3120. "name": "Frank de Jonge",
  3121. "email": "info@frenky.net"
  3122. }
  3123. ],
  3124. "description": "Filesystem abstraction: Many filesystems, one API.",
  3125. "keywords": [
  3126. "Cloud Files",
  3127. "WebDAV",
  3128. "abstraction",
  3129. "aws",
  3130. "cloud",
  3131. "copy.com",
  3132. "dropbox",
  3133. "file systems",
  3134. "files",
  3135. "filesystem",
  3136. "filesystems",
  3137. "ftp",
  3138. "rackspace",
  3139. "remote",
  3140. "s3",
  3141. "sftp",
  3142. "storage"
  3143. ],
  3144. "support": {
  3145. "issues": "https://github.com/thephpleague/flysystem/issues",
  3146. "source": "https://github.com/thephpleague/flysystem/tree/1.1.9"
  3147. },
  3148. "funding": [
  3149. {
  3150. "url": "https://offset.earth/frankdejonge",
  3151. "type": "other"
  3152. }
  3153. ],
  3154. "time": "2021-12-09T09:40:50+00:00"
  3155. },
  3156. {
  3157. "name": "league/flysystem-aws-s3-v3",
  3158. "version": "1.0.29",
  3159. "source": {
  3160. "type": "git",
  3161. "url": "https://github.com/thephpleague/flysystem-aws-s3-v3.git",
  3162. "reference": "4e25cc0582a36a786c31115e419c6e40498f6972"
  3163. },
  3164. "dist": {
  3165. "type": "zip",
  3166. "url": "https://api.github.com/repos/thephpleague/flysystem-aws-s3-v3/zipball/4e25cc0582a36a786c31115e419c6e40498f6972",
  3167. "reference": "4e25cc0582a36a786c31115e419c6e40498f6972",
  3168. "shasum": ""
  3169. },
  3170. "require": {
  3171. "aws/aws-sdk-php": "^3.20.0",
  3172. "league/flysystem": "^1.0.40",
  3173. "php": ">=5.5.0"
  3174. },
  3175. "require-dev": {
  3176. "henrikbjorn/phpspec-code-coverage": "~1.0.1",
  3177. "phpspec/phpspec": "^2.0.0"
  3178. },
  3179. "type": "library",
  3180. "extra": {
  3181. "branch-alias": {
  3182. "dev-master": "1.0-dev"
  3183. }
  3184. },
  3185. "autoload": {
  3186. "psr-4": {
  3187. "League\\Flysystem\\AwsS3v3\\": "src/"
  3188. }
  3189. },
  3190. "notification-url": "https://packagist.org/downloads/",
  3191. "license": [
  3192. "MIT"
  3193. ],
  3194. "authors": [
  3195. {
  3196. "name": "Frank de Jonge",
  3197. "email": "info@frenky.net"
  3198. }
  3199. ],
  3200. "description": "Flysystem adapter for the AWS S3 SDK v3.x",
  3201. "support": {
  3202. "issues": "https://github.com/thephpleague/flysystem-aws-s3-v3/issues",
  3203. "source": "https://github.com/thephpleague/flysystem-aws-s3-v3/tree/1.0.29"
  3204. },
  3205. "time": "2020-10-08T18:58:37+00:00"
  3206. },
  3207. {
  3208. "name": "league/flysystem-cached-adapter",
  3209. "version": "1.1.0",
  3210. "source": {
  3211. "type": "git",
  3212. "url": "https://github.com/thephpleague/flysystem-cached-adapter.git",
  3213. "reference": "d1925efb2207ac4be3ad0c40b8277175f99ffaff"
  3214. },
  3215. "dist": {
  3216. "type": "zip",
  3217. "url": "https://api.github.com/repos/thephpleague/flysystem-cached-adapter/zipball/d1925efb2207ac4be3ad0c40b8277175f99ffaff",
  3218. "reference": "d1925efb2207ac4be3ad0c40b8277175f99ffaff",
  3219. "shasum": ""
  3220. },
  3221. "require": {
  3222. "league/flysystem": "~1.0",
  3223. "psr/cache": "^1.0.0"
  3224. },
  3225. "require-dev": {
  3226. "mockery/mockery": "~0.9",
  3227. "phpspec/phpspec": "^3.4",
  3228. "phpunit/phpunit": "^5.7",
  3229. "predis/predis": "~1.0",
  3230. "tedivm/stash": "~0.12"
  3231. },
  3232. "suggest": {
  3233. "ext-phpredis": "Pure C implemented extension for PHP"
  3234. },
  3235. "type": "library",
  3236. "autoload": {
  3237. "psr-4": {
  3238. "League\\Flysystem\\Cached\\": "src/"
  3239. }
  3240. },
  3241. "notification-url": "https://packagist.org/downloads/",
  3242. "license": [
  3243. "MIT"
  3244. ],
  3245. "authors": [
  3246. {
  3247. "name": "frankdejonge",
  3248. "email": "info@frenky.net"
  3249. }
  3250. ],
  3251. "description": "An adapter decorator to enable meta-data caching.",
  3252. "support": {
  3253. "issues": "https://github.com/thephpleague/flysystem-cached-adapter/issues",
  3254. "source": "https://github.com/thephpleague/flysystem-cached-adapter/tree/master"
  3255. },
  3256. "time": "2020-07-25T15:56:04+00:00"
  3257. },
  3258. {
  3259. "name": "league/iso3166",
  3260. "version": "4.0.0",
  3261. "source": {
  3262. "type": "git",
  3263. "url": "https://github.com/thephpleague/iso3166.git",
  3264. "reference": "1a3ec7e6f1e4f16fce68dc239bafae217fbdcfef"
  3265. },
  3266. "dist": {
  3267. "type": "zip",
  3268. "url": "https://api.github.com/repos/thephpleague/iso3166/zipball/1a3ec7e6f1e4f16fce68dc239bafae217fbdcfef",
  3269. "reference": "1a3ec7e6f1e4f16fce68dc239bafae217fbdcfef",
  3270. "shasum": ""
  3271. },
  3272. "require": {
  3273. "php": "^7.3|^8.0"
  3274. },
  3275. "require-dev": {
  3276. "phpunit/phpunit": "^9.5"
  3277. },
  3278. "type": "library",
  3279. "extra": {
  3280. "branch-alias": {
  3281. "dev-master": "3.x-dev"
  3282. }
  3283. },
  3284. "autoload": {
  3285. "psr-4": {
  3286. "League\\ISO3166\\": "src"
  3287. }
  3288. },
  3289. "notification-url": "https://packagist.org/downloads/",
  3290. "license": [
  3291. "MIT"
  3292. ],
  3293. "authors": [
  3294. {
  3295. "name": "Rob Bast",
  3296. "email": "rob.bast@gmail.com"
  3297. }
  3298. ],
  3299. "description": "ISO 3166-1 PHP Library",
  3300. "homepage": "https://github.com/thephpleague/iso3166",
  3301. "keywords": [
  3302. "3166",
  3303. "3166-1",
  3304. "ISO 3166",
  3305. "countries",
  3306. "iso",
  3307. "library"
  3308. ],
  3309. "support": {
  3310. "issues": "https://github.com/thephpleague/iso3166/issues",
  3311. "source": "https://github.com/thephpleague/iso3166"
  3312. },
  3313. "time": "2021-10-22T12:47:55+00:00"
  3314. },
  3315. {
  3316. "name": "league/mime-type-detection",
  3317. "version": "1.9.0",
  3318. "source": {
  3319. "type": "git",
  3320. "url": "https://github.com/thephpleague/mime-type-detection.git",
  3321. "reference": "aa70e813a6ad3d1558fc927863d47309b4c23e69"
  3322. },
  3323. "dist": {
  3324. "type": "zip",
  3325. "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/aa70e813a6ad3d1558fc927863d47309b4c23e69",
  3326. "reference": "aa70e813a6ad3d1558fc927863d47309b4c23e69",
  3327. "shasum": ""
  3328. },
  3329. "require": {
  3330. "ext-fileinfo": "*",
  3331. "php": "^7.2 || ^8.0"
  3332. },
  3333. "require-dev": {
  3334. "friendsofphp/php-cs-fixer": "^3.2",
  3335. "phpstan/phpstan": "^0.12.68",
  3336. "phpunit/phpunit": "^8.5.8 || ^9.3"
  3337. },
  3338. "type": "library",
  3339. "autoload": {
  3340. "psr-4": {
  3341. "League\\MimeTypeDetection\\": "src"
  3342. }
  3343. },
  3344. "notification-url": "https://packagist.org/downloads/",
  3345. "license": [
  3346. "MIT"
  3347. ],
  3348. "authors": [
  3349. {
  3350. "name": "Frank de Jonge",
  3351. "email": "info@frankdejonge.nl"
  3352. }
  3353. ],
  3354. "description": "Mime-type detection for Flysystem",
  3355. "support": {
  3356. "issues": "https://github.com/thephpleague/mime-type-detection/issues",
  3357. "source": "https://github.com/thephpleague/mime-type-detection/tree/1.9.0"
  3358. },
  3359. "funding": [
  3360. {
  3361. "url": "https://github.com/frankdejonge",
  3362. "type": "github"
  3363. },
  3364. {
  3365. "url": "https://tidelift.com/funding/github/packagist/league/flysystem",
  3366. "type": "tidelift"
  3367. }
  3368. ],
  3369. "time": "2021-11-21T11:48:40+00:00"
  3370. },
  3371. {
  3372. "name": "league/oauth2-server",
  3373. "version": "8.3.3",
  3374. "source": {
  3375. "type": "git",
  3376. "url": "https://github.com/thephpleague/oauth2-server.git",
  3377. "reference": "f5698a3893eda9a17bcd48636990281e7ca77b2a"
  3378. },
  3379. "dist": {
  3380. "type": "zip",
  3381. "url": "https://api.github.com/repos/thephpleague/oauth2-server/zipball/f5698a3893eda9a17bcd48636990281e7ca77b2a",
  3382. "reference": "f5698a3893eda9a17bcd48636990281e7ca77b2a",
  3383. "shasum": ""
  3384. },
  3385. "require": {
  3386. "defuse/php-encryption": "^2.2.1",
  3387. "ext-json": "*",
  3388. "ext-openssl": "*",
  3389. "lcobucci/jwt": "^3.4.6 || ^4.0.4",
  3390. "league/event": "^2.2",
  3391. "php": "^7.2 || ^8.0",
  3392. "psr/http-message": "^1.0.1"
  3393. },
  3394. "replace": {
  3395. "league/oauth2server": "*",
  3396. "lncd/oauth2": "*"
  3397. },
  3398. "require-dev": {
  3399. "laminas/laminas-diactoros": "^2.4.1",
  3400. "phpstan/phpstan": "^0.12.57",
  3401. "phpstan/phpstan-phpunit": "^0.12.16",
  3402. "phpunit/phpunit": "^8.5.13",
  3403. "roave/security-advisories": "dev-master"
  3404. },
  3405. "type": "library",
  3406. "autoload": {
  3407. "psr-4": {
  3408. "League\\OAuth2\\Server\\": "src/"
  3409. }
  3410. },
  3411. "notification-url": "https://packagist.org/downloads/",
  3412. "license": [
  3413. "MIT"
  3414. ],
  3415. "authors": [
  3416. {
  3417. "name": "Alex Bilbie",
  3418. "email": "hello@alexbilbie.com",
  3419. "homepage": "http://www.alexbilbie.com",
  3420. "role": "Developer"
  3421. },
  3422. {
  3423. "name": "Andy Millington",
  3424. "email": "andrew@noexceptions.io",
  3425. "homepage": "https://www.noexceptions.io",
  3426. "role": "Developer"
  3427. }
  3428. ],
  3429. "description": "A lightweight and powerful OAuth 2.0 authorization and resource server library with support for all the core specification grants. This library will allow you to secure your API with OAuth and allow your applications users to approve apps that want to access their data from your API.",
  3430. "homepage": "https://oauth2.thephpleague.com/",
  3431. "keywords": [
  3432. "Authentication",
  3433. "api",
  3434. "auth",
  3435. "authorisation",
  3436. "authorization",
  3437. "oauth",
  3438. "oauth 2",
  3439. "oauth 2.0",
  3440. "oauth2",
  3441. "protect",
  3442. "resource",
  3443. "secure",
  3444. "server"
  3445. ],
  3446. "support": {
  3447. "issues": "https://github.com/thephpleague/oauth2-server/issues",
  3448. "source": "https://github.com/thephpleague/oauth2-server/tree/8.3.3"
  3449. },
  3450. "funding": [
  3451. {
  3452. "url": "https://github.com/sephster",
  3453. "type": "github"
  3454. }
  3455. ],
  3456. "time": "2021-10-11T20:41:49+00:00"
  3457. },
  3458. {
  3459. "name": "mobiledetect/mobiledetectlib",
  3460. "version": "2.8.37",
  3461. "source": {
  3462. "type": "git",
  3463. "url": "https://github.com/serbanghita/Mobile-Detect.git",
  3464. "reference": "9841e3c46f5bd0739b53aed8ac677fa712943df7"
  3465. },
  3466. "dist": {
  3467. "type": "zip",
  3468. "url": "https://api.github.com/repos/serbanghita/Mobile-Detect/zipball/9841e3c46f5bd0739b53aed8ac677fa712943df7",
  3469. "reference": "9841e3c46f5bd0739b53aed8ac677fa712943df7",
  3470. "shasum": ""
  3471. },
  3472. "require": {
  3473. "php": ">=5.0.0"
  3474. },
  3475. "require-dev": {
  3476. "phpunit/phpunit": "~4.8.35||~5.7"
  3477. },
  3478. "type": "library",
  3479. "autoload": {
  3480. "classmap": [
  3481. "Mobile_Detect.php"
  3482. ],
  3483. "psr-0": {
  3484. "Detection": "namespaced/"
  3485. }
  3486. },
  3487. "notification-url": "https://packagist.org/downloads/",
  3488. "license": [
  3489. "MIT"
  3490. ],
  3491. "authors": [
  3492. {
  3493. "name": "Serban Ghita",
  3494. "email": "serbanghita@gmail.com",
  3495. "homepage": "http://mobiledetect.net",
  3496. "role": "Developer"
  3497. }
  3498. ],
  3499. "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.",
  3500. "homepage": "https://github.com/serbanghita/Mobile-Detect",
  3501. "keywords": [
  3502. "detect mobile devices",
  3503. "mobile",
  3504. "mobile detect",
  3505. "mobile detector",
  3506. "php mobile detect"
  3507. ],
  3508. "support": {
  3509. "issues": "https://github.com/serbanghita/Mobile-Detect/issues",
  3510. "source": "https://github.com/serbanghita/Mobile-Detect/tree/2.8.37"
  3511. },
  3512. "funding": [
  3513. {
  3514. "url": "https://github.com/serbanghita",
  3515. "type": "github"
  3516. }
  3517. ],
  3518. "time": "2021-02-19T21:22:57+00:00"
  3519. },
  3520. {
  3521. "name": "monolog/monolog",
  3522. "version": "2.3.5",
  3523. "source": {
  3524. "type": "git",
  3525. "url": "https://github.com/Seldaek/monolog.git",
  3526. "reference": "fd4380d6fc37626e2f799f29d91195040137eba9"
  3527. },
  3528. "dist": {
  3529. "type": "zip",
  3530. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/fd4380d6fc37626e2f799f29d91195040137eba9",
  3531. "reference": "fd4380d6fc37626e2f799f29d91195040137eba9",
  3532. "shasum": ""
  3533. },
  3534. "require": {
  3535. "php": ">=7.2",
  3536. "psr/log": "^1.0.1 || ^2.0 || ^3.0"
  3537. },
  3538. "provide": {
  3539. "psr/log-implementation": "1.0.0 || 2.0.0 || 3.0.0"
  3540. },
  3541. "require-dev": {
  3542. "aws/aws-sdk-php": "^2.4.9 || ^3.0",
  3543. "doctrine/couchdb": "~1.0@dev",
  3544. "elasticsearch/elasticsearch": "^7",
  3545. "graylog2/gelf-php": "^1.4.2",
  3546. "mongodb/mongodb": "^1.8",
  3547. "php-amqplib/php-amqplib": "~2.4 || ^3",
  3548. "php-console/php-console": "^3.1.3",
  3549. "phpspec/prophecy": "^1.6.1",
  3550. "phpstan/phpstan": "^0.12.91",
  3551. "phpunit/phpunit": "^8.5",
  3552. "predis/predis": "^1.1",
  3553. "rollbar/rollbar": "^1.3",
  3554. "ruflin/elastica": ">=0.90@dev",
  3555. "swiftmailer/swiftmailer": "^5.3|^6.0"
  3556. },
  3557. "suggest": {
  3558. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  3559. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  3560. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  3561. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  3562. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  3563. "ext-mbstring": "Allow to work properly with unicode symbols",
  3564. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  3565. "ext-openssl": "Required to send log messages using SSL",
  3566. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  3567. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  3568. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  3569. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  3570. "php-console/php-console": "Allow sending log messages to Google Chrome",
  3571. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  3572. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  3573. },
  3574. "type": "library",
  3575. "extra": {
  3576. "branch-alias": {
  3577. "dev-main": "2.x-dev"
  3578. }
  3579. },
  3580. "autoload": {
  3581. "psr-4": {
  3582. "Monolog\\": "src/Monolog"
  3583. }
  3584. },
  3585. "notification-url": "https://packagist.org/downloads/",
  3586. "license": [
  3587. "MIT"
  3588. ],
  3589. "authors": [
  3590. {
  3591. "name": "Jordi Boggiano",
  3592. "email": "j.boggiano@seld.be",
  3593. "homepage": "https://seld.be"
  3594. }
  3595. ],
  3596. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  3597. "homepage": "https://github.com/Seldaek/monolog",
  3598. "keywords": [
  3599. "log",
  3600. "logging",
  3601. "psr-3"
  3602. ],
  3603. "support": {
  3604. "issues": "https://github.com/Seldaek/monolog/issues",
  3605. "source": "https://github.com/Seldaek/monolog/tree/2.3.5"
  3606. },
  3607. "funding": [
  3608. {
  3609. "url": "https://github.com/Seldaek",
  3610. "type": "github"
  3611. },
  3612. {
  3613. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  3614. "type": "tidelift"
  3615. }
  3616. ],
  3617. "time": "2021-10-01T21:08:31+00:00"
  3618. },
  3619. {
  3620. "name": "mtdowling/jmespath.php",
  3621. "version": "2.6.1",
  3622. "source": {
  3623. "type": "git",
  3624. "url": "https://github.com/jmespath/jmespath.php.git",
  3625. "reference": "9b87907a81b87bc76d19a7fb2d61e61486ee9edb"
  3626. },
  3627. "dist": {
  3628. "type": "zip",
  3629. "url": "https://api.github.com/repos/jmespath/jmespath.php/zipball/9b87907a81b87bc76d19a7fb2d61e61486ee9edb",
  3630. "reference": "9b87907a81b87bc76d19a7fb2d61e61486ee9edb",
  3631. "shasum": ""
  3632. },
  3633. "require": {
  3634. "php": "^5.4 || ^7.0 || ^8.0",
  3635. "symfony/polyfill-mbstring": "^1.17"
  3636. },
  3637. "require-dev": {
  3638. "composer/xdebug-handler": "^1.4 || ^2.0",
  3639. "phpunit/phpunit": "^4.8.36 || ^7.5.15"
  3640. },
  3641. "bin": [
  3642. "bin/jp.php"
  3643. ],
  3644. "type": "library",
  3645. "extra": {
  3646. "branch-alias": {
  3647. "dev-master": "2.6-dev"
  3648. }
  3649. },
  3650. "autoload": {
  3651. "psr-4": {
  3652. "JmesPath\\": "src/"
  3653. },
  3654. "files": [
  3655. "src/JmesPath.php"
  3656. ]
  3657. },
  3658. "notification-url": "https://packagist.org/downloads/",
  3659. "license": [
  3660. "MIT"
  3661. ],
  3662. "authors": [
  3663. {
  3664. "name": "Michael Dowling",
  3665. "email": "mtdowling@gmail.com",
  3666. "homepage": "https://github.com/mtdowling"
  3667. }
  3668. ],
  3669. "description": "Declaratively specify how to extract elements from a JSON document",
  3670. "keywords": [
  3671. "json",
  3672. "jsonpath"
  3673. ],
  3674. "support": {
  3675. "issues": "https://github.com/jmespath/jmespath.php/issues",
  3676. "source": "https://github.com/jmespath/jmespath.php/tree/2.6.1"
  3677. },
  3678. "time": "2021-06-14T00:11:39+00:00"
  3679. },
  3680. {
  3681. "name": "nesbot/carbon",
  3682. "version": "2.55.2",
  3683. "source": {
  3684. "type": "git",
  3685. "url": "https://github.com/briannesbitt/Carbon.git",
  3686. "reference": "8c2a18ce3e67c34efc1b29f64fe61304368259a2"
  3687. },
  3688. "dist": {
  3689. "type": "zip",
  3690. "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/8c2a18ce3e67c34efc1b29f64fe61304368259a2",
  3691. "reference": "8c2a18ce3e67c34efc1b29f64fe61304368259a2",
  3692. "shasum": ""
  3693. },
  3694. "require": {
  3695. "ext-json": "*",
  3696. "php": "^7.1.8 || ^8.0",
  3697. "symfony/polyfill-mbstring": "^1.0",
  3698. "symfony/polyfill-php80": "^1.16",
  3699. "symfony/translation": "^3.4 || ^4.0 || ^5.0 || ^6.0"
  3700. },
  3701. "require-dev": {
  3702. "doctrine/dbal": "^2.0 || ^3.0",
  3703. "doctrine/orm": "^2.7",
  3704. "friendsofphp/php-cs-fixer": "^3.0",
  3705. "kylekatarnls/multi-tester": "^2.0",
  3706. "phpmd/phpmd": "^2.9",
  3707. "phpstan/extension-installer": "^1.0",
  3708. "phpstan/phpstan": "^0.12.54",
  3709. "phpunit/phpunit": "^7.5.20 || ^8.5.14",
  3710. "squizlabs/php_codesniffer": "^3.4"
  3711. },
  3712. "bin": [
  3713. "bin/carbon"
  3714. ],
  3715. "type": "library",
  3716. "extra": {
  3717. "branch-alias": {
  3718. "dev-3.x": "3.x-dev",
  3719. "dev-master": "2.x-dev"
  3720. },
  3721. "laravel": {
  3722. "providers": [
  3723. "Carbon\\Laravel\\ServiceProvider"
  3724. ]
  3725. },
  3726. "phpstan": {
  3727. "includes": [
  3728. "extension.neon"
  3729. ]
  3730. }
  3731. },
  3732. "autoload": {
  3733. "psr-4": {
  3734. "Carbon\\": "src/Carbon/"
  3735. }
  3736. },
  3737. "notification-url": "https://packagist.org/downloads/",
  3738. "license": [
  3739. "MIT"
  3740. ],
  3741. "authors": [
  3742. {
  3743. "name": "Brian Nesbitt",
  3744. "email": "brian@nesbot.com",
  3745. "homepage": "https://markido.com"
  3746. },
  3747. {
  3748. "name": "kylekatarnls",
  3749. "homepage": "https://github.com/kylekatarnls"
  3750. }
  3751. ],
  3752. "description": "An API extension for DateTime that supports 281 different languages.",
  3753. "homepage": "https://carbon.nesbot.com",
  3754. "keywords": [
  3755. "date",
  3756. "datetime",
  3757. "time"
  3758. ],
  3759. "support": {
  3760. "docs": "https://carbon.nesbot.com/docs",
  3761. "issues": "https://github.com/briannesbitt/Carbon/issues",
  3762. "source": "https://github.com/briannesbitt/Carbon"
  3763. },
  3764. "funding": [
  3765. {
  3766. "url": "https://opencollective.com/Carbon",
  3767. "type": "open_collective"
  3768. },
  3769. {
  3770. "url": "https://tidelift.com/funding/github/packagist/nesbot/carbon",
  3771. "type": "tidelift"
  3772. }
  3773. ],
  3774. "time": "2021-12-03T14:59:52+00:00"
  3775. },
  3776. {
  3777. "name": "nette/schema",
  3778. "version": "v1.2.2",
  3779. "source": {
  3780. "type": "git",
  3781. "url": "https://github.com/nette/schema.git",
  3782. "reference": "9a39cef03a5b34c7de64f551538cbba05c2be5df"
  3783. },
  3784. "dist": {
  3785. "type": "zip",
  3786. "url": "https://api.github.com/repos/nette/schema/zipball/9a39cef03a5b34c7de64f551538cbba05c2be5df",
  3787. "reference": "9a39cef03a5b34c7de64f551538cbba05c2be5df",
  3788. "shasum": ""
  3789. },
  3790. "require": {
  3791. "nette/utils": "^2.5.7 || ^3.1.5 || ^4.0",
  3792. "php": ">=7.1 <8.2"
  3793. },
  3794. "require-dev": {
  3795. "nette/tester": "^2.3 || ^2.4",
  3796. "phpstan/phpstan-nette": "^0.12",
  3797. "tracy/tracy": "^2.7"
  3798. },
  3799. "type": "library",
  3800. "extra": {
  3801. "branch-alias": {
  3802. "dev-master": "1.2-dev"
  3803. }
  3804. },
  3805. "autoload": {
  3806. "classmap": [
  3807. "src/"
  3808. ]
  3809. },
  3810. "notification-url": "https://packagist.org/downloads/",
  3811. "license": [
  3812. "BSD-3-Clause",
  3813. "GPL-2.0-only",
  3814. "GPL-3.0-only"
  3815. ],
  3816. "authors": [
  3817. {
  3818. "name": "David Grudl",
  3819. "homepage": "https://davidgrudl.com"
  3820. },
  3821. {
  3822. "name": "Nette Community",
  3823. "homepage": "https://nette.org/contributors"
  3824. }
  3825. ],
  3826. "description": "📐 Nette Schema: validating data structures against a given Schema.",
  3827. "homepage": "https://nette.org",
  3828. "keywords": [
  3829. "config",
  3830. "nette"
  3831. ],
  3832. "support": {
  3833. "issues": "https://github.com/nette/schema/issues",
  3834. "source": "https://github.com/nette/schema/tree/v1.2.2"
  3835. },
  3836. "time": "2021-10-15T11:40:02+00:00"
  3837. },
  3838. {
  3839. "name": "nette/utils",
  3840. "version": "v3.2.6",
  3841. "source": {
  3842. "type": "git",
  3843. "url": "https://github.com/nette/utils.git",
  3844. "reference": "2f261e55bd6a12057442045bf2c249806abc1d02"
  3845. },
  3846. "dist": {
  3847. "type": "zip",
  3848. "url": "https://api.github.com/repos/nette/utils/zipball/2f261e55bd6a12057442045bf2c249806abc1d02",
  3849. "reference": "2f261e55bd6a12057442045bf2c249806abc1d02",
  3850. "shasum": ""
  3851. },
  3852. "require": {
  3853. "php": ">=7.2 <8.2"
  3854. },
  3855. "conflict": {
  3856. "nette/di": "<3.0.6"
  3857. },
  3858. "require-dev": {
  3859. "nette/tester": "~2.0",
  3860. "phpstan/phpstan": "^1.0",
  3861. "tracy/tracy": "^2.3"
  3862. },
  3863. "suggest": {
  3864. "ext-gd": "to use Image",
  3865. "ext-iconv": "to use Strings::webalize(), toAscii(), chr() and reverse()",
  3866. "ext-intl": "to use Strings::webalize(), toAscii(), normalize() and compare()",
  3867. "ext-json": "to use Nette\\Utils\\Json",
  3868. "ext-mbstring": "to use Strings::lower() etc...",
  3869. "ext-tokenizer": "to use Nette\\Utils\\Reflection::getUseStatements()",
  3870. "ext-xml": "to use Strings::length() etc. when mbstring is not available"
  3871. },
  3872. "type": "library",
  3873. "extra": {
  3874. "branch-alias": {
  3875. "dev-master": "3.2-dev"
  3876. }
  3877. },
  3878. "autoload": {
  3879. "classmap": [
  3880. "src/"
  3881. ]
  3882. },
  3883. "notification-url": "https://packagist.org/downloads/",
  3884. "license": [
  3885. "BSD-3-Clause",
  3886. "GPL-2.0-only",
  3887. "GPL-3.0-only"
  3888. ],
  3889. "authors": [
  3890. {
  3891. "name": "David Grudl",
  3892. "homepage": "https://davidgrudl.com"
  3893. },
  3894. {
  3895. "name": "Nette Community",
  3896. "homepage": "https://nette.org/contributors"
  3897. }
  3898. ],
  3899. "description": "🛠 Nette Utils: lightweight utilities for string & array manipulation, image handling, safe JSON encoding/decoding, validation, slug or strong password generating etc.",
  3900. "homepage": "https://nette.org",
  3901. "keywords": [
  3902. "array",
  3903. "core",
  3904. "datetime",
  3905. "images",
  3906. "json",
  3907. "nette",
  3908. "paginator",
  3909. "password",
  3910. "slugify",
  3911. "string",
  3912. "unicode",
  3913. "utf-8",
  3914. "utility",
  3915. "validation"
  3916. ],
  3917. "support": {
  3918. "issues": "https://github.com/nette/utils/issues",
  3919. "source": "https://github.com/nette/utils/tree/v3.2.6"
  3920. },
  3921. "time": "2021-11-24T15:47:23+00:00"
  3922. },
  3923. {
  3924. "name": "neutron/temporary-filesystem",
  3925. "version": "3.0.1",
  3926. "source": {
  3927. "type": "git",
  3928. "url": "https://github.com/romainneutron/Temporary-Filesystem.git",
  3929. "reference": "55f3d4896eff3bf070e491916e6c564db5e640b5"
  3930. },
  3931. "dist": {
  3932. "type": "zip",
  3933. "url": "https://api.github.com/repos/romainneutron/Temporary-Filesystem/zipball/55f3d4896eff3bf070e491916e6c564db5e640b5",
  3934. "reference": "55f3d4896eff3bf070e491916e6c564db5e640b5",
  3935. "shasum": ""
  3936. },
  3937. "require": {
  3938. "php": ">=5.6",
  3939. "symfony/filesystem": "^2.3 || ^3.0 || ^4.0 || ^5.0 || ^6.0"
  3940. },
  3941. "require-dev": {
  3942. "symfony/phpunit-bridge": "^5.0.4 || ^6.0"
  3943. },
  3944. "type": "library",
  3945. "autoload": {
  3946. "psr-0": {
  3947. "Neutron": "src"
  3948. }
  3949. },
  3950. "notification-url": "https://packagist.org/downloads/",
  3951. "license": [
  3952. "MIT"
  3953. ],
  3954. "authors": [
  3955. {
  3956. "name": "Romain Neutron",
  3957. "email": "imprec@gmail.com"
  3958. }
  3959. ],
  3960. "description": "Symfony filesystem extension to handle temporary files",
  3961. "support": {
  3962. "issues": "https://github.com/romainneutron/Temporary-Filesystem/issues",
  3963. "source": "https://github.com/romainneutron/Temporary-Filesystem/tree/3.0.1"
  3964. },
  3965. "time": "2021-12-14T07:30:33+00:00"
  3966. },
  3967. {
  3968. "name": "nikic/php-parser",
  3969. "version": "v4.13.2",
  3970. "source": {
  3971. "type": "git",
  3972. "url": "https://github.com/nikic/PHP-Parser.git",
  3973. "reference": "210577fe3cf7badcc5814d99455df46564f3c077"
  3974. },
  3975. "dist": {
  3976. "type": "zip",
  3977. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/210577fe3cf7badcc5814d99455df46564f3c077",
  3978. "reference": "210577fe3cf7badcc5814d99455df46564f3c077",
  3979. "shasum": ""
  3980. },
  3981. "require": {
  3982. "ext-tokenizer": "*",
  3983. "php": ">=7.0"
  3984. },
  3985. "require-dev": {
  3986. "ircmaxell/php-yacc": "^0.0.7",
  3987. "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0"
  3988. },
  3989. "bin": [
  3990. "bin/php-parse"
  3991. ],
  3992. "type": "library",
  3993. "extra": {
  3994. "branch-alias": {
  3995. "dev-master": "4.9-dev"
  3996. }
  3997. },
  3998. "autoload": {
  3999. "psr-4": {
  4000. "PhpParser\\": "lib/PhpParser"
  4001. }
  4002. },
  4003. "notification-url": "https://packagist.org/downloads/",
  4004. "license": [
  4005. "BSD-3-Clause"
  4006. ],
  4007. "authors": [
  4008. {
  4009. "name": "Nikita Popov"
  4010. }
  4011. ],
  4012. "description": "A PHP parser written in PHP",
  4013. "keywords": [
  4014. "parser",
  4015. "php"
  4016. ],
  4017. "support": {
  4018. "issues": "https://github.com/nikic/PHP-Parser/issues",
  4019. "source": "https://github.com/nikic/PHP-Parser/tree/v4.13.2"
  4020. },
  4021. "time": "2021-11-30T19:35:32+00:00"
  4022. },
  4023. {
  4024. "name": "nyholm/psr7",
  4025. "version": "1.4.1",
  4026. "source": {
  4027. "type": "git",
  4028. "url": "https://github.com/Nyholm/psr7.git",
  4029. "reference": "2212385b47153ea71b1c1b1374f8cb5e4f7892ec"
  4030. },
  4031. "dist": {
  4032. "type": "zip",
  4033. "url": "https://api.github.com/repos/Nyholm/psr7/zipball/2212385b47153ea71b1c1b1374f8cb5e4f7892ec",
  4034. "reference": "2212385b47153ea71b1c1b1374f8cb5e4f7892ec",
  4035. "shasum": ""
  4036. },
  4037. "require": {
  4038. "php": ">=7.1",
  4039. "php-http/message-factory": "^1.0",
  4040. "psr/http-factory": "^1.0",
  4041. "psr/http-message": "^1.0"
  4042. },
  4043. "provide": {
  4044. "psr/http-factory-implementation": "1.0",
  4045. "psr/http-message-implementation": "1.0"
  4046. },
  4047. "require-dev": {
  4048. "http-interop/http-factory-tests": "^0.9",
  4049. "php-http/psr7-integration-tests": "^1.0",
  4050. "phpunit/phpunit": "^7.5 || 8.5 || 9.4",
  4051. "symfony/error-handler": "^4.4"
  4052. },
  4053. "type": "library",
  4054. "extra": {
  4055. "branch-alias": {
  4056. "dev-master": "1.4-dev"
  4057. }
  4058. },
  4059. "autoload": {
  4060. "psr-4": {
  4061. "Nyholm\\Psr7\\": "src/"
  4062. }
  4063. },
  4064. "notification-url": "https://packagist.org/downloads/",
  4065. "license": [
  4066. "MIT"
  4067. ],
  4068. "authors": [
  4069. {
  4070. "name": "Tobias Nyholm",
  4071. "email": "tobias.nyholm@gmail.com"
  4072. },
  4073. {
  4074. "name": "Martijn van der Ven",
  4075. "email": "martijn@vanderven.se"
  4076. }
  4077. ],
  4078. "description": "A fast PHP7 implementation of PSR-7",
  4079. "homepage": "https://tnyholm.se",
  4080. "keywords": [
  4081. "psr-17",
  4082. "psr-7"
  4083. ],
  4084. "support": {
  4085. "issues": "https://github.com/Nyholm/psr7/issues",
  4086. "source": "https://github.com/Nyholm/psr7/tree/1.4.1"
  4087. },
  4088. "funding": [
  4089. {
  4090. "url": "https://github.com/Zegnat",
  4091. "type": "github"
  4092. },
  4093. {
  4094. "url": "https://github.com/nyholm",
  4095. "type": "github"
  4096. }
  4097. ],
  4098. "time": "2021-07-02T08:32:20+00:00"
  4099. },
  4100. {
  4101. "name": "opis/closure",
  4102. "version": "3.6.2",
  4103. "source": {
  4104. "type": "git",
  4105. "url": "https://github.com/opis/closure.git",
  4106. "reference": "06e2ebd25f2869e54a306dda991f7db58066f7f6"
  4107. },
  4108. "dist": {
  4109. "type": "zip",
  4110. "url": "https://api.github.com/repos/opis/closure/zipball/06e2ebd25f2869e54a306dda991f7db58066f7f6",
  4111. "reference": "06e2ebd25f2869e54a306dda991f7db58066f7f6",
  4112. "shasum": ""
  4113. },
  4114. "require": {
  4115. "php": "^5.4 || ^7.0 || ^8.0"
  4116. },
  4117. "require-dev": {
  4118. "jeremeamia/superclosure": "^2.0",
  4119. "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.0"
  4120. },
  4121. "type": "library",
  4122. "extra": {
  4123. "branch-alias": {
  4124. "dev-master": "3.6.x-dev"
  4125. }
  4126. },
  4127. "autoload": {
  4128. "psr-4": {
  4129. "Opis\\Closure\\": "src/"
  4130. },
  4131. "files": [
  4132. "functions.php"
  4133. ]
  4134. },
  4135. "notification-url": "https://packagist.org/downloads/",
  4136. "license": [
  4137. "MIT"
  4138. ],
  4139. "authors": [
  4140. {
  4141. "name": "Marius Sarca",
  4142. "email": "marius.sarca@gmail.com"
  4143. },
  4144. {
  4145. "name": "Sorin Sarca",
  4146. "email": "sarca_sorin@hotmail.com"
  4147. }
  4148. ],
  4149. "description": "A library that can be used to serialize closures (anonymous functions) and arbitrary objects.",
  4150. "homepage": "https://opis.io/closure",
  4151. "keywords": [
  4152. "anonymous functions",
  4153. "closure",
  4154. "function",
  4155. "serializable",
  4156. "serialization",
  4157. "serialize"
  4158. ],
  4159. "support": {
  4160. "issues": "https://github.com/opis/closure/issues",
  4161. "source": "https://github.com/opis/closure/tree/3.6.2"
  4162. },
  4163. "time": "2021-04-09T13:42:10+00:00"
  4164. },
  4165. {
  4166. "name": "paragonie/constant_time_encoding",
  4167. "version": "v2.4.0",
  4168. "source": {
  4169. "type": "git",
  4170. "url": "https://github.com/paragonie/constant_time_encoding.git",
  4171. "reference": "f34c2b11eb9d2c9318e13540a1dbc2a3afbd939c"
  4172. },
  4173. "dist": {
  4174. "type": "zip",
  4175. "url": "https://api.github.com/repos/paragonie/constant_time_encoding/zipball/f34c2b11eb9d2c9318e13540a1dbc2a3afbd939c",
  4176. "reference": "f34c2b11eb9d2c9318e13540a1dbc2a3afbd939c",
  4177. "shasum": ""
  4178. },
  4179. "require": {
  4180. "php": "^7|^8"
  4181. },
  4182. "require-dev": {
  4183. "phpunit/phpunit": "^6|^7|^8|^9",
  4184. "vimeo/psalm": "^1|^2|^3|^4"
  4185. },
  4186. "type": "library",
  4187. "autoload": {
  4188. "psr-4": {
  4189. "ParagonIE\\ConstantTime\\": "src/"
  4190. }
  4191. },
  4192. "notification-url": "https://packagist.org/downloads/",
  4193. "license": [
  4194. "MIT"
  4195. ],
  4196. "authors": [
  4197. {
  4198. "name": "Paragon Initiative Enterprises",
  4199. "email": "security@paragonie.com",
  4200. "homepage": "https://paragonie.com",
  4201. "role": "Maintainer"
  4202. },
  4203. {
  4204. "name": "Steve 'Sc00bz' Thomas",
  4205. "email": "steve@tobtu.com",
  4206. "homepage": "https://www.tobtu.com",
  4207. "role": "Original Developer"
  4208. }
  4209. ],
  4210. "description": "Constant-time Implementations of RFC 4648 Encoding (Base-64, Base-32, Base-16)",
  4211. "keywords": [
  4212. "base16",
  4213. "base32",
  4214. "base32_decode",
  4215. "base32_encode",
  4216. "base64",
  4217. "base64_decode",
  4218. "base64_encode",
  4219. "bin2hex",
  4220. "encoding",
  4221. "hex",
  4222. "hex2bin",
  4223. "rfc4648"
  4224. ],
  4225. "support": {
  4226. "email": "info@paragonie.com",
  4227. "issues": "https://github.com/paragonie/constant_time_encoding/issues",
  4228. "source": "https://github.com/paragonie/constant_time_encoding"
  4229. },
  4230. "time": "2020-12-06T15:14:20+00:00"
  4231. },
  4232. {
  4233. "name": "paragonie/random_compat",
  4234. "version": "v9.99.100",
  4235. "source": {
  4236. "type": "git",
  4237. "url": "https://github.com/paragonie/random_compat.git",
  4238. "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a"
  4239. },
  4240. "dist": {
  4241. "type": "zip",
  4242. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/996434e5492cb4c3edcb9168db6fbb1359ef965a",
  4243. "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a",
  4244. "shasum": ""
  4245. },
  4246. "require": {
  4247. "php": ">= 7"
  4248. },
  4249. "require-dev": {
  4250. "phpunit/phpunit": "4.*|5.*",
  4251. "vimeo/psalm": "^1"
  4252. },
  4253. "suggest": {
  4254. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  4255. },
  4256. "type": "library",
  4257. "notification-url": "https://packagist.org/downloads/",
  4258. "license": [
  4259. "MIT"
  4260. ],
  4261. "authors": [
  4262. {
  4263. "name": "Paragon Initiative Enterprises",
  4264. "email": "security@paragonie.com",
  4265. "homepage": "https://paragonie.com"
  4266. }
  4267. ],
  4268. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  4269. "keywords": [
  4270. "csprng",
  4271. "polyfill",
  4272. "pseudorandom",
  4273. "random"
  4274. ],
  4275. "support": {
  4276. "email": "info@paragonie.com",
  4277. "issues": "https://github.com/paragonie/random_compat/issues",
  4278. "source": "https://github.com/paragonie/random_compat"
  4279. },
  4280. "time": "2020-10-15T08:29:30+00:00"
  4281. },
  4282. {
  4283. "name": "pbmedia/laravel-ffmpeg",
  4284. "version": "7.6.0",
  4285. "source": {
  4286. "type": "git",
  4287. "url": "https://github.com/protonemedia/laravel-ffmpeg.git",
  4288. "reference": "206fa796845e4fcd6b7a80c404b4c7ab8c1f508c"
  4289. },
  4290. "dist": {
  4291. "type": "zip",
  4292. "url": "https://api.github.com/repos/protonemedia/laravel-ffmpeg/zipball/206fa796845e4fcd6b7a80c404b4c7ab8c1f508c",
  4293. "reference": "206fa796845e4fcd6b7a80c404b4c7ab8c1f508c",
  4294. "shasum": ""
  4295. },
  4296. "require": {
  4297. "evenement/evenement": "^3.0",
  4298. "illuminate/bus": "^8.67",
  4299. "illuminate/config": "^8.67",
  4300. "illuminate/filesystem": "^8.67",
  4301. "illuminate/log": "^8.67",
  4302. "illuminate/support": "^8.67",
  4303. "league/flysystem": "^1.1.4",
  4304. "php": "^7.4|^8.0|^8.1",
  4305. "php-ffmpeg/php-ffmpeg": "^0.19.0"
  4306. },
  4307. "require-dev": {
  4308. "league/flysystem-memory": "^1.0",
  4309. "mockery/mockery": "^1.3.3",
  4310. "orchestra/testbench": "^6.0",
  4311. "phpunit/phpunit": "9.4.*",
  4312. "spatie/image": "^1.7",
  4313. "twistor/flysystem-http": "^0.2.0"
  4314. },
  4315. "type": "library",
  4316. "extra": {
  4317. "laravel": {
  4318. "providers": [
  4319. "ProtoneMedia\\LaravelFFMpeg\\Support\\ServiceProvider"
  4320. ],
  4321. "aliases": {
  4322. "FFMpeg": "ProtoneMedia\\LaravelFFMpeg\\Support\\FFMpeg"
  4323. }
  4324. }
  4325. },
  4326. "autoload": {
  4327. "psr-4": {
  4328. "ProtoneMedia\\LaravelFFMpeg\\": "src"
  4329. }
  4330. },
  4331. "notification-url": "https://packagist.org/downloads/",
  4332. "license": [
  4333. "MIT"
  4334. ],
  4335. "authors": [
  4336. {
  4337. "name": "Pascal Baljet",
  4338. "email": "pascal@protone.media",
  4339. "homepage": "https://protone.media",
  4340. "role": "Developer"
  4341. }
  4342. ],
  4343. "description": "FFMpeg for Laravel",
  4344. "homepage": "https://github.com/pascalbaljetmedia/laravel-ffmpeg",
  4345. "keywords": [
  4346. "ffmpeg",
  4347. "laravel",
  4348. "laravel-ffmpeg",
  4349. "pascal baljet media",
  4350. "pascalbaljetmedia",
  4351. "pbmedia",
  4352. "protone media",
  4353. "protonemedia"
  4354. ],
  4355. "support": {
  4356. "issues": "https://github.com/protonemedia/laravel-ffmpeg/issues",
  4357. "source": "https://github.com/protonemedia/laravel-ffmpeg/tree/7.6.0"
  4358. },
  4359. "funding": [
  4360. {
  4361. "url": "https://github.com/pascalbaljet",
  4362. "type": "github"
  4363. }
  4364. ],
  4365. "time": "2021-12-20T12:55:32+00:00"
  4366. },
  4367. {
  4368. "name": "php-ffmpeg/php-ffmpeg",
  4369. "version": "v0.19.0",
  4370. "source": {
  4371. "type": "git",
  4372. "url": "https://github.com/PHP-FFMpeg/PHP-FFMpeg.git",
  4373. "reference": "22b71931fd1a97207788636b283eee1c0067eff7"
  4374. },
  4375. "dist": {
  4376. "type": "zip",
  4377. "url": "https://api.github.com/repos/PHP-FFMpeg/PHP-FFMpeg/zipball/22b71931fd1a97207788636b283eee1c0067eff7",
  4378. "reference": "22b71931fd1a97207788636b283eee1c0067eff7",
  4379. "shasum": ""
  4380. },
  4381. "require": {
  4382. "alchemy/binary-driver": "^1.5 || ~2.0.0 || ^5.0",
  4383. "evenement/evenement": "^3.0 || ^2.0 || ^1.0",
  4384. "neutron/temporary-filesystem": "^2.1.1 || ^3.0",
  4385. "php": ">=5.5.9",
  4386. "symfony/cache": "^3.1 || ^4.0 || ^5.0 || ^6.0"
  4387. },
  4388. "require-dev": {
  4389. "symfony/phpunit-bridge": "^5.0.4",
  4390. "symfony/process": "2.8 || 3.3"
  4391. },
  4392. "suggest": {
  4393. "php-ffmpeg/extras": "A compilation of common audio & video drivers for PHP-FFMpeg"
  4394. },
  4395. "type": "library",
  4396. "extra": {
  4397. "branch-alias": {
  4398. "dev-master": "0.x-dev"
  4399. }
  4400. },
  4401. "autoload": {
  4402. "psr-0": {
  4403. "FFMpeg": "src"
  4404. }
  4405. },
  4406. "notification-url": "https://packagist.org/downloads/",
  4407. "license": [
  4408. "MIT"
  4409. ],
  4410. "authors": [
  4411. {
  4412. "name": "Romain Neutron",
  4413. "email": "imprec@gmail.com",
  4414. "homepage": "http://www.lickmychip.com/"
  4415. },
  4416. {
  4417. "name": "Phraseanet Team",
  4418. "email": "info@alchemy.fr",
  4419. "homepage": "http://www.phraseanet.com/"
  4420. },
  4421. {
  4422. "name": "Patrik Karisch",
  4423. "email": "patrik@karisch.guru",
  4424. "homepage": "http://www.karisch.guru"
  4425. },
  4426. {
  4427. "name": "Romain Biard",
  4428. "email": "romain.biard@gmail.com",
  4429. "homepage": "https://www.strime.io/"
  4430. },
  4431. {
  4432. "name": "Jens Hausdorf",
  4433. "email": "hello@jens-hausdorf.de",
  4434. "homepage": "https://jens-hausdorf.de"
  4435. }
  4436. ],
  4437. "description": "FFMpeg PHP, an Object Oriented library to communicate with AVconv / ffmpeg",
  4438. "keywords": [
  4439. "audio",
  4440. "audio processing",
  4441. "avconv",
  4442. "avprobe",
  4443. "ffmpeg",
  4444. "ffprobe",
  4445. "video",
  4446. "video processing"
  4447. ],
  4448. "support": {
  4449. "issues": "https://github.com/PHP-FFMpeg/PHP-FFMpeg/issues",
  4450. "source": "https://github.com/PHP-FFMpeg/PHP-FFMpeg/tree/v0.19.0"
  4451. },
  4452. "time": "2021-12-20T11:51:26+00:00"
  4453. },
  4454. {
  4455. "name": "php-http/message-factory",
  4456. "version": "v1.0.2",
  4457. "source": {
  4458. "type": "git",
  4459. "url": "https://github.com/php-http/message-factory.git",
  4460. "reference": "a478cb11f66a6ac48d8954216cfed9aa06a501a1"
  4461. },
  4462. "dist": {
  4463. "type": "zip",
  4464. "url": "https://api.github.com/repos/php-http/message-factory/zipball/a478cb11f66a6ac48d8954216cfed9aa06a501a1",
  4465. "reference": "a478cb11f66a6ac48d8954216cfed9aa06a501a1",
  4466. "shasum": ""
  4467. },
  4468. "require": {
  4469. "php": ">=5.4",
  4470. "psr/http-message": "^1.0"
  4471. },
  4472. "type": "library",
  4473. "extra": {
  4474. "branch-alias": {
  4475. "dev-master": "1.0-dev"
  4476. }
  4477. },
  4478. "autoload": {
  4479. "psr-4": {
  4480. "Http\\Message\\": "src/"
  4481. }
  4482. },
  4483. "notification-url": "https://packagist.org/downloads/",
  4484. "license": [
  4485. "MIT"
  4486. ],
  4487. "authors": [
  4488. {
  4489. "name": "Márk Sági-Kazár",
  4490. "email": "mark.sagikazar@gmail.com"
  4491. }
  4492. ],
  4493. "description": "Factory interfaces for PSR-7 HTTP Message",
  4494. "homepage": "http://php-http.org",
  4495. "keywords": [
  4496. "factory",
  4497. "http",
  4498. "message",
  4499. "stream",
  4500. "uri"
  4501. ],
  4502. "support": {
  4503. "issues": "https://github.com/php-http/message-factory/issues",
  4504. "source": "https://github.com/php-http/message-factory/tree/master"
  4505. },
  4506. "time": "2015-12-19T14:08:53+00:00"
  4507. },
  4508. {
  4509. "name": "phpoption/phpoption",
  4510. "version": "1.8.1",
  4511. "source": {
  4512. "type": "git",
  4513. "url": "https://github.com/schmittjoh/php-option.git",
  4514. "reference": "eab7a0df01fe2344d172bff4cd6dbd3f8b84ad15"
  4515. },
  4516. "dist": {
  4517. "type": "zip",
  4518. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/eab7a0df01fe2344d172bff4cd6dbd3f8b84ad15",
  4519. "reference": "eab7a0df01fe2344d172bff4cd6dbd3f8b84ad15",
  4520. "shasum": ""
  4521. },
  4522. "require": {
  4523. "php": "^7.0 || ^8.0"
  4524. },
  4525. "require-dev": {
  4526. "bamarni/composer-bin-plugin": "^1.4.1",
  4527. "phpunit/phpunit": "^6.5.14 || ^7.5.20 || ^8.5.19 || ^9.5.8"
  4528. },
  4529. "type": "library",
  4530. "extra": {
  4531. "branch-alias": {
  4532. "dev-master": "1.8-dev"
  4533. }
  4534. },
  4535. "autoload": {
  4536. "psr-4": {
  4537. "PhpOption\\": "src/PhpOption/"
  4538. }
  4539. },
  4540. "notification-url": "https://packagist.org/downloads/",
  4541. "license": [
  4542. "Apache-2.0"
  4543. ],
  4544. "authors": [
  4545. {
  4546. "name": "Johannes M. Schmitt",
  4547. "email": "schmittjoh@gmail.com",
  4548. "homepage": "https://github.com/schmittjoh"
  4549. },
  4550. {
  4551. "name": "Graham Campbell",
  4552. "email": "hello@gjcampbell.co.uk",
  4553. "homepage": "https://github.com/GrahamCampbell"
  4554. }
  4555. ],
  4556. "description": "Option Type for PHP",
  4557. "keywords": [
  4558. "language",
  4559. "option",
  4560. "php",
  4561. "type"
  4562. ],
  4563. "support": {
  4564. "issues": "https://github.com/schmittjoh/php-option/issues",
  4565. "source": "https://github.com/schmittjoh/php-option/tree/1.8.1"
  4566. },
  4567. "funding": [
  4568. {
  4569. "url": "https://github.com/GrahamCampbell",
  4570. "type": "github"
  4571. },
  4572. {
  4573. "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption",
  4574. "type": "tidelift"
  4575. }
  4576. ],
  4577. "time": "2021-12-04T23:24:31+00:00"
  4578. },
  4579. {
  4580. "name": "phpseclib/phpseclib",
  4581. "version": "2.0.35",
  4582. "source": {
  4583. "type": "git",
  4584. "url": "https://github.com/phpseclib/phpseclib.git",
  4585. "reference": "4e16cf3f5f927a7d3f5317820af795c0366c0420"
  4586. },
  4587. "dist": {
  4588. "type": "zip",
  4589. "url": "https://api.github.com/repos/phpseclib/phpseclib/zipball/4e16cf3f5f927a7d3f5317820af795c0366c0420",
  4590. "reference": "4e16cf3f5f927a7d3f5317820af795c0366c0420",
  4591. "shasum": ""
  4592. },
  4593. "require": {
  4594. "php": ">=5.3.3"
  4595. },
  4596. "require-dev": {
  4597. "phing/phing": "~2.7",
  4598. "phpunit/phpunit": "^4.8.35|^5.7|^6.0|^9.4",
  4599. "squizlabs/php_codesniffer": "~2.0"
  4600. },
  4601. "suggest": {
  4602. "ext-gmp": "Install the GMP (GNU Multiple Precision) extension in order to speed up arbitrary precision integer arithmetic operations.",
  4603. "ext-libsodium": "SSH2/SFTP can make use of some algorithms provided by the libsodium-php extension.",
  4604. "ext-mcrypt": "Install the Mcrypt extension in order to speed up a few other cryptographic operations.",
  4605. "ext-openssl": "Install the OpenSSL extension in order to speed up a wide variety of cryptographic operations."
  4606. },
  4607. "type": "library",
  4608. "autoload": {
  4609. "files": [
  4610. "phpseclib/bootstrap.php"
  4611. ],
  4612. "psr-4": {
  4613. "phpseclib\\": "phpseclib/"
  4614. }
  4615. },
  4616. "notification-url": "https://packagist.org/downloads/",
  4617. "license": [
  4618. "MIT"
  4619. ],
  4620. "authors": [
  4621. {
  4622. "name": "Jim Wigginton",
  4623. "email": "terrafrost@php.net",
  4624. "role": "Lead Developer"
  4625. },
  4626. {
  4627. "name": "Patrick Monnerat",
  4628. "email": "pm@datasphere.ch",
  4629. "role": "Developer"
  4630. },
  4631. {
  4632. "name": "Andreas Fischer",
  4633. "email": "bantu@phpbb.com",
  4634. "role": "Developer"
  4635. },
  4636. {
  4637. "name": "Hans-Jürgen Petrich",
  4638. "email": "petrich@tronic-media.com",
  4639. "role": "Developer"
  4640. },
  4641. {
  4642. "name": "Graham Campbell",
  4643. "email": "graham@alt-three.com",
  4644. "role": "Developer"
  4645. }
  4646. ],
  4647. "description": "PHP Secure Communications Library - Pure-PHP implementations of RSA, AES, SSH2, SFTP, X.509 etc.",
  4648. "homepage": "http://phpseclib.sourceforge.net",
  4649. "keywords": [
  4650. "BigInteger",
  4651. "aes",
  4652. "asn.1",
  4653. "asn1",
  4654. "blowfish",
  4655. "crypto",
  4656. "cryptography",
  4657. "encryption",
  4658. "rsa",
  4659. "security",
  4660. "sftp",
  4661. "signature",
  4662. "signing",
  4663. "ssh",
  4664. "twofish",
  4665. "x.509",
  4666. "x509"
  4667. ],
  4668. "support": {
  4669. "issues": "https://github.com/phpseclib/phpseclib/issues",
  4670. "source": "https://github.com/phpseclib/phpseclib/tree/2.0.35"
  4671. },
  4672. "funding": [
  4673. {
  4674. "url": "https://github.com/terrafrost",
  4675. "type": "github"
  4676. },
  4677. {
  4678. "url": "https://www.patreon.com/phpseclib",
  4679. "type": "patreon"
  4680. },
  4681. {
  4682. "url": "https://tidelift.com/funding/github/packagist/phpseclib/phpseclib",
  4683. "type": "tidelift"
  4684. }
  4685. ],
  4686. "time": "2021-11-28T23:30:39+00:00"
  4687. },
  4688. {
  4689. "name": "pixelfed/fractal",
  4690. "version": "0.18.0",
  4691. "source": {
  4692. "type": "git",
  4693. "url": "https://github.com/pixelfed/fractal.git",
  4694. "reference": "faff10c9f3e3300b1571ef41926f933a9cce4782"
  4695. },
  4696. "dist": {
  4697. "type": "zip",
  4698. "url": "https://api.github.com/repos/pixelfed/fractal/zipball/faff10c9f3e3300b1571ef41926f933a9cce4782",
  4699. "reference": "faff10c9f3e3300b1571ef41926f933a9cce4782",
  4700. "shasum": ""
  4701. },
  4702. "require": {
  4703. "php": ">=5.4"
  4704. },
  4705. "require-dev": {
  4706. "doctrine/orm": "^2.5",
  4707. "illuminate/contracts": "~5.0",
  4708. "mockery/mockery": "~0.9",
  4709. "pagerfanta/pagerfanta": "~1.0.0",
  4710. "phpunit/phpunit": "^4.8.35",
  4711. "squizlabs/php_codesniffer": "~1.5",
  4712. "zendframework/zend-paginator": "~2.3"
  4713. },
  4714. "suggest": {
  4715. "illuminate/pagination": "The Illuminate Pagination component.",
  4716. "pagerfanta/pagerfanta": "Pagerfanta Paginator",
  4717. "zendframework/zend-paginator": "Zend Framework Paginator"
  4718. },
  4719. "type": "library",
  4720. "extra": {
  4721. "branch-alias": {
  4722. "dev-master": "0.13-dev"
  4723. }
  4724. },
  4725. "autoload": {
  4726. "psr-4": {
  4727. "League\\Fractal\\": "src"
  4728. }
  4729. },
  4730. "notification-url": "https://packagist.org/downloads/",
  4731. "license": [
  4732. "MIT"
  4733. ],
  4734. "authors": [
  4735. {
  4736. "name": "Phil Sturgeon",
  4737. "email": "me@philsturgeon.uk",
  4738. "homepage": "http://philsturgeon.uk/",
  4739. "role": "Developer"
  4740. }
  4741. ],
  4742. "description": "Handle the output of complex data structures ready for API output.",
  4743. "homepage": "http://fractal.thephpleague.com/",
  4744. "keywords": [
  4745. "api",
  4746. "json",
  4747. "league",
  4748. "rest"
  4749. ],
  4750. "support": {
  4751. "source": "https://github.com/pixelfed/fractal/tree/0.18.0"
  4752. },
  4753. "time": "2018-07-01T02:30:24+00:00"
  4754. },
  4755. {
  4756. "name": "pixelfed/laravel-snowflake",
  4757. "version": "v2.0.0",
  4758. "source": {
  4759. "type": "git",
  4760. "url": "https://github.com/pixelfed/laravel-snowflake.git",
  4761. "reference": "69255870dcbf949feac889dfc09180a6fef77f6d"
  4762. },
  4763. "dist": {
  4764. "type": "zip",
  4765. "url": "https://api.github.com/repos/pixelfed/laravel-snowflake/zipball/69255870dcbf949feac889dfc09180a6fef77f6d",
  4766. "reference": "69255870dcbf949feac889dfc09180a6fef77f6d",
  4767. "shasum": ""
  4768. },
  4769. "require": {
  4770. "php": ">=7.0.0"
  4771. },
  4772. "require-dev": {
  4773. "orchestra/testbench": "~3.0",
  4774. "phpunit/phpunit": "~6.0"
  4775. },
  4776. "type": "library",
  4777. "extra": {
  4778. "laravel": {
  4779. "providers": [
  4780. "Pixelfed\\Snowflake\\SnowflakeServiceProvider"
  4781. ]
  4782. }
  4783. },
  4784. "autoload": {
  4785. "psr-4": {
  4786. "Pixelfed\\Snowflake\\": "src/"
  4787. }
  4788. },
  4789. "notification-url": "https://packagist.org/downloads/",
  4790. "license": [
  4791. "MIT"
  4792. ],
  4793. "authors": [
  4794. {
  4795. "name": "Koki Asai",
  4796. "email": "koki@asai.email"
  4797. },
  4798. {
  4799. "name": "Daniel Supernault",
  4800. "email": "hello@pixelfed.org"
  4801. }
  4802. ],
  4803. "description": "Snowflake for Laravel.",
  4804. "homepage": "https://github.com/pixelfed/laravel-snowflake",
  4805. "keywords": [
  4806. "laravel",
  4807. "snowflake"
  4808. ],
  4809. "support": {
  4810. "source": "https://github.com/pixelfed/laravel-snowflake/tree/v2.0.0"
  4811. },
  4812. "time": "2019-03-12T05:13:49+00:00"
  4813. },
  4814. {
  4815. "name": "pixelfed/zttp",
  4816. "version": "v0.4.1",
  4817. "source": {
  4818. "type": "git",
  4819. "url": "https://github.com/pixelfed/zttp.git",
  4820. "reference": "9a95a42716eb3e71a0a88411805737965bb77c05"
  4821. },
  4822. "dist": {
  4823. "type": "zip",
  4824. "url": "https://api.github.com/repos/pixelfed/zttp/zipball/9a95a42716eb3e71a0a88411805737965bb77c05",
  4825. "reference": "9a95a42716eb3e71a0a88411805737965bb77c05",
  4826. "shasum": ""
  4827. },
  4828. "require": {
  4829. "guzzlehttp/guzzle": "^6.0",
  4830. "php": ">=7.0",
  4831. "tightenco/collect": "^5.4"
  4832. },
  4833. "require-dev": {
  4834. "laravel/lumen-framework": "5.5.*",
  4835. "phpunit/phpunit": "^6.0"
  4836. },
  4837. "type": "library",
  4838. "autoload": {
  4839. "files": [
  4840. "src/Zttp.php"
  4841. ]
  4842. },
  4843. "notification-url": "https://packagist.org/downloads/",
  4844. "license": [
  4845. "MIT"
  4846. ],
  4847. "authors": [
  4848. {
  4849. "name": "Adam Wathan",
  4850. "email": "adam.wathan@gmail.com"
  4851. }
  4852. ],
  4853. "description": "A developer-experience focused HTTP client, optimized for most common use cases.",
  4854. "keywords": [
  4855. "Guzzle",
  4856. "http"
  4857. ],
  4858. "support": {
  4859. "source": "https://github.com/pixelfed/zttp/tree/v0.4.1"
  4860. },
  4861. "time": "2018-07-30T05:04:42+00:00"
  4862. },
  4863. {
  4864. "name": "pragmarx/google2fa",
  4865. "version": "8.0.0",
  4866. "source": {
  4867. "type": "git",
  4868. "url": "https://github.com/antonioribeiro/google2fa.git",
  4869. "reference": "26c4c5cf30a2844ba121760fd7301f8ad240100b"
  4870. },
  4871. "dist": {
  4872. "type": "zip",
  4873. "url": "https://api.github.com/repos/antonioribeiro/google2fa/zipball/26c4c5cf30a2844ba121760fd7301f8ad240100b",
  4874. "reference": "26c4c5cf30a2844ba121760fd7301f8ad240100b",
  4875. "shasum": ""
  4876. },
  4877. "require": {
  4878. "paragonie/constant_time_encoding": "^1.0|^2.0",
  4879. "php": "^7.1|^8.0"
  4880. },
  4881. "require-dev": {
  4882. "phpstan/phpstan": "^0.12.18",
  4883. "phpunit/phpunit": "^7.5.15|^8.5|^9.0"
  4884. },
  4885. "type": "library",
  4886. "autoload": {
  4887. "psr-4": {
  4888. "PragmaRX\\Google2FA\\": "src/"
  4889. }
  4890. },
  4891. "notification-url": "https://packagist.org/downloads/",
  4892. "license": [
  4893. "MIT"
  4894. ],
  4895. "authors": [
  4896. {
  4897. "name": "Antonio Carlos Ribeiro",
  4898. "email": "acr@antoniocarlosribeiro.com",
  4899. "role": "Creator & Designer"
  4900. }
  4901. ],
  4902. "description": "A One Time Password Authentication package, compatible with Google Authenticator.",
  4903. "keywords": [
  4904. "2fa",
  4905. "Authentication",
  4906. "Two Factor Authentication",
  4907. "google2fa"
  4908. ],
  4909. "support": {
  4910. "issues": "https://github.com/antonioribeiro/google2fa/issues",
  4911. "source": "https://github.com/antonioribeiro/google2fa/tree/8.0.0"
  4912. },
  4913. "time": "2020-04-05T10:47:18+00:00"
  4914. },
  4915. {
  4916. "name": "predis/predis",
  4917. "version": "v1.1.9",
  4918. "source": {
  4919. "type": "git",
  4920. "url": "https://github.com/predis/predis.git",
  4921. "reference": "c50c3393bb9f47fa012d0cdfb727a266b0818259"
  4922. },
  4923. "dist": {
  4924. "type": "zip",
  4925. "url": "https://api.github.com/repos/predis/predis/zipball/c50c3393bb9f47fa012d0cdfb727a266b0818259",
  4926. "reference": "c50c3393bb9f47fa012d0cdfb727a266b0818259",
  4927. "shasum": ""
  4928. },
  4929. "require": {
  4930. "php": ">=5.3.9"
  4931. },
  4932. "require-dev": {
  4933. "phpunit/phpunit": "~4.8"
  4934. },
  4935. "suggest": {
  4936. "ext-curl": "Allows access to Webdis when paired with phpiredis",
  4937. "ext-phpiredis": "Allows faster serialization and deserialization of the Redis protocol"
  4938. },
  4939. "type": "library",
  4940. "autoload": {
  4941. "psr-4": {
  4942. "Predis\\": "src/"
  4943. }
  4944. },
  4945. "notification-url": "https://packagist.org/downloads/",
  4946. "license": [
  4947. "MIT"
  4948. ],
  4949. "authors": [
  4950. {
  4951. "name": "Daniele Alessandri",
  4952. "email": "suppakilla@gmail.com",
  4953. "homepage": "http://clorophilla.net",
  4954. "role": "Creator & Maintainer"
  4955. },
  4956. {
  4957. "name": "Till Krüss",
  4958. "homepage": "https://till.im",
  4959. "role": "Maintainer"
  4960. }
  4961. ],
  4962. "description": "Flexible and feature-complete Redis client for PHP and HHVM",
  4963. "homepage": "http://github.com/predis/predis",
  4964. "keywords": [
  4965. "nosql",
  4966. "predis",
  4967. "redis"
  4968. ],
  4969. "support": {
  4970. "issues": "https://github.com/predis/predis/issues",
  4971. "source": "https://github.com/predis/predis/tree/v1.1.9"
  4972. },
  4973. "funding": [
  4974. {
  4975. "url": "https://github.com/sponsors/tillkruss",
  4976. "type": "github"
  4977. }
  4978. ],
  4979. "time": "2021-10-05T19:02:38+00:00"
  4980. },
  4981. {
  4982. "name": "psr/cache",
  4983. "version": "1.0.1",
  4984. "source": {
  4985. "type": "git",
  4986. "url": "https://github.com/php-fig/cache.git",
  4987. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8"
  4988. },
  4989. "dist": {
  4990. "type": "zip",
  4991. "url": "https://api.github.com/repos/php-fig/cache/zipball/d11b50ad223250cf17b86e38383413f5a6764bf8",
  4992. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8",
  4993. "shasum": ""
  4994. },
  4995. "require": {
  4996. "php": ">=5.3.0"
  4997. },
  4998. "type": "library",
  4999. "extra": {
  5000. "branch-alias": {
  5001. "dev-master": "1.0.x-dev"
  5002. }
  5003. },
  5004. "autoload": {
  5005. "psr-4": {
  5006. "Psr\\Cache\\": "src/"
  5007. }
  5008. },
  5009. "notification-url": "https://packagist.org/downloads/",
  5010. "license": [
  5011. "MIT"
  5012. ],
  5013. "authors": [
  5014. {
  5015. "name": "PHP-FIG",
  5016. "homepage": "http://www.php-fig.org/"
  5017. }
  5018. ],
  5019. "description": "Common interface for caching libraries",
  5020. "keywords": [
  5021. "cache",
  5022. "psr",
  5023. "psr-6"
  5024. ],
  5025. "support": {
  5026. "source": "https://github.com/php-fig/cache/tree/master"
  5027. },
  5028. "time": "2016-08-06T20:24:11+00:00"
  5029. },
  5030. {
  5031. "name": "psr/container",
  5032. "version": "1.1.2",
  5033. "source": {
  5034. "type": "git",
  5035. "url": "https://github.com/php-fig/container.git",
  5036. "reference": "513e0666f7216c7459170d56df27dfcefe1689ea"
  5037. },
  5038. "dist": {
  5039. "type": "zip",
  5040. "url": "https://api.github.com/repos/php-fig/container/zipball/513e0666f7216c7459170d56df27dfcefe1689ea",
  5041. "reference": "513e0666f7216c7459170d56df27dfcefe1689ea",
  5042. "shasum": ""
  5043. },
  5044. "require": {
  5045. "php": ">=7.4.0"
  5046. },
  5047. "type": "library",
  5048. "autoload": {
  5049. "psr-4": {
  5050. "Psr\\Container\\": "src/"
  5051. }
  5052. },
  5053. "notification-url": "https://packagist.org/downloads/",
  5054. "license": [
  5055. "MIT"
  5056. ],
  5057. "authors": [
  5058. {
  5059. "name": "PHP-FIG",
  5060. "homepage": "https://www.php-fig.org/"
  5061. }
  5062. ],
  5063. "description": "Common Container Interface (PHP FIG PSR-11)",
  5064. "homepage": "https://github.com/php-fig/container",
  5065. "keywords": [
  5066. "PSR-11",
  5067. "container",
  5068. "container-interface",
  5069. "container-interop",
  5070. "psr"
  5071. ],
  5072. "support": {
  5073. "issues": "https://github.com/php-fig/container/issues",
  5074. "source": "https://github.com/php-fig/container/tree/1.1.2"
  5075. },
  5076. "time": "2021-11-05T16:50:12+00:00"
  5077. },
  5078. {
  5079. "name": "psr/event-dispatcher",
  5080. "version": "1.0.0",
  5081. "source": {
  5082. "type": "git",
  5083. "url": "https://github.com/php-fig/event-dispatcher.git",
  5084. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  5085. },
  5086. "dist": {
  5087. "type": "zip",
  5088. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  5089. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  5090. "shasum": ""
  5091. },
  5092. "require": {
  5093. "php": ">=7.2.0"
  5094. },
  5095. "type": "library",
  5096. "extra": {
  5097. "branch-alias": {
  5098. "dev-master": "1.0.x-dev"
  5099. }
  5100. },
  5101. "autoload": {
  5102. "psr-4": {
  5103. "Psr\\EventDispatcher\\": "src/"
  5104. }
  5105. },
  5106. "notification-url": "https://packagist.org/downloads/",
  5107. "license": [
  5108. "MIT"
  5109. ],
  5110. "authors": [
  5111. {
  5112. "name": "PHP-FIG",
  5113. "homepage": "http://www.php-fig.org/"
  5114. }
  5115. ],
  5116. "description": "Standard interfaces for event handling.",
  5117. "keywords": [
  5118. "events",
  5119. "psr",
  5120. "psr-14"
  5121. ],
  5122. "support": {
  5123. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  5124. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  5125. },
  5126. "time": "2019-01-08T18:20:26+00:00"
  5127. },
  5128. {
  5129. "name": "psr/http-factory",
  5130. "version": "1.0.1",
  5131. "source": {
  5132. "type": "git",
  5133. "url": "https://github.com/php-fig/http-factory.git",
  5134. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be"
  5135. },
  5136. "dist": {
  5137. "type": "zip",
  5138. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  5139. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  5140. "shasum": ""
  5141. },
  5142. "require": {
  5143. "php": ">=7.0.0",
  5144. "psr/http-message": "^1.0"
  5145. },
  5146. "type": "library",
  5147. "extra": {
  5148. "branch-alias": {
  5149. "dev-master": "1.0.x-dev"
  5150. }
  5151. },
  5152. "autoload": {
  5153. "psr-4": {
  5154. "Psr\\Http\\Message\\": "src/"
  5155. }
  5156. },
  5157. "notification-url": "https://packagist.org/downloads/",
  5158. "license": [
  5159. "MIT"
  5160. ],
  5161. "authors": [
  5162. {
  5163. "name": "PHP-FIG",
  5164. "homepage": "http://www.php-fig.org/"
  5165. }
  5166. ],
  5167. "description": "Common interfaces for PSR-7 HTTP message factories",
  5168. "keywords": [
  5169. "factory",
  5170. "http",
  5171. "message",
  5172. "psr",
  5173. "psr-17",
  5174. "psr-7",
  5175. "request",
  5176. "response"
  5177. ],
  5178. "support": {
  5179. "source": "https://github.com/php-fig/http-factory/tree/master"
  5180. },
  5181. "time": "2019-04-30T12:38:16+00:00"
  5182. },
  5183. {
  5184. "name": "psr/http-message",
  5185. "version": "1.0.1",
  5186. "source": {
  5187. "type": "git",
  5188. "url": "https://github.com/php-fig/http-message.git",
  5189. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  5190. },
  5191. "dist": {
  5192. "type": "zip",
  5193. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  5194. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  5195. "shasum": ""
  5196. },
  5197. "require": {
  5198. "php": ">=5.3.0"
  5199. },
  5200. "type": "library",
  5201. "extra": {
  5202. "branch-alias": {
  5203. "dev-master": "1.0.x-dev"
  5204. }
  5205. },
  5206. "autoload": {
  5207. "psr-4": {
  5208. "Psr\\Http\\Message\\": "src/"
  5209. }
  5210. },
  5211. "notification-url": "https://packagist.org/downloads/",
  5212. "license": [
  5213. "MIT"
  5214. ],
  5215. "authors": [
  5216. {
  5217. "name": "PHP-FIG",
  5218. "homepage": "http://www.php-fig.org/"
  5219. }
  5220. ],
  5221. "description": "Common interface for HTTP messages",
  5222. "homepage": "https://github.com/php-fig/http-message",
  5223. "keywords": [
  5224. "http",
  5225. "http-message",
  5226. "psr",
  5227. "psr-7",
  5228. "request",
  5229. "response"
  5230. ],
  5231. "support": {
  5232. "source": "https://github.com/php-fig/http-message/tree/master"
  5233. },
  5234. "time": "2016-08-06T14:39:51+00:00"
  5235. },
  5236. {
  5237. "name": "psr/log",
  5238. "version": "1.1.4",
  5239. "source": {
  5240. "type": "git",
  5241. "url": "https://github.com/php-fig/log.git",
  5242. "reference": "d49695b909c3b7628b6289db5479a1c204601f11"
  5243. },
  5244. "dist": {
  5245. "type": "zip",
  5246. "url": "https://api.github.com/repos/php-fig/log/zipball/d49695b909c3b7628b6289db5479a1c204601f11",
  5247. "reference": "d49695b909c3b7628b6289db5479a1c204601f11",
  5248. "shasum": ""
  5249. },
  5250. "require": {
  5251. "php": ">=5.3.0"
  5252. },
  5253. "type": "library",
  5254. "extra": {
  5255. "branch-alias": {
  5256. "dev-master": "1.1.x-dev"
  5257. }
  5258. },
  5259. "autoload": {
  5260. "psr-4": {
  5261. "Psr\\Log\\": "Psr/Log/"
  5262. }
  5263. },
  5264. "notification-url": "https://packagist.org/downloads/",
  5265. "license": [
  5266. "MIT"
  5267. ],
  5268. "authors": [
  5269. {
  5270. "name": "PHP-FIG",
  5271. "homepage": "https://www.php-fig.org/"
  5272. }
  5273. ],
  5274. "description": "Common interface for logging libraries",
  5275. "homepage": "https://github.com/php-fig/log",
  5276. "keywords": [
  5277. "log",
  5278. "psr",
  5279. "psr-3"
  5280. ],
  5281. "support": {
  5282. "source": "https://github.com/php-fig/log/tree/1.1.4"
  5283. },
  5284. "time": "2021-05-03T11:20:27+00:00"
  5285. },
  5286. {
  5287. "name": "psr/simple-cache",
  5288. "version": "1.0.1",
  5289. "source": {
  5290. "type": "git",
  5291. "url": "https://github.com/php-fig/simple-cache.git",
  5292. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b"
  5293. },
  5294. "dist": {
  5295. "type": "zip",
  5296. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  5297. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  5298. "shasum": ""
  5299. },
  5300. "require": {
  5301. "php": ">=5.3.0"
  5302. },
  5303. "type": "library",
  5304. "extra": {
  5305. "branch-alias": {
  5306. "dev-master": "1.0.x-dev"
  5307. }
  5308. },
  5309. "autoload": {
  5310. "psr-4": {
  5311. "Psr\\SimpleCache\\": "src/"
  5312. }
  5313. },
  5314. "notification-url": "https://packagist.org/downloads/",
  5315. "license": [
  5316. "MIT"
  5317. ],
  5318. "authors": [
  5319. {
  5320. "name": "PHP-FIG",
  5321. "homepage": "http://www.php-fig.org/"
  5322. }
  5323. ],
  5324. "description": "Common interfaces for simple caching",
  5325. "keywords": [
  5326. "cache",
  5327. "caching",
  5328. "psr",
  5329. "psr-16",
  5330. "simple-cache"
  5331. ],
  5332. "support": {
  5333. "source": "https://github.com/php-fig/simple-cache/tree/master"
  5334. },
  5335. "time": "2017-10-23T01:57:42+00:00"
  5336. },
  5337. {
  5338. "name": "psy/psysh",
  5339. "version": "v0.10.12",
  5340. "source": {
  5341. "type": "git",
  5342. "url": "https://github.com/bobthecow/psysh.git",
  5343. "reference": "a0d9981aa07ecfcbea28e4bfa868031cca121e7d"
  5344. },
  5345. "dist": {
  5346. "type": "zip",
  5347. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/a0d9981aa07ecfcbea28e4bfa868031cca121e7d",
  5348. "reference": "a0d9981aa07ecfcbea28e4bfa868031cca121e7d",
  5349. "shasum": ""
  5350. },
  5351. "require": {
  5352. "ext-json": "*",
  5353. "ext-tokenizer": "*",
  5354. "nikic/php-parser": "~4.0|~3.0|~2.0|~1.3",
  5355. "php": "^8.0 || ^7.0 || ^5.5.9",
  5356. "symfony/console": "~5.0|~4.0|~3.0|^2.4.2|~2.3.10",
  5357. "symfony/var-dumper": "~5.0|~4.0|~3.0|~2.7"
  5358. },
  5359. "require-dev": {
  5360. "bamarni/composer-bin-plugin": "^1.2",
  5361. "hoa/console": "3.17.*"
  5362. },
  5363. "suggest": {
  5364. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  5365. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  5366. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.",
  5367. "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history.",
  5368. "hoa/console": "A pure PHP readline implementation. You'll want this if your PHP install doesn't already support readline or libedit."
  5369. },
  5370. "bin": [
  5371. "bin/psysh"
  5372. ],
  5373. "type": "library",
  5374. "extra": {
  5375. "branch-alias": {
  5376. "dev-main": "0.10.x-dev"
  5377. }
  5378. },
  5379. "autoload": {
  5380. "files": [
  5381. "src/functions.php"
  5382. ],
  5383. "psr-4": {
  5384. "Psy\\": "src/"
  5385. }
  5386. },
  5387. "notification-url": "https://packagist.org/downloads/",
  5388. "license": [
  5389. "MIT"
  5390. ],
  5391. "authors": [
  5392. {
  5393. "name": "Justin Hileman",
  5394. "email": "justin@justinhileman.info",
  5395. "homepage": "http://justinhileman.com"
  5396. }
  5397. ],
  5398. "description": "An interactive shell for modern PHP.",
  5399. "homepage": "http://psysh.org",
  5400. "keywords": [
  5401. "REPL",
  5402. "console",
  5403. "interactive",
  5404. "shell"
  5405. ],
  5406. "support": {
  5407. "issues": "https://github.com/bobthecow/psysh/issues",
  5408. "source": "https://github.com/bobthecow/psysh/tree/v0.10.12"
  5409. },
  5410. "time": "2021-11-30T14:05:36+00:00"
  5411. },
  5412. {
  5413. "name": "ralouphie/getallheaders",
  5414. "version": "3.0.3",
  5415. "source": {
  5416. "type": "git",
  5417. "url": "https://github.com/ralouphie/getallheaders.git",
  5418. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  5419. },
  5420. "dist": {
  5421. "type": "zip",
  5422. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  5423. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  5424. "shasum": ""
  5425. },
  5426. "require": {
  5427. "php": ">=5.6"
  5428. },
  5429. "require-dev": {
  5430. "php-coveralls/php-coveralls": "^2.1",
  5431. "phpunit/phpunit": "^5 || ^6.5"
  5432. },
  5433. "type": "library",
  5434. "autoload": {
  5435. "files": [
  5436. "src/getallheaders.php"
  5437. ]
  5438. },
  5439. "notification-url": "https://packagist.org/downloads/",
  5440. "license": [
  5441. "MIT"
  5442. ],
  5443. "authors": [
  5444. {
  5445. "name": "Ralph Khattar",
  5446. "email": "ralph.khattar@gmail.com"
  5447. }
  5448. ],
  5449. "description": "A polyfill for getallheaders.",
  5450. "support": {
  5451. "issues": "https://github.com/ralouphie/getallheaders/issues",
  5452. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  5453. },
  5454. "time": "2019-03-08T08:55:37+00:00"
  5455. },
  5456. {
  5457. "name": "ramsey/collection",
  5458. "version": "1.2.2",
  5459. "source": {
  5460. "type": "git",
  5461. "url": "https://github.com/ramsey/collection.git",
  5462. "reference": "cccc74ee5e328031b15640b51056ee8d3bb66c0a"
  5463. },
  5464. "dist": {
  5465. "type": "zip",
  5466. "url": "https://api.github.com/repos/ramsey/collection/zipball/cccc74ee5e328031b15640b51056ee8d3bb66c0a",
  5467. "reference": "cccc74ee5e328031b15640b51056ee8d3bb66c0a",
  5468. "shasum": ""
  5469. },
  5470. "require": {
  5471. "php": "^7.3 || ^8",
  5472. "symfony/polyfill-php81": "^1.23"
  5473. },
  5474. "require-dev": {
  5475. "captainhook/captainhook": "^5.3",
  5476. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  5477. "ergebnis/composer-normalize": "^2.6",
  5478. "fakerphp/faker": "^1.5",
  5479. "hamcrest/hamcrest-php": "^2",
  5480. "jangregor/phpstan-prophecy": "^0.8",
  5481. "mockery/mockery": "^1.3",
  5482. "phpspec/prophecy-phpunit": "^2.0",
  5483. "phpstan/extension-installer": "^1",
  5484. "phpstan/phpstan": "^0.12.32",
  5485. "phpstan/phpstan-mockery": "^0.12.5",
  5486. "phpstan/phpstan-phpunit": "^0.12.11",
  5487. "phpunit/phpunit": "^8.5 || ^9",
  5488. "psy/psysh": "^0.10.4",
  5489. "slevomat/coding-standard": "^6.3",
  5490. "squizlabs/php_codesniffer": "^3.5",
  5491. "vimeo/psalm": "^4.4"
  5492. },
  5493. "type": "library",
  5494. "autoload": {
  5495. "psr-4": {
  5496. "Ramsey\\Collection\\": "src/"
  5497. }
  5498. },
  5499. "notification-url": "https://packagist.org/downloads/",
  5500. "license": [
  5501. "MIT"
  5502. ],
  5503. "authors": [
  5504. {
  5505. "name": "Ben Ramsey",
  5506. "email": "ben@benramsey.com",
  5507. "homepage": "https://benramsey.com"
  5508. }
  5509. ],
  5510. "description": "A PHP library for representing and manipulating collections.",
  5511. "keywords": [
  5512. "array",
  5513. "collection",
  5514. "hash",
  5515. "map",
  5516. "queue",
  5517. "set"
  5518. ],
  5519. "support": {
  5520. "issues": "https://github.com/ramsey/collection/issues",
  5521. "source": "https://github.com/ramsey/collection/tree/1.2.2"
  5522. },
  5523. "funding": [
  5524. {
  5525. "url": "https://github.com/ramsey",
  5526. "type": "github"
  5527. },
  5528. {
  5529. "url": "https://tidelift.com/funding/github/packagist/ramsey/collection",
  5530. "type": "tidelift"
  5531. }
  5532. ],
  5533. "time": "2021-10-10T03:01:02+00:00"
  5534. },
  5535. {
  5536. "name": "ramsey/uuid",
  5537. "version": "4.2.3",
  5538. "source": {
  5539. "type": "git",
  5540. "url": "https://github.com/ramsey/uuid.git",
  5541. "reference": "fc9bb7fb5388691fd7373cd44dcb4d63bbcf24df"
  5542. },
  5543. "dist": {
  5544. "type": "zip",
  5545. "url": "https://api.github.com/repos/ramsey/uuid/zipball/fc9bb7fb5388691fd7373cd44dcb4d63bbcf24df",
  5546. "reference": "fc9bb7fb5388691fd7373cd44dcb4d63bbcf24df",
  5547. "shasum": ""
  5548. },
  5549. "require": {
  5550. "brick/math": "^0.8 || ^0.9",
  5551. "ext-json": "*",
  5552. "php": "^7.2 || ^8.0",
  5553. "ramsey/collection": "^1.0",
  5554. "symfony/polyfill-ctype": "^1.8",
  5555. "symfony/polyfill-php80": "^1.14"
  5556. },
  5557. "replace": {
  5558. "rhumsaa/uuid": "self.version"
  5559. },
  5560. "require-dev": {
  5561. "captainhook/captainhook": "^5.10",
  5562. "captainhook/plugin-composer": "^5.3",
  5563. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  5564. "doctrine/annotations": "^1.8",
  5565. "ergebnis/composer-normalize": "^2.15",
  5566. "mockery/mockery": "^1.3",
  5567. "moontoast/math": "^1.1",
  5568. "paragonie/random-lib": "^2",
  5569. "php-mock/php-mock": "^2.2",
  5570. "php-mock/php-mock-mockery": "^1.3",
  5571. "php-parallel-lint/php-parallel-lint": "^1.1",
  5572. "phpbench/phpbench": "^1.0",
  5573. "phpstan/extension-installer": "^1.0",
  5574. "phpstan/phpstan": "^0.12",
  5575. "phpstan/phpstan-mockery": "^0.12",
  5576. "phpstan/phpstan-phpunit": "^0.12",
  5577. "phpunit/phpunit": "^8.5 || ^9",
  5578. "slevomat/coding-standard": "^7.0",
  5579. "squizlabs/php_codesniffer": "^3.5",
  5580. "vimeo/psalm": "^4.9"
  5581. },
  5582. "suggest": {
  5583. "ext-bcmath": "Enables faster math with arbitrary-precision integers using BCMath.",
  5584. "ext-ctype": "Enables faster processing of character classification using ctype functions.",
  5585. "ext-gmp": "Enables faster math with arbitrary-precision integers using GMP.",
  5586. "ext-uuid": "Enables the use of PeclUuidTimeGenerator and PeclUuidRandomGenerator.",
  5587. "paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
  5588. "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type."
  5589. },
  5590. "type": "library",
  5591. "extra": {
  5592. "branch-alias": {
  5593. "dev-main": "4.x-dev"
  5594. },
  5595. "captainhook": {
  5596. "force-install": true
  5597. }
  5598. },
  5599. "autoload": {
  5600. "psr-4": {
  5601. "Ramsey\\Uuid\\": "src/"
  5602. },
  5603. "files": [
  5604. "src/functions.php"
  5605. ]
  5606. },
  5607. "notification-url": "https://packagist.org/downloads/",
  5608. "license": [
  5609. "MIT"
  5610. ],
  5611. "description": "A PHP library for generating and working with universally unique identifiers (UUIDs).",
  5612. "keywords": [
  5613. "guid",
  5614. "identifier",
  5615. "uuid"
  5616. ],
  5617. "support": {
  5618. "issues": "https://github.com/ramsey/uuid/issues",
  5619. "source": "https://github.com/ramsey/uuid/tree/4.2.3"
  5620. },
  5621. "funding": [
  5622. {
  5623. "url": "https://github.com/ramsey",
  5624. "type": "github"
  5625. },
  5626. {
  5627. "url": "https://tidelift.com/funding/github/packagist/ramsey/uuid",
  5628. "type": "tidelift"
  5629. }
  5630. ],
  5631. "time": "2021-09-25T23:10:38+00:00"
  5632. },
  5633. {
  5634. "name": "spatie/db-dumper",
  5635. "version": "2.21.1",
  5636. "source": {
  5637. "type": "git",
  5638. "url": "https://github.com/spatie/db-dumper.git",
  5639. "reference": "05e5955fb882008a8947c5a45146d86cfafa10d1"
  5640. },
  5641. "dist": {
  5642. "type": "zip",
  5643. "url": "https://api.github.com/repos/spatie/db-dumper/zipball/05e5955fb882008a8947c5a45146d86cfafa10d1",
  5644. "reference": "05e5955fb882008a8947c5a45146d86cfafa10d1",
  5645. "shasum": ""
  5646. },
  5647. "require": {
  5648. "php": "^7.2|^8.0",
  5649. "symfony/process": "^4.2|^5.0"
  5650. },
  5651. "require-dev": {
  5652. "phpunit/phpunit": "^7.0|^8.0|^9.0"
  5653. },
  5654. "type": "library",
  5655. "autoload": {
  5656. "psr-4": {
  5657. "Spatie\\DbDumper\\": "src"
  5658. }
  5659. },
  5660. "notification-url": "https://packagist.org/downloads/",
  5661. "license": [
  5662. "MIT"
  5663. ],
  5664. "authors": [
  5665. {
  5666. "name": "Freek Van der Herten",
  5667. "email": "freek@spatie.be",
  5668. "homepage": "https://spatie.be",
  5669. "role": "Developer"
  5670. }
  5671. ],
  5672. "description": "Dump databases",
  5673. "homepage": "https://github.com/spatie/db-dumper",
  5674. "keywords": [
  5675. "database",
  5676. "db-dumper",
  5677. "dump",
  5678. "mysqldump",
  5679. "spatie"
  5680. ],
  5681. "support": {
  5682. "issues": "https://github.com/spatie/db-dumper/issues",
  5683. "source": "https://github.com/spatie/db-dumper/tree/2.21.1"
  5684. },
  5685. "funding": [
  5686. {
  5687. "url": "https://github.com/spatie",
  5688. "type": "github"
  5689. }
  5690. ],
  5691. "time": "2021-02-24T14:56:42+00:00"
  5692. },
  5693. {
  5694. "name": "spatie/image-optimizer",
  5695. "version": "1.6.2",
  5696. "source": {
  5697. "type": "git",
  5698. "url": "https://github.com/spatie/image-optimizer.git",
  5699. "reference": "6db75529cbf8fa84117046a9d513f277aead90a0"
  5700. },
  5701. "dist": {
  5702. "type": "zip",
  5703. "url": "https://api.github.com/repos/spatie/image-optimizer/zipball/6db75529cbf8fa84117046a9d513f277aead90a0",
  5704. "reference": "6db75529cbf8fa84117046a9d513f277aead90a0",
  5705. "shasum": ""
  5706. },
  5707. "require": {
  5708. "ext-fileinfo": "*",
  5709. "php": "^7.3|^8.0",
  5710. "psr/log": "^1.0 | ^2.0 | ^3.0",
  5711. "symfony/process": "^4.2|^5.0|^6.0"
  5712. },
  5713. "require-dev": {
  5714. "phpunit/phpunit": "^8.5.21|^9.4.4",
  5715. "symfony/var-dumper": "^4.2|^5.0|^6.0"
  5716. },
  5717. "type": "library",
  5718. "autoload": {
  5719. "psr-4": {
  5720. "Spatie\\ImageOptimizer\\": "src"
  5721. }
  5722. },
  5723. "notification-url": "https://packagist.org/downloads/",
  5724. "license": [
  5725. "MIT"
  5726. ],
  5727. "authors": [
  5728. {
  5729. "name": "Freek Van der Herten",
  5730. "email": "freek@spatie.be",
  5731. "homepage": "https://spatie.be",
  5732. "role": "Developer"
  5733. }
  5734. ],
  5735. "description": "Easily optimize images using PHP",
  5736. "homepage": "https://github.com/spatie/image-optimizer",
  5737. "keywords": [
  5738. "image-optimizer",
  5739. "spatie"
  5740. ],
  5741. "support": {
  5742. "issues": "https://github.com/spatie/image-optimizer/issues",
  5743. "source": "https://github.com/spatie/image-optimizer/tree/1.6.2"
  5744. },
  5745. "time": "2021-12-21T10:08:05+00:00"
  5746. },
  5747. {
  5748. "name": "spatie/laravel-backup",
  5749. "version": "6.16.5",
  5750. "source": {
  5751. "type": "git",
  5752. "url": "https://github.com/spatie/laravel-backup.git",
  5753. "reference": "332fae80b12cacb9e4161824ba195d984b28c8fb"
  5754. },
  5755. "dist": {
  5756. "type": "zip",
  5757. "url": "https://api.github.com/repos/spatie/laravel-backup/zipball/332fae80b12cacb9e4161824ba195d984b28c8fb",
  5758. "reference": "332fae80b12cacb9e4161824ba195d984b28c8fb",
  5759. "shasum": ""
  5760. },
  5761. "require": {
  5762. "ext-zip": "^1.14.0",
  5763. "illuminate/console": "^6.0|^7.0|^8.0",
  5764. "illuminate/contracts": "^6.0|^7.0|^8.0",
  5765. "illuminate/events": "^6.0|^7.0|^8.0",
  5766. "illuminate/filesystem": "^6.0|^7.0|^8.0",
  5767. "illuminate/notifications": "^6.0|^7.0|^8.0",
  5768. "illuminate/support": "^6.0|^7.0|^8.0",
  5769. "league/flysystem": "^1.0.49",
  5770. "php": "^7.3|^8.0",
  5771. "spatie/db-dumper": "^2.12",
  5772. "spatie/temporary-directory": "^1.1",
  5773. "symfony/finder": "^4.2|^5.0"
  5774. },
  5775. "require-dev": {
  5776. "laravel/slack-notification-channel": "^2.3",
  5777. "league/flysystem-aws-s3-v3": "^1.0",
  5778. "mockery/mockery": "^1.4.2",
  5779. "orchestra/testbench": "4.*|5.*|6.*",
  5780. "phpunit/phpunit": "^8.4|^9.0"
  5781. },
  5782. "suggest": {
  5783. "laravel/slack-notification-channel": "Required for sending notifications via Slack"
  5784. },
  5785. "type": "library",
  5786. "extra": {
  5787. "laravel": {
  5788. "providers": [
  5789. "Spatie\\Backup\\BackupServiceProvider"
  5790. ]
  5791. }
  5792. },
  5793. "autoload": {
  5794. "psr-4": {
  5795. "Spatie\\Backup\\": "src"
  5796. },
  5797. "files": [
  5798. "src/Helpers/functions.php"
  5799. ]
  5800. },
  5801. "notification-url": "https://packagist.org/downloads/",
  5802. "license": [
  5803. "MIT"
  5804. ],
  5805. "authors": [
  5806. {
  5807. "name": "Freek Van der Herten",
  5808. "email": "freek@spatie.be",
  5809. "homepage": "https://spatie.be",
  5810. "role": "Developer"
  5811. }
  5812. ],
  5813. "description": "A Laravel package to backup your application",
  5814. "homepage": "https://github.com/spatie/laravel-backup",
  5815. "keywords": [
  5816. "backup",
  5817. "database",
  5818. "laravel-backup",
  5819. "spatie"
  5820. ],
  5821. "support": {
  5822. "issues": "https://github.com/spatie/laravel-backup/issues",
  5823. "source": "https://github.com/spatie/laravel-backup/tree/6.16.5"
  5824. },
  5825. "funding": [
  5826. {
  5827. "url": "https://github.com/sponsors/spatie",
  5828. "type": "github"
  5829. },
  5830. {
  5831. "url": "https://spatie.be/open-source/support-us",
  5832. "type": "other"
  5833. }
  5834. ],
  5835. "time": "2021-09-12T10:04:18+00:00"
  5836. },
  5837. {
  5838. "name": "spatie/laravel-image-optimizer",
  5839. "version": "1.6.4",
  5840. "source": {
  5841. "type": "git",
  5842. "url": "https://github.com/spatie/laravel-image-optimizer.git",
  5843. "reference": "c39e9ea77dee6b6eddfc26800adb1aa06a624294"
  5844. },
  5845. "dist": {
  5846. "type": "zip",
  5847. "url": "https://api.github.com/repos/spatie/laravel-image-optimizer/zipball/c39e9ea77dee6b6eddfc26800adb1aa06a624294",
  5848. "reference": "c39e9ea77dee6b6eddfc26800adb1aa06a624294",
  5849. "shasum": ""
  5850. },
  5851. "require": {
  5852. "laravel/framework": "^6.0|^7.0|^8.0",
  5853. "php": "^7.2|^8.0",
  5854. "spatie/image-optimizer": "^1.2.0"
  5855. },
  5856. "require-dev": {
  5857. "orchestra/testbench": "^4.0|^5.0|^6.0",
  5858. "phpunit/phpunit": "^9.0"
  5859. },
  5860. "type": "library",
  5861. "extra": {
  5862. "laravel": {
  5863. "providers": [
  5864. "Spatie\\LaravelImageOptimizer\\ImageOptimizerServiceProvider"
  5865. ],
  5866. "aliases": {
  5867. "ImageOptimizer": "Spatie\\LaravelImageOptimizer\\Facades\\ImageOptimizer"
  5868. }
  5869. }
  5870. },
  5871. "autoload": {
  5872. "psr-4": {
  5873. "Spatie\\LaravelImageOptimizer\\": "src"
  5874. }
  5875. },
  5876. "notification-url": "https://packagist.org/downloads/",
  5877. "license": [
  5878. "MIT"
  5879. ],
  5880. "authors": [
  5881. {
  5882. "name": "Freek Van der Herten",
  5883. "email": "freek@spatie.be",
  5884. "homepage": "https://spatie.be",
  5885. "role": "Developer"
  5886. }
  5887. ],
  5888. "description": "Optimize images in your Laravel app",
  5889. "homepage": "https://github.com/spatie/laravel-image-optimizer",
  5890. "keywords": [
  5891. "laravel-image-optimizer",
  5892. "spatie"
  5893. ],
  5894. "support": {
  5895. "issues": "https://github.com/spatie/laravel-image-optimizer/issues",
  5896. "source": "https://github.com/spatie/laravel-image-optimizer/tree/1.6.4"
  5897. },
  5898. "funding": [
  5899. {
  5900. "url": "https://spatie.be/open-source/support-us",
  5901. "type": "custom"
  5902. }
  5903. ],
  5904. "time": "2020-11-27T18:27:06+00:00"
  5905. },
  5906. {
  5907. "name": "spatie/temporary-directory",
  5908. "version": "1.3.0",
  5909. "source": {
  5910. "type": "git",
  5911. "url": "https://github.com/spatie/temporary-directory.git",
  5912. "reference": "f517729b3793bca58f847c5fd383ec16f03ffec6"
  5913. },
  5914. "dist": {
  5915. "type": "zip",
  5916. "url": "https://api.github.com/repos/spatie/temporary-directory/zipball/f517729b3793bca58f847c5fd383ec16f03ffec6",
  5917. "reference": "f517729b3793bca58f847c5fd383ec16f03ffec6",
  5918. "shasum": ""
  5919. },
  5920. "require": {
  5921. "php": "^7.2|^8.0"
  5922. },
  5923. "require-dev": {
  5924. "phpunit/phpunit": "^8.0|^9.0"
  5925. },
  5926. "type": "library",
  5927. "autoload": {
  5928. "psr-4": {
  5929. "Spatie\\TemporaryDirectory\\": "src"
  5930. }
  5931. },
  5932. "notification-url": "https://packagist.org/downloads/",
  5933. "license": [
  5934. "MIT"
  5935. ],
  5936. "authors": [
  5937. {
  5938. "name": "Alex Vanderbist",
  5939. "email": "alex@spatie.be",
  5940. "homepage": "https://spatie.be",
  5941. "role": "Developer"
  5942. }
  5943. ],
  5944. "description": "Easily create, use and destroy temporary directories",
  5945. "homepage": "https://github.com/spatie/temporary-directory",
  5946. "keywords": [
  5947. "php",
  5948. "spatie",
  5949. "temporary-directory"
  5950. ],
  5951. "support": {
  5952. "issues": "https://github.com/spatie/temporary-directory/issues",
  5953. "source": "https://github.com/spatie/temporary-directory/tree/1.3.0"
  5954. },
  5955. "time": "2020-11-09T15:54:21+00:00"
  5956. },
  5957. {
  5958. "name": "stevebauman/purify",
  5959. "version": "v3.0.3",
  5960. "source": {
  5961. "type": "git",
  5962. "url": "https://github.com/stevebauman/purify.git",
  5963. "reference": "08e8830f0ab9d302f8d76d4f5854910b24bacbb3"
  5964. },
  5965. "dist": {
  5966. "type": "zip",
  5967. "url": "https://api.github.com/repos/stevebauman/purify/zipball/08e8830f0ab9d302f8d76d4f5854910b24bacbb3",
  5968. "reference": "08e8830f0ab9d302f8d76d4f5854910b24bacbb3",
  5969. "shasum": ""
  5970. },
  5971. "require": {
  5972. "ezyang/htmlpurifier": "^4.9.0",
  5973. "illuminate/support": "~5.5|~6.0|~7.0|~8.0",
  5974. "php": ">=7.1"
  5975. },
  5976. "require-dev": {
  5977. "orchestra/testbench": "~3.7",
  5978. "phpunit/phpunit": "~7.0"
  5979. },
  5980. "type": "library",
  5981. "extra": {
  5982. "laravel": {
  5983. "providers": [
  5984. "Stevebauman\\Purify\\PurifyServiceProvider"
  5985. ],
  5986. "aliases": {
  5987. "Purify": "Stevebauman\\Purify\\Facades\\Purify"
  5988. }
  5989. }
  5990. },
  5991. "autoload": {
  5992. "psr-4": {
  5993. "Stevebauman\\Purify\\": "src/"
  5994. }
  5995. },
  5996. "notification-url": "https://packagist.org/downloads/",
  5997. "license": [
  5998. "MIT"
  5999. ],
  6000. "authors": [
  6001. {
  6002. "name": "Steve Bauman",
  6003. "email": "steven_bauman@outlook.com"
  6004. }
  6005. ],
  6006. "description": "An HTML Purifier / Sanitizer for Laravel",
  6007. "keywords": [
  6008. "Purifier",
  6009. "clean",
  6010. "cleaner",
  6011. "html",
  6012. "laravel",
  6013. "purification",
  6014. "purify"
  6015. ],
  6016. "support": {
  6017. "issues": "https://github.com/stevebauman/purify/issues",
  6018. "source": "https://github.com/stevebauman/purify/tree/v3.0.3"
  6019. },
  6020. "time": "2020-09-08T20:33:16+00:00"
  6021. },
  6022. {
  6023. "name": "swiftmailer/swiftmailer",
  6024. "version": "v6.3.0",
  6025. "source": {
  6026. "type": "git",
  6027. "url": "https://github.com/swiftmailer/swiftmailer.git",
  6028. "reference": "8a5d5072dca8f48460fce2f4131fcc495eec654c"
  6029. },
  6030. "dist": {
  6031. "type": "zip",
  6032. "url": "https://api.github.com/repos/swiftmailer/swiftmailer/zipball/8a5d5072dca8f48460fce2f4131fcc495eec654c",
  6033. "reference": "8a5d5072dca8f48460fce2f4131fcc495eec654c",
  6034. "shasum": ""
  6035. },
  6036. "require": {
  6037. "egulias/email-validator": "^2.0|^3.1",
  6038. "php": ">=7.0.0",
  6039. "symfony/polyfill-iconv": "^1.0",
  6040. "symfony/polyfill-intl-idn": "^1.10",
  6041. "symfony/polyfill-mbstring": "^1.0"
  6042. },
  6043. "require-dev": {
  6044. "mockery/mockery": "^1.0",
  6045. "symfony/phpunit-bridge": "^4.4|^5.4"
  6046. },
  6047. "suggest": {
  6048. "ext-intl": "Needed to support internationalized email addresses"
  6049. },
  6050. "type": "library",
  6051. "extra": {
  6052. "branch-alias": {
  6053. "dev-master": "6.2-dev"
  6054. }
  6055. },
  6056. "autoload": {
  6057. "files": [
  6058. "lib/swift_required.php"
  6059. ]
  6060. },
  6061. "notification-url": "https://packagist.org/downloads/",
  6062. "license": [
  6063. "MIT"
  6064. ],
  6065. "authors": [
  6066. {
  6067. "name": "Chris Corbyn"
  6068. },
  6069. {
  6070. "name": "Fabien Potencier",
  6071. "email": "fabien@symfony.com"
  6072. }
  6073. ],
  6074. "description": "Swiftmailer, free feature-rich PHP mailer",
  6075. "homepage": "https://swiftmailer.symfony.com",
  6076. "keywords": [
  6077. "email",
  6078. "mail",
  6079. "mailer"
  6080. ],
  6081. "support": {
  6082. "issues": "https://github.com/swiftmailer/swiftmailer/issues",
  6083. "source": "https://github.com/swiftmailer/swiftmailer/tree/v6.3.0"
  6084. },
  6085. "funding": [
  6086. {
  6087. "url": "https://github.com/fabpot",
  6088. "type": "github"
  6089. },
  6090. {
  6091. "url": "https://tidelift.com/funding/github/packagist/swiftmailer/swiftmailer",
  6092. "type": "tidelift"
  6093. }
  6094. ],
  6095. "abandoned": "symfony/mailer",
  6096. "time": "2021-10-18T15:26:12+00:00"
  6097. },
  6098. {
  6099. "name": "symfony/cache",
  6100. "version": "v5.4.2",
  6101. "source": {
  6102. "type": "git",
  6103. "url": "https://github.com/symfony/cache.git",
  6104. "reference": "8aad4b69a10c5c51ab54672e78995860f5e447ec"
  6105. },
  6106. "dist": {
  6107. "type": "zip",
  6108. "url": "https://api.github.com/repos/symfony/cache/zipball/8aad4b69a10c5c51ab54672e78995860f5e447ec",
  6109. "reference": "8aad4b69a10c5c51ab54672e78995860f5e447ec",
  6110. "shasum": ""
  6111. },
  6112. "require": {
  6113. "php": ">=7.2.5",
  6114. "psr/cache": "^1.0|^2.0",
  6115. "psr/log": "^1.1|^2|^3",
  6116. "symfony/cache-contracts": "^1.1.7|^2",
  6117. "symfony/deprecation-contracts": "^2.1|^3",
  6118. "symfony/polyfill-php73": "^1.9",
  6119. "symfony/polyfill-php80": "^1.16",
  6120. "symfony/service-contracts": "^1.1|^2|^3",
  6121. "symfony/var-exporter": "^4.4|^5.0|^6.0"
  6122. },
  6123. "conflict": {
  6124. "doctrine/dbal": "<2.13.1",
  6125. "symfony/dependency-injection": "<4.4",
  6126. "symfony/http-kernel": "<4.4",
  6127. "symfony/var-dumper": "<4.4"
  6128. },
  6129. "provide": {
  6130. "psr/cache-implementation": "1.0|2.0",
  6131. "psr/simple-cache-implementation": "1.0|2.0",
  6132. "symfony/cache-implementation": "1.0|2.0"
  6133. },
  6134. "require-dev": {
  6135. "cache/integration-tests": "dev-master",
  6136. "doctrine/cache": "^1.6|^2.0",
  6137. "doctrine/dbal": "^2.13.1|^3.0",
  6138. "predis/predis": "^1.1",
  6139. "psr/simple-cache": "^1.0|^2.0",
  6140. "symfony/config": "^4.4|^5.0|^6.0",
  6141. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  6142. "symfony/filesystem": "^4.4|^5.0|^6.0",
  6143. "symfony/http-kernel": "^4.4|^5.0|^6.0",
  6144. "symfony/messenger": "^4.4|^5.0|^6.0",
  6145. "symfony/var-dumper": "^4.4|^5.0|^6.0"
  6146. },
  6147. "type": "library",
  6148. "autoload": {
  6149. "psr-4": {
  6150. "Symfony\\Component\\Cache\\": ""
  6151. },
  6152. "exclude-from-classmap": [
  6153. "/Tests/"
  6154. ]
  6155. },
  6156. "notification-url": "https://packagist.org/downloads/",
  6157. "license": [
  6158. "MIT"
  6159. ],
  6160. "authors": [
  6161. {
  6162. "name": "Nicolas Grekas",
  6163. "email": "p@tchwork.com"
  6164. },
  6165. {
  6166. "name": "Symfony Community",
  6167. "homepage": "https://symfony.com/contributors"
  6168. }
  6169. ],
  6170. "description": "Provides an extended PSR-6, PSR-16 (and tags) implementation",
  6171. "homepage": "https://symfony.com",
  6172. "keywords": [
  6173. "caching",
  6174. "psr6"
  6175. ],
  6176. "support": {
  6177. "source": "https://github.com/symfony/cache/tree/v5.4.2"
  6178. },
  6179. "funding": [
  6180. {
  6181. "url": "https://symfony.com/sponsor",
  6182. "type": "custom"
  6183. },
  6184. {
  6185. "url": "https://github.com/fabpot",
  6186. "type": "github"
  6187. },
  6188. {
  6189. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6190. "type": "tidelift"
  6191. }
  6192. ],
  6193. "time": "2021-12-28T17:15:56+00:00"
  6194. },
  6195. {
  6196. "name": "symfony/cache-contracts",
  6197. "version": "v2.5.0",
  6198. "source": {
  6199. "type": "git",
  6200. "url": "https://github.com/symfony/cache-contracts.git",
  6201. "reference": "ac2e168102a2e06a2624f0379bde94cd5854ced2"
  6202. },
  6203. "dist": {
  6204. "type": "zip",
  6205. "url": "https://api.github.com/repos/symfony/cache-contracts/zipball/ac2e168102a2e06a2624f0379bde94cd5854ced2",
  6206. "reference": "ac2e168102a2e06a2624f0379bde94cd5854ced2",
  6207. "shasum": ""
  6208. },
  6209. "require": {
  6210. "php": ">=7.2.5",
  6211. "psr/cache": "^1.0|^2.0|^3.0"
  6212. },
  6213. "suggest": {
  6214. "symfony/cache-implementation": ""
  6215. },
  6216. "type": "library",
  6217. "extra": {
  6218. "branch-alias": {
  6219. "dev-main": "2.5-dev"
  6220. },
  6221. "thanks": {
  6222. "name": "symfony/contracts",
  6223. "url": "https://github.com/symfony/contracts"
  6224. }
  6225. },
  6226. "autoload": {
  6227. "psr-4": {
  6228. "Symfony\\Contracts\\Cache\\": ""
  6229. }
  6230. },
  6231. "notification-url": "https://packagist.org/downloads/",
  6232. "license": [
  6233. "MIT"
  6234. ],
  6235. "authors": [
  6236. {
  6237. "name": "Nicolas Grekas",
  6238. "email": "p@tchwork.com"
  6239. },
  6240. {
  6241. "name": "Symfony Community",
  6242. "homepage": "https://symfony.com/contributors"
  6243. }
  6244. ],
  6245. "description": "Generic abstractions related to caching",
  6246. "homepage": "https://symfony.com",
  6247. "keywords": [
  6248. "abstractions",
  6249. "contracts",
  6250. "decoupling",
  6251. "interfaces",
  6252. "interoperability",
  6253. "standards"
  6254. ],
  6255. "support": {
  6256. "source": "https://github.com/symfony/cache-contracts/tree/v2.5.0"
  6257. },
  6258. "funding": [
  6259. {
  6260. "url": "https://symfony.com/sponsor",
  6261. "type": "custom"
  6262. },
  6263. {
  6264. "url": "https://github.com/fabpot",
  6265. "type": "github"
  6266. },
  6267. {
  6268. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6269. "type": "tidelift"
  6270. }
  6271. ],
  6272. "time": "2021-08-17T14:20:01+00:00"
  6273. },
  6274. {
  6275. "name": "symfony/console",
  6276. "version": "v5.4.2",
  6277. "source": {
  6278. "type": "git",
  6279. "url": "https://github.com/symfony/console.git",
  6280. "reference": "a2c6b7ced2eb7799a35375fb9022519282b5405e"
  6281. },
  6282. "dist": {
  6283. "type": "zip",
  6284. "url": "https://api.github.com/repos/symfony/console/zipball/a2c6b7ced2eb7799a35375fb9022519282b5405e",
  6285. "reference": "a2c6b7ced2eb7799a35375fb9022519282b5405e",
  6286. "shasum": ""
  6287. },
  6288. "require": {
  6289. "php": ">=7.2.5",
  6290. "symfony/deprecation-contracts": "^2.1|^3",
  6291. "symfony/polyfill-mbstring": "~1.0",
  6292. "symfony/polyfill-php73": "^1.9",
  6293. "symfony/polyfill-php80": "^1.16",
  6294. "symfony/service-contracts": "^1.1|^2|^3",
  6295. "symfony/string": "^5.1|^6.0"
  6296. },
  6297. "conflict": {
  6298. "psr/log": ">=3",
  6299. "symfony/dependency-injection": "<4.4",
  6300. "symfony/dotenv": "<5.1",
  6301. "symfony/event-dispatcher": "<4.4",
  6302. "symfony/lock": "<4.4",
  6303. "symfony/process": "<4.4"
  6304. },
  6305. "provide": {
  6306. "psr/log-implementation": "1.0|2.0"
  6307. },
  6308. "require-dev": {
  6309. "psr/log": "^1|^2",
  6310. "symfony/config": "^4.4|^5.0|^6.0",
  6311. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  6312. "symfony/event-dispatcher": "^4.4|^5.0|^6.0",
  6313. "symfony/lock": "^4.4|^5.0|^6.0",
  6314. "symfony/process": "^4.4|^5.0|^6.0",
  6315. "symfony/var-dumper": "^4.4|^5.0|^6.0"
  6316. },
  6317. "suggest": {
  6318. "psr/log": "For using the console logger",
  6319. "symfony/event-dispatcher": "",
  6320. "symfony/lock": "",
  6321. "symfony/process": ""
  6322. },
  6323. "type": "library",
  6324. "autoload": {
  6325. "psr-4": {
  6326. "Symfony\\Component\\Console\\": ""
  6327. },
  6328. "exclude-from-classmap": [
  6329. "/Tests/"
  6330. ]
  6331. },
  6332. "notification-url": "https://packagist.org/downloads/",
  6333. "license": [
  6334. "MIT"
  6335. ],
  6336. "authors": [
  6337. {
  6338. "name": "Fabien Potencier",
  6339. "email": "fabien@symfony.com"
  6340. },
  6341. {
  6342. "name": "Symfony Community",
  6343. "homepage": "https://symfony.com/contributors"
  6344. }
  6345. ],
  6346. "description": "Eases the creation of beautiful and testable command line interfaces",
  6347. "homepage": "https://symfony.com",
  6348. "keywords": [
  6349. "cli",
  6350. "command line",
  6351. "console",
  6352. "terminal"
  6353. ],
  6354. "support": {
  6355. "source": "https://github.com/symfony/console/tree/v5.4.2"
  6356. },
  6357. "funding": [
  6358. {
  6359. "url": "https://symfony.com/sponsor",
  6360. "type": "custom"
  6361. },
  6362. {
  6363. "url": "https://github.com/fabpot",
  6364. "type": "github"
  6365. },
  6366. {
  6367. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6368. "type": "tidelift"
  6369. }
  6370. ],
  6371. "time": "2021-12-20T16:11:12+00:00"
  6372. },
  6373. {
  6374. "name": "symfony/css-selector",
  6375. "version": "v5.4.2",
  6376. "source": {
  6377. "type": "git",
  6378. "url": "https://github.com/symfony/css-selector.git",
  6379. "reference": "cfcbee910e159df402603502fe387e8b677c22fd"
  6380. },
  6381. "dist": {
  6382. "type": "zip",
  6383. "url": "https://api.github.com/repos/symfony/css-selector/zipball/cfcbee910e159df402603502fe387e8b677c22fd",
  6384. "reference": "cfcbee910e159df402603502fe387e8b677c22fd",
  6385. "shasum": ""
  6386. },
  6387. "require": {
  6388. "php": ">=7.2.5",
  6389. "symfony/polyfill-php80": "^1.16"
  6390. },
  6391. "type": "library",
  6392. "autoload": {
  6393. "psr-4": {
  6394. "Symfony\\Component\\CssSelector\\": ""
  6395. },
  6396. "exclude-from-classmap": [
  6397. "/Tests/"
  6398. ]
  6399. },
  6400. "notification-url": "https://packagist.org/downloads/",
  6401. "license": [
  6402. "MIT"
  6403. ],
  6404. "authors": [
  6405. {
  6406. "name": "Fabien Potencier",
  6407. "email": "fabien@symfony.com"
  6408. },
  6409. {
  6410. "name": "Jean-François Simon",
  6411. "email": "jeanfrancois.simon@sensiolabs.com"
  6412. },
  6413. {
  6414. "name": "Symfony Community",
  6415. "homepage": "https://symfony.com/contributors"
  6416. }
  6417. ],
  6418. "description": "Converts CSS selectors to XPath expressions",
  6419. "homepage": "https://symfony.com",
  6420. "support": {
  6421. "source": "https://github.com/symfony/css-selector/tree/v5.4.2"
  6422. },
  6423. "funding": [
  6424. {
  6425. "url": "https://symfony.com/sponsor",
  6426. "type": "custom"
  6427. },
  6428. {
  6429. "url": "https://github.com/fabpot",
  6430. "type": "github"
  6431. },
  6432. {
  6433. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6434. "type": "tidelift"
  6435. }
  6436. ],
  6437. "time": "2021-12-16T21:58:21+00:00"
  6438. },
  6439. {
  6440. "name": "symfony/deprecation-contracts",
  6441. "version": "v2.5.0",
  6442. "source": {
  6443. "type": "git",
  6444. "url": "https://github.com/symfony/deprecation-contracts.git",
  6445. "reference": "6f981ee24cf69ee7ce9736146d1c57c2780598a8"
  6446. },
  6447. "dist": {
  6448. "type": "zip",
  6449. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/6f981ee24cf69ee7ce9736146d1c57c2780598a8",
  6450. "reference": "6f981ee24cf69ee7ce9736146d1c57c2780598a8",
  6451. "shasum": ""
  6452. },
  6453. "require": {
  6454. "php": ">=7.1"
  6455. },
  6456. "type": "library",
  6457. "extra": {
  6458. "branch-alias": {
  6459. "dev-main": "2.5-dev"
  6460. },
  6461. "thanks": {
  6462. "name": "symfony/contracts",
  6463. "url": "https://github.com/symfony/contracts"
  6464. }
  6465. },
  6466. "autoload": {
  6467. "files": [
  6468. "function.php"
  6469. ]
  6470. },
  6471. "notification-url": "https://packagist.org/downloads/",
  6472. "license": [
  6473. "MIT"
  6474. ],
  6475. "authors": [
  6476. {
  6477. "name": "Nicolas Grekas",
  6478. "email": "p@tchwork.com"
  6479. },
  6480. {
  6481. "name": "Symfony Community",
  6482. "homepage": "https://symfony.com/contributors"
  6483. }
  6484. ],
  6485. "description": "A generic function and convention to trigger deprecation notices",
  6486. "homepage": "https://symfony.com",
  6487. "support": {
  6488. "source": "https://github.com/symfony/deprecation-contracts/tree/v2.5.0"
  6489. },
  6490. "funding": [
  6491. {
  6492. "url": "https://symfony.com/sponsor",
  6493. "type": "custom"
  6494. },
  6495. {
  6496. "url": "https://github.com/fabpot",
  6497. "type": "github"
  6498. },
  6499. {
  6500. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6501. "type": "tidelift"
  6502. }
  6503. ],
  6504. "time": "2021-07-12T14:48:14+00:00"
  6505. },
  6506. {
  6507. "name": "symfony/error-handler",
  6508. "version": "v5.4.2",
  6509. "source": {
  6510. "type": "git",
  6511. "url": "https://github.com/symfony/error-handler.git",
  6512. "reference": "e0c0dd0f9d4120a20158fc9aec2367d07d38bc56"
  6513. },
  6514. "dist": {
  6515. "type": "zip",
  6516. "url": "https://api.github.com/repos/symfony/error-handler/zipball/e0c0dd0f9d4120a20158fc9aec2367d07d38bc56",
  6517. "reference": "e0c0dd0f9d4120a20158fc9aec2367d07d38bc56",
  6518. "shasum": ""
  6519. },
  6520. "require": {
  6521. "php": ">=7.2.5",
  6522. "psr/log": "^1|^2|^3",
  6523. "symfony/var-dumper": "^4.4|^5.0|^6.0"
  6524. },
  6525. "require-dev": {
  6526. "symfony/deprecation-contracts": "^2.1|^3",
  6527. "symfony/http-kernel": "^4.4|^5.0|^6.0",
  6528. "symfony/serializer": "^4.4|^5.0|^6.0"
  6529. },
  6530. "bin": [
  6531. "Resources/bin/patch-type-declarations"
  6532. ],
  6533. "type": "library",
  6534. "autoload": {
  6535. "psr-4": {
  6536. "Symfony\\Component\\ErrorHandler\\": ""
  6537. },
  6538. "exclude-from-classmap": [
  6539. "/Tests/"
  6540. ]
  6541. },
  6542. "notification-url": "https://packagist.org/downloads/",
  6543. "license": [
  6544. "MIT"
  6545. ],
  6546. "authors": [
  6547. {
  6548. "name": "Fabien Potencier",
  6549. "email": "fabien@symfony.com"
  6550. },
  6551. {
  6552. "name": "Symfony Community",
  6553. "homepage": "https://symfony.com/contributors"
  6554. }
  6555. ],
  6556. "description": "Provides tools to manage errors and ease debugging PHP code",
  6557. "homepage": "https://symfony.com",
  6558. "support": {
  6559. "source": "https://github.com/symfony/error-handler/tree/v5.4.2"
  6560. },
  6561. "funding": [
  6562. {
  6563. "url": "https://symfony.com/sponsor",
  6564. "type": "custom"
  6565. },
  6566. {
  6567. "url": "https://github.com/fabpot",
  6568. "type": "github"
  6569. },
  6570. {
  6571. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6572. "type": "tidelift"
  6573. }
  6574. ],
  6575. "time": "2021-12-19T20:02:00+00:00"
  6576. },
  6577. {
  6578. "name": "symfony/event-dispatcher",
  6579. "version": "v5.4.0",
  6580. "source": {
  6581. "type": "git",
  6582. "url": "https://github.com/symfony/event-dispatcher.git",
  6583. "reference": "27d39ae126352b9fa3be5e196ccf4617897be3eb"
  6584. },
  6585. "dist": {
  6586. "type": "zip",
  6587. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/27d39ae126352b9fa3be5e196ccf4617897be3eb",
  6588. "reference": "27d39ae126352b9fa3be5e196ccf4617897be3eb",
  6589. "shasum": ""
  6590. },
  6591. "require": {
  6592. "php": ">=7.2.5",
  6593. "symfony/deprecation-contracts": "^2.1|^3",
  6594. "symfony/event-dispatcher-contracts": "^2|^3",
  6595. "symfony/polyfill-php80": "^1.16"
  6596. },
  6597. "conflict": {
  6598. "symfony/dependency-injection": "<4.4"
  6599. },
  6600. "provide": {
  6601. "psr/event-dispatcher-implementation": "1.0",
  6602. "symfony/event-dispatcher-implementation": "2.0"
  6603. },
  6604. "require-dev": {
  6605. "psr/log": "^1|^2|^3",
  6606. "symfony/config": "^4.4|^5.0|^6.0",
  6607. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  6608. "symfony/error-handler": "^4.4|^5.0|^6.0",
  6609. "symfony/expression-language": "^4.4|^5.0|^6.0",
  6610. "symfony/http-foundation": "^4.4|^5.0|^6.0",
  6611. "symfony/service-contracts": "^1.1|^2|^3",
  6612. "symfony/stopwatch": "^4.4|^5.0|^6.0"
  6613. },
  6614. "suggest": {
  6615. "symfony/dependency-injection": "",
  6616. "symfony/http-kernel": ""
  6617. },
  6618. "type": "library",
  6619. "autoload": {
  6620. "psr-4": {
  6621. "Symfony\\Component\\EventDispatcher\\": ""
  6622. },
  6623. "exclude-from-classmap": [
  6624. "/Tests/"
  6625. ]
  6626. },
  6627. "notification-url": "https://packagist.org/downloads/",
  6628. "license": [
  6629. "MIT"
  6630. ],
  6631. "authors": [
  6632. {
  6633. "name": "Fabien Potencier",
  6634. "email": "fabien@symfony.com"
  6635. },
  6636. {
  6637. "name": "Symfony Community",
  6638. "homepage": "https://symfony.com/contributors"
  6639. }
  6640. ],
  6641. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  6642. "homepage": "https://symfony.com",
  6643. "support": {
  6644. "source": "https://github.com/symfony/event-dispatcher/tree/v5.4.0"
  6645. },
  6646. "funding": [
  6647. {
  6648. "url": "https://symfony.com/sponsor",
  6649. "type": "custom"
  6650. },
  6651. {
  6652. "url": "https://github.com/fabpot",
  6653. "type": "github"
  6654. },
  6655. {
  6656. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6657. "type": "tidelift"
  6658. }
  6659. ],
  6660. "time": "2021-11-23T10:19:22+00:00"
  6661. },
  6662. {
  6663. "name": "symfony/event-dispatcher-contracts",
  6664. "version": "v2.5.0",
  6665. "source": {
  6666. "type": "git",
  6667. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  6668. "reference": "66bea3b09be61613cd3b4043a65a8ec48cfa6d2a"
  6669. },
  6670. "dist": {
  6671. "type": "zip",
  6672. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/66bea3b09be61613cd3b4043a65a8ec48cfa6d2a",
  6673. "reference": "66bea3b09be61613cd3b4043a65a8ec48cfa6d2a",
  6674. "shasum": ""
  6675. },
  6676. "require": {
  6677. "php": ">=7.2.5",
  6678. "psr/event-dispatcher": "^1"
  6679. },
  6680. "suggest": {
  6681. "symfony/event-dispatcher-implementation": ""
  6682. },
  6683. "type": "library",
  6684. "extra": {
  6685. "branch-alias": {
  6686. "dev-main": "2.5-dev"
  6687. },
  6688. "thanks": {
  6689. "name": "symfony/contracts",
  6690. "url": "https://github.com/symfony/contracts"
  6691. }
  6692. },
  6693. "autoload": {
  6694. "psr-4": {
  6695. "Symfony\\Contracts\\EventDispatcher\\": ""
  6696. }
  6697. },
  6698. "notification-url": "https://packagist.org/downloads/",
  6699. "license": [
  6700. "MIT"
  6701. ],
  6702. "authors": [
  6703. {
  6704. "name": "Nicolas Grekas",
  6705. "email": "p@tchwork.com"
  6706. },
  6707. {
  6708. "name": "Symfony Community",
  6709. "homepage": "https://symfony.com/contributors"
  6710. }
  6711. ],
  6712. "description": "Generic abstractions related to dispatching event",
  6713. "homepage": "https://symfony.com",
  6714. "keywords": [
  6715. "abstractions",
  6716. "contracts",
  6717. "decoupling",
  6718. "interfaces",
  6719. "interoperability",
  6720. "standards"
  6721. ],
  6722. "support": {
  6723. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v2.5.0"
  6724. },
  6725. "funding": [
  6726. {
  6727. "url": "https://symfony.com/sponsor",
  6728. "type": "custom"
  6729. },
  6730. {
  6731. "url": "https://github.com/fabpot",
  6732. "type": "github"
  6733. },
  6734. {
  6735. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6736. "type": "tidelift"
  6737. }
  6738. ],
  6739. "time": "2021-07-12T14:48:14+00:00"
  6740. },
  6741. {
  6742. "name": "symfony/filesystem",
  6743. "version": "v5.4.0",
  6744. "source": {
  6745. "type": "git",
  6746. "url": "https://github.com/symfony/filesystem.git",
  6747. "reference": "731f917dc31edcffec2c6a777f3698c33bea8f01"
  6748. },
  6749. "dist": {
  6750. "type": "zip",
  6751. "url": "https://api.github.com/repos/symfony/filesystem/zipball/731f917dc31edcffec2c6a777f3698c33bea8f01",
  6752. "reference": "731f917dc31edcffec2c6a777f3698c33bea8f01",
  6753. "shasum": ""
  6754. },
  6755. "require": {
  6756. "php": ">=7.2.5",
  6757. "symfony/polyfill-ctype": "~1.8",
  6758. "symfony/polyfill-mbstring": "~1.8",
  6759. "symfony/polyfill-php80": "^1.16"
  6760. },
  6761. "type": "library",
  6762. "autoload": {
  6763. "psr-4": {
  6764. "Symfony\\Component\\Filesystem\\": ""
  6765. },
  6766. "exclude-from-classmap": [
  6767. "/Tests/"
  6768. ]
  6769. },
  6770. "notification-url": "https://packagist.org/downloads/",
  6771. "license": [
  6772. "MIT"
  6773. ],
  6774. "authors": [
  6775. {
  6776. "name": "Fabien Potencier",
  6777. "email": "fabien@symfony.com"
  6778. },
  6779. {
  6780. "name": "Symfony Community",
  6781. "homepage": "https://symfony.com/contributors"
  6782. }
  6783. ],
  6784. "description": "Provides basic utilities for the filesystem",
  6785. "homepage": "https://symfony.com",
  6786. "support": {
  6787. "source": "https://github.com/symfony/filesystem/tree/v5.4.0"
  6788. },
  6789. "funding": [
  6790. {
  6791. "url": "https://symfony.com/sponsor",
  6792. "type": "custom"
  6793. },
  6794. {
  6795. "url": "https://github.com/fabpot",
  6796. "type": "github"
  6797. },
  6798. {
  6799. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6800. "type": "tidelift"
  6801. }
  6802. ],
  6803. "time": "2021-10-28T13:39:27+00:00"
  6804. },
  6805. {
  6806. "name": "symfony/finder",
  6807. "version": "v5.4.2",
  6808. "source": {
  6809. "type": "git",
  6810. "url": "https://github.com/symfony/finder.git",
  6811. "reference": "e77046c252be48c48a40816187ed527703c8f76c"
  6812. },
  6813. "dist": {
  6814. "type": "zip",
  6815. "url": "https://api.github.com/repos/symfony/finder/zipball/e77046c252be48c48a40816187ed527703c8f76c",
  6816. "reference": "e77046c252be48c48a40816187ed527703c8f76c",
  6817. "shasum": ""
  6818. },
  6819. "require": {
  6820. "php": ">=7.2.5",
  6821. "symfony/deprecation-contracts": "^2.1|^3",
  6822. "symfony/polyfill-php80": "^1.16"
  6823. },
  6824. "type": "library",
  6825. "autoload": {
  6826. "psr-4": {
  6827. "Symfony\\Component\\Finder\\": ""
  6828. },
  6829. "exclude-from-classmap": [
  6830. "/Tests/"
  6831. ]
  6832. },
  6833. "notification-url": "https://packagist.org/downloads/",
  6834. "license": [
  6835. "MIT"
  6836. ],
  6837. "authors": [
  6838. {
  6839. "name": "Fabien Potencier",
  6840. "email": "fabien@symfony.com"
  6841. },
  6842. {
  6843. "name": "Symfony Community",
  6844. "homepage": "https://symfony.com/contributors"
  6845. }
  6846. ],
  6847. "description": "Finds files and directories via an intuitive fluent interface",
  6848. "homepage": "https://symfony.com",
  6849. "support": {
  6850. "source": "https://github.com/symfony/finder/tree/v5.4.2"
  6851. },
  6852. "funding": [
  6853. {
  6854. "url": "https://symfony.com/sponsor",
  6855. "type": "custom"
  6856. },
  6857. {
  6858. "url": "https://github.com/fabpot",
  6859. "type": "github"
  6860. },
  6861. {
  6862. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6863. "type": "tidelift"
  6864. }
  6865. ],
  6866. "time": "2021-12-15T11:06:13+00:00"
  6867. },
  6868. {
  6869. "name": "symfony/http-foundation",
  6870. "version": "v5.4.2",
  6871. "source": {
  6872. "type": "git",
  6873. "url": "https://github.com/symfony/http-foundation.git",
  6874. "reference": "ce952af52877eaf3eab5d0c08cc0ea865ed37313"
  6875. },
  6876. "dist": {
  6877. "type": "zip",
  6878. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/ce952af52877eaf3eab5d0c08cc0ea865ed37313",
  6879. "reference": "ce952af52877eaf3eab5d0c08cc0ea865ed37313",
  6880. "shasum": ""
  6881. },
  6882. "require": {
  6883. "php": ">=7.2.5",
  6884. "symfony/deprecation-contracts": "^2.1|^3",
  6885. "symfony/polyfill-mbstring": "~1.1",
  6886. "symfony/polyfill-php80": "^1.16"
  6887. },
  6888. "require-dev": {
  6889. "predis/predis": "~1.0",
  6890. "symfony/cache": "^4.4|^5.0|^6.0",
  6891. "symfony/expression-language": "^4.4|^5.0|^6.0",
  6892. "symfony/mime": "^4.4|^5.0|^6.0"
  6893. },
  6894. "suggest": {
  6895. "symfony/mime": "To use the file extension guesser"
  6896. },
  6897. "type": "library",
  6898. "autoload": {
  6899. "psr-4": {
  6900. "Symfony\\Component\\HttpFoundation\\": ""
  6901. },
  6902. "exclude-from-classmap": [
  6903. "/Tests/"
  6904. ]
  6905. },
  6906. "notification-url": "https://packagist.org/downloads/",
  6907. "license": [
  6908. "MIT"
  6909. ],
  6910. "authors": [
  6911. {
  6912. "name": "Fabien Potencier",
  6913. "email": "fabien@symfony.com"
  6914. },
  6915. {
  6916. "name": "Symfony Community",
  6917. "homepage": "https://symfony.com/contributors"
  6918. }
  6919. ],
  6920. "description": "Defines an object-oriented layer for the HTTP specification",
  6921. "homepage": "https://symfony.com",
  6922. "support": {
  6923. "source": "https://github.com/symfony/http-foundation/tree/v5.4.2"
  6924. },
  6925. "funding": [
  6926. {
  6927. "url": "https://symfony.com/sponsor",
  6928. "type": "custom"
  6929. },
  6930. {
  6931. "url": "https://github.com/fabpot",
  6932. "type": "github"
  6933. },
  6934. {
  6935. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6936. "type": "tidelift"
  6937. }
  6938. ],
  6939. "time": "2021-12-28T17:15:56+00:00"
  6940. },
  6941. {
  6942. "name": "symfony/http-kernel",
  6943. "version": "v5.1.5",
  6944. "source": {
  6945. "type": "git",
  6946. "url": "https://github.com/symfony/http-kernel.git",
  6947. "reference": "3e32676e6cb5d2081c91a56783471ff8a7f7110b"
  6948. },
  6949. "dist": {
  6950. "type": "zip",
  6951. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/3e32676e6cb5d2081c91a56783471ff8a7f7110b",
  6952. "reference": "3e32676e6cb5d2081c91a56783471ff8a7f7110b",
  6953. "shasum": ""
  6954. },
  6955. "require": {
  6956. "php": ">=7.2.5",
  6957. "psr/log": "~1.0",
  6958. "symfony/deprecation-contracts": "^2.1",
  6959. "symfony/error-handler": "^4.4|^5.0",
  6960. "symfony/event-dispatcher": "^5.0",
  6961. "symfony/http-foundation": "^4.4|^5.0",
  6962. "symfony/polyfill-ctype": "^1.8",
  6963. "symfony/polyfill-php73": "^1.9",
  6964. "symfony/polyfill-php80": "^1.15"
  6965. },
  6966. "conflict": {
  6967. "symfony/browser-kit": "<4.4",
  6968. "symfony/cache": "<5.0",
  6969. "symfony/config": "<5.0",
  6970. "symfony/console": "<4.4",
  6971. "symfony/dependency-injection": "<4.4",
  6972. "symfony/doctrine-bridge": "<5.0",
  6973. "symfony/form": "<5.0",
  6974. "symfony/http-client": "<5.0",
  6975. "symfony/mailer": "<5.0",
  6976. "symfony/messenger": "<5.0",
  6977. "symfony/translation": "<5.0",
  6978. "symfony/twig-bridge": "<5.0",
  6979. "symfony/validator": "<5.0",
  6980. "twig/twig": "<2.4"
  6981. },
  6982. "provide": {
  6983. "psr/log-implementation": "1.0"
  6984. },
  6985. "require-dev": {
  6986. "psr/cache": "~1.0",
  6987. "symfony/browser-kit": "^4.4|^5.0",
  6988. "symfony/config": "^5.0",
  6989. "symfony/console": "^4.4|^5.0",
  6990. "symfony/css-selector": "^4.4|^5.0",
  6991. "symfony/dependency-injection": "^4.4|^5.0",
  6992. "symfony/dom-crawler": "^4.4|^5.0",
  6993. "symfony/expression-language": "^4.4|^5.0",
  6994. "symfony/finder": "^4.4|^5.0",
  6995. "symfony/process": "^4.4|^5.0",
  6996. "symfony/routing": "^4.4|^5.0",
  6997. "symfony/stopwatch": "^4.4|^5.0",
  6998. "symfony/translation": "^4.4|^5.0",
  6999. "symfony/translation-contracts": "^1.1|^2",
  7000. "twig/twig": "^2.4|^3.0"
  7001. },
  7002. "suggest": {
  7003. "symfony/browser-kit": "",
  7004. "symfony/config": "",
  7005. "symfony/console": "",
  7006. "symfony/dependency-injection": ""
  7007. },
  7008. "type": "library",
  7009. "extra": {
  7010. "branch-alias": {
  7011. "dev-master": "5.1-dev"
  7012. }
  7013. },
  7014. "autoload": {
  7015. "psr-4": {
  7016. "Symfony\\Component\\HttpKernel\\": ""
  7017. },
  7018. "exclude-from-classmap": [
  7019. "/Tests/"
  7020. ]
  7021. },
  7022. "notification-url": "https://packagist.org/downloads/",
  7023. "license": [
  7024. "MIT"
  7025. ],
  7026. "authors": [
  7027. {
  7028. "name": "Fabien Potencier",
  7029. "email": "fabien@symfony.com"
  7030. },
  7031. {
  7032. "name": "Symfony Community",
  7033. "homepage": "https://symfony.com/contributors"
  7034. }
  7035. ],
  7036. "description": "Symfony HttpKernel Component",
  7037. "homepage": "https://symfony.com",
  7038. "support": {
  7039. "source": "https://github.com/symfony/http-kernel/tree/v5.1.5"
  7040. },
  7041. "funding": [
  7042. {
  7043. "url": "https://symfony.com/sponsor",
  7044. "type": "custom"
  7045. },
  7046. {
  7047. "url": "https://github.com/fabpot",
  7048. "type": "github"
  7049. },
  7050. {
  7051. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7052. "type": "tidelift"
  7053. }
  7054. ],
  7055. "time": "2020-09-02T08:15:18+00:00"
  7056. },
  7057. {
  7058. "name": "symfony/mime",
  7059. "version": "v5.4.2",
  7060. "source": {
  7061. "type": "git",
  7062. "url": "https://github.com/symfony/mime.git",
  7063. "reference": "1bfd938cf9562822c05c4d00e8f92134d3c8e42d"
  7064. },
  7065. "dist": {
  7066. "type": "zip",
  7067. "url": "https://api.github.com/repos/symfony/mime/zipball/1bfd938cf9562822c05c4d00e8f92134d3c8e42d",
  7068. "reference": "1bfd938cf9562822c05c4d00e8f92134d3c8e42d",
  7069. "shasum": ""
  7070. },
  7071. "require": {
  7072. "php": ">=7.2.5",
  7073. "symfony/deprecation-contracts": "^2.1|^3",
  7074. "symfony/polyfill-intl-idn": "^1.10",
  7075. "symfony/polyfill-mbstring": "^1.0",
  7076. "symfony/polyfill-php80": "^1.16"
  7077. },
  7078. "conflict": {
  7079. "egulias/email-validator": "~3.0.0",
  7080. "phpdocumentor/reflection-docblock": "<3.2.2",
  7081. "phpdocumentor/type-resolver": "<1.4.0",
  7082. "symfony/mailer": "<4.4"
  7083. },
  7084. "require-dev": {
  7085. "egulias/email-validator": "^2.1.10|^3.1",
  7086. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  7087. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  7088. "symfony/property-access": "^4.4|^5.1|^6.0",
  7089. "symfony/property-info": "^4.4|^5.1|^6.0",
  7090. "symfony/serializer": "^5.2|^6.0"
  7091. },
  7092. "type": "library",
  7093. "autoload": {
  7094. "psr-4": {
  7095. "Symfony\\Component\\Mime\\": ""
  7096. },
  7097. "exclude-from-classmap": [
  7098. "/Tests/"
  7099. ]
  7100. },
  7101. "notification-url": "https://packagist.org/downloads/",
  7102. "license": [
  7103. "MIT"
  7104. ],
  7105. "authors": [
  7106. {
  7107. "name": "Fabien Potencier",
  7108. "email": "fabien@symfony.com"
  7109. },
  7110. {
  7111. "name": "Symfony Community",
  7112. "homepage": "https://symfony.com/contributors"
  7113. }
  7114. ],
  7115. "description": "Allows manipulating MIME messages",
  7116. "homepage": "https://symfony.com",
  7117. "keywords": [
  7118. "mime",
  7119. "mime-type"
  7120. ],
  7121. "support": {
  7122. "source": "https://github.com/symfony/mime/tree/v5.4.2"
  7123. },
  7124. "funding": [
  7125. {
  7126. "url": "https://symfony.com/sponsor",
  7127. "type": "custom"
  7128. },
  7129. {
  7130. "url": "https://github.com/fabpot",
  7131. "type": "github"
  7132. },
  7133. {
  7134. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7135. "type": "tidelift"
  7136. }
  7137. ],
  7138. "time": "2021-12-28T17:15:56+00:00"
  7139. },
  7140. {
  7141. "name": "symfony/polyfill-ctype",
  7142. "version": "v1.23.0",
  7143. "source": {
  7144. "type": "git",
  7145. "url": "https://github.com/symfony/polyfill-ctype.git",
  7146. "reference": "46cd95797e9df938fdd2b03693b5fca5e64b01ce"
  7147. },
  7148. "dist": {
  7149. "type": "zip",
  7150. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/46cd95797e9df938fdd2b03693b5fca5e64b01ce",
  7151. "reference": "46cd95797e9df938fdd2b03693b5fca5e64b01ce",
  7152. "shasum": ""
  7153. },
  7154. "require": {
  7155. "php": ">=7.1"
  7156. },
  7157. "suggest": {
  7158. "ext-ctype": "For best performance"
  7159. },
  7160. "type": "library",
  7161. "extra": {
  7162. "branch-alias": {
  7163. "dev-main": "1.23-dev"
  7164. },
  7165. "thanks": {
  7166. "name": "symfony/polyfill",
  7167. "url": "https://github.com/symfony/polyfill"
  7168. }
  7169. },
  7170. "autoload": {
  7171. "psr-4": {
  7172. "Symfony\\Polyfill\\Ctype\\": ""
  7173. },
  7174. "files": [
  7175. "bootstrap.php"
  7176. ]
  7177. },
  7178. "notification-url": "https://packagist.org/downloads/",
  7179. "license": [
  7180. "MIT"
  7181. ],
  7182. "authors": [
  7183. {
  7184. "name": "Gert de Pagter",
  7185. "email": "BackEndTea@gmail.com"
  7186. },
  7187. {
  7188. "name": "Symfony Community",
  7189. "homepage": "https://symfony.com/contributors"
  7190. }
  7191. ],
  7192. "description": "Symfony polyfill for ctype functions",
  7193. "homepage": "https://symfony.com",
  7194. "keywords": [
  7195. "compatibility",
  7196. "ctype",
  7197. "polyfill",
  7198. "portable"
  7199. ],
  7200. "support": {
  7201. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.23.0"
  7202. },
  7203. "funding": [
  7204. {
  7205. "url": "https://symfony.com/sponsor",
  7206. "type": "custom"
  7207. },
  7208. {
  7209. "url": "https://github.com/fabpot",
  7210. "type": "github"
  7211. },
  7212. {
  7213. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7214. "type": "tidelift"
  7215. }
  7216. ],
  7217. "time": "2021-02-19T12:13:01+00:00"
  7218. },
  7219. {
  7220. "name": "symfony/polyfill-iconv",
  7221. "version": "v1.23.0",
  7222. "source": {
  7223. "type": "git",
  7224. "url": "https://github.com/symfony/polyfill-iconv.git",
  7225. "reference": "63b5bb7db83e5673936d6e3b8b3e022ff6474933"
  7226. },
  7227. "dist": {
  7228. "type": "zip",
  7229. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/63b5bb7db83e5673936d6e3b8b3e022ff6474933",
  7230. "reference": "63b5bb7db83e5673936d6e3b8b3e022ff6474933",
  7231. "shasum": ""
  7232. },
  7233. "require": {
  7234. "php": ">=7.1"
  7235. },
  7236. "suggest": {
  7237. "ext-iconv": "For best performance"
  7238. },
  7239. "type": "library",
  7240. "extra": {
  7241. "branch-alias": {
  7242. "dev-main": "1.23-dev"
  7243. },
  7244. "thanks": {
  7245. "name": "symfony/polyfill",
  7246. "url": "https://github.com/symfony/polyfill"
  7247. }
  7248. },
  7249. "autoload": {
  7250. "psr-4": {
  7251. "Symfony\\Polyfill\\Iconv\\": ""
  7252. },
  7253. "files": [
  7254. "bootstrap.php"
  7255. ]
  7256. },
  7257. "notification-url": "https://packagist.org/downloads/",
  7258. "license": [
  7259. "MIT"
  7260. ],
  7261. "authors": [
  7262. {
  7263. "name": "Nicolas Grekas",
  7264. "email": "p@tchwork.com"
  7265. },
  7266. {
  7267. "name": "Symfony Community",
  7268. "homepage": "https://symfony.com/contributors"
  7269. }
  7270. ],
  7271. "description": "Symfony polyfill for the Iconv extension",
  7272. "homepage": "https://symfony.com",
  7273. "keywords": [
  7274. "compatibility",
  7275. "iconv",
  7276. "polyfill",
  7277. "portable",
  7278. "shim"
  7279. ],
  7280. "support": {
  7281. "source": "https://github.com/symfony/polyfill-iconv/tree/v1.23.0"
  7282. },
  7283. "funding": [
  7284. {
  7285. "url": "https://symfony.com/sponsor",
  7286. "type": "custom"
  7287. },
  7288. {
  7289. "url": "https://github.com/fabpot",
  7290. "type": "github"
  7291. },
  7292. {
  7293. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7294. "type": "tidelift"
  7295. }
  7296. ],
  7297. "time": "2021-05-27T09:27:20+00:00"
  7298. },
  7299. {
  7300. "name": "symfony/polyfill-intl-grapheme",
  7301. "version": "v1.23.1",
  7302. "source": {
  7303. "type": "git",
  7304. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  7305. "reference": "16880ba9c5ebe3642d1995ab866db29270b36535"
  7306. },
  7307. "dist": {
  7308. "type": "zip",
  7309. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/16880ba9c5ebe3642d1995ab866db29270b36535",
  7310. "reference": "16880ba9c5ebe3642d1995ab866db29270b36535",
  7311. "shasum": ""
  7312. },
  7313. "require": {
  7314. "php": ">=7.1"
  7315. },
  7316. "suggest": {
  7317. "ext-intl": "For best performance"
  7318. },
  7319. "type": "library",
  7320. "extra": {
  7321. "branch-alias": {
  7322. "dev-main": "1.23-dev"
  7323. },
  7324. "thanks": {
  7325. "name": "symfony/polyfill",
  7326. "url": "https://github.com/symfony/polyfill"
  7327. }
  7328. },
  7329. "autoload": {
  7330. "psr-4": {
  7331. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  7332. },
  7333. "files": [
  7334. "bootstrap.php"
  7335. ]
  7336. },
  7337. "notification-url": "https://packagist.org/downloads/",
  7338. "license": [
  7339. "MIT"
  7340. ],
  7341. "authors": [
  7342. {
  7343. "name": "Nicolas Grekas",
  7344. "email": "p@tchwork.com"
  7345. },
  7346. {
  7347. "name": "Symfony Community",
  7348. "homepage": "https://symfony.com/contributors"
  7349. }
  7350. ],
  7351. "description": "Symfony polyfill for intl's grapheme_* functions",
  7352. "homepage": "https://symfony.com",
  7353. "keywords": [
  7354. "compatibility",
  7355. "grapheme",
  7356. "intl",
  7357. "polyfill",
  7358. "portable",
  7359. "shim"
  7360. ],
  7361. "support": {
  7362. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.23.1"
  7363. },
  7364. "funding": [
  7365. {
  7366. "url": "https://symfony.com/sponsor",
  7367. "type": "custom"
  7368. },
  7369. {
  7370. "url": "https://github.com/fabpot",
  7371. "type": "github"
  7372. },
  7373. {
  7374. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7375. "type": "tidelift"
  7376. }
  7377. ],
  7378. "time": "2021-05-27T12:26:48+00:00"
  7379. },
  7380. {
  7381. "name": "symfony/polyfill-intl-idn",
  7382. "version": "v1.23.0",
  7383. "source": {
  7384. "type": "git",
  7385. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  7386. "reference": "65bd267525e82759e7d8c4e8ceea44f398838e65"
  7387. },
  7388. "dist": {
  7389. "type": "zip",
  7390. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/65bd267525e82759e7d8c4e8ceea44f398838e65",
  7391. "reference": "65bd267525e82759e7d8c4e8ceea44f398838e65",
  7392. "shasum": ""
  7393. },
  7394. "require": {
  7395. "php": ">=7.1",
  7396. "symfony/polyfill-intl-normalizer": "^1.10",
  7397. "symfony/polyfill-php72": "^1.10"
  7398. },
  7399. "suggest": {
  7400. "ext-intl": "For best performance"
  7401. },
  7402. "type": "library",
  7403. "extra": {
  7404. "branch-alias": {
  7405. "dev-main": "1.23-dev"
  7406. },
  7407. "thanks": {
  7408. "name": "symfony/polyfill",
  7409. "url": "https://github.com/symfony/polyfill"
  7410. }
  7411. },
  7412. "autoload": {
  7413. "psr-4": {
  7414. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  7415. },
  7416. "files": [
  7417. "bootstrap.php"
  7418. ]
  7419. },
  7420. "notification-url": "https://packagist.org/downloads/",
  7421. "license": [
  7422. "MIT"
  7423. ],
  7424. "authors": [
  7425. {
  7426. "name": "Laurent Bassin",
  7427. "email": "laurent@bassin.info"
  7428. },
  7429. {
  7430. "name": "Trevor Rowbotham",
  7431. "email": "trevor.rowbotham@pm.me"
  7432. },
  7433. {
  7434. "name": "Symfony Community",
  7435. "homepage": "https://symfony.com/contributors"
  7436. }
  7437. ],
  7438. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  7439. "homepage": "https://symfony.com",
  7440. "keywords": [
  7441. "compatibility",
  7442. "idn",
  7443. "intl",
  7444. "polyfill",
  7445. "portable",
  7446. "shim"
  7447. ],
  7448. "support": {
  7449. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.23.0"
  7450. },
  7451. "funding": [
  7452. {
  7453. "url": "https://symfony.com/sponsor",
  7454. "type": "custom"
  7455. },
  7456. {
  7457. "url": "https://github.com/fabpot",
  7458. "type": "github"
  7459. },
  7460. {
  7461. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7462. "type": "tidelift"
  7463. }
  7464. ],
  7465. "time": "2021-05-27T09:27:20+00:00"
  7466. },
  7467. {
  7468. "name": "symfony/polyfill-intl-normalizer",
  7469. "version": "v1.23.0",
  7470. "source": {
  7471. "type": "git",
  7472. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  7473. "reference": "8590a5f561694770bdcd3f9b5c69dde6945028e8"
  7474. },
  7475. "dist": {
  7476. "type": "zip",
  7477. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/8590a5f561694770bdcd3f9b5c69dde6945028e8",
  7478. "reference": "8590a5f561694770bdcd3f9b5c69dde6945028e8",
  7479. "shasum": ""
  7480. },
  7481. "require": {
  7482. "php": ">=7.1"
  7483. },
  7484. "suggest": {
  7485. "ext-intl": "For best performance"
  7486. },
  7487. "type": "library",
  7488. "extra": {
  7489. "branch-alias": {
  7490. "dev-main": "1.23-dev"
  7491. },
  7492. "thanks": {
  7493. "name": "symfony/polyfill",
  7494. "url": "https://github.com/symfony/polyfill"
  7495. }
  7496. },
  7497. "autoload": {
  7498. "psr-4": {
  7499. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  7500. },
  7501. "files": [
  7502. "bootstrap.php"
  7503. ],
  7504. "classmap": [
  7505. "Resources/stubs"
  7506. ]
  7507. },
  7508. "notification-url": "https://packagist.org/downloads/",
  7509. "license": [
  7510. "MIT"
  7511. ],
  7512. "authors": [
  7513. {
  7514. "name": "Nicolas Grekas",
  7515. "email": "p@tchwork.com"
  7516. },
  7517. {
  7518. "name": "Symfony Community",
  7519. "homepage": "https://symfony.com/contributors"
  7520. }
  7521. ],
  7522. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  7523. "homepage": "https://symfony.com",
  7524. "keywords": [
  7525. "compatibility",
  7526. "intl",
  7527. "normalizer",
  7528. "polyfill",
  7529. "portable",
  7530. "shim"
  7531. ],
  7532. "support": {
  7533. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.23.0"
  7534. },
  7535. "funding": [
  7536. {
  7537. "url": "https://symfony.com/sponsor",
  7538. "type": "custom"
  7539. },
  7540. {
  7541. "url": "https://github.com/fabpot",
  7542. "type": "github"
  7543. },
  7544. {
  7545. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7546. "type": "tidelift"
  7547. }
  7548. ],
  7549. "time": "2021-02-19T12:13:01+00:00"
  7550. },
  7551. {
  7552. "name": "symfony/polyfill-mbstring",
  7553. "version": "v1.23.1",
  7554. "source": {
  7555. "type": "git",
  7556. "url": "https://github.com/symfony/polyfill-mbstring.git",
  7557. "reference": "9174a3d80210dca8daa7f31fec659150bbeabfc6"
  7558. },
  7559. "dist": {
  7560. "type": "zip",
  7561. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/9174a3d80210dca8daa7f31fec659150bbeabfc6",
  7562. "reference": "9174a3d80210dca8daa7f31fec659150bbeabfc6",
  7563. "shasum": ""
  7564. },
  7565. "require": {
  7566. "php": ">=7.1"
  7567. },
  7568. "suggest": {
  7569. "ext-mbstring": "For best performance"
  7570. },
  7571. "type": "library",
  7572. "extra": {
  7573. "branch-alias": {
  7574. "dev-main": "1.23-dev"
  7575. },
  7576. "thanks": {
  7577. "name": "symfony/polyfill",
  7578. "url": "https://github.com/symfony/polyfill"
  7579. }
  7580. },
  7581. "autoload": {
  7582. "psr-4": {
  7583. "Symfony\\Polyfill\\Mbstring\\": ""
  7584. },
  7585. "files": [
  7586. "bootstrap.php"
  7587. ]
  7588. },
  7589. "notification-url": "https://packagist.org/downloads/",
  7590. "license": [
  7591. "MIT"
  7592. ],
  7593. "authors": [
  7594. {
  7595. "name": "Nicolas Grekas",
  7596. "email": "p@tchwork.com"
  7597. },
  7598. {
  7599. "name": "Symfony Community",
  7600. "homepage": "https://symfony.com/contributors"
  7601. }
  7602. ],
  7603. "description": "Symfony polyfill for the Mbstring extension",
  7604. "homepage": "https://symfony.com",
  7605. "keywords": [
  7606. "compatibility",
  7607. "mbstring",
  7608. "polyfill",
  7609. "portable",
  7610. "shim"
  7611. ],
  7612. "support": {
  7613. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.23.1"
  7614. },
  7615. "funding": [
  7616. {
  7617. "url": "https://symfony.com/sponsor",
  7618. "type": "custom"
  7619. },
  7620. {
  7621. "url": "https://github.com/fabpot",
  7622. "type": "github"
  7623. },
  7624. {
  7625. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7626. "type": "tidelift"
  7627. }
  7628. ],
  7629. "time": "2021-05-27T12:26:48+00:00"
  7630. },
  7631. {
  7632. "name": "symfony/polyfill-php72",
  7633. "version": "v1.23.0",
  7634. "source": {
  7635. "type": "git",
  7636. "url": "https://github.com/symfony/polyfill-php72.git",
  7637. "reference": "9a142215a36a3888e30d0a9eeea9766764e96976"
  7638. },
  7639. "dist": {
  7640. "type": "zip",
  7641. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/9a142215a36a3888e30d0a9eeea9766764e96976",
  7642. "reference": "9a142215a36a3888e30d0a9eeea9766764e96976",
  7643. "shasum": ""
  7644. },
  7645. "require": {
  7646. "php": ">=7.1"
  7647. },
  7648. "type": "library",
  7649. "extra": {
  7650. "branch-alias": {
  7651. "dev-main": "1.23-dev"
  7652. },
  7653. "thanks": {
  7654. "name": "symfony/polyfill",
  7655. "url": "https://github.com/symfony/polyfill"
  7656. }
  7657. },
  7658. "autoload": {
  7659. "psr-4": {
  7660. "Symfony\\Polyfill\\Php72\\": ""
  7661. },
  7662. "files": [
  7663. "bootstrap.php"
  7664. ]
  7665. },
  7666. "notification-url": "https://packagist.org/downloads/",
  7667. "license": [
  7668. "MIT"
  7669. ],
  7670. "authors": [
  7671. {
  7672. "name": "Nicolas Grekas",
  7673. "email": "p@tchwork.com"
  7674. },
  7675. {
  7676. "name": "Symfony Community",
  7677. "homepage": "https://symfony.com/contributors"
  7678. }
  7679. ],
  7680. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  7681. "homepage": "https://symfony.com",
  7682. "keywords": [
  7683. "compatibility",
  7684. "polyfill",
  7685. "portable",
  7686. "shim"
  7687. ],
  7688. "support": {
  7689. "source": "https://github.com/symfony/polyfill-php72/tree/v1.23.0"
  7690. },
  7691. "funding": [
  7692. {
  7693. "url": "https://symfony.com/sponsor",
  7694. "type": "custom"
  7695. },
  7696. {
  7697. "url": "https://github.com/fabpot",
  7698. "type": "github"
  7699. },
  7700. {
  7701. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7702. "type": "tidelift"
  7703. }
  7704. ],
  7705. "time": "2021-05-27T09:17:38+00:00"
  7706. },
  7707. {
  7708. "name": "symfony/polyfill-php73",
  7709. "version": "v1.23.0",
  7710. "source": {
  7711. "type": "git",
  7712. "url": "https://github.com/symfony/polyfill-php73.git",
  7713. "reference": "fba8933c384d6476ab14fb7b8526e5287ca7e010"
  7714. },
  7715. "dist": {
  7716. "type": "zip",
  7717. "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/fba8933c384d6476ab14fb7b8526e5287ca7e010",
  7718. "reference": "fba8933c384d6476ab14fb7b8526e5287ca7e010",
  7719. "shasum": ""
  7720. },
  7721. "require": {
  7722. "php": ">=7.1"
  7723. },
  7724. "type": "library",
  7725. "extra": {
  7726. "branch-alias": {
  7727. "dev-main": "1.23-dev"
  7728. },
  7729. "thanks": {
  7730. "name": "symfony/polyfill",
  7731. "url": "https://github.com/symfony/polyfill"
  7732. }
  7733. },
  7734. "autoload": {
  7735. "psr-4": {
  7736. "Symfony\\Polyfill\\Php73\\": ""
  7737. },
  7738. "files": [
  7739. "bootstrap.php"
  7740. ],
  7741. "classmap": [
  7742. "Resources/stubs"
  7743. ]
  7744. },
  7745. "notification-url": "https://packagist.org/downloads/",
  7746. "license": [
  7747. "MIT"
  7748. ],
  7749. "authors": [
  7750. {
  7751. "name": "Nicolas Grekas",
  7752. "email": "p@tchwork.com"
  7753. },
  7754. {
  7755. "name": "Symfony Community",
  7756. "homepage": "https://symfony.com/contributors"
  7757. }
  7758. ],
  7759. "description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions",
  7760. "homepage": "https://symfony.com",
  7761. "keywords": [
  7762. "compatibility",
  7763. "polyfill",
  7764. "portable",
  7765. "shim"
  7766. ],
  7767. "support": {
  7768. "source": "https://github.com/symfony/polyfill-php73/tree/v1.23.0"
  7769. },
  7770. "funding": [
  7771. {
  7772. "url": "https://symfony.com/sponsor",
  7773. "type": "custom"
  7774. },
  7775. {
  7776. "url": "https://github.com/fabpot",
  7777. "type": "github"
  7778. },
  7779. {
  7780. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7781. "type": "tidelift"
  7782. }
  7783. ],
  7784. "time": "2021-02-19T12:13:01+00:00"
  7785. },
  7786. {
  7787. "name": "symfony/polyfill-php80",
  7788. "version": "v1.23.1",
  7789. "source": {
  7790. "type": "git",
  7791. "url": "https://github.com/symfony/polyfill-php80.git",
  7792. "reference": "1100343ed1a92e3a38f9ae122fc0eb21602547be"
  7793. },
  7794. "dist": {
  7795. "type": "zip",
  7796. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/1100343ed1a92e3a38f9ae122fc0eb21602547be",
  7797. "reference": "1100343ed1a92e3a38f9ae122fc0eb21602547be",
  7798. "shasum": ""
  7799. },
  7800. "require": {
  7801. "php": ">=7.1"
  7802. },
  7803. "type": "library",
  7804. "extra": {
  7805. "branch-alias": {
  7806. "dev-main": "1.23-dev"
  7807. },
  7808. "thanks": {
  7809. "name": "symfony/polyfill",
  7810. "url": "https://github.com/symfony/polyfill"
  7811. }
  7812. },
  7813. "autoload": {
  7814. "psr-4": {
  7815. "Symfony\\Polyfill\\Php80\\": ""
  7816. },
  7817. "files": [
  7818. "bootstrap.php"
  7819. ],
  7820. "classmap": [
  7821. "Resources/stubs"
  7822. ]
  7823. },
  7824. "notification-url": "https://packagist.org/downloads/",
  7825. "license": [
  7826. "MIT"
  7827. ],
  7828. "authors": [
  7829. {
  7830. "name": "Ion Bazan",
  7831. "email": "ion.bazan@gmail.com"
  7832. },
  7833. {
  7834. "name": "Nicolas Grekas",
  7835. "email": "p@tchwork.com"
  7836. },
  7837. {
  7838. "name": "Symfony Community",
  7839. "homepage": "https://symfony.com/contributors"
  7840. }
  7841. ],
  7842. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  7843. "homepage": "https://symfony.com",
  7844. "keywords": [
  7845. "compatibility",
  7846. "polyfill",
  7847. "portable",
  7848. "shim"
  7849. ],
  7850. "support": {
  7851. "source": "https://github.com/symfony/polyfill-php80/tree/v1.23.1"
  7852. },
  7853. "funding": [
  7854. {
  7855. "url": "https://symfony.com/sponsor",
  7856. "type": "custom"
  7857. },
  7858. {
  7859. "url": "https://github.com/fabpot",
  7860. "type": "github"
  7861. },
  7862. {
  7863. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7864. "type": "tidelift"
  7865. }
  7866. ],
  7867. "time": "2021-07-28T13:41:28+00:00"
  7868. },
  7869. {
  7870. "name": "symfony/polyfill-php81",
  7871. "version": "v1.23.0",
  7872. "source": {
  7873. "type": "git",
  7874. "url": "https://github.com/symfony/polyfill-php81.git",
  7875. "reference": "e66119f3de95efc359483f810c4c3e6436279436"
  7876. },
  7877. "dist": {
  7878. "type": "zip",
  7879. "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/e66119f3de95efc359483f810c4c3e6436279436",
  7880. "reference": "e66119f3de95efc359483f810c4c3e6436279436",
  7881. "shasum": ""
  7882. },
  7883. "require": {
  7884. "php": ">=7.1"
  7885. },
  7886. "type": "library",
  7887. "extra": {
  7888. "branch-alias": {
  7889. "dev-main": "1.23-dev"
  7890. },
  7891. "thanks": {
  7892. "name": "symfony/polyfill",
  7893. "url": "https://github.com/symfony/polyfill"
  7894. }
  7895. },
  7896. "autoload": {
  7897. "psr-4": {
  7898. "Symfony\\Polyfill\\Php81\\": ""
  7899. },
  7900. "files": [
  7901. "bootstrap.php"
  7902. ],
  7903. "classmap": [
  7904. "Resources/stubs"
  7905. ]
  7906. },
  7907. "notification-url": "https://packagist.org/downloads/",
  7908. "license": [
  7909. "MIT"
  7910. ],
  7911. "authors": [
  7912. {
  7913. "name": "Nicolas Grekas",
  7914. "email": "p@tchwork.com"
  7915. },
  7916. {
  7917. "name": "Symfony Community",
  7918. "homepage": "https://symfony.com/contributors"
  7919. }
  7920. ],
  7921. "description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions",
  7922. "homepage": "https://symfony.com",
  7923. "keywords": [
  7924. "compatibility",
  7925. "polyfill",
  7926. "portable",
  7927. "shim"
  7928. ],
  7929. "support": {
  7930. "source": "https://github.com/symfony/polyfill-php81/tree/v1.23.0"
  7931. },
  7932. "funding": [
  7933. {
  7934. "url": "https://symfony.com/sponsor",
  7935. "type": "custom"
  7936. },
  7937. {
  7938. "url": "https://github.com/fabpot",
  7939. "type": "github"
  7940. },
  7941. {
  7942. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7943. "type": "tidelift"
  7944. }
  7945. ],
  7946. "time": "2021-05-21T13:25:03+00:00"
  7947. },
  7948. {
  7949. "name": "symfony/process",
  7950. "version": "v5.4.2",
  7951. "source": {
  7952. "type": "git",
  7953. "url": "https://github.com/symfony/process.git",
  7954. "reference": "2b3ba8722c4aaf3e88011be5e7f48710088fb5e4"
  7955. },
  7956. "dist": {
  7957. "type": "zip",
  7958. "url": "https://api.github.com/repos/symfony/process/zipball/2b3ba8722c4aaf3e88011be5e7f48710088fb5e4",
  7959. "reference": "2b3ba8722c4aaf3e88011be5e7f48710088fb5e4",
  7960. "shasum": ""
  7961. },
  7962. "require": {
  7963. "php": ">=7.2.5",
  7964. "symfony/polyfill-php80": "^1.16"
  7965. },
  7966. "type": "library",
  7967. "autoload": {
  7968. "psr-4": {
  7969. "Symfony\\Component\\Process\\": ""
  7970. },
  7971. "exclude-from-classmap": [
  7972. "/Tests/"
  7973. ]
  7974. },
  7975. "notification-url": "https://packagist.org/downloads/",
  7976. "license": [
  7977. "MIT"
  7978. ],
  7979. "authors": [
  7980. {
  7981. "name": "Fabien Potencier",
  7982. "email": "fabien@symfony.com"
  7983. },
  7984. {
  7985. "name": "Symfony Community",
  7986. "homepage": "https://symfony.com/contributors"
  7987. }
  7988. ],
  7989. "description": "Executes commands in sub-processes",
  7990. "homepage": "https://symfony.com",
  7991. "support": {
  7992. "source": "https://github.com/symfony/process/tree/v5.4.2"
  7993. },
  7994. "funding": [
  7995. {
  7996. "url": "https://symfony.com/sponsor",
  7997. "type": "custom"
  7998. },
  7999. {
  8000. "url": "https://github.com/fabpot",
  8001. "type": "github"
  8002. },
  8003. {
  8004. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8005. "type": "tidelift"
  8006. }
  8007. ],
  8008. "time": "2021-12-27T21:01:00+00:00"
  8009. },
  8010. {
  8011. "name": "symfony/psr-http-message-bridge",
  8012. "version": "v2.1.2",
  8013. "source": {
  8014. "type": "git",
  8015. "url": "https://github.com/symfony/psr-http-message-bridge.git",
  8016. "reference": "22b37c8a3f6b5d94e9cdbd88e1270d96e2f97b34"
  8017. },
  8018. "dist": {
  8019. "type": "zip",
  8020. "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/22b37c8a3f6b5d94e9cdbd88e1270d96e2f97b34",
  8021. "reference": "22b37c8a3f6b5d94e9cdbd88e1270d96e2f97b34",
  8022. "shasum": ""
  8023. },
  8024. "require": {
  8025. "php": ">=7.1",
  8026. "psr/http-message": "^1.0",
  8027. "symfony/http-foundation": "^4.4 || ^5.0 || ^6.0"
  8028. },
  8029. "require-dev": {
  8030. "nyholm/psr7": "^1.1",
  8031. "psr/log": "^1.1 || ^2 || ^3",
  8032. "symfony/browser-kit": "^4.4 || ^5.0 || ^6.0",
  8033. "symfony/config": "^4.4 || ^5.0 || ^6.0",
  8034. "symfony/event-dispatcher": "^4.4 || ^5.0 || ^6.0",
  8035. "symfony/framework-bundle": "^4.4 || ^5.0 || ^6.0",
  8036. "symfony/http-kernel": "^4.4 || ^5.0 || ^6.0",
  8037. "symfony/phpunit-bridge": "^5.4@dev || ^6.0"
  8038. },
  8039. "suggest": {
  8040. "nyholm/psr7": "For a super lightweight PSR-7/17 implementation"
  8041. },
  8042. "type": "symfony-bridge",
  8043. "extra": {
  8044. "branch-alias": {
  8045. "dev-main": "2.1-dev"
  8046. }
  8047. },
  8048. "autoload": {
  8049. "psr-4": {
  8050. "Symfony\\Bridge\\PsrHttpMessage\\": ""
  8051. },
  8052. "exclude-from-classmap": [
  8053. "/Tests/"
  8054. ]
  8055. },
  8056. "notification-url": "https://packagist.org/downloads/",
  8057. "license": [
  8058. "MIT"
  8059. ],
  8060. "authors": [
  8061. {
  8062. "name": "Fabien Potencier",
  8063. "email": "fabien@symfony.com"
  8064. },
  8065. {
  8066. "name": "Symfony Community",
  8067. "homepage": "http://symfony.com/contributors"
  8068. }
  8069. ],
  8070. "description": "PSR HTTP message bridge",
  8071. "homepage": "http://symfony.com",
  8072. "keywords": [
  8073. "http",
  8074. "http-message",
  8075. "psr-17",
  8076. "psr-7"
  8077. ],
  8078. "support": {
  8079. "issues": "https://github.com/symfony/psr-http-message-bridge/issues",
  8080. "source": "https://github.com/symfony/psr-http-message-bridge/tree/v2.1.2"
  8081. },
  8082. "funding": [
  8083. {
  8084. "url": "https://symfony.com/sponsor",
  8085. "type": "custom"
  8086. },
  8087. {
  8088. "url": "https://github.com/fabpot",
  8089. "type": "github"
  8090. },
  8091. {
  8092. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8093. "type": "tidelift"
  8094. }
  8095. ],
  8096. "time": "2021-11-05T13:13:39+00:00"
  8097. },
  8098. {
  8099. "name": "symfony/routing",
  8100. "version": "v5.4.0",
  8101. "source": {
  8102. "type": "git",
  8103. "url": "https://github.com/symfony/routing.git",
  8104. "reference": "9eeae93c32ca86746e5d38f3679e9569981038b1"
  8105. },
  8106. "dist": {
  8107. "type": "zip",
  8108. "url": "https://api.github.com/repos/symfony/routing/zipball/9eeae93c32ca86746e5d38f3679e9569981038b1",
  8109. "reference": "9eeae93c32ca86746e5d38f3679e9569981038b1",
  8110. "shasum": ""
  8111. },
  8112. "require": {
  8113. "php": ">=7.2.5",
  8114. "symfony/deprecation-contracts": "^2.1|^3",
  8115. "symfony/polyfill-php80": "^1.16"
  8116. },
  8117. "conflict": {
  8118. "doctrine/annotations": "<1.12",
  8119. "symfony/config": "<5.3",
  8120. "symfony/dependency-injection": "<4.4",
  8121. "symfony/yaml": "<4.4"
  8122. },
  8123. "require-dev": {
  8124. "doctrine/annotations": "^1.12",
  8125. "psr/log": "^1|^2|^3",
  8126. "symfony/config": "^5.3|^6.0",
  8127. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  8128. "symfony/expression-language": "^4.4|^5.0|^6.0",
  8129. "symfony/http-foundation": "^4.4|^5.0|^6.0",
  8130. "symfony/yaml": "^4.4|^5.0|^6.0"
  8131. },
  8132. "suggest": {
  8133. "symfony/config": "For using the all-in-one router or any loader",
  8134. "symfony/expression-language": "For using expression matching",
  8135. "symfony/http-foundation": "For using a Symfony Request object",
  8136. "symfony/yaml": "For using the YAML loader"
  8137. },
  8138. "type": "library",
  8139. "autoload": {
  8140. "psr-4": {
  8141. "Symfony\\Component\\Routing\\": ""
  8142. },
  8143. "exclude-from-classmap": [
  8144. "/Tests/"
  8145. ]
  8146. },
  8147. "notification-url": "https://packagist.org/downloads/",
  8148. "license": [
  8149. "MIT"
  8150. ],
  8151. "authors": [
  8152. {
  8153. "name": "Fabien Potencier",
  8154. "email": "fabien@symfony.com"
  8155. },
  8156. {
  8157. "name": "Symfony Community",
  8158. "homepage": "https://symfony.com/contributors"
  8159. }
  8160. ],
  8161. "description": "Maps an HTTP request to a set of configuration variables",
  8162. "homepage": "https://symfony.com",
  8163. "keywords": [
  8164. "router",
  8165. "routing",
  8166. "uri",
  8167. "url"
  8168. ],
  8169. "support": {
  8170. "source": "https://github.com/symfony/routing/tree/v5.4.0"
  8171. },
  8172. "funding": [
  8173. {
  8174. "url": "https://symfony.com/sponsor",
  8175. "type": "custom"
  8176. },
  8177. {
  8178. "url": "https://github.com/fabpot",
  8179. "type": "github"
  8180. },
  8181. {
  8182. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8183. "type": "tidelift"
  8184. }
  8185. ],
  8186. "time": "2021-11-23T10:19:22+00:00"
  8187. },
  8188. {
  8189. "name": "symfony/service-contracts",
  8190. "version": "v2.5.0",
  8191. "source": {
  8192. "type": "git",
  8193. "url": "https://github.com/symfony/service-contracts.git",
  8194. "reference": "1ab11b933cd6bc5464b08e81e2c5b07dec58b0fc"
  8195. },
  8196. "dist": {
  8197. "type": "zip",
  8198. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/1ab11b933cd6bc5464b08e81e2c5b07dec58b0fc",
  8199. "reference": "1ab11b933cd6bc5464b08e81e2c5b07dec58b0fc",
  8200. "shasum": ""
  8201. },
  8202. "require": {
  8203. "php": ">=7.2.5",
  8204. "psr/container": "^1.1",
  8205. "symfony/deprecation-contracts": "^2.1"
  8206. },
  8207. "conflict": {
  8208. "ext-psr": "<1.1|>=2"
  8209. },
  8210. "suggest": {
  8211. "symfony/service-implementation": ""
  8212. },
  8213. "type": "library",
  8214. "extra": {
  8215. "branch-alias": {
  8216. "dev-main": "2.5-dev"
  8217. },
  8218. "thanks": {
  8219. "name": "symfony/contracts",
  8220. "url": "https://github.com/symfony/contracts"
  8221. }
  8222. },
  8223. "autoload": {
  8224. "psr-4": {
  8225. "Symfony\\Contracts\\Service\\": ""
  8226. }
  8227. },
  8228. "notification-url": "https://packagist.org/downloads/",
  8229. "license": [
  8230. "MIT"
  8231. ],
  8232. "authors": [
  8233. {
  8234. "name": "Nicolas Grekas",
  8235. "email": "p@tchwork.com"
  8236. },
  8237. {
  8238. "name": "Symfony Community",
  8239. "homepage": "https://symfony.com/contributors"
  8240. }
  8241. ],
  8242. "description": "Generic abstractions related to writing services",
  8243. "homepage": "https://symfony.com",
  8244. "keywords": [
  8245. "abstractions",
  8246. "contracts",
  8247. "decoupling",
  8248. "interfaces",
  8249. "interoperability",
  8250. "standards"
  8251. ],
  8252. "support": {
  8253. "source": "https://github.com/symfony/service-contracts/tree/v2.5.0"
  8254. },
  8255. "funding": [
  8256. {
  8257. "url": "https://symfony.com/sponsor",
  8258. "type": "custom"
  8259. },
  8260. {
  8261. "url": "https://github.com/fabpot",
  8262. "type": "github"
  8263. },
  8264. {
  8265. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8266. "type": "tidelift"
  8267. }
  8268. ],
  8269. "time": "2021-11-04T16:48:04+00:00"
  8270. },
  8271. {
  8272. "name": "symfony/string",
  8273. "version": "v5.4.2",
  8274. "source": {
  8275. "type": "git",
  8276. "url": "https://github.com/symfony/string.git",
  8277. "reference": "e6a5d5ecf6589c5247d18e0e74e30b11dfd51a3d"
  8278. },
  8279. "dist": {
  8280. "type": "zip",
  8281. "url": "https://api.github.com/repos/symfony/string/zipball/e6a5d5ecf6589c5247d18e0e74e30b11dfd51a3d",
  8282. "reference": "e6a5d5ecf6589c5247d18e0e74e30b11dfd51a3d",
  8283. "shasum": ""
  8284. },
  8285. "require": {
  8286. "php": ">=7.2.5",
  8287. "symfony/polyfill-ctype": "~1.8",
  8288. "symfony/polyfill-intl-grapheme": "~1.0",
  8289. "symfony/polyfill-intl-normalizer": "~1.0",
  8290. "symfony/polyfill-mbstring": "~1.0",
  8291. "symfony/polyfill-php80": "~1.15"
  8292. },
  8293. "conflict": {
  8294. "symfony/translation-contracts": ">=3.0"
  8295. },
  8296. "require-dev": {
  8297. "symfony/error-handler": "^4.4|^5.0|^6.0",
  8298. "symfony/http-client": "^4.4|^5.0|^6.0",
  8299. "symfony/translation-contracts": "^1.1|^2",
  8300. "symfony/var-exporter": "^4.4|^5.0|^6.0"
  8301. },
  8302. "type": "library",
  8303. "autoload": {
  8304. "psr-4": {
  8305. "Symfony\\Component\\String\\": ""
  8306. },
  8307. "files": [
  8308. "Resources/functions.php"
  8309. ],
  8310. "exclude-from-classmap": [
  8311. "/Tests/"
  8312. ]
  8313. },
  8314. "notification-url": "https://packagist.org/downloads/",
  8315. "license": [
  8316. "MIT"
  8317. ],
  8318. "authors": [
  8319. {
  8320. "name": "Nicolas Grekas",
  8321. "email": "p@tchwork.com"
  8322. },
  8323. {
  8324. "name": "Symfony Community",
  8325. "homepage": "https://symfony.com/contributors"
  8326. }
  8327. ],
  8328. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  8329. "homepage": "https://symfony.com",
  8330. "keywords": [
  8331. "grapheme",
  8332. "i18n",
  8333. "string",
  8334. "unicode",
  8335. "utf-8",
  8336. "utf8"
  8337. ],
  8338. "support": {
  8339. "source": "https://github.com/symfony/string/tree/v5.4.2"
  8340. },
  8341. "funding": [
  8342. {
  8343. "url": "https://symfony.com/sponsor",
  8344. "type": "custom"
  8345. },
  8346. {
  8347. "url": "https://github.com/fabpot",
  8348. "type": "github"
  8349. },
  8350. {
  8351. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8352. "type": "tidelift"
  8353. }
  8354. ],
  8355. "time": "2021-12-16T21:52:00+00:00"
  8356. },
  8357. {
  8358. "name": "symfony/translation",
  8359. "version": "v5.4.2",
  8360. "source": {
  8361. "type": "git",
  8362. "url": "https://github.com/symfony/translation.git",
  8363. "reference": "ff8bb2107b6a549dc3c5dd9c498dcc82c9c098ca"
  8364. },
  8365. "dist": {
  8366. "type": "zip",
  8367. "url": "https://api.github.com/repos/symfony/translation/zipball/ff8bb2107b6a549dc3c5dd9c498dcc82c9c098ca",
  8368. "reference": "ff8bb2107b6a549dc3c5dd9c498dcc82c9c098ca",
  8369. "shasum": ""
  8370. },
  8371. "require": {
  8372. "php": ">=7.2.5",
  8373. "symfony/deprecation-contracts": "^2.1|^3",
  8374. "symfony/polyfill-mbstring": "~1.0",
  8375. "symfony/polyfill-php80": "^1.16",
  8376. "symfony/translation-contracts": "^2.3"
  8377. },
  8378. "conflict": {
  8379. "symfony/config": "<4.4",
  8380. "symfony/console": "<5.3",
  8381. "symfony/dependency-injection": "<5.0",
  8382. "symfony/http-kernel": "<5.0",
  8383. "symfony/twig-bundle": "<5.0",
  8384. "symfony/yaml": "<4.4"
  8385. },
  8386. "provide": {
  8387. "symfony/translation-implementation": "2.3"
  8388. },
  8389. "require-dev": {
  8390. "psr/log": "^1|^2|^3",
  8391. "symfony/config": "^4.4|^5.0|^6.0",
  8392. "symfony/console": "^5.4|^6.0",
  8393. "symfony/dependency-injection": "^5.0|^6.0",
  8394. "symfony/finder": "^4.4|^5.0|^6.0",
  8395. "symfony/http-client-contracts": "^1.1|^2.0|^3.0",
  8396. "symfony/http-kernel": "^5.0|^6.0",
  8397. "symfony/intl": "^4.4|^5.0|^6.0",
  8398. "symfony/polyfill-intl-icu": "^1.21",
  8399. "symfony/service-contracts": "^1.1.2|^2|^3",
  8400. "symfony/yaml": "^4.4|^5.0|^6.0"
  8401. },
  8402. "suggest": {
  8403. "psr/log-implementation": "To use logging capability in translator",
  8404. "symfony/config": "",
  8405. "symfony/yaml": ""
  8406. },
  8407. "type": "library",
  8408. "autoload": {
  8409. "files": [
  8410. "Resources/functions.php"
  8411. ],
  8412. "psr-4": {
  8413. "Symfony\\Component\\Translation\\": ""
  8414. },
  8415. "exclude-from-classmap": [
  8416. "/Tests/"
  8417. ]
  8418. },
  8419. "notification-url": "https://packagist.org/downloads/",
  8420. "license": [
  8421. "MIT"
  8422. ],
  8423. "authors": [
  8424. {
  8425. "name": "Fabien Potencier",
  8426. "email": "fabien@symfony.com"
  8427. },
  8428. {
  8429. "name": "Symfony Community",
  8430. "homepage": "https://symfony.com/contributors"
  8431. }
  8432. ],
  8433. "description": "Provides tools to internationalize your application",
  8434. "homepage": "https://symfony.com",
  8435. "support": {
  8436. "source": "https://github.com/symfony/translation/tree/v5.4.2"
  8437. },
  8438. "funding": [
  8439. {
  8440. "url": "https://symfony.com/sponsor",
  8441. "type": "custom"
  8442. },
  8443. {
  8444. "url": "https://github.com/fabpot",
  8445. "type": "github"
  8446. },
  8447. {
  8448. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8449. "type": "tidelift"
  8450. }
  8451. ],
  8452. "time": "2021-12-25T19:45:36+00:00"
  8453. },
  8454. {
  8455. "name": "symfony/translation-contracts",
  8456. "version": "v2.5.0",
  8457. "source": {
  8458. "type": "git",
  8459. "url": "https://github.com/symfony/translation-contracts.git",
  8460. "reference": "d28150f0f44ce854e942b671fc2620a98aae1b1e"
  8461. },
  8462. "dist": {
  8463. "type": "zip",
  8464. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/d28150f0f44ce854e942b671fc2620a98aae1b1e",
  8465. "reference": "d28150f0f44ce854e942b671fc2620a98aae1b1e",
  8466. "shasum": ""
  8467. },
  8468. "require": {
  8469. "php": ">=7.2.5"
  8470. },
  8471. "suggest": {
  8472. "symfony/translation-implementation": ""
  8473. },
  8474. "type": "library",
  8475. "extra": {
  8476. "branch-alias": {
  8477. "dev-main": "2.5-dev"
  8478. },
  8479. "thanks": {
  8480. "name": "symfony/contracts",
  8481. "url": "https://github.com/symfony/contracts"
  8482. }
  8483. },
  8484. "autoload": {
  8485. "psr-4": {
  8486. "Symfony\\Contracts\\Translation\\": ""
  8487. }
  8488. },
  8489. "notification-url": "https://packagist.org/downloads/",
  8490. "license": [
  8491. "MIT"
  8492. ],
  8493. "authors": [
  8494. {
  8495. "name": "Nicolas Grekas",
  8496. "email": "p@tchwork.com"
  8497. },
  8498. {
  8499. "name": "Symfony Community",
  8500. "homepage": "https://symfony.com/contributors"
  8501. }
  8502. ],
  8503. "description": "Generic abstractions related to translation",
  8504. "homepage": "https://symfony.com",
  8505. "keywords": [
  8506. "abstractions",
  8507. "contracts",
  8508. "decoupling",
  8509. "interfaces",
  8510. "interoperability",
  8511. "standards"
  8512. ],
  8513. "support": {
  8514. "source": "https://github.com/symfony/translation-contracts/tree/v2.5.0"
  8515. },
  8516. "funding": [
  8517. {
  8518. "url": "https://symfony.com/sponsor",
  8519. "type": "custom"
  8520. },
  8521. {
  8522. "url": "https://github.com/fabpot",
  8523. "type": "github"
  8524. },
  8525. {
  8526. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8527. "type": "tidelift"
  8528. }
  8529. ],
  8530. "time": "2021-08-17T14:20:01+00:00"
  8531. },
  8532. {
  8533. "name": "symfony/var-dumper",
  8534. "version": "v5.4.2",
  8535. "source": {
  8536. "type": "git",
  8537. "url": "https://github.com/symfony/var-dumper.git",
  8538. "reference": "1b56c32c3679002b3a42384a580e16e2600f41c1"
  8539. },
  8540. "dist": {
  8541. "type": "zip",
  8542. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/1b56c32c3679002b3a42384a580e16e2600f41c1",
  8543. "reference": "1b56c32c3679002b3a42384a580e16e2600f41c1",
  8544. "shasum": ""
  8545. },
  8546. "require": {
  8547. "php": ">=7.2.5",
  8548. "symfony/polyfill-mbstring": "~1.0",
  8549. "symfony/polyfill-php80": "^1.16"
  8550. },
  8551. "conflict": {
  8552. "phpunit/phpunit": "<5.4.3",
  8553. "symfony/console": "<4.4"
  8554. },
  8555. "require-dev": {
  8556. "ext-iconv": "*",
  8557. "symfony/console": "^4.4|^5.0|^6.0",
  8558. "symfony/process": "^4.4|^5.0|^6.0",
  8559. "symfony/uid": "^5.1|^6.0",
  8560. "twig/twig": "^2.13|^3.0.4"
  8561. },
  8562. "suggest": {
  8563. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  8564. "ext-intl": "To show region name in time zone dump",
  8565. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  8566. },
  8567. "bin": [
  8568. "Resources/bin/var-dump-server"
  8569. ],
  8570. "type": "library",
  8571. "autoload": {
  8572. "files": [
  8573. "Resources/functions/dump.php"
  8574. ],
  8575. "psr-4": {
  8576. "Symfony\\Component\\VarDumper\\": ""
  8577. },
  8578. "exclude-from-classmap": [
  8579. "/Tests/"
  8580. ]
  8581. },
  8582. "notification-url": "https://packagist.org/downloads/",
  8583. "license": [
  8584. "MIT"
  8585. ],
  8586. "authors": [
  8587. {
  8588. "name": "Nicolas Grekas",
  8589. "email": "p@tchwork.com"
  8590. },
  8591. {
  8592. "name": "Symfony Community",
  8593. "homepage": "https://symfony.com/contributors"
  8594. }
  8595. ],
  8596. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  8597. "homepage": "https://symfony.com",
  8598. "keywords": [
  8599. "debug",
  8600. "dump"
  8601. ],
  8602. "support": {
  8603. "source": "https://github.com/symfony/var-dumper/tree/v5.4.2"
  8604. },
  8605. "funding": [
  8606. {
  8607. "url": "https://symfony.com/sponsor",
  8608. "type": "custom"
  8609. },
  8610. {
  8611. "url": "https://github.com/fabpot",
  8612. "type": "github"
  8613. },
  8614. {
  8615. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8616. "type": "tidelift"
  8617. }
  8618. ],
  8619. "time": "2021-12-29T10:10:35+00:00"
  8620. },
  8621. {
  8622. "name": "symfony/var-exporter",
  8623. "version": "v5.4.2",
  8624. "source": {
  8625. "type": "git",
  8626. "url": "https://github.com/symfony/var-exporter.git",
  8627. "reference": "2360c8525815b8535caac27cbc1994e2fa8644ba"
  8628. },
  8629. "dist": {
  8630. "type": "zip",
  8631. "url": "https://api.github.com/repos/symfony/var-exporter/zipball/2360c8525815b8535caac27cbc1994e2fa8644ba",
  8632. "reference": "2360c8525815b8535caac27cbc1994e2fa8644ba",
  8633. "shasum": ""
  8634. },
  8635. "require": {
  8636. "php": ">=7.2.5",
  8637. "symfony/polyfill-php80": "^1.16"
  8638. },
  8639. "require-dev": {
  8640. "symfony/var-dumper": "^4.4.9|^5.0.9|^6.0"
  8641. },
  8642. "type": "library",
  8643. "autoload": {
  8644. "psr-4": {
  8645. "Symfony\\Component\\VarExporter\\": ""
  8646. },
  8647. "exclude-from-classmap": [
  8648. "/Tests/"
  8649. ]
  8650. },
  8651. "notification-url": "https://packagist.org/downloads/",
  8652. "license": [
  8653. "MIT"
  8654. ],
  8655. "authors": [
  8656. {
  8657. "name": "Nicolas Grekas",
  8658. "email": "p@tchwork.com"
  8659. },
  8660. {
  8661. "name": "Symfony Community",
  8662. "homepage": "https://symfony.com/contributors"
  8663. }
  8664. ],
  8665. "description": "Allows exporting any serializable PHP data structure to plain PHP code",
  8666. "homepage": "https://symfony.com",
  8667. "keywords": [
  8668. "clone",
  8669. "construct",
  8670. "export",
  8671. "hydrate",
  8672. "instantiate",
  8673. "serialize"
  8674. ],
  8675. "support": {
  8676. "source": "https://github.com/symfony/var-exporter/tree/v5.4.2"
  8677. },
  8678. "funding": [
  8679. {
  8680. "url": "https://symfony.com/sponsor",
  8681. "type": "custom"
  8682. },
  8683. {
  8684. "url": "https://github.com/fabpot",
  8685. "type": "github"
  8686. },
  8687. {
  8688. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8689. "type": "tidelift"
  8690. }
  8691. ],
  8692. "time": "2021-12-16T21:58:21+00:00"
  8693. },
  8694. {
  8695. "name": "tightenco/collect",
  8696. "version": "v5.6.33",
  8697. "source": {
  8698. "type": "git",
  8699. "url": "https://github.com/tighten/collect.git",
  8700. "reference": "d7381736dca44ac17d0805a25191b094e5a22446"
  8701. },
  8702. "dist": {
  8703. "type": "zip",
  8704. "url": "https://api.github.com/repos/tighten/collect/zipball/d7381736dca44ac17d0805a25191b094e5a22446",
  8705. "reference": "d7381736dca44ac17d0805a25191b094e5a22446",
  8706. "shasum": ""
  8707. },
  8708. "require": {
  8709. "php": ">=7.1.3",
  8710. "symfony/var-dumper": ">=3.1.10"
  8711. },
  8712. "require-dev": {
  8713. "mockery/mockery": "~1.0",
  8714. "nesbot/carbon": "~1.20",
  8715. "phpunit/phpunit": "~7.0"
  8716. },
  8717. "type": "library",
  8718. "autoload": {
  8719. "files": [
  8720. "src/Collect/Support/helpers.php",
  8721. "src/Collect/Support/alias.php"
  8722. ],
  8723. "psr-4": {
  8724. "Tightenco\\Collect\\": "src/Collect"
  8725. }
  8726. },
  8727. "notification-url": "https://packagist.org/downloads/",
  8728. "license": [
  8729. "MIT"
  8730. ],
  8731. "authors": [
  8732. {
  8733. "name": "Taylor Otwell",
  8734. "email": "taylorotwell@gmail.com"
  8735. }
  8736. ],
  8737. "description": "Collect - Illuminate Collections as a separate package.",
  8738. "keywords": [
  8739. "collection",
  8740. "laravel"
  8741. ],
  8742. "support": {
  8743. "issues": "https://github.com/tighten/collect/issues",
  8744. "source": "https://github.com/tighten/collect/tree/v5.6.33"
  8745. },
  8746. "time": "2018-08-09T16:56:26+00:00"
  8747. },
  8748. {
  8749. "name": "tijsverkoyen/css-to-inline-styles",
  8750. "version": "2.2.4",
  8751. "source": {
  8752. "type": "git",
  8753. "url": "https://github.com/tijsverkoyen/CssToInlineStyles.git",
  8754. "reference": "da444caae6aca7a19c0c140f68c6182e337d5b1c"
  8755. },
  8756. "dist": {
  8757. "type": "zip",
  8758. "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/da444caae6aca7a19c0c140f68c6182e337d5b1c",
  8759. "reference": "da444caae6aca7a19c0c140f68c6182e337d5b1c",
  8760. "shasum": ""
  8761. },
  8762. "require": {
  8763. "ext-dom": "*",
  8764. "ext-libxml": "*",
  8765. "php": "^5.5 || ^7.0 || ^8.0",
  8766. "symfony/css-selector": "^2.7 || ^3.0 || ^4.0 || ^5.0 || ^6.0"
  8767. },
  8768. "require-dev": {
  8769. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0 || ^7.5 || ^8.5.21 || ^9.5.10"
  8770. },
  8771. "type": "library",
  8772. "extra": {
  8773. "branch-alias": {
  8774. "dev-master": "2.2.x-dev"
  8775. }
  8776. },
  8777. "autoload": {
  8778. "psr-4": {
  8779. "TijsVerkoyen\\CssToInlineStyles\\": "src"
  8780. }
  8781. },
  8782. "notification-url": "https://packagist.org/downloads/",
  8783. "license": [
  8784. "BSD-3-Clause"
  8785. ],
  8786. "authors": [
  8787. {
  8788. "name": "Tijs Verkoyen",
  8789. "email": "css_to_inline_styles@verkoyen.eu",
  8790. "role": "Developer"
  8791. }
  8792. ],
  8793. "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.",
  8794. "homepage": "https://github.com/tijsverkoyen/CssToInlineStyles",
  8795. "support": {
  8796. "issues": "https://github.com/tijsverkoyen/CssToInlineStyles/issues",
  8797. "source": "https://github.com/tijsverkoyen/CssToInlineStyles/tree/2.2.4"
  8798. },
  8799. "time": "2021-12-08T09:12:39+00:00"
  8800. },
  8801. {
  8802. "name": "vlucas/phpdotenv",
  8803. "version": "v5.4.1",
  8804. "source": {
  8805. "type": "git",
  8806. "url": "https://github.com/vlucas/phpdotenv.git",
  8807. "reference": "264dce589e7ce37a7ba99cb901eed8249fbec92f"
  8808. },
  8809. "dist": {
  8810. "type": "zip",
  8811. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/264dce589e7ce37a7ba99cb901eed8249fbec92f",
  8812. "reference": "264dce589e7ce37a7ba99cb901eed8249fbec92f",
  8813. "shasum": ""
  8814. },
  8815. "require": {
  8816. "ext-pcre": "*",
  8817. "graham-campbell/result-type": "^1.0.2",
  8818. "php": "^7.1.3 || ^8.0",
  8819. "phpoption/phpoption": "^1.8",
  8820. "symfony/polyfill-ctype": "^1.23",
  8821. "symfony/polyfill-mbstring": "^1.23.1",
  8822. "symfony/polyfill-php80": "^1.23.1"
  8823. },
  8824. "require-dev": {
  8825. "bamarni/composer-bin-plugin": "^1.4.1",
  8826. "ext-filter": "*",
  8827. "phpunit/phpunit": "^7.5.20 || ^8.5.21 || ^9.5.10"
  8828. },
  8829. "suggest": {
  8830. "ext-filter": "Required to use the boolean validator."
  8831. },
  8832. "type": "library",
  8833. "extra": {
  8834. "branch-alias": {
  8835. "dev-master": "5.4-dev"
  8836. }
  8837. },
  8838. "autoload": {
  8839. "psr-4": {
  8840. "Dotenv\\": "src/"
  8841. }
  8842. },
  8843. "notification-url": "https://packagist.org/downloads/",
  8844. "license": [
  8845. "BSD-3-Clause"
  8846. ],
  8847. "authors": [
  8848. {
  8849. "name": "Graham Campbell",
  8850. "email": "hello@gjcampbell.co.uk",
  8851. "homepage": "https://github.com/GrahamCampbell"
  8852. },
  8853. {
  8854. "name": "Vance Lucas",
  8855. "email": "vance@vancelucas.com",
  8856. "homepage": "https://github.com/vlucas"
  8857. }
  8858. ],
  8859. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  8860. "keywords": [
  8861. "dotenv",
  8862. "env",
  8863. "environment"
  8864. ],
  8865. "support": {
  8866. "issues": "https://github.com/vlucas/phpdotenv/issues",
  8867. "source": "https://github.com/vlucas/phpdotenv/tree/v5.4.1"
  8868. },
  8869. "funding": [
  8870. {
  8871. "url": "https://github.com/GrahamCampbell",
  8872. "type": "github"
  8873. },
  8874. {
  8875. "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
  8876. "type": "tidelift"
  8877. }
  8878. ],
  8879. "time": "2021-12-12T23:22:04+00:00"
  8880. },
  8881. {
  8882. "name": "voku/portable-ascii",
  8883. "version": "1.5.6",
  8884. "source": {
  8885. "type": "git",
  8886. "url": "https://github.com/voku/portable-ascii.git",
  8887. "reference": "80953678b19901e5165c56752d087fc11526017c"
  8888. },
  8889. "dist": {
  8890. "type": "zip",
  8891. "url": "https://api.github.com/repos/voku/portable-ascii/zipball/80953678b19901e5165c56752d087fc11526017c",
  8892. "reference": "80953678b19901e5165c56752d087fc11526017c",
  8893. "shasum": ""
  8894. },
  8895. "require": {
  8896. "php": ">=7.0.0"
  8897. },
  8898. "require-dev": {
  8899. "phpunit/phpunit": "~6.0 || ~7.0 || ~9.0"
  8900. },
  8901. "suggest": {
  8902. "ext-intl": "Use Intl for transliterator_transliterate() support"
  8903. },
  8904. "type": "library",
  8905. "autoload": {
  8906. "psr-4": {
  8907. "voku\\": "src/voku/"
  8908. }
  8909. },
  8910. "notification-url": "https://packagist.org/downloads/",
  8911. "license": [
  8912. "MIT"
  8913. ],
  8914. "authors": [
  8915. {
  8916. "name": "Lars Moelleken",
  8917. "homepage": "http://www.moelleken.org/"
  8918. }
  8919. ],
  8920. "description": "Portable ASCII library - performance optimized (ascii) string functions for php.",
  8921. "homepage": "https://github.com/voku/portable-ascii",
  8922. "keywords": [
  8923. "ascii",
  8924. "clean",
  8925. "php"
  8926. ],
  8927. "support": {
  8928. "issues": "https://github.com/voku/portable-ascii/issues",
  8929. "source": "https://github.com/voku/portable-ascii/tree/1.5.6"
  8930. },
  8931. "funding": [
  8932. {
  8933. "url": "https://www.paypal.me/moelleken",
  8934. "type": "custom"
  8935. },
  8936. {
  8937. "url": "https://github.com/voku",
  8938. "type": "github"
  8939. },
  8940. {
  8941. "url": "https://opencollective.com/portable-ascii",
  8942. "type": "open_collective"
  8943. },
  8944. {
  8945. "url": "https://www.patreon.com/voku",
  8946. "type": "patreon"
  8947. },
  8948. {
  8949. "url": "https://tidelift.com/funding/github/packagist/voku/portable-ascii",
  8950. "type": "tidelift"
  8951. }
  8952. ],
  8953. "time": "2020-11-12T00:07:28+00:00"
  8954. },
  8955. {
  8956. "name": "webmozart/assert",
  8957. "version": "1.10.0",
  8958. "source": {
  8959. "type": "git",
  8960. "url": "https://github.com/webmozarts/assert.git",
  8961. "reference": "6964c76c7804814a842473e0c8fd15bab0f18e25"
  8962. },
  8963. "dist": {
  8964. "type": "zip",
  8965. "url": "https://api.github.com/repos/webmozarts/assert/zipball/6964c76c7804814a842473e0c8fd15bab0f18e25",
  8966. "reference": "6964c76c7804814a842473e0c8fd15bab0f18e25",
  8967. "shasum": ""
  8968. },
  8969. "require": {
  8970. "php": "^7.2 || ^8.0",
  8971. "symfony/polyfill-ctype": "^1.8"
  8972. },
  8973. "conflict": {
  8974. "phpstan/phpstan": "<0.12.20",
  8975. "vimeo/psalm": "<4.6.1 || 4.6.2"
  8976. },
  8977. "require-dev": {
  8978. "phpunit/phpunit": "^8.5.13"
  8979. },
  8980. "type": "library",
  8981. "extra": {
  8982. "branch-alias": {
  8983. "dev-master": "1.10-dev"
  8984. }
  8985. },
  8986. "autoload": {
  8987. "psr-4": {
  8988. "Webmozart\\Assert\\": "src/"
  8989. }
  8990. },
  8991. "notification-url": "https://packagist.org/downloads/",
  8992. "license": [
  8993. "MIT"
  8994. ],
  8995. "authors": [
  8996. {
  8997. "name": "Bernhard Schussek",
  8998. "email": "bschussek@gmail.com"
  8999. }
  9000. ],
  9001. "description": "Assertions to validate method input/output with nice error messages.",
  9002. "keywords": [
  9003. "assert",
  9004. "check",
  9005. "validate"
  9006. ],
  9007. "support": {
  9008. "issues": "https://github.com/webmozarts/assert/issues",
  9009. "source": "https://github.com/webmozarts/assert/tree/1.10.0"
  9010. },
  9011. "time": "2021-03-09T10:59:23+00:00"
  9012. }
  9013. ],
  9014. "packages-dev": [
  9015. {
  9016. "name": "brianium/paratest",
  9017. "version": "v6.4.1",
  9018. "source": {
  9019. "type": "git",
  9020. "url": "https://github.com/paratestphp/paratest.git",
  9021. "reference": "c32a5c4fc2ff339202437d25d19a5f496f880d61"
  9022. },
  9023. "dist": {
  9024. "type": "zip",
  9025. "url": "https://api.github.com/repos/paratestphp/paratest/zipball/c32a5c4fc2ff339202437d25d19a5f496f880d61",
  9026. "reference": "c32a5c4fc2ff339202437d25d19a5f496f880d61",
  9027. "shasum": ""
  9028. },
  9029. "require": {
  9030. "ext-dom": "*",
  9031. "ext-pcre": "*",
  9032. "ext-reflection": "*",
  9033. "ext-simplexml": "*",
  9034. "php": "^7.3 || ^8.0",
  9035. "phpunit/php-code-coverage": "^9.2.9",
  9036. "phpunit/php-file-iterator": "^3.0.5",
  9037. "phpunit/php-timer": "^5.0.3",
  9038. "phpunit/phpunit": "^9.5.10",
  9039. "sebastian/environment": "^5.1.3",
  9040. "symfony/console": "^5.4.0 || ^6.0.0",
  9041. "symfony/process": "^5.4.0 || ^6.0.0"
  9042. },
  9043. "require-dev": {
  9044. "doctrine/coding-standard": "^9.0.0",
  9045. "ekino/phpstan-banned-code": "^0.5.0",
  9046. "ergebnis/phpstan-rules": "^0.15.3",
  9047. "ext-posix": "*",
  9048. "infection/infection": "^0.25.3",
  9049. "malukenho/mcbumpface": "^1.1.5",
  9050. "phpstan/phpstan": "^0.12.99",
  9051. "phpstan/phpstan-deprecation-rules": "^0.12.6",
  9052. "phpstan/phpstan-phpunit": "^0.12.22",
  9053. "phpstan/phpstan-strict-rules": "^0.12.11",
  9054. "squizlabs/php_codesniffer": "^3.6.1",
  9055. "symfony/filesystem": "^v5.4.0",
  9056. "thecodingmachine/phpstan-strict-rules": "^v0.12.2",
  9057. "vimeo/psalm": "^4.13.1"
  9058. },
  9059. "bin": [
  9060. "bin/paratest"
  9061. ],
  9062. "type": "library",
  9063. "autoload": {
  9064. "psr-4": {
  9065. "ParaTest\\": [
  9066. "src/"
  9067. ]
  9068. }
  9069. },
  9070. "notification-url": "https://packagist.org/downloads/",
  9071. "license": [
  9072. "MIT"
  9073. ],
  9074. "authors": [
  9075. {
  9076. "name": "Brian Scaturro",
  9077. "email": "scaturrob@gmail.com",
  9078. "role": "Developer"
  9079. },
  9080. {
  9081. "name": "Filippo Tessarotto",
  9082. "email": "zoeslam@gmail.com",
  9083. "role": "Developer"
  9084. }
  9085. ],
  9086. "description": "Parallel testing for PHP",
  9087. "homepage": "https://github.com/paratestphp/paratest",
  9088. "keywords": [
  9089. "concurrent",
  9090. "parallel",
  9091. "phpunit",
  9092. "testing"
  9093. ],
  9094. "support": {
  9095. "issues": "https://github.com/paratestphp/paratest/issues",
  9096. "source": "https://github.com/paratestphp/paratest/tree/v6.4.1"
  9097. },
  9098. "funding": [
  9099. {
  9100. "url": "https://github.com/sponsors/Slamdunk",
  9101. "type": "github"
  9102. },
  9103. {
  9104. "url": "https://paypal.me/filippotessarotto",
  9105. "type": "paypal"
  9106. }
  9107. ],
  9108. "time": "2021-12-02T09:12:23+00:00"
  9109. },
  9110. {
  9111. "name": "doctrine/instantiator",
  9112. "version": "1.4.0",
  9113. "source": {
  9114. "type": "git",
  9115. "url": "https://github.com/doctrine/instantiator.git",
  9116. "reference": "d56bf6102915de5702778fe20f2de3b2fe570b5b"
  9117. },
  9118. "dist": {
  9119. "type": "zip",
  9120. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/d56bf6102915de5702778fe20f2de3b2fe570b5b",
  9121. "reference": "d56bf6102915de5702778fe20f2de3b2fe570b5b",
  9122. "shasum": ""
  9123. },
  9124. "require": {
  9125. "php": "^7.1 || ^8.0"
  9126. },
  9127. "require-dev": {
  9128. "doctrine/coding-standard": "^8.0",
  9129. "ext-pdo": "*",
  9130. "ext-phar": "*",
  9131. "phpbench/phpbench": "^0.13 || 1.0.0-alpha2",
  9132. "phpstan/phpstan": "^0.12",
  9133. "phpstan/phpstan-phpunit": "^0.12",
  9134. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0"
  9135. },
  9136. "type": "library",
  9137. "autoload": {
  9138. "psr-4": {
  9139. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  9140. }
  9141. },
  9142. "notification-url": "https://packagist.org/downloads/",
  9143. "license": [
  9144. "MIT"
  9145. ],
  9146. "authors": [
  9147. {
  9148. "name": "Marco Pivetta",
  9149. "email": "ocramius@gmail.com",
  9150. "homepage": "https://ocramius.github.io/"
  9151. }
  9152. ],
  9153. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  9154. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  9155. "keywords": [
  9156. "constructor",
  9157. "instantiate"
  9158. ],
  9159. "support": {
  9160. "issues": "https://github.com/doctrine/instantiator/issues",
  9161. "source": "https://github.com/doctrine/instantiator/tree/1.4.0"
  9162. },
  9163. "funding": [
  9164. {
  9165. "url": "https://www.doctrine-project.org/sponsorship.html",
  9166. "type": "custom"
  9167. },
  9168. {
  9169. "url": "https://www.patreon.com/phpdoctrine",
  9170. "type": "patreon"
  9171. },
  9172. {
  9173. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
  9174. "type": "tidelift"
  9175. }
  9176. ],
  9177. "time": "2020-11-10T18:47:58+00:00"
  9178. },
  9179. {
  9180. "name": "facade/flare-client-php",
  9181. "version": "1.9.1",
  9182. "source": {
  9183. "type": "git",
  9184. "url": "https://github.com/facade/flare-client-php.git",
  9185. "reference": "b2adf1512755637d0cef4f7d1b54301325ac78ed"
  9186. },
  9187. "dist": {
  9188. "type": "zip",
  9189. "url": "https://api.github.com/repos/facade/flare-client-php/zipball/b2adf1512755637d0cef4f7d1b54301325ac78ed",
  9190. "reference": "b2adf1512755637d0cef4f7d1b54301325ac78ed",
  9191. "shasum": ""
  9192. },
  9193. "require": {
  9194. "facade/ignition-contracts": "~1.0",
  9195. "illuminate/pipeline": "^5.5|^6.0|^7.0|^8.0",
  9196. "php": "^7.1|^8.0",
  9197. "symfony/http-foundation": "^3.3|^4.1|^5.0",
  9198. "symfony/mime": "^3.4|^4.0|^5.1",
  9199. "symfony/var-dumper": "^3.4|^4.0|^5.0"
  9200. },
  9201. "require-dev": {
  9202. "friendsofphp/php-cs-fixer": "^2.14",
  9203. "phpunit/phpunit": "^7.5.16",
  9204. "spatie/phpunit-snapshot-assertions": "^2.0"
  9205. },
  9206. "type": "library",
  9207. "extra": {
  9208. "branch-alias": {
  9209. "dev-master": "1.0-dev"
  9210. }
  9211. },
  9212. "autoload": {
  9213. "psr-4": {
  9214. "Facade\\FlareClient\\": "src"
  9215. },
  9216. "files": [
  9217. "src/helpers.php"
  9218. ]
  9219. },
  9220. "notification-url": "https://packagist.org/downloads/",
  9221. "license": [
  9222. "MIT"
  9223. ],
  9224. "description": "Send PHP errors to Flare",
  9225. "homepage": "https://github.com/facade/flare-client-php",
  9226. "keywords": [
  9227. "exception",
  9228. "facade",
  9229. "flare",
  9230. "reporting"
  9231. ],
  9232. "support": {
  9233. "issues": "https://github.com/facade/flare-client-php/issues",
  9234. "source": "https://github.com/facade/flare-client-php/tree/1.9.1"
  9235. },
  9236. "funding": [
  9237. {
  9238. "url": "https://github.com/spatie",
  9239. "type": "github"
  9240. }
  9241. ],
  9242. "time": "2021-09-13T12:16:46+00:00"
  9243. },
  9244. {
  9245. "name": "facade/ignition",
  9246. "version": "2.17.4",
  9247. "source": {
  9248. "type": "git",
  9249. "url": "https://github.com/facade/ignition.git",
  9250. "reference": "95c80bd35ee6858e9e1439b2f6a698295eeb2070"
  9251. },
  9252. "dist": {
  9253. "type": "zip",
  9254. "url": "https://api.github.com/repos/facade/ignition/zipball/95c80bd35ee6858e9e1439b2f6a698295eeb2070",
  9255. "reference": "95c80bd35ee6858e9e1439b2f6a698295eeb2070",
  9256. "shasum": ""
  9257. },
  9258. "require": {
  9259. "ext-curl": "*",
  9260. "ext-json": "*",
  9261. "ext-mbstring": "*",
  9262. "facade/flare-client-php": "^1.9.1",
  9263. "facade/ignition-contracts": "^1.0.2",
  9264. "illuminate/support": "^7.0|^8.0",
  9265. "monolog/monolog": "^2.0",
  9266. "php": "^7.2.5|^8.0",
  9267. "symfony/console": "^5.0",
  9268. "symfony/var-dumper": "^5.0"
  9269. },
  9270. "require-dev": {
  9271. "friendsofphp/php-cs-fixer": "^2.14",
  9272. "livewire/livewire": "^2.4",
  9273. "mockery/mockery": "^1.3",
  9274. "orchestra/testbench": "^5.0|^6.0",
  9275. "psalm/plugin-laravel": "^1.2"
  9276. },
  9277. "suggest": {
  9278. "laravel/telescope": "^3.1"
  9279. },
  9280. "type": "library",
  9281. "extra": {
  9282. "branch-alias": {
  9283. "dev-master": "2.x-dev"
  9284. },
  9285. "laravel": {
  9286. "providers": [
  9287. "Facade\\Ignition\\IgnitionServiceProvider"
  9288. ],
  9289. "aliases": {
  9290. "Flare": "Facade\\Ignition\\Facades\\Flare"
  9291. }
  9292. }
  9293. },
  9294. "autoload": {
  9295. "psr-4": {
  9296. "Facade\\Ignition\\": "src"
  9297. },
  9298. "files": [
  9299. "src/helpers.php"
  9300. ]
  9301. },
  9302. "notification-url": "https://packagist.org/downloads/",
  9303. "license": [
  9304. "MIT"
  9305. ],
  9306. "description": "A beautiful error page for Laravel applications.",
  9307. "homepage": "https://github.com/facade/ignition",
  9308. "keywords": [
  9309. "error",
  9310. "flare",
  9311. "laravel",
  9312. "page"
  9313. ],
  9314. "support": {
  9315. "docs": "https://flareapp.io/docs/ignition-for-laravel/introduction",
  9316. "forum": "https://twitter.com/flareappio",
  9317. "issues": "https://github.com/facade/ignition/issues",
  9318. "source": "https://github.com/facade/ignition"
  9319. },
  9320. "time": "2021-12-27T15:11:24+00:00"
  9321. },
  9322. {
  9323. "name": "facade/ignition-contracts",
  9324. "version": "1.0.2",
  9325. "source": {
  9326. "type": "git",
  9327. "url": "https://github.com/facade/ignition-contracts.git",
  9328. "reference": "3c921a1cdba35b68a7f0ccffc6dffc1995b18267"
  9329. },
  9330. "dist": {
  9331. "type": "zip",
  9332. "url": "https://api.github.com/repos/facade/ignition-contracts/zipball/3c921a1cdba35b68a7f0ccffc6dffc1995b18267",
  9333. "reference": "3c921a1cdba35b68a7f0ccffc6dffc1995b18267",
  9334. "shasum": ""
  9335. },
  9336. "require": {
  9337. "php": "^7.3|^8.0"
  9338. },
  9339. "require-dev": {
  9340. "friendsofphp/php-cs-fixer": "^v2.15.8",
  9341. "phpunit/phpunit": "^9.3.11",
  9342. "vimeo/psalm": "^3.17.1"
  9343. },
  9344. "type": "library",
  9345. "autoload": {
  9346. "psr-4": {
  9347. "Facade\\IgnitionContracts\\": "src"
  9348. }
  9349. },
  9350. "notification-url": "https://packagist.org/downloads/",
  9351. "license": [
  9352. "MIT"
  9353. ],
  9354. "authors": [
  9355. {
  9356. "name": "Freek Van der Herten",
  9357. "email": "freek@spatie.be",
  9358. "homepage": "https://flareapp.io",
  9359. "role": "Developer"
  9360. }
  9361. ],
  9362. "description": "Solution contracts for Ignition",
  9363. "homepage": "https://github.com/facade/ignition-contracts",
  9364. "keywords": [
  9365. "contracts",
  9366. "flare",
  9367. "ignition"
  9368. ],
  9369. "support": {
  9370. "issues": "https://github.com/facade/ignition-contracts/issues",
  9371. "source": "https://github.com/facade/ignition-contracts/tree/1.0.2"
  9372. },
  9373. "time": "2020-10-16T08:27:54+00:00"
  9374. },
  9375. {
  9376. "name": "filp/whoops",
  9377. "version": "2.14.4",
  9378. "source": {
  9379. "type": "git",
  9380. "url": "https://github.com/filp/whoops.git",
  9381. "reference": "f056f1fe935d9ed86e698905a957334029899895"
  9382. },
  9383. "dist": {
  9384. "type": "zip",
  9385. "url": "https://api.github.com/repos/filp/whoops/zipball/f056f1fe935d9ed86e698905a957334029899895",
  9386. "reference": "f056f1fe935d9ed86e698905a957334029899895",
  9387. "shasum": ""
  9388. },
  9389. "require": {
  9390. "php": "^5.5.9 || ^7.0 || ^8.0",
  9391. "psr/log": "^1.0.1 || ^2.0 || ^3.0"
  9392. },
  9393. "require-dev": {
  9394. "mockery/mockery": "^0.9 || ^1.0",
  9395. "phpunit/phpunit": "^4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.3",
  9396. "symfony/var-dumper": "^2.6 || ^3.0 || ^4.0 || ^5.0"
  9397. },
  9398. "suggest": {
  9399. "symfony/var-dumper": "Pretty print complex values better with var-dumper available",
  9400. "whoops/soap": "Formats errors as SOAP responses"
  9401. },
  9402. "type": "library",
  9403. "extra": {
  9404. "branch-alias": {
  9405. "dev-master": "2.7-dev"
  9406. }
  9407. },
  9408. "autoload": {
  9409. "psr-4": {
  9410. "Whoops\\": "src/Whoops/"
  9411. }
  9412. },
  9413. "notification-url": "https://packagist.org/downloads/",
  9414. "license": [
  9415. "MIT"
  9416. ],
  9417. "authors": [
  9418. {
  9419. "name": "Filipe Dobreira",
  9420. "homepage": "https://github.com/filp",
  9421. "role": "Developer"
  9422. }
  9423. ],
  9424. "description": "php error handling for cool kids",
  9425. "homepage": "https://filp.github.io/whoops/",
  9426. "keywords": [
  9427. "error",
  9428. "exception",
  9429. "handling",
  9430. "library",
  9431. "throwable",
  9432. "whoops"
  9433. ],
  9434. "support": {
  9435. "issues": "https://github.com/filp/whoops/issues",
  9436. "source": "https://github.com/filp/whoops/tree/2.14.4"
  9437. },
  9438. "funding": [
  9439. {
  9440. "url": "https://github.com/denis-sokolov",
  9441. "type": "github"
  9442. }
  9443. ],
  9444. "time": "2021-10-03T12:00:00+00:00"
  9445. },
  9446. {
  9447. "name": "fzaninotto/faker",
  9448. "version": "v1.9.2",
  9449. "source": {
  9450. "type": "git",
  9451. "url": "https://github.com/fzaninotto/Faker.git",
  9452. "reference": "848d8125239d7dbf8ab25cb7f054f1a630e68c2e"
  9453. },
  9454. "dist": {
  9455. "type": "zip",
  9456. "url": "https://api.github.com/repos/fzaninotto/Faker/zipball/848d8125239d7dbf8ab25cb7f054f1a630e68c2e",
  9457. "reference": "848d8125239d7dbf8ab25cb7f054f1a630e68c2e",
  9458. "shasum": ""
  9459. },
  9460. "require": {
  9461. "php": "^5.3.3 || ^7.0"
  9462. },
  9463. "require-dev": {
  9464. "ext-intl": "*",
  9465. "phpunit/phpunit": "^4.8.35 || ^5.7",
  9466. "squizlabs/php_codesniffer": "^2.9.2"
  9467. },
  9468. "type": "library",
  9469. "extra": {
  9470. "branch-alias": {
  9471. "dev-master": "1.9-dev"
  9472. }
  9473. },
  9474. "autoload": {
  9475. "psr-4": {
  9476. "Faker\\": "src/Faker/"
  9477. }
  9478. },
  9479. "notification-url": "https://packagist.org/downloads/",
  9480. "license": [
  9481. "MIT"
  9482. ],
  9483. "authors": [
  9484. {
  9485. "name": "François Zaninotto"
  9486. }
  9487. ],
  9488. "description": "Faker is a PHP library that generates fake data for you.",
  9489. "keywords": [
  9490. "data",
  9491. "faker",
  9492. "fixtures"
  9493. ],
  9494. "support": {
  9495. "issues": "https://github.com/fzaninotto/Faker/issues",
  9496. "source": "https://github.com/fzaninotto/Faker/tree/v1.9.2"
  9497. },
  9498. "abandoned": true,
  9499. "time": "2020-12-11T09:56:16+00:00"
  9500. },
  9501. {
  9502. "name": "hamcrest/hamcrest-php",
  9503. "version": "v2.0.1",
  9504. "source": {
  9505. "type": "git",
  9506. "url": "https://github.com/hamcrest/hamcrest-php.git",
  9507. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3"
  9508. },
  9509. "dist": {
  9510. "type": "zip",
  9511. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  9512. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  9513. "shasum": ""
  9514. },
  9515. "require": {
  9516. "php": "^5.3|^7.0|^8.0"
  9517. },
  9518. "replace": {
  9519. "cordoval/hamcrest-php": "*",
  9520. "davedevelopment/hamcrest-php": "*",
  9521. "kodova/hamcrest-php": "*"
  9522. },
  9523. "require-dev": {
  9524. "phpunit/php-file-iterator": "^1.4 || ^2.0",
  9525. "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0"
  9526. },
  9527. "type": "library",
  9528. "extra": {
  9529. "branch-alias": {
  9530. "dev-master": "2.1-dev"
  9531. }
  9532. },
  9533. "autoload": {
  9534. "classmap": [
  9535. "hamcrest"
  9536. ]
  9537. },
  9538. "notification-url": "https://packagist.org/downloads/",
  9539. "license": [
  9540. "BSD-3-Clause"
  9541. ],
  9542. "description": "This is the PHP port of Hamcrest Matchers",
  9543. "keywords": [
  9544. "test"
  9545. ],
  9546. "support": {
  9547. "issues": "https://github.com/hamcrest/hamcrest-php/issues",
  9548. "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.0.1"
  9549. },
  9550. "time": "2020-07-09T08:09:16+00:00"
  9551. },
  9552. {
  9553. "name": "mockery/mockery",
  9554. "version": "1.4.4",
  9555. "source": {
  9556. "type": "git",
  9557. "url": "https://github.com/mockery/mockery.git",
  9558. "reference": "e01123a0e847d52d186c5eb4b9bf58b0c6d00346"
  9559. },
  9560. "dist": {
  9561. "type": "zip",
  9562. "url": "https://api.github.com/repos/mockery/mockery/zipball/e01123a0e847d52d186c5eb4b9bf58b0c6d00346",
  9563. "reference": "e01123a0e847d52d186c5eb4b9bf58b0c6d00346",
  9564. "shasum": ""
  9565. },
  9566. "require": {
  9567. "hamcrest/hamcrest-php": "^2.0.1",
  9568. "lib-pcre": ">=7.0",
  9569. "php": "^7.3 || ^8.0"
  9570. },
  9571. "conflict": {
  9572. "phpunit/phpunit": "<8.0"
  9573. },
  9574. "require-dev": {
  9575. "phpunit/phpunit": "^8.5 || ^9.3"
  9576. },
  9577. "type": "library",
  9578. "extra": {
  9579. "branch-alias": {
  9580. "dev-master": "1.4.x-dev"
  9581. }
  9582. },
  9583. "autoload": {
  9584. "psr-0": {
  9585. "Mockery": "library/"
  9586. }
  9587. },
  9588. "notification-url": "https://packagist.org/downloads/",
  9589. "license": [
  9590. "BSD-3-Clause"
  9591. ],
  9592. "authors": [
  9593. {
  9594. "name": "Pádraic Brady",
  9595. "email": "padraic.brady@gmail.com",
  9596. "homepage": "http://blog.astrumfutura.com"
  9597. },
  9598. {
  9599. "name": "Dave Marshall",
  9600. "email": "dave.marshall@atstsolutions.co.uk",
  9601. "homepage": "http://davedevelopment.co.uk"
  9602. }
  9603. ],
  9604. "description": "Mockery is a simple yet flexible PHP mock object framework",
  9605. "homepage": "https://github.com/mockery/mockery",
  9606. "keywords": [
  9607. "BDD",
  9608. "TDD",
  9609. "library",
  9610. "mock",
  9611. "mock objects",
  9612. "mockery",
  9613. "stub",
  9614. "test",
  9615. "test double",
  9616. "testing"
  9617. ],
  9618. "support": {
  9619. "issues": "https://github.com/mockery/mockery/issues",
  9620. "source": "https://github.com/mockery/mockery/tree/1.4.4"
  9621. },
  9622. "time": "2021-09-13T15:28:59+00:00"
  9623. },
  9624. {
  9625. "name": "myclabs/deep-copy",
  9626. "version": "1.10.2",
  9627. "source": {
  9628. "type": "git",
  9629. "url": "https://github.com/myclabs/DeepCopy.git",
  9630. "reference": "776f831124e9c62e1a2c601ecc52e776d8bb7220"
  9631. },
  9632. "dist": {
  9633. "type": "zip",
  9634. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/776f831124e9c62e1a2c601ecc52e776d8bb7220",
  9635. "reference": "776f831124e9c62e1a2c601ecc52e776d8bb7220",
  9636. "shasum": ""
  9637. },
  9638. "require": {
  9639. "php": "^7.1 || ^8.0"
  9640. },
  9641. "replace": {
  9642. "myclabs/deep-copy": "self.version"
  9643. },
  9644. "require-dev": {
  9645. "doctrine/collections": "^1.0",
  9646. "doctrine/common": "^2.6",
  9647. "phpunit/phpunit": "^7.1"
  9648. },
  9649. "type": "library",
  9650. "autoload": {
  9651. "psr-4": {
  9652. "DeepCopy\\": "src/DeepCopy/"
  9653. },
  9654. "files": [
  9655. "src/DeepCopy/deep_copy.php"
  9656. ]
  9657. },
  9658. "notification-url": "https://packagist.org/downloads/",
  9659. "license": [
  9660. "MIT"
  9661. ],
  9662. "description": "Create deep copies (clones) of your objects",
  9663. "keywords": [
  9664. "clone",
  9665. "copy",
  9666. "duplicate",
  9667. "object",
  9668. "object graph"
  9669. ],
  9670. "support": {
  9671. "issues": "https://github.com/myclabs/DeepCopy/issues",
  9672. "source": "https://github.com/myclabs/DeepCopy/tree/1.10.2"
  9673. },
  9674. "funding": [
  9675. {
  9676. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  9677. "type": "tidelift"
  9678. }
  9679. ],
  9680. "time": "2020-11-13T09:40:50+00:00"
  9681. },
  9682. {
  9683. "name": "nunomaduro/collision",
  9684. "version": "v5.10.0",
  9685. "source": {
  9686. "type": "git",
  9687. "url": "https://github.com/nunomaduro/collision.git",
  9688. "reference": "3004cfa49c022183395eabc6d0e5207dfe498d00"
  9689. },
  9690. "dist": {
  9691. "type": "zip",
  9692. "url": "https://api.github.com/repos/nunomaduro/collision/zipball/3004cfa49c022183395eabc6d0e5207dfe498d00",
  9693. "reference": "3004cfa49c022183395eabc6d0e5207dfe498d00",
  9694. "shasum": ""
  9695. },
  9696. "require": {
  9697. "facade/ignition-contracts": "^1.0",
  9698. "filp/whoops": "^2.14.3",
  9699. "php": "^7.3 || ^8.0",
  9700. "symfony/console": "^5.0"
  9701. },
  9702. "require-dev": {
  9703. "brianium/paratest": "^6.1",
  9704. "fideloper/proxy": "^4.4.1",
  9705. "fruitcake/laravel-cors": "^2.0.3",
  9706. "laravel/framework": "8.x-dev",
  9707. "nunomaduro/larastan": "^0.6.2",
  9708. "nunomaduro/mock-final-classes": "^1.0",
  9709. "orchestra/testbench": "^6.0",
  9710. "phpstan/phpstan": "^0.12.64",
  9711. "phpunit/phpunit": "^9.5.0"
  9712. },
  9713. "type": "library",
  9714. "extra": {
  9715. "laravel": {
  9716. "providers": [
  9717. "NunoMaduro\\Collision\\Adapters\\Laravel\\CollisionServiceProvider"
  9718. ]
  9719. }
  9720. },
  9721. "autoload": {
  9722. "psr-4": {
  9723. "NunoMaduro\\Collision\\": "src/"
  9724. }
  9725. },
  9726. "notification-url": "https://packagist.org/downloads/",
  9727. "license": [
  9728. "MIT"
  9729. ],
  9730. "authors": [
  9731. {
  9732. "name": "Nuno Maduro",
  9733. "email": "enunomaduro@gmail.com"
  9734. }
  9735. ],
  9736. "description": "Cli error handling for console/command-line PHP applications.",
  9737. "keywords": [
  9738. "artisan",
  9739. "cli",
  9740. "command-line",
  9741. "console",
  9742. "error",
  9743. "handling",
  9744. "laravel",
  9745. "laravel-zero",
  9746. "php",
  9747. "symfony"
  9748. ],
  9749. "support": {
  9750. "issues": "https://github.com/nunomaduro/collision/issues",
  9751. "source": "https://github.com/nunomaduro/collision"
  9752. },
  9753. "funding": [
  9754. {
  9755. "url": "https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=66BYDWAT92N6L",
  9756. "type": "custom"
  9757. },
  9758. {
  9759. "url": "https://github.com/nunomaduro",
  9760. "type": "github"
  9761. },
  9762. {
  9763. "url": "https://www.patreon.com/nunomaduro",
  9764. "type": "patreon"
  9765. }
  9766. ],
  9767. "time": "2021-09-20T15:06:32+00:00"
  9768. },
  9769. {
  9770. "name": "phar-io/manifest",
  9771. "version": "2.0.3",
  9772. "source": {
  9773. "type": "git",
  9774. "url": "https://github.com/phar-io/manifest.git",
  9775. "reference": "97803eca37d319dfa7826cc2437fc020857acb53"
  9776. },
  9777. "dist": {
  9778. "type": "zip",
  9779. "url": "https://api.github.com/repos/phar-io/manifest/zipball/97803eca37d319dfa7826cc2437fc020857acb53",
  9780. "reference": "97803eca37d319dfa7826cc2437fc020857acb53",
  9781. "shasum": ""
  9782. },
  9783. "require": {
  9784. "ext-dom": "*",
  9785. "ext-phar": "*",
  9786. "ext-xmlwriter": "*",
  9787. "phar-io/version": "^3.0.1",
  9788. "php": "^7.2 || ^8.0"
  9789. },
  9790. "type": "library",
  9791. "extra": {
  9792. "branch-alias": {
  9793. "dev-master": "2.0.x-dev"
  9794. }
  9795. },
  9796. "autoload": {
  9797. "classmap": [
  9798. "src/"
  9799. ]
  9800. },
  9801. "notification-url": "https://packagist.org/downloads/",
  9802. "license": [
  9803. "BSD-3-Clause"
  9804. ],
  9805. "authors": [
  9806. {
  9807. "name": "Arne Blankerts",
  9808. "email": "arne@blankerts.de",
  9809. "role": "Developer"
  9810. },
  9811. {
  9812. "name": "Sebastian Heuer",
  9813. "email": "sebastian@phpeople.de",
  9814. "role": "Developer"
  9815. },
  9816. {
  9817. "name": "Sebastian Bergmann",
  9818. "email": "sebastian@phpunit.de",
  9819. "role": "Developer"
  9820. }
  9821. ],
  9822. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  9823. "support": {
  9824. "issues": "https://github.com/phar-io/manifest/issues",
  9825. "source": "https://github.com/phar-io/manifest/tree/2.0.3"
  9826. },
  9827. "time": "2021-07-20T11:28:43+00:00"
  9828. },
  9829. {
  9830. "name": "phar-io/version",
  9831. "version": "3.1.0",
  9832. "source": {
  9833. "type": "git",
  9834. "url": "https://github.com/phar-io/version.git",
  9835. "reference": "bae7c545bef187884426f042434e561ab1ddb182"
  9836. },
  9837. "dist": {
  9838. "type": "zip",
  9839. "url": "https://api.github.com/repos/phar-io/version/zipball/bae7c545bef187884426f042434e561ab1ddb182",
  9840. "reference": "bae7c545bef187884426f042434e561ab1ddb182",
  9841. "shasum": ""
  9842. },
  9843. "require": {
  9844. "php": "^7.2 || ^8.0"
  9845. },
  9846. "type": "library",
  9847. "autoload": {
  9848. "classmap": [
  9849. "src/"
  9850. ]
  9851. },
  9852. "notification-url": "https://packagist.org/downloads/",
  9853. "license": [
  9854. "BSD-3-Clause"
  9855. ],
  9856. "authors": [
  9857. {
  9858. "name": "Arne Blankerts",
  9859. "email": "arne@blankerts.de",
  9860. "role": "Developer"
  9861. },
  9862. {
  9863. "name": "Sebastian Heuer",
  9864. "email": "sebastian@phpeople.de",
  9865. "role": "Developer"
  9866. },
  9867. {
  9868. "name": "Sebastian Bergmann",
  9869. "email": "sebastian@phpunit.de",
  9870. "role": "Developer"
  9871. }
  9872. ],
  9873. "description": "Library for handling version information and constraints",
  9874. "support": {
  9875. "issues": "https://github.com/phar-io/version/issues",
  9876. "source": "https://github.com/phar-io/version/tree/3.1.0"
  9877. },
  9878. "time": "2021-02-23T14:00:09+00:00"
  9879. },
  9880. {
  9881. "name": "phpdocumentor/reflection-common",
  9882. "version": "2.2.0",
  9883. "source": {
  9884. "type": "git",
  9885. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  9886. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b"
  9887. },
  9888. "dist": {
  9889. "type": "zip",
  9890. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  9891. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  9892. "shasum": ""
  9893. },
  9894. "require": {
  9895. "php": "^7.2 || ^8.0"
  9896. },
  9897. "type": "library",
  9898. "extra": {
  9899. "branch-alias": {
  9900. "dev-2.x": "2.x-dev"
  9901. }
  9902. },
  9903. "autoload": {
  9904. "psr-4": {
  9905. "phpDocumentor\\Reflection\\": "src/"
  9906. }
  9907. },
  9908. "notification-url": "https://packagist.org/downloads/",
  9909. "license": [
  9910. "MIT"
  9911. ],
  9912. "authors": [
  9913. {
  9914. "name": "Jaap van Otterdijk",
  9915. "email": "opensource@ijaap.nl"
  9916. }
  9917. ],
  9918. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  9919. "homepage": "http://www.phpdoc.org",
  9920. "keywords": [
  9921. "FQSEN",
  9922. "phpDocumentor",
  9923. "phpdoc",
  9924. "reflection",
  9925. "static analysis"
  9926. ],
  9927. "support": {
  9928. "issues": "https://github.com/phpDocumentor/ReflectionCommon/issues",
  9929. "source": "https://github.com/phpDocumentor/ReflectionCommon/tree/2.x"
  9930. },
  9931. "time": "2020-06-27T09:03:43+00:00"
  9932. },
  9933. {
  9934. "name": "phpdocumentor/reflection-docblock",
  9935. "version": "5.3.0",
  9936. "source": {
  9937. "type": "git",
  9938. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  9939. "reference": "622548b623e81ca6d78b721c5e029f4ce664f170"
  9940. },
  9941. "dist": {
  9942. "type": "zip",
  9943. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/622548b623e81ca6d78b721c5e029f4ce664f170",
  9944. "reference": "622548b623e81ca6d78b721c5e029f4ce664f170",
  9945. "shasum": ""
  9946. },
  9947. "require": {
  9948. "ext-filter": "*",
  9949. "php": "^7.2 || ^8.0",
  9950. "phpdocumentor/reflection-common": "^2.2",
  9951. "phpdocumentor/type-resolver": "^1.3",
  9952. "webmozart/assert": "^1.9.1"
  9953. },
  9954. "require-dev": {
  9955. "mockery/mockery": "~1.3.2",
  9956. "psalm/phar": "^4.8"
  9957. },
  9958. "type": "library",
  9959. "extra": {
  9960. "branch-alias": {
  9961. "dev-master": "5.x-dev"
  9962. }
  9963. },
  9964. "autoload": {
  9965. "psr-4": {
  9966. "phpDocumentor\\Reflection\\": "src"
  9967. }
  9968. },
  9969. "notification-url": "https://packagist.org/downloads/",
  9970. "license": [
  9971. "MIT"
  9972. ],
  9973. "authors": [
  9974. {
  9975. "name": "Mike van Riel",
  9976. "email": "me@mikevanriel.com"
  9977. },
  9978. {
  9979. "name": "Jaap van Otterdijk",
  9980. "email": "account@ijaap.nl"
  9981. }
  9982. ],
  9983. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  9984. "support": {
  9985. "issues": "https://github.com/phpDocumentor/ReflectionDocBlock/issues",
  9986. "source": "https://github.com/phpDocumentor/ReflectionDocBlock/tree/5.3.0"
  9987. },
  9988. "time": "2021-10-19T17:43:47+00:00"
  9989. },
  9990. {
  9991. "name": "phpdocumentor/type-resolver",
  9992. "version": "1.5.1",
  9993. "source": {
  9994. "type": "git",
  9995. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  9996. "reference": "a12f7e301eb7258bb68acd89d4aefa05c2906cae"
  9997. },
  9998. "dist": {
  9999. "type": "zip",
  10000. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/a12f7e301eb7258bb68acd89d4aefa05c2906cae",
  10001. "reference": "a12f7e301eb7258bb68acd89d4aefa05c2906cae",
  10002. "shasum": ""
  10003. },
  10004. "require": {
  10005. "php": "^7.2 || ^8.0",
  10006. "phpdocumentor/reflection-common": "^2.0"
  10007. },
  10008. "require-dev": {
  10009. "ext-tokenizer": "*",
  10010. "psalm/phar": "^4.8"
  10011. },
  10012. "type": "library",
  10013. "extra": {
  10014. "branch-alias": {
  10015. "dev-1.x": "1.x-dev"
  10016. }
  10017. },
  10018. "autoload": {
  10019. "psr-4": {
  10020. "phpDocumentor\\Reflection\\": "src"
  10021. }
  10022. },
  10023. "notification-url": "https://packagist.org/downloads/",
  10024. "license": [
  10025. "MIT"
  10026. ],
  10027. "authors": [
  10028. {
  10029. "name": "Mike van Riel",
  10030. "email": "me@mikevanriel.com"
  10031. }
  10032. ],
  10033. "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names",
  10034. "support": {
  10035. "issues": "https://github.com/phpDocumentor/TypeResolver/issues",
  10036. "source": "https://github.com/phpDocumentor/TypeResolver/tree/1.5.1"
  10037. },
  10038. "time": "2021-10-02T14:08:47+00:00"
  10039. },
  10040. {
  10041. "name": "phpspec/prophecy",
  10042. "version": "v1.15.0",
  10043. "source": {
  10044. "type": "git",
  10045. "url": "https://github.com/phpspec/prophecy.git",
  10046. "reference": "bbcd7380b0ebf3961ee21409db7b38bc31d69a13"
  10047. },
  10048. "dist": {
  10049. "type": "zip",
  10050. "url": "https://api.github.com/repos/phpspec/prophecy/zipball/bbcd7380b0ebf3961ee21409db7b38bc31d69a13",
  10051. "reference": "bbcd7380b0ebf3961ee21409db7b38bc31d69a13",
  10052. "shasum": ""
  10053. },
  10054. "require": {
  10055. "doctrine/instantiator": "^1.2",
  10056. "php": "^7.2 || ~8.0, <8.2",
  10057. "phpdocumentor/reflection-docblock": "^5.2",
  10058. "sebastian/comparator": "^3.0 || ^4.0",
  10059. "sebastian/recursion-context": "^3.0 || ^4.0"
  10060. },
  10061. "require-dev": {
  10062. "phpspec/phpspec": "^6.0 || ^7.0",
  10063. "phpunit/phpunit": "^8.0 || ^9.0"
  10064. },
  10065. "type": "library",
  10066. "extra": {
  10067. "branch-alias": {
  10068. "dev-master": "1.x-dev"
  10069. }
  10070. },
  10071. "autoload": {
  10072. "psr-4": {
  10073. "Prophecy\\": "src/Prophecy"
  10074. }
  10075. },
  10076. "notification-url": "https://packagist.org/downloads/",
  10077. "license": [
  10078. "MIT"
  10079. ],
  10080. "authors": [
  10081. {
  10082. "name": "Konstantin Kudryashov",
  10083. "email": "ever.zet@gmail.com",
  10084. "homepage": "http://everzet.com"
  10085. },
  10086. {
  10087. "name": "Marcello Duarte",
  10088. "email": "marcello.duarte@gmail.com"
  10089. }
  10090. ],
  10091. "description": "Highly opinionated mocking framework for PHP 5.3+",
  10092. "homepage": "https://github.com/phpspec/prophecy",
  10093. "keywords": [
  10094. "Double",
  10095. "Dummy",
  10096. "fake",
  10097. "mock",
  10098. "spy",
  10099. "stub"
  10100. ],
  10101. "support": {
  10102. "issues": "https://github.com/phpspec/prophecy/issues",
  10103. "source": "https://github.com/phpspec/prophecy/tree/v1.15.0"
  10104. },
  10105. "time": "2021-12-08T12:19:24+00:00"
  10106. },
  10107. {
  10108. "name": "phpunit/php-code-coverage",
  10109. "version": "9.2.10",
  10110. "source": {
  10111. "type": "git",
  10112. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  10113. "reference": "d5850aaf931743067f4bfc1ae4cbd06468400687"
  10114. },
  10115. "dist": {
  10116. "type": "zip",
  10117. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/d5850aaf931743067f4bfc1ae4cbd06468400687",
  10118. "reference": "d5850aaf931743067f4bfc1ae4cbd06468400687",
  10119. "shasum": ""
  10120. },
  10121. "require": {
  10122. "ext-dom": "*",
  10123. "ext-libxml": "*",
  10124. "ext-xmlwriter": "*",
  10125. "nikic/php-parser": "^4.13.0",
  10126. "php": ">=7.3",
  10127. "phpunit/php-file-iterator": "^3.0.3",
  10128. "phpunit/php-text-template": "^2.0.2",
  10129. "sebastian/code-unit-reverse-lookup": "^2.0.2",
  10130. "sebastian/complexity": "^2.0",
  10131. "sebastian/environment": "^5.1.2",
  10132. "sebastian/lines-of-code": "^1.0.3",
  10133. "sebastian/version": "^3.0.1",
  10134. "theseer/tokenizer": "^1.2.0"
  10135. },
  10136. "require-dev": {
  10137. "phpunit/phpunit": "^9.3"
  10138. },
  10139. "suggest": {
  10140. "ext-pcov": "*",
  10141. "ext-xdebug": "*"
  10142. },
  10143. "type": "library",
  10144. "extra": {
  10145. "branch-alias": {
  10146. "dev-master": "9.2-dev"
  10147. }
  10148. },
  10149. "autoload": {
  10150. "classmap": [
  10151. "src/"
  10152. ]
  10153. },
  10154. "notification-url": "https://packagist.org/downloads/",
  10155. "license": [
  10156. "BSD-3-Clause"
  10157. ],
  10158. "authors": [
  10159. {
  10160. "name": "Sebastian Bergmann",
  10161. "email": "sebastian@phpunit.de",
  10162. "role": "lead"
  10163. }
  10164. ],
  10165. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  10166. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  10167. "keywords": [
  10168. "coverage",
  10169. "testing",
  10170. "xunit"
  10171. ],
  10172. "support": {
  10173. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  10174. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/9.2.10"
  10175. },
  10176. "funding": [
  10177. {
  10178. "url": "https://github.com/sebastianbergmann",
  10179. "type": "github"
  10180. }
  10181. ],
  10182. "time": "2021-12-05T09:12:13+00:00"
  10183. },
  10184. {
  10185. "name": "phpunit/php-file-iterator",
  10186. "version": "3.0.6",
  10187. "source": {
  10188. "type": "git",
  10189. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  10190. "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf"
  10191. },
  10192. "dist": {
  10193. "type": "zip",
  10194. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
  10195. "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
  10196. "shasum": ""
  10197. },
  10198. "require": {
  10199. "php": ">=7.3"
  10200. },
  10201. "require-dev": {
  10202. "phpunit/phpunit": "^9.3"
  10203. },
  10204. "type": "library",
  10205. "extra": {
  10206. "branch-alias": {
  10207. "dev-master": "3.0-dev"
  10208. }
  10209. },
  10210. "autoload": {
  10211. "classmap": [
  10212. "src/"
  10213. ]
  10214. },
  10215. "notification-url": "https://packagist.org/downloads/",
  10216. "license": [
  10217. "BSD-3-Clause"
  10218. ],
  10219. "authors": [
  10220. {
  10221. "name": "Sebastian Bergmann",
  10222. "email": "sebastian@phpunit.de",
  10223. "role": "lead"
  10224. }
  10225. ],
  10226. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  10227. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  10228. "keywords": [
  10229. "filesystem",
  10230. "iterator"
  10231. ],
  10232. "support": {
  10233. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  10234. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/3.0.6"
  10235. },
  10236. "funding": [
  10237. {
  10238. "url": "https://github.com/sebastianbergmann",
  10239. "type": "github"
  10240. }
  10241. ],
  10242. "time": "2021-12-02T12:48:52+00:00"
  10243. },
  10244. {
  10245. "name": "phpunit/php-invoker",
  10246. "version": "3.1.1",
  10247. "source": {
  10248. "type": "git",
  10249. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  10250. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67"
  10251. },
  10252. "dist": {
  10253. "type": "zip",
  10254. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  10255. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  10256. "shasum": ""
  10257. },
  10258. "require": {
  10259. "php": ">=7.3"
  10260. },
  10261. "require-dev": {
  10262. "ext-pcntl": "*",
  10263. "phpunit/phpunit": "^9.3"
  10264. },
  10265. "suggest": {
  10266. "ext-pcntl": "*"
  10267. },
  10268. "type": "library",
  10269. "extra": {
  10270. "branch-alias": {
  10271. "dev-master": "3.1-dev"
  10272. }
  10273. },
  10274. "autoload": {
  10275. "classmap": [
  10276. "src/"
  10277. ]
  10278. },
  10279. "notification-url": "https://packagist.org/downloads/",
  10280. "license": [
  10281. "BSD-3-Clause"
  10282. ],
  10283. "authors": [
  10284. {
  10285. "name": "Sebastian Bergmann",
  10286. "email": "sebastian@phpunit.de",
  10287. "role": "lead"
  10288. }
  10289. ],
  10290. "description": "Invoke callables with a timeout",
  10291. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  10292. "keywords": [
  10293. "process"
  10294. ],
  10295. "support": {
  10296. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  10297. "source": "https://github.com/sebastianbergmann/php-invoker/tree/3.1.1"
  10298. },
  10299. "funding": [
  10300. {
  10301. "url": "https://github.com/sebastianbergmann",
  10302. "type": "github"
  10303. }
  10304. ],
  10305. "time": "2020-09-28T05:58:55+00:00"
  10306. },
  10307. {
  10308. "name": "phpunit/php-text-template",
  10309. "version": "2.0.4",
  10310. "source": {
  10311. "type": "git",
  10312. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  10313. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28"
  10314. },
  10315. "dist": {
  10316. "type": "zip",
  10317. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  10318. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  10319. "shasum": ""
  10320. },
  10321. "require": {
  10322. "php": ">=7.3"
  10323. },
  10324. "require-dev": {
  10325. "phpunit/phpunit": "^9.3"
  10326. },
  10327. "type": "library",
  10328. "extra": {
  10329. "branch-alias": {
  10330. "dev-master": "2.0-dev"
  10331. }
  10332. },
  10333. "autoload": {
  10334. "classmap": [
  10335. "src/"
  10336. ]
  10337. },
  10338. "notification-url": "https://packagist.org/downloads/",
  10339. "license": [
  10340. "BSD-3-Clause"
  10341. ],
  10342. "authors": [
  10343. {
  10344. "name": "Sebastian Bergmann",
  10345. "email": "sebastian@phpunit.de",
  10346. "role": "lead"
  10347. }
  10348. ],
  10349. "description": "Simple template engine.",
  10350. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  10351. "keywords": [
  10352. "template"
  10353. ],
  10354. "support": {
  10355. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  10356. "source": "https://github.com/sebastianbergmann/php-text-template/tree/2.0.4"
  10357. },
  10358. "funding": [
  10359. {
  10360. "url": "https://github.com/sebastianbergmann",
  10361. "type": "github"
  10362. }
  10363. ],
  10364. "time": "2020-10-26T05:33:50+00:00"
  10365. },
  10366. {
  10367. "name": "phpunit/php-timer",
  10368. "version": "5.0.3",
  10369. "source": {
  10370. "type": "git",
  10371. "url": "https://github.com/sebastianbergmann/php-timer.git",
  10372. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2"
  10373. },
  10374. "dist": {
  10375. "type": "zip",
  10376. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  10377. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  10378. "shasum": ""
  10379. },
  10380. "require": {
  10381. "php": ">=7.3"
  10382. },
  10383. "require-dev": {
  10384. "phpunit/phpunit": "^9.3"
  10385. },
  10386. "type": "library",
  10387. "extra": {
  10388. "branch-alias": {
  10389. "dev-master": "5.0-dev"
  10390. }
  10391. },
  10392. "autoload": {
  10393. "classmap": [
  10394. "src/"
  10395. ]
  10396. },
  10397. "notification-url": "https://packagist.org/downloads/",
  10398. "license": [
  10399. "BSD-3-Clause"
  10400. ],
  10401. "authors": [
  10402. {
  10403. "name": "Sebastian Bergmann",
  10404. "email": "sebastian@phpunit.de",
  10405. "role": "lead"
  10406. }
  10407. ],
  10408. "description": "Utility class for timing",
  10409. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  10410. "keywords": [
  10411. "timer"
  10412. ],
  10413. "support": {
  10414. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  10415. "source": "https://github.com/sebastianbergmann/php-timer/tree/5.0.3"
  10416. },
  10417. "funding": [
  10418. {
  10419. "url": "https://github.com/sebastianbergmann",
  10420. "type": "github"
  10421. }
  10422. ],
  10423. "time": "2020-10-26T13:16:10+00:00"
  10424. },
  10425. {
  10426. "name": "phpunit/phpunit",
  10427. "version": "9.5.11",
  10428. "source": {
  10429. "type": "git",
  10430. "url": "https://github.com/sebastianbergmann/phpunit.git",
  10431. "reference": "2406855036db1102126125537adb1406f7242fdd"
  10432. },
  10433. "dist": {
  10434. "type": "zip",
  10435. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/2406855036db1102126125537adb1406f7242fdd",
  10436. "reference": "2406855036db1102126125537adb1406f7242fdd",
  10437. "shasum": ""
  10438. },
  10439. "require": {
  10440. "doctrine/instantiator": "^1.3.1",
  10441. "ext-dom": "*",
  10442. "ext-json": "*",
  10443. "ext-libxml": "*",
  10444. "ext-mbstring": "*",
  10445. "ext-xml": "*",
  10446. "ext-xmlwriter": "*",
  10447. "myclabs/deep-copy": "^1.10.1",
  10448. "phar-io/manifest": "^2.0.3",
  10449. "phar-io/version": "^3.0.2",
  10450. "php": ">=7.3",
  10451. "phpspec/prophecy": "^1.12.1",
  10452. "phpunit/php-code-coverage": "^9.2.7",
  10453. "phpunit/php-file-iterator": "^3.0.5",
  10454. "phpunit/php-invoker": "^3.1.1",
  10455. "phpunit/php-text-template": "^2.0.3",
  10456. "phpunit/php-timer": "^5.0.2",
  10457. "sebastian/cli-parser": "^1.0.1",
  10458. "sebastian/code-unit": "^1.0.6",
  10459. "sebastian/comparator": "^4.0.5",
  10460. "sebastian/diff": "^4.0.3",
  10461. "sebastian/environment": "^5.1.3",
  10462. "sebastian/exporter": "^4.0.3",
  10463. "sebastian/global-state": "^5.0.1",
  10464. "sebastian/object-enumerator": "^4.0.3",
  10465. "sebastian/resource-operations": "^3.0.3",
  10466. "sebastian/type": "^2.3.4",
  10467. "sebastian/version": "^3.0.2"
  10468. },
  10469. "require-dev": {
  10470. "ext-pdo": "*",
  10471. "phpspec/prophecy-phpunit": "^2.0.1"
  10472. },
  10473. "suggest": {
  10474. "ext-soap": "*",
  10475. "ext-xdebug": "*"
  10476. },
  10477. "bin": [
  10478. "phpunit"
  10479. ],
  10480. "type": "library",
  10481. "extra": {
  10482. "branch-alias": {
  10483. "dev-master": "9.5-dev"
  10484. }
  10485. },
  10486. "autoload": {
  10487. "classmap": [
  10488. "src/"
  10489. ],
  10490. "files": [
  10491. "src/Framework/Assert/Functions.php"
  10492. ]
  10493. },
  10494. "notification-url": "https://packagist.org/downloads/",
  10495. "license": [
  10496. "BSD-3-Clause"
  10497. ],
  10498. "authors": [
  10499. {
  10500. "name": "Sebastian Bergmann",
  10501. "email": "sebastian@phpunit.de",
  10502. "role": "lead"
  10503. }
  10504. ],
  10505. "description": "The PHP Unit Testing framework.",
  10506. "homepage": "https://phpunit.de/",
  10507. "keywords": [
  10508. "phpunit",
  10509. "testing",
  10510. "xunit"
  10511. ],
  10512. "support": {
  10513. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  10514. "source": "https://github.com/sebastianbergmann/phpunit/tree/9.5.11"
  10515. },
  10516. "funding": [
  10517. {
  10518. "url": "https://phpunit.de/sponsors.html",
  10519. "type": "custom"
  10520. },
  10521. {
  10522. "url": "https://github.com/sebastianbergmann",
  10523. "type": "github"
  10524. }
  10525. ],
  10526. "time": "2021-12-25T07:07:57+00:00"
  10527. },
  10528. {
  10529. "name": "sebastian/cli-parser",
  10530. "version": "1.0.1",
  10531. "source": {
  10532. "type": "git",
  10533. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  10534. "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2"
  10535. },
  10536. "dist": {
  10537. "type": "zip",
  10538. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/442e7c7e687e42adc03470c7b668bc4b2402c0b2",
  10539. "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2",
  10540. "shasum": ""
  10541. },
  10542. "require": {
  10543. "php": ">=7.3"
  10544. },
  10545. "require-dev": {
  10546. "phpunit/phpunit": "^9.3"
  10547. },
  10548. "type": "library",
  10549. "extra": {
  10550. "branch-alias": {
  10551. "dev-master": "1.0-dev"
  10552. }
  10553. },
  10554. "autoload": {
  10555. "classmap": [
  10556. "src/"
  10557. ]
  10558. },
  10559. "notification-url": "https://packagist.org/downloads/",
  10560. "license": [
  10561. "BSD-3-Clause"
  10562. ],
  10563. "authors": [
  10564. {
  10565. "name": "Sebastian Bergmann",
  10566. "email": "sebastian@phpunit.de",
  10567. "role": "lead"
  10568. }
  10569. ],
  10570. "description": "Library for parsing CLI options",
  10571. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  10572. "support": {
  10573. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  10574. "source": "https://github.com/sebastianbergmann/cli-parser/tree/1.0.1"
  10575. },
  10576. "funding": [
  10577. {
  10578. "url": "https://github.com/sebastianbergmann",
  10579. "type": "github"
  10580. }
  10581. ],
  10582. "time": "2020-09-28T06:08:49+00:00"
  10583. },
  10584. {
  10585. "name": "sebastian/code-unit",
  10586. "version": "1.0.8",
  10587. "source": {
  10588. "type": "git",
  10589. "url": "https://github.com/sebastianbergmann/code-unit.git",
  10590. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120"
  10591. },
  10592. "dist": {
  10593. "type": "zip",
  10594. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/1fc9f64c0927627ef78ba436c9b17d967e68e120",
  10595. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120",
  10596. "shasum": ""
  10597. },
  10598. "require": {
  10599. "php": ">=7.3"
  10600. },
  10601. "require-dev": {
  10602. "phpunit/phpunit": "^9.3"
  10603. },
  10604. "type": "library",
  10605. "extra": {
  10606. "branch-alias": {
  10607. "dev-master": "1.0-dev"
  10608. }
  10609. },
  10610. "autoload": {
  10611. "classmap": [
  10612. "src/"
  10613. ]
  10614. },
  10615. "notification-url": "https://packagist.org/downloads/",
  10616. "license": [
  10617. "BSD-3-Clause"
  10618. ],
  10619. "authors": [
  10620. {
  10621. "name": "Sebastian Bergmann",
  10622. "email": "sebastian@phpunit.de",
  10623. "role": "lead"
  10624. }
  10625. ],
  10626. "description": "Collection of value objects that represent the PHP code units",
  10627. "homepage": "https://github.com/sebastianbergmann/code-unit",
  10628. "support": {
  10629. "issues": "https://github.com/sebastianbergmann/code-unit/issues",
  10630. "source": "https://github.com/sebastianbergmann/code-unit/tree/1.0.8"
  10631. },
  10632. "funding": [
  10633. {
  10634. "url": "https://github.com/sebastianbergmann",
  10635. "type": "github"
  10636. }
  10637. ],
  10638. "time": "2020-10-26T13:08:54+00:00"
  10639. },
  10640. {
  10641. "name": "sebastian/code-unit-reverse-lookup",
  10642. "version": "2.0.3",
  10643. "source": {
  10644. "type": "git",
  10645. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  10646. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5"
  10647. },
  10648. "dist": {
  10649. "type": "zip",
  10650. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  10651. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  10652. "shasum": ""
  10653. },
  10654. "require": {
  10655. "php": ">=7.3"
  10656. },
  10657. "require-dev": {
  10658. "phpunit/phpunit": "^9.3"
  10659. },
  10660. "type": "library",
  10661. "extra": {
  10662. "branch-alias": {
  10663. "dev-master": "2.0-dev"
  10664. }
  10665. },
  10666. "autoload": {
  10667. "classmap": [
  10668. "src/"
  10669. ]
  10670. },
  10671. "notification-url": "https://packagist.org/downloads/",
  10672. "license": [
  10673. "BSD-3-Clause"
  10674. ],
  10675. "authors": [
  10676. {
  10677. "name": "Sebastian Bergmann",
  10678. "email": "sebastian@phpunit.de"
  10679. }
  10680. ],
  10681. "description": "Looks up which function or method a line of code belongs to",
  10682. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  10683. "support": {
  10684. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  10685. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/2.0.3"
  10686. },
  10687. "funding": [
  10688. {
  10689. "url": "https://github.com/sebastianbergmann",
  10690. "type": "github"
  10691. }
  10692. ],
  10693. "time": "2020-09-28T05:30:19+00:00"
  10694. },
  10695. {
  10696. "name": "sebastian/comparator",
  10697. "version": "4.0.6",
  10698. "source": {
  10699. "type": "git",
  10700. "url": "https://github.com/sebastianbergmann/comparator.git",
  10701. "reference": "55f4261989e546dc112258c7a75935a81a7ce382"
  10702. },
  10703. "dist": {
  10704. "type": "zip",
  10705. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/55f4261989e546dc112258c7a75935a81a7ce382",
  10706. "reference": "55f4261989e546dc112258c7a75935a81a7ce382",
  10707. "shasum": ""
  10708. },
  10709. "require": {
  10710. "php": ">=7.3",
  10711. "sebastian/diff": "^4.0",
  10712. "sebastian/exporter": "^4.0"
  10713. },
  10714. "require-dev": {
  10715. "phpunit/phpunit": "^9.3"
  10716. },
  10717. "type": "library",
  10718. "extra": {
  10719. "branch-alias": {
  10720. "dev-master": "4.0-dev"
  10721. }
  10722. },
  10723. "autoload": {
  10724. "classmap": [
  10725. "src/"
  10726. ]
  10727. },
  10728. "notification-url": "https://packagist.org/downloads/",
  10729. "license": [
  10730. "BSD-3-Clause"
  10731. ],
  10732. "authors": [
  10733. {
  10734. "name": "Sebastian Bergmann",
  10735. "email": "sebastian@phpunit.de"
  10736. },
  10737. {
  10738. "name": "Jeff Welch",
  10739. "email": "whatthejeff@gmail.com"
  10740. },
  10741. {
  10742. "name": "Volker Dusch",
  10743. "email": "github@wallbash.com"
  10744. },
  10745. {
  10746. "name": "Bernhard Schussek",
  10747. "email": "bschussek@2bepublished.at"
  10748. }
  10749. ],
  10750. "description": "Provides the functionality to compare PHP values for equality",
  10751. "homepage": "https://github.com/sebastianbergmann/comparator",
  10752. "keywords": [
  10753. "comparator",
  10754. "compare",
  10755. "equality"
  10756. ],
  10757. "support": {
  10758. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  10759. "source": "https://github.com/sebastianbergmann/comparator/tree/4.0.6"
  10760. },
  10761. "funding": [
  10762. {
  10763. "url": "https://github.com/sebastianbergmann",
  10764. "type": "github"
  10765. }
  10766. ],
  10767. "time": "2020-10-26T15:49:45+00:00"
  10768. },
  10769. {
  10770. "name": "sebastian/complexity",
  10771. "version": "2.0.2",
  10772. "source": {
  10773. "type": "git",
  10774. "url": "https://github.com/sebastianbergmann/complexity.git",
  10775. "reference": "739b35e53379900cc9ac327b2147867b8b6efd88"
  10776. },
  10777. "dist": {
  10778. "type": "zip",
  10779. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/739b35e53379900cc9ac327b2147867b8b6efd88",
  10780. "reference": "739b35e53379900cc9ac327b2147867b8b6efd88",
  10781. "shasum": ""
  10782. },
  10783. "require": {
  10784. "nikic/php-parser": "^4.7",
  10785. "php": ">=7.3"
  10786. },
  10787. "require-dev": {
  10788. "phpunit/phpunit": "^9.3"
  10789. },
  10790. "type": "library",
  10791. "extra": {
  10792. "branch-alias": {
  10793. "dev-master": "2.0-dev"
  10794. }
  10795. },
  10796. "autoload": {
  10797. "classmap": [
  10798. "src/"
  10799. ]
  10800. },
  10801. "notification-url": "https://packagist.org/downloads/",
  10802. "license": [
  10803. "BSD-3-Clause"
  10804. ],
  10805. "authors": [
  10806. {
  10807. "name": "Sebastian Bergmann",
  10808. "email": "sebastian@phpunit.de",
  10809. "role": "lead"
  10810. }
  10811. ],
  10812. "description": "Library for calculating the complexity of PHP code units",
  10813. "homepage": "https://github.com/sebastianbergmann/complexity",
  10814. "support": {
  10815. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  10816. "source": "https://github.com/sebastianbergmann/complexity/tree/2.0.2"
  10817. },
  10818. "funding": [
  10819. {
  10820. "url": "https://github.com/sebastianbergmann",
  10821. "type": "github"
  10822. }
  10823. ],
  10824. "time": "2020-10-26T15:52:27+00:00"
  10825. },
  10826. {
  10827. "name": "sebastian/diff",
  10828. "version": "4.0.4",
  10829. "source": {
  10830. "type": "git",
  10831. "url": "https://github.com/sebastianbergmann/diff.git",
  10832. "reference": "3461e3fccc7cfdfc2720be910d3bd73c69be590d"
  10833. },
  10834. "dist": {
  10835. "type": "zip",
  10836. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/3461e3fccc7cfdfc2720be910d3bd73c69be590d",
  10837. "reference": "3461e3fccc7cfdfc2720be910d3bd73c69be590d",
  10838. "shasum": ""
  10839. },
  10840. "require": {
  10841. "php": ">=7.3"
  10842. },
  10843. "require-dev": {
  10844. "phpunit/phpunit": "^9.3",
  10845. "symfony/process": "^4.2 || ^5"
  10846. },
  10847. "type": "library",
  10848. "extra": {
  10849. "branch-alias": {
  10850. "dev-master": "4.0-dev"
  10851. }
  10852. },
  10853. "autoload": {
  10854. "classmap": [
  10855. "src/"
  10856. ]
  10857. },
  10858. "notification-url": "https://packagist.org/downloads/",
  10859. "license": [
  10860. "BSD-3-Clause"
  10861. ],
  10862. "authors": [
  10863. {
  10864. "name": "Sebastian Bergmann",
  10865. "email": "sebastian@phpunit.de"
  10866. },
  10867. {
  10868. "name": "Kore Nordmann",
  10869. "email": "mail@kore-nordmann.de"
  10870. }
  10871. ],
  10872. "description": "Diff implementation",
  10873. "homepage": "https://github.com/sebastianbergmann/diff",
  10874. "keywords": [
  10875. "diff",
  10876. "udiff",
  10877. "unidiff",
  10878. "unified diff"
  10879. ],
  10880. "support": {
  10881. "issues": "https://github.com/sebastianbergmann/diff/issues",
  10882. "source": "https://github.com/sebastianbergmann/diff/tree/4.0.4"
  10883. },
  10884. "funding": [
  10885. {
  10886. "url": "https://github.com/sebastianbergmann",
  10887. "type": "github"
  10888. }
  10889. ],
  10890. "time": "2020-10-26T13:10:38+00:00"
  10891. },
  10892. {
  10893. "name": "sebastian/environment",
  10894. "version": "5.1.3",
  10895. "source": {
  10896. "type": "git",
  10897. "url": "https://github.com/sebastianbergmann/environment.git",
  10898. "reference": "388b6ced16caa751030f6a69e588299fa09200ac"
  10899. },
  10900. "dist": {
  10901. "type": "zip",
  10902. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/388b6ced16caa751030f6a69e588299fa09200ac",
  10903. "reference": "388b6ced16caa751030f6a69e588299fa09200ac",
  10904. "shasum": ""
  10905. },
  10906. "require": {
  10907. "php": ">=7.3"
  10908. },
  10909. "require-dev": {
  10910. "phpunit/phpunit": "^9.3"
  10911. },
  10912. "suggest": {
  10913. "ext-posix": "*"
  10914. },
  10915. "type": "library",
  10916. "extra": {
  10917. "branch-alias": {
  10918. "dev-master": "5.1-dev"
  10919. }
  10920. },
  10921. "autoload": {
  10922. "classmap": [
  10923. "src/"
  10924. ]
  10925. },
  10926. "notification-url": "https://packagist.org/downloads/",
  10927. "license": [
  10928. "BSD-3-Clause"
  10929. ],
  10930. "authors": [
  10931. {
  10932. "name": "Sebastian Bergmann",
  10933. "email": "sebastian@phpunit.de"
  10934. }
  10935. ],
  10936. "description": "Provides functionality to handle HHVM/PHP environments",
  10937. "homepage": "http://www.github.com/sebastianbergmann/environment",
  10938. "keywords": [
  10939. "Xdebug",
  10940. "environment",
  10941. "hhvm"
  10942. ],
  10943. "support": {
  10944. "issues": "https://github.com/sebastianbergmann/environment/issues",
  10945. "source": "https://github.com/sebastianbergmann/environment/tree/5.1.3"
  10946. },
  10947. "funding": [
  10948. {
  10949. "url": "https://github.com/sebastianbergmann",
  10950. "type": "github"
  10951. }
  10952. ],
  10953. "time": "2020-09-28T05:52:38+00:00"
  10954. },
  10955. {
  10956. "name": "sebastian/exporter",
  10957. "version": "4.0.4",
  10958. "source": {
  10959. "type": "git",
  10960. "url": "https://github.com/sebastianbergmann/exporter.git",
  10961. "reference": "65e8b7db476c5dd267e65eea9cab77584d3cfff9"
  10962. },
  10963. "dist": {
  10964. "type": "zip",
  10965. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/65e8b7db476c5dd267e65eea9cab77584d3cfff9",
  10966. "reference": "65e8b7db476c5dd267e65eea9cab77584d3cfff9",
  10967. "shasum": ""
  10968. },
  10969. "require": {
  10970. "php": ">=7.3",
  10971. "sebastian/recursion-context": "^4.0"
  10972. },
  10973. "require-dev": {
  10974. "ext-mbstring": "*",
  10975. "phpunit/phpunit": "^9.3"
  10976. },
  10977. "type": "library",
  10978. "extra": {
  10979. "branch-alias": {
  10980. "dev-master": "4.0-dev"
  10981. }
  10982. },
  10983. "autoload": {
  10984. "classmap": [
  10985. "src/"
  10986. ]
  10987. },
  10988. "notification-url": "https://packagist.org/downloads/",
  10989. "license": [
  10990. "BSD-3-Clause"
  10991. ],
  10992. "authors": [
  10993. {
  10994. "name": "Sebastian Bergmann",
  10995. "email": "sebastian@phpunit.de"
  10996. },
  10997. {
  10998. "name": "Jeff Welch",
  10999. "email": "whatthejeff@gmail.com"
  11000. },
  11001. {
  11002. "name": "Volker Dusch",
  11003. "email": "github@wallbash.com"
  11004. },
  11005. {
  11006. "name": "Adam Harvey",
  11007. "email": "aharvey@php.net"
  11008. },
  11009. {
  11010. "name": "Bernhard Schussek",
  11011. "email": "bschussek@gmail.com"
  11012. }
  11013. ],
  11014. "description": "Provides the functionality to export PHP variables for visualization",
  11015. "homepage": "https://www.github.com/sebastianbergmann/exporter",
  11016. "keywords": [
  11017. "export",
  11018. "exporter"
  11019. ],
  11020. "support": {
  11021. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  11022. "source": "https://github.com/sebastianbergmann/exporter/tree/4.0.4"
  11023. },
  11024. "funding": [
  11025. {
  11026. "url": "https://github.com/sebastianbergmann",
  11027. "type": "github"
  11028. }
  11029. ],
  11030. "time": "2021-11-11T14:18:36+00:00"
  11031. },
  11032. {
  11033. "name": "sebastian/global-state",
  11034. "version": "5.0.3",
  11035. "source": {
  11036. "type": "git",
  11037. "url": "https://github.com/sebastianbergmann/global-state.git",
  11038. "reference": "23bd5951f7ff26f12d4e3242864df3e08dec4e49"
  11039. },
  11040. "dist": {
  11041. "type": "zip",
  11042. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/23bd5951f7ff26f12d4e3242864df3e08dec4e49",
  11043. "reference": "23bd5951f7ff26f12d4e3242864df3e08dec4e49",
  11044. "shasum": ""
  11045. },
  11046. "require": {
  11047. "php": ">=7.3",
  11048. "sebastian/object-reflector": "^2.0",
  11049. "sebastian/recursion-context": "^4.0"
  11050. },
  11051. "require-dev": {
  11052. "ext-dom": "*",
  11053. "phpunit/phpunit": "^9.3"
  11054. },
  11055. "suggest": {
  11056. "ext-uopz": "*"
  11057. },
  11058. "type": "library",
  11059. "extra": {
  11060. "branch-alias": {
  11061. "dev-master": "5.0-dev"
  11062. }
  11063. },
  11064. "autoload": {
  11065. "classmap": [
  11066. "src/"
  11067. ]
  11068. },
  11069. "notification-url": "https://packagist.org/downloads/",
  11070. "license": [
  11071. "BSD-3-Clause"
  11072. ],
  11073. "authors": [
  11074. {
  11075. "name": "Sebastian Bergmann",
  11076. "email": "sebastian@phpunit.de"
  11077. }
  11078. ],
  11079. "description": "Snapshotting of global state",
  11080. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  11081. "keywords": [
  11082. "global state"
  11083. ],
  11084. "support": {
  11085. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  11086. "source": "https://github.com/sebastianbergmann/global-state/tree/5.0.3"
  11087. },
  11088. "funding": [
  11089. {
  11090. "url": "https://github.com/sebastianbergmann",
  11091. "type": "github"
  11092. }
  11093. ],
  11094. "time": "2021-06-11T13:31:12+00:00"
  11095. },
  11096. {
  11097. "name": "sebastian/lines-of-code",
  11098. "version": "1.0.3",
  11099. "source": {
  11100. "type": "git",
  11101. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  11102. "reference": "c1c2e997aa3146983ed888ad08b15470a2e22ecc"
  11103. },
  11104. "dist": {
  11105. "type": "zip",
  11106. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/c1c2e997aa3146983ed888ad08b15470a2e22ecc",
  11107. "reference": "c1c2e997aa3146983ed888ad08b15470a2e22ecc",
  11108. "shasum": ""
  11109. },
  11110. "require": {
  11111. "nikic/php-parser": "^4.6",
  11112. "php": ">=7.3"
  11113. },
  11114. "require-dev": {
  11115. "phpunit/phpunit": "^9.3"
  11116. },
  11117. "type": "library",
  11118. "extra": {
  11119. "branch-alias": {
  11120. "dev-master": "1.0-dev"
  11121. }
  11122. },
  11123. "autoload": {
  11124. "classmap": [
  11125. "src/"
  11126. ]
  11127. },
  11128. "notification-url": "https://packagist.org/downloads/",
  11129. "license": [
  11130. "BSD-3-Clause"
  11131. ],
  11132. "authors": [
  11133. {
  11134. "name": "Sebastian Bergmann",
  11135. "email": "sebastian@phpunit.de",
  11136. "role": "lead"
  11137. }
  11138. ],
  11139. "description": "Library for counting the lines of code in PHP source code",
  11140. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  11141. "support": {
  11142. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  11143. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/1.0.3"
  11144. },
  11145. "funding": [
  11146. {
  11147. "url": "https://github.com/sebastianbergmann",
  11148. "type": "github"
  11149. }
  11150. ],
  11151. "time": "2020-11-28T06:42:11+00:00"
  11152. },
  11153. {
  11154. "name": "sebastian/object-enumerator",
  11155. "version": "4.0.4",
  11156. "source": {
  11157. "type": "git",
  11158. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  11159. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71"
  11160. },
  11161. "dist": {
  11162. "type": "zip",
  11163. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/5c9eeac41b290a3712d88851518825ad78f45c71",
  11164. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71",
  11165. "shasum": ""
  11166. },
  11167. "require": {
  11168. "php": ">=7.3",
  11169. "sebastian/object-reflector": "^2.0",
  11170. "sebastian/recursion-context": "^4.0"
  11171. },
  11172. "require-dev": {
  11173. "phpunit/phpunit": "^9.3"
  11174. },
  11175. "type": "library",
  11176. "extra": {
  11177. "branch-alias": {
  11178. "dev-master": "4.0-dev"
  11179. }
  11180. },
  11181. "autoload": {
  11182. "classmap": [
  11183. "src/"
  11184. ]
  11185. },
  11186. "notification-url": "https://packagist.org/downloads/",
  11187. "license": [
  11188. "BSD-3-Clause"
  11189. ],
  11190. "authors": [
  11191. {
  11192. "name": "Sebastian Bergmann",
  11193. "email": "sebastian@phpunit.de"
  11194. }
  11195. ],
  11196. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  11197. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  11198. "support": {
  11199. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  11200. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/4.0.4"
  11201. },
  11202. "funding": [
  11203. {
  11204. "url": "https://github.com/sebastianbergmann",
  11205. "type": "github"
  11206. }
  11207. ],
  11208. "time": "2020-10-26T13:12:34+00:00"
  11209. },
  11210. {
  11211. "name": "sebastian/object-reflector",
  11212. "version": "2.0.4",
  11213. "source": {
  11214. "type": "git",
  11215. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  11216. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7"
  11217. },
  11218. "dist": {
  11219. "type": "zip",
  11220. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  11221. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  11222. "shasum": ""
  11223. },
  11224. "require": {
  11225. "php": ">=7.3"
  11226. },
  11227. "require-dev": {
  11228. "phpunit/phpunit": "^9.3"
  11229. },
  11230. "type": "library",
  11231. "extra": {
  11232. "branch-alias": {
  11233. "dev-master": "2.0-dev"
  11234. }
  11235. },
  11236. "autoload": {
  11237. "classmap": [
  11238. "src/"
  11239. ]
  11240. },
  11241. "notification-url": "https://packagist.org/downloads/",
  11242. "license": [
  11243. "BSD-3-Clause"
  11244. ],
  11245. "authors": [
  11246. {
  11247. "name": "Sebastian Bergmann",
  11248. "email": "sebastian@phpunit.de"
  11249. }
  11250. ],
  11251. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  11252. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  11253. "support": {
  11254. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  11255. "source": "https://github.com/sebastianbergmann/object-reflector/tree/2.0.4"
  11256. },
  11257. "funding": [
  11258. {
  11259. "url": "https://github.com/sebastianbergmann",
  11260. "type": "github"
  11261. }
  11262. ],
  11263. "time": "2020-10-26T13:14:26+00:00"
  11264. },
  11265. {
  11266. "name": "sebastian/recursion-context",
  11267. "version": "4.0.4",
  11268. "source": {
  11269. "type": "git",
  11270. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  11271. "reference": "cd9d8cf3c5804de4341c283ed787f099f5506172"
  11272. },
  11273. "dist": {
  11274. "type": "zip",
  11275. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/cd9d8cf3c5804de4341c283ed787f099f5506172",
  11276. "reference": "cd9d8cf3c5804de4341c283ed787f099f5506172",
  11277. "shasum": ""
  11278. },
  11279. "require": {
  11280. "php": ">=7.3"
  11281. },
  11282. "require-dev": {
  11283. "phpunit/phpunit": "^9.3"
  11284. },
  11285. "type": "library",
  11286. "extra": {
  11287. "branch-alias": {
  11288. "dev-master": "4.0-dev"
  11289. }
  11290. },
  11291. "autoload": {
  11292. "classmap": [
  11293. "src/"
  11294. ]
  11295. },
  11296. "notification-url": "https://packagist.org/downloads/",
  11297. "license": [
  11298. "BSD-3-Clause"
  11299. ],
  11300. "authors": [
  11301. {
  11302. "name": "Sebastian Bergmann",
  11303. "email": "sebastian@phpunit.de"
  11304. },
  11305. {
  11306. "name": "Jeff Welch",
  11307. "email": "whatthejeff@gmail.com"
  11308. },
  11309. {
  11310. "name": "Adam Harvey",
  11311. "email": "aharvey@php.net"
  11312. }
  11313. ],
  11314. "description": "Provides functionality to recursively process PHP variables",
  11315. "homepage": "http://www.github.com/sebastianbergmann/recursion-context",
  11316. "support": {
  11317. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  11318. "source": "https://github.com/sebastianbergmann/recursion-context/tree/4.0.4"
  11319. },
  11320. "funding": [
  11321. {
  11322. "url": "https://github.com/sebastianbergmann",
  11323. "type": "github"
  11324. }
  11325. ],
  11326. "time": "2020-10-26T13:17:30+00:00"
  11327. },
  11328. {
  11329. "name": "sebastian/resource-operations",
  11330. "version": "3.0.3",
  11331. "source": {
  11332. "type": "git",
  11333. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  11334. "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8"
  11335. },
  11336. "dist": {
  11337. "type": "zip",
  11338. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8",
  11339. "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8",
  11340. "shasum": ""
  11341. },
  11342. "require": {
  11343. "php": ">=7.3"
  11344. },
  11345. "require-dev": {
  11346. "phpunit/phpunit": "^9.0"
  11347. },
  11348. "type": "library",
  11349. "extra": {
  11350. "branch-alias": {
  11351. "dev-master": "3.0-dev"
  11352. }
  11353. },
  11354. "autoload": {
  11355. "classmap": [
  11356. "src/"
  11357. ]
  11358. },
  11359. "notification-url": "https://packagist.org/downloads/",
  11360. "license": [
  11361. "BSD-3-Clause"
  11362. ],
  11363. "authors": [
  11364. {
  11365. "name": "Sebastian Bergmann",
  11366. "email": "sebastian@phpunit.de"
  11367. }
  11368. ],
  11369. "description": "Provides a list of PHP built-in functions that operate on resources",
  11370. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  11371. "support": {
  11372. "issues": "https://github.com/sebastianbergmann/resource-operations/issues",
  11373. "source": "https://github.com/sebastianbergmann/resource-operations/tree/3.0.3"
  11374. },
  11375. "funding": [
  11376. {
  11377. "url": "https://github.com/sebastianbergmann",
  11378. "type": "github"
  11379. }
  11380. ],
  11381. "time": "2020-09-28T06:45:17+00:00"
  11382. },
  11383. {
  11384. "name": "sebastian/type",
  11385. "version": "2.3.4",
  11386. "source": {
  11387. "type": "git",
  11388. "url": "https://github.com/sebastianbergmann/type.git",
  11389. "reference": "b8cd8a1c753c90bc1a0f5372170e3e489136f914"
  11390. },
  11391. "dist": {
  11392. "type": "zip",
  11393. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/b8cd8a1c753c90bc1a0f5372170e3e489136f914",
  11394. "reference": "b8cd8a1c753c90bc1a0f5372170e3e489136f914",
  11395. "shasum": ""
  11396. },
  11397. "require": {
  11398. "php": ">=7.3"
  11399. },
  11400. "require-dev": {
  11401. "phpunit/phpunit": "^9.3"
  11402. },
  11403. "type": "library",
  11404. "extra": {
  11405. "branch-alias": {
  11406. "dev-master": "2.3-dev"
  11407. }
  11408. },
  11409. "autoload": {
  11410. "classmap": [
  11411. "src/"
  11412. ]
  11413. },
  11414. "notification-url": "https://packagist.org/downloads/",
  11415. "license": [
  11416. "BSD-3-Clause"
  11417. ],
  11418. "authors": [
  11419. {
  11420. "name": "Sebastian Bergmann",
  11421. "email": "sebastian@phpunit.de",
  11422. "role": "lead"
  11423. }
  11424. ],
  11425. "description": "Collection of value objects that represent the types of the PHP type system",
  11426. "homepage": "https://github.com/sebastianbergmann/type",
  11427. "support": {
  11428. "issues": "https://github.com/sebastianbergmann/type/issues",
  11429. "source": "https://github.com/sebastianbergmann/type/tree/2.3.4"
  11430. },
  11431. "funding": [
  11432. {
  11433. "url": "https://github.com/sebastianbergmann",
  11434. "type": "github"
  11435. }
  11436. ],
  11437. "time": "2021-06-15T12:49:02+00:00"
  11438. },
  11439. {
  11440. "name": "sebastian/version",
  11441. "version": "3.0.2",
  11442. "source": {
  11443. "type": "git",
  11444. "url": "https://github.com/sebastianbergmann/version.git",
  11445. "reference": "c6c1022351a901512170118436c764e473f6de8c"
  11446. },
  11447. "dist": {
  11448. "type": "zip",
  11449. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c6c1022351a901512170118436c764e473f6de8c",
  11450. "reference": "c6c1022351a901512170118436c764e473f6de8c",
  11451. "shasum": ""
  11452. },
  11453. "require": {
  11454. "php": ">=7.3"
  11455. },
  11456. "type": "library",
  11457. "extra": {
  11458. "branch-alias": {
  11459. "dev-master": "3.0-dev"
  11460. }
  11461. },
  11462. "autoload": {
  11463. "classmap": [
  11464. "src/"
  11465. ]
  11466. },
  11467. "notification-url": "https://packagist.org/downloads/",
  11468. "license": [
  11469. "BSD-3-Clause"
  11470. ],
  11471. "authors": [
  11472. {
  11473. "name": "Sebastian Bergmann",
  11474. "email": "sebastian@phpunit.de",
  11475. "role": "lead"
  11476. }
  11477. ],
  11478. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  11479. "homepage": "https://github.com/sebastianbergmann/version",
  11480. "support": {
  11481. "issues": "https://github.com/sebastianbergmann/version/issues",
  11482. "source": "https://github.com/sebastianbergmann/version/tree/3.0.2"
  11483. },
  11484. "funding": [
  11485. {
  11486. "url": "https://github.com/sebastianbergmann",
  11487. "type": "github"
  11488. }
  11489. ],
  11490. "time": "2020-09-28T06:39:44+00:00"
  11491. },
  11492. {
  11493. "name": "theseer/tokenizer",
  11494. "version": "1.2.1",
  11495. "source": {
  11496. "type": "git",
  11497. "url": "https://github.com/theseer/tokenizer.git",
  11498. "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e"
  11499. },
  11500. "dist": {
  11501. "type": "zip",
  11502. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/34a41e998c2183e22995f158c581e7b5e755ab9e",
  11503. "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e",
  11504. "shasum": ""
  11505. },
  11506. "require": {
  11507. "ext-dom": "*",
  11508. "ext-tokenizer": "*",
  11509. "ext-xmlwriter": "*",
  11510. "php": "^7.2 || ^8.0"
  11511. },
  11512. "type": "library",
  11513. "autoload": {
  11514. "classmap": [
  11515. "src/"
  11516. ]
  11517. },
  11518. "notification-url": "https://packagist.org/downloads/",
  11519. "license": [
  11520. "BSD-3-Clause"
  11521. ],
  11522. "authors": [
  11523. {
  11524. "name": "Arne Blankerts",
  11525. "email": "arne@blankerts.de",
  11526. "role": "Developer"
  11527. }
  11528. ],
  11529. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  11530. "support": {
  11531. "issues": "https://github.com/theseer/tokenizer/issues",
  11532. "source": "https://github.com/theseer/tokenizer/tree/1.2.1"
  11533. },
  11534. "funding": [
  11535. {
  11536. "url": "https://github.com/theseer",
  11537. "type": "github"
  11538. }
  11539. ],
  11540. "time": "2021-07-28T10:34:58+00:00"
  11541. }
  11542. ],
  11543. "aliases": [],
  11544. "minimum-stability": "dev",
  11545. "stability-flags": [],
  11546. "prefer-stable": true,
  11547. "prefer-lowest": false,
  11548. "platform": {
  11549. "php": "^7.4|^8.0",
  11550. "ext-bcmath": "*",
  11551. "ext-ctype": "*",
  11552. "ext-curl": "*",
  11553. "ext-intl": "*",
  11554. "ext-json": "*",
  11555. "ext-mbstring": "*",
  11556. "ext-openssl": "*"
  11557. },
  11558. "platform-dev": [],
  11559. "plugin-api-version": "2.3.0"
  11560. }