composer.lock 286 KB

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