composer.lock 426 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546105471054810549105501055110552105531055410555105561055710558105591056010561105621056310564105651056610567105681056910570105711057210573105741057510576105771057810579105801058110582105831058410585105861058710588105891059010591105921059310594105951059610597105981059910600106011060210603106041060510606106071060810609106101061110612106131061410615106161061710618106191062010621106221062310624106251062610627106281062910630106311063210633106341063510636106371063810639106401064110642106431064410645106461064710648106491065010651106521065310654106551065610657106581065910660106611066210663106641066510666106671066810669106701067110672106731067410675106761067710678106791068010681106821068310684106851068610687106881068910690106911069210693106941069510696106971069810699107001070110702107031070410705107061070710708107091071010711107121071310714107151071610717107181071910720107211072210723107241072510726107271072810729107301073110732107331073410735107361073710738107391074010741107421074310744107451074610747107481074910750107511075210753107541075510756107571075810759107601076110762107631076410765107661076710768107691077010771107721077310774107751077610777107781077910780107811078210783107841078510786107871078810789107901079110792107931079410795107961079710798107991080010801108021080310804108051080610807108081080910810108111081210813108141081510816108171081810819108201082110822108231082410825108261082710828108291083010831108321083310834108351083610837108381083910840108411084210843108441084510846108471084810849108501085110852108531085410855108561085710858108591086010861108621086310864108651086610867108681086910870108711087210873108741087510876108771087810879108801088110882108831088410885108861088710888108891089010891108921089310894108951089610897108981089910900109011090210903109041090510906109071090810909109101091110912109131091410915109161091710918109191092010921109221092310924109251092610927109281092910930109311093210933109341093510936109371093810939109401094110942109431094410945109461094710948109491095010951109521095310954109551095610957109581095910960109611096210963109641096510966109671096810969109701097110972109731097410975109761097710978109791098010981109821098310984109851098610987109881098910990109911099210993109941099510996109971099810999110001100111002110031100411005110061100711008110091101011011110121101311014110151101611017110181101911020110211102211023110241102511026110271102811029110301103111032110331103411035110361103711038110391104011041110421104311044110451104611047110481104911050110511105211053110541105511056110571105811059110601106111062110631106411065110661106711068110691107011071110721107311074110751107611077110781107911080110811108211083110841108511086110871108811089110901109111092110931109411095110961109711098110991110011101111021110311104111051110611107111081110911110111111111211113111141111511116111171111811119111201112111122111231112411125111261112711128111291113011131111321113311134111351113611137111381113911140111411114211143111441114511146111471114811149111501115111152111531115411155111561115711158111591116011161111621116311164111651116611167111681116911170111711117211173111741117511176111771117811179111801118111182111831118411185111861118711188111891119011191111921119311194111951119611197111981119911200112011120211203112041120511206112071120811209112101121111212112131121411215112161121711218112191122011221112221122311224112251122611227112281122911230112311123211233112341123511236112371123811239112401124111242112431124411245112461124711248112491125011251112521125311254112551125611257112581125911260112611126211263112641126511266112671126811269112701127111272112731127411275112761127711278112791128011281112821128311284112851128611287112881128911290112911129211293112941129511296112971129811299113001130111302113031130411305113061130711308113091131011311113121131311314113151131611317113181131911320113211132211323113241132511326113271132811329113301133111332113331133411335113361133711338113391134011341113421134311344113451134611347113481134911350113511135211353113541135511356113571135811359113601136111362113631136411365113661136711368113691137011371113721137311374113751137611377113781137911380113811138211383113841138511386113871138811389113901139111392113931139411395113961139711398113991140011401114021140311404114051140611407114081140911410114111141211413114141141511416114171141811419114201142111422114231142411425114261142711428114291143011431114321143311434114351143611437114381143911440114411144211443114441144511446114471144811449114501145111452114531145411455114561145711458114591146011461114621146311464114651146611467114681146911470114711147211473114741147511476114771147811479114801148111482114831148411485114861148711488114891149011491114921149311494114951149611497114981149911500115011150211503115041150511506115071150811509115101151111512115131151411515115161151711518115191152011521115221152311524115251152611527115281152911530115311153211533115341153511536115371153811539115401154111542115431154411545115461154711548115491155011551115521155311554115551155611557115581155911560115611156211563115641156511566115671156811569115701157111572115731157411575115761157711578115791158011581115821158311584115851158611587115881158911590115911159211593115941159511596115971159811599116001160111602116031160411605116061160711608116091161011611116121161311614116151161611617116181161911620116211162211623116241162511626116271162811629116301163111632116331163411635116361163711638116391164011641116421164311644116451164611647116481164911650116511165211653116541165511656116571165811659116601166111662116631166411665116661166711668116691167011671116721167311674116751167611677116781167911680116811168211683116841168511686116871168811689116901169111692116931169411695116961169711698116991170011701117021170311704117051170611707117081170911710117111171211713117141171511716117171171811719117201172111722117231172411725117261172711728117291173011731117321173311734117351173611737117381173911740117411174211743117441174511746117471174811749117501175111752117531175411755117561175711758117591176011761117621176311764117651176611767117681176911770117711177211773117741177511776117771177811779117801178111782117831178411785117861178711788117891179011791117921179311794117951179611797117981179911800118011180211803118041180511806118071180811809118101181111812118131181411815118161181711818118191182011821118221182311824118251182611827118281182911830118311183211833118341183511836118371183811839118401184111842118431184411845118461184711848118491185011851118521185311854118551185611857118581185911860118611186211863118641186511866118671186811869118701187111872118731187411875118761187711878118791188011881118821188311884118851188611887118881188911890118911189211893118941189511896118971189811899119001190111902119031190411905119061190711908119091191011911119121191311914119151191611917119181191911920119211192211923119241192511926119271192811929119301193111932119331193411935
  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": "e54f2dd2cc06b1714a2a49ba599c5449",
  8. "packages": [
  9. {
  10. "name": "asm89/stack-cors",
  11. "version": "v2.0.2",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/asm89/stack-cors.git",
  15. "reference": "8d8f88b3b3830916be94292c1fbce84433efb1aa"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/asm89/stack-cors/zipball/8d8f88b3b3830916be94292c1fbce84433efb1aa",
  20. "reference": "8d8f88b3b3830916be94292c1fbce84433efb1aa",
  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": "[email protected]"
  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.2"
  62. },
  63. "time": "2020-10-29T16:03:21+00:00"
  64. },
  65. {
  66. "name": "brick/math",
  67. "version": "0.9.2",
  68. "source": {
  69. "type": "git",
  70. "url": "https://github.com/brick/math.git",
  71. "reference": "dff976c2f3487d42c1db75a3b180e2b9f0e72ce0"
  72. },
  73. "dist": {
  74. "type": "zip",
  75. "url": "https://api.github.com/repos/brick/math/zipball/dff976c2f3487d42c1db75a3b180e2b9f0e72ce0",
  76. "reference": "dff976c2f3487d42c1db75a3b180e2b9f0e72ce0",
  77. "shasum": ""
  78. },
  79. "require": {
  80. "ext-json": "*",
  81. "php": "^7.1 || ^8.0"
  82. },
  83. "require-dev": {
  84. "php-coveralls/php-coveralls": "^2.2",
  85. "phpunit/phpunit": "^7.5.15 || ^8.5 || ^9.0",
  86. "vimeo/psalm": "4.3.2"
  87. },
  88. "type": "library",
  89. "autoload": {
  90. "psr-4": {
  91. "Brick\\Math\\": "src/"
  92. }
  93. },
  94. "notification-url": "https://packagist.org/downloads/",
  95. "license": [
  96. "MIT"
  97. ],
  98. "description": "Arbitrary-precision arithmetic library",
  99. "keywords": [
  100. "Arbitrary-precision",
  101. "BigInteger",
  102. "BigRational",
  103. "arithmetic",
  104. "bigdecimal",
  105. "bignum",
  106. "brick",
  107. "math"
  108. ],
  109. "support": {
  110. "issues": "https://github.com/brick/math/issues",
  111. "source": "https://github.com/brick/math/tree/0.9.2"
  112. },
  113. "funding": [
  114. {
  115. "url": "https://tidelift.com/funding/github/packagist/brick/math",
  116. "type": "tidelift"
  117. }
  118. ],
  119. "time": "2021-01-20T22:51:39+00:00"
  120. },
  121. {
  122. "name": "composer/ca-bundle",
  123. "version": "1.2.9",
  124. "source": {
  125. "type": "git",
  126. "url": "https://github.com/composer/ca-bundle.git",
  127. "reference": "78a0e288fdcebf92aa2318a8d3656168da6ac1a5"
  128. },
  129. "dist": {
  130. "type": "zip",
  131. "url": "https://api.github.com/repos/composer/ca-bundle/zipball/78a0e288fdcebf92aa2318a8d3656168da6ac1a5",
  132. "reference": "78a0e288fdcebf92aa2318a8d3656168da6ac1a5",
  133. "shasum": ""
  134. },
  135. "require": {
  136. "ext-openssl": "*",
  137. "ext-pcre": "*",
  138. "php": "^5.3.2 || ^7.0 || ^8.0"
  139. },
  140. "require-dev": {
  141. "phpstan/phpstan": "^0.12.55",
  142. "psr/log": "^1.0",
  143. "symfony/phpunit-bridge": "^4.2 || ^5",
  144. "symfony/process": "^2.5 || ^3.0 || ^4.0 || ^5.0"
  145. },
  146. "type": "library",
  147. "extra": {
  148. "branch-alias": {
  149. "dev-main": "1.x-dev"
  150. }
  151. },
  152. "autoload": {
  153. "psr-4": {
  154. "Composer\\CaBundle\\": "src"
  155. }
  156. },
  157. "notification-url": "https://packagist.org/downloads/",
  158. "license": [
  159. "MIT"
  160. ],
  161. "authors": [
  162. {
  163. "name": "Jordi Boggiano",
  164. "email": "[email protected]",
  165. "homepage": "http://seld.be"
  166. }
  167. ],
  168. "description": "Lets you find a path to the system CA bundle, and includes a fallback to the Mozilla CA bundle.",
  169. "keywords": [
  170. "cabundle",
  171. "cacert",
  172. "certificate",
  173. "ssl",
  174. "tls"
  175. ],
  176. "support": {
  177. "irc": "irc://irc.freenode.org/composer",
  178. "issues": "https://github.com/composer/ca-bundle/issues",
  179. "source": "https://github.com/composer/ca-bundle/tree/1.2.9"
  180. },
  181. "funding": [
  182. {
  183. "url": "https://packagist.com",
  184. "type": "custom"
  185. },
  186. {
  187. "url": "https://github.com/composer",
  188. "type": "github"
  189. },
  190. {
  191. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  192. "type": "tidelift"
  193. }
  194. ],
  195. "time": "2021-01-12T12:10:35+00:00"
  196. },
  197. {
  198. "name": "dnoegel/php-xdg-base-dir",
  199. "version": "v0.1.1",
  200. "source": {
  201. "type": "git",
  202. "url": "https://github.com/dnoegel/php-xdg-base-dir.git",
  203. "reference": "8f8a6e48c5ecb0f991c2fdcf5f154a47d85f9ffd"
  204. },
  205. "dist": {
  206. "type": "zip",
  207. "url": "https://api.github.com/repos/dnoegel/php-xdg-base-dir/zipball/8f8a6e48c5ecb0f991c2fdcf5f154a47d85f9ffd",
  208. "reference": "8f8a6e48c5ecb0f991c2fdcf5f154a47d85f9ffd",
  209. "shasum": ""
  210. },
  211. "require": {
  212. "php": ">=5.3.2"
  213. },
  214. "require-dev": {
  215. "phpunit/phpunit": "~7.0|~6.0|~5.0|~4.8.35"
  216. },
  217. "type": "library",
  218. "autoload": {
  219. "psr-4": {
  220. "XdgBaseDir\\": "src/"
  221. }
  222. },
  223. "notification-url": "https://packagist.org/downloads/",
  224. "license": [
  225. "MIT"
  226. ],
  227. "description": "implementation of xdg base directory specification for php",
  228. "support": {
  229. "issues": "https://github.com/dnoegel/php-xdg-base-dir/issues",
  230. "source": "https://github.com/dnoegel/php-xdg-base-dir/tree/v0.1.1"
  231. },
  232. "time": "2019-12-04T15:06:13+00:00"
  233. },
  234. {
  235. "name": "doctrine/cache",
  236. "version": "1.10.2",
  237. "source": {
  238. "type": "git",
  239. "url": "https://github.com/doctrine/cache.git",
  240. "reference": "13e3381b25847283a91948d04640543941309727"
  241. },
  242. "dist": {
  243. "type": "zip",
  244. "url": "https://api.github.com/repos/doctrine/cache/zipball/13e3381b25847283a91948d04640543941309727",
  245. "reference": "13e3381b25847283a91948d04640543941309727",
  246. "shasum": ""
  247. },
  248. "require": {
  249. "php": "~7.1 || ^8.0"
  250. },
  251. "conflict": {
  252. "doctrine/common": ">2.2,<2.4"
  253. },
  254. "require-dev": {
  255. "alcaeus/mongo-php-adapter": "^1.1",
  256. "doctrine/coding-standard": "^6.0",
  257. "mongodb/mongodb": "^1.1",
  258. "phpunit/phpunit": "^7.0",
  259. "predis/predis": "~1.0"
  260. },
  261. "suggest": {
  262. "alcaeus/mongo-php-adapter": "Required to use legacy MongoDB driver"
  263. },
  264. "type": "library",
  265. "extra": {
  266. "branch-alias": {
  267. "dev-master": "1.9.x-dev"
  268. }
  269. },
  270. "autoload": {
  271. "psr-4": {
  272. "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache"
  273. }
  274. },
  275. "notification-url": "https://packagist.org/downloads/",
  276. "license": [
  277. "MIT"
  278. ],
  279. "authors": [
  280. {
  281. "name": "Guilherme Blanco",
  282. "email": "[email protected]"
  283. },
  284. {
  285. "name": "Roman Borschel",
  286. "email": "[email protected]"
  287. },
  288. {
  289. "name": "Benjamin Eberlei",
  290. "email": "[email protected]"
  291. },
  292. {
  293. "name": "Jonathan Wage",
  294. "email": "[email protected]"
  295. },
  296. {
  297. "name": "Johannes Schmitt",
  298. "email": "[email protected]"
  299. }
  300. ],
  301. "description": "PHP Doctrine Cache library is a popular cache implementation that supports many different drivers such as redis, memcache, apc, mongodb and others.",
  302. "homepage": "https://www.doctrine-project.org/projects/cache.html",
  303. "keywords": [
  304. "abstraction",
  305. "apcu",
  306. "cache",
  307. "caching",
  308. "couchdb",
  309. "memcached",
  310. "php",
  311. "redis",
  312. "xcache"
  313. ],
  314. "support": {
  315. "issues": "https://github.com/doctrine/cache/issues",
  316. "source": "https://github.com/doctrine/cache/tree/1.10.x"
  317. },
  318. "funding": [
  319. {
  320. "url": "https://www.doctrine-project.org/sponsorship.html",
  321. "type": "custom"
  322. },
  323. {
  324. "url": "https://www.patreon.com/phpdoctrine",
  325. "type": "patreon"
  326. },
  327. {
  328. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcache",
  329. "type": "tidelift"
  330. }
  331. ],
  332. "time": "2020-07-07T18:54:01+00:00"
  333. },
  334. {
  335. "name": "doctrine/dbal",
  336. "version": "2.12.1",
  337. "source": {
  338. "type": "git",
  339. "url": "https://github.com/doctrine/dbal.git",
  340. "reference": "adce7a954a1c2f14f85e94aed90c8489af204086"
  341. },
  342. "dist": {
  343. "type": "zip",
  344. "url": "https://api.github.com/repos/doctrine/dbal/zipball/adce7a954a1c2f14f85e94aed90c8489af204086",
  345. "reference": "adce7a954a1c2f14f85e94aed90c8489af204086",
  346. "shasum": ""
  347. },
  348. "require": {
  349. "doctrine/cache": "^1.0",
  350. "doctrine/event-manager": "^1.0",
  351. "ext-pdo": "*",
  352. "php": "^7.3 || ^8"
  353. },
  354. "require-dev": {
  355. "doctrine/coding-standard": "^8.1",
  356. "jetbrains/phpstorm-stubs": "^2019.1",
  357. "phpstan/phpstan": "^0.12.40",
  358. "phpunit/phpunit": "^9.4",
  359. "psalm/plugin-phpunit": "^0.10.0",
  360. "symfony/console": "^2.0.5|^3.0|^4.0|^5.0",
  361. "vimeo/psalm": "^3.17.2"
  362. },
  363. "suggest": {
  364. "symfony/console": "For helpful console commands such as SQL execution and import of files."
  365. },
  366. "bin": [
  367. "bin/doctrine-dbal"
  368. ],
  369. "type": "library",
  370. "extra": {
  371. "branch-alias": {
  372. "dev-master": "4.0.x-dev"
  373. }
  374. },
  375. "autoload": {
  376. "psr-4": {
  377. "Doctrine\\DBAL\\": "lib/Doctrine/DBAL"
  378. }
  379. },
  380. "notification-url": "https://packagist.org/downloads/",
  381. "license": [
  382. "MIT"
  383. ],
  384. "authors": [
  385. {
  386. "name": "Guilherme Blanco",
  387. "email": "[email protected]"
  388. },
  389. {
  390. "name": "Roman Borschel",
  391. "email": "[email protected]"
  392. },
  393. {
  394. "name": "Benjamin Eberlei",
  395. "email": "[email protected]"
  396. },
  397. {
  398. "name": "Jonathan Wage",
  399. "email": "[email protected]"
  400. }
  401. ],
  402. "description": "Powerful PHP database abstraction layer (DBAL) with many features for database schema introspection and management.",
  403. "homepage": "https://www.doctrine-project.org/projects/dbal.html",
  404. "keywords": [
  405. "abstraction",
  406. "database",
  407. "db2",
  408. "dbal",
  409. "mariadb",
  410. "mssql",
  411. "mysql",
  412. "oci8",
  413. "oracle",
  414. "pdo",
  415. "pgsql",
  416. "postgresql",
  417. "queryobject",
  418. "sasql",
  419. "sql",
  420. "sqlanywhere",
  421. "sqlite",
  422. "sqlserver",
  423. "sqlsrv"
  424. ],
  425. "support": {
  426. "issues": "https://github.com/doctrine/dbal/issues",
  427. "source": "https://github.com/doctrine/dbal/tree/2.12.1"
  428. },
  429. "funding": [
  430. {
  431. "url": "https://www.doctrine-project.org/sponsorship.html",
  432. "type": "custom"
  433. },
  434. {
  435. "url": "https://www.patreon.com/phpdoctrine",
  436. "type": "patreon"
  437. },
  438. {
  439. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdbal",
  440. "type": "tidelift"
  441. }
  442. ],
  443. "time": "2020-11-14T20:26:58+00:00"
  444. },
  445. {
  446. "name": "doctrine/event-manager",
  447. "version": "1.1.1",
  448. "source": {
  449. "type": "git",
  450. "url": "https://github.com/doctrine/event-manager.git",
  451. "reference": "41370af6a30faa9dc0368c4a6814d596e81aba7f"
  452. },
  453. "dist": {
  454. "type": "zip",
  455. "url": "https://api.github.com/repos/doctrine/event-manager/zipball/41370af6a30faa9dc0368c4a6814d596e81aba7f",
  456. "reference": "41370af6a30faa9dc0368c4a6814d596e81aba7f",
  457. "shasum": ""
  458. },
  459. "require": {
  460. "php": "^7.1 || ^8.0"
  461. },
  462. "conflict": {
  463. "doctrine/common": "<2.9@dev"
  464. },
  465. "require-dev": {
  466. "doctrine/coding-standard": "^6.0",
  467. "phpunit/phpunit": "^7.0"
  468. },
  469. "type": "library",
  470. "extra": {
  471. "branch-alias": {
  472. "dev-master": "1.0.x-dev"
  473. }
  474. },
  475. "autoload": {
  476. "psr-4": {
  477. "Doctrine\\Common\\": "lib/Doctrine/Common"
  478. }
  479. },
  480. "notification-url": "https://packagist.org/downloads/",
  481. "license": [
  482. "MIT"
  483. ],
  484. "authors": [
  485. {
  486. "name": "Guilherme Blanco",
  487. "email": "[email protected]"
  488. },
  489. {
  490. "name": "Roman Borschel",
  491. "email": "[email protected]"
  492. },
  493. {
  494. "name": "Benjamin Eberlei",
  495. "email": "[email protected]"
  496. },
  497. {
  498. "name": "Jonathan Wage",
  499. "email": "[email protected]"
  500. },
  501. {
  502. "name": "Johannes Schmitt",
  503. "email": "[email protected]"
  504. },
  505. {
  506. "name": "Marco Pivetta",
  507. "email": "[email protected]"
  508. }
  509. ],
  510. "description": "The Doctrine Event Manager is a simple PHP event system that was built to be used with the various Doctrine projects.",
  511. "homepage": "https://www.doctrine-project.org/projects/event-manager.html",
  512. "keywords": [
  513. "event",
  514. "event dispatcher",
  515. "event manager",
  516. "event system",
  517. "events"
  518. ],
  519. "support": {
  520. "issues": "https://github.com/doctrine/event-manager/issues",
  521. "source": "https://github.com/doctrine/event-manager/tree/1.1.x"
  522. },
  523. "funding": [
  524. {
  525. "url": "https://www.doctrine-project.org/sponsorship.html",
  526. "type": "custom"
  527. },
  528. {
  529. "url": "https://www.patreon.com/phpdoctrine",
  530. "type": "patreon"
  531. },
  532. {
  533. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fevent-manager",
  534. "type": "tidelift"
  535. }
  536. ],
  537. "time": "2020-05-29T18:28:51+00:00"
  538. },
  539. {
  540. "name": "doctrine/inflector",
  541. "version": "2.0.3",
  542. "source": {
  543. "type": "git",
  544. "url": "https://github.com/doctrine/inflector.git",
  545. "reference": "9cf661f4eb38f7c881cac67c75ea9b00bf97b210"
  546. },
  547. "dist": {
  548. "type": "zip",
  549. "url": "https://api.github.com/repos/doctrine/inflector/zipball/9cf661f4eb38f7c881cac67c75ea9b00bf97b210",
  550. "reference": "9cf661f4eb38f7c881cac67c75ea9b00bf97b210",
  551. "shasum": ""
  552. },
  553. "require": {
  554. "php": "^7.2 || ^8.0"
  555. },
  556. "require-dev": {
  557. "doctrine/coding-standard": "^7.0",
  558. "phpstan/phpstan": "^0.11",
  559. "phpstan/phpstan-phpunit": "^0.11",
  560. "phpstan/phpstan-strict-rules": "^0.11",
  561. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0"
  562. },
  563. "type": "library",
  564. "extra": {
  565. "branch-alias": {
  566. "dev-master": "2.0.x-dev"
  567. }
  568. },
  569. "autoload": {
  570. "psr-4": {
  571. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  572. }
  573. },
  574. "notification-url": "https://packagist.org/downloads/",
  575. "license": [
  576. "MIT"
  577. ],
  578. "authors": [
  579. {
  580. "name": "Guilherme Blanco",
  581. "email": "[email protected]"
  582. },
  583. {
  584. "name": "Roman Borschel",
  585. "email": "[email protected]"
  586. },
  587. {
  588. "name": "Benjamin Eberlei",
  589. "email": "[email protected]"
  590. },
  591. {
  592. "name": "Jonathan Wage",
  593. "email": "[email protected]"
  594. },
  595. {
  596. "name": "Johannes Schmitt",
  597. "email": "[email protected]"
  598. }
  599. ],
  600. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  601. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  602. "keywords": [
  603. "inflection",
  604. "inflector",
  605. "lowercase",
  606. "manipulation",
  607. "php",
  608. "plural",
  609. "singular",
  610. "strings",
  611. "uppercase",
  612. "words"
  613. ],
  614. "support": {
  615. "issues": "https://github.com/doctrine/inflector/issues",
  616. "source": "https://github.com/doctrine/inflector/tree/2.0.x"
  617. },
  618. "funding": [
  619. {
  620. "url": "https://www.doctrine-project.org/sponsorship.html",
  621. "type": "custom"
  622. },
  623. {
  624. "url": "https://www.patreon.com/phpdoctrine",
  625. "type": "patreon"
  626. },
  627. {
  628. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  629. "type": "tidelift"
  630. }
  631. ],
  632. "time": "2020-05-29T15:13:26+00:00"
  633. },
  634. {
  635. "name": "doctrine/lexer",
  636. "version": "1.2.1",
  637. "source": {
  638. "type": "git",
  639. "url": "https://github.com/doctrine/lexer.git",
  640. "reference": "e864bbf5904cb8f5bb334f99209b48018522f042"
  641. },
  642. "dist": {
  643. "type": "zip",
  644. "url": "https://api.github.com/repos/doctrine/lexer/zipball/e864bbf5904cb8f5bb334f99209b48018522f042",
  645. "reference": "e864bbf5904cb8f5bb334f99209b48018522f042",
  646. "shasum": ""
  647. },
  648. "require": {
  649. "php": "^7.2 || ^8.0"
  650. },
  651. "require-dev": {
  652. "doctrine/coding-standard": "^6.0",
  653. "phpstan/phpstan": "^0.11.8",
  654. "phpunit/phpunit": "^8.2"
  655. },
  656. "type": "library",
  657. "extra": {
  658. "branch-alias": {
  659. "dev-master": "1.2.x-dev"
  660. }
  661. },
  662. "autoload": {
  663. "psr-4": {
  664. "Doctrine\\Common\\Lexer\\": "lib/Doctrine/Common/Lexer"
  665. }
  666. },
  667. "notification-url": "https://packagist.org/downloads/",
  668. "license": [
  669. "MIT"
  670. ],
  671. "authors": [
  672. {
  673. "name": "Guilherme Blanco",
  674. "email": "[email protected]"
  675. },
  676. {
  677. "name": "Roman Borschel",
  678. "email": "[email protected]"
  679. },
  680. {
  681. "name": "Johannes Schmitt",
  682. "email": "[email protected]"
  683. }
  684. ],
  685. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  686. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  687. "keywords": [
  688. "annotations",
  689. "docblock",
  690. "lexer",
  691. "parser",
  692. "php"
  693. ],
  694. "support": {
  695. "issues": "https://github.com/doctrine/lexer/issues",
  696. "source": "https://github.com/doctrine/lexer/tree/1.2.1"
  697. },
  698. "funding": [
  699. {
  700. "url": "https://www.doctrine-project.org/sponsorship.html",
  701. "type": "custom"
  702. },
  703. {
  704. "url": "https://www.patreon.com/phpdoctrine",
  705. "type": "patreon"
  706. },
  707. {
  708. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  709. "type": "tidelift"
  710. }
  711. ],
  712. "time": "2020-05-25T17:44:05+00:00"
  713. },
  714. {
  715. "name": "dragonmantank/cron-expression",
  716. "version": "v2.3.1",
  717. "source": {
  718. "type": "git",
  719. "url": "https://github.com/dragonmantank/cron-expression.git",
  720. "reference": "65b2d8ee1f10915efb3b55597da3404f096acba2"
  721. },
  722. "dist": {
  723. "type": "zip",
  724. "url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/65b2d8ee1f10915efb3b55597da3404f096acba2",
  725. "reference": "65b2d8ee1f10915efb3b55597da3404f096acba2",
  726. "shasum": ""
  727. },
  728. "require": {
  729. "php": "^7.0|^8.0"
  730. },
  731. "require-dev": {
  732. "phpunit/phpunit": "^6.4|^7.0|^8.0|^9.0"
  733. },
  734. "type": "library",
  735. "extra": {
  736. "branch-alias": {
  737. "dev-master": "2.3-dev"
  738. }
  739. },
  740. "autoload": {
  741. "psr-4": {
  742. "Cron\\": "src/Cron/"
  743. }
  744. },
  745. "notification-url": "https://packagist.org/downloads/",
  746. "license": [
  747. "MIT"
  748. ],
  749. "authors": [
  750. {
  751. "name": "Michael Dowling",
  752. "email": "[email protected]",
  753. "homepage": "https://github.com/mtdowling"
  754. },
  755. {
  756. "name": "Chris Tankersley",
  757. "email": "[email protected]",
  758. "homepage": "https://github.com/dragonmantank"
  759. }
  760. ],
  761. "description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due",
  762. "keywords": [
  763. "cron",
  764. "schedule"
  765. ],
  766. "support": {
  767. "issues": "https://github.com/dragonmantank/cron-expression/issues",
  768. "source": "https://github.com/dragonmantank/cron-expression/tree/v2.3.1"
  769. },
  770. "funding": [
  771. {
  772. "url": "https://github.com/dragonmantank",
  773. "type": "github"
  774. }
  775. ],
  776. "time": "2020-10-13T00:52:37+00:00"
  777. },
  778. {
  779. "name": "egulias/email-validator",
  780. "version": "2.1.25",
  781. "source": {
  782. "type": "git",
  783. "url": "https://github.com/egulias/EmailValidator.git",
  784. "reference": "0dbf5d78455d4d6a41d186da50adc1122ec066f4"
  785. },
  786. "dist": {
  787. "type": "zip",
  788. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/0dbf5d78455d4d6a41d186da50adc1122ec066f4",
  789. "reference": "0dbf5d78455d4d6a41d186da50adc1122ec066f4",
  790. "shasum": ""
  791. },
  792. "require": {
  793. "doctrine/lexer": "^1.0.1",
  794. "php": ">=5.5",
  795. "symfony/polyfill-intl-idn": "^1.10"
  796. },
  797. "require-dev": {
  798. "dominicsayers/isemail": "^3.0.7",
  799. "phpunit/phpunit": "^4.8.36|^7.5.15",
  800. "satooshi/php-coveralls": "^1.0.1"
  801. },
  802. "suggest": {
  803. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  804. },
  805. "type": "library",
  806. "extra": {
  807. "branch-alias": {
  808. "dev-master": "2.1.x-dev"
  809. }
  810. },
  811. "autoload": {
  812. "psr-4": {
  813. "Egulias\\EmailValidator\\": "src"
  814. }
  815. },
  816. "notification-url": "https://packagist.org/downloads/",
  817. "license": [
  818. "MIT"
  819. ],
  820. "authors": [
  821. {
  822. "name": "Eduardo Gulias Davis"
  823. }
  824. ],
  825. "description": "A library for validating emails against several RFCs",
  826. "homepage": "https://github.com/egulias/EmailValidator",
  827. "keywords": [
  828. "email",
  829. "emailvalidation",
  830. "emailvalidator",
  831. "validation",
  832. "validator"
  833. ],
  834. "support": {
  835. "issues": "https://github.com/egulias/EmailValidator/issues",
  836. "source": "https://github.com/egulias/EmailValidator/tree/2.1.25"
  837. },
  838. "funding": [
  839. {
  840. "url": "https://github.com/egulias",
  841. "type": "github"
  842. }
  843. ],
  844. "time": "2020-12-29T14:50:06+00:00"
  845. },
  846. {
  847. "name": "elfsundae/bearychat",
  848. "version": "1.3.1",
  849. "source": {
  850. "type": "git",
  851. "url": "https://github.com/ElfSundae/bearychat.git",
  852. "reference": "b3c7437d0e24463504679931a482e9b642d93024"
  853. },
  854. "dist": {
  855. "type": "zip",
  856. "url": "https://api.github.com/repos/ElfSundae/bearychat/zipball/b3c7437d0e24463504679931a482e9b642d93024",
  857. "reference": "b3c7437d0e24463504679931a482e9b642d93024",
  858. "shasum": ""
  859. },
  860. "require": {
  861. "ext-mbstring": "*",
  862. "guzzlehttp/guzzle": "~5.3|~6.0",
  863. "php": ">=5.4.0"
  864. },
  865. "require-dev": {
  866. "mockery/mockery": "0.9.*",
  867. "phpunit/phpunit": "~5.7"
  868. },
  869. "suggest": {
  870. "elfsundae/laravel-bearychat": "Required for Laravel integration.",
  871. "laravel-notification-channels/bearychat": "BearyChat notifications channel for Laravel 5."
  872. },
  873. "type": "library",
  874. "autoload": {
  875. "psr-4": {
  876. "ElfSundae\\BearyChat\\": "src/"
  877. }
  878. },
  879. "notification-url": "https://packagist.org/downloads/",
  880. "license": [
  881. "MIT"
  882. ],
  883. "authors": [
  884. {
  885. "name": "Elf Sundae",
  886. "email": "[email protected]",
  887. "homepage": "https://0x123.com"
  888. }
  889. ],
  890. "description": "An elegant way of interacting with BearyChat webhooks.",
  891. "homepage": "https://github.com/ElfSundae/bearychat",
  892. "keywords": [
  893. "bearychat",
  894. "incoming",
  895. "outgoing",
  896. "robot",
  897. "webhook"
  898. ],
  899. "support": {
  900. "issues": "https://github.com/ElfSundae/bearychat/issues",
  901. "source": "https://github.com/ElfSundae/bearychat/tree/master"
  902. },
  903. "time": "2017-09-04T05:54:05+00:00"
  904. },
  905. {
  906. "name": "elfsundae/laravel-bearychat",
  907. "version": "1.6.0",
  908. "source": {
  909. "type": "git",
  910. "url": "https://github.com/ElfSundae/laravel-bearychat.git",
  911. "reference": "417a15868e46c9d664a437532c5ddd9be3fe9b04"
  912. },
  913. "dist": {
  914. "type": "zip",
  915. "url": "https://api.github.com/repos/ElfSundae/laravel-bearychat/zipball/417a15868e46c9d664a437532c5ddd9be3fe9b04",
  916. "reference": "417a15868e46c9d664a437532c5ddd9be3fe9b04",
  917. "shasum": ""
  918. },
  919. "require": {
  920. "elfsundae/bearychat": "^1.3.1",
  921. "illuminate/support": "~5.0|~6.0|~7.0|~8.0",
  922. "php": ">=5.6.4"
  923. },
  924. "require-dev": {
  925. "mockery/mockery": "~0.9|~1.0",
  926. "phpunit/phpunit": "~5.7|~6.0|~7.0|~8.0|~9.0"
  927. },
  928. "suggest": {
  929. "laravel-notification-channels/bearychat": "BearyChat notifications channel for Laravel 5."
  930. },
  931. "type": "library",
  932. "extra": {
  933. "laravel": {
  934. "providers": [
  935. "ElfSundae\\BearyChat\\Laravel\\ServiceProvider"
  936. ],
  937. "aliases": {
  938. "BearyChat": "ElfSundae\\BearyChat\\Laravel\\BearyChat"
  939. }
  940. }
  941. },
  942. "autoload": {
  943. "psr-4": {
  944. "ElfSundae\\BearyChat\\Laravel\\": "src/"
  945. },
  946. "files": [
  947. "src/helpers.php"
  948. ]
  949. },
  950. "notification-url": "https://packagist.org/downloads/",
  951. "license": [
  952. "MIT"
  953. ],
  954. "authors": [
  955. {
  956. "name": "Elf Sundae",
  957. "email": "[email protected]",
  958. "homepage": "https://0x123.com"
  959. }
  960. ],
  961. "description": "Laravel integration for BearyChat.",
  962. "homepage": "https://github.com/ElfSundae/laravel-bearychat",
  963. "keywords": [
  964. "bearychat",
  965. "incoming",
  966. "laravel",
  967. "outgoing",
  968. "robot",
  969. "webhook"
  970. ],
  971. "support": {
  972. "issues": "https://github.com/ElfSundae/laravel-bearychat/issues",
  973. "source": "https://github.com/ElfSundae/laravel-bearychat/tree/1.6.0"
  974. },
  975. "time": "2020-09-13T14:19:31+00:00"
  976. },
  977. {
  978. "name": "ezyang/htmlpurifier",
  979. "version": "v4.13.0",
  980. "source": {
  981. "type": "git",
  982. "url": "https://github.com/ezyang/htmlpurifier.git",
  983. "reference": "08e27c97e4c6ed02f37c5b2b20488046c8d90d75"
  984. },
  985. "dist": {
  986. "type": "zip",
  987. "url": "https://api.github.com/repos/ezyang/htmlpurifier/zipball/08e27c97e4c6ed02f37c5b2b20488046c8d90d75",
  988. "reference": "08e27c97e4c6ed02f37c5b2b20488046c8d90d75",
  989. "shasum": ""
  990. },
  991. "require": {
  992. "php": ">=5.2"
  993. },
  994. "require-dev": {
  995. "simpletest/simpletest": "dev-master#72de02a7b80c6bb8864ef9bf66d41d2f58f826bd"
  996. },
  997. "type": "library",
  998. "autoload": {
  999. "psr-0": {
  1000. "HTMLPurifier": "library/"
  1001. },
  1002. "files": [
  1003. "library/HTMLPurifier.composer.php"
  1004. ],
  1005. "exclude-from-classmap": [
  1006. "/library/HTMLPurifier/Language/"
  1007. ]
  1008. },
  1009. "notification-url": "https://packagist.org/downloads/",
  1010. "license": [
  1011. "LGPL-2.1-or-later"
  1012. ],
  1013. "authors": [
  1014. {
  1015. "name": "Edward Z. Yang",
  1016. "email": "[email protected]",
  1017. "homepage": "http://ezyang.com"
  1018. }
  1019. ],
  1020. "description": "Standards compliant HTML filter written in PHP",
  1021. "homepage": "http://htmlpurifier.org/",
  1022. "keywords": [
  1023. "html"
  1024. ],
  1025. "support": {
  1026. "issues": "https://github.com/ezyang/htmlpurifier/issues",
  1027. "source": "https://github.com/ezyang/htmlpurifier/tree/master"
  1028. },
  1029. "time": "2020-06-29T00:56:53+00:00"
  1030. },
  1031. {
  1032. "name": "fideloper/proxy",
  1033. "version": "4.4.1",
  1034. "source": {
  1035. "type": "git",
  1036. "url": "https://github.com/fideloper/TrustedProxy.git",
  1037. "reference": "c073b2bd04d1c90e04dc1b787662b558dd65ade0"
  1038. },
  1039. "dist": {
  1040. "type": "zip",
  1041. "url": "https://api.github.com/repos/fideloper/TrustedProxy/zipball/c073b2bd04d1c90e04dc1b787662b558dd65ade0",
  1042. "reference": "c073b2bd04d1c90e04dc1b787662b558dd65ade0",
  1043. "shasum": ""
  1044. },
  1045. "require": {
  1046. "illuminate/contracts": "^5.0|^6.0|^7.0|^8.0|^9.0",
  1047. "php": ">=5.4.0"
  1048. },
  1049. "require-dev": {
  1050. "illuminate/http": "^5.0|^6.0|^7.0|^8.0|^9.0",
  1051. "mockery/mockery": "^1.0",
  1052. "phpunit/phpunit": "^6.0"
  1053. },
  1054. "type": "library",
  1055. "extra": {
  1056. "laravel": {
  1057. "providers": [
  1058. "Fideloper\\Proxy\\TrustedProxyServiceProvider"
  1059. ]
  1060. }
  1061. },
  1062. "autoload": {
  1063. "psr-4": {
  1064. "Fideloper\\Proxy\\": "src/"
  1065. }
  1066. },
  1067. "notification-url": "https://packagist.org/downloads/",
  1068. "license": [
  1069. "MIT"
  1070. ],
  1071. "authors": [
  1072. {
  1073. "name": "Chris Fidao",
  1074. "email": "[email protected]"
  1075. }
  1076. ],
  1077. "description": "Set trusted proxies for Laravel",
  1078. "keywords": [
  1079. "load balancing",
  1080. "proxy",
  1081. "trusted proxy"
  1082. ],
  1083. "support": {
  1084. "issues": "https://github.com/fideloper/TrustedProxy/issues",
  1085. "source": "https://github.com/fideloper/TrustedProxy/tree/4.4.1"
  1086. },
  1087. "time": "2020-10-22T13:48:01+00:00"
  1088. },
  1089. {
  1090. "name": "fruitcake/laravel-cors",
  1091. "version": "v2.0.3",
  1092. "source": {
  1093. "type": "git",
  1094. "url": "https://github.com/fruitcake/laravel-cors.git",
  1095. "reference": "01de0fe5f71c70d1930ee9a80385f9cc28e0f63a"
  1096. },
  1097. "dist": {
  1098. "type": "zip",
  1099. "url": "https://api.github.com/repos/fruitcake/laravel-cors/zipball/01de0fe5f71c70d1930ee9a80385f9cc28e0f63a",
  1100. "reference": "01de0fe5f71c70d1930ee9a80385f9cc28e0f63a",
  1101. "shasum": ""
  1102. },
  1103. "require": {
  1104. "asm89/stack-cors": "^2.0.1",
  1105. "illuminate/contracts": "^6|^7|^8|^9",
  1106. "illuminate/support": "^6|^7|^8|^9",
  1107. "php": ">=7.2",
  1108. "symfony/http-foundation": "^4|^5",
  1109. "symfony/http-kernel": "^4.3.4|^5"
  1110. },
  1111. "require-dev": {
  1112. "laravel/framework": "^6|^7|^8",
  1113. "orchestra/testbench-dusk": "^4|^5|^6",
  1114. "phpunit/phpunit": "^6|^7|^8",
  1115. "squizlabs/php_codesniffer": "^3.5"
  1116. },
  1117. "type": "library",
  1118. "extra": {
  1119. "branch-alias": {
  1120. "dev-master": "2.0-dev"
  1121. },
  1122. "laravel": {
  1123. "providers": [
  1124. "Fruitcake\\Cors\\CorsServiceProvider"
  1125. ]
  1126. }
  1127. },
  1128. "autoload": {
  1129. "psr-4": {
  1130. "Fruitcake\\Cors\\": "src/"
  1131. }
  1132. },
  1133. "notification-url": "https://packagist.org/downloads/",
  1134. "license": [
  1135. "MIT"
  1136. ],
  1137. "authors": [
  1138. {
  1139. "name": "Fruitcake",
  1140. "homepage": "https://fruitcake.nl"
  1141. },
  1142. {
  1143. "name": "Barry vd. Heuvel",
  1144. "email": "[email protected]"
  1145. }
  1146. ],
  1147. "description": "Adds CORS (Cross-Origin Resource Sharing) headers support in your Laravel application",
  1148. "keywords": [
  1149. "api",
  1150. "cors",
  1151. "crossdomain",
  1152. "laravel"
  1153. ],
  1154. "support": {
  1155. "issues": "https://github.com/fruitcake/laravel-cors/issues",
  1156. "source": "https://github.com/fruitcake/laravel-cors/tree/v2.0.3"
  1157. },
  1158. "funding": [
  1159. {
  1160. "url": "https://github.com/barryvdh",
  1161. "type": "github"
  1162. }
  1163. ],
  1164. "time": "2020-10-22T13:57:20+00:00"
  1165. },
  1166. {
  1167. "name": "geoip2/geoip2",
  1168. "version": "v2.11.0",
  1169. "source": {
  1170. "type": "git",
  1171. "url": "https://github.com/maxmind/GeoIP2-php.git",
  1172. "reference": "d01be5894a5c1a3381c58c9b1795cd07f96c30f7"
  1173. },
  1174. "dist": {
  1175. "type": "zip",
  1176. "url": "https://api.github.com/repos/maxmind/GeoIP2-php/zipball/d01be5894a5c1a3381c58c9b1795cd07f96c30f7",
  1177. "reference": "d01be5894a5c1a3381c58c9b1795cd07f96c30f7",
  1178. "shasum": ""
  1179. },
  1180. "require": {
  1181. "ext-json": "*",
  1182. "maxmind-db/reader": "~1.8",
  1183. "maxmind/web-service-common": "~0.8",
  1184. "php": ">=7.2"
  1185. },
  1186. "require-dev": {
  1187. "friendsofphp/php-cs-fixer": "2.*",
  1188. "phpunit/phpunit": "^8.0 || ^9.0",
  1189. "squizlabs/php_codesniffer": "3.*"
  1190. },
  1191. "type": "library",
  1192. "autoload": {
  1193. "psr-4": {
  1194. "GeoIp2\\": "src"
  1195. }
  1196. },
  1197. "notification-url": "https://packagist.org/downloads/",
  1198. "license": [
  1199. "Apache-2.0"
  1200. ],
  1201. "authors": [
  1202. {
  1203. "name": "Gregory J. Oschwald",
  1204. "email": "[email protected]",
  1205. "homepage": "https://www.maxmind.com/"
  1206. }
  1207. ],
  1208. "description": "MaxMind GeoIP2 PHP API",
  1209. "homepage": "https://github.com/maxmind/GeoIP2-php",
  1210. "keywords": [
  1211. "IP",
  1212. "geoip",
  1213. "geoip2",
  1214. "geolocation",
  1215. "maxmind"
  1216. ],
  1217. "support": {
  1218. "issues": "https://github.com/maxmind/GeoIP2-php/issues",
  1219. "source": "https://github.com/maxmind/GeoIP2-php/tree/v2.11.0"
  1220. },
  1221. "time": "2020-10-01T18:48:34+00:00"
  1222. },
  1223. {
  1224. "name": "guzzlehttp/guzzle",
  1225. "version": "6.5.5",
  1226. "source": {
  1227. "type": "git",
  1228. "url": "https://github.com/guzzle/guzzle.git",
  1229. "reference": "9d4290de1cfd701f38099ef7e183b64b4b7b0c5e"
  1230. },
  1231. "dist": {
  1232. "type": "zip",
  1233. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/9d4290de1cfd701f38099ef7e183b64b4b7b0c5e",
  1234. "reference": "9d4290de1cfd701f38099ef7e183b64b4b7b0c5e",
  1235. "shasum": ""
  1236. },
  1237. "require": {
  1238. "ext-json": "*",
  1239. "guzzlehttp/promises": "^1.0",
  1240. "guzzlehttp/psr7": "^1.6.1",
  1241. "php": ">=5.5",
  1242. "symfony/polyfill-intl-idn": "^1.17.0"
  1243. },
  1244. "require-dev": {
  1245. "ext-curl": "*",
  1246. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.4 || ^7.0",
  1247. "psr/log": "^1.1"
  1248. },
  1249. "suggest": {
  1250. "psr/log": "Required for using the Log middleware"
  1251. },
  1252. "type": "library",
  1253. "extra": {
  1254. "branch-alias": {
  1255. "dev-master": "6.5-dev"
  1256. }
  1257. },
  1258. "autoload": {
  1259. "psr-4": {
  1260. "GuzzleHttp\\": "src/"
  1261. },
  1262. "files": [
  1263. "src/functions_include.php"
  1264. ]
  1265. },
  1266. "notification-url": "https://packagist.org/downloads/",
  1267. "license": [
  1268. "MIT"
  1269. ],
  1270. "authors": [
  1271. {
  1272. "name": "Michael Dowling",
  1273. "email": "[email protected]",
  1274. "homepage": "https://github.com/mtdowling"
  1275. }
  1276. ],
  1277. "description": "Guzzle is a PHP HTTP client library",
  1278. "homepage": "http://guzzlephp.org/",
  1279. "keywords": [
  1280. "client",
  1281. "curl",
  1282. "framework",
  1283. "http",
  1284. "http client",
  1285. "rest",
  1286. "web service"
  1287. ],
  1288. "support": {
  1289. "issues": "https://github.com/guzzle/guzzle/issues",
  1290. "source": "https://github.com/guzzle/guzzle/tree/6.5"
  1291. },
  1292. "time": "2020-06-16T21:01:06+00:00"
  1293. },
  1294. {
  1295. "name": "guzzlehttp/promises",
  1296. "version": "1.4.0",
  1297. "source": {
  1298. "type": "git",
  1299. "url": "https://github.com/guzzle/promises.git",
  1300. "reference": "60d379c243457e073cff02bc323a2a86cb355631"
  1301. },
  1302. "dist": {
  1303. "type": "zip",
  1304. "url": "https://api.github.com/repos/guzzle/promises/zipball/60d379c243457e073cff02bc323a2a86cb355631",
  1305. "reference": "60d379c243457e073cff02bc323a2a86cb355631",
  1306. "shasum": ""
  1307. },
  1308. "require": {
  1309. "php": ">=5.5"
  1310. },
  1311. "require-dev": {
  1312. "symfony/phpunit-bridge": "^4.4 || ^5.1"
  1313. },
  1314. "type": "library",
  1315. "extra": {
  1316. "branch-alias": {
  1317. "dev-master": "1.4-dev"
  1318. }
  1319. },
  1320. "autoload": {
  1321. "psr-4": {
  1322. "GuzzleHttp\\Promise\\": "src/"
  1323. },
  1324. "files": [
  1325. "src/functions_include.php"
  1326. ]
  1327. },
  1328. "notification-url": "https://packagist.org/downloads/",
  1329. "license": [
  1330. "MIT"
  1331. ],
  1332. "authors": [
  1333. {
  1334. "name": "Michael Dowling",
  1335. "email": "[email protected]",
  1336. "homepage": "https://github.com/mtdowling"
  1337. }
  1338. ],
  1339. "description": "Guzzle promises library",
  1340. "keywords": [
  1341. "promise"
  1342. ],
  1343. "support": {
  1344. "issues": "https://github.com/guzzle/promises/issues",
  1345. "source": "https://github.com/guzzle/promises/tree/1.4.0"
  1346. },
  1347. "time": "2020-09-30T07:37:28+00:00"
  1348. },
  1349. {
  1350. "name": "guzzlehttp/psr7",
  1351. "version": "1.7.0",
  1352. "source": {
  1353. "type": "git",
  1354. "url": "https://github.com/guzzle/psr7.git",
  1355. "reference": "53330f47520498c0ae1f61f7e2c90f55690c06a3"
  1356. },
  1357. "dist": {
  1358. "type": "zip",
  1359. "url": "https://api.github.com/repos/guzzle/psr7/zipball/53330f47520498c0ae1f61f7e2c90f55690c06a3",
  1360. "reference": "53330f47520498c0ae1f61f7e2c90f55690c06a3",
  1361. "shasum": ""
  1362. },
  1363. "require": {
  1364. "php": ">=5.4.0",
  1365. "psr/http-message": "~1.0",
  1366. "ralouphie/getallheaders": "^2.0.5 || ^3.0.0"
  1367. },
  1368. "provide": {
  1369. "psr/http-message-implementation": "1.0"
  1370. },
  1371. "require-dev": {
  1372. "ext-zlib": "*",
  1373. "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.10"
  1374. },
  1375. "suggest": {
  1376. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  1377. },
  1378. "type": "library",
  1379. "extra": {
  1380. "branch-alias": {
  1381. "dev-master": "1.7-dev"
  1382. }
  1383. },
  1384. "autoload": {
  1385. "psr-4": {
  1386. "GuzzleHttp\\Psr7\\": "src/"
  1387. },
  1388. "files": [
  1389. "src/functions_include.php"
  1390. ]
  1391. },
  1392. "notification-url": "https://packagist.org/downloads/",
  1393. "license": [
  1394. "MIT"
  1395. ],
  1396. "authors": [
  1397. {
  1398. "name": "Michael Dowling",
  1399. "email": "[email protected]",
  1400. "homepage": "https://github.com/mtdowling"
  1401. },
  1402. {
  1403. "name": "Tobias Schultze",
  1404. "homepage": "https://github.com/Tobion"
  1405. }
  1406. ],
  1407. "description": "PSR-7 message implementation that also provides common utility methods",
  1408. "keywords": [
  1409. "http",
  1410. "message",
  1411. "psr-7",
  1412. "request",
  1413. "response",
  1414. "stream",
  1415. "uri",
  1416. "url"
  1417. ],
  1418. "support": {
  1419. "issues": "https://github.com/guzzle/psr7/issues",
  1420. "source": "https://github.com/guzzle/psr7/tree/1.7.0"
  1421. },
  1422. "time": "2020-09-30T07:37:11+00:00"
  1423. },
  1424. {
  1425. "name": "intervention/image",
  1426. "version": "2.5.1",
  1427. "source": {
  1428. "type": "git",
  1429. "url": "https://github.com/Intervention/image.git",
  1430. "reference": "abbf18d5ab8367f96b3205ca3c89fb2fa598c69e"
  1431. },
  1432. "dist": {
  1433. "type": "zip",
  1434. "url": "https://api.github.com/repos/Intervention/image/zipball/abbf18d5ab8367f96b3205ca3c89fb2fa598c69e",
  1435. "reference": "abbf18d5ab8367f96b3205ca3c89fb2fa598c69e",
  1436. "shasum": ""
  1437. },
  1438. "require": {
  1439. "ext-fileinfo": "*",
  1440. "guzzlehttp/psr7": "~1.1",
  1441. "php": ">=5.4.0"
  1442. },
  1443. "require-dev": {
  1444. "mockery/mockery": "~0.9.2",
  1445. "phpunit/phpunit": "^4.8 || ^5.7"
  1446. },
  1447. "suggest": {
  1448. "ext-gd": "to use GD library based image processing.",
  1449. "ext-imagick": "to use Imagick based image processing.",
  1450. "intervention/imagecache": "Caching extension for the Intervention Image library"
  1451. },
  1452. "type": "library",
  1453. "extra": {
  1454. "branch-alias": {
  1455. "dev-master": "2.4-dev"
  1456. },
  1457. "laravel": {
  1458. "providers": [
  1459. "Intervention\\Image\\ImageServiceProvider"
  1460. ],
  1461. "aliases": {
  1462. "Image": "Intervention\\Image\\Facades\\Image"
  1463. }
  1464. }
  1465. },
  1466. "autoload": {
  1467. "psr-4": {
  1468. "Intervention\\Image\\": "src/Intervention/Image"
  1469. }
  1470. },
  1471. "notification-url": "https://packagist.org/downloads/",
  1472. "license": [
  1473. "MIT"
  1474. ],
  1475. "authors": [
  1476. {
  1477. "name": "Oliver Vogel",
  1478. "email": "[email protected]",
  1479. "homepage": "http://olivervogel.com/"
  1480. }
  1481. ],
  1482. "description": "Image handling and manipulation library with support for Laravel integration",
  1483. "homepage": "http://image.intervention.io/",
  1484. "keywords": [
  1485. "gd",
  1486. "image",
  1487. "imagick",
  1488. "laravel",
  1489. "thumbnail",
  1490. "watermark"
  1491. ],
  1492. "support": {
  1493. "issues": "https://github.com/Intervention/image/issues",
  1494. "source": "https://github.com/Intervention/image/tree/master"
  1495. },
  1496. "time": "2019-11-02T09:15:47+00:00"
  1497. },
  1498. {
  1499. "name": "ip2location/ip2location-laravel",
  1500. "version": "1.2.0",
  1501. "source": {
  1502. "type": "git",
  1503. "url": "https://github.com/ip2location/ip2location-laravel.git",
  1504. "reference": "56b0da66e12982ef6db0e2fe3b231659c5e76a9b"
  1505. },
  1506. "dist": {
  1507. "type": "zip",
  1508. "url": "https://api.github.com/repos/ip2location/ip2location-laravel/zipball/56b0da66e12982ef6db0e2fe3b231659c5e76a9b",
  1509. "reference": "56b0da66e12982ef6db0e2fe3b231659c5e76a9b",
  1510. "shasum": ""
  1511. },
  1512. "require": {
  1513. "ip2location/ip2location-php": "8.*",
  1514. "php": ">=5.4"
  1515. },
  1516. "type": "library",
  1517. "autoload": {
  1518. "psr-4": {
  1519. "Ip2location\\IP2LocationLaravel\\": "src/"
  1520. }
  1521. },
  1522. "notification-url": "https://packagist.org/downloads/",
  1523. "license": [
  1524. "MIT"
  1525. ],
  1526. "authors": [
  1527. {
  1528. "name": "IP2Location",
  1529. "email": "[email protected]"
  1530. }
  1531. ],
  1532. "description": "Lookup for visitor's IP information, such as country, region, city, coordinates, zip code, time zone, ISP, domain name, connection type, area code, weather, MCC, MNC, mobile brand name, elevation and usage type.",
  1533. "keywords": [
  1534. "geolocation",
  1535. "ip2location",
  1536. "laravel",
  1537. "laravel 5",
  1538. "laravel 7"
  1539. ],
  1540. "support": {
  1541. "issues": "https://github.com/ip2location/ip2location-laravel/issues",
  1542. "source": "https://github.com/ip2location/ip2location-laravel/tree/master"
  1543. },
  1544. "time": "2020-08-27T07:47:55+00:00"
  1545. },
  1546. {
  1547. "name": "ip2location/ip2location-php",
  1548. "version": "8.3.0",
  1549. "source": {
  1550. "type": "git",
  1551. "url": "https://github.com/chrislim2888/IP2Location-PHP-Module.git",
  1552. "reference": "4c501aa1f666ae85eab84d4df9d19399f2e6ce15"
  1553. },
  1554. "dist": {
  1555. "type": "zip",
  1556. "url": "https://api.github.com/repos/chrislim2888/IP2Location-PHP-Module/zipball/4c501aa1f666ae85eab84d4df9d19399f2e6ce15",
  1557. "reference": "4c501aa1f666ae85eab84d4df9d19399f2e6ce15",
  1558. "shasum": ""
  1559. },
  1560. "type": "library",
  1561. "autoload": {
  1562. "classmap": [
  1563. "IP2Location.php"
  1564. ]
  1565. },
  1566. "notification-url": "https://packagist.org/downloads/",
  1567. "license": [
  1568. "MIT"
  1569. ],
  1570. "authors": [
  1571. {
  1572. "name": "IP2Location",
  1573. "email": "[email protected]",
  1574. "homepage": "http://www.ip2location.com"
  1575. }
  1576. ],
  1577. "description": "[Official Release] IP2Location PHP API to get location info from IPv4 and IPv6 address.",
  1578. "homepage": "http://www.ip2location.com",
  1579. "keywords": [
  1580. "geolocation",
  1581. "ip2location",
  1582. "ip2locationlite"
  1583. ],
  1584. "support": {
  1585. "issues": "https://github.com/chrislim2888/IP2Location-PHP-Module/issues",
  1586. "source": "https://github.com/chrislim2888/IP2Location-PHP-Module/tree/8.3.0"
  1587. },
  1588. "time": "2020-11-23T04:30:39+00:00"
  1589. },
  1590. {
  1591. "name": "ipip/db",
  1592. "version": "v1.0.0",
  1593. "source": {
  1594. "type": "git",
  1595. "url": "https://github.com/ipipdotnet/ipdb-php.git",
  1596. "reference": "af42bf28b37dc76beccd7bbe2b0b0572e21f42cf"
  1597. },
  1598. "dist": {
  1599. "type": "zip",
  1600. "url": "https://api.github.com/repos/ipipdotnet/ipdb-php/zipball/af42bf28b37dc76beccd7bbe2b0b0572e21f42cf",
  1601. "reference": "af42bf28b37dc76beccd7bbe2b0b0572e21f42cf",
  1602. "shasum": ""
  1603. },
  1604. "require": {
  1605. "php": ">=5.4.0"
  1606. },
  1607. "type": "library",
  1608. "autoload": {
  1609. "psr-4": {
  1610. "ipip\\db\\": "src/ipip/db/"
  1611. }
  1612. },
  1613. "notification-url": "https://packagist.org/downloads/",
  1614. "license": [
  1615. "Apache-2.0"
  1616. ],
  1617. "authors": [
  1618. {
  1619. "name": "IPIP.net",
  1620. "email": "[email protected]",
  1621. "homepage": "https://www.ipip.net"
  1622. }
  1623. ],
  1624. "description": "IPIP.net officially supported IP database ipdb format parsing library",
  1625. "homepage": "https://www.ipip.net",
  1626. "keywords": [
  1627. "IP",
  1628. "geo",
  1629. "geoip",
  1630. "geolocation",
  1631. "ipdb",
  1632. "ipip.net"
  1633. ],
  1634. "support": {
  1635. "issues": "https://github.com/ipipdotnet/ipdb-php/issues",
  1636. "source": "https://github.com/ipipdotnet/ipdb-php/tree/v1.0.0"
  1637. },
  1638. "time": "2018-11-01T08:07:04+00:00"
  1639. },
  1640. {
  1641. "name": "jaybizzle/crawler-detect",
  1642. "version": "v1.2.103",
  1643. "source": {
  1644. "type": "git",
  1645. "url": "https://github.com/JayBizzle/Crawler-Detect.git",
  1646. "reference": "3efa2860959cc971f17624b40bf0699823f9d0f3"
  1647. },
  1648. "dist": {
  1649. "type": "zip",
  1650. "url": "https://api.github.com/repos/JayBizzle/Crawler-Detect/zipball/3efa2860959cc971f17624b40bf0699823f9d0f3",
  1651. "reference": "3efa2860959cc971f17624b40bf0699823f9d0f3",
  1652. "shasum": ""
  1653. },
  1654. "require": {
  1655. "php": ">=5.3.0"
  1656. },
  1657. "require-dev": {
  1658. "phpunit/phpunit": "^4.8|^5.5|^6.5"
  1659. },
  1660. "type": "library",
  1661. "autoload": {
  1662. "psr-4": {
  1663. "Jaybizzle\\CrawlerDetect\\": "src/"
  1664. }
  1665. },
  1666. "notification-url": "https://packagist.org/downloads/",
  1667. "license": [
  1668. "MIT"
  1669. ],
  1670. "authors": [
  1671. {
  1672. "name": "Mark Beech",
  1673. "email": "[email protected]",
  1674. "role": "Developer"
  1675. }
  1676. ],
  1677. "description": "CrawlerDetect is a PHP class for detecting bots/crawlers/spiders via the user agent",
  1678. "homepage": "https://github.com/JayBizzle/Crawler-Detect/",
  1679. "keywords": [
  1680. "crawler",
  1681. "crawler detect",
  1682. "crawler detector",
  1683. "crawlerdetect",
  1684. "php crawler detect"
  1685. ],
  1686. "support": {
  1687. "issues": "https://github.com/JayBizzle/Crawler-Detect/issues",
  1688. "source": "https://github.com/JayBizzle/Crawler-Detect/tree/v1.2.103"
  1689. },
  1690. "time": "2020-11-23T19:49:25+00:00"
  1691. },
  1692. {
  1693. "name": "jenssegers/agent",
  1694. "version": "v2.6.4",
  1695. "source": {
  1696. "type": "git",
  1697. "url": "https://github.com/jenssegers/agent.git",
  1698. "reference": "daa11c43729510b3700bc34d414664966b03bffe"
  1699. },
  1700. "dist": {
  1701. "type": "zip",
  1702. "url": "https://api.github.com/repos/jenssegers/agent/zipball/daa11c43729510b3700bc34d414664966b03bffe",
  1703. "reference": "daa11c43729510b3700bc34d414664966b03bffe",
  1704. "shasum": ""
  1705. },
  1706. "require": {
  1707. "jaybizzle/crawler-detect": "^1.2",
  1708. "mobiledetect/mobiledetectlib": "^2.7.6",
  1709. "php": ">=5.6"
  1710. },
  1711. "require-dev": {
  1712. "php-coveralls/php-coveralls": "^2.1",
  1713. "phpunit/phpunit": "^5.0|^6.0|^7.0"
  1714. },
  1715. "suggest": {
  1716. "illuminate/support": "Required for laravel service providers"
  1717. },
  1718. "type": "library",
  1719. "extra": {
  1720. "branch-alias": {
  1721. "dev-master": "3.0-dev"
  1722. },
  1723. "laravel": {
  1724. "providers": [
  1725. "Jenssegers\\Agent\\AgentServiceProvider"
  1726. ],
  1727. "aliases": {
  1728. "Agent": "Jenssegers\\Agent\\Facades\\Agent"
  1729. }
  1730. }
  1731. },
  1732. "autoload": {
  1733. "psr-4": {
  1734. "Jenssegers\\Agent\\": "src/"
  1735. }
  1736. },
  1737. "notification-url": "https://packagist.org/downloads/",
  1738. "license": [
  1739. "MIT"
  1740. ],
  1741. "authors": [
  1742. {
  1743. "name": "Jens Segers",
  1744. "homepage": "https://jenssegers.com"
  1745. }
  1746. ],
  1747. "description": "Desktop/mobile user agent parser with support for Laravel, based on Mobiledetect",
  1748. "homepage": "https://github.com/jenssegers/agent",
  1749. "keywords": [
  1750. "Agent",
  1751. "browser",
  1752. "desktop",
  1753. "laravel",
  1754. "mobile",
  1755. "platform",
  1756. "user agent",
  1757. "useragent"
  1758. ],
  1759. "support": {
  1760. "issues": "https://github.com/jenssegers/agent/issues",
  1761. "source": "https://github.com/jenssegers/agent/tree/v2.6.4"
  1762. },
  1763. "funding": [
  1764. {
  1765. "url": "https://github.com/jenssegers",
  1766. "type": "github"
  1767. },
  1768. {
  1769. "url": "https://tidelift.com/funding/github/packagist/jenssegers/agent",
  1770. "type": "tidelift"
  1771. }
  1772. ],
  1773. "time": "2020-06-13T08:05:20+00:00"
  1774. },
  1775. {
  1776. "name": "laravel-lang/lang",
  1777. "version": "7.0.9",
  1778. "source": {
  1779. "type": "git",
  1780. "url": "https://github.com/Laravel-Lang/lang.git",
  1781. "reference": "679a65755db37b35acd36a5e0ca51e055815a00a"
  1782. },
  1783. "dist": {
  1784. "type": "zip",
  1785. "url": "https://api.github.com/repos/Laravel-Lang/lang/zipball/679a65755db37b35acd36a5e0ca51e055815a00a",
  1786. "reference": "679a65755db37b35acd36a5e0ca51e055815a00a",
  1787. "shasum": ""
  1788. },
  1789. "require": {
  1790. "ext-json": "*"
  1791. },
  1792. "suggest": {
  1793. "andrey-helldar/laravel-lang-publisher": "Easy installation and update of translation files for your project",
  1794. "arcanedev/laravel-lang": "Translations manager and checker for Laravel 5",
  1795. "overtrue/laravel-lang": "Command to add languages in your project"
  1796. },
  1797. "type": "library",
  1798. "notification-url": "https://packagist.org/downloads/",
  1799. "license": [
  1800. "MIT"
  1801. ],
  1802. "authors": [
  1803. {
  1804. "name": "Laravel-Lang Team"
  1805. }
  1806. ],
  1807. "description": "Languages for Laravel",
  1808. "keywords": [
  1809. "lang",
  1810. "languages",
  1811. "laravel",
  1812. "lpm"
  1813. ],
  1814. "support": {
  1815. "issues": "https://github.com/Laravel-Lang/lang/issues",
  1816. "source": "https://github.com/Laravel-Lang/lang/tree/7.0.9"
  1817. },
  1818. "time": "2020-11-30T20:35:41+00:00"
  1819. },
  1820. {
  1821. "name": "laravel-notification-channels/bearychat",
  1822. "version": "1.4.0",
  1823. "source": {
  1824. "type": "git",
  1825. "url": "https://github.com/laravel-notification-channels/bearychat.git",
  1826. "reference": "b04ac9bad37cd08cf177a342b3e2b831c87b2a96"
  1827. },
  1828. "dist": {
  1829. "type": "zip",
  1830. "url": "https://api.github.com/repos/laravel-notification-channels/bearychat/zipball/b04ac9bad37cd08cf177a342b3e2b831c87b2a96",
  1831. "reference": "b04ac9bad37cd08cf177a342b3e2b831c87b2a96",
  1832. "shasum": ""
  1833. },
  1834. "require": {
  1835. "elfsundae/laravel-bearychat": "~1.4",
  1836. "illuminate/notifications": "~5.3|~6.0|~7.0|~8.0",
  1837. "php": ">=5.6.4"
  1838. },
  1839. "require-dev": {
  1840. "mockery/mockery": "~1.0",
  1841. "phpunit/phpunit": "~5.7|~6.0|~7.0|~8.0"
  1842. },
  1843. "type": "library",
  1844. "autoload": {
  1845. "psr-4": {
  1846. "NotificationChannels\\BearyChat\\": "src"
  1847. }
  1848. },
  1849. "notification-url": "https://packagist.org/downloads/",
  1850. "license": [
  1851. "MIT"
  1852. ],
  1853. "authors": [
  1854. {
  1855. "name": "Elf Sundae",
  1856. "email": "[email protected]",
  1857. "homepage": "https://github.com/ElfSundae",
  1858. "role": "Developer"
  1859. }
  1860. ],
  1861. "description": "BearyChat notifications channel for Laravel.",
  1862. "homepage": "https://github.com/laravel-notification-channels/bearychat",
  1863. "support": {
  1864. "issues": "https://github.com/laravel-notification-channels/bearychat/issues",
  1865. "source": "https://github.com/laravel-notification-channels/bearychat/tree/1.4.0"
  1866. },
  1867. "time": "2020-09-13T14:32:13+00:00"
  1868. },
  1869. {
  1870. "name": "laravel-notification-channels/telegram",
  1871. "version": "0.5.1",
  1872. "source": {
  1873. "type": "git",
  1874. "url": "https://github.com/laravel-notification-channels/telegram.git",
  1875. "reference": "2cedb10b78219cc91a285eaa5a3de0db405cc207"
  1876. },
  1877. "dist": {
  1878. "type": "zip",
  1879. "url": "https://api.github.com/repos/laravel-notification-channels/telegram/zipball/2cedb10b78219cc91a285eaa5a3de0db405cc207",
  1880. "reference": "2cedb10b78219cc91a285eaa5a3de0db405cc207",
  1881. "shasum": ""
  1882. },
  1883. "require": {
  1884. "ext-json": "*",
  1885. "guzzlehttp/guzzle": "^6.2 || ^7.0",
  1886. "illuminate/notifications": "^5.5 || ^6.0 || ^7.0 || ^8.0",
  1887. "illuminate/support": "^5.5 || ^6.0 || ^7.0 || ^8.0",
  1888. "php": "^7.1 || ^8.0"
  1889. },
  1890. "require-dev": {
  1891. "mockery/mockery": "^1.3",
  1892. "phpunit/phpunit": "^7.0 || ^8.0"
  1893. },
  1894. "type": "library",
  1895. "extra": {
  1896. "laravel": {
  1897. "providers": [
  1898. "NotificationChannels\\Telegram\\TelegramServiceProvider"
  1899. ]
  1900. }
  1901. },
  1902. "autoload": {
  1903. "psr-4": {
  1904. "NotificationChannels\\Telegram\\": "src"
  1905. }
  1906. },
  1907. "notification-url": "https://packagist.org/downloads/",
  1908. "license": [
  1909. "MIT"
  1910. ],
  1911. "authors": [
  1912. {
  1913. "name": "Irfaq Syed",
  1914. "email": "[email protected]",
  1915. "homepage": "https://lukonet.com",
  1916. "role": "Developer"
  1917. }
  1918. ],
  1919. "description": "Telegram Notifications Channel for Laravel",
  1920. "homepage": "https://github.com/laravel-notification-channels/telegram",
  1921. "keywords": [
  1922. "laravel",
  1923. "notification",
  1924. "telegram",
  1925. "telegram notification",
  1926. "telegram notifications channel"
  1927. ],
  1928. "support": {
  1929. "issues": "https://github.com/laravel-notification-channels/telegram/issues",
  1930. "source": "https://github.com/laravel-notification-channels/telegram/tree/0.5.1"
  1931. },
  1932. "time": "2020-12-06T19:00:18+00:00"
  1933. },
  1934. {
  1935. "name": "laravel/framework",
  1936. "version": "v7.30.4",
  1937. "source": {
  1938. "type": "git",
  1939. "url": "https://github.com/laravel/framework.git",
  1940. "reference": "9dd38140dc2924daa1a020a3d7a45f9ceff03df3"
  1941. },
  1942. "dist": {
  1943. "type": "zip",
  1944. "url": "https://api.github.com/repos/laravel/framework/zipball/9dd38140dc2924daa1a020a3d7a45f9ceff03df3",
  1945. "reference": "9dd38140dc2924daa1a020a3d7a45f9ceff03df3",
  1946. "shasum": ""
  1947. },
  1948. "require": {
  1949. "doctrine/inflector": "^1.4|^2.0",
  1950. "dragonmantank/cron-expression": "^2.3.1",
  1951. "egulias/email-validator": "^2.1.10",
  1952. "ext-json": "*",
  1953. "ext-mbstring": "*",
  1954. "ext-openssl": "*",
  1955. "league/commonmark": "^1.3",
  1956. "league/flysystem": "^1.1",
  1957. "monolog/monolog": "^2.0",
  1958. "nesbot/carbon": "^2.31",
  1959. "opis/closure": "^3.6",
  1960. "php": "^7.2.5|^8.0",
  1961. "psr/container": "^1.0",
  1962. "psr/simple-cache": "^1.0",
  1963. "ramsey/uuid": "^3.7|^4.0",
  1964. "swiftmailer/swiftmailer": "^6.0",
  1965. "symfony/console": "^5.0",
  1966. "symfony/error-handler": "^5.0",
  1967. "symfony/finder": "^5.0",
  1968. "symfony/http-foundation": "^5.0",
  1969. "symfony/http-kernel": "^5.0",
  1970. "symfony/mime": "^5.0",
  1971. "symfony/polyfill-php73": "^1.17",
  1972. "symfony/process": "^5.0",
  1973. "symfony/routing": "^5.0",
  1974. "symfony/var-dumper": "^5.0",
  1975. "tijsverkoyen/css-to-inline-styles": "^2.2.2",
  1976. "vlucas/phpdotenv": "^4.0",
  1977. "voku/portable-ascii": "^1.4.8"
  1978. },
  1979. "conflict": {
  1980. "tightenco/collect": "<5.5.33"
  1981. },
  1982. "provide": {
  1983. "psr/container-implementation": "1.0"
  1984. },
  1985. "replace": {
  1986. "illuminate/auth": "self.version",
  1987. "illuminate/broadcasting": "self.version",
  1988. "illuminate/bus": "self.version",
  1989. "illuminate/cache": "self.version",
  1990. "illuminate/config": "self.version",
  1991. "illuminate/console": "self.version",
  1992. "illuminate/container": "self.version",
  1993. "illuminate/contracts": "self.version",
  1994. "illuminate/cookie": "self.version",
  1995. "illuminate/database": "self.version",
  1996. "illuminate/encryption": "self.version",
  1997. "illuminate/events": "self.version",
  1998. "illuminate/filesystem": "self.version",
  1999. "illuminate/hashing": "self.version",
  2000. "illuminate/http": "self.version",
  2001. "illuminate/log": "self.version",
  2002. "illuminate/mail": "self.version",
  2003. "illuminate/notifications": "self.version",
  2004. "illuminate/pagination": "self.version",
  2005. "illuminate/pipeline": "self.version",
  2006. "illuminate/queue": "self.version",
  2007. "illuminate/redis": "self.version",
  2008. "illuminate/routing": "self.version",
  2009. "illuminate/session": "self.version",
  2010. "illuminate/support": "self.version",
  2011. "illuminate/testing": "self.version",
  2012. "illuminate/translation": "self.version",
  2013. "illuminate/validation": "self.version",
  2014. "illuminate/view": "self.version"
  2015. },
  2016. "require-dev": {
  2017. "aws/aws-sdk-php": "^3.155",
  2018. "doctrine/dbal": "^2.6",
  2019. "filp/whoops": "^2.8",
  2020. "guzzlehttp/guzzle": "^6.3.1|^7.0.1",
  2021. "league/flysystem-cached-adapter": "^1.0",
  2022. "mockery/mockery": "~1.3.3|^1.4.2",
  2023. "moontoast/math": "^1.1",
  2024. "orchestra/testbench-core": "^5.8",
  2025. "pda/pheanstalk": "^4.0",
  2026. "phpunit/phpunit": "^8.4|^9.3.3",
  2027. "predis/predis": "^1.1.1",
  2028. "symfony/cache": "^5.0"
  2029. },
  2030. "suggest": {
  2031. "aws/aws-sdk-php": "Required to use the SQS queue driver, DynamoDb failed job storage and SES mail driver (^3.155).",
  2032. "doctrine/dbal": "Required to rename columns and drop SQLite columns (^2.6).",
  2033. "ext-ftp": "Required to use the Flysystem FTP driver.",
  2034. "ext-gd": "Required to use Illuminate\\Http\\Testing\\FileFactory::image().",
  2035. "ext-memcached": "Required to use the memcache cache driver.",
  2036. "ext-pcntl": "Required to use all features of the queue worker.",
  2037. "ext-posix": "Required to use all features of the queue worker.",
  2038. "ext-redis": "Required to use the Redis cache and queue drivers (^4.0|^5.0).",
  2039. "fakerphp/faker": "Required to use the eloquent factory builder (^1.9.1).",
  2040. "filp/whoops": "Required for friendly error pages in development (^2.8).",
  2041. "guzzlehttp/guzzle": "Required to use the HTTP Client, Mailgun mail driver and the ping methods on schedules (^6.3.1|^7.0.1).",
  2042. "laravel/tinker": "Required to use the tinker console command (^2.0).",
  2043. "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (^1.0).",
  2044. "league/flysystem-cached-adapter": "Required to use the Flysystem cache (^1.0).",
  2045. "league/flysystem-sftp": "Required to use the Flysystem SFTP driver (^1.0).",
  2046. "mockery/mockery": "Required to use mocking (~1.3.3|^1.4.2).",
  2047. "moontoast/math": "Required to use ordered UUIDs (^1.1).",
  2048. "nyholm/psr7": "Required to use PSR-7 bridging features (^1.2).",
  2049. "pda/pheanstalk": "Required to use the beanstalk queue driver (^4.0).",
  2050. "phpunit/phpunit": "Required to use assertions and run tests (^8.4|^9.3.3).",
  2051. "predis/predis": "Required to use the predis connector (^1.1.2).",
  2052. "psr/http-message": "Required to allow Storage::put to accept a StreamInterface (^1.0).",
  2053. "pusher/pusher-php-server": "Required to use the Pusher broadcast driver (^4.0).",
  2054. "symfony/cache": "Required to PSR-6 cache bridge (^5.0).",
  2055. "symfony/filesystem": "Required to create relative storage directory symbolic links (^5.0).",
  2056. "symfony/psr-http-message-bridge": "Required to use PSR-7 bridging features (^2.0).",
  2057. "wildbit/swiftmailer-postmark": "Required to use Postmark mail driver (^3.0)."
  2058. },
  2059. "type": "library",
  2060. "extra": {
  2061. "branch-alias": {
  2062. "dev-master": "7.x-dev"
  2063. }
  2064. },
  2065. "autoload": {
  2066. "files": [
  2067. "src/Illuminate/Foundation/helpers.php",
  2068. "src/Illuminate/Support/helpers.php"
  2069. ],
  2070. "psr-4": {
  2071. "Illuminate\\": "src/Illuminate/"
  2072. }
  2073. },
  2074. "notification-url": "https://packagist.org/downloads/",
  2075. "license": [
  2076. "MIT"
  2077. ],
  2078. "authors": [
  2079. {
  2080. "name": "Taylor Otwell",
  2081. "email": "[email protected]"
  2082. }
  2083. ],
  2084. "description": "The Laravel Framework.",
  2085. "homepage": "https://laravel.com",
  2086. "keywords": [
  2087. "framework",
  2088. "laravel"
  2089. ],
  2090. "support": {
  2091. "issues": "https://github.com/laravel/framework/issues",
  2092. "source": "https://github.com/laravel/framework"
  2093. },
  2094. "time": "2021-01-21T14:10:48+00:00"
  2095. },
  2096. {
  2097. "name": "laravel/tinker",
  2098. "version": "v2.5.0",
  2099. "source": {
  2100. "type": "git",
  2101. "url": "https://github.com/laravel/tinker.git",
  2102. "reference": "45884b526e10a88a1b179fa1a1a24d5468c668c2"
  2103. },
  2104. "dist": {
  2105. "type": "zip",
  2106. "url": "https://api.github.com/repos/laravel/tinker/zipball/45884b526e10a88a1b179fa1a1a24d5468c668c2",
  2107. "reference": "45884b526e10a88a1b179fa1a1a24d5468c668c2",
  2108. "shasum": ""
  2109. },
  2110. "require": {
  2111. "illuminate/console": "^6.0|^7.0|^8.0",
  2112. "illuminate/contracts": "^6.0|^7.0|^8.0",
  2113. "illuminate/support": "^6.0|^7.0|^8.0",
  2114. "php": "^7.2.5|^8.0",
  2115. "psy/psysh": "^0.10.4",
  2116. "symfony/var-dumper": "^4.3.4|^5.0"
  2117. },
  2118. "require-dev": {
  2119. "mockery/mockery": "~1.3.3|^1.4.2",
  2120. "phpunit/phpunit": "^8.5.8|^9.3.3"
  2121. },
  2122. "suggest": {
  2123. "illuminate/database": "The Illuminate Database package (^6.0|^7.0|^8.0)."
  2124. },
  2125. "type": "library",
  2126. "extra": {
  2127. "branch-alias": {
  2128. "dev-master": "2.x-dev"
  2129. },
  2130. "laravel": {
  2131. "providers": [
  2132. "Laravel\\Tinker\\TinkerServiceProvider"
  2133. ]
  2134. }
  2135. },
  2136. "autoload": {
  2137. "psr-4": {
  2138. "Laravel\\Tinker\\": "src/"
  2139. }
  2140. },
  2141. "notification-url": "https://packagist.org/downloads/",
  2142. "license": [
  2143. "MIT"
  2144. ],
  2145. "authors": [
  2146. {
  2147. "name": "Taylor Otwell",
  2148. "email": "[email protected]"
  2149. }
  2150. ],
  2151. "description": "Powerful REPL for the Laravel framework.",
  2152. "keywords": [
  2153. "REPL",
  2154. "Tinker",
  2155. "laravel",
  2156. "psysh"
  2157. ],
  2158. "support": {
  2159. "issues": "https://github.com/laravel/tinker/issues",
  2160. "source": "https://github.com/laravel/tinker/tree/v2.5.0"
  2161. },
  2162. "time": "2020-10-29T13:07:12+00:00"
  2163. },
  2164. {
  2165. "name": "lcobucci/jwt",
  2166. "version": "3.3.3",
  2167. "source": {
  2168. "type": "git",
  2169. "url": "https://github.com/lcobucci/jwt.git",
  2170. "reference": "c1123697f6a2ec29162b82f170dd4a491f524773"
  2171. },
  2172. "dist": {
  2173. "type": "zip",
  2174. "url": "https://api.github.com/repos/lcobucci/jwt/zipball/c1123697f6a2ec29162b82f170dd4a491f524773",
  2175. "reference": "c1123697f6a2ec29162b82f170dd4a491f524773",
  2176. "shasum": ""
  2177. },
  2178. "require": {
  2179. "ext-mbstring": "*",
  2180. "ext-openssl": "*",
  2181. "php": "^5.6 || ^7.0"
  2182. },
  2183. "require-dev": {
  2184. "mikey179/vfsstream": "~1.5",
  2185. "phpmd/phpmd": "~2.2",
  2186. "phpunit/php-invoker": "~1.1",
  2187. "phpunit/phpunit": "^5.7 || ^7.3",
  2188. "squizlabs/php_codesniffer": "~2.3"
  2189. },
  2190. "type": "library",
  2191. "extra": {
  2192. "branch-alias": {
  2193. "dev-master": "3.1-dev"
  2194. }
  2195. },
  2196. "autoload": {
  2197. "psr-4": {
  2198. "Lcobucci\\JWT\\": "src"
  2199. }
  2200. },
  2201. "notification-url": "https://packagist.org/downloads/",
  2202. "license": [
  2203. "BSD-3-Clause"
  2204. ],
  2205. "authors": [
  2206. {
  2207. "name": "Luís Otávio Cobucci Oblonczyk",
  2208. "email": "[email protected]",
  2209. "role": "Developer"
  2210. }
  2211. ],
  2212. "description": "A simple library to work with JSON Web Token and JSON Web Signature",
  2213. "keywords": [
  2214. "JWS",
  2215. "jwt"
  2216. ],
  2217. "support": {
  2218. "issues": "https://github.com/lcobucci/jwt/issues",
  2219. "source": "https://github.com/lcobucci/jwt/tree/3.3.3"
  2220. },
  2221. "funding": [
  2222. {
  2223. "url": "https://github.com/lcobucci",
  2224. "type": "github"
  2225. },
  2226. {
  2227. "url": "https://www.patreon.com/lcobucci",
  2228. "type": "patreon"
  2229. }
  2230. ],
  2231. "time": "2020-08-20T13:22:28+00:00"
  2232. },
  2233. {
  2234. "name": "league/commonmark",
  2235. "version": "1.5.7",
  2236. "source": {
  2237. "type": "git",
  2238. "url": "https://github.com/thephpleague/commonmark.git",
  2239. "reference": "11df9b36fd4f1d2b727a73bf14931d81373b9a54"
  2240. },
  2241. "dist": {
  2242. "type": "zip",
  2243. "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/11df9b36fd4f1d2b727a73bf14931d81373b9a54",
  2244. "reference": "11df9b36fd4f1d2b727a73bf14931d81373b9a54",
  2245. "shasum": ""
  2246. },
  2247. "require": {
  2248. "ext-mbstring": "*",
  2249. "php": "^7.1 || ^8.0"
  2250. },
  2251. "conflict": {
  2252. "scrutinizer/ocular": "1.7.*"
  2253. },
  2254. "require-dev": {
  2255. "cebe/markdown": "~1.0",
  2256. "commonmark/commonmark.js": "0.29.2",
  2257. "erusev/parsedown": "~1.0",
  2258. "ext-json": "*",
  2259. "github/gfm": "0.29.0",
  2260. "michelf/php-markdown": "~1.4",
  2261. "mikehaertl/php-shellcommand": "^1.4",
  2262. "phpstan/phpstan": "^0.12",
  2263. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.2",
  2264. "scrutinizer/ocular": "^1.5",
  2265. "symfony/finder": "^4.2"
  2266. },
  2267. "bin": [
  2268. "bin/commonmark"
  2269. ],
  2270. "type": "library",
  2271. "autoload": {
  2272. "psr-4": {
  2273. "League\\CommonMark\\": "src"
  2274. }
  2275. },
  2276. "notification-url": "https://packagist.org/downloads/",
  2277. "license": [
  2278. "BSD-3-Clause"
  2279. ],
  2280. "authors": [
  2281. {
  2282. "name": "Colin O'Dell",
  2283. "email": "[email protected]",
  2284. "homepage": "https://www.colinodell.com",
  2285. "role": "Lead Developer"
  2286. }
  2287. ],
  2288. "description": "Highly-extensible PHP Markdown parser which fully supports the CommonMark spec and Github-Flavored Markdown (GFM)",
  2289. "homepage": "https://commonmark.thephpleague.com",
  2290. "keywords": [
  2291. "commonmark",
  2292. "flavored",
  2293. "gfm",
  2294. "github",
  2295. "github-flavored",
  2296. "markdown",
  2297. "md",
  2298. "parser"
  2299. ],
  2300. "support": {
  2301. "docs": "https://commonmark.thephpleague.com/",
  2302. "issues": "https://github.com/thephpleague/commonmark/issues",
  2303. "rss": "https://github.com/thephpleague/commonmark/releases.atom",
  2304. "source": "https://github.com/thephpleague/commonmark"
  2305. },
  2306. "funding": [
  2307. {
  2308. "url": "https://enjoy.gitstore.app/repositories/thephpleague/commonmark",
  2309. "type": "custom"
  2310. },
  2311. {
  2312. "url": "https://www.colinodell.com/sponsor",
  2313. "type": "custom"
  2314. },
  2315. {
  2316. "url": "https://www.paypal.me/colinpodell/10.00",
  2317. "type": "custom"
  2318. },
  2319. {
  2320. "url": "https://github.com/colinodell",
  2321. "type": "github"
  2322. },
  2323. {
  2324. "url": "https://www.patreon.com/colinodell",
  2325. "type": "patreon"
  2326. },
  2327. {
  2328. "url": "https://tidelift.com/funding/github/packagist/league/commonmark",
  2329. "type": "tidelift"
  2330. }
  2331. ],
  2332. "time": "2020-10-31T13:49:32+00:00"
  2333. },
  2334. {
  2335. "name": "league/flysystem",
  2336. "version": "1.1.3",
  2337. "source": {
  2338. "type": "git",
  2339. "url": "https://github.com/thephpleague/flysystem.git",
  2340. "reference": "9be3b16c877d477357c015cec057548cf9b2a14a"
  2341. },
  2342. "dist": {
  2343. "type": "zip",
  2344. "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/9be3b16c877d477357c015cec057548cf9b2a14a",
  2345. "reference": "9be3b16c877d477357c015cec057548cf9b2a14a",
  2346. "shasum": ""
  2347. },
  2348. "require": {
  2349. "ext-fileinfo": "*",
  2350. "league/mime-type-detection": "^1.3",
  2351. "php": "^7.2.5 || ^8.0"
  2352. },
  2353. "conflict": {
  2354. "league/flysystem-sftp": "<1.0.6"
  2355. },
  2356. "require-dev": {
  2357. "phpspec/prophecy": "^1.11.1",
  2358. "phpunit/phpunit": "^8.5.8"
  2359. },
  2360. "suggest": {
  2361. "ext-fileinfo": "Required for MimeType",
  2362. "ext-ftp": "Allows you to use FTP server storage",
  2363. "ext-openssl": "Allows you to use FTPS server storage",
  2364. "league/flysystem-aws-s3-v2": "Allows you to use S3 storage with AWS SDK v2",
  2365. "league/flysystem-aws-s3-v3": "Allows you to use S3 storage with AWS SDK v3",
  2366. "league/flysystem-azure": "Allows you to use Windows Azure Blob storage",
  2367. "league/flysystem-cached-adapter": "Flysystem adapter decorator for metadata caching",
  2368. "league/flysystem-eventable-filesystem": "Allows you to use EventableFilesystem",
  2369. "league/flysystem-rackspace": "Allows you to use Rackspace Cloud Files",
  2370. "league/flysystem-sftp": "Allows you to use SFTP server storage via phpseclib",
  2371. "league/flysystem-webdav": "Allows you to use WebDAV storage",
  2372. "league/flysystem-ziparchive": "Allows you to use ZipArchive adapter",
  2373. "spatie/flysystem-dropbox": "Allows you to use Dropbox storage",
  2374. "srmklive/flysystem-dropbox-v2": "Allows you to use Dropbox storage for PHP 5 applications"
  2375. },
  2376. "type": "library",
  2377. "extra": {
  2378. "branch-alias": {
  2379. "dev-master": "1.1-dev"
  2380. }
  2381. },
  2382. "autoload": {
  2383. "psr-4": {
  2384. "League\\Flysystem\\": "src/"
  2385. }
  2386. },
  2387. "notification-url": "https://packagist.org/downloads/",
  2388. "license": [
  2389. "MIT"
  2390. ],
  2391. "authors": [
  2392. {
  2393. "name": "Frank de Jonge",
  2394. "email": "[email protected]"
  2395. }
  2396. ],
  2397. "description": "Filesystem abstraction: Many filesystems, one API.",
  2398. "keywords": [
  2399. "Cloud Files",
  2400. "WebDAV",
  2401. "abstraction",
  2402. "aws",
  2403. "cloud",
  2404. "copy.com",
  2405. "dropbox",
  2406. "file systems",
  2407. "files",
  2408. "filesystem",
  2409. "filesystems",
  2410. "ftp",
  2411. "rackspace",
  2412. "remote",
  2413. "s3",
  2414. "sftp",
  2415. "storage"
  2416. ],
  2417. "support": {
  2418. "issues": "https://github.com/thephpleague/flysystem/issues",
  2419. "source": "https://github.com/thephpleague/flysystem/tree/1.x"
  2420. },
  2421. "funding": [
  2422. {
  2423. "url": "https://offset.earth/frankdejonge",
  2424. "type": "other"
  2425. }
  2426. ],
  2427. "time": "2020-08-23T07:39:11+00:00"
  2428. },
  2429. {
  2430. "name": "league/mime-type-detection",
  2431. "version": "1.7.0",
  2432. "source": {
  2433. "type": "git",
  2434. "url": "https://github.com/thephpleague/mime-type-detection.git",
  2435. "reference": "3b9dff8aaf7323590c1d2e443db701eb1f9aa0d3"
  2436. },
  2437. "dist": {
  2438. "type": "zip",
  2439. "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/3b9dff8aaf7323590c1d2e443db701eb1f9aa0d3",
  2440. "reference": "3b9dff8aaf7323590c1d2e443db701eb1f9aa0d3",
  2441. "shasum": ""
  2442. },
  2443. "require": {
  2444. "ext-fileinfo": "*",
  2445. "php": "^7.2 || ^8.0"
  2446. },
  2447. "require-dev": {
  2448. "friendsofphp/php-cs-fixer": "^2.18",
  2449. "phpstan/phpstan": "^0.12.68",
  2450. "phpunit/phpunit": "^8.5.8 || ^9.3"
  2451. },
  2452. "type": "library",
  2453. "autoload": {
  2454. "psr-4": {
  2455. "League\\MimeTypeDetection\\": "src"
  2456. }
  2457. },
  2458. "notification-url": "https://packagist.org/downloads/",
  2459. "license": [
  2460. "MIT"
  2461. ],
  2462. "authors": [
  2463. {
  2464. "name": "Frank de Jonge",
  2465. "email": "[email protected]"
  2466. }
  2467. ],
  2468. "description": "Mime-type detection for Flysystem",
  2469. "support": {
  2470. "issues": "https://github.com/thephpleague/mime-type-detection/issues",
  2471. "source": "https://github.com/thephpleague/mime-type-detection/tree/1.7.0"
  2472. },
  2473. "funding": [
  2474. {
  2475. "url": "https://github.com/frankdejonge",
  2476. "type": "github"
  2477. },
  2478. {
  2479. "url": "https://tidelift.com/funding/github/packagist/league/flysystem",
  2480. "type": "tidelift"
  2481. }
  2482. ],
  2483. "time": "2021-01-18T20:58:21+00:00"
  2484. },
  2485. {
  2486. "name": "maennchen/zipstream-php",
  2487. "version": "2.1.0",
  2488. "source": {
  2489. "type": "git",
  2490. "url": "https://github.com/maennchen/ZipStream-PHP.git",
  2491. "reference": "c4c5803cc1f93df3d2448478ef79394a5981cc58"
  2492. },
  2493. "dist": {
  2494. "type": "zip",
  2495. "url": "https://api.github.com/repos/maennchen/ZipStream-PHP/zipball/c4c5803cc1f93df3d2448478ef79394a5981cc58",
  2496. "reference": "c4c5803cc1f93df3d2448478ef79394a5981cc58",
  2497. "shasum": ""
  2498. },
  2499. "require": {
  2500. "myclabs/php-enum": "^1.5",
  2501. "php": ">= 7.1",
  2502. "psr/http-message": "^1.0",
  2503. "symfony/polyfill-mbstring": "^1.0"
  2504. },
  2505. "require-dev": {
  2506. "ext-zip": "*",
  2507. "guzzlehttp/guzzle": ">= 6.3",
  2508. "mikey179/vfsstream": "^1.6",
  2509. "phpunit/phpunit": ">= 7.5"
  2510. },
  2511. "type": "library",
  2512. "autoload": {
  2513. "psr-4": {
  2514. "ZipStream\\": "src/"
  2515. }
  2516. },
  2517. "notification-url": "https://packagist.org/downloads/",
  2518. "license": [
  2519. "MIT"
  2520. ],
  2521. "authors": [
  2522. {
  2523. "name": "Paul Duncan",
  2524. "email": "[email protected]"
  2525. },
  2526. {
  2527. "name": "Jonatan Männchen",
  2528. "email": "[email protected]"
  2529. },
  2530. {
  2531. "name": "Jesse Donat",
  2532. "email": "[email protected]"
  2533. },
  2534. {
  2535. "name": "András Kolesár",
  2536. "email": "[email protected]"
  2537. }
  2538. ],
  2539. "description": "ZipStream is a library for dynamically streaming dynamic zip files from PHP without writing to the disk at all on the server.",
  2540. "keywords": [
  2541. "stream",
  2542. "zip"
  2543. ],
  2544. "support": {
  2545. "issues": "https://github.com/maennchen/ZipStream-PHP/issues",
  2546. "source": "https://github.com/maennchen/ZipStream-PHP/tree/master"
  2547. },
  2548. "funding": [
  2549. {
  2550. "url": "https://opencollective.com/zipstream",
  2551. "type": "open_collective"
  2552. }
  2553. ],
  2554. "time": "2020-05-30T13:11:16+00:00"
  2555. },
  2556. {
  2557. "name": "markbaker/complex",
  2558. "version": "2.0.0",
  2559. "source": {
  2560. "type": "git",
  2561. "url": "https://github.com/MarkBaker/PHPComplex.git",
  2562. "reference": "9999f1432fae467bc93c53f357105b4c31bb994c"
  2563. },
  2564. "dist": {
  2565. "type": "zip",
  2566. "url": "https://api.github.com/repos/MarkBaker/PHPComplex/zipball/9999f1432fae467bc93c53f357105b4c31bb994c",
  2567. "reference": "9999f1432fae467bc93c53f357105b4c31bb994c",
  2568. "shasum": ""
  2569. },
  2570. "require": {
  2571. "php": "^7.2 || ^8.0"
  2572. },
  2573. "require-dev": {
  2574. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  2575. "phpcompatibility/php-compatibility": "^9.0",
  2576. "phpdocumentor/phpdocumentor": "2.*",
  2577. "phploc/phploc": "^4.0",
  2578. "phpmd/phpmd": "2.*",
  2579. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.3",
  2580. "sebastian/phpcpd": "^4.0",
  2581. "squizlabs/php_codesniffer": "^3.4"
  2582. },
  2583. "type": "library",
  2584. "autoload": {
  2585. "psr-4": {
  2586. "Complex\\": "classes/src/"
  2587. },
  2588. "files": [
  2589. "classes/src/functions/abs.php",
  2590. "classes/src/functions/acos.php",
  2591. "classes/src/functions/acosh.php",
  2592. "classes/src/functions/acot.php",
  2593. "classes/src/functions/acoth.php",
  2594. "classes/src/functions/acsc.php",
  2595. "classes/src/functions/acsch.php",
  2596. "classes/src/functions/argument.php",
  2597. "classes/src/functions/asec.php",
  2598. "classes/src/functions/asech.php",
  2599. "classes/src/functions/asin.php",
  2600. "classes/src/functions/asinh.php",
  2601. "classes/src/functions/atan.php",
  2602. "classes/src/functions/atanh.php",
  2603. "classes/src/functions/conjugate.php",
  2604. "classes/src/functions/cos.php",
  2605. "classes/src/functions/cosh.php",
  2606. "classes/src/functions/cot.php",
  2607. "classes/src/functions/coth.php",
  2608. "classes/src/functions/csc.php",
  2609. "classes/src/functions/csch.php",
  2610. "classes/src/functions/exp.php",
  2611. "classes/src/functions/inverse.php",
  2612. "classes/src/functions/ln.php",
  2613. "classes/src/functions/log2.php",
  2614. "classes/src/functions/log10.php",
  2615. "classes/src/functions/negative.php",
  2616. "classes/src/functions/pow.php",
  2617. "classes/src/functions/rho.php",
  2618. "classes/src/functions/sec.php",
  2619. "classes/src/functions/sech.php",
  2620. "classes/src/functions/sin.php",
  2621. "classes/src/functions/sinh.php",
  2622. "classes/src/functions/sqrt.php",
  2623. "classes/src/functions/tan.php",
  2624. "classes/src/functions/tanh.php",
  2625. "classes/src/functions/theta.php",
  2626. "classes/src/operations/add.php",
  2627. "classes/src/operations/subtract.php",
  2628. "classes/src/operations/multiply.php",
  2629. "classes/src/operations/divideby.php",
  2630. "classes/src/operations/divideinto.php"
  2631. ]
  2632. },
  2633. "notification-url": "https://packagist.org/downloads/",
  2634. "license": [
  2635. "MIT"
  2636. ],
  2637. "authors": [
  2638. {
  2639. "name": "Mark Baker",
  2640. "email": "[email protected]"
  2641. }
  2642. ],
  2643. "description": "PHP Class for working with complex numbers",
  2644. "homepage": "https://github.com/MarkBaker/PHPComplex",
  2645. "keywords": [
  2646. "complex",
  2647. "mathematics"
  2648. ],
  2649. "support": {
  2650. "issues": "https://github.com/MarkBaker/PHPComplex/issues",
  2651. "source": "https://github.com/MarkBaker/PHPComplex/tree/PHP8"
  2652. },
  2653. "time": "2020-08-26T10:42:07+00:00"
  2654. },
  2655. {
  2656. "name": "markbaker/matrix",
  2657. "version": "2.1.1",
  2658. "source": {
  2659. "type": "git",
  2660. "url": "https://github.com/MarkBaker/PHPMatrix.git",
  2661. "reference": "35a2d1a919a1de732402f694925168c53c17c838"
  2662. },
  2663. "dist": {
  2664. "type": "zip",
  2665. "url": "https://api.github.com/repos/MarkBaker/PHPMatrix/zipball/35a2d1a919a1de732402f694925168c53c17c838",
  2666. "reference": "35a2d1a919a1de732402f694925168c53c17c838",
  2667. "shasum": ""
  2668. },
  2669. "require": {
  2670. "php": "^7.1 || ^8.0"
  2671. },
  2672. "require-dev": {
  2673. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  2674. "phpcompatibility/php-compatibility": "^9.0",
  2675. "phpdocumentor/phpdocumentor": "2.*",
  2676. "phploc/phploc": "^4.0",
  2677. "phpmd/phpmd": "2.*",
  2678. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.3",
  2679. "sebastian/phpcpd": "^4.0",
  2680. "squizlabs/php_codesniffer": "^3.4"
  2681. },
  2682. "type": "library",
  2683. "autoload": {
  2684. "psr-4": {
  2685. "Matrix\\": "classes/src/"
  2686. },
  2687. "files": [
  2688. "classes/src/Functions/adjoint.php",
  2689. "classes/src/Functions/antidiagonal.php",
  2690. "classes/src/Functions/cofactors.php",
  2691. "classes/src/Functions/determinant.php",
  2692. "classes/src/Functions/diagonal.php",
  2693. "classes/src/Functions/identity.php",
  2694. "classes/src/Functions/inverse.php",
  2695. "classes/src/Functions/minors.php",
  2696. "classes/src/Functions/trace.php",
  2697. "classes/src/Functions/transpose.php",
  2698. "classes/src/Operations/add.php",
  2699. "classes/src/Operations/directsum.php",
  2700. "classes/src/Operations/subtract.php",
  2701. "classes/src/Operations/multiply.php",
  2702. "classes/src/Operations/divideby.php",
  2703. "classes/src/Operations/divideinto.php"
  2704. ]
  2705. },
  2706. "notification-url": "https://packagist.org/downloads/",
  2707. "license": [
  2708. "MIT"
  2709. ],
  2710. "authors": [
  2711. {
  2712. "name": "Mark Baker",
  2713. "email": "[email protected]"
  2714. }
  2715. ],
  2716. "description": "PHP Class for working with matrices",
  2717. "homepage": "https://github.com/MarkBaker/PHPMatrix",
  2718. "keywords": [
  2719. "mathematics",
  2720. "matrix",
  2721. "vector"
  2722. ],
  2723. "support": {
  2724. "issues": "https://github.com/MarkBaker/PHPMatrix/issues",
  2725. "source": "https://github.com/MarkBaker/PHPMatrix/tree/2.1.1"
  2726. },
  2727. "time": "2021-01-21T13:53:09+00:00"
  2728. },
  2729. {
  2730. "name": "maxmind-db/reader",
  2731. "version": "v1.9.0",
  2732. "source": {
  2733. "type": "git",
  2734. "url": "https://github.com/maxmind/MaxMind-DB-Reader-php.git",
  2735. "reference": "9ee9ba9ee287b119e9f5a8e8dbfea0b49647cec4"
  2736. },
  2737. "dist": {
  2738. "type": "zip",
  2739. "url": "https://api.github.com/repos/maxmind/MaxMind-DB-Reader-php/zipball/9ee9ba9ee287b119e9f5a8e8dbfea0b49647cec4",
  2740. "reference": "9ee9ba9ee287b119e9f5a8e8dbfea0b49647cec4",
  2741. "shasum": ""
  2742. },
  2743. "require": {
  2744. "php": ">=7.2"
  2745. },
  2746. "conflict": {
  2747. "ext-maxminddb": "<1.9.0,>=2.0.0"
  2748. },
  2749. "require-dev": {
  2750. "friendsofphp/php-cs-fixer": "*",
  2751. "php-coveralls/php-coveralls": "^2.1",
  2752. "phpunit/phpcov": ">=6.0.0",
  2753. "phpunit/phpunit": ">=8.0.0,<10.0.0",
  2754. "squizlabs/php_codesniffer": "3.*"
  2755. },
  2756. "suggest": {
  2757. "ext-bcmath": "bcmath or gmp is required for decoding larger integers with the pure PHP decoder",
  2758. "ext-gmp": "bcmath or gmp is required for decoding larger integers with the pure PHP decoder",
  2759. "ext-maxminddb": "A C-based database decoder that provides significantly faster lookups"
  2760. },
  2761. "type": "library",
  2762. "autoload": {
  2763. "psr-4": {
  2764. "MaxMind\\Db\\": "src/MaxMind/Db"
  2765. }
  2766. },
  2767. "notification-url": "https://packagist.org/downloads/",
  2768. "license": [
  2769. "Apache-2.0"
  2770. ],
  2771. "authors": [
  2772. {
  2773. "name": "Gregory J. Oschwald",
  2774. "email": "[email protected]",
  2775. "homepage": "https://www.maxmind.com/"
  2776. }
  2777. ],
  2778. "description": "MaxMind DB Reader API",
  2779. "homepage": "https://github.com/maxmind/MaxMind-DB-Reader-php",
  2780. "keywords": [
  2781. "database",
  2782. "geoip",
  2783. "geoip2",
  2784. "geolocation",
  2785. "maxmind"
  2786. ],
  2787. "support": {
  2788. "issues": "https://github.com/maxmind/MaxMind-DB-Reader-php/issues",
  2789. "source": "https://github.com/maxmind/MaxMind-DB-Reader-php/tree/v1.9.0"
  2790. },
  2791. "time": "2021-01-07T21:15:29+00:00"
  2792. },
  2793. {
  2794. "name": "maxmind/web-service-common",
  2795. "version": "v0.8.1",
  2796. "source": {
  2797. "type": "git",
  2798. "url": "https://github.com/maxmind/web-service-common-php.git",
  2799. "reference": "32f274051c543fc865e5a84d3a2c703913641ea8"
  2800. },
  2801. "dist": {
  2802. "type": "zip",
  2803. "url": "https://api.github.com/repos/maxmind/web-service-common-php/zipball/32f274051c543fc865e5a84d3a2c703913641ea8",
  2804. "reference": "32f274051c543fc865e5a84d3a2c703913641ea8",
  2805. "shasum": ""
  2806. },
  2807. "require": {
  2808. "composer/ca-bundle": "^1.0.3",
  2809. "ext-curl": "*",
  2810. "ext-json": "*",
  2811. "php": ">=7.2"
  2812. },
  2813. "require-dev": {
  2814. "friendsofphp/php-cs-fixer": "2.*",
  2815. "phpunit/phpunit": "^8.0 || ^9.0",
  2816. "squizlabs/php_codesniffer": "3.*"
  2817. },
  2818. "type": "library",
  2819. "autoload": {
  2820. "psr-4": {
  2821. "MaxMind\\Exception\\": "src/Exception",
  2822. "MaxMind\\WebService\\": "src/WebService"
  2823. }
  2824. },
  2825. "notification-url": "https://packagist.org/downloads/",
  2826. "license": [
  2827. "Apache-2.0"
  2828. ],
  2829. "authors": [
  2830. {
  2831. "name": "Gregory Oschwald",
  2832. "email": "[email protected]"
  2833. }
  2834. ],
  2835. "description": "Internal MaxMind Web Service API",
  2836. "homepage": "https://github.com/maxmind/web-service-common-php",
  2837. "support": {
  2838. "issues": "https://github.com/maxmind/web-service-common-php/issues",
  2839. "source": "https://github.com/maxmind/web-service-common-php/tree/v0.8.1"
  2840. },
  2841. "time": "2020-11-02T17:00:53+00:00"
  2842. },
  2843. {
  2844. "name": "mews/captcha",
  2845. "version": "3.2.5",
  2846. "source": {
  2847. "type": "git",
  2848. "url": "https://github.com/mewebstudio/captcha.git",
  2849. "reference": "41a3dac8cf45c8d3176fab7810adf1f5fd1d1802"
  2850. },
  2851. "dist": {
  2852. "type": "zip",
  2853. "url": "https://api.github.com/repos/mewebstudio/captcha/zipball/41a3dac8cf45c8d3176fab7810adf1f5fd1d1802",
  2854. "reference": "41a3dac8cf45c8d3176fab7810adf1f5fd1d1802",
  2855. "shasum": ""
  2856. },
  2857. "require": {
  2858. "ext-gd": "*",
  2859. "illuminate/config": "~5|^6|^7|^8",
  2860. "illuminate/filesystem": "~5|^6|^7|^8",
  2861. "illuminate/hashing": "~5|^6|^7|^8",
  2862. "illuminate/session": "~5|^6|^7|^8",
  2863. "illuminate/support": "~5|^6|^7|^8",
  2864. "intervention/image": "~2.5",
  2865. "php": "^7.2|^8.0"
  2866. },
  2867. "require-dev": {
  2868. "mockery/mockery": "^1.0",
  2869. "phpunit/phpunit": "^8.5"
  2870. },
  2871. "type": "package",
  2872. "extra": {
  2873. "laravel": {
  2874. "providers": [
  2875. "Mews\\Captcha\\CaptchaServiceProvider"
  2876. ],
  2877. "aliases": {
  2878. "Captcha": "Mews\\Captcha\\Facades\\Captcha"
  2879. }
  2880. }
  2881. },
  2882. "autoload": {
  2883. "psr-4": {
  2884. "Mews\\Captcha\\": "src/"
  2885. },
  2886. "files": [
  2887. "src/helpers.php"
  2888. ]
  2889. },
  2890. "notification-url": "https://packagist.org/downloads/",
  2891. "license": [
  2892. "MIT"
  2893. ],
  2894. "authors": [
  2895. {
  2896. "name": "Muharrem ERİN",
  2897. "email": "[email protected]",
  2898. "homepage": "https://github.com/mewebstudio",
  2899. "role": "Developer"
  2900. }
  2901. ],
  2902. "description": "Laravel 5 & 6 Captcha Package",
  2903. "homepage": "https://github.com/mewebstudio/captcha",
  2904. "keywords": [
  2905. "captcha",
  2906. "laravel5 Security",
  2907. "laravel6 Captcha",
  2908. "laravel6 Security"
  2909. ],
  2910. "support": {
  2911. "issues": "https://github.com/mewebstudio/captcha/issues",
  2912. "source": "https://github.com/mewebstudio/captcha/tree/3.2.5"
  2913. },
  2914. "time": "2021-01-17T21:30:23+00:00"
  2915. },
  2916. {
  2917. "name": "mews/purifier",
  2918. "version": "3.3.3",
  2919. "source": {
  2920. "type": "git",
  2921. "url": "https://github.com/mewebstudio/Purifier.git",
  2922. "reference": "8e0b3d87c79b38b8d88aeb3c0ba8b000a393a74c"
  2923. },
  2924. "dist": {
  2925. "type": "zip",
  2926. "url": "https://api.github.com/repos/mewebstudio/Purifier/zipball/8e0b3d87c79b38b8d88aeb3c0ba8b000a393a74c",
  2927. "reference": "8e0b3d87c79b38b8d88aeb3c0ba8b000a393a74c",
  2928. "shasum": ""
  2929. },
  2930. "require": {
  2931. "ezyang/htmlpurifier": "4.13.*",
  2932. "illuminate/config": "^5.8|^6.0|^7.0|^8.0",
  2933. "illuminate/filesystem": "^5.8|^6.0|^7.0|^8.0",
  2934. "illuminate/support": "^5.8|^6.0|^7.0|^8.0",
  2935. "php": "^7.2|^8.0"
  2936. },
  2937. "require-dev": {
  2938. "graham-campbell/testbench": "^3.2|^5.5.1",
  2939. "mockery/mockery": "^1.3.3",
  2940. "phpunit/phpunit": "^8.0|^9.0"
  2941. },
  2942. "suggest": {
  2943. "laravel/framework": "To test the Laravel bindings",
  2944. "laravel/lumen-framework": "To test the Lumen bindings"
  2945. },
  2946. "type": "package",
  2947. "extra": {
  2948. "laravel": {
  2949. "providers": [
  2950. "Mews\\Purifier\\PurifierServiceProvider"
  2951. ],
  2952. "aliases": {
  2953. "Purifier": "Mews\\Purifier\\Facades\\Purifier"
  2954. }
  2955. }
  2956. },
  2957. "autoload": {
  2958. "psr-4": {
  2959. "Mews\\Purifier\\": "src/"
  2960. },
  2961. "files": [
  2962. "src/helpers.php"
  2963. ]
  2964. },
  2965. "notification-url": "https://packagist.org/downloads/",
  2966. "license": [
  2967. "MIT"
  2968. ],
  2969. "authors": [
  2970. {
  2971. "name": "Muharrem ERİN",
  2972. "email": "[email protected]",
  2973. "homepage": "https://github.com/mewebstudio",
  2974. "role": "Developer"
  2975. }
  2976. ],
  2977. "description": "Laravel 5/6/7 HtmlPurifier Package",
  2978. "homepage": "https://github.com/mewebstudio/purifier",
  2979. "keywords": [
  2980. "Purifier",
  2981. "htmlpurifier",
  2982. "laravel5 HtmlPurifier",
  2983. "laravel5 Purifier",
  2984. "laravel5 Security",
  2985. "laravel6 HtmlPurifier",
  2986. "laravel6 Purifier",
  2987. "laravel6 Security",
  2988. "security",
  2989. "xss"
  2990. ],
  2991. "support": {
  2992. "issues": "https://github.com/mewebstudio/Purifier/issues",
  2993. "source": "https://github.com/mewebstudio/Purifier/tree/3.3.3"
  2994. },
  2995. "time": "2020-11-03T19:46:27+00:00"
  2996. },
  2997. {
  2998. "name": "mobiledetect/mobiledetectlib",
  2999. "version": "2.8.34",
  3000. "source": {
  3001. "type": "git",
  3002. "url": "https://github.com/serbanghita/Mobile-Detect.git",
  3003. "reference": "6f8113f57a508494ca36acbcfa2dc2d923c7ed5b"
  3004. },
  3005. "dist": {
  3006. "type": "zip",
  3007. "url": "https://api.github.com/repos/serbanghita/Mobile-Detect/zipball/6f8113f57a508494ca36acbcfa2dc2d923c7ed5b",
  3008. "reference": "6f8113f57a508494ca36acbcfa2dc2d923c7ed5b",
  3009. "shasum": ""
  3010. },
  3011. "require": {
  3012. "php": ">=5.0.0"
  3013. },
  3014. "require-dev": {
  3015. "phpunit/phpunit": "~4.8.35||~5.7"
  3016. },
  3017. "type": "library",
  3018. "autoload": {
  3019. "classmap": [
  3020. "Mobile_Detect.php"
  3021. ],
  3022. "psr-0": {
  3023. "Detection": "namespaced/"
  3024. }
  3025. },
  3026. "notification-url": "https://packagist.org/downloads/",
  3027. "license": [
  3028. "MIT"
  3029. ],
  3030. "authors": [
  3031. {
  3032. "name": "Serban Ghita",
  3033. "email": "[email protected]",
  3034. "homepage": "http://mobiledetect.net",
  3035. "role": "Developer"
  3036. }
  3037. ],
  3038. "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.",
  3039. "homepage": "https://github.com/serbanghita/Mobile-Detect",
  3040. "keywords": [
  3041. "detect mobile devices",
  3042. "mobile",
  3043. "mobile detect",
  3044. "mobile detector",
  3045. "php mobile detect"
  3046. ],
  3047. "support": {
  3048. "issues": "https://github.com/serbanghita/Mobile-Detect/issues",
  3049. "source": "https://github.com/serbanghita/Mobile-Detect/tree/2.8.34"
  3050. },
  3051. "time": "2019-09-18T18:44:20+00:00"
  3052. },
  3053. {
  3054. "name": "monolog/monolog",
  3055. "version": "2.2.0",
  3056. "source": {
  3057. "type": "git",
  3058. "url": "https://github.com/Seldaek/monolog.git",
  3059. "reference": "1cb1cde8e8dd0f70cc0fe51354a59acad9302084"
  3060. },
  3061. "dist": {
  3062. "type": "zip",
  3063. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/1cb1cde8e8dd0f70cc0fe51354a59acad9302084",
  3064. "reference": "1cb1cde8e8dd0f70cc0fe51354a59acad9302084",
  3065. "shasum": ""
  3066. },
  3067. "require": {
  3068. "php": ">=7.2",
  3069. "psr/log": "^1.0.1"
  3070. },
  3071. "provide": {
  3072. "psr/log-implementation": "1.0.0"
  3073. },
  3074. "require-dev": {
  3075. "aws/aws-sdk-php": "^2.4.9 || ^3.0",
  3076. "doctrine/couchdb": "~1.0@dev",
  3077. "elasticsearch/elasticsearch": "^7",
  3078. "graylog2/gelf-php": "^1.4.2",
  3079. "mongodb/mongodb": "^1.8",
  3080. "php-amqplib/php-amqplib": "~2.4",
  3081. "php-console/php-console": "^3.1.3",
  3082. "phpspec/prophecy": "^1.6.1",
  3083. "phpstan/phpstan": "^0.12.59",
  3084. "phpunit/phpunit": "^8.5",
  3085. "predis/predis": "^1.1",
  3086. "rollbar/rollbar": "^1.3",
  3087. "ruflin/elastica": ">=0.90 <7.0.1",
  3088. "swiftmailer/swiftmailer": "^5.3|^6.0"
  3089. },
  3090. "suggest": {
  3091. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  3092. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  3093. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  3094. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  3095. "ext-mbstring": "Allow to work properly with unicode symbols",
  3096. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  3097. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  3098. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  3099. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  3100. "php-console/php-console": "Allow sending log messages to Google Chrome",
  3101. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  3102. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  3103. },
  3104. "type": "library",
  3105. "extra": {
  3106. "branch-alias": {
  3107. "dev-main": "2.x-dev"
  3108. }
  3109. },
  3110. "autoload": {
  3111. "psr-4": {
  3112. "Monolog\\": "src/Monolog"
  3113. }
  3114. },
  3115. "notification-url": "https://packagist.org/downloads/",
  3116. "license": [
  3117. "MIT"
  3118. ],
  3119. "authors": [
  3120. {
  3121. "name": "Jordi Boggiano",
  3122. "email": "[email protected]",
  3123. "homepage": "https://seld.be"
  3124. }
  3125. ],
  3126. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  3127. "homepage": "https://github.com/Seldaek/monolog",
  3128. "keywords": [
  3129. "log",
  3130. "logging",
  3131. "psr-3"
  3132. ],
  3133. "support": {
  3134. "issues": "https://github.com/Seldaek/monolog/issues",
  3135. "source": "https://github.com/Seldaek/monolog/tree/2.2.0"
  3136. },
  3137. "funding": [
  3138. {
  3139. "url": "https://github.com/Seldaek",
  3140. "type": "github"
  3141. },
  3142. {
  3143. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  3144. "type": "tidelift"
  3145. }
  3146. ],
  3147. "time": "2020-12-14T13:15:25+00:00"
  3148. },
  3149. {
  3150. "name": "myclabs/php-enum",
  3151. "version": "1.7.7",
  3152. "source": {
  3153. "type": "git",
  3154. "url": "https://github.com/myclabs/php-enum.git",
  3155. "reference": "d178027d1e679832db9f38248fcc7200647dc2b7"
  3156. },
  3157. "dist": {
  3158. "type": "zip",
  3159. "url": "https://api.github.com/repos/myclabs/php-enum/zipball/d178027d1e679832db9f38248fcc7200647dc2b7",
  3160. "reference": "d178027d1e679832db9f38248fcc7200647dc2b7",
  3161. "shasum": ""
  3162. },
  3163. "require": {
  3164. "ext-json": "*",
  3165. "php": ">=7.1"
  3166. },
  3167. "require-dev": {
  3168. "phpunit/phpunit": "^7",
  3169. "squizlabs/php_codesniffer": "1.*",
  3170. "vimeo/psalm": "^3.8"
  3171. },
  3172. "type": "library",
  3173. "autoload": {
  3174. "psr-4": {
  3175. "MyCLabs\\Enum\\": "src/"
  3176. }
  3177. },
  3178. "notification-url": "https://packagist.org/downloads/",
  3179. "license": [
  3180. "MIT"
  3181. ],
  3182. "authors": [
  3183. {
  3184. "name": "PHP Enum contributors",
  3185. "homepage": "https://github.com/myclabs/php-enum/graphs/contributors"
  3186. }
  3187. ],
  3188. "description": "PHP Enum implementation",
  3189. "homepage": "http://github.com/myclabs/php-enum",
  3190. "keywords": [
  3191. "enum"
  3192. ],
  3193. "support": {
  3194. "issues": "https://github.com/myclabs/php-enum/issues",
  3195. "source": "https://github.com/myclabs/php-enum/tree/1.7.7"
  3196. },
  3197. "funding": [
  3198. {
  3199. "url": "https://github.com/mnapoli",
  3200. "type": "github"
  3201. },
  3202. {
  3203. "url": "https://tidelift.com/funding/github/packagist/myclabs/php-enum",
  3204. "type": "tidelift"
  3205. }
  3206. ],
  3207. "time": "2020-11-14T18:14:52+00:00"
  3208. },
  3209. {
  3210. "name": "namshi/jose",
  3211. "version": "7.2.3",
  3212. "source": {
  3213. "type": "git",
  3214. "url": "https://github.com/namshi/jose.git",
  3215. "reference": "89a24d7eb3040e285dd5925fcad992378b82bcff"
  3216. },
  3217. "dist": {
  3218. "type": "zip",
  3219. "url": "https://api.github.com/repos/namshi/jose/zipball/89a24d7eb3040e285dd5925fcad992378b82bcff",
  3220. "reference": "89a24d7eb3040e285dd5925fcad992378b82bcff",
  3221. "shasum": ""
  3222. },
  3223. "require": {
  3224. "ext-date": "*",
  3225. "ext-hash": "*",
  3226. "ext-json": "*",
  3227. "ext-pcre": "*",
  3228. "ext-spl": "*",
  3229. "php": ">=5.5",
  3230. "symfony/polyfill-php56": "^1.0"
  3231. },
  3232. "require-dev": {
  3233. "phpseclib/phpseclib": "^2.0",
  3234. "phpunit/phpunit": "^4.5|^5.0",
  3235. "satooshi/php-coveralls": "^1.0"
  3236. },
  3237. "suggest": {
  3238. "ext-openssl": "Allows to use OpenSSL as crypto engine.",
  3239. "phpseclib/phpseclib": "Allows to use Phpseclib as crypto engine, use version ^2.0."
  3240. },
  3241. "type": "library",
  3242. "autoload": {
  3243. "psr-4": {
  3244. "Namshi\\JOSE\\": "src/Namshi/JOSE/"
  3245. }
  3246. },
  3247. "notification-url": "https://packagist.org/downloads/",
  3248. "license": [
  3249. "MIT"
  3250. ],
  3251. "authors": [
  3252. {
  3253. "name": "Alessandro Nadalin",
  3254. "email": "[email protected]"
  3255. },
  3256. {
  3257. "name": "Alessandro Cinelli (cirpo)",
  3258. "email": "[email protected]"
  3259. }
  3260. ],
  3261. "description": "JSON Object Signing and Encryption library for PHP.",
  3262. "keywords": [
  3263. "JSON Web Signature",
  3264. "JSON Web Token",
  3265. "JWS",
  3266. "json",
  3267. "jwt",
  3268. "token"
  3269. ],
  3270. "support": {
  3271. "issues": "https://github.com/namshi/jose/issues",
  3272. "source": "https://github.com/namshi/jose/tree/master"
  3273. },
  3274. "time": "2016-12-05T07:27:31+00:00"
  3275. },
  3276. {
  3277. "name": "nesbot/carbon",
  3278. "version": "2.43.0",
  3279. "source": {
  3280. "type": "git",
  3281. "url": "https://github.com/briannesbitt/Carbon.git",
  3282. "reference": "d32c57d8389113742f4a88725a170236470012e2"
  3283. },
  3284. "dist": {
  3285. "type": "zip",
  3286. "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/d32c57d8389113742f4a88725a170236470012e2",
  3287. "reference": "d32c57d8389113742f4a88725a170236470012e2",
  3288. "shasum": ""
  3289. },
  3290. "require": {
  3291. "ext-json": "*",
  3292. "php": "^7.1.8 || ^8.0",
  3293. "symfony/polyfill-mbstring": "^1.0",
  3294. "symfony/translation": "^3.4 || ^4.0 || ^5.0"
  3295. },
  3296. "require-dev": {
  3297. "doctrine/orm": "^2.7",
  3298. "friendsofphp/php-cs-fixer": "^2.14 || ^3.0",
  3299. "kylekatarnls/multi-tester": "^2.0",
  3300. "phpmd/phpmd": "^2.9",
  3301. "phpstan/extension-installer": "^1.0",
  3302. "phpstan/phpstan": "^0.12.54",
  3303. "phpunit/phpunit": "^7.5 || ^8.0",
  3304. "squizlabs/php_codesniffer": "^3.4"
  3305. },
  3306. "bin": [
  3307. "bin/carbon"
  3308. ],
  3309. "type": "library",
  3310. "extra": {
  3311. "branch-alias": {
  3312. "dev-master": "2.x-dev",
  3313. "dev-3.x": "3.x-dev"
  3314. },
  3315. "laravel": {
  3316. "providers": [
  3317. "Carbon\\Laravel\\ServiceProvider"
  3318. ]
  3319. },
  3320. "phpstan": {
  3321. "includes": [
  3322. "extension.neon"
  3323. ]
  3324. }
  3325. },
  3326. "autoload": {
  3327. "psr-4": {
  3328. "Carbon\\": "src/Carbon/"
  3329. }
  3330. },
  3331. "notification-url": "https://packagist.org/downloads/",
  3332. "license": [
  3333. "MIT"
  3334. ],
  3335. "authors": [
  3336. {
  3337. "name": "Brian Nesbitt",
  3338. "email": "[email protected]",
  3339. "homepage": "http://nesbot.com"
  3340. },
  3341. {
  3342. "name": "kylekatarnls",
  3343. "homepage": "http://github.com/kylekatarnls"
  3344. }
  3345. ],
  3346. "description": "An API extension for DateTime that supports 281 different languages.",
  3347. "homepage": "http://carbon.nesbot.com",
  3348. "keywords": [
  3349. "date",
  3350. "datetime",
  3351. "time"
  3352. ],
  3353. "support": {
  3354. "issues": "https://github.com/briannesbitt/Carbon/issues",
  3355. "source": "https://github.com/briannesbitt/Carbon"
  3356. },
  3357. "funding": [
  3358. {
  3359. "url": "https://opencollective.com/Carbon",
  3360. "type": "open_collective"
  3361. },
  3362. {
  3363. "url": "https://tidelift.com/funding/github/packagist/nesbot/carbon",
  3364. "type": "tidelift"
  3365. }
  3366. ],
  3367. "time": "2020-12-17T20:55:32+00:00"
  3368. },
  3369. {
  3370. "name": "nikic/php-parser",
  3371. "version": "v4.10.4",
  3372. "source": {
  3373. "type": "git",
  3374. "url": "https://github.com/nikic/PHP-Parser.git",
  3375. "reference": "c6d052fc58cb876152f89f532b95a8d7907e7f0e"
  3376. },
  3377. "dist": {
  3378. "type": "zip",
  3379. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/c6d052fc58cb876152f89f532b95a8d7907e7f0e",
  3380. "reference": "c6d052fc58cb876152f89f532b95a8d7907e7f0e",
  3381. "shasum": ""
  3382. },
  3383. "require": {
  3384. "ext-tokenizer": "*",
  3385. "php": ">=7.0"
  3386. },
  3387. "require-dev": {
  3388. "ircmaxell/php-yacc": "^0.0.7",
  3389. "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0"
  3390. },
  3391. "bin": [
  3392. "bin/php-parse"
  3393. ],
  3394. "type": "library",
  3395. "extra": {
  3396. "branch-alias": {
  3397. "dev-master": "4.9-dev"
  3398. }
  3399. },
  3400. "autoload": {
  3401. "psr-4": {
  3402. "PhpParser\\": "lib/PhpParser"
  3403. }
  3404. },
  3405. "notification-url": "https://packagist.org/downloads/",
  3406. "license": [
  3407. "BSD-3-Clause"
  3408. ],
  3409. "authors": [
  3410. {
  3411. "name": "Nikita Popov"
  3412. }
  3413. ],
  3414. "description": "A PHP parser written in PHP",
  3415. "keywords": [
  3416. "parser",
  3417. "php"
  3418. ],
  3419. "support": {
  3420. "issues": "https://github.com/nikic/PHP-Parser/issues",
  3421. "source": "https://github.com/nikic/PHP-Parser/tree/v4.10.4"
  3422. },
  3423. "time": "2020-12-20T10:01:03+00:00"
  3424. },
  3425. {
  3426. "name": "opis/closure",
  3427. "version": "3.6.1",
  3428. "source": {
  3429. "type": "git",
  3430. "url": "https://github.com/opis/closure.git",
  3431. "reference": "943b5d70cc5ae7483f6aff6ff43d7e34592ca0f5"
  3432. },
  3433. "dist": {
  3434. "type": "zip",
  3435. "url": "https://api.github.com/repos/opis/closure/zipball/943b5d70cc5ae7483f6aff6ff43d7e34592ca0f5",
  3436. "reference": "943b5d70cc5ae7483f6aff6ff43d7e34592ca0f5",
  3437. "shasum": ""
  3438. },
  3439. "require": {
  3440. "php": "^5.4 || ^7.0 || ^8.0"
  3441. },
  3442. "require-dev": {
  3443. "jeremeamia/superclosure": "^2.0",
  3444. "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.0"
  3445. },
  3446. "type": "library",
  3447. "extra": {
  3448. "branch-alias": {
  3449. "dev-master": "3.6.x-dev"
  3450. }
  3451. },
  3452. "autoload": {
  3453. "psr-4": {
  3454. "Opis\\Closure\\": "src/"
  3455. },
  3456. "files": [
  3457. "functions.php"
  3458. ]
  3459. },
  3460. "notification-url": "https://packagist.org/downloads/",
  3461. "license": [
  3462. "MIT"
  3463. ],
  3464. "authors": [
  3465. {
  3466. "name": "Marius Sarca",
  3467. "email": "[email protected]"
  3468. },
  3469. {
  3470. "name": "Sorin Sarca",
  3471. "email": "[email protected]"
  3472. }
  3473. ],
  3474. "description": "A library that can be used to serialize closures (anonymous functions) and arbitrary objects.",
  3475. "homepage": "https://opis.io/closure",
  3476. "keywords": [
  3477. "anonymous functions",
  3478. "closure",
  3479. "function",
  3480. "serializable",
  3481. "serialization",
  3482. "serialize"
  3483. ],
  3484. "support": {
  3485. "issues": "https://github.com/opis/closure/issues",
  3486. "source": "https://github.com/opis/closure/tree/3.6.1"
  3487. },
  3488. "time": "2020-11-07T02:01:34+00:00"
  3489. },
  3490. {
  3491. "name": "overtrue/laravel-lang",
  3492. "version": "4.2.1",
  3493. "source": {
  3494. "type": "git",
  3495. "url": "https://github.com/overtrue/laravel-lang.git",
  3496. "reference": "653189caa6eac682fa5d15482f271489721231c7"
  3497. },
  3498. "dist": {
  3499. "type": "zip",
  3500. "url": "https://api.github.com/repos/overtrue/laravel-lang/zipball/653189caa6eac682fa5d15482f271489721231c7",
  3501. "reference": "653189caa6eac682fa5d15482f271489721231c7",
  3502. "shasum": ""
  3503. },
  3504. "require": {
  3505. "ext-json": "*",
  3506. "laravel-lang/lang": "^7.0",
  3507. "symfony/process": "^5.0.0"
  3508. },
  3509. "require-dev": {
  3510. "laravel/framework": "~8.1"
  3511. },
  3512. "type": "library",
  3513. "extra": {
  3514. "laravel": {
  3515. "providers": [
  3516. "Overtrue\\LaravelLang\\TranslationServiceProvider"
  3517. ]
  3518. }
  3519. },
  3520. "autoload": {
  3521. "psr-4": {
  3522. "Overtrue\\LaravelLang\\": "src/"
  3523. }
  3524. },
  3525. "notification-url": "https://packagist.org/downloads/",
  3526. "license": [
  3527. "MIT"
  3528. ],
  3529. "authors": [
  3530. {
  3531. "name": "overtrue",
  3532. "email": "[email protected]"
  3533. }
  3534. ],
  3535. "description": "List of 75 languages for Laravel 4, 5, 6 and 7",
  3536. "keywords": [
  3537. "i18n",
  3538. "languages",
  3539. "laravel",
  3540. "locale",
  3541. "overtrue"
  3542. ],
  3543. "support": {
  3544. "issues": "https://github.com/overtrue/laravel-lang/issues",
  3545. "source": "https://github.com/overtrue/laravel-lang/tree/4.2.1"
  3546. },
  3547. "funding": [
  3548. {
  3549. "url": "https://www.patreon.com/overtrue",
  3550. "type": "patreon"
  3551. }
  3552. ],
  3553. "time": "2020-11-12T01:44:31+00:00"
  3554. },
  3555. {
  3556. "name": "phpoffice/phpspreadsheet",
  3557. "version": "1.16.0",
  3558. "source": {
  3559. "type": "git",
  3560. "url": "https://github.com/PHPOffice/PhpSpreadsheet.git",
  3561. "reference": "76d4323b85129d0c368149c831a07a3e258b2b50"
  3562. },
  3563. "dist": {
  3564. "type": "zip",
  3565. "url": "https://api.github.com/repos/PHPOffice/PhpSpreadsheet/zipball/76d4323b85129d0c368149c831a07a3e258b2b50",
  3566. "reference": "76d4323b85129d0c368149c831a07a3e258b2b50",
  3567. "shasum": ""
  3568. },
  3569. "require": {
  3570. "ext-ctype": "*",
  3571. "ext-dom": "*",
  3572. "ext-fileinfo": "*",
  3573. "ext-gd": "*",
  3574. "ext-iconv": "*",
  3575. "ext-libxml": "*",
  3576. "ext-mbstring": "*",
  3577. "ext-simplexml": "*",
  3578. "ext-xml": "*",
  3579. "ext-xmlreader": "*",
  3580. "ext-xmlwriter": "*",
  3581. "ext-zip": "*",
  3582. "ext-zlib": "*",
  3583. "ezyang/htmlpurifier": "^4.13",
  3584. "maennchen/zipstream-php": "^2.1",
  3585. "markbaker/complex": "^1.5||^2.0",
  3586. "markbaker/matrix": "^1.2||^2.0",
  3587. "php": "^7.2||^8.0",
  3588. "psr/http-client": "^1.0",
  3589. "psr/http-factory": "^1.0",
  3590. "psr/simple-cache": "^1.0"
  3591. },
  3592. "require-dev": {
  3593. "dompdf/dompdf": "^0.8.5",
  3594. "friendsofphp/php-cs-fixer": "^2.16",
  3595. "jpgraph/jpgraph": "^4.0",
  3596. "mpdf/mpdf": "^8.0",
  3597. "phpcompatibility/php-compatibility": "^9.3",
  3598. "phpunit/phpunit": "^8.5||^9.3",
  3599. "squizlabs/php_codesniffer": "^3.5",
  3600. "tecnickcom/tcpdf": "^6.3"
  3601. },
  3602. "suggest": {
  3603. "dompdf/dompdf": "Option for rendering PDF with PDF Writer (doesn't yet support PHP8)",
  3604. "jpgraph/jpgraph": "Option for rendering charts, or including charts with PDF or HTML Writers",
  3605. "mpdf/mpdf": "Option for rendering PDF with PDF Writer",
  3606. "tecnickcom/tcpdf": "Option for rendering PDF with PDF Writer (doesn't yet support PHP8)"
  3607. },
  3608. "type": "library",
  3609. "autoload": {
  3610. "psr-4": {
  3611. "PhpOffice\\PhpSpreadsheet\\": "src/PhpSpreadsheet"
  3612. }
  3613. },
  3614. "notification-url": "https://packagist.org/downloads/",
  3615. "license": [
  3616. "MIT"
  3617. ],
  3618. "authors": [
  3619. {
  3620. "name": "Maarten Balliauw",
  3621. "homepage": "https://blog.maartenballiauw.be"
  3622. },
  3623. {
  3624. "name": "Mark Baker",
  3625. "homepage": "https://markbakeruk.net"
  3626. },
  3627. {
  3628. "name": "Franck Lefevre",
  3629. "homepage": "https://rootslabs.net"
  3630. },
  3631. {
  3632. "name": "Erik Tilt"
  3633. },
  3634. {
  3635. "name": "Adrien Crivelli"
  3636. }
  3637. ],
  3638. "description": "PHPSpreadsheet - Read, Create and Write Spreadsheet documents in PHP - Spreadsheet engine",
  3639. "homepage": "https://github.com/PHPOffice/PhpSpreadsheet",
  3640. "keywords": [
  3641. "OpenXML",
  3642. "excel",
  3643. "gnumeric",
  3644. "ods",
  3645. "php",
  3646. "spreadsheet",
  3647. "xls",
  3648. "xlsx"
  3649. ],
  3650. "support": {
  3651. "issues": "https://github.com/PHPOffice/PhpSpreadsheet/issues",
  3652. "source": "https://github.com/PHPOffice/PhpSpreadsheet/tree/1.16.0"
  3653. },
  3654. "time": "2020-12-31T18:03:49+00:00"
  3655. },
  3656. {
  3657. "name": "phpoption/phpoption",
  3658. "version": "1.7.5",
  3659. "source": {
  3660. "type": "git",
  3661. "url": "https://github.com/schmittjoh/php-option.git",
  3662. "reference": "994ecccd8f3283ecf5ac33254543eb0ac946d525"
  3663. },
  3664. "dist": {
  3665. "type": "zip",
  3666. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/994ecccd8f3283ecf5ac33254543eb0ac946d525",
  3667. "reference": "994ecccd8f3283ecf5ac33254543eb0ac946d525",
  3668. "shasum": ""
  3669. },
  3670. "require": {
  3671. "php": "^5.5.9 || ^7.0 || ^8.0"
  3672. },
  3673. "require-dev": {
  3674. "bamarni/composer-bin-plugin": "^1.4.1",
  3675. "phpunit/phpunit": "^4.8.35 || ^5.7.27 || ^6.5.6 || ^7.0 || ^8.0 || ^9.0"
  3676. },
  3677. "type": "library",
  3678. "extra": {
  3679. "branch-alias": {
  3680. "dev-master": "1.7-dev"
  3681. }
  3682. },
  3683. "autoload": {
  3684. "psr-4": {
  3685. "PhpOption\\": "src/PhpOption/"
  3686. }
  3687. },
  3688. "notification-url": "https://packagist.org/downloads/",
  3689. "license": [
  3690. "Apache-2.0"
  3691. ],
  3692. "authors": [
  3693. {
  3694. "name": "Johannes M. Schmitt",
  3695. "email": "[email protected]"
  3696. },
  3697. {
  3698. "name": "Graham Campbell",
  3699. "email": "[email protected]"
  3700. }
  3701. ],
  3702. "description": "Option Type for PHP",
  3703. "keywords": [
  3704. "language",
  3705. "option",
  3706. "php",
  3707. "type"
  3708. ],
  3709. "support": {
  3710. "issues": "https://github.com/schmittjoh/php-option/issues",
  3711. "source": "https://github.com/schmittjoh/php-option/tree/1.7.5"
  3712. },
  3713. "funding": [
  3714. {
  3715. "url": "https://github.com/GrahamCampbell",
  3716. "type": "github"
  3717. },
  3718. {
  3719. "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption",
  3720. "type": "tidelift"
  3721. }
  3722. ],
  3723. "time": "2020-07-20T17:29:33+00:00"
  3724. },
  3725. {
  3726. "name": "psr/container",
  3727. "version": "1.0.0",
  3728. "source": {
  3729. "type": "git",
  3730. "url": "https://github.com/php-fig/container.git",
  3731. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f"
  3732. },
  3733. "dist": {
  3734. "type": "zip",
  3735. "url": "https://api.github.com/repos/php-fig/container/zipball/b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  3736. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  3737. "shasum": ""
  3738. },
  3739. "require": {
  3740. "php": ">=5.3.0"
  3741. },
  3742. "type": "library",
  3743. "extra": {
  3744. "branch-alias": {
  3745. "dev-master": "1.0.x-dev"
  3746. }
  3747. },
  3748. "autoload": {
  3749. "psr-4": {
  3750. "Psr\\Container\\": "src/"
  3751. }
  3752. },
  3753. "notification-url": "https://packagist.org/downloads/",
  3754. "license": [
  3755. "MIT"
  3756. ],
  3757. "authors": [
  3758. {
  3759. "name": "PHP-FIG",
  3760. "homepage": "http://www.php-fig.org/"
  3761. }
  3762. ],
  3763. "description": "Common Container Interface (PHP FIG PSR-11)",
  3764. "homepage": "https://github.com/php-fig/container",
  3765. "keywords": [
  3766. "PSR-11",
  3767. "container",
  3768. "container-interface",
  3769. "container-interop",
  3770. "psr"
  3771. ],
  3772. "support": {
  3773. "issues": "https://github.com/php-fig/container/issues",
  3774. "source": "https://github.com/php-fig/container/tree/master"
  3775. },
  3776. "time": "2017-02-14T16:28:37+00:00"
  3777. },
  3778. {
  3779. "name": "psr/event-dispatcher",
  3780. "version": "1.0.0",
  3781. "source": {
  3782. "type": "git",
  3783. "url": "https://github.com/php-fig/event-dispatcher.git",
  3784. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  3785. },
  3786. "dist": {
  3787. "type": "zip",
  3788. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  3789. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  3790. "shasum": ""
  3791. },
  3792. "require": {
  3793. "php": ">=7.2.0"
  3794. },
  3795. "type": "library",
  3796. "extra": {
  3797. "branch-alias": {
  3798. "dev-master": "1.0.x-dev"
  3799. }
  3800. },
  3801. "autoload": {
  3802. "psr-4": {
  3803. "Psr\\EventDispatcher\\": "src/"
  3804. }
  3805. },
  3806. "notification-url": "https://packagist.org/downloads/",
  3807. "license": [
  3808. "MIT"
  3809. ],
  3810. "authors": [
  3811. {
  3812. "name": "PHP-FIG",
  3813. "homepage": "http://www.php-fig.org/"
  3814. }
  3815. ],
  3816. "description": "Standard interfaces for event handling.",
  3817. "keywords": [
  3818. "events",
  3819. "psr",
  3820. "psr-14"
  3821. ],
  3822. "support": {
  3823. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  3824. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  3825. },
  3826. "time": "2019-01-08T18:20:26+00:00"
  3827. },
  3828. {
  3829. "name": "psr/http-client",
  3830. "version": "1.0.1",
  3831. "source": {
  3832. "type": "git",
  3833. "url": "https://github.com/php-fig/http-client.git",
  3834. "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621"
  3835. },
  3836. "dist": {
  3837. "type": "zip",
  3838. "url": "https://api.github.com/repos/php-fig/http-client/zipball/2dfb5f6c5eff0e91e20e913f8c5452ed95b86621",
  3839. "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621",
  3840. "shasum": ""
  3841. },
  3842. "require": {
  3843. "php": "^7.0 || ^8.0",
  3844. "psr/http-message": "^1.0"
  3845. },
  3846. "type": "library",
  3847. "extra": {
  3848. "branch-alias": {
  3849. "dev-master": "1.0.x-dev"
  3850. }
  3851. },
  3852. "autoload": {
  3853. "psr-4": {
  3854. "Psr\\Http\\Client\\": "src/"
  3855. }
  3856. },
  3857. "notification-url": "https://packagist.org/downloads/",
  3858. "license": [
  3859. "MIT"
  3860. ],
  3861. "authors": [
  3862. {
  3863. "name": "PHP-FIG",
  3864. "homepage": "http://www.php-fig.org/"
  3865. }
  3866. ],
  3867. "description": "Common interface for HTTP clients",
  3868. "homepage": "https://github.com/php-fig/http-client",
  3869. "keywords": [
  3870. "http",
  3871. "http-client",
  3872. "psr",
  3873. "psr-18"
  3874. ],
  3875. "support": {
  3876. "source": "https://github.com/php-fig/http-client/tree/master"
  3877. },
  3878. "time": "2020-06-29T06:28:15+00:00"
  3879. },
  3880. {
  3881. "name": "psr/http-factory",
  3882. "version": "1.0.1",
  3883. "source": {
  3884. "type": "git",
  3885. "url": "https://github.com/php-fig/http-factory.git",
  3886. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be"
  3887. },
  3888. "dist": {
  3889. "type": "zip",
  3890. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  3891. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  3892. "shasum": ""
  3893. },
  3894. "require": {
  3895. "php": ">=7.0.0",
  3896. "psr/http-message": "^1.0"
  3897. },
  3898. "type": "library",
  3899. "extra": {
  3900. "branch-alias": {
  3901. "dev-master": "1.0.x-dev"
  3902. }
  3903. },
  3904. "autoload": {
  3905. "psr-4": {
  3906. "Psr\\Http\\Message\\": "src/"
  3907. }
  3908. },
  3909. "notification-url": "https://packagist.org/downloads/",
  3910. "license": [
  3911. "MIT"
  3912. ],
  3913. "authors": [
  3914. {
  3915. "name": "PHP-FIG",
  3916. "homepage": "http://www.php-fig.org/"
  3917. }
  3918. ],
  3919. "description": "Common interfaces for PSR-7 HTTP message factories",
  3920. "keywords": [
  3921. "factory",
  3922. "http",
  3923. "message",
  3924. "psr",
  3925. "psr-17",
  3926. "psr-7",
  3927. "request",
  3928. "response"
  3929. ],
  3930. "support": {
  3931. "source": "https://github.com/php-fig/http-factory/tree/master"
  3932. },
  3933. "time": "2019-04-30T12:38:16+00:00"
  3934. },
  3935. {
  3936. "name": "psr/http-message",
  3937. "version": "1.0.1",
  3938. "source": {
  3939. "type": "git",
  3940. "url": "https://github.com/php-fig/http-message.git",
  3941. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  3942. },
  3943. "dist": {
  3944. "type": "zip",
  3945. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  3946. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  3947. "shasum": ""
  3948. },
  3949. "require": {
  3950. "php": ">=5.3.0"
  3951. },
  3952. "type": "library",
  3953. "extra": {
  3954. "branch-alias": {
  3955. "dev-master": "1.0.x-dev"
  3956. }
  3957. },
  3958. "autoload": {
  3959. "psr-4": {
  3960. "Psr\\Http\\Message\\": "src/"
  3961. }
  3962. },
  3963. "notification-url": "https://packagist.org/downloads/",
  3964. "license": [
  3965. "MIT"
  3966. ],
  3967. "authors": [
  3968. {
  3969. "name": "PHP-FIG",
  3970. "homepage": "http://www.php-fig.org/"
  3971. }
  3972. ],
  3973. "description": "Common interface for HTTP messages",
  3974. "homepage": "https://github.com/php-fig/http-message",
  3975. "keywords": [
  3976. "http",
  3977. "http-message",
  3978. "psr",
  3979. "psr-7",
  3980. "request",
  3981. "response"
  3982. ],
  3983. "support": {
  3984. "source": "https://github.com/php-fig/http-message/tree/master"
  3985. },
  3986. "time": "2016-08-06T14:39:51+00:00"
  3987. },
  3988. {
  3989. "name": "psr/log",
  3990. "version": "1.1.3",
  3991. "source": {
  3992. "type": "git",
  3993. "url": "https://github.com/php-fig/log.git",
  3994. "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc"
  3995. },
  3996. "dist": {
  3997. "type": "zip",
  3998. "url": "https://api.github.com/repos/php-fig/log/zipball/0f73288fd15629204f9d42b7055f72dacbe811fc",
  3999. "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc",
  4000. "shasum": ""
  4001. },
  4002. "require": {
  4003. "php": ">=5.3.0"
  4004. },
  4005. "type": "library",
  4006. "extra": {
  4007. "branch-alias": {
  4008. "dev-master": "1.1.x-dev"
  4009. }
  4010. },
  4011. "autoload": {
  4012. "psr-4": {
  4013. "Psr\\Log\\": "Psr/Log/"
  4014. }
  4015. },
  4016. "notification-url": "https://packagist.org/downloads/",
  4017. "license": [
  4018. "MIT"
  4019. ],
  4020. "authors": [
  4021. {
  4022. "name": "PHP-FIG",
  4023. "homepage": "http://www.php-fig.org/"
  4024. }
  4025. ],
  4026. "description": "Common interface for logging libraries",
  4027. "homepage": "https://github.com/php-fig/log",
  4028. "keywords": [
  4029. "log",
  4030. "psr",
  4031. "psr-3"
  4032. ],
  4033. "support": {
  4034. "source": "https://github.com/php-fig/log/tree/1.1.3"
  4035. },
  4036. "time": "2020-03-23T09:12:05+00:00"
  4037. },
  4038. {
  4039. "name": "psr/simple-cache",
  4040. "version": "1.0.1",
  4041. "source": {
  4042. "type": "git",
  4043. "url": "https://github.com/php-fig/simple-cache.git",
  4044. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b"
  4045. },
  4046. "dist": {
  4047. "type": "zip",
  4048. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  4049. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  4050. "shasum": ""
  4051. },
  4052. "require": {
  4053. "php": ">=5.3.0"
  4054. },
  4055. "type": "library",
  4056. "extra": {
  4057. "branch-alias": {
  4058. "dev-master": "1.0.x-dev"
  4059. }
  4060. },
  4061. "autoload": {
  4062. "psr-4": {
  4063. "Psr\\SimpleCache\\": "src/"
  4064. }
  4065. },
  4066. "notification-url": "https://packagist.org/downloads/",
  4067. "license": [
  4068. "MIT"
  4069. ],
  4070. "authors": [
  4071. {
  4072. "name": "PHP-FIG",
  4073. "homepage": "http://www.php-fig.org/"
  4074. }
  4075. ],
  4076. "description": "Common interfaces for simple caching",
  4077. "keywords": [
  4078. "cache",
  4079. "caching",
  4080. "psr",
  4081. "psr-16",
  4082. "simple-cache"
  4083. ],
  4084. "support": {
  4085. "source": "https://github.com/php-fig/simple-cache/tree/master"
  4086. },
  4087. "time": "2017-10-23T01:57:42+00:00"
  4088. },
  4089. {
  4090. "name": "psy/psysh",
  4091. "version": "v0.10.6",
  4092. "source": {
  4093. "type": "git",
  4094. "url": "https://github.com/bobthecow/psysh.git",
  4095. "reference": "6f990c19f91729de8b31e639d6e204ea59f19cf3"
  4096. },
  4097. "dist": {
  4098. "type": "zip",
  4099. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/6f990c19f91729de8b31e639d6e204ea59f19cf3",
  4100. "reference": "6f990c19f91729de8b31e639d6e204ea59f19cf3",
  4101. "shasum": ""
  4102. },
  4103. "require": {
  4104. "dnoegel/php-xdg-base-dir": "0.1.*",
  4105. "ext-json": "*",
  4106. "ext-tokenizer": "*",
  4107. "nikic/php-parser": "~4.0|~3.0|~2.0|~1.3",
  4108. "php": "^8.0 || ^7.0 || ^5.5.9",
  4109. "symfony/console": "~5.0|~4.0|~3.0|^2.4.2|~2.3.10",
  4110. "symfony/var-dumper": "~5.0|~4.0|~3.0|~2.7"
  4111. },
  4112. "require-dev": {
  4113. "bamarni/composer-bin-plugin": "^1.2",
  4114. "hoa/console": "3.17.*"
  4115. },
  4116. "suggest": {
  4117. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  4118. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  4119. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.",
  4120. "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history.",
  4121. "hoa/console": "A pure PHP readline implementation. You'll want this if your PHP install doesn't already support readline or libedit."
  4122. },
  4123. "bin": [
  4124. "bin/psysh"
  4125. ],
  4126. "type": "library",
  4127. "extra": {
  4128. "branch-alias": {
  4129. "dev-main": "0.10.x-dev"
  4130. }
  4131. },
  4132. "autoload": {
  4133. "files": [
  4134. "src/functions.php"
  4135. ],
  4136. "psr-4": {
  4137. "Psy\\": "src/"
  4138. }
  4139. },
  4140. "notification-url": "https://packagist.org/downloads/",
  4141. "license": [
  4142. "MIT"
  4143. ],
  4144. "authors": [
  4145. {
  4146. "name": "Justin Hileman",
  4147. "email": "[email protected]",
  4148. "homepage": "http://justinhileman.com"
  4149. }
  4150. ],
  4151. "description": "An interactive shell for modern PHP.",
  4152. "homepage": "http://psysh.org",
  4153. "keywords": [
  4154. "REPL",
  4155. "console",
  4156. "interactive",
  4157. "shell"
  4158. ],
  4159. "support": {
  4160. "issues": "https://github.com/bobthecow/psysh/issues",
  4161. "source": "https://github.com/bobthecow/psysh/tree/v0.10.6"
  4162. },
  4163. "time": "2021-01-18T15:53:43+00:00"
  4164. },
  4165. {
  4166. "name": "ralouphie/getallheaders",
  4167. "version": "3.0.3",
  4168. "source": {
  4169. "type": "git",
  4170. "url": "https://github.com/ralouphie/getallheaders.git",
  4171. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  4172. },
  4173. "dist": {
  4174. "type": "zip",
  4175. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  4176. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  4177. "shasum": ""
  4178. },
  4179. "require": {
  4180. "php": ">=5.6"
  4181. },
  4182. "require-dev": {
  4183. "php-coveralls/php-coveralls": "^2.1",
  4184. "phpunit/phpunit": "^5 || ^6.5"
  4185. },
  4186. "type": "library",
  4187. "autoload": {
  4188. "files": [
  4189. "src/getallheaders.php"
  4190. ]
  4191. },
  4192. "notification-url": "https://packagist.org/downloads/",
  4193. "license": [
  4194. "MIT"
  4195. ],
  4196. "authors": [
  4197. {
  4198. "name": "Ralph Khattar",
  4199. "email": "[email protected]"
  4200. }
  4201. ],
  4202. "description": "A polyfill for getallheaders.",
  4203. "support": {
  4204. "issues": "https://github.com/ralouphie/getallheaders/issues",
  4205. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  4206. },
  4207. "time": "2019-03-08T08:55:37+00:00"
  4208. },
  4209. {
  4210. "name": "ramsey/collection",
  4211. "version": "1.1.3",
  4212. "source": {
  4213. "type": "git",
  4214. "url": "https://github.com/ramsey/collection.git",
  4215. "reference": "28a5c4ab2f5111db6a60b2b4ec84057e0f43b9c1"
  4216. },
  4217. "dist": {
  4218. "type": "zip",
  4219. "url": "https://api.github.com/repos/ramsey/collection/zipball/28a5c4ab2f5111db6a60b2b4ec84057e0f43b9c1",
  4220. "reference": "28a5c4ab2f5111db6a60b2b4ec84057e0f43b9c1",
  4221. "shasum": ""
  4222. },
  4223. "require": {
  4224. "php": "^7.2 || ^8"
  4225. },
  4226. "require-dev": {
  4227. "captainhook/captainhook": "^5.3",
  4228. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  4229. "ergebnis/composer-normalize": "^2.6",
  4230. "fakerphp/faker": "^1.5",
  4231. "hamcrest/hamcrest-php": "^2",
  4232. "jangregor/phpstan-prophecy": "^0.8",
  4233. "mockery/mockery": "^1.3",
  4234. "phpstan/extension-installer": "^1",
  4235. "phpstan/phpstan": "^0.12.32",
  4236. "phpstan/phpstan-mockery": "^0.12.5",
  4237. "phpstan/phpstan-phpunit": "^0.12.11",
  4238. "phpunit/phpunit": "^8.5 || ^9",
  4239. "psy/psysh": "^0.10.4",
  4240. "slevomat/coding-standard": "^6.3",
  4241. "squizlabs/php_codesniffer": "^3.5",
  4242. "vimeo/psalm": "^4.4"
  4243. },
  4244. "type": "library",
  4245. "autoload": {
  4246. "psr-4": {
  4247. "Ramsey\\Collection\\": "src/"
  4248. }
  4249. },
  4250. "notification-url": "https://packagist.org/downloads/",
  4251. "license": [
  4252. "MIT"
  4253. ],
  4254. "authors": [
  4255. {
  4256. "name": "Ben Ramsey",
  4257. "email": "[email protected]",
  4258. "homepage": "https://benramsey.com"
  4259. }
  4260. ],
  4261. "description": "A PHP 7.2+ library for representing and manipulating collections.",
  4262. "keywords": [
  4263. "array",
  4264. "collection",
  4265. "hash",
  4266. "map",
  4267. "queue",
  4268. "set"
  4269. ],
  4270. "support": {
  4271. "issues": "https://github.com/ramsey/collection/issues",
  4272. "source": "https://github.com/ramsey/collection/tree/1.1.3"
  4273. },
  4274. "funding": [
  4275. {
  4276. "url": "https://github.com/ramsey",
  4277. "type": "github"
  4278. },
  4279. {
  4280. "url": "https://tidelift.com/funding/github/packagist/ramsey/collection",
  4281. "type": "tidelift"
  4282. }
  4283. ],
  4284. "time": "2021-01-21T17:40:04+00:00"
  4285. },
  4286. {
  4287. "name": "ramsey/uuid",
  4288. "version": "4.1.1",
  4289. "source": {
  4290. "type": "git",
  4291. "url": "https://github.com/ramsey/uuid.git",
  4292. "reference": "cd4032040a750077205918c86049aa0f43d22947"
  4293. },
  4294. "dist": {
  4295. "type": "zip",
  4296. "url": "https://api.github.com/repos/ramsey/uuid/zipball/cd4032040a750077205918c86049aa0f43d22947",
  4297. "reference": "cd4032040a750077205918c86049aa0f43d22947",
  4298. "shasum": ""
  4299. },
  4300. "require": {
  4301. "brick/math": "^0.8 || ^0.9",
  4302. "ext-json": "*",
  4303. "php": "^7.2 || ^8",
  4304. "ramsey/collection": "^1.0",
  4305. "symfony/polyfill-ctype": "^1.8"
  4306. },
  4307. "replace": {
  4308. "rhumsaa/uuid": "self.version"
  4309. },
  4310. "require-dev": {
  4311. "codeception/aspect-mock": "^3",
  4312. "dealerdirect/phpcodesniffer-composer-installer": "^0.6.2 || ^0.7.0",
  4313. "doctrine/annotations": "^1.8",
  4314. "goaop/framework": "^2",
  4315. "mockery/mockery": "^1.3",
  4316. "moontoast/math": "^1.1",
  4317. "paragonie/random-lib": "^2",
  4318. "php-mock/php-mock-mockery": "^1.3",
  4319. "php-mock/php-mock-phpunit": "^2.5",
  4320. "php-parallel-lint/php-parallel-lint": "^1.1",
  4321. "phpbench/phpbench": "^0.17.1",
  4322. "phpstan/extension-installer": "^1.0",
  4323. "phpstan/phpstan": "^0.12",
  4324. "phpstan/phpstan-mockery": "^0.12",
  4325. "phpstan/phpstan-phpunit": "^0.12",
  4326. "phpunit/phpunit": "^8.5",
  4327. "psy/psysh": "^0.10.0",
  4328. "slevomat/coding-standard": "^6.0",
  4329. "squizlabs/php_codesniffer": "^3.5",
  4330. "vimeo/psalm": "3.9.4"
  4331. },
  4332. "suggest": {
  4333. "ext-bcmath": "Enables faster math with arbitrary-precision integers using BCMath.",
  4334. "ext-ctype": "Enables faster processing of character classification using ctype functions.",
  4335. "ext-gmp": "Enables faster math with arbitrary-precision integers using GMP.",
  4336. "ext-uuid": "Enables the use of PeclUuidTimeGenerator and PeclUuidRandomGenerator.",
  4337. "paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
  4338. "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type."
  4339. },
  4340. "type": "library",
  4341. "extra": {
  4342. "branch-alias": {
  4343. "dev-master": "4.x-dev"
  4344. }
  4345. },
  4346. "autoload": {
  4347. "psr-4": {
  4348. "Ramsey\\Uuid\\": "src/"
  4349. },
  4350. "files": [
  4351. "src/functions.php"
  4352. ]
  4353. },
  4354. "notification-url": "https://packagist.org/downloads/",
  4355. "license": [
  4356. "MIT"
  4357. ],
  4358. "description": "A PHP library for generating and working with universally unique identifiers (UUIDs).",
  4359. "homepage": "https://github.com/ramsey/uuid",
  4360. "keywords": [
  4361. "guid",
  4362. "identifier",
  4363. "uuid"
  4364. ],
  4365. "support": {
  4366. "issues": "https://github.com/ramsey/uuid/issues",
  4367. "rss": "https://github.com/ramsey/uuid/releases.atom",
  4368. "source": "https://github.com/ramsey/uuid"
  4369. },
  4370. "funding": [
  4371. {
  4372. "url": "https://github.com/ramsey",
  4373. "type": "github"
  4374. }
  4375. ],
  4376. "time": "2020-08-18T17:17:46+00:00"
  4377. },
  4378. {
  4379. "name": "rap2hpoutre/laravel-log-viewer",
  4380. "version": "v1.7.0",
  4381. "source": {
  4382. "type": "git",
  4383. "url": "https://github.com/rap2hpoutre/laravel-log-viewer.git",
  4384. "reference": "27392d29234b6ff38a456454558f4bcc40cc837a"
  4385. },
  4386. "dist": {
  4387. "type": "zip",
  4388. "url": "https://api.github.com/repos/rap2hpoutre/laravel-log-viewer/zipball/27392d29234b6ff38a456454558f4bcc40cc837a",
  4389. "reference": "27392d29234b6ff38a456454558f4bcc40cc837a",
  4390. "shasum": ""
  4391. },
  4392. "require": {
  4393. "illuminate/support": "4.2.*|5.*|^6.0|^7.0|^8.0",
  4394. "php": ">=5.4.0"
  4395. },
  4396. "require-dev": {
  4397. "orchestra/testbench": "3.7.*",
  4398. "phpunit/phpunit": "^7"
  4399. },
  4400. "type": "laravel-package",
  4401. "extra": {
  4402. "laravel": {
  4403. "providers": [
  4404. "Rap2hpoutre\\LaravelLogViewer\\LaravelLogViewerServiceProvider"
  4405. ]
  4406. }
  4407. },
  4408. "autoload": {
  4409. "classmap": [
  4410. "src/controllers"
  4411. ],
  4412. "psr-0": {
  4413. "Rap2hpoutre\\LaravelLogViewer\\": "src/"
  4414. }
  4415. },
  4416. "notification-url": "https://packagist.org/downloads/",
  4417. "license": [
  4418. "MIT"
  4419. ],
  4420. "authors": [
  4421. {
  4422. "name": "rap2hpoutre",
  4423. "email": "[email protected]"
  4424. }
  4425. ],
  4426. "description": "A Laravel log reader",
  4427. "keywords": [
  4428. "laravel",
  4429. "log",
  4430. "log-reader",
  4431. "log-viewer",
  4432. "logging",
  4433. "lumen"
  4434. ],
  4435. "support": {
  4436. "issues": "https://github.com/rap2hpoutre/laravel-log-viewer/issues",
  4437. "source": "https://github.com/rap2hpoutre/laravel-log-viewer/tree/master"
  4438. },
  4439. "time": "2020-09-08T12:21:27+00:00"
  4440. },
  4441. {
  4442. "name": "riverslei/payment",
  4443. "version": "v5.1.0",
  4444. "source": {
  4445. "type": "git",
  4446. "url": "https://github.com/helei112g/payment.git",
  4447. "reference": "77f671b68b0285a6af77dc7c5afa36eabcae35aa"
  4448. },
  4449. "dist": {
  4450. "type": "zip",
  4451. "url": "https://api.github.com/repos/helei112g/payment/zipball/77f671b68b0285a6af77dc7c5afa36eabcae35aa",
  4452. "reference": "77f671b68b0285a6af77dc7c5afa36eabcae35aa",
  4453. "shasum": ""
  4454. },
  4455. "require": {
  4456. "ext-bcmath": "*",
  4457. "ext-json": "*",
  4458. "ext-mbstring": "*",
  4459. "ext-openssl": "*",
  4460. "ext-simplexml": "*",
  4461. "ext-xml": "*",
  4462. "guzzlehttp/guzzle": "~6.0",
  4463. "php": ">=7.0"
  4464. },
  4465. "require-dev": {
  4466. "codeception/codeception": "*"
  4467. },
  4468. "type": "library",
  4469. "autoload": {
  4470. "psr-4": {
  4471. "Payment\\": "src/"
  4472. }
  4473. },
  4474. "notification-url": "https://packagist.org/downloads/",
  4475. "license": [
  4476. "MIT"
  4477. ],
  4478. "authors": [
  4479. {
  4480. "name": "Leo",
  4481. "email": "[email protected]",
  4482. "homepage": "https://dayutalk.cn"
  4483. }
  4484. ],
  4485. "description": "支付宝支付、微信支付、招商一网通支付php SDK。方便快速接入,最完整的开源支付 php sdk",
  4486. "homepage": "http://helei112g.github.io/payment",
  4487. "keywords": [
  4488. "alipay",
  4489. "weixin",
  4490. "一网通",
  4491. "微信支付",
  4492. "招商一网通",
  4493. "支付宝支付",
  4494. "集成支付接口SDK"
  4495. ],
  4496. "support": {
  4497. "issues": "https://github.com/helei112g/payment/issues",
  4498. "source": "https://github.com/helei112g/payment/tree/v5.x"
  4499. },
  4500. "time": "2020-05-04T03:07:17+00:00"
  4501. },
  4502. {
  4503. "name": "spatie/laravel-permission",
  4504. "version": "3.18.0",
  4505. "source": {
  4506. "type": "git",
  4507. "url": "https://github.com/spatie/laravel-permission.git",
  4508. "reference": "1c51a5fa12131565fe3860705163e53d7a26258a"
  4509. },
  4510. "dist": {
  4511. "type": "zip",
  4512. "url": "https://api.github.com/repos/spatie/laravel-permission/zipball/1c51a5fa12131565fe3860705163e53d7a26258a",
  4513. "reference": "1c51a5fa12131565fe3860705163e53d7a26258a",
  4514. "shasum": ""
  4515. },
  4516. "require": {
  4517. "illuminate/auth": "^5.8|^6.0|^7.0|^8.0",
  4518. "illuminate/container": "^5.8|^6.0|^7.0|^8.0",
  4519. "illuminate/contracts": "^5.8|^6.0|^7.0|^8.0",
  4520. "illuminate/database": "^5.8|^6.0|^7.0|^8.0",
  4521. "php": "^7.2.5|^8.0"
  4522. },
  4523. "require-dev": {
  4524. "orchestra/testbench": "^3.8|^4.0|^5.0|^6.0",
  4525. "phpunit/phpunit": "^8.0|^9.0",
  4526. "predis/predis": "^1.1"
  4527. },
  4528. "type": "library",
  4529. "extra": {
  4530. "laravel": {
  4531. "providers": [
  4532. "Spatie\\Permission\\PermissionServiceProvider"
  4533. ]
  4534. }
  4535. },
  4536. "autoload": {
  4537. "psr-4": {
  4538. "Spatie\\Permission\\": "src"
  4539. },
  4540. "files": [
  4541. "src/helpers.php"
  4542. ]
  4543. },
  4544. "notification-url": "https://packagist.org/downloads/",
  4545. "license": [
  4546. "MIT"
  4547. ],
  4548. "authors": [
  4549. {
  4550. "name": "Freek Van der Herten",
  4551. "email": "[email protected]",
  4552. "homepage": "https://spatie.be",
  4553. "role": "Developer"
  4554. }
  4555. ],
  4556. "description": "Permission handling for Laravel 5.8 and up",
  4557. "homepage": "https://github.com/spatie/laravel-permission",
  4558. "keywords": [
  4559. "acl",
  4560. "laravel",
  4561. "permission",
  4562. "permissions",
  4563. "rbac",
  4564. "roles",
  4565. "security",
  4566. "spatie"
  4567. ],
  4568. "support": {
  4569. "issues": "https://github.com/spatie/laravel-permission/issues",
  4570. "source": "https://github.com/spatie/laravel-permission/tree/3.18.0"
  4571. },
  4572. "funding": [
  4573. {
  4574. "url": "https://github.com/spatie",
  4575. "type": "github"
  4576. }
  4577. ],
  4578. "time": "2020-11-09T14:08:36+00:00"
  4579. },
  4580. {
  4581. "name": "srmklive/paypal",
  4582. "version": "1.8.0",
  4583. "source": {
  4584. "type": "git",
  4585. "url": "https://github.com/srmklive/laravel-paypal.git",
  4586. "reference": "0c2ae237577f62396d474674cb40f82825a41ffb"
  4587. },
  4588. "dist": {
  4589. "type": "zip",
  4590. "url": "https://api.github.com/repos/srmklive/laravel-paypal/zipball/0c2ae237577f62396d474674cb40f82825a41ffb",
  4591. "reference": "0c2ae237577f62396d474674cb40f82825a41ffb",
  4592. "shasum": ""
  4593. },
  4594. "require": {
  4595. "guzzlehttp/guzzle": "~6.0|~7.0",
  4596. "illuminate/support": "~5.1|~5.2|~5.3|~5.4|~5.5|~5.6|~5.7|~5.8|~6.0|~7.0|~8.0",
  4597. "nesbot/carbon": "~1.0|~2.0"
  4598. },
  4599. "type": "library",
  4600. "extra": {
  4601. "laravel": {
  4602. "providers": [
  4603. "Srmklive\\PayPal\\Providers\\PayPalServiceProvider"
  4604. ],
  4605. "aliases": {
  4606. "PayPal": "Srmklive\\PayPal\\Facades\\PayPal"
  4607. }
  4608. }
  4609. },
  4610. "autoload": {
  4611. "psr-4": {
  4612. "Srmklive\\PayPal\\": "src/"
  4613. }
  4614. },
  4615. "notification-url": "https://packagist.org/downloads/",
  4616. "license": [
  4617. "MIT"
  4618. ],
  4619. "authors": [
  4620. {
  4621. "name": "Raza Mehdi",
  4622. "email": "[email protected]"
  4623. }
  4624. ],
  4625. "description": "Laravel plugin For Processing Payments Through Paypal Express Checkout. Can Be Used Independently With Other Applications.",
  4626. "keywords": [
  4627. "http",
  4628. "laravel paypal",
  4629. "paypal",
  4630. "rest",
  4631. "web service"
  4632. ],
  4633. "support": {
  4634. "issues": "https://github.com/srmklive/laravel-paypal/issues",
  4635. "source": "https://github.com/srmklive/laravel-paypal/tree/v1.0"
  4636. },
  4637. "time": "2020-09-03T07:50:08+00:00"
  4638. },
  4639. {
  4640. "name": "stripe/stripe-php",
  4641. "version": "v7.69.0",
  4642. "source": {
  4643. "type": "git",
  4644. "url": "https://github.com/stripe/stripe-php.git",
  4645. "reference": "6716cbc4ebf8cba7d45374a059c7c6e5bf53277d"
  4646. },
  4647. "dist": {
  4648. "type": "zip",
  4649. "url": "https://api.github.com/repos/stripe/stripe-php/zipball/6716cbc4ebf8cba7d45374a059c7c6e5bf53277d",
  4650. "reference": "6716cbc4ebf8cba7d45374a059c7c6e5bf53277d",
  4651. "shasum": ""
  4652. },
  4653. "require": {
  4654. "ext-curl": "*",
  4655. "ext-json": "*",
  4656. "ext-mbstring": "*",
  4657. "php": ">=5.6.0"
  4658. },
  4659. "require-dev": {
  4660. "friendsofphp/php-cs-fixer": "2.17.1",
  4661. "php-coveralls/php-coveralls": "^2.1",
  4662. "phpunit/phpunit": "^5.7",
  4663. "squizlabs/php_codesniffer": "^3.3",
  4664. "symfony/process": "~3.4"
  4665. },
  4666. "type": "library",
  4667. "extra": {
  4668. "branch-alias": {
  4669. "dev-master": "2.0-dev"
  4670. }
  4671. },
  4672. "autoload": {
  4673. "psr-4": {
  4674. "Stripe\\": "lib/"
  4675. }
  4676. },
  4677. "notification-url": "https://packagist.org/downloads/",
  4678. "license": [
  4679. "MIT"
  4680. ],
  4681. "authors": [
  4682. {
  4683. "name": "Stripe and contributors",
  4684. "homepage": "https://github.com/stripe/stripe-php/contributors"
  4685. }
  4686. ],
  4687. "description": "Stripe PHP Library",
  4688. "homepage": "https://stripe.com/",
  4689. "keywords": [
  4690. "api",
  4691. "payment processing",
  4692. "stripe"
  4693. ],
  4694. "support": {
  4695. "issues": "https://github.com/stripe/stripe-php/issues",
  4696. "source": "https://github.com/stripe/stripe-php/tree/v7.69.0"
  4697. },
  4698. "time": "2021-01-22T03:21:13+00:00"
  4699. },
  4700. {
  4701. "name": "swiftmailer/swiftmailer",
  4702. "version": "v6.2.5",
  4703. "source": {
  4704. "type": "git",
  4705. "url": "https://github.com/swiftmailer/swiftmailer.git",
  4706. "reference": "698a6a9f54d7eb321274de3ad19863802c879fb7"
  4707. },
  4708. "dist": {
  4709. "type": "zip",
  4710. "url": "https://api.github.com/repos/swiftmailer/swiftmailer/zipball/698a6a9f54d7eb321274de3ad19863802c879fb7",
  4711. "reference": "698a6a9f54d7eb321274de3ad19863802c879fb7",
  4712. "shasum": ""
  4713. },
  4714. "require": {
  4715. "egulias/email-validator": "^2.0",
  4716. "php": ">=7.0.0",
  4717. "symfony/polyfill-iconv": "^1.0",
  4718. "symfony/polyfill-intl-idn": "^1.10",
  4719. "symfony/polyfill-mbstring": "^1.0"
  4720. },
  4721. "require-dev": {
  4722. "mockery/mockery": "^1.0",
  4723. "symfony/phpunit-bridge": "^4.4|^5.0"
  4724. },
  4725. "suggest": {
  4726. "ext-intl": "Needed to support internationalized email addresses"
  4727. },
  4728. "type": "library",
  4729. "extra": {
  4730. "branch-alias": {
  4731. "dev-master": "6.2-dev"
  4732. }
  4733. },
  4734. "autoload": {
  4735. "files": [
  4736. "lib/swift_required.php"
  4737. ]
  4738. },
  4739. "notification-url": "https://packagist.org/downloads/",
  4740. "license": [
  4741. "MIT"
  4742. ],
  4743. "authors": [
  4744. {
  4745. "name": "Chris Corbyn"
  4746. },
  4747. {
  4748. "name": "Fabien Potencier",
  4749. "email": "[email protected]"
  4750. }
  4751. ],
  4752. "description": "Swiftmailer, free feature-rich PHP mailer",
  4753. "homepage": "https://swiftmailer.symfony.com",
  4754. "keywords": [
  4755. "email",
  4756. "mail",
  4757. "mailer"
  4758. ],
  4759. "support": {
  4760. "issues": "https://github.com/swiftmailer/swiftmailer/issues",
  4761. "source": "https://github.com/swiftmailer/swiftmailer/tree/v6.2.5"
  4762. },
  4763. "funding": [
  4764. {
  4765. "url": "https://github.com/fabpot",
  4766. "type": "github"
  4767. },
  4768. {
  4769. "url": "https://tidelift.com/funding/github/packagist/swiftmailer/swiftmailer",
  4770. "type": "tidelift"
  4771. }
  4772. ],
  4773. "time": "2021-01-12T09:35:59+00:00"
  4774. },
  4775. {
  4776. "name": "symfony/console",
  4777. "version": "v5.2.1",
  4778. "source": {
  4779. "type": "git",
  4780. "url": "https://github.com/symfony/console.git",
  4781. "reference": "47c02526c532fb381374dab26df05e7313978976"
  4782. },
  4783. "dist": {
  4784. "type": "zip",
  4785. "url": "https://api.github.com/repos/symfony/console/zipball/47c02526c532fb381374dab26df05e7313978976",
  4786. "reference": "47c02526c532fb381374dab26df05e7313978976",
  4787. "shasum": ""
  4788. },
  4789. "require": {
  4790. "php": ">=7.2.5",
  4791. "symfony/polyfill-mbstring": "~1.0",
  4792. "symfony/polyfill-php73": "^1.8",
  4793. "symfony/polyfill-php80": "^1.15",
  4794. "symfony/service-contracts": "^1.1|^2",
  4795. "symfony/string": "^5.1"
  4796. },
  4797. "conflict": {
  4798. "symfony/dependency-injection": "<4.4",
  4799. "symfony/dotenv": "<5.1",
  4800. "symfony/event-dispatcher": "<4.4",
  4801. "symfony/lock": "<4.4",
  4802. "symfony/process": "<4.4"
  4803. },
  4804. "provide": {
  4805. "psr/log-implementation": "1.0"
  4806. },
  4807. "require-dev": {
  4808. "psr/log": "~1.0",
  4809. "symfony/config": "^4.4|^5.0",
  4810. "symfony/dependency-injection": "^4.4|^5.0",
  4811. "symfony/event-dispatcher": "^4.4|^5.0",
  4812. "symfony/lock": "^4.4|^5.0",
  4813. "symfony/process": "^4.4|^5.0",
  4814. "symfony/var-dumper": "^4.4|^5.0"
  4815. },
  4816. "suggest": {
  4817. "psr/log": "For using the console logger",
  4818. "symfony/event-dispatcher": "",
  4819. "symfony/lock": "",
  4820. "symfony/process": ""
  4821. },
  4822. "type": "library",
  4823. "autoload": {
  4824. "psr-4": {
  4825. "Symfony\\Component\\Console\\": ""
  4826. },
  4827. "exclude-from-classmap": [
  4828. "/Tests/"
  4829. ]
  4830. },
  4831. "notification-url": "https://packagist.org/downloads/",
  4832. "license": [
  4833. "MIT"
  4834. ],
  4835. "authors": [
  4836. {
  4837. "name": "Fabien Potencier",
  4838. "email": "[email protected]"
  4839. },
  4840. {
  4841. "name": "Symfony Community",
  4842. "homepage": "https://symfony.com/contributors"
  4843. }
  4844. ],
  4845. "description": "Symfony Console Component",
  4846. "homepage": "https://symfony.com",
  4847. "keywords": [
  4848. "cli",
  4849. "command line",
  4850. "console",
  4851. "terminal"
  4852. ],
  4853. "support": {
  4854. "source": "https://github.com/symfony/console/tree/v5.2.1"
  4855. },
  4856. "funding": [
  4857. {
  4858. "url": "https://symfony.com/sponsor",
  4859. "type": "custom"
  4860. },
  4861. {
  4862. "url": "https://github.com/fabpot",
  4863. "type": "github"
  4864. },
  4865. {
  4866. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4867. "type": "tidelift"
  4868. }
  4869. ],
  4870. "time": "2020-12-18T08:03:05+00:00"
  4871. },
  4872. {
  4873. "name": "symfony/css-selector",
  4874. "version": "v5.2.1",
  4875. "source": {
  4876. "type": "git",
  4877. "url": "https://github.com/symfony/css-selector.git",
  4878. "reference": "f789e7ead4c79e04ca9a6d6162fc629c89bd8054"
  4879. },
  4880. "dist": {
  4881. "type": "zip",
  4882. "url": "https://api.github.com/repos/symfony/css-selector/zipball/f789e7ead4c79e04ca9a6d6162fc629c89bd8054",
  4883. "reference": "f789e7ead4c79e04ca9a6d6162fc629c89bd8054",
  4884. "shasum": ""
  4885. },
  4886. "require": {
  4887. "php": ">=7.2.5"
  4888. },
  4889. "type": "library",
  4890. "autoload": {
  4891. "psr-4": {
  4892. "Symfony\\Component\\CssSelector\\": ""
  4893. },
  4894. "exclude-from-classmap": [
  4895. "/Tests/"
  4896. ]
  4897. },
  4898. "notification-url": "https://packagist.org/downloads/",
  4899. "license": [
  4900. "MIT"
  4901. ],
  4902. "authors": [
  4903. {
  4904. "name": "Fabien Potencier",
  4905. "email": "[email protected]"
  4906. },
  4907. {
  4908. "name": "Jean-François Simon",
  4909. "email": "[email protected]"
  4910. },
  4911. {
  4912. "name": "Symfony Community",
  4913. "homepage": "https://symfony.com/contributors"
  4914. }
  4915. ],
  4916. "description": "Symfony CssSelector Component",
  4917. "homepage": "https://symfony.com",
  4918. "support": {
  4919. "source": "https://github.com/symfony/css-selector/tree/v5.2.1"
  4920. },
  4921. "funding": [
  4922. {
  4923. "url": "https://symfony.com/sponsor",
  4924. "type": "custom"
  4925. },
  4926. {
  4927. "url": "https://github.com/fabpot",
  4928. "type": "github"
  4929. },
  4930. {
  4931. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4932. "type": "tidelift"
  4933. }
  4934. ],
  4935. "time": "2020-12-08T17:02:38+00:00"
  4936. },
  4937. {
  4938. "name": "symfony/deprecation-contracts",
  4939. "version": "v2.2.0",
  4940. "source": {
  4941. "type": "git",
  4942. "url": "https://github.com/symfony/deprecation-contracts.git",
  4943. "reference": "5fa56b4074d1ae755beb55617ddafe6f5d78f665"
  4944. },
  4945. "dist": {
  4946. "type": "zip",
  4947. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/5fa56b4074d1ae755beb55617ddafe6f5d78f665",
  4948. "reference": "5fa56b4074d1ae755beb55617ddafe6f5d78f665",
  4949. "shasum": ""
  4950. },
  4951. "require": {
  4952. "php": ">=7.1"
  4953. },
  4954. "type": "library",
  4955. "extra": {
  4956. "branch-alias": {
  4957. "dev-master": "2.2-dev"
  4958. },
  4959. "thanks": {
  4960. "name": "symfony/contracts",
  4961. "url": "https://github.com/symfony/contracts"
  4962. }
  4963. },
  4964. "autoload": {
  4965. "files": [
  4966. "function.php"
  4967. ]
  4968. },
  4969. "notification-url": "https://packagist.org/downloads/",
  4970. "license": [
  4971. "MIT"
  4972. ],
  4973. "authors": [
  4974. {
  4975. "name": "Nicolas Grekas",
  4976. "email": "[email protected]"
  4977. },
  4978. {
  4979. "name": "Symfony Community",
  4980. "homepage": "https://symfony.com/contributors"
  4981. }
  4982. ],
  4983. "description": "A generic function and convention to trigger deprecation notices",
  4984. "homepage": "https://symfony.com",
  4985. "support": {
  4986. "source": "https://github.com/symfony/deprecation-contracts/tree/master"
  4987. },
  4988. "funding": [
  4989. {
  4990. "url": "https://symfony.com/sponsor",
  4991. "type": "custom"
  4992. },
  4993. {
  4994. "url": "https://github.com/fabpot",
  4995. "type": "github"
  4996. },
  4997. {
  4998. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4999. "type": "tidelift"
  5000. }
  5001. ],
  5002. "time": "2020-09-07T11:33:47+00:00"
  5003. },
  5004. {
  5005. "name": "symfony/error-handler",
  5006. "version": "v5.2.1",
  5007. "source": {
  5008. "type": "git",
  5009. "url": "https://github.com/symfony/error-handler.git",
  5010. "reference": "59b190ce16ddf32771a22087b60f6dafd3407147"
  5011. },
  5012. "dist": {
  5013. "type": "zip",
  5014. "url": "https://api.github.com/repos/symfony/error-handler/zipball/59b190ce16ddf32771a22087b60f6dafd3407147",
  5015. "reference": "59b190ce16ddf32771a22087b60f6dafd3407147",
  5016. "shasum": ""
  5017. },
  5018. "require": {
  5019. "php": ">=7.2.5",
  5020. "psr/log": "^1.0",
  5021. "symfony/polyfill-php80": "^1.15",
  5022. "symfony/var-dumper": "^4.4|^5.0"
  5023. },
  5024. "require-dev": {
  5025. "symfony/deprecation-contracts": "^2.1",
  5026. "symfony/http-kernel": "^4.4|^5.0",
  5027. "symfony/serializer": "^4.4|^5.0"
  5028. },
  5029. "type": "library",
  5030. "autoload": {
  5031. "psr-4": {
  5032. "Symfony\\Component\\ErrorHandler\\": ""
  5033. },
  5034. "exclude-from-classmap": [
  5035. "/Tests/"
  5036. ]
  5037. },
  5038. "notification-url": "https://packagist.org/downloads/",
  5039. "license": [
  5040. "MIT"
  5041. ],
  5042. "authors": [
  5043. {
  5044. "name": "Fabien Potencier",
  5045. "email": "[email protected]"
  5046. },
  5047. {
  5048. "name": "Symfony Community",
  5049. "homepage": "https://symfony.com/contributors"
  5050. }
  5051. ],
  5052. "description": "Symfony ErrorHandler Component",
  5053. "homepage": "https://symfony.com",
  5054. "support": {
  5055. "source": "https://github.com/symfony/error-handler/tree/v5.2.1"
  5056. },
  5057. "funding": [
  5058. {
  5059. "url": "https://symfony.com/sponsor",
  5060. "type": "custom"
  5061. },
  5062. {
  5063. "url": "https://github.com/fabpot",
  5064. "type": "github"
  5065. },
  5066. {
  5067. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5068. "type": "tidelift"
  5069. }
  5070. ],
  5071. "time": "2020-12-09T18:54:12+00:00"
  5072. },
  5073. {
  5074. "name": "symfony/event-dispatcher",
  5075. "version": "v5.2.1",
  5076. "source": {
  5077. "type": "git",
  5078. "url": "https://github.com/symfony/event-dispatcher.git",
  5079. "reference": "1c93f7a1dff592c252574c79a8635a8a80856042"
  5080. },
  5081. "dist": {
  5082. "type": "zip",
  5083. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/1c93f7a1dff592c252574c79a8635a8a80856042",
  5084. "reference": "1c93f7a1dff592c252574c79a8635a8a80856042",
  5085. "shasum": ""
  5086. },
  5087. "require": {
  5088. "php": ">=7.2.5",
  5089. "symfony/deprecation-contracts": "^2.1",
  5090. "symfony/event-dispatcher-contracts": "^2",
  5091. "symfony/polyfill-php80": "^1.15"
  5092. },
  5093. "conflict": {
  5094. "symfony/dependency-injection": "<4.4"
  5095. },
  5096. "provide": {
  5097. "psr/event-dispatcher-implementation": "1.0",
  5098. "symfony/event-dispatcher-implementation": "2.0"
  5099. },
  5100. "require-dev": {
  5101. "psr/log": "~1.0",
  5102. "symfony/config": "^4.4|^5.0",
  5103. "symfony/dependency-injection": "^4.4|^5.0",
  5104. "symfony/error-handler": "^4.4|^5.0",
  5105. "symfony/expression-language": "^4.4|^5.0",
  5106. "symfony/http-foundation": "^4.4|^5.0",
  5107. "symfony/service-contracts": "^1.1|^2",
  5108. "symfony/stopwatch": "^4.4|^5.0"
  5109. },
  5110. "suggest": {
  5111. "symfony/dependency-injection": "",
  5112. "symfony/http-kernel": ""
  5113. },
  5114. "type": "library",
  5115. "autoload": {
  5116. "psr-4": {
  5117. "Symfony\\Component\\EventDispatcher\\": ""
  5118. },
  5119. "exclude-from-classmap": [
  5120. "/Tests/"
  5121. ]
  5122. },
  5123. "notification-url": "https://packagist.org/downloads/",
  5124. "license": [
  5125. "MIT"
  5126. ],
  5127. "authors": [
  5128. {
  5129. "name": "Fabien Potencier",
  5130. "email": "[email protected]"
  5131. },
  5132. {
  5133. "name": "Symfony Community",
  5134. "homepage": "https://symfony.com/contributors"
  5135. }
  5136. ],
  5137. "description": "Symfony EventDispatcher Component",
  5138. "homepage": "https://symfony.com",
  5139. "support": {
  5140. "source": "https://github.com/symfony/event-dispatcher/tree/v5.2.1"
  5141. },
  5142. "funding": [
  5143. {
  5144. "url": "https://symfony.com/sponsor",
  5145. "type": "custom"
  5146. },
  5147. {
  5148. "url": "https://github.com/fabpot",
  5149. "type": "github"
  5150. },
  5151. {
  5152. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5153. "type": "tidelift"
  5154. }
  5155. ],
  5156. "time": "2020-12-18T08:03:05+00:00"
  5157. },
  5158. {
  5159. "name": "symfony/event-dispatcher-contracts",
  5160. "version": "v2.2.0",
  5161. "source": {
  5162. "type": "git",
  5163. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  5164. "reference": "0ba7d54483095a198fa51781bc608d17e84dffa2"
  5165. },
  5166. "dist": {
  5167. "type": "zip",
  5168. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/0ba7d54483095a198fa51781bc608d17e84dffa2",
  5169. "reference": "0ba7d54483095a198fa51781bc608d17e84dffa2",
  5170. "shasum": ""
  5171. },
  5172. "require": {
  5173. "php": ">=7.2.5",
  5174. "psr/event-dispatcher": "^1"
  5175. },
  5176. "suggest": {
  5177. "symfony/event-dispatcher-implementation": ""
  5178. },
  5179. "type": "library",
  5180. "extra": {
  5181. "branch-alias": {
  5182. "dev-master": "2.2-dev"
  5183. },
  5184. "thanks": {
  5185. "name": "symfony/contracts",
  5186. "url": "https://github.com/symfony/contracts"
  5187. }
  5188. },
  5189. "autoload": {
  5190. "psr-4": {
  5191. "Symfony\\Contracts\\EventDispatcher\\": ""
  5192. }
  5193. },
  5194. "notification-url": "https://packagist.org/downloads/",
  5195. "license": [
  5196. "MIT"
  5197. ],
  5198. "authors": [
  5199. {
  5200. "name": "Nicolas Grekas",
  5201. "email": "[email protected]"
  5202. },
  5203. {
  5204. "name": "Symfony Community",
  5205. "homepage": "https://symfony.com/contributors"
  5206. }
  5207. ],
  5208. "description": "Generic abstractions related to dispatching event",
  5209. "homepage": "https://symfony.com",
  5210. "keywords": [
  5211. "abstractions",
  5212. "contracts",
  5213. "decoupling",
  5214. "interfaces",
  5215. "interoperability",
  5216. "standards"
  5217. ],
  5218. "support": {
  5219. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v2.2.0"
  5220. },
  5221. "funding": [
  5222. {
  5223. "url": "https://symfony.com/sponsor",
  5224. "type": "custom"
  5225. },
  5226. {
  5227. "url": "https://github.com/fabpot",
  5228. "type": "github"
  5229. },
  5230. {
  5231. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5232. "type": "tidelift"
  5233. }
  5234. ],
  5235. "time": "2020-09-07T11:33:47+00:00"
  5236. },
  5237. {
  5238. "name": "symfony/finder",
  5239. "version": "v5.2.1",
  5240. "source": {
  5241. "type": "git",
  5242. "url": "https://github.com/symfony/finder.git",
  5243. "reference": "0b9231a5922fd7287ba5b411893c0ecd2733e5ba"
  5244. },
  5245. "dist": {
  5246. "type": "zip",
  5247. "url": "https://api.github.com/repos/symfony/finder/zipball/0b9231a5922fd7287ba5b411893c0ecd2733e5ba",
  5248. "reference": "0b9231a5922fd7287ba5b411893c0ecd2733e5ba",
  5249. "shasum": ""
  5250. },
  5251. "require": {
  5252. "php": ">=7.2.5"
  5253. },
  5254. "type": "library",
  5255. "autoload": {
  5256. "psr-4": {
  5257. "Symfony\\Component\\Finder\\": ""
  5258. },
  5259. "exclude-from-classmap": [
  5260. "/Tests/"
  5261. ]
  5262. },
  5263. "notification-url": "https://packagist.org/downloads/",
  5264. "license": [
  5265. "MIT"
  5266. ],
  5267. "authors": [
  5268. {
  5269. "name": "Fabien Potencier",
  5270. "email": "[email protected]"
  5271. },
  5272. {
  5273. "name": "Symfony Community",
  5274. "homepage": "https://symfony.com/contributors"
  5275. }
  5276. ],
  5277. "description": "Symfony Finder Component",
  5278. "homepage": "https://symfony.com",
  5279. "support": {
  5280. "source": "https://github.com/symfony/finder/tree/v5.2.1"
  5281. },
  5282. "funding": [
  5283. {
  5284. "url": "https://symfony.com/sponsor",
  5285. "type": "custom"
  5286. },
  5287. {
  5288. "url": "https://github.com/fabpot",
  5289. "type": "github"
  5290. },
  5291. {
  5292. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5293. "type": "tidelift"
  5294. }
  5295. ],
  5296. "time": "2020-12-08T17:02:38+00:00"
  5297. },
  5298. {
  5299. "name": "symfony/http-client-contracts",
  5300. "version": "v2.3.1",
  5301. "source": {
  5302. "type": "git",
  5303. "url": "https://github.com/symfony/http-client-contracts.git",
  5304. "reference": "41db680a15018f9c1d4b23516059633ce280ca33"
  5305. },
  5306. "dist": {
  5307. "type": "zip",
  5308. "url": "https://api.github.com/repos/symfony/http-client-contracts/zipball/41db680a15018f9c1d4b23516059633ce280ca33",
  5309. "reference": "41db680a15018f9c1d4b23516059633ce280ca33",
  5310. "shasum": ""
  5311. },
  5312. "require": {
  5313. "php": ">=7.2.5"
  5314. },
  5315. "suggest": {
  5316. "symfony/http-client-implementation": ""
  5317. },
  5318. "type": "library",
  5319. "extra": {
  5320. "branch-version": "2.3",
  5321. "branch-alias": {
  5322. "dev-main": "2.3-dev"
  5323. },
  5324. "thanks": {
  5325. "name": "symfony/contracts",
  5326. "url": "https://github.com/symfony/contracts"
  5327. }
  5328. },
  5329. "autoload": {
  5330. "psr-4": {
  5331. "Symfony\\Contracts\\HttpClient\\": ""
  5332. }
  5333. },
  5334. "notification-url": "https://packagist.org/downloads/",
  5335. "license": [
  5336. "MIT"
  5337. ],
  5338. "authors": [
  5339. {
  5340. "name": "Nicolas Grekas",
  5341. "email": "[email protected]"
  5342. },
  5343. {
  5344. "name": "Symfony Community",
  5345. "homepage": "https://symfony.com/contributors"
  5346. }
  5347. ],
  5348. "description": "Generic abstractions related to HTTP clients",
  5349. "homepage": "https://symfony.com",
  5350. "keywords": [
  5351. "abstractions",
  5352. "contracts",
  5353. "decoupling",
  5354. "interfaces",
  5355. "interoperability",
  5356. "standards"
  5357. ],
  5358. "support": {
  5359. "source": "https://github.com/symfony/http-client-contracts/tree/v2.3.1"
  5360. },
  5361. "funding": [
  5362. {
  5363. "url": "https://symfony.com/sponsor",
  5364. "type": "custom"
  5365. },
  5366. {
  5367. "url": "https://github.com/fabpot",
  5368. "type": "github"
  5369. },
  5370. {
  5371. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5372. "type": "tidelift"
  5373. }
  5374. ],
  5375. "time": "2020-10-14T17:08:19+00:00"
  5376. },
  5377. {
  5378. "name": "symfony/http-foundation",
  5379. "version": "v5.2.1",
  5380. "source": {
  5381. "type": "git",
  5382. "url": "https://github.com/symfony/http-foundation.git",
  5383. "reference": "a1f6218b29897ab52acba58cfa905b83625bef8d"
  5384. },
  5385. "dist": {
  5386. "type": "zip",
  5387. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/a1f6218b29897ab52acba58cfa905b83625bef8d",
  5388. "reference": "a1f6218b29897ab52acba58cfa905b83625bef8d",
  5389. "shasum": ""
  5390. },
  5391. "require": {
  5392. "php": ">=7.2.5",
  5393. "symfony/deprecation-contracts": "^2.1",
  5394. "symfony/polyfill-mbstring": "~1.1",
  5395. "symfony/polyfill-php80": "^1.15"
  5396. },
  5397. "require-dev": {
  5398. "predis/predis": "~1.0",
  5399. "symfony/cache": "^4.4|^5.0",
  5400. "symfony/expression-language": "^4.4|^5.0",
  5401. "symfony/mime": "^4.4|^5.0"
  5402. },
  5403. "suggest": {
  5404. "symfony/mime": "To use the file extension guesser"
  5405. },
  5406. "type": "library",
  5407. "autoload": {
  5408. "psr-4": {
  5409. "Symfony\\Component\\HttpFoundation\\": ""
  5410. },
  5411. "exclude-from-classmap": [
  5412. "/Tests/"
  5413. ]
  5414. },
  5415. "notification-url": "https://packagist.org/downloads/",
  5416. "license": [
  5417. "MIT"
  5418. ],
  5419. "authors": [
  5420. {
  5421. "name": "Fabien Potencier",
  5422. "email": "[email protected]"
  5423. },
  5424. {
  5425. "name": "Symfony Community",
  5426. "homepage": "https://symfony.com/contributors"
  5427. }
  5428. ],
  5429. "description": "Symfony HttpFoundation Component",
  5430. "homepage": "https://symfony.com",
  5431. "support": {
  5432. "source": "https://github.com/symfony/http-foundation/tree/v5.2.1"
  5433. },
  5434. "funding": [
  5435. {
  5436. "url": "https://symfony.com/sponsor",
  5437. "type": "custom"
  5438. },
  5439. {
  5440. "url": "https://github.com/fabpot",
  5441. "type": "github"
  5442. },
  5443. {
  5444. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5445. "type": "tidelift"
  5446. }
  5447. ],
  5448. "time": "2020-12-18T10:00:10+00:00"
  5449. },
  5450. {
  5451. "name": "symfony/http-kernel",
  5452. "version": "v5.2.1",
  5453. "source": {
  5454. "type": "git",
  5455. "url": "https://github.com/symfony/http-kernel.git",
  5456. "reference": "1feb619286d819180f7b8bc0dc44f516d9c62647"
  5457. },
  5458. "dist": {
  5459. "type": "zip",
  5460. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/1feb619286d819180f7b8bc0dc44f516d9c62647",
  5461. "reference": "1feb619286d819180f7b8bc0dc44f516d9c62647",
  5462. "shasum": ""
  5463. },
  5464. "require": {
  5465. "php": ">=7.2.5",
  5466. "psr/log": "~1.0",
  5467. "symfony/deprecation-contracts": "^2.1",
  5468. "symfony/error-handler": "^4.4|^5.0",
  5469. "symfony/event-dispatcher": "^5.0",
  5470. "symfony/http-client-contracts": "^1.1|^2",
  5471. "symfony/http-foundation": "^4.4|^5.0",
  5472. "symfony/polyfill-ctype": "^1.8",
  5473. "symfony/polyfill-php73": "^1.9",
  5474. "symfony/polyfill-php80": "^1.15"
  5475. },
  5476. "conflict": {
  5477. "symfony/browser-kit": "<4.4",
  5478. "symfony/cache": "<5.0",
  5479. "symfony/config": "<5.0",
  5480. "symfony/console": "<4.4",
  5481. "symfony/dependency-injection": "<5.1.8",
  5482. "symfony/doctrine-bridge": "<5.0",
  5483. "symfony/form": "<5.0",
  5484. "symfony/http-client": "<5.0",
  5485. "symfony/mailer": "<5.0",
  5486. "symfony/messenger": "<5.0",
  5487. "symfony/translation": "<5.0",
  5488. "symfony/twig-bridge": "<5.0",
  5489. "symfony/validator": "<5.0",
  5490. "twig/twig": "<2.4"
  5491. },
  5492. "provide": {
  5493. "psr/log-implementation": "1.0"
  5494. },
  5495. "require-dev": {
  5496. "psr/cache": "~1.0",
  5497. "symfony/browser-kit": "^4.4|^5.0",
  5498. "symfony/config": "^5.0",
  5499. "symfony/console": "^4.4|^5.0",
  5500. "symfony/css-selector": "^4.4|^5.0",
  5501. "symfony/dependency-injection": "^5.1.8",
  5502. "symfony/dom-crawler": "^4.4|^5.0",
  5503. "symfony/expression-language": "^4.4|^5.0",
  5504. "symfony/finder": "^4.4|^5.0",
  5505. "symfony/process": "^4.4|^5.0",
  5506. "symfony/routing": "^4.4|^5.0",
  5507. "symfony/stopwatch": "^4.4|^5.0",
  5508. "symfony/translation": "^4.4|^5.0",
  5509. "symfony/translation-contracts": "^1.1|^2",
  5510. "twig/twig": "^2.4|^3.0"
  5511. },
  5512. "suggest": {
  5513. "symfony/browser-kit": "",
  5514. "symfony/config": "",
  5515. "symfony/console": "",
  5516. "symfony/dependency-injection": ""
  5517. },
  5518. "type": "library",
  5519. "autoload": {
  5520. "psr-4": {
  5521. "Symfony\\Component\\HttpKernel\\": ""
  5522. },
  5523. "exclude-from-classmap": [
  5524. "/Tests/"
  5525. ]
  5526. },
  5527. "notification-url": "https://packagist.org/downloads/",
  5528. "license": [
  5529. "MIT"
  5530. ],
  5531. "authors": [
  5532. {
  5533. "name": "Fabien Potencier",
  5534. "email": "[email protected]"
  5535. },
  5536. {
  5537. "name": "Symfony Community",
  5538. "homepage": "https://symfony.com/contributors"
  5539. }
  5540. ],
  5541. "description": "Symfony HttpKernel Component",
  5542. "homepage": "https://symfony.com",
  5543. "support": {
  5544. "source": "https://github.com/symfony/http-kernel/tree/v5.2.1"
  5545. },
  5546. "funding": [
  5547. {
  5548. "url": "https://symfony.com/sponsor",
  5549. "type": "custom"
  5550. },
  5551. {
  5552. "url": "https://github.com/fabpot",
  5553. "type": "github"
  5554. },
  5555. {
  5556. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5557. "type": "tidelift"
  5558. }
  5559. ],
  5560. "time": "2020-12-18T13:49:39+00:00"
  5561. },
  5562. {
  5563. "name": "symfony/mime",
  5564. "version": "v5.2.1",
  5565. "source": {
  5566. "type": "git",
  5567. "url": "https://github.com/symfony/mime.git",
  5568. "reference": "de97005aef7426ba008c46ba840fc301df577ada"
  5569. },
  5570. "dist": {
  5571. "type": "zip",
  5572. "url": "https://api.github.com/repos/symfony/mime/zipball/de97005aef7426ba008c46ba840fc301df577ada",
  5573. "reference": "de97005aef7426ba008c46ba840fc301df577ada",
  5574. "shasum": ""
  5575. },
  5576. "require": {
  5577. "php": ">=7.2.5",
  5578. "symfony/deprecation-contracts": "^2.1",
  5579. "symfony/polyfill-intl-idn": "^1.10",
  5580. "symfony/polyfill-mbstring": "^1.0",
  5581. "symfony/polyfill-php80": "^1.15"
  5582. },
  5583. "conflict": {
  5584. "symfony/mailer": "<4.4"
  5585. },
  5586. "require-dev": {
  5587. "egulias/email-validator": "^2.1.10",
  5588. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  5589. "symfony/dependency-injection": "^4.4|^5.0",
  5590. "symfony/property-access": "^4.4|^5.1",
  5591. "symfony/property-info": "^4.4|^5.1",
  5592. "symfony/serializer": "^5.2"
  5593. },
  5594. "type": "library",
  5595. "autoload": {
  5596. "psr-4": {
  5597. "Symfony\\Component\\Mime\\": ""
  5598. },
  5599. "exclude-from-classmap": [
  5600. "/Tests/"
  5601. ]
  5602. },
  5603. "notification-url": "https://packagist.org/downloads/",
  5604. "license": [
  5605. "MIT"
  5606. ],
  5607. "authors": [
  5608. {
  5609. "name": "Fabien Potencier",
  5610. "email": "[email protected]"
  5611. },
  5612. {
  5613. "name": "Symfony Community",
  5614. "homepage": "https://symfony.com/contributors"
  5615. }
  5616. ],
  5617. "description": "A library to manipulate MIME messages",
  5618. "homepage": "https://symfony.com",
  5619. "keywords": [
  5620. "mime",
  5621. "mime-type"
  5622. ],
  5623. "support": {
  5624. "source": "https://github.com/symfony/mime/tree/v5.2.1"
  5625. },
  5626. "funding": [
  5627. {
  5628. "url": "https://symfony.com/sponsor",
  5629. "type": "custom"
  5630. },
  5631. {
  5632. "url": "https://github.com/fabpot",
  5633. "type": "github"
  5634. },
  5635. {
  5636. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5637. "type": "tidelift"
  5638. }
  5639. ],
  5640. "time": "2020-12-09T18:54:12+00:00"
  5641. },
  5642. {
  5643. "name": "symfony/polyfill-ctype",
  5644. "version": "v1.22.0",
  5645. "source": {
  5646. "type": "git",
  5647. "url": "https://github.com/symfony/polyfill-ctype.git",
  5648. "reference": "c6c942b1ac76c82448322025e084cadc56048b4e"
  5649. },
  5650. "dist": {
  5651. "type": "zip",
  5652. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/c6c942b1ac76c82448322025e084cadc56048b4e",
  5653. "reference": "c6c942b1ac76c82448322025e084cadc56048b4e",
  5654. "shasum": ""
  5655. },
  5656. "require": {
  5657. "php": ">=7.1"
  5658. },
  5659. "suggest": {
  5660. "ext-ctype": "For best performance"
  5661. },
  5662. "type": "library",
  5663. "extra": {
  5664. "branch-alias": {
  5665. "dev-main": "1.22-dev"
  5666. },
  5667. "thanks": {
  5668. "name": "symfony/polyfill",
  5669. "url": "https://github.com/symfony/polyfill"
  5670. }
  5671. },
  5672. "autoload": {
  5673. "psr-4": {
  5674. "Symfony\\Polyfill\\Ctype\\": ""
  5675. },
  5676. "files": [
  5677. "bootstrap.php"
  5678. ]
  5679. },
  5680. "notification-url": "https://packagist.org/downloads/",
  5681. "license": [
  5682. "MIT"
  5683. ],
  5684. "authors": [
  5685. {
  5686. "name": "Gert de Pagter",
  5687. "email": "[email protected]"
  5688. },
  5689. {
  5690. "name": "Symfony Community",
  5691. "homepage": "https://symfony.com/contributors"
  5692. }
  5693. ],
  5694. "description": "Symfony polyfill for ctype functions",
  5695. "homepage": "https://symfony.com",
  5696. "keywords": [
  5697. "compatibility",
  5698. "ctype",
  5699. "polyfill",
  5700. "portable"
  5701. ],
  5702. "support": {
  5703. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.22.0"
  5704. },
  5705. "funding": [
  5706. {
  5707. "url": "https://symfony.com/sponsor",
  5708. "type": "custom"
  5709. },
  5710. {
  5711. "url": "https://github.com/fabpot",
  5712. "type": "github"
  5713. },
  5714. {
  5715. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5716. "type": "tidelift"
  5717. }
  5718. ],
  5719. "time": "2021-01-07T16:49:33+00:00"
  5720. },
  5721. {
  5722. "name": "symfony/polyfill-iconv",
  5723. "version": "v1.22.0",
  5724. "source": {
  5725. "type": "git",
  5726. "url": "https://github.com/symfony/polyfill-iconv.git",
  5727. "reference": "b34bfb8c4c22650ac080d2662ae3502e5f2f4ae6"
  5728. },
  5729. "dist": {
  5730. "type": "zip",
  5731. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/b34bfb8c4c22650ac080d2662ae3502e5f2f4ae6",
  5732. "reference": "b34bfb8c4c22650ac080d2662ae3502e5f2f4ae6",
  5733. "shasum": ""
  5734. },
  5735. "require": {
  5736. "php": ">=7.1"
  5737. },
  5738. "suggest": {
  5739. "ext-iconv": "For best performance"
  5740. },
  5741. "type": "library",
  5742. "extra": {
  5743. "branch-alias": {
  5744. "dev-main": "1.22-dev"
  5745. },
  5746. "thanks": {
  5747. "name": "symfony/polyfill",
  5748. "url": "https://github.com/symfony/polyfill"
  5749. }
  5750. },
  5751. "autoload": {
  5752. "psr-4": {
  5753. "Symfony\\Polyfill\\Iconv\\": ""
  5754. },
  5755. "files": [
  5756. "bootstrap.php"
  5757. ]
  5758. },
  5759. "notification-url": "https://packagist.org/downloads/",
  5760. "license": [
  5761. "MIT"
  5762. ],
  5763. "authors": [
  5764. {
  5765. "name": "Nicolas Grekas",
  5766. "email": "[email protected]"
  5767. },
  5768. {
  5769. "name": "Symfony Community",
  5770. "homepage": "https://symfony.com/contributors"
  5771. }
  5772. ],
  5773. "description": "Symfony polyfill for the Iconv extension",
  5774. "homepage": "https://symfony.com",
  5775. "keywords": [
  5776. "compatibility",
  5777. "iconv",
  5778. "polyfill",
  5779. "portable",
  5780. "shim"
  5781. ],
  5782. "support": {
  5783. "source": "https://github.com/symfony/polyfill-iconv/tree/v1.22.0"
  5784. },
  5785. "funding": [
  5786. {
  5787. "url": "https://symfony.com/sponsor",
  5788. "type": "custom"
  5789. },
  5790. {
  5791. "url": "https://github.com/fabpot",
  5792. "type": "github"
  5793. },
  5794. {
  5795. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5796. "type": "tidelift"
  5797. }
  5798. ],
  5799. "time": "2021-01-07T16:49:33+00:00"
  5800. },
  5801. {
  5802. "name": "symfony/polyfill-intl-grapheme",
  5803. "version": "v1.22.0",
  5804. "source": {
  5805. "type": "git",
  5806. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  5807. "reference": "267a9adeb8ecb8071040a740930e077cdfb987af"
  5808. },
  5809. "dist": {
  5810. "type": "zip",
  5811. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/267a9adeb8ecb8071040a740930e077cdfb987af",
  5812. "reference": "267a9adeb8ecb8071040a740930e077cdfb987af",
  5813. "shasum": ""
  5814. },
  5815. "require": {
  5816. "php": ">=7.1"
  5817. },
  5818. "suggest": {
  5819. "ext-intl": "For best performance"
  5820. },
  5821. "type": "library",
  5822. "extra": {
  5823. "branch-alias": {
  5824. "dev-main": "1.22-dev"
  5825. },
  5826. "thanks": {
  5827. "name": "symfony/polyfill",
  5828. "url": "https://github.com/symfony/polyfill"
  5829. }
  5830. },
  5831. "autoload": {
  5832. "psr-4": {
  5833. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  5834. },
  5835. "files": [
  5836. "bootstrap.php"
  5837. ]
  5838. },
  5839. "notification-url": "https://packagist.org/downloads/",
  5840. "license": [
  5841. "MIT"
  5842. ],
  5843. "authors": [
  5844. {
  5845. "name": "Nicolas Grekas",
  5846. "email": "[email protected]"
  5847. },
  5848. {
  5849. "name": "Symfony Community",
  5850. "homepage": "https://symfony.com/contributors"
  5851. }
  5852. ],
  5853. "description": "Symfony polyfill for intl's grapheme_* functions",
  5854. "homepage": "https://symfony.com",
  5855. "keywords": [
  5856. "compatibility",
  5857. "grapheme",
  5858. "intl",
  5859. "polyfill",
  5860. "portable",
  5861. "shim"
  5862. ],
  5863. "support": {
  5864. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.22.0"
  5865. },
  5866. "funding": [
  5867. {
  5868. "url": "https://symfony.com/sponsor",
  5869. "type": "custom"
  5870. },
  5871. {
  5872. "url": "https://github.com/fabpot",
  5873. "type": "github"
  5874. },
  5875. {
  5876. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5877. "type": "tidelift"
  5878. }
  5879. ],
  5880. "time": "2021-01-07T16:49:33+00:00"
  5881. },
  5882. {
  5883. "name": "symfony/polyfill-intl-idn",
  5884. "version": "v1.22.0",
  5885. "source": {
  5886. "type": "git",
  5887. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  5888. "reference": "0eb8293dbbcd6ef6bf81404c9ce7d95bcdf34f44"
  5889. },
  5890. "dist": {
  5891. "type": "zip",
  5892. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/0eb8293dbbcd6ef6bf81404c9ce7d95bcdf34f44",
  5893. "reference": "0eb8293dbbcd6ef6bf81404c9ce7d95bcdf34f44",
  5894. "shasum": ""
  5895. },
  5896. "require": {
  5897. "php": ">=7.1",
  5898. "symfony/polyfill-intl-normalizer": "^1.10",
  5899. "symfony/polyfill-php72": "^1.10"
  5900. },
  5901. "suggest": {
  5902. "ext-intl": "For best performance"
  5903. },
  5904. "type": "library",
  5905. "extra": {
  5906. "branch-alias": {
  5907. "dev-main": "1.22-dev"
  5908. },
  5909. "thanks": {
  5910. "name": "symfony/polyfill",
  5911. "url": "https://github.com/symfony/polyfill"
  5912. }
  5913. },
  5914. "autoload": {
  5915. "psr-4": {
  5916. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  5917. },
  5918. "files": [
  5919. "bootstrap.php"
  5920. ]
  5921. },
  5922. "notification-url": "https://packagist.org/downloads/",
  5923. "license": [
  5924. "MIT"
  5925. ],
  5926. "authors": [
  5927. {
  5928. "name": "Laurent Bassin",
  5929. "email": "[email protected]"
  5930. },
  5931. {
  5932. "name": "Trevor Rowbotham",
  5933. "email": "[email protected]"
  5934. },
  5935. {
  5936. "name": "Symfony Community",
  5937. "homepage": "https://symfony.com/contributors"
  5938. }
  5939. ],
  5940. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  5941. "homepage": "https://symfony.com",
  5942. "keywords": [
  5943. "compatibility",
  5944. "idn",
  5945. "intl",
  5946. "polyfill",
  5947. "portable",
  5948. "shim"
  5949. ],
  5950. "support": {
  5951. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.22.0"
  5952. },
  5953. "funding": [
  5954. {
  5955. "url": "https://symfony.com/sponsor",
  5956. "type": "custom"
  5957. },
  5958. {
  5959. "url": "https://github.com/fabpot",
  5960. "type": "github"
  5961. },
  5962. {
  5963. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5964. "type": "tidelift"
  5965. }
  5966. ],
  5967. "time": "2021-01-07T16:49:33+00:00"
  5968. },
  5969. {
  5970. "name": "symfony/polyfill-intl-normalizer",
  5971. "version": "v1.22.0",
  5972. "source": {
  5973. "type": "git",
  5974. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  5975. "reference": "6e971c891537eb617a00bb07a43d182a6915faba"
  5976. },
  5977. "dist": {
  5978. "type": "zip",
  5979. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/6e971c891537eb617a00bb07a43d182a6915faba",
  5980. "reference": "6e971c891537eb617a00bb07a43d182a6915faba",
  5981. "shasum": ""
  5982. },
  5983. "require": {
  5984. "php": ">=7.1"
  5985. },
  5986. "suggest": {
  5987. "ext-intl": "For best performance"
  5988. },
  5989. "type": "library",
  5990. "extra": {
  5991. "branch-alias": {
  5992. "dev-main": "1.22-dev"
  5993. },
  5994. "thanks": {
  5995. "name": "symfony/polyfill",
  5996. "url": "https://github.com/symfony/polyfill"
  5997. }
  5998. },
  5999. "autoload": {
  6000. "psr-4": {
  6001. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  6002. },
  6003. "files": [
  6004. "bootstrap.php"
  6005. ],
  6006. "classmap": [
  6007. "Resources/stubs"
  6008. ]
  6009. },
  6010. "notification-url": "https://packagist.org/downloads/",
  6011. "license": [
  6012. "MIT"
  6013. ],
  6014. "authors": [
  6015. {
  6016. "name": "Nicolas Grekas",
  6017. "email": "[email protected]"
  6018. },
  6019. {
  6020. "name": "Symfony Community",
  6021. "homepage": "https://symfony.com/contributors"
  6022. }
  6023. ],
  6024. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  6025. "homepage": "https://symfony.com",
  6026. "keywords": [
  6027. "compatibility",
  6028. "intl",
  6029. "normalizer",
  6030. "polyfill",
  6031. "portable",
  6032. "shim"
  6033. ],
  6034. "support": {
  6035. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.22.0"
  6036. },
  6037. "funding": [
  6038. {
  6039. "url": "https://symfony.com/sponsor",
  6040. "type": "custom"
  6041. },
  6042. {
  6043. "url": "https://github.com/fabpot",
  6044. "type": "github"
  6045. },
  6046. {
  6047. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6048. "type": "tidelift"
  6049. }
  6050. ],
  6051. "time": "2021-01-07T17:09:11+00:00"
  6052. },
  6053. {
  6054. "name": "symfony/polyfill-mbstring",
  6055. "version": "v1.22.0",
  6056. "source": {
  6057. "type": "git",
  6058. "url": "https://github.com/symfony/polyfill-mbstring.git",
  6059. "reference": "f377a3dd1fde44d37b9831d68dc8dea3ffd28e13"
  6060. },
  6061. "dist": {
  6062. "type": "zip",
  6063. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/f377a3dd1fde44d37b9831d68dc8dea3ffd28e13",
  6064. "reference": "f377a3dd1fde44d37b9831d68dc8dea3ffd28e13",
  6065. "shasum": ""
  6066. },
  6067. "require": {
  6068. "php": ">=7.1"
  6069. },
  6070. "suggest": {
  6071. "ext-mbstring": "For best performance"
  6072. },
  6073. "type": "library",
  6074. "extra": {
  6075. "branch-alias": {
  6076. "dev-main": "1.22-dev"
  6077. },
  6078. "thanks": {
  6079. "name": "symfony/polyfill",
  6080. "url": "https://github.com/symfony/polyfill"
  6081. }
  6082. },
  6083. "autoload": {
  6084. "psr-4": {
  6085. "Symfony\\Polyfill\\Mbstring\\": ""
  6086. },
  6087. "files": [
  6088. "bootstrap.php"
  6089. ]
  6090. },
  6091. "notification-url": "https://packagist.org/downloads/",
  6092. "license": [
  6093. "MIT"
  6094. ],
  6095. "authors": [
  6096. {
  6097. "name": "Nicolas Grekas",
  6098. "email": "[email protected]"
  6099. },
  6100. {
  6101. "name": "Symfony Community",
  6102. "homepage": "https://symfony.com/contributors"
  6103. }
  6104. ],
  6105. "description": "Symfony polyfill for the Mbstring extension",
  6106. "homepage": "https://symfony.com",
  6107. "keywords": [
  6108. "compatibility",
  6109. "mbstring",
  6110. "polyfill",
  6111. "portable",
  6112. "shim"
  6113. ],
  6114. "support": {
  6115. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.22.0"
  6116. },
  6117. "funding": [
  6118. {
  6119. "url": "https://symfony.com/sponsor",
  6120. "type": "custom"
  6121. },
  6122. {
  6123. "url": "https://github.com/fabpot",
  6124. "type": "github"
  6125. },
  6126. {
  6127. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6128. "type": "tidelift"
  6129. }
  6130. ],
  6131. "time": "2021-01-07T16:49:33+00:00"
  6132. },
  6133. {
  6134. "name": "symfony/polyfill-php56",
  6135. "version": "v1.20.0",
  6136. "source": {
  6137. "type": "git",
  6138. "url": "https://github.com/symfony/polyfill-php56.git",
  6139. "reference": "54b8cd7e6c1643d78d011f3be89f3ef1f9f4c675"
  6140. },
  6141. "dist": {
  6142. "type": "zip",
  6143. "url": "https://api.github.com/repos/symfony/polyfill-php56/zipball/54b8cd7e6c1643d78d011f3be89f3ef1f9f4c675",
  6144. "reference": "54b8cd7e6c1643d78d011f3be89f3ef1f9f4c675",
  6145. "shasum": ""
  6146. },
  6147. "require": {
  6148. "php": ">=7.1"
  6149. },
  6150. "type": "metapackage",
  6151. "extra": {
  6152. "branch-alias": {
  6153. "dev-main": "1.20-dev"
  6154. },
  6155. "thanks": {
  6156. "name": "symfony/polyfill",
  6157. "url": "https://github.com/symfony/polyfill"
  6158. }
  6159. },
  6160. "notification-url": "https://packagist.org/downloads/",
  6161. "license": [
  6162. "MIT"
  6163. ],
  6164. "authors": [
  6165. {
  6166. "name": "Nicolas Grekas",
  6167. "email": "[email protected]"
  6168. },
  6169. {
  6170. "name": "Symfony Community",
  6171. "homepage": "https://symfony.com/contributors"
  6172. }
  6173. ],
  6174. "description": "Symfony polyfill backporting some PHP 5.6+ features to lower PHP versions",
  6175. "homepage": "https://symfony.com",
  6176. "keywords": [
  6177. "compatibility",
  6178. "polyfill",
  6179. "portable",
  6180. "shim"
  6181. ],
  6182. "support": {
  6183. "source": "https://github.com/symfony/polyfill-php56/tree/v1.20.0"
  6184. },
  6185. "funding": [
  6186. {
  6187. "url": "https://symfony.com/sponsor",
  6188. "type": "custom"
  6189. },
  6190. {
  6191. "url": "https://github.com/fabpot",
  6192. "type": "github"
  6193. },
  6194. {
  6195. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6196. "type": "tidelift"
  6197. }
  6198. ],
  6199. "time": "2020-10-23T14:02:19+00:00"
  6200. },
  6201. {
  6202. "name": "symfony/polyfill-php72",
  6203. "version": "v1.22.0",
  6204. "source": {
  6205. "type": "git",
  6206. "url": "https://github.com/symfony/polyfill-php72.git",
  6207. "reference": "cc6e6f9b39fe8075b3dabfbaf5b5f645ae1340c9"
  6208. },
  6209. "dist": {
  6210. "type": "zip",
  6211. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/cc6e6f9b39fe8075b3dabfbaf5b5f645ae1340c9",
  6212. "reference": "cc6e6f9b39fe8075b3dabfbaf5b5f645ae1340c9",
  6213. "shasum": ""
  6214. },
  6215. "require": {
  6216. "php": ">=7.1"
  6217. },
  6218. "type": "library",
  6219. "extra": {
  6220. "branch-alias": {
  6221. "dev-main": "1.22-dev"
  6222. },
  6223. "thanks": {
  6224. "name": "symfony/polyfill",
  6225. "url": "https://github.com/symfony/polyfill"
  6226. }
  6227. },
  6228. "autoload": {
  6229. "psr-4": {
  6230. "Symfony\\Polyfill\\Php72\\": ""
  6231. },
  6232. "files": [
  6233. "bootstrap.php"
  6234. ]
  6235. },
  6236. "notification-url": "https://packagist.org/downloads/",
  6237. "license": [
  6238. "MIT"
  6239. ],
  6240. "authors": [
  6241. {
  6242. "name": "Nicolas Grekas",
  6243. "email": "[email protected]"
  6244. },
  6245. {
  6246. "name": "Symfony Community",
  6247. "homepage": "https://symfony.com/contributors"
  6248. }
  6249. ],
  6250. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  6251. "homepage": "https://symfony.com",
  6252. "keywords": [
  6253. "compatibility",
  6254. "polyfill",
  6255. "portable",
  6256. "shim"
  6257. ],
  6258. "support": {
  6259. "source": "https://github.com/symfony/polyfill-php72/tree/v1.22.0"
  6260. },
  6261. "funding": [
  6262. {
  6263. "url": "https://symfony.com/sponsor",
  6264. "type": "custom"
  6265. },
  6266. {
  6267. "url": "https://github.com/fabpot",
  6268. "type": "github"
  6269. },
  6270. {
  6271. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6272. "type": "tidelift"
  6273. }
  6274. ],
  6275. "time": "2021-01-07T16:49:33+00:00"
  6276. },
  6277. {
  6278. "name": "symfony/polyfill-php73",
  6279. "version": "v1.22.0",
  6280. "source": {
  6281. "type": "git",
  6282. "url": "https://github.com/symfony/polyfill-php73.git",
  6283. "reference": "a678b42e92f86eca04b7fa4c0f6f19d097fb69e2"
  6284. },
  6285. "dist": {
  6286. "type": "zip",
  6287. "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/a678b42e92f86eca04b7fa4c0f6f19d097fb69e2",
  6288. "reference": "a678b42e92f86eca04b7fa4c0f6f19d097fb69e2",
  6289. "shasum": ""
  6290. },
  6291. "require": {
  6292. "php": ">=7.1"
  6293. },
  6294. "type": "library",
  6295. "extra": {
  6296. "branch-alias": {
  6297. "dev-main": "1.22-dev"
  6298. },
  6299. "thanks": {
  6300. "name": "symfony/polyfill",
  6301. "url": "https://github.com/symfony/polyfill"
  6302. }
  6303. },
  6304. "autoload": {
  6305. "psr-4": {
  6306. "Symfony\\Polyfill\\Php73\\": ""
  6307. },
  6308. "files": [
  6309. "bootstrap.php"
  6310. ],
  6311. "classmap": [
  6312. "Resources/stubs"
  6313. ]
  6314. },
  6315. "notification-url": "https://packagist.org/downloads/",
  6316. "license": [
  6317. "MIT"
  6318. ],
  6319. "authors": [
  6320. {
  6321. "name": "Nicolas Grekas",
  6322. "email": "[email protected]"
  6323. },
  6324. {
  6325. "name": "Symfony Community",
  6326. "homepage": "https://symfony.com/contributors"
  6327. }
  6328. ],
  6329. "description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions",
  6330. "homepage": "https://symfony.com",
  6331. "keywords": [
  6332. "compatibility",
  6333. "polyfill",
  6334. "portable",
  6335. "shim"
  6336. ],
  6337. "support": {
  6338. "source": "https://github.com/symfony/polyfill-php73/tree/v1.22.0"
  6339. },
  6340. "funding": [
  6341. {
  6342. "url": "https://symfony.com/sponsor",
  6343. "type": "custom"
  6344. },
  6345. {
  6346. "url": "https://github.com/fabpot",
  6347. "type": "github"
  6348. },
  6349. {
  6350. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6351. "type": "tidelift"
  6352. }
  6353. ],
  6354. "time": "2021-01-07T16:49:33+00:00"
  6355. },
  6356. {
  6357. "name": "symfony/polyfill-php80",
  6358. "version": "v1.22.0",
  6359. "source": {
  6360. "type": "git",
  6361. "url": "https://github.com/symfony/polyfill-php80.git",
  6362. "reference": "dc3063ba22c2a1fd2f45ed856374d79114998f91"
  6363. },
  6364. "dist": {
  6365. "type": "zip",
  6366. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/dc3063ba22c2a1fd2f45ed856374d79114998f91",
  6367. "reference": "dc3063ba22c2a1fd2f45ed856374d79114998f91",
  6368. "shasum": ""
  6369. },
  6370. "require": {
  6371. "php": ">=7.1"
  6372. },
  6373. "type": "library",
  6374. "extra": {
  6375. "branch-alias": {
  6376. "dev-main": "1.22-dev"
  6377. },
  6378. "thanks": {
  6379. "name": "symfony/polyfill",
  6380. "url": "https://github.com/symfony/polyfill"
  6381. }
  6382. },
  6383. "autoload": {
  6384. "psr-4": {
  6385. "Symfony\\Polyfill\\Php80\\": ""
  6386. },
  6387. "files": [
  6388. "bootstrap.php"
  6389. ],
  6390. "classmap": [
  6391. "Resources/stubs"
  6392. ]
  6393. },
  6394. "notification-url": "https://packagist.org/downloads/",
  6395. "license": [
  6396. "MIT"
  6397. ],
  6398. "authors": [
  6399. {
  6400. "name": "Ion Bazan",
  6401. "email": "[email protected]"
  6402. },
  6403. {
  6404. "name": "Nicolas Grekas",
  6405. "email": "[email protected]"
  6406. },
  6407. {
  6408. "name": "Symfony Community",
  6409. "homepage": "https://symfony.com/contributors"
  6410. }
  6411. ],
  6412. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  6413. "homepage": "https://symfony.com",
  6414. "keywords": [
  6415. "compatibility",
  6416. "polyfill",
  6417. "portable",
  6418. "shim"
  6419. ],
  6420. "support": {
  6421. "source": "https://github.com/symfony/polyfill-php80/tree/v1.22.0"
  6422. },
  6423. "funding": [
  6424. {
  6425. "url": "https://symfony.com/sponsor",
  6426. "type": "custom"
  6427. },
  6428. {
  6429. "url": "https://github.com/fabpot",
  6430. "type": "github"
  6431. },
  6432. {
  6433. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6434. "type": "tidelift"
  6435. }
  6436. ],
  6437. "time": "2021-01-07T16:49:33+00:00"
  6438. },
  6439. {
  6440. "name": "symfony/process",
  6441. "version": "v5.2.1",
  6442. "source": {
  6443. "type": "git",
  6444. "url": "https://github.com/symfony/process.git",
  6445. "reference": "bd8815b8b6705298beaa384f04fabd459c10bedd"
  6446. },
  6447. "dist": {
  6448. "type": "zip",
  6449. "url": "https://api.github.com/repos/symfony/process/zipball/bd8815b8b6705298beaa384f04fabd459c10bedd",
  6450. "reference": "bd8815b8b6705298beaa384f04fabd459c10bedd",
  6451. "shasum": ""
  6452. },
  6453. "require": {
  6454. "php": ">=7.2.5",
  6455. "symfony/polyfill-php80": "^1.15"
  6456. },
  6457. "type": "library",
  6458. "autoload": {
  6459. "psr-4": {
  6460. "Symfony\\Component\\Process\\": ""
  6461. },
  6462. "exclude-from-classmap": [
  6463. "/Tests/"
  6464. ]
  6465. },
  6466. "notification-url": "https://packagist.org/downloads/",
  6467. "license": [
  6468. "MIT"
  6469. ],
  6470. "authors": [
  6471. {
  6472. "name": "Fabien Potencier",
  6473. "email": "[email protected]"
  6474. },
  6475. {
  6476. "name": "Symfony Community",
  6477. "homepage": "https://symfony.com/contributors"
  6478. }
  6479. ],
  6480. "description": "Symfony Process Component",
  6481. "homepage": "https://symfony.com",
  6482. "support": {
  6483. "source": "https://github.com/symfony/process/tree/v5.2.1"
  6484. },
  6485. "funding": [
  6486. {
  6487. "url": "https://symfony.com/sponsor",
  6488. "type": "custom"
  6489. },
  6490. {
  6491. "url": "https://github.com/fabpot",
  6492. "type": "github"
  6493. },
  6494. {
  6495. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6496. "type": "tidelift"
  6497. }
  6498. ],
  6499. "time": "2020-12-08T17:03:37+00:00"
  6500. },
  6501. {
  6502. "name": "symfony/routing",
  6503. "version": "v5.2.1",
  6504. "source": {
  6505. "type": "git",
  6506. "url": "https://github.com/symfony/routing.git",
  6507. "reference": "934ac2720dcc878a47a45c986b483a7ee7193620"
  6508. },
  6509. "dist": {
  6510. "type": "zip",
  6511. "url": "https://api.github.com/repos/symfony/routing/zipball/934ac2720dcc878a47a45c986b483a7ee7193620",
  6512. "reference": "934ac2720dcc878a47a45c986b483a7ee7193620",
  6513. "shasum": ""
  6514. },
  6515. "require": {
  6516. "php": ">=7.2.5",
  6517. "symfony/deprecation-contracts": "^2.1",
  6518. "symfony/polyfill-php80": "^1.15"
  6519. },
  6520. "conflict": {
  6521. "symfony/config": "<5.0",
  6522. "symfony/dependency-injection": "<4.4",
  6523. "symfony/yaml": "<4.4"
  6524. },
  6525. "require-dev": {
  6526. "doctrine/annotations": "^1.7",
  6527. "psr/log": "~1.0",
  6528. "symfony/config": "^5.0",
  6529. "symfony/dependency-injection": "^4.4|^5.0",
  6530. "symfony/expression-language": "^4.4|^5.0",
  6531. "symfony/http-foundation": "^4.4|^5.0",
  6532. "symfony/yaml": "^4.4|^5.0"
  6533. },
  6534. "suggest": {
  6535. "doctrine/annotations": "For using the annotation loader",
  6536. "symfony/config": "For using the all-in-one router or any loader",
  6537. "symfony/expression-language": "For using expression matching",
  6538. "symfony/http-foundation": "For using a Symfony Request object",
  6539. "symfony/yaml": "For using the YAML loader"
  6540. },
  6541. "type": "library",
  6542. "autoload": {
  6543. "psr-4": {
  6544. "Symfony\\Component\\Routing\\": ""
  6545. },
  6546. "exclude-from-classmap": [
  6547. "/Tests/"
  6548. ]
  6549. },
  6550. "notification-url": "https://packagist.org/downloads/",
  6551. "license": [
  6552. "MIT"
  6553. ],
  6554. "authors": [
  6555. {
  6556. "name": "Fabien Potencier",
  6557. "email": "[email protected]"
  6558. },
  6559. {
  6560. "name": "Symfony Community",
  6561. "homepage": "https://symfony.com/contributors"
  6562. }
  6563. ],
  6564. "description": "Symfony Routing Component",
  6565. "homepage": "https://symfony.com",
  6566. "keywords": [
  6567. "router",
  6568. "routing",
  6569. "uri",
  6570. "url"
  6571. ],
  6572. "support": {
  6573. "source": "https://github.com/symfony/routing/tree/v5.2.1"
  6574. },
  6575. "funding": [
  6576. {
  6577. "url": "https://symfony.com/sponsor",
  6578. "type": "custom"
  6579. },
  6580. {
  6581. "url": "https://github.com/fabpot",
  6582. "type": "github"
  6583. },
  6584. {
  6585. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6586. "type": "tidelift"
  6587. }
  6588. ],
  6589. "time": "2020-12-08T17:03:37+00:00"
  6590. },
  6591. {
  6592. "name": "symfony/service-contracts",
  6593. "version": "v2.2.0",
  6594. "source": {
  6595. "type": "git",
  6596. "url": "https://github.com/symfony/service-contracts.git",
  6597. "reference": "d15da7ba4957ffb8f1747218be9e1a121fd298a1"
  6598. },
  6599. "dist": {
  6600. "type": "zip",
  6601. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/d15da7ba4957ffb8f1747218be9e1a121fd298a1",
  6602. "reference": "d15da7ba4957ffb8f1747218be9e1a121fd298a1",
  6603. "shasum": ""
  6604. },
  6605. "require": {
  6606. "php": ">=7.2.5",
  6607. "psr/container": "^1.0"
  6608. },
  6609. "suggest": {
  6610. "symfony/service-implementation": ""
  6611. },
  6612. "type": "library",
  6613. "extra": {
  6614. "branch-alias": {
  6615. "dev-master": "2.2-dev"
  6616. },
  6617. "thanks": {
  6618. "name": "symfony/contracts",
  6619. "url": "https://github.com/symfony/contracts"
  6620. }
  6621. },
  6622. "autoload": {
  6623. "psr-4": {
  6624. "Symfony\\Contracts\\Service\\": ""
  6625. }
  6626. },
  6627. "notification-url": "https://packagist.org/downloads/",
  6628. "license": [
  6629. "MIT"
  6630. ],
  6631. "authors": [
  6632. {
  6633. "name": "Nicolas Grekas",
  6634. "email": "[email protected]"
  6635. },
  6636. {
  6637. "name": "Symfony Community",
  6638. "homepage": "https://symfony.com/contributors"
  6639. }
  6640. ],
  6641. "description": "Generic abstractions related to writing services",
  6642. "homepage": "https://symfony.com",
  6643. "keywords": [
  6644. "abstractions",
  6645. "contracts",
  6646. "decoupling",
  6647. "interfaces",
  6648. "interoperability",
  6649. "standards"
  6650. ],
  6651. "support": {
  6652. "source": "https://github.com/symfony/service-contracts/tree/master"
  6653. },
  6654. "funding": [
  6655. {
  6656. "url": "https://symfony.com/sponsor",
  6657. "type": "custom"
  6658. },
  6659. {
  6660. "url": "https://github.com/fabpot",
  6661. "type": "github"
  6662. },
  6663. {
  6664. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6665. "type": "tidelift"
  6666. }
  6667. ],
  6668. "time": "2020-09-07T11:33:47+00:00"
  6669. },
  6670. {
  6671. "name": "symfony/string",
  6672. "version": "v5.2.1",
  6673. "source": {
  6674. "type": "git",
  6675. "url": "https://github.com/symfony/string.git",
  6676. "reference": "5bd67751d2e3f7d6f770c9154b8fbcb2aa05f7ed"
  6677. },
  6678. "dist": {
  6679. "type": "zip",
  6680. "url": "https://api.github.com/repos/symfony/string/zipball/5bd67751d2e3f7d6f770c9154b8fbcb2aa05f7ed",
  6681. "reference": "5bd67751d2e3f7d6f770c9154b8fbcb2aa05f7ed",
  6682. "shasum": ""
  6683. },
  6684. "require": {
  6685. "php": ">=7.2.5",
  6686. "symfony/polyfill-ctype": "~1.8",
  6687. "symfony/polyfill-intl-grapheme": "~1.0",
  6688. "symfony/polyfill-intl-normalizer": "~1.0",
  6689. "symfony/polyfill-mbstring": "~1.0",
  6690. "symfony/polyfill-php80": "~1.15"
  6691. },
  6692. "require-dev": {
  6693. "symfony/error-handler": "^4.4|^5.0",
  6694. "symfony/http-client": "^4.4|^5.0",
  6695. "symfony/translation-contracts": "^1.1|^2",
  6696. "symfony/var-exporter": "^4.4|^5.0"
  6697. },
  6698. "type": "library",
  6699. "autoload": {
  6700. "psr-4": {
  6701. "Symfony\\Component\\String\\": ""
  6702. },
  6703. "files": [
  6704. "Resources/functions.php"
  6705. ],
  6706. "exclude-from-classmap": [
  6707. "/Tests/"
  6708. ]
  6709. },
  6710. "notification-url": "https://packagist.org/downloads/",
  6711. "license": [
  6712. "MIT"
  6713. ],
  6714. "authors": [
  6715. {
  6716. "name": "Nicolas Grekas",
  6717. "email": "[email protected]"
  6718. },
  6719. {
  6720. "name": "Symfony Community",
  6721. "homepage": "https://symfony.com/contributors"
  6722. }
  6723. ],
  6724. "description": "Symfony String component",
  6725. "homepage": "https://symfony.com",
  6726. "keywords": [
  6727. "grapheme",
  6728. "i18n",
  6729. "string",
  6730. "unicode",
  6731. "utf-8",
  6732. "utf8"
  6733. ],
  6734. "support": {
  6735. "source": "https://github.com/symfony/string/tree/v5.2.1"
  6736. },
  6737. "funding": [
  6738. {
  6739. "url": "https://symfony.com/sponsor",
  6740. "type": "custom"
  6741. },
  6742. {
  6743. "url": "https://github.com/fabpot",
  6744. "type": "github"
  6745. },
  6746. {
  6747. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6748. "type": "tidelift"
  6749. }
  6750. ],
  6751. "time": "2020-12-05T07:33:16+00:00"
  6752. },
  6753. {
  6754. "name": "symfony/translation",
  6755. "version": "v5.2.1",
  6756. "source": {
  6757. "type": "git",
  6758. "url": "https://github.com/symfony/translation.git",
  6759. "reference": "a04209ba0d1391c828e5b2373181dac63c52ee70"
  6760. },
  6761. "dist": {
  6762. "type": "zip",
  6763. "url": "https://api.github.com/repos/symfony/translation/zipball/a04209ba0d1391c828e5b2373181dac63c52ee70",
  6764. "reference": "a04209ba0d1391c828e5b2373181dac63c52ee70",
  6765. "shasum": ""
  6766. },
  6767. "require": {
  6768. "php": ">=7.2.5",
  6769. "symfony/polyfill-mbstring": "~1.0",
  6770. "symfony/polyfill-php80": "^1.15",
  6771. "symfony/translation-contracts": "^2.3"
  6772. },
  6773. "conflict": {
  6774. "symfony/config": "<4.4",
  6775. "symfony/dependency-injection": "<5.0",
  6776. "symfony/http-kernel": "<5.0",
  6777. "symfony/twig-bundle": "<5.0",
  6778. "symfony/yaml": "<4.4"
  6779. },
  6780. "provide": {
  6781. "symfony/translation-implementation": "2.0"
  6782. },
  6783. "require-dev": {
  6784. "psr/log": "~1.0",
  6785. "symfony/config": "^4.4|^5.0",
  6786. "symfony/console": "^4.4|^5.0",
  6787. "symfony/dependency-injection": "^5.0",
  6788. "symfony/finder": "^4.4|^5.0",
  6789. "symfony/http-kernel": "^5.0",
  6790. "symfony/intl": "^4.4|^5.0",
  6791. "symfony/service-contracts": "^1.1.2|^2",
  6792. "symfony/yaml": "^4.4|^5.0"
  6793. },
  6794. "suggest": {
  6795. "psr/log-implementation": "To use logging capability in translator",
  6796. "symfony/config": "",
  6797. "symfony/yaml": ""
  6798. },
  6799. "type": "library",
  6800. "autoload": {
  6801. "files": [
  6802. "Resources/functions.php"
  6803. ],
  6804. "psr-4": {
  6805. "Symfony\\Component\\Translation\\": ""
  6806. },
  6807. "exclude-from-classmap": [
  6808. "/Tests/"
  6809. ]
  6810. },
  6811. "notification-url": "https://packagist.org/downloads/",
  6812. "license": [
  6813. "MIT"
  6814. ],
  6815. "authors": [
  6816. {
  6817. "name": "Fabien Potencier",
  6818. "email": "[email protected]"
  6819. },
  6820. {
  6821. "name": "Symfony Community",
  6822. "homepage": "https://symfony.com/contributors"
  6823. }
  6824. ],
  6825. "description": "Symfony Translation Component",
  6826. "homepage": "https://symfony.com",
  6827. "support": {
  6828. "source": "https://github.com/symfony/translation/tree/v5.2.1"
  6829. },
  6830. "funding": [
  6831. {
  6832. "url": "https://symfony.com/sponsor",
  6833. "type": "custom"
  6834. },
  6835. {
  6836. "url": "https://github.com/fabpot",
  6837. "type": "github"
  6838. },
  6839. {
  6840. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6841. "type": "tidelift"
  6842. }
  6843. ],
  6844. "time": "2020-12-08T17:03:37+00:00"
  6845. },
  6846. {
  6847. "name": "symfony/translation-contracts",
  6848. "version": "v2.3.0",
  6849. "source": {
  6850. "type": "git",
  6851. "url": "https://github.com/symfony/translation-contracts.git",
  6852. "reference": "e2eaa60b558f26a4b0354e1bbb25636efaaad105"
  6853. },
  6854. "dist": {
  6855. "type": "zip",
  6856. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/e2eaa60b558f26a4b0354e1bbb25636efaaad105",
  6857. "reference": "e2eaa60b558f26a4b0354e1bbb25636efaaad105",
  6858. "shasum": ""
  6859. },
  6860. "require": {
  6861. "php": ">=7.2.5"
  6862. },
  6863. "suggest": {
  6864. "symfony/translation-implementation": ""
  6865. },
  6866. "type": "library",
  6867. "extra": {
  6868. "branch-alias": {
  6869. "dev-master": "2.3-dev"
  6870. },
  6871. "thanks": {
  6872. "name": "symfony/contracts",
  6873. "url": "https://github.com/symfony/contracts"
  6874. }
  6875. },
  6876. "autoload": {
  6877. "psr-4": {
  6878. "Symfony\\Contracts\\Translation\\": ""
  6879. }
  6880. },
  6881. "notification-url": "https://packagist.org/downloads/",
  6882. "license": [
  6883. "MIT"
  6884. ],
  6885. "authors": [
  6886. {
  6887. "name": "Nicolas Grekas",
  6888. "email": "[email protected]"
  6889. },
  6890. {
  6891. "name": "Symfony Community",
  6892. "homepage": "https://symfony.com/contributors"
  6893. }
  6894. ],
  6895. "description": "Generic abstractions related to translation",
  6896. "homepage": "https://symfony.com",
  6897. "keywords": [
  6898. "abstractions",
  6899. "contracts",
  6900. "decoupling",
  6901. "interfaces",
  6902. "interoperability",
  6903. "standards"
  6904. ],
  6905. "support": {
  6906. "source": "https://github.com/symfony/translation-contracts/tree/v2.3.0"
  6907. },
  6908. "funding": [
  6909. {
  6910. "url": "https://symfony.com/sponsor",
  6911. "type": "custom"
  6912. },
  6913. {
  6914. "url": "https://github.com/fabpot",
  6915. "type": "github"
  6916. },
  6917. {
  6918. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6919. "type": "tidelift"
  6920. }
  6921. ],
  6922. "time": "2020-09-28T13:05:58+00:00"
  6923. },
  6924. {
  6925. "name": "symfony/var-dumper",
  6926. "version": "v5.2.1",
  6927. "source": {
  6928. "type": "git",
  6929. "url": "https://github.com/symfony/var-dumper.git",
  6930. "reference": "13e7e882eaa55863faa7c4ad7c60f12f1a8b5089"
  6931. },
  6932. "dist": {
  6933. "type": "zip",
  6934. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/13e7e882eaa55863faa7c4ad7c60f12f1a8b5089",
  6935. "reference": "13e7e882eaa55863faa7c4ad7c60f12f1a8b5089",
  6936. "shasum": ""
  6937. },
  6938. "require": {
  6939. "php": ">=7.2.5",
  6940. "symfony/polyfill-mbstring": "~1.0",
  6941. "symfony/polyfill-php80": "^1.15"
  6942. },
  6943. "conflict": {
  6944. "phpunit/phpunit": "<5.4.3",
  6945. "symfony/console": "<4.4"
  6946. },
  6947. "require-dev": {
  6948. "ext-iconv": "*",
  6949. "symfony/console": "^4.4|^5.0",
  6950. "symfony/process": "^4.4|^5.0",
  6951. "twig/twig": "^2.4|^3.0"
  6952. },
  6953. "suggest": {
  6954. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  6955. "ext-intl": "To show region name in time zone dump",
  6956. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  6957. },
  6958. "bin": [
  6959. "Resources/bin/var-dump-server"
  6960. ],
  6961. "type": "library",
  6962. "autoload": {
  6963. "files": [
  6964. "Resources/functions/dump.php"
  6965. ],
  6966. "psr-4": {
  6967. "Symfony\\Component\\VarDumper\\": ""
  6968. },
  6969. "exclude-from-classmap": [
  6970. "/Tests/"
  6971. ]
  6972. },
  6973. "notification-url": "https://packagist.org/downloads/",
  6974. "license": [
  6975. "MIT"
  6976. ],
  6977. "authors": [
  6978. {
  6979. "name": "Nicolas Grekas",
  6980. "email": "[email protected]"
  6981. },
  6982. {
  6983. "name": "Symfony Community",
  6984. "homepage": "https://symfony.com/contributors"
  6985. }
  6986. ],
  6987. "description": "Symfony mechanism for exploring and dumping PHP variables",
  6988. "homepage": "https://symfony.com",
  6989. "keywords": [
  6990. "debug",
  6991. "dump"
  6992. ],
  6993. "support": {
  6994. "source": "https://github.com/symfony/var-dumper/tree/v5.2.1"
  6995. },
  6996. "funding": [
  6997. {
  6998. "url": "https://symfony.com/sponsor",
  6999. "type": "custom"
  7000. },
  7001. {
  7002. "url": "https://github.com/fabpot",
  7003. "type": "github"
  7004. },
  7005. {
  7006. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7007. "type": "tidelift"
  7008. }
  7009. ],
  7010. "time": "2020-12-16T17:02:19+00:00"
  7011. },
  7012. {
  7013. "name": "symfony/yaml",
  7014. "version": "v5.2.1",
  7015. "source": {
  7016. "type": "git",
  7017. "url": "https://github.com/symfony/yaml.git",
  7018. "reference": "290ea5e03b8cf9b42c783163123f54441fb06939"
  7019. },
  7020. "dist": {
  7021. "type": "zip",
  7022. "url": "https://api.github.com/repos/symfony/yaml/zipball/290ea5e03b8cf9b42c783163123f54441fb06939",
  7023. "reference": "290ea5e03b8cf9b42c783163123f54441fb06939",
  7024. "shasum": ""
  7025. },
  7026. "require": {
  7027. "php": ">=7.2.5",
  7028. "symfony/deprecation-contracts": "^2.1",
  7029. "symfony/polyfill-ctype": "~1.8"
  7030. },
  7031. "conflict": {
  7032. "symfony/console": "<4.4"
  7033. },
  7034. "require-dev": {
  7035. "symfony/console": "^4.4|^5.0"
  7036. },
  7037. "suggest": {
  7038. "symfony/console": "For validating YAML files using the lint command"
  7039. },
  7040. "bin": [
  7041. "Resources/bin/yaml-lint"
  7042. ],
  7043. "type": "library",
  7044. "autoload": {
  7045. "psr-4": {
  7046. "Symfony\\Component\\Yaml\\": ""
  7047. },
  7048. "exclude-from-classmap": [
  7049. "/Tests/"
  7050. ]
  7051. },
  7052. "notification-url": "https://packagist.org/downloads/",
  7053. "license": [
  7054. "MIT"
  7055. ],
  7056. "authors": [
  7057. {
  7058. "name": "Fabien Potencier",
  7059. "email": "[email protected]"
  7060. },
  7061. {
  7062. "name": "Symfony Community",
  7063. "homepage": "https://symfony.com/contributors"
  7064. }
  7065. ],
  7066. "description": "Symfony Yaml Component",
  7067. "homepage": "https://symfony.com",
  7068. "support": {
  7069. "source": "https://github.com/symfony/yaml/tree/v5.2.1"
  7070. },
  7071. "funding": [
  7072. {
  7073. "url": "https://symfony.com/sponsor",
  7074. "type": "custom"
  7075. },
  7076. {
  7077. "url": "https://github.com/fabpot",
  7078. "type": "github"
  7079. },
  7080. {
  7081. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7082. "type": "tidelift"
  7083. }
  7084. ],
  7085. "time": "2020-12-08T17:02:38+00:00"
  7086. },
  7087. {
  7088. "name": "tijsverkoyen/css-to-inline-styles",
  7089. "version": "2.2.3",
  7090. "source": {
  7091. "type": "git",
  7092. "url": "https://github.com/tijsverkoyen/CssToInlineStyles.git",
  7093. "reference": "b43b05cf43c1b6d849478965062b6ef73e223bb5"
  7094. },
  7095. "dist": {
  7096. "type": "zip",
  7097. "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/b43b05cf43c1b6d849478965062b6ef73e223bb5",
  7098. "reference": "b43b05cf43c1b6d849478965062b6ef73e223bb5",
  7099. "shasum": ""
  7100. },
  7101. "require": {
  7102. "ext-dom": "*",
  7103. "ext-libxml": "*",
  7104. "php": "^5.5 || ^7.0 || ^8.0",
  7105. "symfony/css-selector": "^2.7 || ^3.0 || ^4.0 || ^5.0"
  7106. },
  7107. "require-dev": {
  7108. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0 || ^7.5"
  7109. },
  7110. "type": "library",
  7111. "extra": {
  7112. "branch-alias": {
  7113. "dev-master": "2.2.x-dev"
  7114. }
  7115. },
  7116. "autoload": {
  7117. "psr-4": {
  7118. "TijsVerkoyen\\CssToInlineStyles\\": "src"
  7119. }
  7120. },
  7121. "notification-url": "https://packagist.org/downloads/",
  7122. "license": [
  7123. "BSD-3-Clause"
  7124. ],
  7125. "authors": [
  7126. {
  7127. "name": "Tijs Verkoyen",
  7128. "email": "[email protected]",
  7129. "role": "Developer"
  7130. }
  7131. ],
  7132. "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.",
  7133. "homepage": "https://github.com/tijsverkoyen/CssToInlineStyles",
  7134. "support": {
  7135. "issues": "https://github.com/tijsverkoyen/CssToInlineStyles/issues",
  7136. "source": "https://github.com/tijsverkoyen/CssToInlineStyles/tree/2.2.3"
  7137. },
  7138. "time": "2020-07-13T06:12:54+00:00"
  7139. },
  7140. {
  7141. "name": "tymon/jwt-auth",
  7142. "version": "1.0.2",
  7143. "source": {
  7144. "type": "git",
  7145. "url": "https://github.com/tymondesigns/jwt-auth.git",
  7146. "reference": "e588cb719539366c0e2f6017f975379cb73e9680"
  7147. },
  7148. "dist": {
  7149. "type": "zip",
  7150. "url": "https://api.github.com/repos/tymondesigns/jwt-auth/zipball/e588cb719539366c0e2f6017f975379cb73e9680",
  7151. "reference": "e588cb719539366c0e2f6017f975379cb73e9680",
  7152. "shasum": ""
  7153. },
  7154. "require": {
  7155. "illuminate/auth": "^5.2|^6|^7|^8",
  7156. "illuminate/contracts": "^5.2|^6|^7|^8",
  7157. "illuminate/http": "^5.2|^6|^7|^8",
  7158. "illuminate/support": "^5.2|^6|^7|^8",
  7159. "lcobucci/jwt": "<3.4",
  7160. "namshi/jose": "^7.0",
  7161. "nesbot/carbon": "^1.0|^2.0",
  7162. "php": "^5.5.9|^7.0"
  7163. },
  7164. "require-dev": {
  7165. "illuminate/console": "^5.2|^6|^7|^8",
  7166. "illuminate/database": "^5.2|^6|^7|^8",
  7167. "illuminate/routing": "^5.2|^6|^7|^8",
  7168. "mockery/mockery": ">=0.9.9",
  7169. "phpunit/phpunit": "~4.8|~6.0"
  7170. },
  7171. "type": "library",
  7172. "extra": {
  7173. "branch-alias": {
  7174. "dev-develop": "1.0-dev"
  7175. },
  7176. "laravel": {
  7177. "aliases": {
  7178. "JWTAuth": "Tymon\\JWTAuth\\Facades\\JWTAuth",
  7179. "JWTFactory": "Tymon\\JWTAuth\\Facades\\JWTFactory"
  7180. },
  7181. "providers": [
  7182. "Tymon\\JWTAuth\\Providers\\LaravelServiceProvider"
  7183. ]
  7184. }
  7185. },
  7186. "autoload": {
  7187. "psr-4": {
  7188. "Tymon\\JWTAuth\\": "src/"
  7189. }
  7190. },
  7191. "notification-url": "https://packagist.org/downloads/",
  7192. "license": [
  7193. "MIT"
  7194. ],
  7195. "authors": [
  7196. {
  7197. "name": "Sean Tymon",
  7198. "email": "[email protected]",
  7199. "homepage": "https://tymon.xyz",
  7200. "role": "Developer"
  7201. }
  7202. ],
  7203. "description": "JSON Web Token Authentication for Laravel and Lumen",
  7204. "homepage": "https://github.com/tymondesigns/jwt-auth",
  7205. "keywords": [
  7206. "Authentication",
  7207. "JSON Web Token",
  7208. "auth",
  7209. "jwt",
  7210. "laravel"
  7211. ],
  7212. "support": {
  7213. "issues": "https://github.com/tymondesigns/jwt-auth/issues",
  7214. "source": "https://github.com/tymondesigns/jwt-auth"
  7215. },
  7216. "funding": [
  7217. {
  7218. "url": "https://www.patreon.com/seantymon",
  7219. "type": "patreon"
  7220. }
  7221. ],
  7222. "time": "2020-11-27T12:32:42+00:00"
  7223. },
  7224. {
  7225. "name": "vlucas/phpdotenv",
  7226. "version": "v4.2.0",
  7227. "source": {
  7228. "type": "git",
  7229. "url": "https://github.com/vlucas/phpdotenv.git",
  7230. "reference": "da64796370fc4eb03cc277088f6fede9fde88482"
  7231. },
  7232. "dist": {
  7233. "type": "zip",
  7234. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/da64796370fc4eb03cc277088f6fede9fde88482",
  7235. "reference": "da64796370fc4eb03cc277088f6fede9fde88482",
  7236. "shasum": ""
  7237. },
  7238. "require": {
  7239. "php": "^5.5.9 || ^7.0 || ^8.0",
  7240. "phpoption/phpoption": "^1.7.3",
  7241. "symfony/polyfill-ctype": "^1.17"
  7242. },
  7243. "require-dev": {
  7244. "bamarni/composer-bin-plugin": "^1.4.1",
  7245. "ext-filter": "*",
  7246. "ext-pcre": "*",
  7247. "phpunit/phpunit": "^4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20"
  7248. },
  7249. "suggest": {
  7250. "ext-filter": "Required to use the boolean validator.",
  7251. "ext-pcre": "Required to use most of the library."
  7252. },
  7253. "type": "library",
  7254. "extra": {
  7255. "branch-alias": {
  7256. "dev-master": "4.1-dev"
  7257. }
  7258. },
  7259. "autoload": {
  7260. "psr-4": {
  7261. "Dotenv\\": "src/"
  7262. }
  7263. },
  7264. "notification-url": "https://packagist.org/downloads/",
  7265. "license": [
  7266. "BSD-3-Clause"
  7267. ],
  7268. "authors": [
  7269. {
  7270. "name": "Graham Campbell",
  7271. "email": "[email protected]",
  7272. "homepage": "https://gjcampbell.co.uk/"
  7273. },
  7274. {
  7275. "name": "Vance Lucas",
  7276. "email": "[email protected]",
  7277. "homepage": "https://vancelucas.com/"
  7278. }
  7279. ],
  7280. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  7281. "keywords": [
  7282. "dotenv",
  7283. "env",
  7284. "environment"
  7285. ],
  7286. "support": {
  7287. "issues": "https://github.com/vlucas/phpdotenv/issues",
  7288. "source": "https://github.com/vlucas/phpdotenv/tree/v4.2.0"
  7289. },
  7290. "funding": [
  7291. {
  7292. "url": "https://github.com/GrahamCampbell",
  7293. "type": "github"
  7294. },
  7295. {
  7296. "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
  7297. "type": "tidelift"
  7298. }
  7299. ],
  7300. "time": "2021-01-20T15:11:48+00:00"
  7301. },
  7302. {
  7303. "name": "voku/portable-ascii",
  7304. "version": "1.5.6",
  7305. "source": {
  7306. "type": "git",
  7307. "url": "https://github.com/voku/portable-ascii.git",
  7308. "reference": "80953678b19901e5165c56752d087fc11526017c"
  7309. },
  7310. "dist": {
  7311. "type": "zip",
  7312. "url": "https://api.github.com/repos/voku/portable-ascii/zipball/80953678b19901e5165c56752d087fc11526017c",
  7313. "reference": "80953678b19901e5165c56752d087fc11526017c",
  7314. "shasum": ""
  7315. },
  7316. "require": {
  7317. "php": ">=7.0.0"
  7318. },
  7319. "require-dev": {
  7320. "phpunit/phpunit": "~6.0 || ~7.0 || ~9.0"
  7321. },
  7322. "suggest": {
  7323. "ext-intl": "Use Intl for transliterator_transliterate() support"
  7324. },
  7325. "type": "library",
  7326. "autoload": {
  7327. "psr-4": {
  7328. "voku\\": "src/voku/"
  7329. }
  7330. },
  7331. "notification-url": "https://packagist.org/downloads/",
  7332. "license": [
  7333. "MIT"
  7334. ],
  7335. "authors": [
  7336. {
  7337. "name": "Lars Moelleken",
  7338. "homepage": "http://www.moelleken.org/"
  7339. }
  7340. ],
  7341. "description": "Portable ASCII library - performance optimized (ascii) string functions for php.",
  7342. "homepage": "https://github.com/voku/portable-ascii",
  7343. "keywords": [
  7344. "ascii",
  7345. "clean",
  7346. "php"
  7347. ],
  7348. "support": {
  7349. "issues": "https://github.com/voku/portable-ascii/issues",
  7350. "source": "https://github.com/voku/portable-ascii/tree/1.5.6"
  7351. },
  7352. "funding": [
  7353. {
  7354. "url": "https://www.paypal.me/moelleken",
  7355. "type": "custom"
  7356. },
  7357. {
  7358. "url": "https://github.com/voku",
  7359. "type": "github"
  7360. },
  7361. {
  7362. "url": "https://opencollective.com/portable-ascii",
  7363. "type": "open_collective"
  7364. },
  7365. {
  7366. "url": "https://www.patreon.com/voku",
  7367. "type": "patreon"
  7368. },
  7369. {
  7370. "url": "https://tidelift.com/funding/github/packagist/voku/portable-ascii",
  7371. "type": "tidelift"
  7372. }
  7373. ],
  7374. "time": "2020-11-12T00:07:28+00:00"
  7375. },
  7376. {
  7377. "name": "xhat/payjs",
  7378. "version": "1.5.0",
  7379. "source": {
  7380. "type": "git",
  7381. "url": "https://github.com/xhat/payjs.git",
  7382. "reference": "d15b678f7fb70fc70bafa82c5a7896fceebad364"
  7383. },
  7384. "dist": {
  7385. "type": "zip",
  7386. "url": "https://api.github.com/repos/xhat/payjs/zipball/d15b678f7fb70fc70bafa82c5a7896fceebad364",
  7387. "reference": "d15b678f7fb70fc70bafa82c5a7896fceebad364",
  7388. "shasum": ""
  7389. },
  7390. "type": "library",
  7391. "autoload": {
  7392. "psr-4": {
  7393. "Xhat\\Payjs\\": "src/"
  7394. }
  7395. },
  7396. "notification-url": "https://packagist.org/downloads/",
  7397. "license": [
  7398. "MIT"
  7399. ],
  7400. "authors": [
  7401. {
  7402. "name": "andy",
  7403. "email": "[email protected]"
  7404. }
  7405. ],
  7406. "description": "本项目是基于 PAYJS 的 API 开发的 Composer Package,可直接用于生产环境 https://payjs.cn",
  7407. "support": {
  7408. "issues": "https://github.com/xhat/payjs/issues",
  7409. "source": "https://github.com/xhat/payjs/tree/1.5.0"
  7410. },
  7411. "funding": [
  7412. {
  7413. "url": "https://payjs.cn/sponsor/dajjxz",
  7414. "type": "custom"
  7415. }
  7416. ],
  7417. "time": "2020-09-11T06:02:42+00:00"
  7418. },
  7419. {
  7420. "name": "zbrettonye/geetest",
  7421. "version": "v1.2.0",
  7422. "source": {
  7423. "type": "git",
  7424. "url": "https://github.com/ZBrettonYe/geetest.git",
  7425. "reference": "ee08e5bee9be831c23df241d3ab75678a8ce5fed"
  7426. },
  7427. "dist": {
  7428. "type": "zip",
  7429. "url": "https://api.github.com/repos/ZBrettonYe/geetest/zipball/ee08e5bee9be831c23df241d3ab75678a8ce5fed",
  7430. "reference": "ee08e5bee9be831c23df241d3ab75678a8ce5fed",
  7431. "shasum": ""
  7432. },
  7433. "require": {
  7434. "ext-json": "*",
  7435. "guzzlehttp/guzzle": "^6.3|^7.0",
  7436. "illuminate/routing": "^6|^7|^8",
  7437. "illuminate/support": "^6|^7|^8",
  7438. "php": "^7.2"
  7439. },
  7440. "require-dev": {
  7441. "mockery/mockery": "^1.3.1",
  7442. "phpunit/phpunit": "^7.5.15|^8.4|^9.0"
  7443. },
  7444. "type": "library",
  7445. "extra": {
  7446. "laravel": {
  7447. "providers": [
  7448. "ZBrettonYe\\Geetest\\GeetestServiceProvider"
  7449. ],
  7450. "aliases": {
  7451. "Geetest": "ZBrettonYe\\Geetest\\Geetest"
  7452. }
  7453. }
  7454. },
  7455. "autoload": {
  7456. "psr-4": {
  7457. "ZBrettonYe\\Geetest\\": "src/"
  7458. }
  7459. },
  7460. "notification-url": "https://packagist.org/downloads/",
  7461. "license": [
  7462. "MIT"
  7463. ],
  7464. "authors": [
  7465. {
  7466. "name": "zbrettonye",
  7467. "email": "[email protected]"
  7468. }
  7469. ],
  7470. "description": "Geetest Package for Laravel6-8",
  7471. "keywords": [
  7472. "geetest",
  7473. "laravel"
  7474. ],
  7475. "support": {
  7476. "source": "https://github.com/ZBrettonYe/geetest/tree/v1.2.0"
  7477. },
  7478. "time": "2020-10-13T20:15:36+00:00"
  7479. },
  7480. {
  7481. "name": "zbrettonye/hcaptcha",
  7482. "version": "V1.1.0",
  7483. "source": {
  7484. "type": "git",
  7485. "url": "https://github.com/ZBrettonYe/hcaptcha.git",
  7486. "reference": "d84cb1bcf754ada345da8baadf7129dbca67d1ee"
  7487. },
  7488. "dist": {
  7489. "type": "zip",
  7490. "url": "https://api.github.com/repos/ZBrettonYe/hcaptcha/zipball/d84cb1bcf754ada345da8baadf7129dbca67d1ee",
  7491. "reference": "d84cb1bcf754ada345da8baadf7129dbca67d1ee",
  7492. "shasum": ""
  7493. },
  7494. "require": {
  7495. "guzzlehttp/guzzle": "^6.2|^7.0",
  7496. "illuminate/support": "^6|^7|^8",
  7497. "php": "^7.2"
  7498. },
  7499. "require-dev": {
  7500. "phpunit/phpunit": "~4.8"
  7501. },
  7502. "type": "library",
  7503. "extra": {
  7504. "laravel": {
  7505. "providers": [
  7506. "ZBrettonYe\\HCaptcha\\HCaptchaServiceProvider"
  7507. ],
  7508. "aliases": {
  7509. "HCaptcha": "ZBrettonYe\\HCaptcha\\Facades\\HCaptcha"
  7510. }
  7511. }
  7512. },
  7513. "autoload": {
  7514. "psr-4": {
  7515. "ZBrettonYe\\HCaptcha\\": "src/"
  7516. }
  7517. },
  7518. "notification-url": "https://packagist.org/downloads/",
  7519. "license": [
  7520. "MIT"
  7521. ],
  7522. "authors": [
  7523. {
  7524. "name": "zbrettonye",
  7525. "email": "[email protected]"
  7526. }
  7527. ],
  7528. "description": "hCaptcha For Laravel6~8",
  7529. "keywords": [
  7530. "captcha",
  7531. "hcaptcha",
  7532. "laravel"
  7533. ],
  7534. "support": {
  7535. "source": "https://github.com/ZBrettonYe/hcaptcha/tree/V1.1.0"
  7536. },
  7537. "time": "2020-10-13T21:22:51+00:00"
  7538. },
  7539. {
  7540. "name": "zbrettonye/no-captcha",
  7541. "version": "v1.1.0",
  7542. "source": {
  7543. "type": "git",
  7544. "url": "https://github.com/ZBrettonYe/no-captcha.git",
  7545. "reference": "4cb229bf5fa9f5726eb5a821e9710c5fc8edad28"
  7546. },
  7547. "dist": {
  7548. "type": "zip",
  7549. "url": "https://api.github.com/repos/ZBrettonYe/no-captcha/zipball/4cb229bf5fa9f5726eb5a821e9710c5fc8edad28",
  7550. "reference": "4cb229bf5fa9f5726eb5a821e9710c5fc8edad28",
  7551. "shasum": ""
  7552. },
  7553. "require": {
  7554. "ext-json": "*",
  7555. "guzzlehttp/guzzle": "^6.2|^7.0",
  7556. "illuminate/support": "^6|^7|^8",
  7557. "php": "^7.2"
  7558. },
  7559. "require-dev": {
  7560. "phpunit/phpunit": "~4.8"
  7561. },
  7562. "type": "library",
  7563. "extra": {
  7564. "laravel": {
  7565. "providers": [
  7566. "ZBrettonYe\\NoCaptcha\\NoCaptchaServiceProvider"
  7567. ],
  7568. "aliases": {
  7569. "NoCaptcha": "ZBrettonYe\\NoCaptcha\\Facades\\NoCaptcha"
  7570. }
  7571. }
  7572. },
  7573. "autoload": {
  7574. "psr-4": {
  7575. "ZBrettonYe\\NoCaptcha\\": "src/"
  7576. }
  7577. },
  7578. "notification-url": "https://packagist.org/downloads/",
  7579. "license": [
  7580. "MIT"
  7581. ],
  7582. "authors": [
  7583. {
  7584. "name": "zbrettonye",
  7585. "email": "[email protected]"
  7586. }
  7587. ],
  7588. "description": "No CAPTCHA reCAPTCHA For Laravel6~8",
  7589. "keywords": [
  7590. "captcha",
  7591. "laravel",
  7592. "no-captcha",
  7593. "recaptcha"
  7594. ],
  7595. "support": {
  7596. "source": "https://github.com/ZBrettonYe/no-captcha/tree/v1.1.0"
  7597. },
  7598. "time": "2020-10-13T21:35:30+00:00"
  7599. },
  7600. {
  7601. "name": "zoujingli/ip2region",
  7602. "version": "v1.0.9",
  7603. "source": {
  7604. "type": "git",
  7605. "url": "https://github.com/zoujingli/ip2region.git",
  7606. "reference": "e48f9122f50dd3b79295e35b4acdd0dcd2608ca8"
  7607. },
  7608. "dist": {
  7609. "type": "zip",
  7610. "url": "https://api.github.com/repos/zoujingli/ip2region/zipball/e48f9122f50dd3b79295e35b4acdd0dcd2608ca8",
  7611. "reference": "e48f9122f50dd3b79295e35b4acdd0dcd2608ca8",
  7612. "shasum": ""
  7613. },
  7614. "require": {
  7615. "php": ">=5.3"
  7616. },
  7617. "type": "library",
  7618. "autoload": {
  7619. "classmap": [
  7620. "Ip2Region.php"
  7621. ]
  7622. },
  7623. "notification-url": "https://packagist.org/downloads/",
  7624. "license": [
  7625. "Apache-2.0"
  7626. ],
  7627. "authors": [
  7628. {
  7629. "name": "Anyon",
  7630. "email": "[email protected]",
  7631. "homepage": "http://ctolog.com"
  7632. }
  7633. ],
  7634. "description": "Ip2Region for PHP",
  7635. "homepage": "https://github.com/zoujingli/Ip2Region",
  7636. "keywords": [
  7637. "Ip2Region"
  7638. ],
  7639. "support": {
  7640. "issues": "https://github.com/zoujingli/ip2region/issues",
  7641. "source": "https://github.com/zoujingli/ip2region/tree/v1.0.9"
  7642. },
  7643. "time": "2020-11-06T07:21:55+00:00"
  7644. }
  7645. ],
  7646. "packages-dev": [
  7647. {
  7648. "name": "andrey-helldar/laravel-lang-publisher",
  7649. "version": "v6.2.0",
  7650. "source": {
  7651. "type": "git",
  7652. "url": "https://github.com/andrey-helldar/laravel-lang-publisher.git",
  7653. "reference": "950458ca9d43dbbd0a8ec228a26b670c8f93cf94"
  7654. },
  7655. "dist": {
  7656. "type": "zip",
  7657. "url": "https://api.github.com/repos/andrey-helldar/laravel-lang-publisher/zipball/950458ca9d43dbbd0a8ec228a26b670c8f93cf94",
  7658. "reference": "950458ca9d43dbbd0a8ec228a26b670c8f93cf94",
  7659. "shasum": ""
  7660. },
  7661. "require": {
  7662. "andrey-helldar/pretty-array": "^1.4.2",
  7663. "andrey-helldar/support": "^1.4.1",
  7664. "ext-json": "*",
  7665. "illuminate/console": "^7.0|^8.0",
  7666. "illuminate/support": "^7.0|^8.0",
  7667. "laravel-lang/lang": "^7.0",
  7668. "php": "^7.2.5|^8.0"
  7669. },
  7670. "require-dev": {
  7671. "mockery/mockery": "^1.3.1",
  7672. "orchestra/testbench": "^5.0|^6.0",
  7673. "phpunit/phpunit": "^8.4|^9.0"
  7674. },
  7675. "suggest": {
  7676. "andrey-helldar/lang-translations": "Translation of main messages",
  7677. "laravel/jetstream": "Tailwind scaffolding for the Laravel framework.",
  7678. "symfony/thanks": "Give thanks (in the form of a GitHub) to your fellow PHP package maintainers"
  7679. },
  7680. "type": "library",
  7681. "extra": {
  7682. "laravel": {
  7683. "providers": [
  7684. "Helldar\\LaravelLangPublisher\\ServiceProvider"
  7685. ]
  7686. }
  7687. },
  7688. "autoload": {
  7689. "psr-4": {
  7690. "Helldar\\LaravelLangPublisher\\": "src"
  7691. }
  7692. },
  7693. "notification-url": "https://packagist.org/downloads/",
  7694. "license": [
  7695. "MIT"
  7696. ],
  7697. "authors": [
  7698. {
  7699. "name": "Andrey Helldar",
  7700. "email": "[email protected]"
  7701. }
  7702. ],
  7703. "description": "Publisher lang files for the Laravel Framework + Laravel Jetstream from Laravel-Lang/lang",
  7704. "keywords": [
  7705. "fortify",
  7706. "i18n",
  7707. "jetstream",
  7708. "lang",
  7709. "languages",
  7710. "laravel",
  7711. "locale",
  7712. "localization",
  7713. "lpm",
  7714. "lumen",
  7715. "publisher",
  7716. "trans",
  7717. "translations",
  7718. "validations"
  7719. ],
  7720. "support": {
  7721. "issues": "https://github.com/andrey-helldar/laravel-lang-publisher/issues",
  7722. "source": "https://github.com/andrey-helldar/laravel-lang-publisher"
  7723. },
  7724. "funding": [
  7725. {
  7726. "url": "https://money.yandex.ru/to/410012115955701",
  7727. "type": "custom"
  7728. },
  7729. {
  7730. "url": "https://paypal.me/helldar",
  7731. "type": "custom"
  7732. }
  7733. ],
  7734. "time": "2020-11-30T10:15:29+00:00"
  7735. },
  7736. {
  7737. "name": "andrey-helldar/pretty-array",
  7738. "version": "v1.5.0",
  7739. "source": {
  7740. "type": "git",
  7741. "url": "https://github.com/andrey-helldar/pretty-array.git",
  7742. "reference": "925db552d4f7f9c0a31cbce0f58518260d80e543"
  7743. },
  7744. "dist": {
  7745. "type": "zip",
  7746. "url": "https://api.github.com/repos/andrey-helldar/pretty-array/zipball/925db552d4f7f9c0a31cbce0f58518260d80e543",
  7747. "reference": "925db552d4f7f9c0a31cbce0f58518260d80e543",
  7748. "shasum": ""
  7749. },
  7750. "require": {
  7751. "andrey-helldar/support": "^1.16.0",
  7752. "ext-dom": "*",
  7753. "ext-mbstring": "*",
  7754. "php": "^7.1.3|^8.0"
  7755. },
  7756. "require-dev": {
  7757. "phpstan/phpstan": "^0.12.7",
  7758. "phpunit/phpunit": "^7.0|^8.0"
  7759. },
  7760. "suggest": {
  7761. "symfony/thanks": "Give thanks (in the form of a GitHub) to your fellow PHP package maintainers"
  7762. },
  7763. "type": "library",
  7764. "autoload": {
  7765. "psr-4": {
  7766. "Helldar\\PrettyArray\\": "src/"
  7767. }
  7768. },
  7769. "notification-url": "https://packagist.org/downloads/",
  7770. "license": [
  7771. "MIT"
  7772. ],
  7773. "authors": [
  7774. {
  7775. "name": "Andrey Helldar",
  7776. "email": "[email protected]"
  7777. }
  7778. ],
  7779. "description": "Simple conversion of an array to a pretty view.",
  7780. "keywords": [
  7781. "array",
  7782. "pretty",
  7783. "pretty array"
  7784. ],
  7785. "support": {
  7786. "issues": "https://github.com/andrey-helldar/pretty-array/issues",
  7787. "source": "https://github.com/andrey-helldar/pretty-array"
  7788. },
  7789. "funding": [
  7790. {
  7791. "url": "https://money.yandex.ru/to/410012115955701",
  7792. "type": "custom"
  7793. },
  7794. {
  7795. "url": "https://paypal.me/helldar",
  7796. "type": "custom"
  7797. }
  7798. ],
  7799. "time": "2020-11-30T10:28:20+00:00"
  7800. },
  7801. {
  7802. "name": "andrey-helldar/support",
  7803. "version": "v1.30.3",
  7804. "source": {
  7805. "type": "git",
  7806. "url": "https://github.com/andrey-helldar/support.git",
  7807. "reference": "6278f7ba38fdbfb3a22b602a67620e1133703464"
  7808. },
  7809. "dist": {
  7810. "type": "zip",
  7811. "url": "https://api.github.com/repos/andrey-helldar/support/zipball/6278f7ba38fdbfb3a22b602a67620e1133703464",
  7812. "reference": "6278f7ba38fdbfb3a22b602a67620e1133703464",
  7813. "shasum": ""
  7814. },
  7815. "require": {
  7816. "ext-ctype": "*",
  7817. "ext-dom": "*",
  7818. "ext-json": "*",
  7819. "ext-mbstring": "*",
  7820. "php": "^7.1.3|^8.0",
  7821. "symfony/deprecation-contracts": "^2.0"
  7822. },
  7823. "require-dev": {
  7824. "ext-bcmath": "*",
  7825. "phpunit/phpunit": "^9.0"
  7826. },
  7827. "suggest": {
  7828. "andrey-helldar/laravel-support": "Various helper files for the Laravel and Lumen frameworks",
  7829. "ext-bcmath": "Require the extension if you will be using Helldar\\Support\\Facades\\Digit.",
  7830. "symfony/thanks": "Give thanks (in the form of a GitHub) to your fellow PHP package maintainers"
  7831. },
  7832. "type": "library",
  7833. "extra": {
  7834. "laravel": {
  7835. "providers": [
  7836. "Helldar\\Support\\ServiceProvider"
  7837. ]
  7838. }
  7839. },
  7840. "autoload": {
  7841. "psr-4": {
  7842. "Helldar\\Support\\": "src"
  7843. },
  7844. "files": [
  7845. "src/helpers/digit.php",
  7846. "src/helpers/dumper.php",
  7847. "src/helpers/http.php",
  7848. "src/helpers/strings.php"
  7849. ]
  7850. },
  7851. "notification-url": "https://packagist.org/downloads/",
  7852. "license": [
  7853. "MIT"
  7854. ],
  7855. "authors": [
  7856. {
  7857. "name": "Andrey Helldar",
  7858. "email": "[email protected]"
  7859. }
  7860. ],
  7861. "description": "Support package is a collection of helpers and tools for projects.",
  7862. "keywords": [
  7863. "framework",
  7864. "laravel",
  7865. "support",
  7866. "symfony",
  7867. "yii",
  7868. "yii2"
  7869. ],
  7870. "support": {
  7871. "issues": "https://github.com/andrey-helldar/support/issues",
  7872. "source": "https://github.com/andrey-helldar/support"
  7873. },
  7874. "funding": [
  7875. {
  7876. "url": "https://money.yandex.ru/to/410012115955701",
  7877. "type": "custom"
  7878. },
  7879. {
  7880. "url": "https://paypal.me/helldar",
  7881. "type": "custom"
  7882. }
  7883. ],
  7884. "time": "2020-12-29T18:59:09+00:00"
  7885. },
  7886. {
  7887. "name": "arcanedev/laravel-lang",
  7888. "version": "8.0.0",
  7889. "source": {
  7890. "type": "git",
  7891. "url": "https://github.com/ARCANEDEV/LaravelLang.git",
  7892. "reference": "8b1711a37bbab081973920ad19a729dc0df2ca4b"
  7893. },
  7894. "dist": {
  7895. "type": "zip",
  7896. "url": "https://api.github.com/repos/ARCANEDEV/LaravelLang/zipball/8b1711a37bbab081973920ad19a729dc0df2ca4b",
  7897. "reference": "8b1711a37bbab081973920ad19a729dc0df2ca4b",
  7898. "shasum": ""
  7899. },
  7900. "require": {
  7901. "arcanedev/support": "^7.1.2",
  7902. "caouecs/laravel-lang": "^6.0",
  7903. "php": "^7.2.5"
  7904. },
  7905. "require-dev": {
  7906. "mockery/mockery": "^1.3.1",
  7907. "orchestra/testbench": "^5.0",
  7908. "phpunit/phpunit": "^8.5|^9.0"
  7909. },
  7910. "type": "library",
  7911. "extra": {
  7912. "laravel": {
  7913. "providers": [
  7914. "Arcanedev\\LaravelLang\\LaravelLangServiceProvider",
  7915. "Arcanedev\\LaravelLang\\Providers\\DeferredServicesProvider",
  7916. "Arcanedev\\LaravelLang\\Providers\\TranslationServiceProvider"
  7917. ]
  7918. }
  7919. },
  7920. "autoload": {
  7921. "psr-4": {
  7922. "Arcanedev\\LaravelLang\\": "src/"
  7923. }
  7924. },
  7925. "notification-url": "https://packagist.org/downloads/",
  7926. "license": [
  7927. "MIT"
  7928. ],
  7929. "authors": [
  7930. {
  7931. "name": "ARCANEDEV",
  7932. "email": "[email protected]",
  7933. "homepage": "https://github.com/arcanedev-maroc",
  7934. "role": "Developer"
  7935. }
  7936. ],
  7937. "description": "Translations manager and checker for Laravel 5 based on 'caouecs/laravel4-lang' package.",
  7938. "homepage": "https://github.com/ARCANEDEV/LaravelLang",
  7939. "keywords": [
  7940. "arcanedev",
  7941. "lang",
  7942. "languages",
  7943. "laravel",
  7944. "localisation",
  7945. "localization",
  7946. "trans",
  7947. "translations",
  7948. "validations"
  7949. ],
  7950. "support": {
  7951. "issues": "https://github.com/ARCANEDEV/LaravelLang/issues",
  7952. "source": "https://github.com/ARCANEDEV/LaravelLang/tree/master"
  7953. },
  7954. "time": "2020-03-21T21:29:29+00:00"
  7955. },
  7956. {
  7957. "name": "arcanedev/support",
  7958. "version": "7.1.2",
  7959. "source": {
  7960. "type": "git",
  7961. "url": "https://github.com/ARCANEDEV/Support.git",
  7962. "reference": "7e4199d30f04c611ba5d895e663f111c217ff5a3"
  7963. },
  7964. "dist": {
  7965. "type": "zip",
  7966. "url": "https://api.github.com/repos/ARCANEDEV/Support/zipball/7e4199d30f04c611ba5d895e663f111c217ff5a3",
  7967. "reference": "7e4199d30f04c611ba5d895e663f111c217ff5a3",
  7968. "shasum": ""
  7969. },
  7970. "require": {
  7971. "illuminate/filesystem": "^7.0",
  7972. "illuminate/support": "^7.0",
  7973. "php": "^7.2.5"
  7974. },
  7975. "require-dev": {
  7976. "orchestra/testbench": "^5.0",
  7977. "phpunit/phpunit": "^8.0|^9.0"
  7978. },
  7979. "type": "library",
  7980. "extra": {
  7981. "branch-alias": {
  7982. "dev-master": "7.x-dev"
  7983. }
  7984. },
  7985. "autoload": {
  7986. "psr-4": {
  7987. "Arcanedev\\Support\\": "src/"
  7988. },
  7989. "files": [
  7990. "helpers.php"
  7991. ]
  7992. },
  7993. "notification-url": "https://packagist.org/downloads/",
  7994. "license": [
  7995. "MIT"
  7996. ],
  7997. "authors": [
  7998. {
  7999. "name": "ARCANEDEV",
  8000. "email": "[email protected]",
  8001. "homepage": "https://github.com/arcanedev-maroc"
  8002. }
  8003. ],
  8004. "description": "ARCANEDEV Support Helpers",
  8005. "homepage": "https://github.com/ARCANEDEV/Support",
  8006. "keywords": [
  8007. "arcanedev",
  8008. "arcanesoft",
  8009. "laravel",
  8010. "support"
  8011. ],
  8012. "support": {
  8013. "issues": "https://github.com/ARCANEDEV/Support/issues",
  8014. "source": "https://github.com/ARCANEDEV/Support/tree/7.1.2"
  8015. },
  8016. "time": "2020-03-12T09:28:19+00:00"
  8017. },
  8018. {
  8019. "name": "barryvdh/laravel-debugbar",
  8020. "version": "v3.5.2",
  8021. "source": {
  8022. "type": "git",
  8023. "url": "https://github.com/barryvdh/laravel-debugbar.git",
  8024. "reference": "cae0a8d1cb89b0f0522f65e60465e16d738e069b"
  8025. },
  8026. "dist": {
  8027. "type": "zip",
  8028. "url": "https://api.github.com/repos/barryvdh/laravel-debugbar/zipball/cae0a8d1cb89b0f0522f65e60465e16d738e069b",
  8029. "reference": "cae0a8d1cb89b0f0522f65e60465e16d738e069b",
  8030. "shasum": ""
  8031. },
  8032. "require": {
  8033. "illuminate/routing": "^6|^7|^8",
  8034. "illuminate/session": "^6|^7|^8",
  8035. "illuminate/support": "^6|^7|^8",
  8036. "maximebf/debugbar": "^1.16.3",
  8037. "php": ">=7.2",
  8038. "symfony/debug": "^4.3|^5",
  8039. "symfony/finder": "^4.3|^5"
  8040. },
  8041. "require-dev": {
  8042. "mockery/mockery": "^1.3.3",
  8043. "orchestra/testbench-dusk": "^4|^5|^6",
  8044. "phpunit/phpunit": "^8.5|^9.0",
  8045. "squizlabs/php_codesniffer": "^3.5"
  8046. },
  8047. "type": "library",
  8048. "extra": {
  8049. "branch-alias": {
  8050. "dev-master": "3.5-dev"
  8051. },
  8052. "laravel": {
  8053. "providers": [
  8054. "Barryvdh\\Debugbar\\ServiceProvider"
  8055. ],
  8056. "aliases": {
  8057. "Debugbar": "Barryvdh\\Debugbar\\Facade"
  8058. }
  8059. }
  8060. },
  8061. "autoload": {
  8062. "psr-4": {
  8063. "Barryvdh\\Debugbar\\": "src/"
  8064. },
  8065. "files": [
  8066. "src/helpers.php"
  8067. ]
  8068. },
  8069. "notification-url": "https://packagist.org/downloads/",
  8070. "license": [
  8071. "MIT"
  8072. ],
  8073. "authors": [
  8074. {
  8075. "name": "Barry vd. Heuvel",
  8076. "email": "[email protected]"
  8077. }
  8078. ],
  8079. "description": "PHP Debugbar integration for Laravel",
  8080. "keywords": [
  8081. "debug",
  8082. "debugbar",
  8083. "laravel",
  8084. "profiler",
  8085. "webprofiler"
  8086. ],
  8087. "support": {
  8088. "issues": "https://github.com/barryvdh/laravel-debugbar/issues",
  8089. "source": "https://github.com/barryvdh/laravel-debugbar/tree/v3.5.2"
  8090. },
  8091. "funding": [
  8092. {
  8093. "url": "https://github.com/barryvdh",
  8094. "type": "github"
  8095. }
  8096. ],
  8097. "time": "2021-01-06T14:21:44+00:00"
  8098. },
  8099. {
  8100. "name": "barryvdh/laravel-ide-helper",
  8101. "version": "v2.8.2",
  8102. "source": {
  8103. "type": "git",
  8104. "url": "https://github.com/barryvdh/laravel-ide-helper.git",
  8105. "reference": "5515cabea39b9cf55f98980d0f269dc9d85cfcca"
  8106. },
  8107. "dist": {
  8108. "type": "zip",
  8109. "url": "https://api.github.com/repos/barryvdh/laravel-ide-helper/zipball/5515cabea39b9cf55f98980d0f269dc9d85cfcca",
  8110. "reference": "5515cabea39b9cf55f98980d0f269dc9d85cfcca",
  8111. "shasum": ""
  8112. },
  8113. "require": {
  8114. "barryvdh/reflection-docblock": "^2.0.6",
  8115. "composer/composer": "^1.6 || ^2",
  8116. "doctrine/dbal": "~2.3",
  8117. "ext-json": "*",
  8118. "illuminate/console": "^6 || ^7 || ^8",
  8119. "illuminate/filesystem": "^6 || ^7 || ^8",
  8120. "illuminate/support": "^6 || ^7 || ^8",
  8121. "php": ">=7.2",
  8122. "phpdocumentor/type-resolver": "^1.1.0"
  8123. },
  8124. "require-dev": {
  8125. "ext-pdo_sqlite": "*",
  8126. "friendsofphp/php-cs-fixer": "^2",
  8127. "illuminate/config": "^6 || ^7 || ^8",
  8128. "illuminate/view": "^6 || ^7 || ^8",
  8129. "mockery/mockery": "^1.3.3",
  8130. "orchestra/testbench": "^4 || ^5 || ^6",
  8131. "phpunit/phpunit": "^8.5 || ^9",
  8132. "spatie/phpunit-snapshot-assertions": "^1.4 || ^2.2 || ^3 || ^4",
  8133. "vimeo/psalm": "^3.12"
  8134. },
  8135. "type": "library",
  8136. "extra": {
  8137. "branch-alias": {
  8138. "dev-master": "2.8-dev"
  8139. },
  8140. "laravel": {
  8141. "providers": [
  8142. "Barryvdh\\LaravelIdeHelper\\IdeHelperServiceProvider"
  8143. ]
  8144. }
  8145. },
  8146. "autoload": {
  8147. "psr-4": {
  8148. "Barryvdh\\LaravelIdeHelper\\": "src"
  8149. }
  8150. },
  8151. "notification-url": "https://packagist.org/downloads/",
  8152. "license": [
  8153. "MIT"
  8154. ],
  8155. "authors": [
  8156. {
  8157. "name": "Barry vd. Heuvel",
  8158. "email": "[email protected]"
  8159. }
  8160. ],
  8161. "description": "Laravel IDE Helper, generates correct PHPDocs for all Facade classes, to improve auto-completion.",
  8162. "keywords": [
  8163. "autocomplete",
  8164. "codeintel",
  8165. "helper",
  8166. "ide",
  8167. "laravel",
  8168. "netbeans",
  8169. "phpdoc",
  8170. "phpstorm",
  8171. "sublime"
  8172. ],
  8173. "support": {
  8174. "issues": "https://github.com/barryvdh/laravel-ide-helper/issues",
  8175. "source": "https://github.com/barryvdh/laravel-ide-helper/tree/v2.8.2"
  8176. },
  8177. "funding": [
  8178. {
  8179. "url": "https://github.com/barryvdh",
  8180. "type": "github"
  8181. }
  8182. ],
  8183. "time": "2020-12-06T08:55:05+00:00"
  8184. },
  8185. {
  8186. "name": "barryvdh/reflection-docblock",
  8187. "version": "v2.0.6",
  8188. "source": {
  8189. "type": "git",
  8190. "url": "https://github.com/barryvdh/ReflectionDocBlock.git",
  8191. "reference": "6b69015d83d3daf9004a71a89f26e27d27ef6a16"
  8192. },
  8193. "dist": {
  8194. "type": "zip",
  8195. "url": "https://api.github.com/repos/barryvdh/ReflectionDocBlock/zipball/6b69015d83d3daf9004a71a89f26e27d27ef6a16",
  8196. "reference": "6b69015d83d3daf9004a71a89f26e27d27ef6a16",
  8197. "shasum": ""
  8198. },
  8199. "require": {
  8200. "php": ">=5.3.3"
  8201. },
  8202. "require-dev": {
  8203. "phpunit/phpunit": "~4.0,<4.5"
  8204. },
  8205. "suggest": {
  8206. "dflydev/markdown": "~1.0",
  8207. "erusev/parsedown": "~1.0"
  8208. },
  8209. "type": "library",
  8210. "extra": {
  8211. "branch-alias": {
  8212. "dev-master": "2.0.x-dev"
  8213. }
  8214. },
  8215. "autoload": {
  8216. "psr-0": {
  8217. "Barryvdh": [
  8218. "src/"
  8219. ]
  8220. }
  8221. },
  8222. "notification-url": "https://packagist.org/downloads/",
  8223. "license": [
  8224. "MIT"
  8225. ],
  8226. "authors": [
  8227. {
  8228. "name": "Mike van Riel",
  8229. "email": "[email protected]"
  8230. }
  8231. ],
  8232. "support": {
  8233. "source": "https://github.com/barryvdh/ReflectionDocBlock/tree/v2.0.6"
  8234. },
  8235. "time": "2018-12-13T10:34:14+00:00"
  8236. },
  8237. {
  8238. "name": "caouecs/laravel-lang",
  8239. "version": "6.1.4",
  8240. "source": {
  8241. "type": "git",
  8242. "url": "https://github.com/caouecs/lang.git",
  8243. "reference": "18a7845e813e737a56a7f164301d5014b536950c"
  8244. },
  8245. "dist": {
  8246. "type": "zip",
  8247. "url": "https://api.github.com/repos/caouecs/lang/zipball/18a7845e813e737a56a7f164301d5014b536950c",
  8248. "reference": "18a7845e813e737a56a7f164301d5014b536950c",
  8249. "shasum": ""
  8250. },
  8251. "require": {
  8252. "ext-json": "*"
  8253. },
  8254. "suggest": {
  8255. "andrey-helldar/laravel-lang-publisher": "Easy installation and update of translation files for your project",
  8256. "arcanedev/laravel-lang": "Translations manager and checker for Laravel 5",
  8257. "overtrue/laravel-lang": "Command to add languages in your project"
  8258. },
  8259. "type": "library",
  8260. "notification-url": "https://packagist.org/downloads/",
  8261. "license": [
  8262. "MIT"
  8263. ],
  8264. "authors": [
  8265. {
  8266. "name": "caouecs",
  8267. "email": "[email protected]"
  8268. }
  8269. ],
  8270. "description": "Languages for Laravel",
  8271. "keywords": [
  8272. "lang",
  8273. "languages",
  8274. "laravel",
  8275. "lpm"
  8276. ],
  8277. "support": {
  8278. "source": "https://github.com/caouecs/lang/tree/6.1.4"
  8279. },
  8280. "abandoned": "https://github.com/Laravel-Lang/lang",
  8281. "time": "2020-07-13T14:35:32+00:00"
  8282. },
  8283. {
  8284. "name": "composer/composer",
  8285. "version": "2.0.8",
  8286. "source": {
  8287. "type": "git",
  8288. "url": "https://github.com/composer/composer.git",
  8289. "reference": "62139b2806178adb979d76bd3437534a1a9fd490"
  8290. },
  8291. "dist": {
  8292. "type": "zip",
  8293. "url": "https://api.github.com/repos/composer/composer/zipball/62139b2806178adb979d76bd3437534a1a9fd490",
  8294. "reference": "62139b2806178adb979d76bd3437534a1a9fd490",
  8295. "shasum": ""
  8296. },
  8297. "require": {
  8298. "composer/ca-bundle": "^1.0",
  8299. "composer/semver": "^3.0",
  8300. "composer/spdx-licenses": "^1.2",
  8301. "composer/xdebug-handler": "^1.1",
  8302. "justinrainbow/json-schema": "^5.2.10",
  8303. "php": "^5.3.2 || ^7.0 || ^8.0",
  8304. "psr/log": "^1.0",
  8305. "react/promise": "^1.2 || ^2.7",
  8306. "seld/jsonlint": "^1.4",
  8307. "seld/phar-utils": "^1.0",
  8308. "symfony/console": "^2.8.52 || ^3.4.35 || ^4.4 || ^5.0",
  8309. "symfony/filesystem": "^2.8.52 || ^3.4.35 || ^4.4 || ^5.0",
  8310. "symfony/finder": "^2.8.52 || ^3.4.35 || ^4.4 || ^5.0",
  8311. "symfony/process": "^2.8.52 || ^3.4.35 || ^4.4 || ^5.0"
  8312. },
  8313. "require-dev": {
  8314. "phpspec/prophecy": "^1.10",
  8315. "symfony/phpunit-bridge": "^4.2 || ^5.0"
  8316. },
  8317. "suggest": {
  8318. "ext-openssl": "Enabling the openssl extension allows you to access https URLs for repositories and packages",
  8319. "ext-zip": "Enabling the zip extension allows you to unzip archives",
  8320. "ext-zlib": "Allow gzip compression of HTTP requests"
  8321. },
  8322. "bin": [
  8323. "bin/composer"
  8324. ],
  8325. "type": "library",
  8326. "extra": {
  8327. "branch-alias": {
  8328. "dev-master": "2.0-dev"
  8329. }
  8330. },
  8331. "autoload": {
  8332. "psr-4": {
  8333. "Composer\\": "src/Composer"
  8334. }
  8335. },
  8336. "notification-url": "https://packagist.org/downloads/",
  8337. "license": [
  8338. "MIT"
  8339. ],
  8340. "authors": [
  8341. {
  8342. "name": "Nils Adermann",
  8343. "email": "[email protected]",
  8344. "homepage": "https://www.naderman.de"
  8345. },
  8346. {
  8347. "name": "Jordi Boggiano",
  8348. "email": "[email protected]",
  8349. "homepage": "https://seld.be"
  8350. }
  8351. ],
  8352. "description": "Composer helps you declare, manage and install dependencies of PHP projects. It ensures you have the right stack everywhere.",
  8353. "homepage": "https://getcomposer.org/",
  8354. "keywords": [
  8355. "autoload",
  8356. "dependency",
  8357. "package"
  8358. ],
  8359. "support": {
  8360. "irc": "irc://irc.freenode.org/composer",
  8361. "issues": "https://github.com/composer/composer/issues",
  8362. "source": "https://github.com/composer/composer/tree/2.0.8"
  8363. },
  8364. "funding": [
  8365. {
  8366. "url": "https://packagist.com",
  8367. "type": "custom"
  8368. },
  8369. {
  8370. "url": "https://github.com/composer",
  8371. "type": "github"
  8372. },
  8373. {
  8374. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  8375. "type": "tidelift"
  8376. }
  8377. ],
  8378. "time": "2020-12-03T16:20:39+00:00"
  8379. },
  8380. {
  8381. "name": "composer/semver",
  8382. "version": "3.2.4",
  8383. "source": {
  8384. "type": "git",
  8385. "url": "https://github.com/composer/semver.git",
  8386. "reference": "a02fdf930a3c1c3ed3a49b5f63859c0c20e10464"
  8387. },
  8388. "dist": {
  8389. "type": "zip",
  8390. "url": "https://api.github.com/repos/composer/semver/zipball/a02fdf930a3c1c3ed3a49b5f63859c0c20e10464",
  8391. "reference": "a02fdf930a3c1c3ed3a49b5f63859c0c20e10464",
  8392. "shasum": ""
  8393. },
  8394. "require": {
  8395. "php": "^5.3.2 || ^7.0 || ^8.0"
  8396. },
  8397. "require-dev": {
  8398. "phpstan/phpstan": "^0.12.54",
  8399. "symfony/phpunit-bridge": "^4.2 || ^5"
  8400. },
  8401. "type": "library",
  8402. "extra": {
  8403. "branch-alias": {
  8404. "dev-main": "3.x-dev"
  8405. }
  8406. },
  8407. "autoload": {
  8408. "psr-4": {
  8409. "Composer\\Semver\\": "src"
  8410. }
  8411. },
  8412. "notification-url": "https://packagist.org/downloads/",
  8413. "license": [
  8414. "MIT"
  8415. ],
  8416. "authors": [
  8417. {
  8418. "name": "Nils Adermann",
  8419. "email": "[email protected]",
  8420. "homepage": "http://www.naderman.de"
  8421. },
  8422. {
  8423. "name": "Jordi Boggiano",
  8424. "email": "[email protected]",
  8425. "homepage": "http://seld.be"
  8426. },
  8427. {
  8428. "name": "Rob Bast",
  8429. "email": "[email protected]",
  8430. "homepage": "http://robbast.nl"
  8431. }
  8432. ],
  8433. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  8434. "keywords": [
  8435. "semantic",
  8436. "semver",
  8437. "validation",
  8438. "versioning"
  8439. ],
  8440. "support": {
  8441. "irc": "irc://irc.freenode.org/composer",
  8442. "issues": "https://github.com/composer/semver/issues",
  8443. "source": "https://github.com/composer/semver/tree/3.2.4"
  8444. },
  8445. "funding": [
  8446. {
  8447. "url": "https://packagist.com",
  8448. "type": "custom"
  8449. },
  8450. {
  8451. "url": "https://github.com/composer",
  8452. "type": "github"
  8453. },
  8454. {
  8455. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  8456. "type": "tidelift"
  8457. }
  8458. ],
  8459. "time": "2020-11-13T08:59:24+00:00"
  8460. },
  8461. {
  8462. "name": "composer/spdx-licenses",
  8463. "version": "1.5.5",
  8464. "source": {
  8465. "type": "git",
  8466. "url": "https://github.com/composer/spdx-licenses.git",
  8467. "reference": "de30328a7af8680efdc03e396aad24befd513200"
  8468. },
  8469. "dist": {
  8470. "type": "zip",
  8471. "url": "https://api.github.com/repos/composer/spdx-licenses/zipball/de30328a7af8680efdc03e396aad24befd513200",
  8472. "reference": "de30328a7af8680efdc03e396aad24befd513200",
  8473. "shasum": ""
  8474. },
  8475. "require": {
  8476. "php": "^5.3.2 || ^7.0 || ^8.0"
  8477. },
  8478. "require-dev": {
  8479. "phpunit/phpunit": "^4.8.35 || ^5.7 || 6.5 - 7"
  8480. },
  8481. "type": "library",
  8482. "extra": {
  8483. "branch-alias": {
  8484. "dev-main": "1.x-dev"
  8485. }
  8486. },
  8487. "autoload": {
  8488. "psr-4": {
  8489. "Composer\\Spdx\\": "src"
  8490. }
  8491. },
  8492. "notification-url": "https://packagist.org/downloads/",
  8493. "license": [
  8494. "MIT"
  8495. ],
  8496. "authors": [
  8497. {
  8498. "name": "Nils Adermann",
  8499. "email": "[email protected]",
  8500. "homepage": "http://www.naderman.de"
  8501. },
  8502. {
  8503. "name": "Jordi Boggiano",
  8504. "email": "[email protected]",
  8505. "homepage": "http://seld.be"
  8506. },
  8507. {
  8508. "name": "Rob Bast",
  8509. "email": "[email protected]",
  8510. "homepage": "http://robbast.nl"
  8511. }
  8512. ],
  8513. "description": "SPDX licenses list and validation library.",
  8514. "keywords": [
  8515. "license",
  8516. "spdx",
  8517. "validator"
  8518. ],
  8519. "support": {
  8520. "irc": "irc://irc.freenode.org/composer",
  8521. "issues": "https://github.com/composer/spdx-licenses/issues",
  8522. "source": "https://github.com/composer/spdx-licenses/tree/1.5.5"
  8523. },
  8524. "funding": [
  8525. {
  8526. "url": "https://packagist.com",
  8527. "type": "custom"
  8528. },
  8529. {
  8530. "url": "https://github.com/composer",
  8531. "type": "github"
  8532. },
  8533. {
  8534. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  8535. "type": "tidelift"
  8536. }
  8537. ],
  8538. "time": "2020-12-03T16:04:16+00:00"
  8539. },
  8540. {
  8541. "name": "composer/xdebug-handler",
  8542. "version": "1.4.5",
  8543. "source": {
  8544. "type": "git",
  8545. "url": "https://github.com/composer/xdebug-handler.git",
  8546. "reference": "f28d44c286812c714741478d968104c5e604a1d4"
  8547. },
  8548. "dist": {
  8549. "type": "zip",
  8550. "url": "https://api.github.com/repos/composer/xdebug-handler/zipball/f28d44c286812c714741478d968104c5e604a1d4",
  8551. "reference": "f28d44c286812c714741478d968104c5e604a1d4",
  8552. "shasum": ""
  8553. },
  8554. "require": {
  8555. "php": "^5.3.2 || ^7.0 || ^8.0",
  8556. "psr/log": "^1.0"
  8557. },
  8558. "require-dev": {
  8559. "phpunit/phpunit": "^4.8.35 || ^5.7 || 6.5 - 8"
  8560. },
  8561. "type": "library",
  8562. "autoload": {
  8563. "psr-4": {
  8564. "Composer\\XdebugHandler\\": "src"
  8565. }
  8566. },
  8567. "notification-url": "https://packagist.org/downloads/",
  8568. "license": [
  8569. "MIT"
  8570. ],
  8571. "authors": [
  8572. {
  8573. "name": "John Stevenson",
  8574. "email": "[email protected]"
  8575. }
  8576. ],
  8577. "description": "Restarts a process without Xdebug.",
  8578. "keywords": [
  8579. "Xdebug",
  8580. "performance"
  8581. ],
  8582. "support": {
  8583. "irc": "irc://irc.freenode.org/composer",
  8584. "issues": "https://github.com/composer/xdebug-handler/issues",
  8585. "source": "https://github.com/composer/xdebug-handler/tree/1.4.5"
  8586. },
  8587. "funding": [
  8588. {
  8589. "url": "https://packagist.com",
  8590. "type": "custom"
  8591. },
  8592. {
  8593. "url": "https://github.com/composer",
  8594. "type": "github"
  8595. },
  8596. {
  8597. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  8598. "type": "tidelift"
  8599. }
  8600. ],
  8601. "time": "2020-11-13T08:04:11+00:00"
  8602. },
  8603. {
  8604. "name": "doctrine/instantiator",
  8605. "version": "1.4.0",
  8606. "source": {
  8607. "type": "git",
  8608. "url": "https://github.com/doctrine/instantiator.git",
  8609. "reference": "d56bf6102915de5702778fe20f2de3b2fe570b5b"
  8610. },
  8611. "dist": {
  8612. "type": "zip",
  8613. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/d56bf6102915de5702778fe20f2de3b2fe570b5b",
  8614. "reference": "d56bf6102915de5702778fe20f2de3b2fe570b5b",
  8615. "shasum": ""
  8616. },
  8617. "require": {
  8618. "php": "^7.1 || ^8.0"
  8619. },
  8620. "require-dev": {
  8621. "doctrine/coding-standard": "^8.0",
  8622. "ext-pdo": "*",
  8623. "ext-phar": "*",
  8624. "phpbench/phpbench": "^0.13 || 1.0.0-alpha2",
  8625. "phpstan/phpstan": "^0.12",
  8626. "phpstan/phpstan-phpunit": "^0.12",
  8627. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0"
  8628. },
  8629. "type": "library",
  8630. "autoload": {
  8631. "psr-4": {
  8632. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  8633. }
  8634. },
  8635. "notification-url": "https://packagist.org/downloads/",
  8636. "license": [
  8637. "MIT"
  8638. ],
  8639. "authors": [
  8640. {
  8641. "name": "Marco Pivetta",
  8642. "email": "[email protected]",
  8643. "homepage": "https://ocramius.github.io/"
  8644. }
  8645. ],
  8646. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  8647. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  8648. "keywords": [
  8649. "constructor",
  8650. "instantiate"
  8651. ],
  8652. "support": {
  8653. "issues": "https://github.com/doctrine/instantiator/issues",
  8654. "source": "https://github.com/doctrine/instantiator/tree/1.4.0"
  8655. },
  8656. "funding": [
  8657. {
  8658. "url": "https://www.doctrine-project.org/sponsorship.html",
  8659. "type": "custom"
  8660. },
  8661. {
  8662. "url": "https://www.patreon.com/phpdoctrine",
  8663. "type": "patreon"
  8664. },
  8665. {
  8666. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
  8667. "type": "tidelift"
  8668. }
  8669. ],
  8670. "time": "2020-11-10T18:47:58+00:00"
  8671. },
  8672. {
  8673. "name": "facade/flare-client-php",
  8674. "version": "1.3.7",
  8675. "source": {
  8676. "type": "git",
  8677. "url": "https://github.com/facade/flare-client-php.git",
  8678. "reference": "fd688d3c06658f2b3b5f7bb19f051ee4ddf02492"
  8679. },
  8680. "dist": {
  8681. "type": "zip",
  8682. "url": "https://api.github.com/repos/facade/flare-client-php/zipball/fd688d3c06658f2b3b5f7bb19f051ee4ddf02492",
  8683. "reference": "fd688d3c06658f2b3b5f7bb19f051ee4ddf02492",
  8684. "shasum": ""
  8685. },
  8686. "require": {
  8687. "facade/ignition-contracts": "~1.0",
  8688. "illuminate/pipeline": "^5.5|^6.0|^7.0|^8.0",
  8689. "php": "^7.1|^8.0",
  8690. "symfony/http-foundation": "^3.3|^4.1|^5.0",
  8691. "symfony/mime": "^3.4|^4.0|^5.1",
  8692. "symfony/var-dumper": "^3.4|^4.0|^5.0"
  8693. },
  8694. "require-dev": {
  8695. "friendsofphp/php-cs-fixer": "^2.14",
  8696. "phpunit/phpunit": "^7.5.16",
  8697. "spatie/phpunit-snapshot-assertions": "^2.0"
  8698. },
  8699. "type": "library",
  8700. "extra": {
  8701. "branch-alias": {
  8702. "dev-master": "1.0-dev"
  8703. }
  8704. },
  8705. "autoload": {
  8706. "psr-4": {
  8707. "Facade\\FlareClient\\": "src"
  8708. },
  8709. "files": [
  8710. "src/helpers.php"
  8711. ]
  8712. },
  8713. "notification-url": "https://packagist.org/downloads/",
  8714. "license": [
  8715. "MIT"
  8716. ],
  8717. "description": "Send PHP errors to Flare",
  8718. "homepage": "https://github.com/facade/flare-client-php",
  8719. "keywords": [
  8720. "exception",
  8721. "facade",
  8722. "flare",
  8723. "reporting"
  8724. ],
  8725. "support": {
  8726. "issues": "https://github.com/facade/flare-client-php/issues",
  8727. "source": "https://github.com/facade/flare-client-php/tree/1.3.7"
  8728. },
  8729. "funding": [
  8730. {
  8731. "url": "https://github.com/spatie",
  8732. "type": "github"
  8733. }
  8734. ],
  8735. "time": "2020-10-21T16:02:39+00:00"
  8736. },
  8737. {
  8738. "name": "facade/ignition",
  8739. "version": "2.5.8",
  8740. "source": {
  8741. "type": "git",
  8742. "url": "https://github.com/facade/ignition.git",
  8743. "reference": "8e907d81244649c5ea746e2ec30c32c5f59df472"
  8744. },
  8745. "dist": {
  8746. "type": "zip",
  8747. "url": "https://api.github.com/repos/facade/ignition/zipball/8e907d81244649c5ea746e2ec30c32c5f59df472",
  8748. "reference": "8e907d81244649c5ea746e2ec30c32c5f59df472",
  8749. "shasum": ""
  8750. },
  8751. "require": {
  8752. "ext-json": "*",
  8753. "ext-mbstring": "*",
  8754. "facade/flare-client-php": "^1.3.7",
  8755. "facade/ignition-contracts": "^1.0.2",
  8756. "filp/whoops": "^2.4",
  8757. "illuminate/support": "^7.0|^8.0",
  8758. "monolog/monolog": "^2.0",
  8759. "php": "^7.2.5|^8.0",
  8760. "symfony/console": "^5.0",
  8761. "symfony/var-dumper": "^5.0"
  8762. },
  8763. "require-dev": {
  8764. "friendsofphp/php-cs-fixer": "^2.14",
  8765. "mockery/mockery": "^1.3",
  8766. "orchestra/testbench": "^5.0|^6.0",
  8767. "psalm/plugin-laravel": "^1.2"
  8768. },
  8769. "suggest": {
  8770. "laravel/telescope": "^3.1"
  8771. },
  8772. "type": "library",
  8773. "extra": {
  8774. "branch-alias": {
  8775. "dev-master": "2.x-dev"
  8776. },
  8777. "laravel": {
  8778. "providers": [
  8779. "Facade\\Ignition\\IgnitionServiceProvider"
  8780. ],
  8781. "aliases": {
  8782. "Flare": "Facade\\Ignition\\Facades\\Flare"
  8783. }
  8784. }
  8785. },
  8786. "autoload": {
  8787. "psr-4": {
  8788. "Facade\\Ignition\\": "src"
  8789. },
  8790. "files": [
  8791. "src/helpers.php"
  8792. ]
  8793. },
  8794. "notification-url": "https://packagist.org/downloads/",
  8795. "license": [
  8796. "MIT"
  8797. ],
  8798. "description": "A beautiful error page for Laravel applications.",
  8799. "homepage": "https://github.com/facade/ignition",
  8800. "keywords": [
  8801. "error",
  8802. "flare",
  8803. "laravel",
  8804. "page"
  8805. ],
  8806. "support": {
  8807. "docs": "https://flareapp.io/docs/ignition-for-laravel/introduction",
  8808. "forum": "https://twitter.com/flareappio",
  8809. "issues": "https://github.com/facade/ignition/issues",
  8810. "source": "https://github.com/facade/ignition"
  8811. },
  8812. "time": "2020-12-29T09:12:55+00:00"
  8813. },
  8814. {
  8815. "name": "facade/ignition-contracts",
  8816. "version": "1.0.2",
  8817. "source": {
  8818. "type": "git",
  8819. "url": "https://github.com/facade/ignition-contracts.git",
  8820. "reference": "3c921a1cdba35b68a7f0ccffc6dffc1995b18267"
  8821. },
  8822. "dist": {
  8823. "type": "zip",
  8824. "url": "https://api.github.com/repos/facade/ignition-contracts/zipball/3c921a1cdba35b68a7f0ccffc6dffc1995b18267",
  8825. "reference": "3c921a1cdba35b68a7f0ccffc6dffc1995b18267",
  8826. "shasum": ""
  8827. },
  8828. "require": {
  8829. "php": "^7.3|^8.0"
  8830. },
  8831. "require-dev": {
  8832. "friendsofphp/php-cs-fixer": "^v2.15.8",
  8833. "phpunit/phpunit": "^9.3.11",
  8834. "vimeo/psalm": "^3.17.1"
  8835. },
  8836. "type": "library",
  8837. "autoload": {
  8838. "psr-4": {
  8839. "Facade\\IgnitionContracts\\": "src"
  8840. }
  8841. },
  8842. "notification-url": "https://packagist.org/downloads/",
  8843. "license": [
  8844. "MIT"
  8845. ],
  8846. "authors": [
  8847. {
  8848. "name": "Freek Van der Herten",
  8849. "email": "[email protected]",
  8850. "homepage": "https://flareapp.io",
  8851. "role": "Developer"
  8852. }
  8853. ],
  8854. "description": "Solution contracts for Ignition",
  8855. "homepage": "https://github.com/facade/ignition-contracts",
  8856. "keywords": [
  8857. "contracts",
  8858. "flare",
  8859. "ignition"
  8860. ],
  8861. "support": {
  8862. "issues": "https://github.com/facade/ignition-contracts/issues",
  8863. "source": "https://github.com/facade/ignition-contracts/tree/1.0.2"
  8864. },
  8865. "time": "2020-10-16T08:27:54+00:00"
  8866. },
  8867. {
  8868. "name": "fakerphp/faker",
  8869. "version": "v1.13.0",
  8870. "source": {
  8871. "type": "git",
  8872. "url": "https://github.com/FakerPHP/Faker.git",
  8873. "reference": "ab3f5364d01f2c2c16113442fb987d26e4004913"
  8874. },
  8875. "dist": {
  8876. "type": "zip",
  8877. "url": "https://api.github.com/repos/FakerPHP/Faker/zipball/ab3f5364d01f2c2c16113442fb987d26e4004913",
  8878. "reference": "ab3f5364d01f2c2c16113442fb987d26e4004913",
  8879. "shasum": ""
  8880. },
  8881. "require": {
  8882. "php": "^7.1 || ^8.0"
  8883. },
  8884. "conflict": {
  8885. "fzaninotto/faker": "*"
  8886. },
  8887. "require-dev": {
  8888. "bamarni/composer-bin-plugin": "^1.4.1",
  8889. "ext-intl": "*",
  8890. "phpunit/phpunit": "^7.5.20 || ^8.5.8 || ^9.4.2"
  8891. },
  8892. "type": "library",
  8893. "autoload": {
  8894. "psr-4": {
  8895. "Faker\\": "src/Faker/"
  8896. }
  8897. },
  8898. "notification-url": "https://packagist.org/downloads/",
  8899. "license": [
  8900. "MIT"
  8901. ],
  8902. "authors": [
  8903. {
  8904. "name": "François Zaninotto"
  8905. }
  8906. ],
  8907. "description": "Faker is a PHP library that generates fake data for you.",
  8908. "keywords": [
  8909. "data",
  8910. "faker",
  8911. "fixtures"
  8912. ],
  8913. "support": {
  8914. "issues": "https://github.com/FakerPHP/Faker/issues",
  8915. "source": "https://github.com/FakerPHP/Faker/tree/v1.13.0"
  8916. },
  8917. "time": "2020-12-18T16:50:48+00:00"
  8918. },
  8919. {
  8920. "name": "filp/whoops",
  8921. "version": "2.9.1",
  8922. "source": {
  8923. "type": "git",
  8924. "url": "https://github.com/filp/whoops.git",
  8925. "reference": "307fb34a5ab697461ec4c9db865b20ff2fd40771"
  8926. },
  8927. "dist": {
  8928. "type": "zip",
  8929. "url": "https://api.github.com/repos/filp/whoops/zipball/307fb34a5ab697461ec4c9db865b20ff2fd40771",
  8930. "reference": "307fb34a5ab697461ec4c9db865b20ff2fd40771",
  8931. "shasum": ""
  8932. },
  8933. "require": {
  8934. "php": "^5.5.9 || ^7.0 || ^8.0",
  8935. "psr/log": "^1.0.1"
  8936. },
  8937. "require-dev": {
  8938. "mockery/mockery": "^0.9 || ^1.0",
  8939. "phpunit/phpunit": "^4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.3",
  8940. "symfony/var-dumper": "^2.6 || ^3.0 || ^4.0 || ^5.0"
  8941. },
  8942. "suggest": {
  8943. "symfony/var-dumper": "Pretty print complex values better with var-dumper available",
  8944. "whoops/soap": "Formats errors as SOAP responses"
  8945. },
  8946. "type": "library",
  8947. "extra": {
  8948. "branch-alias": {
  8949. "dev-master": "2.7-dev"
  8950. }
  8951. },
  8952. "autoload": {
  8953. "psr-4": {
  8954. "Whoops\\": "src/Whoops/"
  8955. }
  8956. },
  8957. "notification-url": "https://packagist.org/downloads/",
  8958. "license": [
  8959. "MIT"
  8960. ],
  8961. "authors": [
  8962. {
  8963. "name": "Filipe Dobreira",
  8964. "homepage": "https://github.com/filp",
  8965. "role": "Developer"
  8966. }
  8967. ],
  8968. "description": "php error handling for cool kids",
  8969. "homepage": "https://filp.github.io/whoops/",
  8970. "keywords": [
  8971. "error",
  8972. "exception",
  8973. "handling",
  8974. "library",
  8975. "throwable",
  8976. "whoops"
  8977. ],
  8978. "support": {
  8979. "issues": "https://github.com/filp/whoops/issues",
  8980. "source": "https://github.com/filp/whoops/tree/2.9.1"
  8981. },
  8982. "time": "2020-11-01T12:00:00+00:00"
  8983. },
  8984. {
  8985. "name": "hamcrest/hamcrest-php",
  8986. "version": "v2.0.1",
  8987. "source": {
  8988. "type": "git",
  8989. "url": "https://github.com/hamcrest/hamcrest-php.git",
  8990. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3"
  8991. },
  8992. "dist": {
  8993. "type": "zip",
  8994. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  8995. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  8996. "shasum": ""
  8997. },
  8998. "require": {
  8999. "php": "^5.3|^7.0|^8.0"
  9000. },
  9001. "replace": {
  9002. "cordoval/hamcrest-php": "*",
  9003. "davedevelopment/hamcrest-php": "*",
  9004. "kodova/hamcrest-php": "*"
  9005. },
  9006. "require-dev": {
  9007. "phpunit/php-file-iterator": "^1.4 || ^2.0",
  9008. "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0"
  9009. },
  9010. "type": "library",
  9011. "extra": {
  9012. "branch-alias": {
  9013. "dev-master": "2.1-dev"
  9014. }
  9015. },
  9016. "autoload": {
  9017. "classmap": [
  9018. "hamcrest"
  9019. ]
  9020. },
  9021. "notification-url": "https://packagist.org/downloads/",
  9022. "license": [
  9023. "BSD-3-Clause"
  9024. ],
  9025. "description": "This is the PHP port of Hamcrest Matchers",
  9026. "keywords": [
  9027. "test"
  9028. ],
  9029. "support": {
  9030. "issues": "https://github.com/hamcrest/hamcrest-php/issues",
  9031. "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.0.1"
  9032. },
  9033. "time": "2020-07-09T08:09:16+00:00"
  9034. },
  9035. {
  9036. "name": "justinrainbow/json-schema",
  9037. "version": "5.2.10",
  9038. "source": {
  9039. "type": "git",
  9040. "url": "https://github.com/justinrainbow/json-schema.git",
  9041. "reference": "2ba9c8c862ecd5510ed16c6340aa9f6eadb4f31b"
  9042. },
  9043. "dist": {
  9044. "type": "zip",
  9045. "url": "https://api.github.com/repos/justinrainbow/json-schema/zipball/2ba9c8c862ecd5510ed16c6340aa9f6eadb4f31b",
  9046. "reference": "2ba9c8c862ecd5510ed16c6340aa9f6eadb4f31b",
  9047. "shasum": ""
  9048. },
  9049. "require": {
  9050. "php": ">=5.3.3"
  9051. },
  9052. "require-dev": {
  9053. "friendsofphp/php-cs-fixer": "~2.2.20||~2.15.1",
  9054. "json-schema/json-schema-test-suite": "1.2.0",
  9055. "phpunit/phpunit": "^4.8.35"
  9056. },
  9057. "bin": [
  9058. "bin/validate-json"
  9059. ],
  9060. "type": "library",
  9061. "extra": {
  9062. "branch-alias": {
  9063. "dev-master": "5.0.x-dev"
  9064. }
  9065. },
  9066. "autoload": {
  9067. "psr-4": {
  9068. "JsonSchema\\": "src/JsonSchema/"
  9069. }
  9070. },
  9071. "notification-url": "https://packagist.org/downloads/",
  9072. "license": [
  9073. "MIT"
  9074. ],
  9075. "authors": [
  9076. {
  9077. "name": "Bruno Prieto Reis",
  9078. "email": "[email protected]"
  9079. },
  9080. {
  9081. "name": "Justin Rainbow",
  9082. "email": "[email protected]"
  9083. },
  9084. {
  9085. "name": "Igor Wiedler",
  9086. "email": "[email protected]"
  9087. },
  9088. {
  9089. "name": "Robert Schönthal",
  9090. "email": "[email protected]"
  9091. }
  9092. ],
  9093. "description": "A library to validate a json schema.",
  9094. "homepage": "https://github.com/justinrainbow/json-schema",
  9095. "keywords": [
  9096. "json",
  9097. "schema"
  9098. ],
  9099. "support": {
  9100. "issues": "https://github.com/justinrainbow/json-schema/issues",
  9101. "source": "https://github.com/justinrainbow/json-schema/tree/5.2.10"
  9102. },
  9103. "time": "2020-05-27T16:41:55+00:00"
  9104. },
  9105. {
  9106. "name": "laravel/telescope",
  9107. "version": "v3.5.1",
  9108. "source": {
  9109. "type": "git",
  9110. "url": "https://github.com/laravel/telescope.git",
  9111. "reference": "a8d2e1106ba655006fde47a0b7ed53851c6398f5"
  9112. },
  9113. "dist": {
  9114. "type": "zip",
  9115. "url": "https://api.github.com/repos/laravel/telescope/zipball/a8d2e1106ba655006fde47a0b7ed53851c6398f5",
  9116. "reference": "a8d2e1106ba655006fde47a0b7ed53851c6398f5",
  9117. "shasum": ""
  9118. },
  9119. "require": {
  9120. "ext-json": "*",
  9121. "laravel/framework": "^6.0|^7.0",
  9122. "moontoast/math": "^1.1",
  9123. "php": "^7.2",
  9124. "symfony/var-dumper": "^4.4|^5.0"
  9125. },
  9126. "require-dev": {
  9127. "ext-gd": "*",
  9128. "orchestra/testbench": "^4.0|^5.0"
  9129. },
  9130. "type": "library",
  9131. "extra": {
  9132. "branch-alias": {
  9133. "dev-master": "3.x-dev"
  9134. },
  9135. "laravel": {
  9136. "providers": [
  9137. "Laravel\\Telescope\\TelescopeServiceProvider"
  9138. ]
  9139. }
  9140. },
  9141. "autoload": {
  9142. "psr-4": {
  9143. "Laravel\\Telescope\\": "src/"
  9144. }
  9145. },
  9146. "notification-url": "https://packagist.org/downloads/",
  9147. "license": [
  9148. "MIT"
  9149. ],
  9150. "authors": [
  9151. {
  9152. "name": "Taylor Otwell",
  9153. "email": "[email protected]"
  9154. },
  9155. {
  9156. "name": "Mohamed Said",
  9157. "email": "[email protected]"
  9158. }
  9159. ],
  9160. "description": "An elegant debug assistant for the Laravel framework.",
  9161. "keywords": [
  9162. "debugging",
  9163. "laravel",
  9164. "monitoring"
  9165. ],
  9166. "support": {
  9167. "issues": "https://github.com/laravel/telescope/issues",
  9168. "source": "https://github.com/laravel/telescope/tree/v3.5.1"
  9169. },
  9170. "time": "2020-07-28T19:12:33+00:00"
  9171. },
  9172. {
  9173. "name": "maximebf/debugbar",
  9174. "version": "v1.16.5",
  9175. "source": {
  9176. "type": "git",
  9177. "url": "https://github.com/maximebf/php-debugbar.git",
  9178. "reference": "6d51ee9e94cff14412783785e79a4e7ef97b9d62"
  9179. },
  9180. "dist": {
  9181. "type": "zip",
  9182. "url": "https://api.github.com/repos/maximebf/php-debugbar/zipball/6d51ee9e94cff14412783785e79a4e7ef97b9d62",
  9183. "reference": "6d51ee9e94cff14412783785e79a4e7ef97b9d62",
  9184. "shasum": ""
  9185. },
  9186. "require": {
  9187. "php": "^7.1|^8",
  9188. "psr/log": "^1.0",
  9189. "symfony/var-dumper": "^2.6|^3|^4|^5"
  9190. },
  9191. "require-dev": {
  9192. "phpunit/phpunit": "^7.5.20 || ^9.4.2"
  9193. },
  9194. "suggest": {
  9195. "kriswallsmith/assetic": "The best way to manage assets",
  9196. "monolog/monolog": "Log using Monolog",
  9197. "predis/predis": "Redis storage"
  9198. },
  9199. "type": "library",
  9200. "extra": {
  9201. "branch-alias": {
  9202. "dev-master": "1.16-dev"
  9203. }
  9204. },
  9205. "autoload": {
  9206. "psr-4": {
  9207. "DebugBar\\": "src/DebugBar/"
  9208. }
  9209. },
  9210. "notification-url": "https://packagist.org/downloads/",
  9211. "license": [
  9212. "MIT"
  9213. ],
  9214. "authors": [
  9215. {
  9216. "name": "Maxime Bouroumeau-Fuseau",
  9217. "email": "[email protected]",
  9218. "homepage": "http://maximebf.com"
  9219. },
  9220. {
  9221. "name": "Barry vd. Heuvel",
  9222. "email": "[email protected]"
  9223. }
  9224. ],
  9225. "description": "Debug bar in the browser for php application",
  9226. "homepage": "https://github.com/maximebf/php-debugbar",
  9227. "keywords": [
  9228. "debug",
  9229. "debugbar"
  9230. ],
  9231. "support": {
  9232. "issues": "https://github.com/maximebf/php-debugbar/issues",
  9233. "source": "https://github.com/maximebf/php-debugbar/tree/v1.16.5"
  9234. },
  9235. "time": "2020-12-07T11:07:24+00:00"
  9236. },
  9237. {
  9238. "name": "mockery/mockery",
  9239. "version": "1.4.2",
  9240. "source": {
  9241. "type": "git",
  9242. "url": "https://github.com/mockery/mockery.git",
  9243. "reference": "20cab678faed06fac225193be281ea0fddb43b93"
  9244. },
  9245. "dist": {
  9246. "type": "zip",
  9247. "url": "https://api.github.com/repos/mockery/mockery/zipball/20cab678faed06fac225193be281ea0fddb43b93",
  9248. "reference": "20cab678faed06fac225193be281ea0fddb43b93",
  9249. "shasum": ""
  9250. },
  9251. "require": {
  9252. "hamcrest/hamcrest-php": "^2.0.1",
  9253. "lib-pcre": ">=7.0",
  9254. "php": "^7.3 || ^8.0"
  9255. },
  9256. "conflict": {
  9257. "phpunit/phpunit": "<8.0"
  9258. },
  9259. "require-dev": {
  9260. "phpunit/phpunit": "^8.5 || ^9.3"
  9261. },
  9262. "type": "library",
  9263. "extra": {
  9264. "branch-alias": {
  9265. "dev-master": "1.4.x-dev"
  9266. }
  9267. },
  9268. "autoload": {
  9269. "psr-0": {
  9270. "Mockery": "library/"
  9271. }
  9272. },
  9273. "notification-url": "https://packagist.org/downloads/",
  9274. "license": [
  9275. "BSD-3-Clause"
  9276. ],
  9277. "authors": [
  9278. {
  9279. "name": "Pádraic Brady",
  9280. "email": "[email protected]",
  9281. "homepage": "http://blog.astrumfutura.com"
  9282. },
  9283. {
  9284. "name": "Dave Marshall",
  9285. "email": "[email protected]",
  9286. "homepage": "http://davedevelopment.co.uk"
  9287. }
  9288. ],
  9289. "description": "Mockery is a simple yet flexible PHP mock object framework",
  9290. "homepage": "https://github.com/mockery/mockery",
  9291. "keywords": [
  9292. "BDD",
  9293. "TDD",
  9294. "library",
  9295. "mock",
  9296. "mock objects",
  9297. "mockery",
  9298. "stub",
  9299. "test",
  9300. "test double",
  9301. "testing"
  9302. ],
  9303. "support": {
  9304. "issues": "https://github.com/mockery/mockery/issues",
  9305. "source": "https://github.com/mockery/mockery/tree/master"
  9306. },
  9307. "time": "2020-08-11T18:10:13+00:00"
  9308. },
  9309. {
  9310. "name": "moontoast/math",
  9311. "version": "1.2.1",
  9312. "source": {
  9313. "type": "git",
  9314. "url": "https://github.com/ramsey/moontoast-math.git",
  9315. "reference": "5f47d34c87767dbcc08b30377a9827df71de91fa"
  9316. },
  9317. "dist": {
  9318. "type": "zip",
  9319. "url": "https://api.github.com/repos/ramsey/moontoast-math/zipball/5f47d34c87767dbcc08b30377a9827df71de91fa",
  9320. "reference": "5f47d34c87767dbcc08b30377a9827df71de91fa",
  9321. "shasum": ""
  9322. },
  9323. "require": {
  9324. "php": ">=5.3.3",
  9325. "phpseclib/bcmath_compat": ">=1.0.3"
  9326. },
  9327. "require-dev": {
  9328. "jakub-onderka/php-parallel-lint": "^0.9.0",
  9329. "phpunit/phpunit": "^4.8 || ^5.5 || ^6.5 || ^7.0",
  9330. "satooshi/php-coveralls": "^0.6.1",
  9331. "squizlabs/php_codesniffer": "^2.3"
  9332. },
  9333. "type": "library",
  9334. "autoload": {
  9335. "psr-4": {
  9336. "Moontoast\\Math\\": "src/Moontoast/Math",
  9337. "Moontoast\\Math\\Exception\\": "src/Moontoast/Math/Exception"
  9338. }
  9339. },
  9340. "notification-url": "https://packagist.org/downloads/",
  9341. "license": [
  9342. "Apache-2.0"
  9343. ],
  9344. "authors": [
  9345. {
  9346. "name": "Ben Ramsey",
  9347. "email": "[email protected]",
  9348. "homepage": "https://benramsey.com"
  9349. }
  9350. ],
  9351. "description": "A mathematics library, providing functionality for large numbers",
  9352. "homepage": "https://github.com/ramsey/moontoast-math",
  9353. "keywords": [
  9354. "bcmath",
  9355. "math"
  9356. ],
  9357. "support": {
  9358. "issues": "https://github.com/ramsey/moontoast-math/issues",
  9359. "source": "https://github.com/ramsey/moontoast-math"
  9360. },
  9361. "abandoned": "brick/math",
  9362. "time": "2020-01-05T04:49:34+00:00"
  9363. },
  9364. {
  9365. "name": "myclabs/deep-copy",
  9366. "version": "1.10.2",
  9367. "source": {
  9368. "type": "git",
  9369. "url": "https://github.com/myclabs/DeepCopy.git",
  9370. "reference": "776f831124e9c62e1a2c601ecc52e776d8bb7220"
  9371. },
  9372. "dist": {
  9373. "type": "zip",
  9374. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/776f831124e9c62e1a2c601ecc52e776d8bb7220",
  9375. "reference": "776f831124e9c62e1a2c601ecc52e776d8bb7220",
  9376. "shasum": ""
  9377. },
  9378. "require": {
  9379. "php": "^7.1 || ^8.0"
  9380. },
  9381. "replace": {
  9382. "myclabs/deep-copy": "self.version"
  9383. },
  9384. "require-dev": {
  9385. "doctrine/collections": "^1.0",
  9386. "doctrine/common": "^2.6",
  9387. "phpunit/phpunit": "^7.1"
  9388. },
  9389. "type": "library",
  9390. "autoload": {
  9391. "psr-4": {
  9392. "DeepCopy\\": "src/DeepCopy/"
  9393. },
  9394. "files": [
  9395. "src/DeepCopy/deep_copy.php"
  9396. ]
  9397. },
  9398. "notification-url": "https://packagist.org/downloads/",
  9399. "license": [
  9400. "MIT"
  9401. ],
  9402. "description": "Create deep copies (clones) of your objects",
  9403. "keywords": [
  9404. "clone",
  9405. "copy",
  9406. "duplicate",
  9407. "object",
  9408. "object graph"
  9409. ],
  9410. "support": {
  9411. "issues": "https://github.com/myclabs/DeepCopy/issues",
  9412. "source": "https://github.com/myclabs/DeepCopy/tree/1.10.2"
  9413. },
  9414. "funding": [
  9415. {
  9416. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  9417. "type": "tidelift"
  9418. }
  9419. ],
  9420. "time": "2020-11-13T09:40:50+00:00"
  9421. },
  9422. {
  9423. "name": "nunomaduro/collision",
  9424. "version": "v4.3.0",
  9425. "source": {
  9426. "type": "git",
  9427. "url": "https://github.com/nunomaduro/collision.git",
  9428. "reference": "7c125dc2463f3e144ddc7e05e63077109508c94e"
  9429. },
  9430. "dist": {
  9431. "type": "zip",
  9432. "url": "https://api.github.com/repos/nunomaduro/collision/zipball/7c125dc2463f3e144ddc7e05e63077109508c94e",
  9433. "reference": "7c125dc2463f3e144ddc7e05e63077109508c94e",
  9434. "shasum": ""
  9435. },
  9436. "require": {
  9437. "facade/ignition-contracts": "^1.0",
  9438. "filp/whoops": "^2.4",
  9439. "php": "^7.2.5 || ^8.0",
  9440. "symfony/console": "^5.0"
  9441. },
  9442. "require-dev": {
  9443. "facade/ignition": "^2.0",
  9444. "fideloper/proxy": "^4.2",
  9445. "friendsofphp/php-cs-fixer": "^2.16",
  9446. "fruitcake/laravel-cors": "^1.0",
  9447. "laravel/framework": "^7.0",
  9448. "laravel/tinker": "^2.0",
  9449. "nunomaduro/larastan": "^0.6",
  9450. "orchestra/testbench": "^5.0",
  9451. "phpstan/phpstan": "^0.12.3",
  9452. "phpunit/phpunit": "^8.5.1 || ^9.0"
  9453. },
  9454. "type": "library",
  9455. "extra": {
  9456. "laravel": {
  9457. "providers": [
  9458. "NunoMaduro\\Collision\\Adapters\\Laravel\\CollisionServiceProvider"
  9459. ]
  9460. }
  9461. },
  9462. "autoload": {
  9463. "psr-4": {
  9464. "NunoMaduro\\Collision\\": "src/"
  9465. }
  9466. },
  9467. "notification-url": "https://packagist.org/downloads/",
  9468. "license": [
  9469. "MIT"
  9470. ],
  9471. "authors": [
  9472. {
  9473. "name": "Nuno Maduro",
  9474. "email": "[email protected]"
  9475. }
  9476. ],
  9477. "description": "Cli error handling for console/command-line PHP applications.",
  9478. "keywords": [
  9479. "artisan",
  9480. "cli",
  9481. "command-line",
  9482. "console",
  9483. "error",
  9484. "handling",
  9485. "laravel",
  9486. "laravel-zero",
  9487. "php",
  9488. "symfony"
  9489. ],
  9490. "support": {
  9491. "issues": "https://github.com/nunomaduro/collision/issues",
  9492. "source": "https://github.com/nunomaduro/collision"
  9493. },
  9494. "funding": [
  9495. {
  9496. "url": "https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=66BYDWAT92N6L",
  9497. "type": "custom"
  9498. },
  9499. {
  9500. "url": "https://github.com/nunomaduro",
  9501. "type": "github"
  9502. },
  9503. {
  9504. "url": "https://www.patreon.com/nunomaduro",
  9505. "type": "patreon"
  9506. }
  9507. ],
  9508. "time": "2020-10-29T15:12:23+00:00"
  9509. },
  9510. {
  9511. "name": "paragonie/constant_time_encoding",
  9512. "version": "v2.4.0",
  9513. "source": {
  9514. "type": "git",
  9515. "url": "https://github.com/paragonie/constant_time_encoding.git",
  9516. "reference": "f34c2b11eb9d2c9318e13540a1dbc2a3afbd939c"
  9517. },
  9518. "dist": {
  9519. "type": "zip",
  9520. "url": "https://api.github.com/repos/paragonie/constant_time_encoding/zipball/f34c2b11eb9d2c9318e13540a1dbc2a3afbd939c",
  9521. "reference": "f34c2b11eb9d2c9318e13540a1dbc2a3afbd939c",
  9522. "shasum": ""
  9523. },
  9524. "require": {
  9525. "php": "^7|^8"
  9526. },
  9527. "require-dev": {
  9528. "phpunit/phpunit": "^6|^7|^8|^9",
  9529. "vimeo/psalm": "^1|^2|^3|^4"
  9530. },
  9531. "type": "library",
  9532. "autoload": {
  9533. "psr-4": {
  9534. "ParagonIE\\ConstantTime\\": "src/"
  9535. }
  9536. },
  9537. "notification-url": "https://packagist.org/downloads/",
  9538. "license": [
  9539. "MIT"
  9540. ],
  9541. "authors": [
  9542. {
  9543. "name": "Paragon Initiative Enterprises",
  9544. "email": "[email protected]",
  9545. "homepage": "https://paragonie.com",
  9546. "role": "Maintainer"
  9547. },
  9548. {
  9549. "name": "Steve 'Sc00bz' Thomas",
  9550. "email": "[email protected]",
  9551. "homepage": "https://www.tobtu.com",
  9552. "role": "Original Developer"
  9553. }
  9554. ],
  9555. "description": "Constant-time Implementations of RFC 4648 Encoding (Base-64, Base-32, Base-16)",
  9556. "keywords": [
  9557. "base16",
  9558. "base32",
  9559. "base32_decode",
  9560. "base32_encode",
  9561. "base64",
  9562. "base64_decode",
  9563. "base64_encode",
  9564. "bin2hex",
  9565. "encoding",
  9566. "hex",
  9567. "hex2bin",
  9568. "rfc4648"
  9569. ],
  9570. "support": {
  9571. "email": "[email protected]",
  9572. "issues": "https://github.com/paragonie/constant_time_encoding/issues",
  9573. "source": "https://github.com/paragonie/constant_time_encoding"
  9574. },
  9575. "time": "2020-12-06T15:14:20+00:00"
  9576. },
  9577. {
  9578. "name": "paragonie/random_compat",
  9579. "version": "v2.0.19",
  9580. "source": {
  9581. "type": "git",
  9582. "url": "https://github.com/paragonie/random_compat.git",
  9583. "reference": "446fc9faa5c2a9ddf65eb7121c0af7e857295241"
  9584. },
  9585. "dist": {
  9586. "type": "zip",
  9587. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/446fc9faa5c2a9ddf65eb7121c0af7e857295241",
  9588. "reference": "446fc9faa5c2a9ddf65eb7121c0af7e857295241",
  9589. "shasum": ""
  9590. },
  9591. "require": {
  9592. "php": ">=5.2.0"
  9593. },
  9594. "require-dev": {
  9595. "phpunit/phpunit": "4.*|5.*"
  9596. },
  9597. "suggest": {
  9598. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  9599. },
  9600. "type": "library",
  9601. "autoload": {
  9602. "files": [
  9603. "lib/random.php"
  9604. ]
  9605. },
  9606. "notification-url": "https://packagist.org/downloads/",
  9607. "license": [
  9608. "MIT"
  9609. ],
  9610. "authors": [
  9611. {
  9612. "name": "Paragon Initiative Enterprises",
  9613. "email": "[email protected]",
  9614. "homepage": "https://paragonie.com"
  9615. }
  9616. ],
  9617. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  9618. "keywords": [
  9619. "csprng",
  9620. "polyfill",
  9621. "pseudorandom",
  9622. "random"
  9623. ],
  9624. "support": {
  9625. "email": "[email protected]",
  9626. "issues": "https://github.com/paragonie/random_compat/issues",
  9627. "source": "https://github.com/paragonie/random_compat"
  9628. },
  9629. "time": "2020-10-15T10:06:57+00:00"
  9630. },
  9631. {
  9632. "name": "phar-io/manifest",
  9633. "version": "2.0.1",
  9634. "source": {
  9635. "type": "git",
  9636. "url": "https://github.com/phar-io/manifest.git",
  9637. "reference": "85265efd3af7ba3ca4b2a2c34dbfc5788dd29133"
  9638. },
  9639. "dist": {
  9640. "type": "zip",
  9641. "url": "https://api.github.com/repos/phar-io/manifest/zipball/85265efd3af7ba3ca4b2a2c34dbfc5788dd29133",
  9642. "reference": "85265efd3af7ba3ca4b2a2c34dbfc5788dd29133",
  9643. "shasum": ""
  9644. },
  9645. "require": {
  9646. "ext-dom": "*",
  9647. "ext-phar": "*",
  9648. "ext-xmlwriter": "*",
  9649. "phar-io/version": "^3.0.1",
  9650. "php": "^7.2 || ^8.0"
  9651. },
  9652. "type": "library",
  9653. "extra": {
  9654. "branch-alias": {
  9655. "dev-master": "2.0.x-dev"
  9656. }
  9657. },
  9658. "autoload": {
  9659. "classmap": [
  9660. "src/"
  9661. ]
  9662. },
  9663. "notification-url": "https://packagist.org/downloads/",
  9664. "license": [
  9665. "BSD-3-Clause"
  9666. ],
  9667. "authors": [
  9668. {
  9669. "name": "Arne Blankerts",
  9670. "email": "[email protected]",
  9671. "role": "Developer"
  9672. },
  9673. {
  9674. "name": "Sebastian Heuer",
  9675. "email": "[email protected]",
  9676. "role": "Developer"
  9677. },
  9678. {
  9679. "name": "Sebastian Bergmann",
  9680. "email": "[email protected]",
  9681. "role": "Developer"
  9682. }
  9683. ],
  9684. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  9685. "support": {
  9686. "issues": "https://github.com/phar-io/manifest/issues",
  9687. "source": "https://github.com/phar-io/manifest/tree/master"
  9688. },
  9689. "time": "2020-06-27T14:33:11+00:00"
  9690. },
  9691. {
  9692. "name": "phar-io/version",
  9693. "version": "3.0.4",
  9694. "source": {
  9695. "type": "git",
  9696. "url": "https://github.com/phar-io/version.git",
  9697. "reference": "e4782611070e50613683d2b9a57730e9a3ba5451"
  9698. },
  9699. "dist": {
  9700. "type": "zip",
  9701. "url": "https://api.github.com/repos/phar-io/version/zipball/e4782611070e50613683d2b9a57730e9a3ba5451",
  9702. "reference": "e4782611070e50613683d2b9a57730e9a3ba5451",
  9703. "shasum": ""
  9704. },
  9705. "require": {
  9706. "php": "^7.2 || ^8.0"
  9707. },
  9708. "type": "library",
  9709. "autoload": {
  9710. "classmap": [
  9711. "src/"
  9712. ]
  9713. },
  9714. "notification-url": "https://packagist.org/downloads/",
  9715. "license": [
  9716. "BSD-3-Clause"
  9717. ],
  9718. "authors": [
  9719. {
  9720. "name": "Arne Blankerts",
  9721. "email": "[email protected]",
  9722. "role": "Developer"
  9723. },
  9724. {
  9725. "name": "Sebastian Heuer",
  9726. "email": "[email protected]",
  9727. "role": "Developer"
  9728. },
  9729. {
  9730. "name": "Sebastian Bergmann",
  9731. "email": "[email protected]",
  9732. "role": "Developer"
  9733. }
  9734. ],
  9735. "description": "Library for handling version information and constraints",
  9736. "support": {
  9737. "issues": "https://github.com/phar-io/version/issues",
  9738. "source": "https://github.com/phar-io/version/tree/3.0.4"
  9739. },
  9740. "time": "2020-12-13T23:18:30+00:00"
  9741. },
  9742. {
  9743. "name": "phpdocumentor/reflection-common",
  9744. "version": "2.2.0",
  9745. "source": {
  9746. "type": "git",
  9747. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  9748. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b"
  9749. },
  9750. "dist": {
  9751. "type": "zip",
  9752. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  9753. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  9754. "shasum": ""
  9755. },
  9756. "require": {
  9757. "php": "^7.2 || ^8.0"
  9758. },
  9759. "type": "library",
  9760. "extra": {
  9761. "branch-alias": {
  9762. "dev-2.x": "2.x-dev"
  9763. }
  9764. },
  9765. "autoload": {
  9766. "psr-4": {
  9767. "phpDocumentor\\Reflection\\": "src/"
  9768. }
  9769. },
  9770. "notification-url": "https://packagist.org/downloads/",
  9771. "license": [
  9772. "MIT"
  9773. ],
  9774. "authors": [
  9775. {
  9776. "name": "Jaap van Otterdijk",
  9777. "email": "[email protected]"
  9778. }
  9779. ],
  9780. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  9781. "homepage": "http://www.phpdoc.org",
  9782. "keywords": [
  9783. "FQSEN",
  9784. "phpDocumentor",
  9785. "phpdoc",
  9786. "reflection",
  9787. "static analysis"
  9788. ],
  9789. "support": {
  9790. "issues": "https://github.com/phpDocumentor/ReflectionCommon/issues",
  9791. "source": "https://github.com/phpDocumentor/ReflectionCommon/tree/2.x"
  9792. },
  9793. "time": "2020-06-27T09:03:43+00:00"
  9794. },
  9795. {
  9796. "name": "phpdocumentor/reflection-docblock",
  9797. "version": "5.2.2",
  9798. "source": {
  9799. "type": "git",
  9800. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  9801. "reference": "069a785b2141f5bcf49f3e353548dc1cce6df556"
  9802. },
  9803. "dist": {
  9804. "type": "zip",
  9805. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/069a785b2141f5bcf49f3e353548dc1cce6df556",
  9806. "reference": "069a785b2141f5bcf49f3e353548dc1cce6df556",
  9807. "shasum": ""
  9808. },
  9809. "require": {
  9810. "ext-filter": "*",
  9811. "php": "^7.2 || ^8.0",
  9812. "phpdocumentor/reflection-common": "^2.2",
  9813. "phpdocumentor/type-resolver": "^1.3",
  9814. "webmozart/assert": "^1.9.1"
  9815. },
  9816. "require-dev": {
  9817. "mockery/mockery": "~1.3.2"
  9818. },
  9819. "type": "library",
  9820. "extra": {
  9821. "branch-alias": {
  9822. "dev-master": "5.x-dev"
  9823. }
  9824. },
  9825. "autoload": {
  9826. "psr-4": {
  9827. "phpDocumentor\\Reflection\\": "src"
  9828. }
  9829. },
  9830. "notification-url": "https://packagist.org/downloads/",
  9831. "license": [
  9832. "MIT"
  9833. ],
  9834. "authors": [
  9835. {
  9836. "name": "Mike van Riel",
  9837. "email": "[email protected]"
  9838. },
  9839. {
  9840. "name": "Jaap van Otterdijk",
  9841. "email": "[email protected]"
  9842. }
  9843. ],
  9844. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  9845. "support": {
  9846. "issues": "https://github.com/phpDocumentor/ReflectionDocBlock/issues",
  9847. "source": "https://github.com/phpDocumentor/ReflectionDocBlock/tree/master"
  9848. },
  9849. "time": "2020-09-03T19:13:55+00:00"
  9850. },
  9851. {
  9852. "name": "phpdocumentor/type-resolver",
  9853. "version": "1.4.0",
  9854. "source": {
  9855. "type": "git",
  9856. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  9857. "reference": "6a467b8989322d92aa1c8bf2bebcc6e5c2ba55c0"
  9858. },
  9859. "dist": {
  9860. "type": "zip",
  9861. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/6a467b8989322d92aa1c8bf2bebcc6e5c2ba55c0",
  9862. "reference": "6a467b8989322d92aa1c8bf2bebcc6e5c2ba55c0",
  9863. "shasum": ""
  9864. },
  9865. "require": {
  9866. "php": "^7.2 || ^8.0",
  9867. "phpdocumentor/reflection-common": "^2.0"
  9868. },
  9869. "require-dev": {
  9870. "ext-tokenizer": "*"
  9871. },
  9872. "type": "library",
  9873. "extra": {
  9874. "branch-alias": {
  9875. "dev-1.x": "1.x-dev"
  9876. }
  9877. },
  9878. "autoload": {
  9879. "psr-4": {
  9880. "phpDocumentor\\Reflection\\": "src"
  9881. }
  9882. },
  9883. "notification-url": "https://packagist.org/downloads/",
  9884. "license": [
  9885. "MIT"
  9886. ],
  9887. "authors": [
  9888. {
  9889. "name": "Mike van Riel",
  9890. "email": "[email protected]"
  9891. }
  9892. ],
  9893. "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names",
  9894. "support": {
  9895. "issues": "https://github.com/phpDocumentor/TypeResolver/issues",
  9896. "source": "https://github.com/phpDocumentor/TypeResolver/tree/1.4.0"
  9897. },
  9898. "time": "2020-09-17T18:55:26+00:00"
  9899. },
  9900. {
  9901. "name": "phpseclib/bcmath_compat",
  9902. "version": "2.0.0",
  9903. "source": {
  9904. "type": "git",
  9905. "url": "https://github.com/phpseclib/bcmath_compat.git",
  9906. "reference": "fd896dfceffc13d8cf45d2ee3470777a70026f3c"
  9907. },
  9908. "dist": {
  9909. "type": "zip",
  9910. "url": "https://api.github.com/repos/phpseclib/bcmath_compat/zipball/fd896dfceffc13d8cf45d2ee3470777a70026f3c",
  9911. "reference": "fd896dfceffc13d8cf45d2ee3470777a70026f3c",
  9912. "shasum": ""
  9913. },
  9914. "require": {
  9915. "phpseclib/phpseclib": "^3.0"
  9916. },
  9917. "provide": {
  9918. "ext-bcmath": "8.0.0"
  9919. },
  9920. "require-dev": {
  9921. "phpunit/phpunit": "^4.8.35|^5.7|^6.0|^9.4",
  9922. "squizlabs/php_codesniffer": "^3.0"
  9923. },
  9924. "suggest": {
  9925. "ext-gmp": "Will enable faster math operations"
  9926. },
  9927. "type": "library",
  9928. "autoload": {
  9929. "files": [
  9930. "lib/bcmath.php"
  9931. ],
  9932. "psr-4": {
  9933. "bcmath_compat\\": "src"
  9934. }
  9935. },
  9936. "notification-url": "https://packagist.org/downloads/",
  9937. "license": [
  9938. "MIT"
  9939. ],
  9940. "authors": [
  9941. {
  9942. "name": "Jim Wigginton",
  9943. "email": "[email protected]",
  9944. "homepage": "http://phpseclib.sourceforge.net"
  9945. }
  9946. ],
  9947. "description": "PHP 5.x/7.x polyfill for bcmath extension",
  9948. "keywords": [
  9949. "BigInteger",
  9950. "bcmath",
  9951. "bigdecimal",
  9952. "math",
  9953. "polyfill"
  9954. ],
  9955. "support": {
  9956. "email": "[email protected]",
  9957. "issues": "https://github.com/phpseclib/bcmath_compat/issues",
  9958. "source": "https://github.com/phpseclib/bcmath_compat"
  9959. },
  9960. "time": "2020-12-22T16:38:51+00:00"
  9961. },
  9962. {
  9963. "name": "phpseclib/phpseclib",
  9964. "version": "3.0.3",
  9965. "source": {
  9966. "type": "git",
  9967. "url": "https://github.com/phpseclib/phpseclib.git",
  9968. "reference": "97a5a270e4a9ebfc1a7e2f462e917cbce1a8e6d9"
  9969. },
  9970. "dist": {
  9971. "type": "zip",
  9972. "url": "https://api.github.com/repos/phpseclib/phpseclib/zipball/97a5a270e4a9ebfc1a7e2f462e917cbce1a8e6d9",
  9973. "reference": "97a5a270e4a9ebfc1a7e2f462e917cbce1a8e6d9",
  9974. "shasum": ""
  9975. },
  9976. "require": {
  9977. "paragonie/constant_time_encoding": "^1|^2",
  9978. "paragonie/random_compat": "^1.4|^2.0",
  9979. "php": ">=5.6.1"
  9980. },
  9981. "require-dev": {
  9982. "phing/phing": "~2.7",
  9983. "phpunit/phpunit": "^5.7|^6.0|^9.4",
  9984. "squizlabs/php_codesniffer": "~2.0"
  9985. },
  9986. "suggest": {
  9987. "ext-gmp": "Install the GMP (GNU Multiple Precision) extension in order to speed up arbitrary precision integer arithmetic operations.",
  9988. "ext-libsodium": "SSH2/SFTP can make use of some algorithms provided by the libsodium-php extension.",
  9989. "ext-mcrypt": "Install the Mcrypt extension in order to speed up a few other cryptographic operations.",
  9990. "ext-openssl": "Install the OpenSSL extension in order to speed up a wide variety of cryptographic operations."
  9991. },
  9992. "type": "library",
  9993. "autoload": {
  9994. "files": [
  9995. "phpseclib/bootstrap.php"
  9996. ],
  9997. "psr-4": {
  9998. "phpseclib3\\": "phpseclib/"
  9999. }
  10000. },
  10001. "notification-url": "https://packagist.org/downloads/",
  10002. "license": [
  10003. "MIT"
  10004. ],
  10005. "authors": [
  10006. {
  10007. "name": "Jim Wigginton",
  10008. "email": "[email protected]",
  10009. "role": "Lead Developer"
  10010. },
  10011. {
  10012. "name": "Patrick Monnerat",
  10013. "email": "[email protected]",
  10014. "role": "Developer"
  10015. },
  10016. {
  10017. "name": "Andreas Fischer",
  10018. "email": "[email protected]",
  10019. "role": "Developer"
  10020. },
  10021. {
  10022. "name": "Hans-Jürgen Petrich",
  10023. "email": "[email protected]",
  10024. "role": "Developer"
  10025. },
  10026. {
  10027. "name": "Graham Campbell",
  10028. "email": "[email protected]",
  10029. "role": "Developer"
  10030. }
  10031. ],
  10032. "description": "PHP Secure Communications Library - Pure-PHP implementations of RSA, AES, SSH2, SFTP, X.509 etc.",
  10033. "homepage": "http://phpseclib.sourceforge.net",
  10034. "keywords": [
  10035. "BigInteger",
  10036. "aes",
  10037. "asn.1",
  10038. "asn1",
  10039. "blowfish",
  10040. "crypto",
  10041. "cryptography",
  10042. "encryption",
  10043. "rsa",
  10044. "security",
  10045. "sftp",
  10046. "signature",
  10047. "signing",
  10048. "ssh",
  10049. "twofish",
  10050. "x.509",
  10051. "x509"
  10052. ],
  10053. "support": {
  10054. "issues": "https://github.com/phpseclib/phpseclib/issues",
  10055. "source": "https://github.com/phpseclib/phpseclib/tree/3.0.3"
  10056. },
  10057. "funding": [
  10058. {
  10059. "url": "https://github.com/terrafrost",
  10060. "type": "github"
  10061. },
  10062. {
  10063. "url": "https://www.patreon.com/phpseclib",
  10064. "type": "patreon"
  10065. },
  10066. {
  10067. "url": "https://tidelift.com/funding/github/packagist/phpseclib/phpseclib",
  10068. "type": "tidelift"
  10069. }
  10070. ],
  10071. "time": "2021-01-16T17:35:19+00:00"
  10072. },
  10073. {
  10074. "name": "phpspec/prophecy",
  10075. "version": "1.12.2",
  10076. "source": {
  10077. "type": "git",
  10078. "url": "https://github.com/phpspec/prophecy.git",
  10079. "reference": "245710e971a030f42e08f4912863805570f23d39"
  10080. },
  10081. "dist": {
  10082. "type": "zip",
  10083. "url": "https://api.github.com/repos/phpspec/prophecy/zipball/245710e971a030f42e08f4912863805570f23d39",
  10084. "reference": "245710e971a030f42e08f4912863805570f23d39",
  10085. "shasum": ""
  10086. },
  10087. "require": {
  10088. "doctrine/instantiator": "^1.2",
  10089. "php": "^7.2 || ~8.0, <8.1",
  10090. "phpdocumentor/reflection-docblock": "^5.2",
  10091. "sebastian/comparator": "^3.0 || ^4.0",
  10092. "sebastian/recursion-context": "^3.0 || ^4.0"
  10093. },
  10094. "require-dev": {
  10095. "phpspec/phpspec": "^6.0",
  10096. "phpunit/phpunit": "^8.0 || ^9.0"
  10097. },
  10098. "type": "library",
  10099. "extra": {
  10100. "branch-alias": {
  10101. "dev-master": "1.11.x-dev"
  10102. }
  10103. },
  10104. "autoload": {
  10105. "psr-4": {
  10106. "Prophecy\\": "src/Prophecy"
  10107. }
  10108. },
  10109. "notification-url": "https://packagist.org/downloads/",
  10110. "license": [
  10111. "MIT"
  10112. ],
  10113. "authors": [
  10114. {
  10115. "name": "Konstantin Kudryashov",
  10116. "email": "[email protected]",
  10117. "homepage": "http://everzet.com"
  10118. },
  10119. {
  10120. "name": "Marcello Duarte",
  10121. "email": "[email protected]"
  10122. }
  10123. ],
  10124. "description": "Highly opinionated mocking framework for PHP 5.3+",
  10125. "homepage": "https://github.com/phpspec/prophecy",
  10126. "keywords": [
  10127. "Double",
  10128. "Dummy",
  10129. "fake",
  10130. "mock",
  10131. "spy",
  10132. "stub"
  10133. ],
  10134. "support": {
  10135. "issues": "https://github.com/phpspec/prophecy/issues",
  10136. "source": "https://github.com/phpspec/prophecy/tree/1.12.2"
  10137. },
  10138. "time": "2020-12-19T10:15:11+00:00"
  10139. },
  10140. {
  10141. "name": "phpunit/php-code-coverage",
  10142. "version": "9.2.5",
  10143. "source": {
  10144. "type": "git",
  10145. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  10146. "reference": "f3e026641cc91909d421802dd3ac7827ebfd97e1"
  10147. },
  10148. "dist": {
  10149. "type": "zip",
  10150. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/f3e026641cc91909d421802dd3ac7827ebfd97e1",
  10151. "reference": "f3e026641cc91909d421802dd3ac7827ebfd97e1",
  10152. "shasum": ""
  10153. },
  10154. "require": {
  10155. "ext-dom": "*",
  10156. "ext-libxml": "*",
  10157. "ext-xmlwriter": "*",
  10158. "nikic/php-parser": "^4.10.2",
  10159. "php": ">=7.3",
  10160. "phpunit/php-file-iterator": "^3.0.3",
  10161. "phpunit/php-text-template": "^2.0.2",
  10162. "sebastian/code-unit-reverse-lookup": "^2.0.2",
  10163. "sebastian/complexity": "^2.0",
  10164. "sebastian/environment": "^5.1.2",
  10165. "sebastian/lines-of-code": "^1.0.3",
  10166. "sebastian/version": "^3.0.1",
  10167. "theseer/tokenizer": "^1.2.0"
  10168. },
  10169. "require-dev": {
  10170. "phpunit/phpunit": "^9.3"
  10171. },
  10172. "suggest": {
  10173. "ext-pcov": "*",
  10174. "ext-xdebug": "*"
  10175. },
  10176. "type": "library",
  10177. "extra": {
  10178. "branch-alias": {
  10179. "dev-master": "9.2-dev"
  10180. }
  10181. },
  10182. "autoload": {
  10183. "classmap": [
  10184. "src/"
  10185. ]
  10186. },
  10187. "notification-url": "https://packagist.org/downloads/",
  10188. "license": [
  10189. "BSD-3-Clause"
  10190. ],
  10191. "authors": [
  10192. {
  10193. "name": "Sebastian Bergmann",
  10194. "email": "[email protected]",
  10195. "role": "lead"
  10196. }
  10197. ],
  10198. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  10199. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  10200. "keywords": [
  10201. "coverage",
  10202. "testing",
  10203. "xunit"
  10204. ],
  10205. "support": {
  10206. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  10207. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/9.2.5"
  10208. },
  10209. "funding": [
  10210. {
  10211. "url": "https://github.com/sebastianbergmann",
  10212. "type": "github"
  10213. }
  10214. ],
  10215. "time": "2020-11-28T06:44:49+00:00"
  10216. },
  10217. {
  10218. "name": "phpunit/php-file-iterator",
  10219. "version": "3.0.5",
  10220. "source": {
  10221. "type": "git",
  10222. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  10223. "reference": "aa4be8575f26070b100fccb67faabb28f21f66f8"
  10224. },
  10225. "dist": {
  10226. "type": "zip",
  10227. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/aa4be8575f26070b100fccb67faabb28f21f66f8",
  10228. "reference": "aa4be8575f26070b100fccb67faabb28f21f66f8",
  10229. "shasum": ""
  10230. },
  10231. "require": {
  10232. "php": ">=7.3"
  10233. },
  10234. "require-dev": {
  10235. "phpunit/phpunit": "^9.3"
  10236. },
  10237. "type": "library",
  10238. "extra": {
  10239. "branch-alias": {
  10240. "dev-master": "3.0-dev"
  10241. }
  10242. },
  10243. "autoload": {
  10244. "classmap": [
  10245. "src/"
  10246. ]
  10247. },
  10248. "notification-url": "https://packagist.org/downloads/",
  10249. "license": [
  10250. "BSD-3-Clause"
  10251. ],
  10252. "authors": [
  10253. {
  10254. "name": "Sebastian Bergmann",
  10255. "email": "[email protected]",
  10256. "role": "lead"
  10257. }
  10258. ],
  10259. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  10260. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  10261. "keywords": [
  10262. "filesystem",
  10263. "iterator"
  10264. ],
  10265. "support": {
  10266. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  10267. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/3.0.5"
  10268. },
  10269. "funding": [
  10270. {
  10271. "url": "https://github.com/sebastianbergmann",
  10272. "type": "github"
  10273. }
  10274. ],
  10275. "time": "2020-09-28T05:57:25+00:00"
  10276. },
  10277. {
  10278. "name": "phpunit/php-invoker",
  10279. "version": "3.1.1",
  10280. "source": {
  10281. "type": "git",
  10282. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  10283. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67"
  10284. },
  10285. "dist": {
  10286. "type": "zip",
  10287. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  10288. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  10289. "shasum": ""
  10290. },
  10291. "require": {
  10292. "php": ">=7.3"
  10293. },
  10294. "require-dev": {
  10295. "ext-pcntl": "*",
  10296. "phpunit/phpunit": "^9.3"
  10297. },
  10298. "suggest": {
  10299. "ext-pcntl": "*"
  10300. },
  10301. "type": "library",
  10302. "extra": {
  10303. "branch-alias": {
  10304. "dev-master": "3.1-dev"
  10305. }
  10306. },
  10307. "autoload": {
  10308. "classmap": [
  10309. "src/"
  10310. ]
  10311. },
  10312. "notification-url": "https://packagist.org/downloads/",
  10313. "license": [
  10314. "BSD-3-Clause"
  10315. ],
  10316. "authors": [
  10317. {
  10318. "name": "Sebastian Bergmann",
  10319. "email": "[email protected]",
  10320. "role": "lead"
  10321. }
  10322. ],
  10323. "description": "Invoke callables with a timeout",
  10324. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  10325. "keywords": [
  10326. "process"
  10327. ],
  10328. "support": {
  10329. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  10330. "source": "https://github.com/sebastianbergmann/php-invoker/tree/3.1.1"
  10331. },
  10332. "funding": [
  10333. {
  10334. "url": "https://github.com/sebastianbergmann",
  10335. "type": "github"
  10336. }
  10337. ],
  10338. "time": "2020-09-28T05:58:55+00:00"
  10339. },
  10340. {
  10341. "name": "phpunit/php-text-template",
  10342. "version": "2.0.4",
  10343. "source": {
  10344. "type": "git",
  10345. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  10346. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28"
  10347. },
  10348. "dist": {
  10349. "type": "zip",
  10350. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  10351. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  10352. "shasum": ""
  10353. },
  10354. "require": {
  10355. "php": ">=7.3"
  10356. },
  10357. "require-dev": {
  10358. "phpunit/phpunit": "^9.3"
  10359. },
  10360. "type": "library",
  10361. "extra": {
  10362. "branch-alias": {
  10363. "dev-master": "2.0-dev"
  10364. }
  10365. },
  10366. "autoload": {
  10367. "classmap": [
  10368. "src/"
  10369. ]
  10370. },
  10371. "notification-url": "https://packagist.org/downloads/",
  10372. "license": [
  10373. "BSD-3-Clause"
  10374. ],
  10375. "authors": [
  10376. {
  10377. "name": "Sebastian Bergmann",
  10378. "email": "[email protected]",
  10379. "role": "lead"
  10380. }
  10381. ],
  10382. "description": "Simple template engine.",
  10383. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  10384. "keywords": [
  10385. "template"
  10386. ],
  10387. "support": {
  10388. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  10389. "source": "https://github.com/sebastianbergmann/php-text-template/tree/2.0.4"
  10390. },
  10391. "funding": [
  10392. {
  10393. "url": "https://github.com/sebastianbergmann",
  10394. "type": "github"
  10395. }
  10396. ],
  10397. "time": "2020-10-26T05:33:50+00:00"
  10398. },
  10399. {
  10400. "name": "phpunit/php-timer",
  10401. "version": "5.0.3",
  10402. "source": {
  10403. "type": "git",
  10404. "url": "https://github.com/sebastianbergmann/php-timer.git",
  10405. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2"
  10406. },
  10407. "dist": {
  10408. "type": "zip",
  10409. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  10410. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  10411. "shasum": ""
  10412. },
  10413. "require": {
  10414. "php": ">=7.3"
  10415. },
  10416. "require-dev": {
  10417. "phpunit/phpunit": "^9.3"
  10418. },
  10419. "type": "library",
  10420. "extra": {
  10421. "branch-alias": {
  10422. "dev-master": "5.0-dev"
  10423. }
  10424. },
  10425. "autoload": {
  10426. "classmap": [
  10427. "src/"
  10428. ]
  10429. },
  10430. "notification-url": "https://packagist.org/downloads/",
  10431. "license": [
  10432. "BSD-3-Clause"
  10433. ],
  10434. "authors": [
  10435. {
  10436. "name": "Sebastian Bergmann",
  10437. "email": "[email protected]",
  10438. "role": "lead"
  10439. }
  10440. ],
  10441. "description": "Utility class for timing",
  10442. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  10443. "keywords": [
  10444. "timer"
  10445. ],
  10446. "support": {
  10447. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  10448. "source": "https://github.com/sebastianbergmann/php-timer/tree/5.0.3"
  10449. },
  10450. "funding": [
  10451. {
  10452. "url": "https://github.com/sebastianbergmann",
  10453. "type": "github"
  10454. }
  10455. ],
  10456. "time": "2020-10-26T13:16:10+00:00"
  10457. },
  10458. {
  10459. "name": "phpunit/phpunit",
  10460. "version": "9.5.1",
  10461. "source": {
  10462. "type": "git",
  10463. "url": "https://github.com/sebastianbergmann/phpunit.git",
  10464. "reference": "e7bdf4085de85a825f4424eae52c99a1cec2f360"
  10465. },
  10466. "dist": {
  10467. "type": "zip",
  10468. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/e7bdf4085de85a825f4424eae52c99a1cec2f360",
  10469. "reference": "e7bdf4085de85a825f4424eae52c99a1cec2f360",
  10470. "shasum": ""
  10471. },
  10472. "require": {
  10473. "doctrine/instantiator": "^1.3.1",
  10474. "ext-dom": "*",
  10475. "ext-json": "*",
  10476. "ext-libxml": "*",
  10477. "ext-mbstring": "*",
  10478. "ext-xml": "*",
  10479. "ext-xmlwriter": "*",
  10480. "myclabs/deep-copy": "^1.10.1",
  10481. "phar-io/manifest": "^2.0.1",
  10482. "phar-io/version": "^3.0.2",
  10483. "php": ">=7.3",
  10484. "phpspec/prophecy": "^1.12.1",
  10485. "phpunit/php-code-coverage": "^9.2.3",
  10486. "phpunit/php-file-iterator": "^3.0.5",
  10487. "phpunit/php-invoker": "^3.1.1",
  10488. "phpunit/php-text-template": "^2.0.3",
  10489. "phpunit/php-timer": "^5.0.2",
  10490. "sebastian/cli-parser": "^1.0.1",
  10491. "sebastian/code-unit": "^1.0.6",
  10492. "sebastian/comparator": "^4.0.5",
  10493. "sebastian/diff": "^4.0.3",
  10494. "sebastian/environment": "^5.1.3",
  10495. "sebastian/exporter": "^4.0.3",
  10496. "sebastian/global-state": "^5.0.1",
  10497. "sebastian/object-enumerator": "^4.0.3",
  10498. "sebastian/resource-operations": "^3.0.3",
  10499. "sebastian/type": "^2.3",
  10500. "sebastian/version": "^3.0.2"
  10501. },
  10502. "require-dev": {
  10503. "ext-pdo": "*",
  10504. "phpspec/prophecy-phpunit": "^2.0.1"
  10505. },
  10506. "suggest": {
  10507. "ext-soap": "*",
  10508. "ext-xdebug": "*"
  10509. },
  10510. "bin": [
  10511. "phpunit"
  10512. ],
  10513. "type": "library",
  10514. "extra": {
  10515. "branch-alias": {
  10516. "dev-master": "9.5-dev"
  10517. }
  10518. },
  10519. "autoload": {
  10520. "classmap": [
  10521. "src/"
  10522. ],
  10523. "files": [
  10524. "src/Framework/Assert/Functions.php"
  10525. ]
  10526. },
  10527. "notification-url": "https://packagist.org/downloads/",
  10528. "license": [
  10529. "BSD-3-Clause"
  10530. ],
  10531. "authors": [
  10532. {
  10533. "name": "Sebastian Bergmann",
  10534. "email": "[email protected]",
  10535. "role": "lead"
  10536. }
  10537. ],
  10538. "description": "The PHP Unit Testing framework.",
  10539. "homepage": "https://phpunit.de/",
  10540. "keywords": [
  10541. "phpunit",
  10542. "testing",
  10543. "xunit"
  10544. ],
  10545. "support": {
  10546. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  10547. "source": "https://github.com/sebastianbergmann/phpunit/tree/9.5.1"
  10548. },
  10549. "funding": [
  10550. {
  10551. "url": "https://phpunit.de/donate.html",
  10552. "type": "custom"
  10553. },
  10554. {
  10555. "url": "https://github.com/sebastianbergmann",
  10556. "type": "github"
  10557. }
  10558. ],
  10559. "time": "2021-01-17T07:42:25+00:00"
  10560. },
  10561. {
  10562. "name": "react/promise",
  10563. "version": "v2.8.0",
  10564. "source": {
  10565. "type": "git",
  10566. "url": "https://github.com/reactphp/promise.git",
  10567. "reference": "f3cff96a19736714524ca0dd1d4130de73dbbbc4"
  10568. },
  10569. "dist": {
  10570. "type": "zip",
  10571. "url": "https://api.github.com/repos/reactphp/promise/zipball/f3cff96a19736714524ca0dd1d4130de73dbbbc4",
  10572. "reference": "f3cff96a19736714524ca0dd1d4130de73dbbbc4",
  10573. "shasum": ""
  10574. },
  10575. "require": {
  10576. "php": ">=5.4.0"
  10577. },
  10578. "require-dev": {
  10579. "phpunit/phpunit": "^7.0 || ^6.5 || ^5.7 || ^4.8.36"
  10580. },
  10581. "type": "library",
  10582. "autoload": {
  10583. "psr-4": {
  10584. "React\\Promise\\": "src/"
  10585. },
  10586. "files": [
  10587. "src/functions_include.php"
  10588. ]
  10589. },
  10590. "notification-url": "https://packagist.org/downloads/",
  10591. "license": [
  10592. "MIT"
  10593. ],
  10594. "authors": [
  10595. {
  10596. "name": "Jan Sorgalla",
  10597. "email": "[email protected]"
  10598. }
  10599. ],
  10600. "description": "A lightweight implementation of CommonJS Promises/A for PHP",
  10601. "keywords": [
  10602. "promise",
  10603. "promises"
  10604. ],
  10605. "support": {
  10606. "issues": "https://github.com/reactphp/promise/issues",
  10607. "source": "https://github.com/reactphp/promise/tree/v2.8.0"
  10608. },
  10609. "time": "2020-05-12T15:16:56+00:00"
  10610. },
  10611. {
  10612. "name": "sebastian/cli-parser",
  10613. "version": "1.0.1",
  10614. "source": {
  10615. "type": "git",
  10616. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  10617. "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2"
  10618. },
  10619. "dist": {
  10620. "type": "zip",
  10621. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/442e7c7e687e42adc03470c7b668bc4b2402c0b2",
  10622. "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2",
  10623. "shasum": ""
  10624. },
  10625. "require": {
  10626. "php": ">=7.3"
  10627. },
  10628. "require-dev": {
  10629. "phpunit/phpunit": "^9.3"
  10630. },
  10631. "type": "library",
  10632. "extra": {
  10633. "branch-alias": {
  10634. "dev-master": "1.0-dev"
  10635. }
  10636. },
  10637. "autoload": {
  10638. "classmap": [
  10639. "src/"
  10640. ]
  10641. },
  10642. "notification-url": "https://packagist.org/downloads/",
  10643. "license": [
  10644. "BSD-3-Clause"
  10645. ],
  10646. "authors": [
  10647. {
  10648. "name": "Sebastian Bergmann",
  10649. "email": "[email protected]",
  10650. "role": "lead"
  10651. }
  10652. ],
  10653. "description": "Library for parsing CLI options",
  10654. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  10655. "support": {
  10656. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  10657. "source": "https://github.com/sebastianbergmann/cli-parser/tree/1.0.1"
  10658. },
  10659. "funding": [
  10660. {
  10661. "url": "https://github.com/sebastianbergmann",
  10662. "type": "github"
  10663. }
  10664. ],
  10665. "time": "2020-09-28T06:08:49+00:00"
  10666. },
  10667. {
  10668. "name": "sebastian/code-unit",
  10669. "version": "1.0.8",
  10670. "source": {
  10671. "type": "git",
  10672. "url": "https://github.com/sebastianbergmann/code-unit.git",
  10673. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120"
  10674. },
  10675. "dist": {
  10676. "type": "zip",
  10677. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/1fc9f64c0927627ef78ba436c9b17d967e68e120",
  10678. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120",
  10679. "shasum": ""
  10680. },
  10681. "require": {
  10682. "php": ">=7.3"
  10683. },
  10684. "require-dev": {
  10685. "phpunit/phpunit": "^9.3"
  10686. },
  10687. "type": "library",
  10688. "extra": {
  10689. "branch-alias": {
  10690. "dev-master": "1.0-dev"
  10691. }
  10692. },
  10693. "autoload": {
  10694. "classmap": [
  10695. "src/"
  10696. ]
  10697. },
  10698. "notification-url": "https://packagist.org/downloads/",
  10699. "license": [
  10700. "BSD-3-Clause"
  10701. ],
  10702. "authors": [
  10703. {
  10704. "name": "Sebastian Bergmann",
  10705. "email": "[email protected]",
  10706. "role": "lead"
  10707. }
  10708. ],
  10709. "description": "Collection of value objects that represent the PHP code units",
  10710. "homepage": "https://github.com/sebastianbergmann/code-unit",
  10711. "support": {
  10712. "issues": "https://github.com/sebastianbergmann/code-unit/issues",
  10713. "source": "https://github.com/sebastianbergmann/code-unit/tree/1.0.8"
  10714. },
  10715. "funding": [
  10716. {
  10717. "url": "https://github.com/sebastianbergmann",
  10718. "type": "github"
  10719. }
  10720. ],
  10721. "time": "2020-10-26T13:08:54+00:00"
  10722. },
  10723. {
  10724. "name": "sebastian/code-unit-reverse-lookup",
  10725. "version": "2.0.3",
  10726. "source": {
  10727. "type": "git",
  10728. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  10729. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5"
  10730. },
  10731. "dist": {
  10732. "type": "zip",
  10733. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  10734. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  10735. "shasum": ""
  10736. },
  10737. "require": {
  10738. "php": ">=7.3"
  10739. },
  10740. "require-dev": {
  10741. "phpunit/phpunit": "^9.3"
  10742. },
  10743. "type": "library",
  10744. "extra": {
  10745. "branch-alias": {
  10746. "dev-master": "2.0-dev"
  10747. }
  10748. },
  10749. "autoload": {
  10750. "classmap": [
  10751. "src/"
  10752. ]
  10753. },
  10754. "notification-url": "https://packagist.org/downloads/",
  10755. "license": [
  10756. "BSD-3-Clause"
  10757. ],
  10758. "authors": [
  10759. {
  10760. "name": "Sebastian Bergmann",
  10761. "email": "[email protected]"
  10762. }
  10763. ],
  10764. "description": "Looks up which function or method a line of code belongs to",
  10765. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  10766. "support": {
  10767. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  10768. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/2.0.3"
  10769. },
  10770. "funding": [
  10771. {
  10772. "url": "https://github.com/sebastianbergmann",
  10773. "type": "github"
  10774. }
  10775. ],
  10776. "time": "2020-09-28T05:30:19+00:00"
  10777. },
  10778. {
  10779. "name": "sebastian/comparator",
  10780. "version": "4.0.6",
  10781. "source": {
  10782. "type": "git",
  10783. "url": "https://github.com/sebastianbergmann/comparator.git",
  10784. "reference": "55f4261989e546dc112258c7a75935a81a7ce382"
  10785. },
  10786. "dist": {
  10787. "type": "zip",
  10788. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/55f4261989e546dc112258c7a75935a81a7ce382",
  10789. "reference": "55f4261989e546dc112258c7a75935a81a7ce382",
  10790. "shasum": ""
  10791. },
  10792. "require": {
  10793. "php": ">=7.3",
  10794. "sebastian/diff": "^4.0",
  10795. "sebastian/exporter": "^4.0"
  10796. },
  10797. "require-dev": {
  10798. "phpunit/phpunit": "^9.3"
  10799. },
  10800. "type": "library",
  10801. "extra": {
  10802. "branch-alias": {
  10803. "dev-master": "4.0-dev"
  10804. }
  10805. },
  10806. "autoload": {
  10807. "classmap": [
  10808. "src/"
  10809. ]
  10810. },
  10811. "notification-url": "https://packagist.org/downloads/",
  10812. "license": [
  10813. "BSD-3-Clause"
  10814. ],
  10815. "authors": [
  10816. {
  10817. "name": "Sebastian Bergmann",
  10818. "email": "[email protected]"
  10819. },
  10820. {
  10821. "name": "Jeff Welch",
  10822. "email": "[email protected]"
  10823. },
  10824. {
  10825. "name": "Volker Dusch",
  10826. "email": "[email protected]"
  10827. },
  10828. {
  10829. "name": "Bernhard Schussek",
  10830. "email": "[email protected]"
  10831. }
  10832. ],
  10833. "description": "Provides the functionality to compare PHP values for equality",
  10834. "homepage": "https://github.com/sebastianbergmann/comparator",
  10835. "keywords": [
  10836. "comparator",
  10837. "compare",
  10838. "equality"
  10839. ],
  10840. "support": {
  10841. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  10842. "source": "https://github.com/sebastianbergmann/comparator/tree/4.0.6"
  10843. },
  10844. "funding": [
  10845. {
  10846. "url": "https://github.com/sebastianbergmann",
  10847. "type": "github"
  10848. }
  10849. ],
  10850. "time": "2020-10-26T15:49:45+00:00"
  10851. },
  10852. {
  10853. "name": "sebastian/complexity",
  10854. "version": "2.0.2",
  10855. "source": {
  10856. "type": "git",
  10857. "url": "https://github.com/sebastianbergmann/complexity.git",
  10858. "reference": "739b35e53379900cc9ac327b2147867b8b6efd88"
  10859. },
  10860. "dist": {
  10861. "type": "zip",
  10862. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/739b35e53379900cc9ac327b2147867b8b6efd88",
  10863. "reference": "739b35e53379900cc9ac327b2147867b8b6efd88",
  10864. "shasum": ""
  10865. },
  10866. "require": {
  10867. "nikic/php-parser": "^4.7",
  10868. "php": ">=7.3"
  10869. },
  10870. "require-dev": {
  10871. "phpunit/phpunit": "^9.3"
  10872. },
  10873. "type": "library",
  10874. "extra": {
  10875. "branch-alias": {
  10876. "dev-master": "2.0-dev"
  10877. }
  10878. },
  10879. "autoload": {
  10880. "classmap": [
  10881. "src/"
  10882. ]
  10883. },
  10884. "notification-url": "https://packagist.org/downloads/",
  10885. "license": [
  10886. "BSD-3-Clause"
  10887. ],
  10888. "authors": [
  10889. {
  10890. "name": "Sebastian Bergmann",
  10891. "email": "[email protected]",
  10892. "role": "lead"
  10893. }
  10894. ],
  10895. "description": "Library for calculating the complexity of PHP code units",
  10896. "homepage": "https://github.com/sebastianbergmann/complexity",
  10897. "support": {
  10898. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  10899. "source": "https://github.com/sebastianbergmann/complexity/tree/2.0.2"
  10900. },
  10901. "funding": [
  10902. {
  10903. "url": "https://github.com/sebastianbergmann",
  10904. "type": "github"
  10905. }
  10906. ],
  10907. "time": "2020-10-26T15:52:27+00:00"
  10908. },
  10909. {
  10910. "name": "sebastian/diff",
  10911. "version": "4.0.4",
  10912. "source": {
  10913. "type": "git",
  10914. "url": "https://github.com/sebastianbergmann/diff.git",
  10915. "reference": "3461e3fccc7cfdfc2720be910d3bd73c69be590d"
  10916. },
  10917. "dist": {
  10918. "type": "zip",
  10919. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/3461e3fccc7cfdfc2720be910d3bd73c69be590d",
  10920. "reference": "3461e3fccc7cfdfc2720be910d3bd73c69be590d",
  10921. "shasum": ""
  10922. },
  10923. "require": {
  10924. "php": ">=7.3"
  10925. },
  10926. "require-dev": {
  10927. "phpunit/phpunit": "^9.3",
  10928. "symfony/process": "^4.2 || ^5"
  10929. },
  10930. "type": "library",
  10931. "extra": {
  10932. "branch-alias": {
  10933. "dev-master": "4.0-dev"
  10934. }
  10935. },
  10936. "autoload": {
  10937. "classmap": [
  10938. "src/"
  10939. ]
  10940. },
  10941. "notification-url": "https://packagist.org/downloads/",
  10942. "license": [
  10943. "BSD-3-Clause"
  10944. ],
  10945. "authors": [
  10946. {
  10947. "name": "Sebastian Bergmann",
  10948. "email": "[email protected]"
  10949. },
  10950. {
  10951. "name": "Kore Nordmann",
  10952. "email": "[email protected]"
  10953. }
  10954. ],
  10955. "description": "Diff implementation",
  10956. "homepage": "https://github.com/sebastianbergmann/diff",
  10957. "keywords": [
  10958. "diff",
  10959. "udiff",
  10960. "unidiff",
  10961. "unified diff"
  10962. ],
  10963. "support": {
  10964. "issues": "https://github.com/sebastianbergmann/diff/issues",
  10965. "source": "https://github.com/sebastianbergmann/diff/tree/4.0.4"
  10966. },
  10967. "funding": [
  10968. {
  10969. "url": "https://github.com/sebastianbergmann",
  10970. "type": "github"
  10971. }
  10972. ],
  10973. "time": "2020-10-26T13:10:38+00:00"
  10974. },
  10975. {
  10976. "name": "sebastian/environment",
  10977. "version": "5.1.3",
  10978. "source": {
  10979. "type": "git",
  10980. "url": "https://github.com/sebastianbergmann/environment.git",
  10981. "reference": "388b6ced16caa751030f6a69e588299fa09200ac"
  10982. },
  10983. "dist": {
  10984. "type": "zip",
  10985. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/388b6ced16caa751030f6a69e588299fa09200ac",
  10986. "reference": "388b6ced16caa751030f6a69e588299fa09200ac",
  10987. "shasum": ""
  10988. },
  10989. "require": {
  10990. "php": ">=7.3"
  10991. },
  10992. "require-dev": {
  10993. "phpunit/phpunit": "^9.3"
  10994. },
  10995. "suggest": {
  10996. "ext-posix": "*"
  10997. },
  10998. "type": "library",
  10999. "extra": {
  11000. "branch-alias": {
  11001. "dev-master": "5.1-dev"
  11002. }
  11003. },
  11004. "autoload": {
  11005. "classmap": [
  11006. "src/"
  11007. ]
  11008. },
  11009. "notification-url": "https://packagist.org/downloads/",
  11010. "license": [
  11011. "BSD-3-Clause"
  11012. ],
  11013. "authors": [
  11014. {
  11015. "name": "Sebastian Bergmann",
  11016. "email": "[email protected]"
  11017. }
  11018. ],
  11019. "description": "Provides functionality to handle HHVM/PHP environments",
  11020. "homepage": "http://www.github.com/sebastianbergmann/environment",
  11021. "keywords": [
  11022. "Xdebug",
  11023. "environment",
  11024. "hhvm"
  11025. ],
  11026. "support": {
  11027. "issues": "https://github.com/sebastianbergmann/environment/issues",
  11028. "source": "https://github.com/sebastianbergmann/environment/tree/5.1.3"
  11029. },
  11030. "funding": [
  11031. {
  11032. "url": "https://github.com/sebastianbergmann",
  11033. "type": "github"
  11034. }
  11035. ],
  11036. "time": "2020-09-28T05:52:38+00:00"
  11037. },
  11038. {
  11039. "name": "sebastian/exporter",
  11040. "version": "4.0.3",
  11041. "source": {
  11042. "type": "git",
  11043. "url": "https://github.com/sebastianbergmann/exporter.git",
  11044. "reference": "d89cc98761b8cb5a1a235a6b703ae50d34080e65"
  11045. },
  11046. "dist": {
  11047. "type": "zip",
  11048. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/d89cc98761b8cb5a1a235a6b703ae50d34080e65",
  11049. "reference": "d89cc98761b8cb5a1a235a6b703ae50d34080e65",
  11050. "shasum": ""
  11051. },
  11052. "require": {
  11053. "php": ">=7.3",
  11054. "sebastian/recursion-context": "^4.0"
  11055. },
  11056. "require-dev": {
  11057. "ext-mbstring": "*",
  11058. "phpunit/phpunit": "^9.3"
  11059. },
  11060. "type": "library",
  11061. "extra": {
  11062. "branch-alias": {
  11063. "dev-master": "4.0-dev"
  11064. }
  11065. },
  11066. "autoload": {
  11067. "classmap": [
  11068. "src/"
  11069. ]
  11070. },
  11071. "notification-url": "https://packagist.org/downloads/",
  11072. "license": [
  11073. "BSD-3-Clause"
  11074. ],
  11075. "authors": [
  11076. {
  11077. "name": "Sebastian Bergmann",
  11078. "email": "[email protected]"
  11079. },
  11080. {
  11081. "name": "Jeff Welch",
  11082. "email": "[email protected]"
  11083. },
  11084. {
  11085. "name": "Volker Dusch",
  11086. "email": "[email protected]"
  11087. },
  11088. {
  11089. "name": "Adam Harvey",
  11090. "email": "[email protected]"
  11091. },
  11092. {
  11093. "name": "Bernhard Schussek",
  11094. "email": "[email protected]"
  11095. }
  11096. ],
  11097. "description": "Provides the functionality to export PHP variables for visualization",
  11098. "homepage": "http://www.github.com/sebastianbergmann/exporter",
  11099. "keywords": [
  11100. "export",
  11101. "exporter"
  11102. ],
  11103. "support": {
  11104. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  11105. "source": "https://github.com/sebastianbergmann/exporter/tree/4.0.3"
  11106. },
  11107. "funding": [
  11108. {
  11109. "url": "https://github.com/sebastianbergmann",
  11110. "type": "github"
  11111. }
  11112. ],
  11113. "time": "2020-09-28T05:24:23+00:00"
  11114. },
  11115. {
  11116. "name": "sebastian/global-state",
  11117. "version": "5.0.2",
  11118. "source": {
  11119. "type": "git",
  11120. "url": "https://github.com/sebastianbergmann/global-state.git",
  11121. "reference": "a90ccbddffa067b51f574dea6eb25d5680839455"
  11122. },
  11123. "dist": {
  11124. "type": "zip",
  11125. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/a90ccbddffa067b51f574dea6eb25d5680839455",
  11126. "reference": "a90ccbddffa067b51f574dea6eb25d5680839455",
  11127. "shasum": ""
  11128. },
  11129. "require": {
  11130. "php": ">=7.3",
  11131. "sebastian/object-reflector": "^2.0",
  11132. "sebastian/recursion-context": "^4.0"
  11133. },
  11134. "require-dev": {
  11135. "ext-dom": "*",
  11136. "phpunit/phpunit": "^9.3"
  11137. },
  11138. "suggest": {
  11139. "ext-uopz": "*"
  11140. },
  11141. "type": "library",
  11142. "extra": {
  11143. "branch-alias": {
  11144. "dev-master": "5.0-dev"
  11145. }
  11146. },
  11147. "autoload": {
  11148. "classmap": [
  11149. "src/"
  11150. ]
  11151. },
  11152. "notification-url": "https://packagist.org/downloads/",
  11153. "license": [
  11154. "BSD-3-Clause"
  11155. ],
  11156. "authors": [
  11157. {
  11158. "name": "Sebastian Bergmann",
  11159. "email": "[email protected]"
  11160. }
  11161. ],
  11162. "description": "Snapshotting of global state",
  11163. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  11164. "keywords": [
  11165. "global state"
  11166. ],
  11167. "support": {
  11168. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  11169. "source": "https://github.com/sebastianbergmann/global-state/tree/5.0.2"
  11170. },
  11171. "funding": [
  11172. {
  11173. "url": "https://github.com/sebastianbergmann",
  11174. "type": "github"
  11175. }
  11176. ],
  11177. "time": "2020-10-26T15:55:19+00:00"
  11178. },
  11179. {
  11180. "name": "sebastian/lines-of-code",
  11181. "version": "1.0.3",
  11182. "source": {
  11183. "type": "git",
  11184. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  11185. "reference": "c1c2e997aa3146983ed888ad08b15470a2e22ecc"
  11186. },
  11187. "dist": {
  11188. "type": "zip",
  11189. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/c1c2e997aa3146983ed888ad08b15470a2e22ecc",
  11190. "reference": "c1c2e997aa3146983ed888ad08b15470a2e22ecc",
  11191. "shasum": ""
  11192. },
  11193. "require": {
  11194. "nikic/php-parser": "^4.6",
  11195. "php": ">=7.3"
  11196. },
  11197. "require-dev": {
  11198. "phpunit/phpunit": "^9.3"
  11199. },
  11200. "type": "library",
  11201. "extra": {
  11202. "branch-alias": {
  11203. "dev-master": "1.0-dev"
  11204. }
  11205. },
  11206. "autoload": {
  11207. "classmap": [
  11208. "src/"
  11209. ]
  11210. },
  11211. "notification-url": "https://packagist.org/downloads/",
  11212. "license": [
  11213. "BSD-3-Clause"
  11214. ],
  11215. "authors": [
  11216. {
  11217. "name": "Sebastian Bergmann",
  11218. "email": "[email protected]",
  11219. "role": "lead"
  11220. }
  11221. ],
  11222. "description": "Library for counting the lines of code in PHP source code",
  11223. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  11224. "support": {
  11225. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  11226. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/1.0.3"
  11227. },
  11228. "funding": [
  11229. {
  11230. "url": "https://github.com/sebastianbergmann",
  11231. "type": "github"
  11232. }
  11233. ],
  11234. "time": "2020-11-28T06:42:11+00:00"
  11235. },
  11236. {
  11237. "name": "sebastian/object-enumerator",
  11238. "version": "4.0.4",
  11239. "source": {
  11240. "type": "git",
  11241. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  11242. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71"
  11243. },
  11244. "dist": {
  11245. "type": "zip",
  11246. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/5c9eeac41b290a3712d88851518825ad78f45c71",
  11247. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71",
  11248. "shasum": ""
  11249. },
  11250. "require": {
  11251. "php": ">=7.3",
  11252. "sebastian/object-reflector": "^2.0",
  11253. "sebastian/recursion-context": "^4.0"
  11254. },
  11255. "require-dev": {
  11256. "phpunit/phpunit": "^9.3"
  11257. },
  11258. "type": "library",
  11259. "extra": {
  11260. "branch-alias": {
  11261. "dev-master": "4.0-dev"
  11262. }
  11263. },
  11264. "autoload": {
  11265. "classmap": [
  11266. "src/"
  11267. ]
  11268. },
  11269. "notification-url": "https://packagist.org/downloads/",
  11270. "license": [
  11271. "BSD-3-Clause"
  11272. ],
  11273. "authors": [
  11274. {
  11275. "name": "Sebastian Bergmann",
  11276. "email": "[email protected]"
  11277. }
  11278. ],
  11279. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  11280. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  11281. "support": {
  11282. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  11283. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/4.0.4"
  11284. },
  11285. "funding": [
  11286. {
  11287. "url": "https://github.com/sebastianbergmann",
  11288. "type": "github"
  11289. }
  11290. ],
  11291. "time": "2020-10-26T13:12:34+00:00"
  11292. },
  11293. {
  11294. "name": "sebastian/object-reflector",
  11295. "version": "2.0.4",
  11296. "source": {
  11297. "type": "git",
  11298. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  11299. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7"
  11300. },
  11301. "dist": {
  11302. "type": "zip",
  11303. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  11304. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  11305. "shasum": ""
  11306. },
  11307. "require": {
  11308. "php": ">=7.3"
  11309. },
  11310. "require-dev": {
  11311. "phpunit/phpunit": "^9.3"
  11312. },
  11313. "type": "library",
  11314. "extra": {
  11315. "branch-alias": {
  11316. "dev-master": "2.0-dev"
  11317. }
  11318. },
  11319. "autoload": {
  11320. "classmap": [
  11321. "src/"
  11322. ]
  11323. },
  11324. "notification-url": "https://packagist.org/downloads/",
  11325. "license": [
  11326. "BSD-3-Clause"
  11327. ],
  11328. "authors": [
  11329. {
  11330. "name": "Sebastian Bergmann",
  11331. "email": "[email protected]"
  11332. }
  11333. ],
  11334. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  11335. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  11336. "support": {
  11337. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  11338. "source": "https://github.com/sebastianbergmann/object-reflector/tree/2.0.4"
  11339. },
  11340. "funding": [
  11341. {
  11342. "url": "https://github.com/sebastianbergmann",
  11343. "type": "github"
  11344. }
  11345. ],
  11346. "time": "2020-10-26T13:14:26+00:00"
  11347. },
  11348. {
  11349. "name": "sebastian/recursion-context",
  11350. "version": "4.0.4",
  11351. "source": {
  11352. "type": "git",
  11353. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  11354. "reference": "cd9d8cf3c5804de4341c283ed787f099f5506172"
  11355. },
  11356. "dist": {
  11357. "type": "zip",
  11358. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/cd9d8cf3c5804de4341c283ed787f099f5506172",
  11359. "reference": "cd9d8cf3c5804de4341c283ed787f099f5506172",
  11360. "shasum": ""
  11361. },
  11362. "require": {
  11363. "php": ">=7.3"
  11364. },
  11365. "require-dev": {
  11366. "phpunit/phpunit": "^9.3"
  11367. },
  11368. "type": "library",
  11369. "extra": {
  11370. "branch-alias": {
  11371. "dev-master": "4.0-dev"
  11372. }
  11373. },
  11374. "autoload": {
  11375. "classmap": [
  11376. "src/"
  11377. ]
  11378. },
  11379. "notification-url": "https://packagist.org/downloads/",
  11380. "license": [
  11381. "BSD-3-Clause"
  11382. ],
  11383. "authors": [
  11384. {
  11385. "name": "Sebastian Bergmann",
  11386. "email": "[email protected]"
  11387. },
  11388. {
  11389. "name": "Jeff Welch",
  11390. "email": "[email protected]"
  11391. },
  11392. {
  11393. "name": "Adam Harvey",
  11394. "email": "[email protected]"
  11395. }
  11396. ],
  11397. "description": "Provides functionality to recursively process PHP variables",
  11398. "homepage": "http://www.github.com/sebastianbergmann/recursion-context",
  11399. "support": {
  11400. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  11401. "source": "https://github.com/sebastianbergmann/recursion-context/tree/4.0.4"
  11402. },
  11403. "funding": [
  11404. {
  11405. "url": "https://github.com/sebastianbergmann",
  11406. "type": "github"
  11407. }
  11408. ],
  11409. "time": "2020-10-26T13:17:30+00:00"
  11410. },
  11411. {
  11412. "name": "sebastian/resource-operations",
  11413. "version": "3.0.3",
  11414. "source": {
  11415. "type": "git",
  11416. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  11417. "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8"
  11418. },
  11419. "dist": {
  11420. "type": "zip",
  11421. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8",
  11422. "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8",
  11423. "shasum": ""
  11424. },
  11425. "require": {
  11426. "php": ">=7.3"
  11427. },
  11428. "require-dev": {
  11429. "phpunit/phpunit": "^9.0"
  11430. },
  11431. "type": "library",
  11432. "extra": {
  11433. "branch-alias": {
  11434. "dev-master": "3.0-dev"
  11435. }
  11436. },
  11437. "autoload": {
  11438. "classmap": [
  11439. "src/"
  11440. ]
  11441. },
  11442. "notification-url": "https://packagist.org/downloads/",
  11443. "license": [
  11444. "BSD-3-Clause"
  11445. ],
  11446. "authors": [
  11447. {
  11448. "name": "Sebastian Bergmann",
  11449. "email": "[email protected]"
  11450. }
  11451. ],
  11452. "description": "Provides a list of PHP built-in functions that operate on resources",
  11453. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  11454. "support": {
  11455. "issues": "https://github.com/sebastianbergmann/resource-operations/issues",
  11456. "source": "https://github.com/sebastianbergmann/resource-operations/tree/3.0.3"
  11457. },
  11458. "funding": [
  11459. {
  11460. "url": "https://github.com/sebastianbergmann",
  11461. "type": "github"
  11462. }
  11463. ],
  11464. "time": "2020-09-28T06:45:17+00:00"
  11465. },
  11466. {
  11467. "name": "sebastian/type",
  11468. "version": "2.3.1",
  11469. "source": {
  11470. "type": "git",
  11471. "url": "https://github.com/sebastianbergmann/type.git",
  11472. "reference": "81cd61ab7bbf2de744aba0ea61fae32f721df3d2"
  11473. },
  11474. "dist": {
  11475. "type": "zip",
  11476. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/81cd61ab7bbf2de744aba0ea61fae32f721df3d2",
  11477. "reference": "81cd61ab7bbf2de744aba0ea61fae32f721df3d2",
  11478. "shasum": ""
  11479. },
  11480. "require": {
  11481. "php": ">=7.3"
  11482. },
  11483. "require-dev": {
  11484. "phpunit/phpunit": "^9.3"
  11485. },
  11486. "type": "library",
  11487. "extra": {
  11488. "branch-alias": {
  11489. "dev-master": "2.3-dev"
  11490. }
  11491. },
  11492. "autoload": {
  11493. "classmap": [
  11494. "src/"
  11495. ]
  11496. },
  11497. "notification-url": "https://packagist.org/downloads/",
  11498. "license": [
  11499. "BSD-3-Clause"
  11500. ],
  11501. "authors": [
  11502. {
  11503. "name": "Sebastian Bergmann",
  11504. "email": "[email protected]",
  11505. "role": "lead"
  11506. }
  11507. ],
  11508. "description": "Collection of value objects that represent the types of the PHP type system",
  11509. "homepage": "https://github.com/sebastianbergmann/type",
  11510. "support": {
  11511. "issues": "https://github.com/sebastianbergmann/type/issues",
  11512. "source": "https://github.com/sebastianbergmann/type/tree/2.3.1"
  11513. },
  11514. "funding": [
  11515. {
  11516. "url": "https://github.com/sebastianbergmann",
  11517. "type": "github"
  11518. }
  11519. ],
  11520. "time": "2020-10-26T13:18:59+00:00"
  11521. },
  11522. {
  11523. "name": "sebastian/version",
  11524. "version": "3.0.2",
  11525. "source": {
  11526. "type": "git",
  11527. "url": "https://github.com/sebastianbergmann/version.git",
  11528. "reference": "c6c1022351a901512170118436c764e473f6de8c"
  11529. },
  11530. "dist": {
  11531. "type": "zip",
  11532. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c6c1022351a901512170118436c764e473f6de8c",
  11533. "reference": "c6c1022351a901512170118436c764e473f6de8c",
  11534. "shasum": ""
  11535. },
  11536. "require": {
  11537. "php": ">=7.3"
  11538. },
  11539. "type": "library",
  11540. "extra": {
  11541. "branch-alias": {
  11542. "dev-master": "3.0-dev"
  11543. }
  11544. },
  11545. "autoload": {
  11546. "classmap": [
  11547. "src/"
  11548. ]
  11549. },
  11550. "notification-url": "https://packagist.org/downloads/",
  11551. "license": [
  11552. "BSD-3-Clause"
  11553. ],
  11554. "authors": [
  11555. {
  11556. "name": "Sebastian Bergmann",
  11557. "email": "[email protected]",
  11558. "role": "lead"
  11559. }
  11560. ],
  11561. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  11562. "homepage": "https://github.com/sebastianbergmann/version",
  11563. "support": {
  11564. "issues": "https://github.com/sebastianbergmann/version/issues",
  11565. "source": "https://github.com/sebastianbergmann/version/tree/3.0.2"
  11566. },
  11567. "funding": [
  11568. {
  11569. "url": "https://github.com/sebastianbergmann",
  11570. "type": "github"
  11571. }
  11572. ],
  11573. "time": "2020-09-28T06:39:44+00:00"
  11574. },
  11575. {
  11576. "name": "seld/jsonlint",
  11577. "version": "1.8.3",
  11578. "source": {
  11579. "type": "git",
  11580. "url": "https://github.com/Seldaek/jsonlint.git",
  11581. "reference": "9ad6ce79c342fbd44df10ea95511a1b24dee5b57"
  11582. },
  11583. "dist": {
  11584. "type": "zip",
  11585. "url": "https://api.github.com/repos/Seldaek/jsonlint/zipball/9ad6ce79c342fbd44df10ea95511a1b24dee5b57",
  11586. "reference": "9ad6ce79c342fbd44df10ea95511a1b24dee5b57",
  11587. "shasum": ""
  11588. },
  11589. "require": {
  11590. "php": "^5.3 || ^7.0 || ^8.0"
  11591. },
  11592. "require-dev": {
  11593. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0"
  11594. },
  11595. "bin": [
  11596. "bin/jsonlint"
  11597. ],
  11598. "type": "library",
  11599. "autoload": {
  11600. "psr-4": {
  11601. "Seld\\JsonLint\\": "src/Seld/JsonLint/"
  11602. }
  11603. },
  11604. "notification-url": "https://packagist.org/downloads/",
  11605. "license": [
  11606. "MIT"
  11607. ],
  11608. "authors": [
  11609. {
  11610. "name": "Jordi Boggiano",
  11611. "email": "[email protected]",
  11612. "homepage": "http://seld.be"
  11613. }
  11614. ],
  11615. "description": "JSON Linter",
  11616. "keywords": [
  11617. "json",
  11618. "linter",
  11619. "parser",
  11620. "validator"
  11621. ],
  11622. "support": {
  11623. "issues": "https://github.com/Seldaek/jsonlint/issues",
  11624. "source": "https://github.com/Seldaek/jsonlint/tree/1.8.3"
  11625. },
  11626. "funding": [
  11627. {
  11628. "url": "https://github.com/Seldaek",
  11629. "type": "github"
  11630. },
  11631. {
  11632. "url": "https://tidelift.com/funding/github/packagist/seld/jsonlint",
  11633. "type": "tidelift"
  11634. }
  11635. ],
  11636. "time": "2020-11-11T09:19:24+00:00"
  11637. },
  11638. {
  11639. "name": "seld/phar-utils",
  11640. "version": "1.1.1",
  11641. "source": {
  11642. "type": "git",
  11643. "url": "https://github.com/Seldaek/phar-utils.git",
  11644. "reference": "8674b1d84ffb47cc59a101f5d5a3b61e87d23796"
  11645. },
  11646. "dist": {
  11647. "type": "zip",
  11648. "url": "https://api.github.com/repos/Seldaek/phar-utils/zipball/8674b1d84ffb47cc59a101f5d5a3b61e87d23796",
  11649. "reference": "8674b1d84ffb47cc59a101f5d5a3b61e87d23796",
  11650. "shasum": ""
  11651. },
  11652. "require": {
  11653. "php": ">=5.3"
  11654. },
  11655. "type": "library",
  11656. "extra": {
  11657. "branch-alias": {
  11658. "dev-master": "1.x-dev"
  11659. }
  11660. },
  11661. "autoload": {
  11662. "psr-4": {
  11663. "Seld\\PharUtils\\": "src/"
  11664. }
  11665. },
  11666. "notification-url": "https://packagist.org/downloads/",
  11667. "license": [
  11668. "MIT"
  11669. ],
  11670. "authors": [
  11671. {
  11672. "name": "Jordi Boggiano",
  11673. "email": "[email protected]"
  11674. }
  11675. ],
  11676. "description": "PHAR file format utilities, for when PHP phars you up",
  11677. "keywords": [
  11678. "phar"
  11679. ],
  11680. "support": {
  11681. "issues": "https://github.com/Seldaek/phar-utils/issues",
  11682. "source": "https://github.com/Seldaek/phar-utils/tree/master"
  11683. },
  11684. "time": "2020-07-07T18:42:57+00:00"
  11685. },
  11686. {
  11687. "name": "symfony/debug",
  11688. "version": "v4.4.18",
  11689. "source": {
  11690. "type": "git",
  11691. "url": "https://github.com/symfony/debug.git",
  11692. "reference": "5dfc7825f3bfe9bb74b23d8b8ce0e0894e32b544"
  11693. },
  11694. "dist": {
  11695. "type": "zip",
  11696. "url": "https://api.github.com/repos/symfony/debug/zipball/5dfc7825f3bfe9bb74b23d8b8ce0e0894e32b544",
  11697. "reference": "5dfc7825f3bfe9bb74b23d8b8ce0e0894e32b544",
  11698. "shasum": ""
  11699. },
  11700. "require": {
  11701. "php": ">=7.1.3",
  11702. "psr/log": "~1.0",
  11703. "symfony/polyfill-php80": "^1.15"
  11704. },
  11705. "conflict": {
  11706. "symfony/http-kernel": "<3.4"
  11707. },
  11708. "require-dev": {
  11709. "symfony/http-kernel": "^3.4|^4.0|^5.0"
  11710. },
  11711. "type": "library",
  11712. "autoload": {
  11713. "psr-4": {
  11714. "Symfony\\Component\\Debug\\": ""
  11715. },
  11716. "exclude-from-classmap": [
  11717. "/Tests/"
  11718. ]
  11719. },
  11720. "notification-url": "https://packagist.org/downloads/",
  11721. "license": [
  11722. "MIT"
  11723. ],
  11724. "authors": [
  11725. {
  11726. "name": "Fabien Potencier",
  11727. "email": "[email protected]"
  11728. },
  11729. {
  11730. "name": "Symfony Community",
  11731. "homepage": "https://symfony.com/contributors"
  11732. }
  11733. ],
  11734. "description": "Symfony Debug Component",
  11735. "homepage": "https://symfony.com",
  11736. "support": {
  11737. "source": "https://github.com/symfony/debug/tree/v4.4.18"
  11738. },
  11739. "funding": [
  11740. {
  11741. "url": "https://symfony.com/sponsor",
  11742. "type": "custom"
  11743. },
  11744. {
  11745. "url": "https://github.com/fabpot",
  11746. "type": "github"
  11747. },
  11748. {
  11749. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11750. "type": "tidelift"
  11751. }
  11752. ],
  11753. "time": "2020-12-10T16:34:26+00:00"
  11754. },
  11755. {
  11756. "name": "symfony/filesystem",
  11757. "version": "v5.2.1",
  11758. "source": {
  11759. "type": "git",
  11760. "url": "https://github.com/symfony/filesystem.git",
  11761. "reference": "fa8f8cab6b65e2d99a118e082935344c5ba8c60d"
  11762. },
  11763. "dist": {
  11764. "type": "zip",
  11765. "url": "https://api.github.com/repos/symfony/filesystem/zipball/fa8f8cab6b65e2d99a118e082935344c5ba8c60d",
  11766. "reference": "fa8f8cab6b65e2d99a118e082935344c5ba8c60d",
  11767. "shasum": ""
  11768. },
  11769. "require": {
  11770. "php": ">=7.2.5",
  11771. "symfony/polyfill-ctype": "~1.8"
  11772. },
  11773. "type": "library",
  11774. "autoload": {
  11775. "psr-4": {
  11776. "Symfony\\Component\\Filesystem\\": ""
  11777. },
  11778. "exclude-from-classmap": [
  11779. "/Tests/"
  11780. ]
  11781. },
  11782. "notification-url": "https://packagist.org/downloads/",
  11783. "license": [
  11784. "MIT"
  11785. ],
  11786. "authors": [
  11787. {
  11788. "name": "Fabien Potencier",
  11789. "email": "[email protected]"
  11790. },
  11791. {
  11792. "name": "Symfony Community",
  11793. "homepage": "https://symfony.com/contributors"
  11794. }
  11795. ],
  11796. "description": "Symfony Filesystem Component",
  11797. "homepage": "https://symfony.com",
  11798. "support": {
  11799. "source": "https://github.com/symfony/filesystem/tree/v5.2.1"
  11800. },
  11801. "funding": [
  11802. {
  11803. "url": "https://symfony.com/sponsor",
  11804. "type": "custom"
  11805. },
  11806. {
  11807. "url": "https://github.com/fabpot",
  11808. "type": "github"
  11809. },
  11810. {
  11811. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11812. "type": "tidelift"
  11813. }
  11814. ],
  11815. "time": "2020-11-30T17:05:38+00:00"
  11816. },
  11817. {
  11818. "name": "theseer/tokenizer",
  11819. "version": "1.2.0",
  11820. "source": {
  11821. "type": "git",
  11822. "url": "https://github.com/theseer/tokenizer.git",
  11823. "reference": "75a63c33a8577608444246075ea0af0d052e452a"
  11824. },
  11825. "dist": {
  11826. "type": "zip",
  11827. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/75a63c33a8577608444246075ea0af0d052e452a",
  11828. "reference": "75a63c33a8577608444246075ea0af0d052e452a",
  11829. "shasum": ""
  11830. },
  11831. "require": {
  11832. "ext-dom": "*",
  11833. "ext-tokenizer": "*",
  11834. "ext-xmlwriter": "*",
  11835. "php": "^7.2 || ^8.0"
  11836. },
  11837. "type": "library",
  11838. "autoload": {
  11839. "classmap": [
  11840. "src/"
  11841. ]
  11842. },
  11843. "notification-url": "https://packagist.org/downloads/",
  11844. "license": [
  11845. "BSD-3-Clause"
  11846. ],
  11847. "authors": [
  11848. {
  11849. "name": "Arne Blankerts",
  11850. "email": "[email protected]",
  11851. "role": "Developer"
  11852. }
  11853. ],
  11854. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  11855. "support": {
  11856. "issues": "https://github.com/theseer/tokenizer/issues",
  11857. "source": "https://github.com/theseer/tokenizer/tree/master"
  11858. },
  11859. "funding": [
  11860. {
  11861. "url": "https://github.com/theseer",
  11862. "type": "github"
  11863. }
  11864. ],
  11865. "time": "2020-07-12T23:59:07+00:00"
  11866. },
  11867. {
  11868. "name": "webmozart/assert",
  11869. "version": "1.9.1",
  11870. "source": {
  11871. "type": "git",
  11872. "url": "https://github.com/webmozarts/assert.git",
  11873. "reference": "bafc69caeb4d49c39fd0779086c03a3738cbb389"
  11874. },
  11875. "dist": {
  11876. "type": "zip",
  11877. "url": "https://api.github.com/repos/webmozarts/assert/zipball/bafc69caeb4d49c39fd0779086c03a3738cbb389",
  11878. "reference": "bafc69caeb4d49c39fd0779086c03a3738cbb389",
  11879. "shasum": ""
  11880. },
  11881. "require": {
  11882. "php": "^5.3.3 || ^7.0 || ^8.0",
  11883. "symfony/polyfill-ctype": "^1.8"
  11884. },
  11885. "conflict": {
  11886. "phpstan/phpstan": "<0.12.20",
  11887. "vimeo/psalm": "<3.9.1"
  11888. },
  11889. "require-dev": {
  11890. "phpunit/phpunit": "^4.8.36 || ^7.5.13"
  11891. },
  11892. "type": "library",
  11893. "autoload": {
  11894. "psr-4": {
  11895. "Webmozart\\Assert\\": "src/"
  11896. }
  11897. },
  11898. "notification-url": "https://packagist.org/downloads/",
  11899. "license": [
  11900. "MIT"
  11901. ],
  11902. "authors": [
  11903. {
  11904. "name": "Bernhard Schussek",
  11905. "email": "[email protected]"
  11906. }
  11907. ],
  11908. "description": "Assertions to validate method input/output with nice error messages.",
  11909. "keywords": [
  11910. "assert",
  11911. "check",
  11912. "validate"
  11913. ],
  11914. "support": {
  11915. "issues": "https://github.com/webmozarts/assert/issues",
  11916. "source": "https://github.com/webmozarts/assert/tree/1.9.1"
  11917. },
  11918. "time": "2020-07-08T17:02:28+00:00"
  11919. }
  11920. ],
  11921. "aliases": [],
  11922. "minimum-stability": "dev",
  11923. "stability-flags": [],
  11924. "prefer-stable": true,
  11925. "prefer-lowest": false,
  11926. "platform": {
  11927. "php": "^7.2.5|^8.0",
  11928. "ext-json": "*",
  11929. "ext-mbstring": "*",
  11930. "ext-openssl": "*",
  11931. "ext-simplexml": "*"
  11932. },
  11933. "platform-dev": [],
  11934. "plugin-api-version": "2.0.0"
  11935. }