composer.lock 426 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546105471054810549105501055110552105531055410555105561055710558105591056010561105621056310564105651056610567105681056910570105711057210573105741057510576105771057810579105801058110582105831058410585105861058710588105891059010591105921059310594105951059610597105981059910600106011060210603106041060510606106071060810609106101061110612106131061410615106161061710618106191062010621106221062310624106251062610627106281062910630106311063210633106341063510636106371063810639106401064110642106431064410645106461064710648106491065010651106521065310654106551065610657106581065910660106611066210663106641066510666106671066810669106701067110672106731067410675106761067710678106791068010681106821068310684106851068610687106881068910690106911069210693106941069510696106971069810699107001070110702107031070410705107061070710708107091071010711107121071310714107151071610717107181071910720107211072210723107241072510726107271072810729107301073110732107331073410735107361073710738107391074010741107421074310744107451074610747107481074910750107511075210753107541075510756107571075810759107601076110762107631076410765107661076710768107691077010771107721077310774107751077610777107781077910780107811078210783107841078510786107871078810789107901079110792107931079410795107961079710798107991080010801108021080310804108051080610807108081080910810108111081210813108141081510816108171081810819108201082110822108231082410825108261082710828108291083010831108321083310834108351083610837108381083910840108411084210843108441084510846108471084810849108501085110852108531085410855108561085710858108591086010861108621086310864108651086610867108681086910870108711087210873108741087510876108771087810879108801088110882108831088410885108861088710888108891089010891108921089310894108951089610897108981089910900109011090210903109041090510906109071090810909109101091110912109131091410915109161091710918109191092010921109221092310924109251092610927109281092910930109311093210933109341093510936109371093810939109401094110942109431094410945109461094710948109491095010951109521095310954109551095610957109581095910960109611096210963109641096510966109671096810969109701097110972109731097410975109761097710978109791098010981109821098310984109851098610987109881098910990109911099210993109941099510996109971099810999110001100111002110031100411005110061100711008110091101011011110121101311014110151101611017110181101911020110211102211023110241102511026110271102811029110301103111032110331103411035110361103711038110391104011041110421104311044110451104611047110481104911050110511105211053110541105511056110571105811059110601106111062110631106411065110661106711068110691107011071110721107311074110751107611077110781107911080110811108211083110841108511086110871108811089110901109111092110931109411095110961109711098110991110011101111021110311104111051110611107111081110911110111111111211113111141111511116111171111811119111201112111122111231112411125111261112711128111291113011131111321113311134111351113611137111381113911140111411114211143111441114511146111471114811149111501115111152111531115411155111561115711158111591116011161111621116311164111651116611167111681116911170111711117211173111741117511176111771117811179111801118111182111831118411185111861118711188111891119011191111921119311194111951119611197111981119911200112011120211203112041120511206112071120811209112101121111212112131121411215112161121711218112191122011221112221122311224112251122611227112281122911230112311123211233112341123511236112371123811239112401124111242112431124411245112461124711248112491125011251112521125311254112551125611257112581125911260112611126211263112641126511266112671126811269112701127111272112731127411275112761127711278112791128011281112821128311284112851128611287112881128911290112911129211293112941129511296112971129811299113001130111302113031130411305113061130711308113091131011311113121131311314113151131611317113181131911320113211132211323113241132511326113271132811329113301133111332113331133411335113361133711338113391134011341113421134311344113451134611347113481134911350113511135211353113541135511356113571135811359113601136111362113631136411365113661136711368113691137011371113721137311374113751137611377113781137911380113811138211383113841138511386113871138811389113901139111392113931139411395113961139711398113991140011401114021140311404114051140611407114081140911410114111141211413114141141511416114171141811419114201142111422114231142411425114261142711428114291143011431114321143311434114351143611437114381143911440114411144211443114441144511446114471144811449114501145111452114531145411455114561145711458114591146011461114621146311464114651146611467114681146911470114711147211473114741147511476114771147811479114801148111482114831148411485114861148711488114891149011491114921149311494114951149611497114981149911500115011150211503115041150511506115071150811509115101151111512115131151411515115161151711518115191152011521115221152311524115251152611527115281152911530115311153211533115341153511536115371153811539115401154111542115431154411545115461154711548115491155011551115521155311554115551155611557115581155911560115611156211563115641156511566115671156811569115701157111572115731157411575115761157711578115791158011581115821158311584115851158611587115881158911590115911159211593115941159511596115971159811599116001160111602116031160411605116061160711608116091161011611116121161311614116151161611617116181161911620116211162211623116241162511626116271162811629116301163111632116331163411635116361163711638116391164011641116421164311644116451164611647116481164911650116511165211653116541165511656116571165811659116601166111662116631166411665116661166711668116691167011671116721167311674116751167611677116781167911680116811168211683116841168511686116871168811689116901169111692116931169411695116961169711698116991170011701117021170311704117051170611707117081170911710117111171211713117141171511716117171171811719117201172111722117231172411725117261172711728117291173011731117321173311734117351173611737117381173911740117411174211743117441174511746117471174811749117501175111752117531175411755117561175711758117591176011761117621176311764117651176611767117681176911770117711177211773117741177511776117771177811779117801178111782117831178411785117861178711788117891179011791117921179311794117951179611797117981179911800118011180211803118041180511806118071180811809118101181111812118131181411815118161181711818118191182011821118221182311824118251182611827118281182911830118311183211833118341183511836118371183811839118401184111842118431184411845118461184711848118491185011851118521185311854118551185611857118581185911860118611186211863118641186511866118671186811869118701187111872118731187411875118761187711878118791188011881118821188311884118851188611887118881188911890118911189211893118941189511896118971189811899119001190111902119031190411905119061190711908119091191011911119121191311914119151191611917119181191911920119211192211923119241192511926119271192811929
  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": "iam.asm89@gmail.com"
  51. }
  52. ],
  53. "description": "Cross-origin resource sharing library and stack middleware",
  54. "homepage": "https://github.com/asm89/stack-cors",
  55. "keywords": [
  56. "cors",
  57. "stack"
  58. ],
  59. "support": {
  60. "issues": "https://github.com/asm89/stack-cors/issues",
  61. "source": "https://github.com/asm89/stack-cors/tree/v2.0.2"
  62. },
  63. "time": "2020-10-29T16:03:21+00:00"
  64. },
  65. {
  66. "name": "brick/math",
  67. "version": "0.9.1",
  68. "source": {
  69. "type": "git",
  70. "url": "https://github.com/brick/math.git",
  71. "reference": "283a40c901101e66de7061bd359252c013dcc43c"
  72. },
  73. "dist": {
  74. "type": "zip",
  75. "url": "https://api.github.com/repos/brick/math/zipball/283a40c901101e66de7061bd359252c013dcc43c",
  76. "reference": "283a40c901101e66de7061bd359252c013dcc43c",
  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",
  86. "vimeo/psalm": "^3.5"
  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/master"
  112. },
  113. "funding": [
  114. {
  115. "url": "https://tidelift.com/funding/github/packagist/brick/math",
  116. "type": "tidelift"
  117. }
  118. ],
  119. "time": "2020-08-18T23:57:15+00:00"
  120. },
  121. {
  122. "name": "composer/ca-bundle",
  123. "version": "1.2.8",
  124. "source": {
  125. "type": "git",
  126. "url": "https://github.com/composer/ca-bundle.git",
  127. "reference": "8a7ecad675253e4654ea05505233285377405215"
  128. },
  129. "dist": {
  130. "type": "zip",
  131. "url": "https://api.github.com/repos/composer/ca-bundle/zipball/8a7ecad675253e4654ea05505233285377405215",
  132. "reference": "8a7ecad675253e4654ea05505233285377405215",
  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. "phpunit/phpunit": "^4.8.35 || ^5.7 || 6.5 - 8",
  142. "psr/log": "^1.0",
  143. "symfony/process": "^2.5 || ^3.0 || ^4.0 || ^5.0"
  144. },
  145. "type": "library",
  146. "extra": {
  147. "branch-alias": {
  148. "dev-master": "1.x-dev"
  149. }
  150. },
  151. "autoload": {
  152. "psr-4": {
  153. "Composer\\CaBundle\\": "src"
  154. }
  155. },
  156. "notification-url": "https://packagist.org/downloads/",
  157. "license": [
  158. "MIT"
  159. ],
  160. "authors": [
  161. {
  162. "name": "Jordi Boggiano",
  163. "email": "j.boggiano@seld.be",
  164. "homepage": "http://seld.be"
  165. }
  166. ],
  167. "description": "Lets you find a path to the system CA bundle, and includes a fallback to the Mozilla CA bundle.",
  168. "keywords": [
  169. "cabundle",
  170. "cacert",
  171. "certificate",
  172. "ssl",
  173. "tls"
  174. ],
  175. "support": {
  176. "irc": "irc://irc.freenode.org/composer",
  177. "issues": "https://github.com/composer/ca-bundle/issues",
  178. "source": "https://github.com/composer/ca-bundle/tree/1.2.8"
  179. },
  180. "funding": [
  181. {
  182. "url": "https://packagist.com",
  183. "type": "custom"
  184. },
  185. {
  186. "url": "https://github.com/composer",
  187. "type": "github"
  188. },
  189. {
  190. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  191. "type": "tidelift"
  192. }
  193. ],
  194. "time": "2020-08-23T12:54:47+00:00"
  195. },
  196. {
  197. "name": "dnoegel/php-xdg-base-dir",
  198. "version": "v0.1.1",
  199. "source": {
  200. "type": "git",
  201. "url": "https://github.com/dnoegel/php-xdg-base-dir.git",
  202. "reference": "8f8a6e48c5ecb0f991c2fdcf5f154a47d85f9ffd"
  203. },
  204. "dist": {
  205. "type": "zip",
  206. "url": "https://api.github.com/repos/dnoegel/php-xdg-base-dir/zipball/8f8a6e48c5ecb0f991c2fdcf5f154a47d85f9ffd",
  207. "reference": "8f8a6e48c5ecb0f991c2fdcf5f154a47d85f9ffd",
  208. "shasum": ""
  209. },
  210. "require": {
  211. "php": ">=5.3.2"
  212. },
  213. "require-dev": {
  214. "phpunit/phpunit": "~7.0|~6.0|~5.0|~4.8.35"
  215. },
  216. "type": "library",
  217. "autoload": {
  218. "psr-4": {
  219. "XdgBaseDir\\": "src/"
  220. }
  221. },
  222. "notification-url": "https://packagist.org/downloads/",
  223. "license": [
  224. "MIT"
  225. ],
  226. "description": "implementation of xdg base directory specification for php",
  227. "support": {
  228. "issues": "https://github.com/dnoegel/php-xdg-base-dir/issues",
  229. "source": "https://github.com/dnoegel/php-xdg-base-dir/tree/v0.1.1"
  230. },
  231. "time": "2019-12-04T15:06:13+00:00"
  232. },
  233. {
  234. "name": "doctrine/cache",
  235. "version": "1.10.2",
  236. "source": {
  237. "type": "git",
  238. "url": "https://github.com/doctrine/cache.git",
  239. "reference": "13e3381b25847283a91948d04640543941309727"
  240. },
  241. "dist": {
  242. "type": "zip",
  243. "url": "https://api.github.com/repos/doctrine/cache/zipball/13e3381b25847283a91948d04640543941309727",
  244. "reference": "13e3381b25847283a91948d04640543941309727",
  245. "shasum": ""
  246. },
  247. "require": {
  248. "php": "~7.1 || ^8.0"
  249. },
  250. "conflict": {
  251. "doctrine/common": ">2.2,<2.4"
  252. },
  253. "require-dev": {
  254. "alcaeus/mongo-php-adapter": "^1.1",
  255. "doctrine/coding-standard": "^6.0",
  256. "mongodb/mongodb": "^1.1",
  257. "phpunit/phpunit": "^7.0",
  258. "predis/predis": "~1.0"
  259. },
  260. "suggest": {
  261. "alcaeus/mongo-php-adapter": "Required to use legacy MongoDB driver"
  262. },
  263. "type": "library",
  264. "extra": {
  265. "branch-alias": {
  266. "dev-master": "1.9.x-dev"
  267. }
  268. },
  269. "autoload": {
  270. "psr-4": {
  271. "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache"
  272. }
  273. },
  274. "notification-url": "https://packagist.org/downloads/",
  275. "license": [
  276. "MIT"
  277. ],
  278. "authors": [
  279. {
  280. "name": "Guilherme Blanco",
  281. "email": "guilhermeblanco@gmail.com"
  282. },
  283. {
  284. "name": "Roman Borschel",
  285. "email": "roman@code-factory.org"
  286. },
  287. {
  288. "name": "Benjamin Eberlei",
  289. "email": "kontakt@beberlei.de"
  290. },
  291. {
  292. "name": "Jonathan Wage",
  293. "email": "jonwage@gmail.com"
  294. },
  295. {
  296. "name": "Johannes Schmitt",
  297. "email": "schmittjoh@gmail.com"
  298. }
  299. ],
  300. "description": "PHP Doctrine Cache library is a popular cache implementation that supports many different drivers such as redis, memcache, apc, mongodb and others.",
  301. "homepage": "https://www.doctrine-project.org/projects/cache.html",
  302. "keywords": [
  303. "abstraction",
  304. "apcu",
  305. "cache",
  306. "caching",
  307. "couchdb",
  308. "memcached",
  309. "php",
  310. "redis",
  311. "xcache"
  312. ],
  313. "support": {
  314. "issues": "https://github.com/doctrine/cache/issues",
  315. "source": "https://github.com/doctrine/cache/tree/1.10.x"
  316. },
  317. "funding": [
  318. {
  319. "url": "https://www.doctrine-project.org/sponsorship.html",
  320. "type": "custom"
  321. },
  322. {
  323. "url": "https://www.patreon.com/phpdoctrine",
  324. "type": "patreon"
  325. },
  326. {
  327. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcache",
  328. "type": "tidelift"
  329. }
  330. ],
  331. "time": "2020-07-07T18:54:01+00:00"
  332. },
  333. {
  334. "name": "doctrine/dbal",
  335. "version": "2.12.1",
  336. "source": {
  337. "type": "git",
  338. "url": "https://github.com/doctrine/dbal.git",
  339. "reference": "adce7a954a1c2f14f85e94aed90c8489af204086"
  340. },
  341. "dist": {
  342. "type": "zip",
  343. "url": "https://api.github.com/repos/doctrine/dbal/zipball/adce7a954a1c2f14f85e94aed90c8489af204086",
  344. "reference": "adce7a954a1c2f14f85e94aed90c8489af204086",
  345. "shasum": ""
  346. },
  347. "require": {
  348. "doctrine/cache": "^1.0",
  349. "doctrine/event-manager": "^1.0",
  350. "ext-pdo": "*",
  351. "php": "^7.3 || ^8"
  352. },
  353. "require-dev": {
  354. "doctrine/coding-standard": "^8.1",
  355. "jetbrains/phpstorm-stubs": "^2019.1",
  356. "phpstan/phpstan": "^0.12.40",
  357. "phpunit/phpunit": "^9.4",
  358. "psalm/plugin-phpunit": "^0.10.0",
  359. "symfony/console": "^2.0.5|^3.0|^4.0|^5.0",
  360. "vimeo/psalm": "^3.17.2"
  361. },
  362. "suggest": {
  363. "symfony/console": "For helpful console commands such as SQL execution and import of files."
  364. },
  365. "bin": [
  366. "bin/doctrine-dbal"
  367. ],
  368. "type": "library",
  369. "extra": {
  370. "branch-alias": {
  371. "dev-master": "4.0.x-dev"
  372. }
  373. },
  374. "autoload": {
  375. "psr-4": {
  376. "Doctrine\\DBAL\\": "lib/Doctrine/DBAL"
  377. }
  378. },
  379. "notification-url": "https://packagist.org/downloads/",
  380. "license": [
  381. "MIT"
  382. ],
  383. "authors": [
  384. {
  385. "name": "Guilherme Blanco",
  386. "email": "guilhermeblanco@gmail.com"
  387. },
  388. {
  389. "name": "Roman Borschel",
  390. "email": "roman@code-factory.org"
  391. },
  392. {
  393. "name": "Benjamin Eberlei",
  394. "email": "kontakt@beberlei.de"
  395. },
  396. {
  397. "name": "Jonathan Wage",
  398. "email": "jonwage@gmail.com"
  399. }
  400. ],
  401. "description": "Powerful PHP database abstraction layer (DBAL) with many features for database schema introspection and management.",
  402. "homepage": "https://www.doctrine-project.org/projects/dbal.html",
  403. "keywords": [
  404. "abstraction",
  405. "database",
  406. "db2",
  407. "dbal",
  408. "mariadb",
  409. "mssql",
  410. "mysql",
  411. "oci8",
  412. "oracle",
  413. "pdo",
  414. "pgsql",
  415. "postgresql",
  416. "queryobject",
  417. "sasql",
  418. "sql",
  419. "sqlanywhere",
  420. "sqlite",
  421. "sqlserver",
  422. "sqlsrv"
  423. ],
  424. "support": {
  425. "issues": "https://github.com/doctrine/dbal/issues",
  426. "source": "https://github.com/doctrine/dbal/tree/2.12.1"
  427. },
  428. "funding": [
  429. {
  430. "url": "https://www.doctrine-project.org/sponsorship.html",
  431. "type": "custom"
  432. },
  433. {
  434. "url": "https://www.patreon.com/phpdoctrine",
  435. "type": "patreon"
  436. },
  437. {
  438. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdbal",
  439. "type": "tidelift"
  440. }
  441. ],
  442. "time": "2020-11-14T20:26:58+00:00"
  443. },
  444. {
  445. "name": "doctrine/event-manager",
  446. "version": "1.1.1",
  447. "source": {
  448. "type": "git",
  449. "url": "https://github.com/doctrine/event-manager.git",
  450. "reference": "41370af6a30faa9dc0368c4a6814d596e81aba7f"
  451. },
  452. "dist": {
  453. "type": "zip",
  454. "url": "https://api.github.com/repos/doctrine/event-manager/zipball/41370af6a30faa9dc0368c4a6814d596e81aba7f",
  455. "reference": "41370af6a30faa9dc0368c4a6814d596e81aba7f",
  456. "shasum": ""
  457. },
  458. "require": {
  459. "php": "^7.1 || ^8.0"
  460. },
  461. "conflict": {
  462. "doctrine/common": "<2.9@dev"
  463. },
  464. "require-dev": {
  465. "doctrine/coding-standard": "^6.0",
  466. "phpunit/phpunit": "^7.0"
  467. },
  468. "type": "library",
  469. "extra": {
  470. "branch-alias": {
  471. "dev-master": "1.0.x-dev"
  472. }
  473. },
  474. "autoload": {
  475. "psr-4": {
  476. "Doctrine\\Common\\": "lib/Doctrine/Common"
  477. }
  478. },
  479. "notification-url": "https://packagist.org/downloads/",
  480. "license": [
  481. "MIT"
  482. ],
  483. "authors": [
  484. {
  485. "name": "Guilherme Blanco",
  486. "email": "guilhermeblanco@gmail.com"
  487. },
  488. {
  489. "name": "Roman Borschel",
  490. "email": "roman@code-factory.org"
  491. },
  492. {
  493. "name": "Benjamin Eberlei",
  494. "email": "kontakt@beberlei.de"
  495. },
  496. {
  497. "name": "Jonathan Wage",
  498. "email": "jonwage@gmail.com"
  499. },
  500. {
  501. "name": "Johannes Schmitt",
  502. "email": "schmittjoh@gmail.com"
  503. },
  504. {
  505. "name": "Marco Pivetta",
  506. "email": "ocramius@gmail.com"
  507. }
  508. ],
  509. "description": "The Doctrine Event Manager is a simple PHP event system that was built to be used with the various Doctrine projects.",
  510. "homepage": "https://www.doctrine-project.org/projects/event-manager.html",
  511. "keywords": [
  512. "event",
  513. "event dispatcher",
  514. "event manager",
  515. "event system",
  516. "events"
  517. ],
  518. "support": {
  519. "issues": "https://github.com/doctrine/event-manager/issues",
  520. "source": "https://github.com/doctrine/event-manager/tree/1.1.x"
  521. },
  522. "funding": [
  523. {
  524. "url": "https://www.doctrine-project.org/sponsorship.html",
  525. "type": "custom"
  526. },
  527. {
  528. "url": "https://www.patreon.com/phpdoctrine",
  529. "type": "patreon"
  530. },
  531. {
  532. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fevent-manager",
  533. "type": "tidelift"
  534. }
  535. ],
  536. "time": "2020-05-29T18:28:51+00:00"
  537. },
  538. {
  539. "name": "doctrine/inflector",
  540. "version": "2.0.3",
  541. "source": {
  542. "type": "git",
  543. "url": "https://github.com/doctrine/inflector.git",
  544. "reference": "9cf661f4eb38f7c881cac67c75ea9b00bf97b210"
  545. },
  546. "dist": {
  547. "type": "zip",
  548. "url": "https://api.github.com/repos/doctrine/inflector/zipball/9cf661f4eb38f7c881cac67c75ea9b00bf97b210",
  549. "reference": "9cf661f4eb38f7c881cac67c75ea9b00bf97b210",
  550. "shasum": ""
  551. },
  552. "require": {
  553. "php": "^7.2 || ^8.0"
  554. },
  555. "require-dev": {
  556. "doctrine/coding-standard": "^7.0",
  557. "phpstan/phpstan": "^0.11",
  558. "phpstan/phpstan-phpunit": "^0.11",
  559. "phpstan/phpstan-strict-rules": "^0.11",
  560. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0"
  561. },
  562. "type": "library",
  563. "extra": {
  564. "branch-alias": {
  565. "dev-master": "2.0.x-dev"
  566. }
  567. },
  568. "autoload": {
  569. "psr-4": {
  570. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  571. }
  572. },
  573. "notification-url": "https://packagist.org/downloads/",
  574. "license": [
  575. "MIT"
  576. ],
  577. "authors": [
  578. {
  579. "name": "Guilherme Blanco",
  580. "email": "guilhermeblanco@gmail.com"
  581. },
  582. {
  583. "name": "Roman Borschel",
  584. "email": "roman@code-factory.org"
  585. },
  586. {
  587. "name": "Benjamin Eberlei",
  588. "email": "kontakt@beberlei.de"
  589. },
  590. {
  591. "name": "Jonathan Wage",
  592. "email": "jonwage@gmail.com"
  593. },
  594. {
  595. "name": "Johannes Schmitt",
  596. "email": "schmittjoh@gmail.com"
  597. }
  598. ],
  599. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  600. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  601. "keywords": [
  602. "inflection",
  603. "inflector",
  604. "lowercase",
  605. "manipulation",
  606. "php",
  607. "plural",
  608. "singular",
  609. "strings",
  610. "uppercase",
  611. "words"
  612. ],
  613. "support": {
  614. "issues": "https://github.com/doctrine/inflector/issues",
  615. "source": "https://github.com/doctrine/inflector/tree/2.0.x"
  616. },
  617. "funding": [
  618. {
  619. "url": "https://www.doctrine-project.org/sponsorship.html",
  620. "type": "custom"
  621. },
  622. {
  623. "url": "https://www.patreon.com/phpdoctrine",
  624. "type": "patreon"
  625. },
  626. {
  627. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  628. "type": "tidelift"
  629. }
  630. ],
  631. "time": "2020-05-29T15:13:26+00:00"
  632. },
  633. {
  634. "name": "doctrine/lexer",
  635. "version": "1.2.1",
  636. "source": {
  637. "type": "git",
  638. "url": "https://github.com/doctrine/lexer.git",
  639. "reference": "e864bbf5904cb8f5bb334f99209b48018522f042"
  640. },
  641. "dist": {
  642. "type": "zip",
  643. "url": "https://api.github.com/repos/doctrine/lexer/zipball/e864bbf5904cb8f5bb334f99209b48018522f042",
  644. "reference": "e864bbf5904cb8f5bb334f99209b48018522f042",
  645. "shasum": ""
  646. },
  647. "require": {
  648. "php": "^7.2 || ^8.0"
  649. },
  650. "require-dev": {
  651. "doctrine/coding-standard": "^6.0",
  652. "phpstan/phpstan": "^0.11.8",
  653. "phpunit/phpunit": "^8.2"
  654. },
  655. "type": "library",
  656. "extra": {
  657. "branch-alias": {
  658. "dev-master": "1.2.x-dev"
  659. }
  660. },
  661. "autoload": {
  662. "psr-4": {
  663. "Doctrine\\Common\\Lexer\\": "lib/Doctrine/Common/Lexer"
  664. }
  665. },
  666. "notification-url": "https://packagist.org/downloads/",
  667. "license": [
  668. "MIT"
  669. ],
  670. "authors": [
  671. {
  672. "name": "Guilherme Blanco",
  673. "email": "guilhermeblanco@gmail.com"
  674. },
  675. {
  676. "name": "Roman Borschel",
  677. "email": "roman@code-factory.org"
  678. },
  679. {
  680. "name": "Johannes Schmitt",
  681. "email": "schmittjoh@gmail.com"
  682. }
  683. ],
  684. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  685. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  686. "keywords": [
  687. "annotations",
  688. "docblock",
  689. "lexer",
  690. "parser",
  691. "php"
  692. ],
  693. "support": {
  694. "issues": "https://github.com/doctrine/lexer/issues",
  695. "source": "https://github.com/doctrine/lexer/tree/1.2.1"
  696. },
  697. "funding": [
  698. {
  699. "url": "https://www.doctrine-project.org/sponsorship.html",
  700. "type": "custom"
  701. },
  702. {
  703. "url": "https://www.patreon.com/phpdoctrine",
  704. "type": "patreon"
  705. },
  706. {
  707. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  708. "type": "tidelift"
  709. }
  710. ],
  711. "time": "2020-05-25T17:44:05+00:00"
  712. },
  713. {
  714. "name": "dragonmantank/cron-expression",
  715. "version": "v2.3.1",
  716. "source": {
  717. "type": "git",
  718. "url": "https://github.com/dragonmantank/cron-expression.git",
  719. "reference": "65b2d8ee1f10915efb3b55597da3404f096acba2"
  720. },
  721. "dist": {
  722. "type": "zip",
  723. "url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/65b2d8ee1f10915efb3b55597da3404f096acba2",
  724. "reference": "65b2d8ee1f10915efb3b55597da3404f096acba2",
  725. "shasum": ""
  726. },
  727. "require": {
  728. "php": "^7.0|^8.0"
  729. },
  730. "require-dev": {
  731. "phpunit/phpunit": "^6.4|^7.0|^8.0|^9.0"
  732. },
  733. "type": "library",
  734. "extra": {
  735. "branch-alias": {
  736. "dev-master": "2.3-dev"
  737. }
  738. },
  739. "autoload": {
  740. "psr-4": {
  741. "Cron\\": "src/Cron/"
  742. }
  743. },
  744. "notification-url": "https://packagist.org/downloads/",
  745. "license": [
  746. "MIT"
  747. ],
  748. "authors": [
  749. {
  750. "name": "Michael Dowling",
  751. "email": "mtdowling@gmail.com",
  752. "homepage": "https://github.com/mtdowling"
  753. },
  754. {
  755. "name": "Chris Tankersley",
  756. "email": "chris@ctankersley.com",
  757. "homepage": "https://github.com/dragonmantank"
  758. }
  759. ],
  760. "description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due",
  761. "keywords": [
  762. "cron",
  763. "schedule"
  764. ],
  765. "support": {
  766. "issues": "https://github.com/dragonmantank/cron-expression/issues",
  767. "source": "https://github.com/dragonmantank/cron-expression/tree/v2.3.1"
  768. },
  769. "funding": [
  770. {
  771. "url": "https://github.com/dragonmantank",
  772. "type": "github"
  773. }
  774. ],
  775. "time": "2020-10-13T00:52:37+00:00"
  776. },
  777. {
  778. "name": "egulias/email-validator",
  779. "version": "2.1.25",
  780. "source": {
  781. "type": "git",
  782. "url": "https://github.com/egulias/EmailValidator.git",
  783. "reference": "0dbf5d78455d4d6a41d186da50adc1122ec066f4"
  784. },
  785. "dist": {
  786. "type": "zip",
  787. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/0dbf5d78455d4d6a41d186da50adc1122ec066f4",
  788. "reference": "0dbf5d78455d4d6a41d186da50adc1122ec066f4",
  789. "shasum": ""
  790. },
  791. "require": {
  792. "doctrine/lexer": "^1.0.1",
  793. "php": ">=5.5",
  794. "symfony/polyfill-intl-idn": "^1.10"
  795. },
  796. "require-dev": {
  797. "dominicsayers/isemail": "^3.0.7",
  798. "phpunit/phpunit": "^4.8.36|^7.5.15",
  799. "satooshi/php-coveralls": "^1.0.1"
  800. },
  801. "suggest": {
  802. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  803. },
  804. "type": "library",
  805. "extra": {
  806. "branch-alias": {
  807. "dev-master": "2.1.x-dev"
  808. }
  809. },
  810. "autoload": {
  811. "psr-4": {
  812. "Egulias\\EmailValidator\\": "src"
  813. }
  814. },
  815. "notification-url": "https://packagist.org/downloads/",
  816. "license": [
  817. "MIT"
  818. ],
  819. "authors": [
  820. {
  821. "name": "Eduardo Gulias Davis"
  822. }
  823. ],
  824. "description": "A library for validating emails against several RFCs",
  825. "homepage": "https://github.com/egulias/EmailValidator",
  826. "keywords": [
  827. "email",
  828. "emailvalidation",
  829. "emailvalidator",
  830. "validation",
  831. "validator"
  832. ],
  833. "support": {
  834. "issues": "https://github.com/egulias/EmailValidator/issues",
  835. "source": "https://github.com/egulias/EmailValidator/tree/2.1.25"
  836. },
  837. "funding": [
  838. {
  839. "url": "https://github.com/egulias",
  840. "type": "github"
  841. }
  842. ],
  843. "time": "2020-12-29T14:50:06+00:00"
  844. },
  845. {
  846. "name": "elfsundae/bearychat",
  847. "version": "1.3.1",
  848. "source": {
  849. "type": "git",
  850. "url": "https://github.com/ElfSundae/bearychat.git",
  851. "reference": "b3c7437d0e24463504679931a482e9b642d93024"
  852. },
  853. "dist": {
  854. "type": "zip",
  855. "url": "https://api.github.com/repos/ElfSundae/bearychat/zipball/b3c7437d0e24463504679931a482e9b642d93024",
  856. "reference": "b3c7437d0e24463504679931a482e9b642d93024",
  857. "shasum": ""
  858. },
  859. "require": {
  860. "ext-mbstring": "*",
  861. "guzzlehttp/guzzle": "~5.3|~6.0",
  862. "php": ">=5.4.0"
  863. },
  864. "require-dev": {
  865. "mockery/mockery": "0.9.*",
  866. "phpunit/phpunit": "~5.7"
  867. },
  868. "suggest": {
  869. "elfsundae/laravel-bearychat": "Required for Laravel integration.",
  870. "laravel-notification-channels/bearychat": "BearyChat notifications channel for Laravel 5."
  871. },
  872. "type": "library",
  873. "autoload": {
  874. "psr-4": {
  875. "ElfSundae\\BearyChat\\": "src/"
  876. }
  877. },
  878. "notification-url": "https://packagist.org/downloads/",
  879. "license": [
  880. "MIT"
  881. ],
  882. "authors": [
  883. {
  884. "name": "Elf Sundae",
  885. "email": "elf.sundae@gmail.com",
  886. "homepage": "https://0x123.com"
  887. }
  888. ],
  889. "description": "An elegant way of interacting with BearyChat webhooks.",
  890. "homepage": "https://github.com/ElfSundae/bearychat",
  891. "keywords": [
  892. "bearychat",
  893. "incoming",
  894. "outgoing",
  895. "robot",
  896. "webhook"
  897. ],
  898. "support": {
  899. "issues": "https://github.com/ElfSundae/bearychat/issues",
  900. "source": "https://github.com/ElfSundae/bearychat/tree/master"
  901. },
  902. "time": "2017-09-04T05:54:05+00:00"
  903. },
  904. {
  905. "name": "elfsundae/laravel-bearychat",
  906. "version": "1.6.0",
  907. "source": {
  908. "type": "git",
  909. "url": "https://github.com/ElfSundae/laravel-bearychat.git",
  910. "reference": "417a15868e46c9d664a437532c5ddd9be3fe9b04"
  911. },
  912. "dist": {
  913. "type": "zip",
  914. "url": "https://api.github.com/repos/ElfSundae/laravel-bearychat/zipball/417a15868e46c9d664a437532c5ddd9be3fe9b04",
  915. "reference": "417a15868e46c9d664a437532c5ddd9be3fe9b04",
  916. "shasum": ""
  917. },
  918. "require": {
  919. "elfsundae/bearychat": "^1.3.1",
  920. "illuminate/support": "~5.0|~6.0|~7.0|~8.0",
  921. "php": ">=5.6.4"
  922. },
  923. "require-dev": {
  924. "mockery/mockery": "~0.9|~1.0",
  925. "phpunit/phpunit": "~5.7|~6.0|~7.0|~8.0|~9.0"
  926. },
  927. "suggest": {
  928. "laravel-notification-channels/bearychat": "BearyChat notifications channel for Laravel 5."
  929. },
  930. "type": "library",
  931. "extra": {
  932. "laravel": {
  933. "providers": [
  934. "ElfSundae\\BearyChat\\Laravel\\ServiceProvider"
  935. ],
  936. "aliases": {
  937. "BearyChat": "ElfSundae\\BearyChat\\Laravel\\BearyChat"
  938. }
  939. }
  940. },
  941. "autoload": {
  942. "psr-4": {
  943. "ElfSundae\\BearyChat\\Laravel\\": "src/"
  944. },
  945. "files": [
  946. "src/helpers.php"
  947. ]
  948. },
  949. "notification-url": "https://packagist.org/downloads/",
  950. "license": [
  951. "MIT"
  952. ],
  953. "authors": [
  954. {
  955. "name": "Elf Sundae",
  956. "email": "elf.sundae@gmail.com",
  957. "homepage": "https://0x123.com"
  958. }
  959. ],
  960. "description": "Laravel integration for BearyChat.",
  961. "homepage": "https://github.com/ElfSundae/laravel-bearychat",
  962. "keywords": [
  963. "bearychat",
  964. "incoming",
  965. "laravel",
  966. "outgoing",
  967. "robot",
  968. "webhook"
  969. ],
  970. "support": {
  971. "issues": "https://github.com/ElfSundae/laravel-bearychat/issues",
  972. "source": "https://github.com/ElfSundae/laravel-bearychat/tree/1.6.0"
  973. },
  974. "time": "2020-09-13T14:19:31+00:00"
  975. },
  976. {
  977. "name": "ezyang/htmlpurifier",
  978. "version": "v4.13.0",
  979. "source": {
  980. "type": "git",
  981. "url": "https://github.com/ezyang/htmlpurifier.git",
  982. "reference": "08e27c97e4c6ed02f37c5b2b20488046c8d90d75"
  983. },
  984. "dist": {
  985. "type": "zip",
  986. "url": "https://api.github.com/repos/ezyang/htmlpurifier/zipball/08e27c97e4c6ed02f37c5b2b20488046c8d90d75",
  987. "reference": "08e27c97e4c6ed02f37c5b2b20488046c8d90d75",
  988. "shasum": ""
  989. },
  990. "require": {
  991. "php": ">=5.2"
  992. },
  993. "require-dev": {
  994. "simpletest/simpletest": "dev-master#72de02a7b80c6bb8864ef9bf66d41d2f58f826bd"
  995. },
  996. "type": "library",
  997. "autoload": {
  998. "psr-0": {
  999. "HTMLPurifier": "library/"
  1000. },
  1001. "files": [
  1002. "library/HTMLPurifier.composer.php"
  1003. ],
  1004. "exclude-from-classmap": [
  1005. "/library/HTMLPurifier/Language/"
  1006. ]
  1007. },
  1008. "notification-url": "https://packagist.org/downloads/",
  1009. "license": [
  1010. "LGPL-2.1-or-later"
  1011. ],
  1012. "authors": [
  1013. {
  1014. "name": "Edward Z. Yang",
  1015. "email": "admin@htmlpurifier.org",
  1016. "homepage": "http://ezyang.com"
  1017. }
  1018. ],
  1019. "description": "Standards compliant HTML filter written in PHP",
  1020. "homepage": "http://htmlpurifier.org/",
  1021. "keywords": [
  1022. "html"
  1023. ],
  1024. "support": {
  1025. "issues": "https://github.com/ezyang/htmlpurifier/issues",
  1026. "source": "https://github.com/ezyang/htmlpurifier/tree/master"
  1027. },
  1028. "time": "2020-06-29T00:56:53+00:00"
  1029. },
  1030. {
  1031. "name": "fideloper/proxy",
  1032. "version": "4.4.1",
  1033. "source": {
  1034. "type": "git",
  1035. "url": "https://github.com/fideloper/TrustedProxy.git",
  1036. "reference": "c073b2bd04d1c90e04dc1b787662b558dd65ade0"
  1037. },
  1038. "dist": {
  1039. "type": "zip",
  1040. "url": "https://api.github.com/repos/fideloper/TrustedProxy/zipball/c073b2bd04d1c90e04dc1b787662b558dd65ade0",
  1041. "reference": "c073b2bd04d1c90e04dc1b787662b558dd65ade0",
  1042. "shasum": ""
  1043. },
  1044. "require": {
  1045. "illuminate/contracts": "^5.0|^6.0|^7.0|^8.0|^9.0",
  1046. "php": ">=5.4.0"
  1047. },
  1048. "require-dev": {
  1049. "illuminate/http": "^5.0|^6.0|^7.0|^8.0|^9.0",
  1050. "mockery/mockery": "^1.0",
  1051. "phpunit/phpunit": "^6.0"
  1052. },
  1053. "type": "library",
  1054. "extra": {
  1055. "laravel": {
  1056. "providers": [
  1057. "Fideloper\\Proxy\\TrustedProxyServiceProvider"
  1058. ]
  1059. }
  1060. },
  1061. "autoload": {
  1062. "psr-4": {
  1063. "Fideloper\\Proxy\\": "src/"
  1064. }
  1065. },
  1066. "notification-url": "https://packagist.org/downloads/",
  1067. "license": [
  1068. "MIT"
  1069. ],
  1070. "authors": [
  1071. {
  1072. "name": "Chris Fidao",
  1073. "email": "fideloper@gmail.com"
  1074. }
  1075. ],
  1076. "description": "Set trusted proxies for Laravel",
  1077. "keywords": [
  1078. "load balancing",
  1079. "proxy",
  1080. "trusted proxy"
  1081. ],
  1082. "support": {
  1083. "issues": "https://github.com/fideloper/TrustedProxy/issues",
  1084. "source": "https://github.com/fideloper/TrustedProxy/tree/4.4.1"
  1085. },
  1086. "time": "2020-10-22T13:48:01+00:00"
  1087. },
  1088. {
  1089. "name": "fruitcake/laravel-cors",
  1090. "version": "v2.0.3",
  1091. "source": {
  1092. "type": "git",
  1093. "url": "https://github.com/fruitcake/laravel-cors.git",
  1094. "reference": "01de0fe5f71c70d1930ee9a80385f9cc28e0f63a"
  1095. },
  1096. "dist": {
  1097. "type": "zip",
  1098. "url": "https://api.github.com/repos/fruitcake/laravel-cors/zipball/01de0fe5f71c70d1930ee9a80385f9cc28e0f63a",
  1099. "reference": "01de0fe5f71c70d1930ee9a80385f9cc28e0f63a",
  1100. "shasum": ""
  1101. },
  1102. "require": {
  1103. "asm89/stack-cors": "^2.0.1",
  1104. "illuminate/contracts": "^6|^7|^8|^9",
  1105. "illuminate/support": "^6|^7|^8|^9",
  1106. "php": ">=7.2",
  1107. "symfony/http-foundation": "^4|^5",
  1108. "symfony/http-kernel": "^4.3.4|^5"
  1109. },
  1110. "require-dev": {
  1111. "laravel/framework": "^6|^7|^8",
  1112. "orchestra/testbench-dusk": "^4|^5|^6",
  1113. "phpunit/phpunit": "^6|^7|^8",
  1114. "squizlabs/php_codesniffer": "^3.5"
  1115. },
  1116. "type": "library",
  1117. "extra": {
  1118. "branch-alias": {
  1119. "dev-master": "2.0-dev"
  1120. },
  1121. "laravel": {
  1122. "providers": [
  1123. "Fruitcake\\Cors\\CorsServiceProvider"
  1124. ]
  1125. }
  1126. },
  1127. "autoload": {
  1128. "psr-4": {
  1129. "Fruitcake\\Cors\\": "src/"
  1130. }
  1131. },
  1132. "notification-url": "https://packagist.org/downloads/",
  1133. "license": [
  1134. "MIT"
  1135. ],
  1136. "authors": [
  1137. {
  1138. "name": "Fruitcake",
  1139. "homepage": "https://fruitcake.nl"
  1140. },
  1141. {
  1142. "name": "Barry vd. Heuvel",
  1143. "email": "barryvdh@gmail.com"
  1144. }
  1145. ],
  1146. "description": "Adds CORS (Cross-Origin Resource Sharing) headers support in your Laravel application",
  1147. "keywords": [
  1148. "api",
  1149. "cors",
  1150. "crossdomain",
  1151. "laravel"
  1152. ],
  1153. "support": {
  1154. "issues": "https://github.com/fruitcake/laravel-cors/issues",
  1155. "source": "https://github.com/fruitcake/laravel-cors/tree/v2.0.3"
  1156. },
  1157. "funding": [
  1158. {
  1159. "url": "https://github.com/barryvdh",
  1160. "type": "github"
  1161. }
  1162. ],
  1163. "time": "2020-10-22T13:57:20+00:00"
  1164. },
  1165. {
  1166. "name": "geoip2/geoip2",
  1167. "version": "v2.11.0",
  1168. "source": {
  1169. "type": "git",
  1170. "url": "https://github.com/maxmind/GeoIP2-php.git",
  1171. "reference": "d01be5894a5c1a3381c58c9b1795cd07f96c30f7"
  1172. },
  1173. "dist": {
  1174. "type": "zip",
  1175. "url": "https://api.github.com/repos/maxmind/GeoIP2-php/zipball/d01be5894a5c1a3381c58c9b1795cd07f96c30f7",
  1176. "reference": "d01be5894a5c1a3381c58c9b1795cd07f96c30f7",
  1177. "shasum": ""
  1178. },
  1179. "require": {
  1180. "ext-json": "*",
  1181. "maxmind-db/reader": "~1.8",
  1182. "maxmind/web-service-common": "~0.8",
  1183. "php": ">=7.2"
  1184. },
  1185. "require-dev": {
  1186. "friendsofphp/php-cs-fixer": "2.*",
  1187. "phpunit/phpunit": "^8.0 || ^9.0",
  1188. "squizlabs/php_codesniffer": "3.*"
  1189. },
  1190. "type": "library",
  1191. "autoload": {
  1192. "psr-4": {
  1193. "GeoIp2\\": "src"
  1194. }
  1195. },
  1196. "notification-url": "https://packagist.org/downloads/",
  1197. "license": [
  1198. "Apache-2.0"
  1199. ],
  1200. "authors": [
  1201. {
  1202. "name": "Gregory J. Oschwald",
  1203. "email": "goschwald@maxmind.com",
  1204. "homepage": "https://www.maxmind.com/"
  1205. }
  1206. ],
  1207. "description": "MaxMind GeoIP2 PHP API",
  1208. "homepage": "https://github.com/maxmind/GeoIP2-php",
  1209. "keywords": [
  1210. "IP",
  1211. "geoip",
  1212. "geoip2",
  1213. "geolocation",
  1214. "maxmind"
  1215. ],
  1216. "support": {
  1217. "issues": "https://github.com/maxmind/GeoIP2-php/issues",
  1218. "source": "https://github.com/maxmind/GeoIP2-php/tree/v2.11.0"
  1219. },
  1220. "time": "2020-10-01T18:48:34+00:00"
  1221. },
  1222. {
  1223. "name": "guzzlehttp/guzzle",
  1224. "version": "6.5.5",
  1225. "source": {
  1226. "type": "git",
  1227. "url": "https://github.com/guzzle/guzzle.git",
  1228. "reference": "9d4290de1cfd701f38099ef7e183b64b4b7b0c5e"
  1229. },
  1230. "dist": {
  1231. "type": "zip",
  1232. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/9d4290de1cfd701f38099ef7e183b64b4b7b0c5e",
  1233. "reference": "9d4290de1cfd701f38099ef7e183b64b4b7b0c5e",
  1234. "shasum": ""
  1235. },
  1236. "require": {
  1237. "ext-json": "*",
  1238. "guzzlehttp/promises": "^1.0",
  1239. "guzzlehttp/psr7": "^1.6.1",
  1240. "php": ">=5.5",
  1241. "symfony/polyfill-intl-idn": "^1.17.0"
  1242. },
  1243. "require-dev": {
  1244. "ext-curl": "*",
  1245. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.4 || ^7.0",
  1246. "psr/log": "^1.1"
  1247. },
  1248. "suggest": {
  1249. "psr/log": "Required for using the Log middleware"
  1250. },
  1251. "type": "library",
  1252. "extra": {
  1253. "branch-alias": {
  1254. "dev-master": "6.5-dev"
  1255. }
  1256. },
  1257. "autoload": {
  1258. "psr-4": {
  1259. "GuzzleHttp\\": "src/"
  1260. },
  1261. "files": [
  1262. "src/functions_include.php"
  1263. ]
  1264. },
  1265. "notification-url": "https://packagist.org/downloads/",
  1266. "license": [
  1267. "MIT"
  1268. ],
  1269. "authors": [
  1270. {
  1271. "name": "Michael Dowling",
  1272. "email": "mtdowling@gmail.com",
  1273. "homepage": "https://github.com/mtdowling"
  1274. }
  1275. ],
  1276. "description": "Guzzle is a PHP HTTP client library",
  1277. "homepage": "http://guzzlephp.org/",
  1278. "keywords": [
  1279. "client",
  1280. "curl",
  1281. "framework",
  1282. "http",
  1283. "http client",
  1284. "rest",
  1285. "web service"
  1286. ],
  1287. "support": {
  1288. "issues": "https://github.com/guzzle/guzzle/issues",
  1289. "source": "https://github.com/guzzle/guzzle/tree/6.5"
  1290. },
  1291. "time": "2020-06-16T21:01:06+00:00"
  1292. },
  1293. {
  1294. "name": "guzzlehttp/promises",
  1295. "version": "1.4.0",
  1296. "source": {
  1297. "type": "git",
  1298. "url": "https://github.com/guzzle/promises.git",
  1299. "reference": "60d379c243457e073cff02bc323a2a86cb355631"
  1300. },
  1301. "dist": {
  1302. "type": "zip",
  1303. "url": "https://api.github.com/repos/guzzle/promises/zipball/60d379c243457e073cff02bc323a2a86cb355631",
  1304. "reference": "60d379c243457e073cff02bc323a2a86cb355631",
  1305. "shasum": ""
  1306. },
  1307. "require": {
  1308. "php": ">=5.5"
  1309. },
  1310. "require-dev": {
  1311. "symfony/phpunit-bridge": "^4.4 || ^5.1"
  1312. },
  1313. "type": "library",
  1314. "extra": {
  1315. "branch-alias": {
  1316. "dev-master": "1.4-dev"
  1317. }
  1318. },
  1319. "autoload": {
  1320. "psr-4": {
  1321. "GuzzleHttp\\Promise\\": "src/"
  1322. },
  1323. "files": [
  1324. "src/functions_include.php"
  1325. ]
  1326. },
  1327. "notification-url": "https://packagist.org/downloads/",
  1328. "license": [
  1329. "MIT"
  1330. ],
  1331. "authors": [
  1332. {
  1333. "name": "Michael Dowling",
  1334. "email": "mtdowling@gmail.com",
  1335. "homepage": "https://github.com/mtdowling"
  1336. }
  1337. ],
  1338. "description": "Guzzle promises library",
  1339. "keywords": [
  1340. "promise"
  1341. ],
  1342. "support": {
  1343. "issues": "https://github.com/guzzle/promises/issues",
  1344. "source": "https://github.com/guzzle/promises/tree/1.4.0"
  1345. },
  1346. "time": "2020-09-30T07:37:28+00:00"
  1347. },
  1348. {
  1349. "name": "guzzlehttp/psr7",
  1350. "version": "1.7.0",
  1351. "source": {
  1352. "type": "git",
  1353. "url": "https://github.com/guzzle/psr7.git",
  1354. "reference": "53330f47520498c0ae1f61f7e2c90f55690c06a3"
  1355. },
  1356. "dist": {
  1357. "type": "zip",
  1358. "url": "https://api.github.com/repos/guzzle/psr7/zipball/53330f47520498c0ae1f61f7e2c90f55690c06a3",
  1359. "reference": "53330f47520498c0ae1f61f7e2c90f55690c06a3",
  1360. "shasum": ""
  1361. },
  1362. "require": {
  1363. "php": ">=5.4.0",
  1364. "psr/http-message": "~1.0",
  1365. "ralouphie/getallheaders": "^2.0.5 || ^3.0.0"
  1366. },
  1367. "provide": {
  1368. "psr/http-message-implementation": "1.0"
  1369. },
  1370. "require-dev": {
  1371. "ext-zlib": "*",
  1372. "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.10"
  1373. },
  1374. "suggest": {
  1375. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  1376. },
  1377. "type": "library",
  1378. "extra": {
  1379. "branch-alias": {
  1380. "dev-master": "1.7-dev"
  1381. }
  1382. },
  1383. "autoload": {
  1384. "psr-4": {
  1385. "GuzzleHttp\\Psr7\\": "src/"
  1386. },
  1387. "files": [
  1388. "src/functions_include.php"
  1389. ]
  1390. },
  1391. "notification-url": "https://packagist.org/downloads/",
  1392. "license": [
  1393. "MIT"
  1394. ],
  1395. "authors": [
  1396. {
  1397. "name": "Michael Dowling",
  1398. "email": "mtdowling@gmail.com",
  1399. "homepage": "https://github.com/mtdowling"
  1400. },
  1401. {
  1402. "name": "Tobias Schultze",
  1403. "homepage": "https://github.com/Tobion"
  1404. }
  1405. ],
  1406. "description": "PSR-7 message implementation that also provides common utility methods",
  1407. "keywords": [
  1408. "http",
  1409. "message",
  1410. "psr-7",
  1411. "request",
  1412. "response",
  1413. "stream",
  1414. "uri",
  1415. "url"
  1416. ],
  1417. "support": {
  1418. "issues": "https://github.com/guzzle/psr7/issues",
  1419. "source": "https://github.com/guzzle/psr7/tree/1.7.0"
  1420. },
  1421. "time": "2020-09-30T07:37:11+00:00"
  1422. },
  1423. {
  1424. "name": "intervention/image",
  1425. "version": "2.5.1",
  1426. "source": {
  1427. "type": "git",
  1428. "url": "https://github.com/Intervention/image.git",
  1429. "reference": "abbf18d5ab8367f96b3205ca3c89fb2fa598c69e"
  1430. },
  1431. "dist": {
  1432. "type": "zip",
  1433. "url": "https://api.github.com/repos/Intervention/image/zipball/abbf18d5ab8367f96b3205ca3c89fb2fa598c69e",
  1434. "reference": "abbf18d5ab8367f96b3205ca3c89fb2fa598c69e",
  1435. "shasum": ""
  1436. },
  1437. "require": {
  1438. "ext-fileinfo": "*",
  1439. "guzzlehttp/psr7": "~1.1",
  1440. "php": ">=5.4.0"
  1441. },
  1442. "require-dev": {
  1443. "mockery/mockery": "~0.9.2",
  1444. "phpunit/phpunit": "^4.8 || ^5.7"
  1445. },
  1446. "suggest": {
  1447. "ext-gd": "to use GD library based image processing.",
  1448. "ext-imagick": "to use Imagick based image processing.",
  1449. "intervention/imagecache": "Caching extension for the Intervention Image library"
  1450. },
  1451. "type": "library",
  1452. "extra": {
  1453. "branch-alias": {
  1454. "dev-master": "2.4-dev"
  1455. },
  1456. "laravel": {
  1457. "providers": [
  1458. "Intervention\\Image\\ImageServiceProvider"
  1459. ],
  1460. "aliases": {
  1461. "Image": "Intervention\\Image\\Facades\\Image"
  1462. }
  1463. }
  1464. },
  1465. "autoload": {
  1466. "psr-4": {
  1467. "Intervention\\Image\\": "src/Intervention/Image"
  1468. }
  1469. },
  1470. "notification-url": "https://packagist.org/downloads/",
  1471. "license": [
  1472. "MIT"
  1473. ],
  1474. "authors": [
  1475. {
  1476. "name": "Oliver Vogel",
  1477. "email": "oliver@olivervogel.com",
  1478. "homepage": "http://olivervogel.com/"
  1479. }
  1480. ],
  1481. "description": "Image handling and manipulation library with support for Laravel integration",
  1482. "homepage": "http://image.intervention.io/",
  1483. "keywords": [
  1484. "gd",
  1485. "image",
  1486. "imagick",
  1487. "laravel",
  1488. "thumbnail",
  1489. "watermark"
  1490. ],
  1491. "support": {
  1492. "issues": "https://github.com/Intervention/image/issues",
  1493. "source": "https://github.com/Intervention/image/tree/master"
  1494. },
  1495. "time": "2019-11-02T09:15:47+00:00"
  1496. },
  1497. {
  1498. "name": "ip2location/ip2location-laravel",
  1499. "version": "1.2.0",
  1500. "source": {
  1501. "type": "git",
  1502. "url": "https://github.com/ip2location/ip2location-laravel.git",
  1503. "reference": "56b0da66e12982ef6db0e2fe3b231659c5e76a9b"
  1504. },
  1505. "dist": {
  1506. "type": "zip",
  1507. "url": "https://api.github.com/repos/ip2location/ip2location-laravel/zipball/56b0da66e12982ef6db0e2fe3b231659c5e76a9b",
  1508. "reference": "56b0da66e12982ef6db0e2fe3b231659c5e76a9b",
  1509. "shasum": ""
  1510. },
  1511. "require": {
  1512. "ip2location/ip2location-php": "8.*",
  1513. "php": ">=5.4"
  1514. },
  1515. "type": "library",
  1516. "autoload": {
  1517. "psr-4": {
  1518. "Ip2location\\IP2LocationLaravel\\": "src/"
  1519. }
  1520. },
  1521. "notification-url": "https://packagist.org/downloads/",
  1522. "license": [
  1523. "MIT"
  1524. ],
  1525. "authors": [
  1526. {
  1527. "name": "IP2Location",
  1528. "email": "support@ip2location.com"
  1529. }
  1530. ],
  1531. "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.",
  1532. "keywords": [
  1533. "geolocation",
  1534. "ip2location",
  1535. "laravel",
  1536. "laravel 5",
  1537. "laravel 7"
  1538. ],
  1539. "support": {
  1540. "issues": "https://github.com/ip2location/ip2location-laravel/issues",
  1541. "source": "https://github.com/ip2location/ip2location-laravel/tree/master"
  1542. },
  1543. "time": "2020-08-27T07:47:55+00:00"
  1544. },
  1545. {
  1546. "name": "ip2location/ip2location-php",
  1547. "version": "8.3.0",
  1548. "source": {
  1549. "type": "git",
  1550. "url": "https://github.com/chrislim2888/IP2Location-PHP-Module.git",
  1551. "reference": "4c501aa1f666ae85eab84d4df9d19399f2e6ce15"
  1552. },
  1553. "dist": {
  1554. "type": "zip",
  1555. "url": "https://api.github.com/repos/chrislim2888/IP2Location-PHP-Module/zipball/4c501aa1f666ae85eab84d4df9d19399f2e6ce15",
  1556. "reference": "4c501aa1f666ae85eab84d4df9d19399f2e6ce15",
  1557. "shasum": ""
  1558. },
  1559. "type": "library",
  1560. "autoload": {
  1561. "classmap": [
  1562. "IP2Location.php"
  1563. ]
  1564. },
  1565. "notification-url": "https://packagist.org/downloads/",
  1566. "license": [
  1567. "MIT"
  1568. ],
  1569. "authors": [
  1570. {
  1571. "name": "IP2Location",
  1572. "email": "support@ip2location.com",
  1573. "homepage": "http://www.ip2location.com"
  1574. }
  1575. ],
  1576. "description": "[Official Release] IP2Location PHP API to get location info from IPv4 and IPv6 address.",
  1577. "homepage": "http://www.ip2location.com",
  1578. "keywords": [
  1579. "geolocation",
  1580. "ip2location",
  1581. "ip2locationlite"
  1582. ],
  1583. "support": {
  1584. "issues": "https://github.com/chrislim2888/IP2Location-PHP-Module/issues",
  1585. "source": "https://github.com/chrislim2888/IP2Location-PHP-Module/tree/8.3.0"
  1586. },
  1587. "time": "2020-11-23T04:30:39+00:00"
  1588. },
  1589. {
  1590. "name": "ipip/db",
  1591. "version": "v1.0.0",
  1592. "source": {
  1593. "type": "git",
  1594. "url": "https://github.com/ipipdotnet/ipdb-php.git",
  1595. "reference": "af42bf28b37dc76beccd7bbe2b0b0572e21f42cf"
  1596. },
  1597. "dist": {
  1598. "type": "zip",
  1599. "url": "https://api.github.com/repos/ipipdotnet/ipdb-php/zipball/af42bf28b37dc76beccd7bbe2b0b0572e21f42cf",
  1600. "reference": "af42bf28b37dc76beccd7bbe2b0b0572e21f42cf",
  1601. "shasum": ""
  1602. },
  1603. "require": {
  1604. "php": ">=5.4.0"
  1605. },
  1606. "type": "library",
  1607. "autoload": {
  1608. "psr-4": {
  1609. "ipip\\db\\": "src/ipip/db/"
  1610. }
  1611. },
  1612. "notification-url": "https://packagist.org/downloads/",
  1613. "license": [
  1614. "Apache-2.0"
  1615. ],
  1616. "authors": [
  1617. {
  1618. "name": "IPIP.net",
  1619. "email": "frk@ipip.net",
  1620. "homepage": "https://www.ipip.net"
  1621. }
  1622. ],
  1623. "description": "IPIP.net officially supported IP database ipdb format parsing library",
  1624. "homepage": "https://www.ipip.net",
  1625. "keywords": [
  1626. "IP",
  1627. "geo",
  1628. "geoip",
  1629. "geolocation",
  1630. "ipdb",
  1631. "ipip.net"
  1632. ],
  1633. "support": {
  1634. "issues": "https://github.com/ipipdotnet/ipdb-php/issues",
  1635. "source": "https://github.com/ipipdotnet/ipdb-php/tree/v1.0.0"
  1636. },
  1637. "time": "2018-11-01T08:07:04+00:00"
  1638. },
  1639. {
  1640. "name": "jaybizzle/crawler-detect",
  1641. "version": "v1.2.103",
  1642. "source": {
  1643. "type": "git",
  1644. "url": "https://github.com/JayBizzle/Crawler-Detect.git",
  1645. "reference": "3efa2860959cc971f17624b40bf0699823f9d0f3"
  1646. },
  1647. "dist": {
  1648. "type": "zip",
  1649. "url": "https://api.github.com/repos/JayBizzle/Crawler-Detect/zipball/3efa2860959cc971f17624b40bf0699823f9d0f3",
  1650. "reference": "3efa2860959cc971f17624b40bf0699823f9d0f3",
  1651. "shasum": ""
  1652. },
  1653. "require": {
  1654. "php": ">=5.3.0"
  1655. },
  1656. "require-dev": {
  1657. "phpunit/phpunit": "^4.8|^5.5|^6.5"
  1658. },
  1659. "type": "library",
  1660. "autoload": {
  1661. "psr-4": {
  1662. "Jaybizzle\\CrawlerDetect\\": "src/"
  1663. }
  1664. },
  1665. "notification-url": "https://packagist.org/downloads/",
  1666. "license": [
  1667. "MIT"
  1668. ],
  1669. "authors": [
  1670. {
  1671. "name": "Mark Beech",
  1672. "email": "m@rkbee.ch",
  1673. "role": "Developer"
  1674. }
  1675. ],
  1676. "description": "CrawlerDetect is a PHP class for detecting bots/crawlers/spiders via the user agent",
  1677. "homepage": "https://github.com/JayBizzle/Crawler-Detect/",
  1678. "keywords": [
  1679. "crawler",
  1680. "crawler detect",
  1681. "crawler detector",
  1682. "crawlerdetect",
  1683. "php crawler detect"
  1684. ],
  1685. "support": {
  1686. "issues": "https://github.com/JayBizzle/Crawler-Detect/issues",
  1687. "source": "https://github.com/JayBizzle/Crawler-Detect/tree/v1.2.103"
  1688. },
  1689. "time": "2020-11-23T19:49:25+00:00"
  1690. },
  1691. {
  1692. "name": "jenssegers/agent",
  1693. "version": "v2.6.4",
  1694. "source": {
  1695. "type": "git",
  1696. "url": "https://github.com/jenssegers/agent.git",
  1697. "reference": "daa11c43729510b3700bc34d414664966b03bffe"
  1698. },
  1699. "dist": {
  1700. "type": "zip",
  1701. "url": "https://api.github.com/repos/jenssegers/agent/zipball/daa11c43729510b3700bc34d414664966b03bffe",
  1702. "reference": "daa11c43729510b3700bc34d414664966b03bffe",
  1703. "shasum": ""
  1704. },
  1705. "require": {
  1706. "jaybizzle/crawler-detect": "^1.2",
  1707. "mobiledetect/mobiledetectlib": "^2.7.6",
  1708. "php": ">=5.6"
  1709. },
  1710. "require-dev": {
  1711. "php-coveralls/php-coveralls": "^2.1",
  1712. "phpunit/phpunit": "^5.0|^6.0|^7.0"
  1713. },
  1714. "suggest": {
  1715. "illuminate/support": "Required for laravel service providers"
  1716. },
  1717. "type": "library",
  1718. "extra": {
  1719. "branch-alias": {
  1720. "dev-master": "3.0-dev"
  1721. },
  1722. "laravel": {
  1723. "providers": [
  1724. "Jenssegers\\Agent\\AgentServiceProvider"
  1725. ],
  1726. "aliases": {
  1727. "Agent": "Jenssegers\\Agent\\Facades\\Agent"
  1728. }
  1729. }
  1730. },
  1731. "autoload": {
  1732. "psr-4": {
  1733. "Jenssegers\\Agent\\": "src/"
  1734. }
  1735. },
  1736. "notification-url": "https://packagist.org/downloads/",
  1737. "license": [
  1738. "MIT"
  1739. ],
  1740. "authors": [
  1741. {
  1742. "name": "Jens Segers",
  1743. "homepage": "https://jenssegers.com"
  1744. }
  1745. ],
  1746. "description": "Desktop/mobile user agent parser with support for Laravel, based on Mobiledetect",
  1747. "homepage": "https://github.com/jenssegers/agent",
  1748. "keywords": [
  1749. "Agent",
  1750. "browser",
  1751. "desktop",
  1752. "laravel",
  1753. "mobile",
  1754. "platform",
  1755. "user agent",
  1756. "useragent"
  1757. ],
  1758. "support": {
  1759. "issues": "https://github.com/jenssegers/agent/issues",
  1760. "source": "https://github.com/jenssegers/agent/tree/v2.6.4"
  1761. },
  1762. "funding": [
  1763. {
  1764. "url": "https://github.com/jenssegers",
  1765. "type": "github"
  1766. },
  1767. {
  1768. "url": "https://tidelift.com/funding/github/packagist/jenssegers/agent",
  1769. "type": "tidelift"
  1770. }
  1771. ],
  1772. "time": "2020-06-13T08:05:20+00:00"
  1773. },
  1774. {
  1775. "name": "laravel-lang/lang",
  1776. "version": "7.0.9",
  1777. "source": {
  1778. "type": "git",
  1779. "url": "https://github.com/Laravel-Lang/lang.git",
  1780. "reference": "679a65755db37b35acd36a5e0ca51e055815a00a"
  1781. },
  1782. "dist": {
  1783. "type": "zip",
  1784. "url": "https://api.github.com/repos/Laravel-Lang/lang/zipball/679a65755db37b35acd36a5e0ca51e055815a00a",
  1785. "reference": "679a65755db37b35acd36a5e0ca51e055815a00a",
  1786. "shasum": ""
  1787. },
  1788. "require": {
  1789. "ext-json": "*"
  1790. },
  1791. "suggest": {
  1792. "andrey-helldar/laravel-lang-publisher": "Easy installation and update of translation files for your project",
  1793. "arcanedev/laravel-lang": "Translations manager and checker for Laravel 5",
  1794. "overtrue/laravel-lang": "Command to add languages in your project"
  1795. },
  1796. "type": "library",
  1797. "notification-url": "https://packagist.org/downloads/",
  1798. "license": [
  1799. "MIT"
  1800. ],
  1801. "authors": [
  1802. {
  1803. "name": "Laravel-Lang Team"
  1804. }
  1805. ],
  1806. "description": "Languages for Laravel",
  1807. "keywords": [
  1808. "lang",
  1809. "languages",
  1810. "laravel",
  1811. "lpm"
  1812. ],
  1813. "support": {
  1814. "issues": "https://github.com/Laravel-Lang/lang/issues",
  1815. "source": "https://github.com/Laravel-Lang/lang/tree/7.0.9"
  1816. },
  1817. "time": "2020-11-30T20:35:41+00:00"
  1818. },
  1819. {
  1820. "name": "laravel-notification-channels/bearychat",
  1821. "version": "1.4.0",
  1822. "source": {
  1823. "type": "git",
  1824. "url": "https://github.com/laravel-notification-channels/bearychat.git",
  1825. "reference": "b04ac9bad37cd08cf177a342b3e2b831c87b2a96"
  1826. },
  1827. "dist": {
  1828. "type": "zip",
  1829. "url": "https://api.github.com/repos/laravel-notification-channels/bearychat/zipball/b04ac9bad37cd08cf177a342b3e2b831c87b2a96",
  1830. "reference": "b04ac9bad37cd08cf177a342b3e2b831c87b2a96",
  1831. "shasum": ""
  1832. },
  1833. "require": {
  1834. "elfsundae/laravel-bearychat": "~1.4",
  1835. "illuminate/notifications": "~5.3|~6.0|~7.0|~8.0",
  1836. "php": ">=5.6.4"
  1837. },
  1838. "require-dev": {
  1839. "mockery/mockery": "~1.0",
  1840. "phpunit/phpunit": "~5.7|~6.0|~7.0|~8.0"
  1841. },
  1842. "type": "library",
  1843. "autoload": {
  1844. "psr-4": {
  1845. "NotificationChannels\\BearyChat\\": "src"
  1846. }
  1847. },
  1848. "notification-url": "https://packagist.org/downloads/",
  1849. "license": [
  1850. "MIT"
  1851. ],
  1852. "authors": [
  1853. {
  1854. "name": "Elf Sundae",
  1855. "email": "elf.sundae@gmail.com",
  1856. "homepage": "https://github.com/ElfSundae",
  1857. "role": "Developer"
  1858. }
  1859. ],
  1860. "description": "BearyChat notifications channel for Laravel.",
  1861. "homepage": "https://github.com/laravel-notification-channels/bearychat",
  1862. "support": {
  1863. "issues": "https://github.com/laravel-notification-channels/bearychat/issues",
  1864. "source": "https://github.com/laravel-notification-channels/bearychat/tree/1.4.0"
  1865. },
  1866. "time": "2020-09-13T14:32:13+00:00"
  1867. },
  1868. {
  1869. "name": "laravel-notification-channels/telegram",
  1870. "version": "0.5.1",
  1871. "source": {
  1872. "type": "git",
  1873. "url": "https://github.com/laravel-notification-channels/telegram.git",
  1874. "reference": "2cedb10b78219cc91a285eaa5a3de0db405cc207"
  1875. },
  1876. "dist": {
  1877. "type": "zip",
  1878. "url": "https://api.github.com/repos/laravel-notification-channels/telegram/zipball/2cedb10b78219cc91a285eaa5a3de0db405cc207",
  1879. "reference": "2cedb10b78219cc91a285eaa5a3de0db405cc207",
  1880. "shasum": ""
  1881. },
  1882. "require": {
  1883. "ext-json": "*",
  1884. "guzzlehttp/guzzle": "^6.2 || ^7.0",
  1885. "illuminate/notifications": "^5.5 || ^6.0 || ^7.0 || ^8.0",
  1886. "illuminate/support": "^5.5 || ^6.0 || ^7.0 || ^8.0",
  1887. "php": "^7.1 || ^8.0"
  1888. },
  1889. "require-dev": {
  1890. "mockery/mockery": "^1.3",
  1891. "phpunit/phpunit": "^7.0 || ^8.0"
  1892. },
  1893. "type": "library",
  1894. "extra": {
  1895. "laravel": {
  1896. "providers": [
  1897. "NotificationChannels\\Telegram\\TelegramServiceProvider"
  1898. ]
  1899. }
  1900. },
  1901. "autoload": {
  1902. "psr-4": {
  1903. "NotificationChannels\\Telegram\\": "src"
  1904. }
  1905. },
  1906. "notification-url": "https://packagist.org/downloads/",
  1907. "license": [
  1908. "MIT"
  1909. ],
  1910. "authors": [
  1911. {
  1912. "name": "Irfaq Syed",
  1913. "email": "syed@lukonet.com",
  1914. "homepage": "https://lukonet.com",
  1915. "role": "Developer"
  1916. }
  1917. ],
  1918. "description": "Telegram Notifications Channel for Laravel",
  1919. "homepage": "https://github.com/laravel-notification-channels/telegram",
  1920. "keywords": [
  1921. "laravel",
  1922. "notification",
  1923. "telegram",
  1924. "telegram notification",
  1925. "telegram notifications channel"
  1926. ],
  1927. "support": {
  1928. "issues": "https://github.com/laravel-notification-channels/telegram/issues",
  1929. "source": "https://github.com/laravel-notification-channels/telegram/tree/0.5.1"
  1930. },
  1931. "time": "2020-12-06T19:00:18+00:00"
  1932. },
  1933. {
  1934. "name": "laravel/framework",
  1935. "version": "v7.30.1",
  1936. "source": {
  1937. "type": "git",
  1938. "url": "https://github.com/laravel/framework.git",
  1939. "reference": "e73855b18dcfc645c36d2474f437e4e73dd3c11d"
  1940. },
  1941. "dist": {
  1942. "type": "zip",
  1943. "url": "https://api.github.com/repos/laravel/framework/zipball/e73855b18dcfc645c36d2474f437e4e73dd3c11d",
  1944. "reference": "e73855b18dcfc645c36d2474f437e4e73dd3c11d",
  1945. "shasum": ""
  1946. },
  1947. "require": {
  1948. "doctrine/inflector": "^1.4|^2.0",
  1949. "dragonmantank/cron-expression": "^2.3.1",
  1950. "egulias/email-validator": "^2.1.10",
  1951. "ext-json": "*",
  1952. "ext-mbstring": "*",
  1953. "ext-openssl": "*",
  1954. "league/commonmark": "^1.3",
  1955. "league/flysystem": "^1.1",
  1956. "monolog/monolog": "^2.0",
  1957. "nesbot/carbon": "^2.31",
  1958. "opis/closure": "^3.6",
  1959. "php": "^7.2.5|^8.0",
  1960. "psr/container": "^1.0",
  1961. "psr/simple-cache": "^1.0",
  1962. "ramsey/uuid": "^3.7|^4.0",
  1963. "swiftmailer/swiftmailer": "^6.0",
  1964. "symfony/console": "^5.0",
  1965. "symfony/error-handler": "^5.0",
  1966. "symfony/finder": "^5.0",
  1967. "symfony/http-foundation": "^5.0",
  1968. "symfony/http-kernel": "^5.0",
  1969. "symfony/mime": "^5.0",
  1970. "symfony/polyfill-php73": "^1.17",
  1971. "symfony/process": "^5.0",
  1972. "symfony/routing": "^5.0",
  1973. "symfony/var-dumper": "^5.0",
  1974. "tijsverkoyen/css-to-inline-styles": "^2.2.2",
  1975. "vlucas/phpdotenv": "^4.0",
  1976. "voku/portable-ascii": "^1.4.8"
  1977. },
  1978. "conflict": {
  1979. "tightenco/collect": "<5.5.33"
  1980. },
  1981. "provide": {
  1982. "psr/container-implementation": "1.0"
  1983. },
  1984. "replace": {
  1985. "illuminate/auth": "self.version",
  1986. "illuminate/broadcasting": "self.version",
  1987. "illuminate/bus": "self.version",
  1988. "illuminate/cache": "self.version",
  1989. "illuminate/config": "self.version",
  1990. "illuminate/console": "self.version",
  1991. "illuminate/container": "self.version",
  1992. "illuminate/contracts": "self.version",
  1993. "illuminate/cookie": "self.version",
  1994. "illuminate/database": "self.version",
  1995. "illuminate/encryption": "self.version",
  1996. "illuminate/events": "self.version",
  1997. "illuminate/filesystem": "self.version",
  1998. "illuminate/hashing": "self.version",
  1999. "illuminate/http": "self.version",
  2000. "illuminate/log": "self.version",
  2001. "illuminate/mail": "self.version",
  2002. "illuminate/notifications": "self.version",
  2003. "illuminate/pagination": "self.version",
  2004. "illuminate/pipeline": "self.version",
  2005. "illuminate/queue": "self.version",
  2006. "illuminate/redis": "self.version",
  2007. "illuminate/routing": "self.version",
  2008. "illuminate/session": "self.version",
  2009. "illuminate/support": "self.version",
  2010. "illuminate/testing": "self.version",
  2011. "illuminate/translation": "self.version",
  2012. "illuminate/validation": "self.version",
  2013. "illuminate/view": "self.version"
  2014. },
  2015. "require-dev": {
  2016. "aws/aws-sdk-php": "^3.155",
  2017. "doctrine/dbal": "^2.6",
  2018. "filp/whoops": "^2.8",
  2019. "guzzlehttp/guzzle": "^6.3.1|^7.0.1",
  2020. "league/flysystem-cached-adapter": "^1.0",
  2021. "mockery/mockery": "~1.3.3|^1.4.2",
  2022. "moontoast/math": "^1.1",
  2023. "orchestra/testbench-core": "^5.8",
  2024. "pda/pheanstalk": "^4.0",
  2025. "phpunit/phpunit": "^8.4|^9.3.3",
  2026. "predis/predis": "^1.1.1",
  2027. "symfony/cache": "^5.0"
  2028. },
  2029. "suggest": {
  2030. "aws/aws-sdk-php": "Required to use the SQS queue driver, DynamoDb failed job storage and SES mail driver (^3.155).",
  2031. "doctrine/dbal": "Required to rename columns and drop SQLite columns (^2.6).",
  2032. "ext-ftp": "Required to use the Flysystem FTP driver.",
  2033. "ext-gd": "Required to use Illuminate\\Http\\Testing\\FileFactory::image().",
  2034. "ext-memcached": "Required to use the memcache cache driver.",
  2035. "ext-pcntl": "Required to use all features of the queue worker.",
  2036. "ext-posix": "Required to use all features of the queue worker.",
  2037. "ext-redis": "Required to use the Redis cache and queue drivers (^4.0|^5.0).",
  2038. "fakerphp/faker": "Required to use the eloquent factory builder (^1.9.1).",
  2039. "filp/whoops": "Required for friendly error pages in development (^2.8).",
  2040. "guzzlehttp/guzzle": "Required to use the HTTP Client, Mailgun mail driver and the ping methods on schedules (^6.3.1|^7.0.1).",
  2041. "laravel/tinker": "Required to use the tinker console command (^2.0).",
  2042. "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (^1.0).",
  2043. "league/flysystem-cached-adapter": "Required to use the Flysystem cache (^1.0).",
  2044. "league/flysystem-sftp": "Required to use the Flysystem SFTP driver (^1.0).",
  2045. "mockery/mockery": "Required to use mocking (~1.3.3|^1.4.2).",
  2046. "moontoast/math": "Required to use ordered UUIDs (^1.1).",
  2047. "nyholm/psr7": "Required to use PSR-7 bridging features (^1.2).",
  2048. "pda/pheanstalk": "Required to use the beanstalk queue driver (^4.0).",
  2049. "phpunit/phpunit": "Required to use assertions and run tests (^8.4|^9.3.3).",
  2050. "predis/predis": "Required to use the predis connector (^1.1.2).",
  2051. "psr/http-message": "Required to allow Storage::put to accept a StreamInterface (^1.0).",
  2052. "pusher/pusher-php-server": "Required to use the Pusher broadcast driver (^4.0).",
  2053. "symfony/cache": "Required to PSR-6 cache bridge (^5.0).",
  2054. "symfony/filesystem": "Required to create relative storage directory symbolic links (^5.0).",
  2055. "symfony/psr-http-message-bridge": "Required to use PSR-7 bridging features (^2.0).",
  2056. "wildbit/swiftmailer-postmark": "Required to use Postmark mail driver (^3.0)."
  2057. },
  2058. "type": "library",
  2059. "extra": {
  2060. "branch-alias": {
  2061. "dev-master": "7.x-dev"
  2062. }
  2063. },
  2064. "autoload": {
  2065. "files": [
  2066. "src/Illuminate/Foundation/helpers.php",
  2067. "src/Illuminate/Support/helpers.php"
  2068. ],
  2069. "psr-4": {
  2070. "Illuminate\\": "src/Illuminate/"
  2071. }
  2072. },
  2073. "notification-url": "https://packagist.org/downloads/",
  2074. "license": [
  2075. "MIT"
  2076. ],
  2077. "authors": [
  2078. {
  2079. "name": "Taylor Otwell",
  2080. "email": "taylor@laravel.com"
  2081. }
  2082. ],
  2083. "description": "The Laravel Framework.",
  2084. "homepage": "https://laravel.com",
  2085. "keywords": [
  2086. "framework",
  2087. "laravel"
  2088. ],
  2089. "support": {
  2090. "issues": "https://github.com/laravel/framework/issues",
  2091. "source": "https://github.com/laravel/framework"
  2092. },
  2093. "time": "2020-12-22T17:00:45+00:00"
  2094. },
  2095. {
  2096. "name": "laravel/tinker",
  2097. "version": "v2.5.0",
  2098. "source": {
  2099. "type": "git",
  2100. "url": "https://github.com/laravel/tinker.git",
  2101. "reference": "45884b526e10a88a1b179fa1a1a24d5468c668c2"
  2102. },
  2103. "dist": {
  2104. "type": "zip",
  2105. "url": "https://api.github.com/repos/laravel/tinker/zipball/45884b526e10a88a1b179fa1a1a24d5468c668c2",
  2106. "reference": "45884b526e10a88a1b179fa1a1a24d5468c668c2",
  2107. "shasum": ""
  2108. },
  2109. "require": {
  2110. "illuminate/console": "^6.0|^7.0|^8.0",
  2111. "illuminate/contracts": "^6.0|^7.0|^8.0",
  2112. "illuminate/support": "^6.0|^7.0|^8.0",
  2113. "php": "^7.2.5|^8.0",
  2114. "psy/psysh": "^0.10.4",
  2115. "symfony/var-dumper": "^4.3.4|^5.0"
  2116. },
  2117. "require-dev": {
  2118. "mockery/mockery": "~1.3.3|^1.4.2",
  2119. "phpunit/phpunit": "^8.5.8|^9.3.3"
  2120. },
  2121. "suggest": {
  2122. "illuminate/database": "The Illuminate Database package (^6.0|^7.0|^8.0)."
  2123. },
  2124. "type": "library",
  2125. "extra": {
  2126. "branch-alias": {
  2127. "dev-master": "2.x-dev"
  2128. },
  2129. "laravel": {
  2130. "providers": [
  2131. "Laravel\\Tinker\\TinkerServiceProvider"
  2132. ]
  2133. }
  2134. },
  2135. "autoload": {
  2136. "psr-4": {
  2137. "Laravel\\Tinker\\": "src/"
  2138. }
  2139. },
  2140. "notification-url": "https://packagist.org/downloads/",
  2141. "license": [
  2142. "MIT"
  2143. ],
  2144. "authors": [
  2145. {
  2146. "name": "Taylor Otwell",
  2147. "email": "taylor@laravel.com"
  2148. }
  2149. ],
  2150. "description": "Powerful REPL for the Laravel framework.",
  2151. "keywords": [
  2152. "REPL",
  2153. "Tinker",
  2154. "laravel",
  2155. "psysh"
  2156. ],
  2157. "support": {
  2158. "issues": "https://github.com/laravel/tinker/issues",
  2159. "source": "https://github.com/laravel/tinker/tree/v2.5.0"
  2160. },
  2161. "time": "2020-10-29T13:07:12+00:00"
  2162. },
  2163. {
  2164. "name": "lcobucci/jwt",
  2165. "version": "3.3.3",
  2166. "source": {
  2167. "type": "git",
  2168. "url": "https://github.com/lcobucci/jwt.git",
  2169. "reference": "c1123697f6a2ec29162b82f170dd4a491f524773"
  2170. },
  2171. "dist": {
  2172. "type": "zip",
  2173. "url": "https://api.github.com/repos/lcobucci/jwt/zipball/c1123697f6a2ec29162b82f170dd4a491f524773",
  2174. "reference": "c1123697f6a2ec29162b82f170dd4a491f524773",
  2175. "shasum": ""
  2176. },
  2177. "require": {
  2178. "ext-mbstring": "*",
  2179. "ext-openssl": "*",
  2180. "php": "^5.6 || ^7.0"
  2181. },
  2182. "require-dev": {
  2183. "mikey179/vfsstream": "~1.5",
  2184. "phpmd/phpmd": "~2.2",
  2185. "phpunit/php-invoker": "~1.1",
  2186. "phpunit/phpunit": "^5.7 || ^7.3",
  2187. "squizlabs/php_codesniffer": "~2.3"
  2188. },
  2189. "type": "library",
  2190. "extra": {
  2191. "branch-alias": {
  2192. "dev-master": "3.1-dev"
  2193. }
  2194. },
  2195. "autoload": {
  2196. "psr-4": {
  2197. "Lcobucci\\JWT\\": "src"
  2198. }
  2199. },
  2200. "notification-url": "https://packagist.org/downloads/",
  2201. "license": [
  2202. "BSD-3-Clause"
  2203. ],
  2204. "authors": [
  2205. {
  2206. "name": "Luís Otávio Cobucci Oblonczyk",
  2207. "email": "lcobucci@gmail.com",
  2208. "role": "Developer"
  2209. }
  2210. ],
  2211. "description": "A simple library to work with JSON Web Token and JSON Web Signature",
  2212. "keywords": [
  2213. "JWS",
  2214. "jwt"
  2215. ],
  2216. "support": {
  2217. "issues": "https://github.com/lcobucci/jwt/issues",
  2218. "source": "https://github.com/lcobucci/jwt/tree/3.3.3"
  2219. },
  2220. "funding": [
  2221. {
  2222. "url": "https://github.com/lcobucci",
  2223. "type": "github"
  2224. },
  2225. {
  2226. "url": "https://www.patreon.com/lcobucci",
  2227. "type": "patreon"
  2228. }
  2229. ],
  2230. "time": "2020-08-20T13:22:28+00:00"
  2231. },
  2232. {
  2233. "name": "league/commonmark",
  2234. "version": "1.5.7",
  2235. "source": {
  2236. "type": "git",
  2237. "url": "https://github.com/thephpleague/commonmark.git",
  2238. "reference": "11df9b36fd4f1d2b727a73bf14931d81373b9a54"
  2239. },
  2240. "dist": {
  2241. "type": "zip",
  2242. "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/11df9b36fd4f1d2b727a73bf14931d81373b9a54",
  2243. "reference": "11df9b36fd4f1d2b727a73bf14931d81373b9a54",
  2244. "shasum": ""
  2245. },
  2246. "require": {
  2247. "ext-mbstring": "*",
  2248. "php": "^7.1 || ^8.0"
  2249. },
  2250. "conflict": {
  2251. "scrutinizer/ocular": "1.7.*"
  2252. },
  2253. "require-dev": {
  2254. "cebe/markdown": "~1.0",
  2255. "commonmark/commonmark.js": "0.29.2",
  2256. "erusev/parsedown": "~1.0",
  2257. "ext-json": "*",
  2258. "github/gfm": "0.29.0",
  2259. "michelf/php-markdown": "~1.4",
  2260. "mikehaertl/php-shellcommand": "^1.4",
  2261. "phpstan/phpstan": "^0.12",
  2262. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.2",
  2263. "scrutinizer/ocular": "^1.5",
  2264. "symfony/finder": "^4.2"
  2265. },
  2266. "bin": [
  2267. "bin/commonmark"
  2268. ],
  2269. "type": "library",
  2270. "autoload": {
  2271. "psr-4": {
  2272. "League\\CommonMark\\": "src"
  2273. }
  2274. },
  2275. "notification-url": "https://packagist.org/downloads/",
  2276. "license": [
  2277. "BSD-3-Clause"
  2278. ],
  2279. "authors": [
  2280. {
  2281. "name": "Colin O'Dell",
  2282. "email": "colinodell@gmail.com",
  2283. "homepage": "https://www.colinodell.com",
  2284. "role": "Lead Developer"
  2285. }
  2286. ],
  2287. "description": "Highly-extensible PHP Markdown parser which fully supports the CommonMark spec and Github-Flavored Markdown (GFM)",
  2288. "homepage": "https://commonmark.thephpleague.com",
  2289. "keywords": [
  2290. "commonmark",
  2291. "flavored",
  2292. "gfm",
  2293. "github",
  2294. "github-flavored",
  2295. "markdown",
  2296. "md",
  2297. "parser"
  2298. ],
  2299. "support": {
  2300. "docs": "https://commonmark.thephpleague.com/",
  2301. "issues": "https://github.com/thephpleague/commonmark/issues",
  2302. "rss": "https://github.com/thephpleague/commonmark/releases.atom",
  2303. "source": "https://github.com/thephpleague/commonmark"
  2304. },
  2305. "funding": [
  2306. {
  2307. "url": "https://enjoy.gitstore.app/repositories/thephpleague/commonmark",
  2308. "type": "custom"
  2309. },
  2310. {
  2311. "url": "https://www.colinodell.com/sponsor",
  2312. "type": "custom"
  2313. },
  2314. {
  2315. "url": "https://www.paypal.me/colinpodell/10.00",
  2316. "type": "custom"
  2317. },
  2318. {
  2319. "url": "https://github.com/colinodell",
  2320. "type": "github"
  2321. },
  2322. {
  2323. "url": "https://www.patreon.com/colinodell",
  2324. "type": "patreon"
  2325. },
  2326. {
  2327. "url": "https://tidelift.com/funding/github/packagist/league/commonmark",
  2328. "type": "tidelift"
  2329. }
  2330. ],
  2331. "time": "2020-10-31T13:49:32+00:00"
  2332. },
  2333. {
  2334. "name": "league/flysystem",
  2335. "version": "1.1.3",
  2336. "source": {
  2337. "type": "git",
  2338. "url": "https://github.com/thephpleague/flysystem.git",
  2339. "reference": "9be3b16c877d477357c015cec057548cf9b2a14a"
  2340. },
  2341. "dist": {
  2342. "type": "zip",
  2343. "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/9be3b16c877d477357c015cec057548cf9b2a14a",
  2344. "reference": "9be3b16c877d477357c015cec057548cf9b2a14a",
  2345. "shasum": ""
  2346. },
  2347. "require": {
  2348. "ext-fileinfo": "*",
  2349. "league/mime-type-detection": "^1.3",
  2350. "php": "^7.2.5 || ^8.0"
  2351. },
  2352. "conflict": {
  2353. "league/flysystem-sftp": "<1.0.6"
  2354. },
  2355. "require-dev": {
  2356. "phpspec/prophecy": "^1.11.1",
  2357. "phpunit/phpunit": "^8.5.8"
  2358. },
  2359. "suggest": {
  2360. "ext-fileinfo": "Required for MimeType",
  2361. "ext-ftp": "Allows you to use FTP server storage",
  2362. "ext-openssl": "Allows you to use FTPS server storage",
  2363. "league/flysystem-aws-s3-v2": "Allows you to use S3 storage with AWS SDK v2",
  2364. "league/flysystem-aws-s3-v3": "Allows you to use S3 storage with AWS SDK v3",
  2365. "league/flysystem-azure": "Allows you to use Windows Azure Blob storage",
  2366. "league/flysystem-cached-adapter": "Flysystem adapter decorator for metadata caching",
  2367. "league/flysystem-eventable-filesystem": "Allows you to use EventableFilesystem",
  2368. "league/flysystem-rackspace": "Allows you to use Rackspace Cloud Files",
  2369. "league/flysystem-sftp": "Allows you to use SFTP server storage via phpseclib",
  2370. "league/flysystem-webdav": "Allows you to use WebDAV storage",
  2371. "league/flysystem-ziparchive": "Allows you to use ZipArchive adapter",
  2372. "spatie/flysystem-dropbox": "Allows you to use Dropbox storage",
  2373. "srmklive/flysystem-dropbox-v2": "Allows you to use Dropbox storage for PHP 5 applications"
  2374. },
  2375. "type": "library",
  2376. "extra": {
  2377. "branch-alias": {
  2378. "dev-master": "1.1-dev"
  2379. }
  2380. },
  2381. "autoload": {
  2382. "psr-4": {
  2383. "League\\Flysystem\\": "src/"
  2384. }
  2385. },
  2386. "notification-url": "https://packagist.org/downloads/",
  2387. "license": [
  2388. "MIT"
  2389. ],
  2390. "authors": [
  2391. {
  2392. "name": "Frank de Jonge",
  2393. "email": "info@frenky.net"
  2394. }
  2395. ],
  2396. "description": "Filesystem abstraction: Many filesystems, one API.",
  2397. "keywords": [
  2398. "Cloud Files",
  2399. "WebDAV",
  2400. "abstraction",
  2401. "aws",
  2402. "cloud",
  2403. "copy.com",
  2404. "dropbox",
  2405. "file systems",
  2406. "files",
  2407. "filesystem",
  2408. "filesystems",
  2409. "ftp",
  2410. "rackspace",
  2411. "remote",
  2412. "s3",
  2413. "sftp",
  2414. "storage"
  2415. ],
  2416. "support": {
  2417. "issues": "https://github.com/thephpleague/flysystem/issues",
  2418. "source": "https://github.com/thephpleague/flysystem/tree/1.x"
  2419. },
  2420. "funding": [
  2421. {
  2422. "url": "https://offset.earth/frankdejonge",
  2423. "type": "other"
  2424. }
  2425. ],
  2426. "time": "2020-08-23T07:39:11+00:00"
  2427. },
  2428. {
  2429. "name": "league/mime-type-detection",
  2430. "version": "1.5.1",
  2431. "source": {
  2432. "type": "git",
  2433. "url": "https://github.com/thephpleague/mime-type-detection.git",
  2434. "reference": "353f66d7555d8a90781f6f5e7091932f9a4250aa"
  2435. },
  2436. "dist": {
  2437. "type": "zip",
  2438. "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/353f66d7555d8a90781f6f5e7091932f9a4250aa",
  2439. "reference": "353f66d7555d8a90781f6f5e7091932f9a4250aa",
  2440. "shasum": ""
  2441. },
  2442. "require": {
  2443. "ext-fileinfo": "*",
  2444. "php": "^7.2 || ^8.0"
  2445. },
  2446. "require-dev": {
  2447. "phpstan/phpstan": "^0.12.36",
  2448. "phpunit/phpunit": "^8.5.8"
  2449. },
  2450. "type": "library",
  2451. "autoload": {
  2452. "psr-4": {
  2453. "League\\MimeTypeDetection\\": "src"
  2454. }
  2455. },
  2456. "notification-url": "https://packagist.org/downloads/",
  2457. "license": [
  2458. "MIT"
  2459. ],
  2460. "authors": [
  2461. {
  2462. "name": "Frank de Jonge",
  2463. "email": "info@frankdejonge.nl"
  2464. }
  2465. ],
  2466. "description": "Mime-type detection for Flysystem",
  2467. "support": {
  2468. "issues": "https://github.com/thephpleague/mime-type-detection/issues",
  2469. "source": "https://github.com/thephpleague/mime-type-detection/tree/1.5.1"
  2470. },
  2471. "funding": [
  2472. {
  2473. "url": "https://github.com/frankdejonge",
  2474. "type": "github"
  2475. },
  2476. {
  2477. "url": "https://tidelift.com/funding/github/packagist/league/flysystem",
  2478. "type": "tidelift"
  2479. }
  2480. ],
  2481. "time": "2020-10-18T11:50:25+00:00"
  2482. },
  2483. {
  2484. "name": "maennchen/zipstream-php",
  2485. "version": "2.1.0",
  2486. "source": {
  2487. "type": "git",
  2488. "url": "https://github.com/maennchen/ZipStream-PHP.git",
  2489. "reference": "c4c5803cc1f93df3d2448478ef79394a5981cc58"
  2490. },
  2491. "dist": {
  2492. "type": "zip",
  2493. "url": "https://api.github.com/repos/maennchen/ZipStream-PHP/zipball/c4c5803cc1f93df3d2448478ef79394a5981cc58",
  2494. "reference": "c4c5803cc1f93df3d2448478ef79394a5981cc58",
  2495. "shasum": ""
  2496. },
  2497. "require": {
  2498. "myclabs/php-enum": "^1.5",
  2499. "php": ">= 7.1",
  2500. "psr/http-message": "^1.0",
  2501. "symfony/polyfill-mbstring": "^1.0"
  2502. },
  2503. "require-dev": {
  2504. "ext-zip": "*",
  2505. "guzzlehttp/guzzle": ">= 6.3",
  2506. "mikey179/vfsstream": "^1.6",
  2507. "phpunit/phpunit": ">= 7.5"
  2508. },
  2509. "type": "library",
  2510. "autoload": {
  2511. "psr-4": {
  2512. "ZipStream\\": "src/"
  2513. }
  2514. },
  2515. "notification-url": "https://packagist.org/downloads/",
  2516. "license": [
  2517. "MIT"
  2518. ],
  2519. "authors": [
  2520. {
  2521. "name": "Paul Duncan",
  2522. "email": "pabs@pablotron.org"
  2523. },
  2524. {
  2525. "name": "Jonatan Männchen",
  2526. "email": "jonatan@maennchen.ch"
  2527. },
  2528. {
  2529. "name": "Jesse Donat",
  2530. "email": "donatj@gmail.com"
  2531. },
  2532. {
  2533. "name": "András Kolesár",
  2534. "email": "kolesar@kolesar.hu"
  2535. }
  2536. ],
  2537. "description": "ZipStream is a library for dynamically streaming dynamic zip files from PHP without writing to the disk at all on the server.",
  2538. "keywords": [
  2539. "stream",
  2540. "zip"
  2541. ],
  2542. "support": {
  2543. "issues": "https://github.com/maennchen/ZipStream-PHP/issues",
  2544. "source": "https://github.com/maennchen/ZipStream-PHP/tree/master"
  2545. },
  2546. "funding": [
  2547. {
  2548. "url": "https://opencollective.com/zipstream",
  2549. "type": "open_collective"
  2550. }
  2551. ],
  2552. "time": "2020-05-30T13:11:16+00:00"
  2553. },
  2554. {
  2555. "name": "markbaker/complex",
  2556. "version": "2.0.0",
  2557. "source": {
  2558. "type": "git",
  2559. "url": "https://github.com/MarkBaker/PHPComplex.git",
  2560. "reference": "9999f1432fae467bc93c53f357105b4c31bb994c"
  2561. },
  2562. "dist": {
  2563. "type": "zip",
  2564. "url": "https://api.github.com/repos/MarkBaker/PHPComplex/zipball/9999f1432fae467bc93c53f357105b4c31bb994c",
  2565. "reference": "9999f1432fae467bc93c53f357105b4c31bb994c",
  2566. "shasum": ""
  2567. },
  2568. "require": {
  2569. "php": "^7.2 || ^8.0"
  2570. },
  2571. "require-dev": {
  2572. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  2573. "phpcompatibility/php-compatibility": "^9.0",
  2574. "phpdocumentor/phpdocumentor": "2.*",
  2575. "phploc/phploc": "^4.0",
  2576. "phpmd/phpmd": "2.*",
  2577. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.3",
  2578. "sebastian/phpcpd": "^4.0",
  2579. "squizlabs/php_codesniffer": "^3.4"
  2580. },
  2581. "type": "library",
  2582. "autoload": {
  2583. "psr-4": {
  2584. "Complex\\": "classes/src/"
  2585. },
  2586. "files": [
  2587. "classes/src/functions/abs.php",
  2588. "classes/src/functions/acos.php",
  2589. "classes/src/functions/acosh.php",
  2590. "classes/src/functions/acot.php",
  2591. "classes/src/functions/acoth.php",
  2592. "classes/src/functions/acsc.php",
  2593. "classes/src/functions/acsch.php",
  2594. "classes/src/functions/argument.php",
  2595. "classes/src/functions/asec.php",
  2596. "classes/src/functions/asech.php",
  2597. "classes/src/functions/asin.php",
  2598. "classes/src/functions/asinh.php",
  2599. "classes/src/functions/atan.php",
  2600. "classes/src/functions/atanh.php",
  2601. "classes/src/functions/conjugate.php",
  2602. "classes/src/functions/cos.php",
  2603. "classes/src/functions/cosh.php",
  2604. "classes/src/functions/cot.php",
  2605. "classes/src/functions/coth.php",
  2606. "classes/src/functions/csc.php",
  2607. "classes/src/functions/csch.php",
  2608. "classes/src/functions/exp.php",
  2609. "classes/src/functions/inverse.php",
  2610. "classes/src/functions/ln.php",
  2611. "classes/src/functions/log2.php",
  2612. "classes/src/functions/log10.php",
  2613. "classes/src/functions/negative.php",
  2614. "classes/src/functions/pow.php",
  2615. "classes/src/functions/rho.php",
  2616. "classes/src/functions/sec.php",
  2617. "classes/src/functions/sech.php",
  2618. "classes/src/functions/sin.php",
  2619. "classes/src/functions/sinh.php",
  2620. "classes/src/functions/sqrt.php",
  2621. "classes/src/functions/tan.php",
  2622. "classes/src/functions/tanh.php",
  2623. "classes/src/functions/theta.php",
  2624. "classes/src/operations/add.php",
  2625. "classes/src/operations/subtract.php",
  2626. "classes/src/operations/multiply.php",
  2627. "classes/src/operations/divideby.php",
  2628. "classes/src/operations/divideinto.php"
  2629. ]
  2630. },
  2631. "notification-url": "https://packagist.org/downloads/",
  2632. "license": [
  2633. "MIT"
  2634. ],
  2635. "authors": [
  2636. {
  2637. "name": "Mark Baker",
  2638. "email": "mark@lange.demon.co.uk"
  2639. }
  2640. ],
  2641. "description": "PHP Class for working with complex numbers",
  2642. "homepage": "https://github.com/MarkBaker/PHPComplex",
  2643. "keywords": [
  2644. "complex",
  2645. "mathematics"
  2646. ],
  2647. "support": {
  2648. "issues": "https://github.com/MarkBaker/PHPComplex/issues",
  2649. "source": "https://github.com/MarkBaker/PHPComplex/tree/PHP8"
  2650. },
  2651. "time": "2020-08-26T10:42:07+00:00"
  2652. },
  2653. {
  2654. "name": "markbaker/matrix",
  2655. "version": "2.0.0",
  2656. "source": {
  2657. "type": "git",
  2658. "url": "https://github.com/MarkBaker/PHPMatrix.git",
  2659. "reference": "9567d9c4c519fbe40de01dbd1e4469dbbb66f46a"
  2660. },
  2661. "dist": {
  2662. "type": "zip",
  2663. "url": "https://api.github.com/repos/MarkBaker/PHPMatrix/zipball/9567d9c4c519fbe40de01dbd1e4469dbbb66f46a",
  2664. "reference": "9567d9c4c519fbe40de01dbd1e4469dbbb66f46a",
  2665. "shasum": ""
  2666. },
  2667. "require": {
  2668. "php": "^7.2 || ^8.0"
  2669. },
  2670. "require-dev": {
  2671. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  2672. "phpcompatibility/php-compatibility": "^9.0",
  2673. "phpdocumentor/phpdocumentor": "2.*",
  2674. "phploc/phploc": "^4.0",
  2675. "phpmd/phpmd": "2.*",
  2676. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.3",
  2677. "sebastian/phpcpd": "^4.0",
  2678. "squizlabs/php_codesniffer": "^3.4"
  2679. },
  2680. "type": "library",
  2681. "autoload": {
  2682. "psr-4": {
  2683. "Matrix\\": "classes/src/"
  2684. },
  2685. "files": [
  2686. "classes/src/functions/adjoint.php",
  2687. "classes/src/functions/antidiagonal.php",
  2688. "classes/src/functions/cofactors.php",
  2689. "classes/src/functions/determinant.php",
  2690. "classes/src/functions/diagonal.php",
  2691. "classes/src/functions/identity.php",
  2692. "classes/src/functions/inverse.php",
  2693. "classes/src/functions/minors.php",
  2694. "classes/src/functions/trace.php",
  2695. "classes/src/functions/transpose.php",
  2696. "classes/src/operations/add.php",
  2697. "classes/src/operations/directsum.php",
  2698. "classes/src/operations/subtract.php",
  2699. "classes/src/operations/multiply.php",
  2700. "classes/src/operations/divideby.php",
  2701. "classes/src/operations/divideinto.php"
  2702. ]
  2703. },
  2704. "notification-url": "https://packagist.org/downloads/",
  2705. "license": [
  2706. "MIT"
  2707. ],
  2708. "authors": [
  2709. {
  2710. "name": "Mark Baker",
  2711. "email": "mark@demon-angel.eu"
  2712. }
  2713. ],
  2714. "description": "PHP Class for working with matrices",
  2715. "homepage": "https://github.com/MarkBaker/PHPMatrix",
  2716. "keywords": [
  2717. "mathematics",
  2718. "matrix",
  2719. "vector"
  2720. ],
  2721. "support": {
  2722. "issues": "https://github.com/MarkBaker/PHPMatrix/issues",
  2723. "source": "https://github.com/MarkBaker/PHPMatrix/tree/PHP8"
  2724. },
  2725. "time": "2020-08-28T17:11:00+00:00"
  2726. },
  2727. {
  2728. "name": "maxmind-db/reader",
  2729. "version": "v1.9.0",
  2730. "source": {
  2731. "type": "git",
  2732. "url": "https://github.com/maxmind/MaxMind-DB-Reader-php.git",
  2733. "reference": "9ee9ba9ee287b119e9f5a8e8dbfea0b49647cec4"
  2734. },
  2735. "dist": {
  2736. "type": "zip",
  2737. "url": "https://api.github.com/repos/maxmind/MaxMind-DB-Reader-php/zipball/9ee9ba9ee287b119e9f5a8e8dbfea0b49647cec4",
  2738. "reference": "9ee9ba9ee287b119e9f5a8e8dbfea0b49647cec4",
  2739. "shasum": ""
  2740. },
  2741. "require": {
  2742. "php": ">=7.2"
  2743. },
  2744. "conflict": {
  2745. "ext-maxminddb": "<1.9.0,>=2.0.0"
  2746. },
  2747. "require-dev": {
  2748. "friendsofphp/php-cs-fixer": "*",
  2749. "php-coveralls/php-coveralls": "^2.1",
  2750. "phpunit/phpcov": ">=6.0.0",
  2751. "phpunit/phpunit": ">=8.0.0,<10.0.0",
  2752. "squizlabs/php_codesniffer": "3.*"
  2753. },
  2754. "suggest": {
  2755. "ext-bcmath": "bcmath or gmp is required for decoding larger integers with the pure PHP decoder",
  2756. "ext-gmp": "bcmath or gmp is required for decoding larger integers with the pure PHP decoder",
  2757. "ext-maxminddb": "A C-based database decoder that provides significantly faster lookups"
  2758. },
  2759. "type": "library",
  2760. "autoload": {
  2761. "psr-4": {
  2762. "MaxMind\\Db\\": "src/MaxMind/Db"
  2763. }
  2764. },
  2765. "notification-url": "https://packagist.org/downloads/",
  2766. "license": [
  2767. "Apache-2.0"
  2768. ],
  2769. "authors": [
  2770. {
  2771. "name": "Gregory J. Oschwald",
  2772. "email": "goschwald@maxmind.com",
  2773. "homepage": "https://www.maxmind.com/"
  2774. }
  2775. ],
  2776. "description": "MaxMind DB Reader API",
  2777. "homepage": "https://github.com/maxmind/MaxMind-DB-Reader-php",
  2778. "keywords": [
  2779. "database",
  2780. "geoip",
  2781. "geoip2",
  2782. "geolocation",
  2783. "maxmind"
  2784. ],
  2785. "support": {
  2786. "issues": "https://github.com/maxmind/MaxMind-DB-Reader-php/issues",
  2787. "source": "https://github.com/maxmind/MaxMind-DB-Reader-php/tree/v1.9.0"
  2788. },
  2789. "time": "2021-01-07T21:15:29+00:00"
  2790. },
  2791. {
  2792. "name": "maxmind/web-service-common",
  2793. "version": "v0.8.1",
  2794. "source": {
  2795. "type": "git",
  2796. "url": "https://github.com/maxmind/web-service-common-php.git",
  2797. "reference": "32f274051c543fc865e5a84d3a2c703913641ea8"
  2798. },
  2799. "dist": {
  2800. "type": "zip",
  2801. "url": "https://api.github.com/repos/maxmind/web-service-common-php/zipball/32f274051c543fc865e5a84d3a2c703913641ea8",
  2802. "reference": "32f274051c543fc865e5a84d3a2c703913641ea8",
  2803. "shasum": ""
  2804. },
  2805. "require": {
  2806. "composer/ca-bundle": "^1.0.3",
  2807. "ext-curl": "*",
  2808. "ext-json": "*",
  2809. "php": ">=7.2"
  2810. },
  2811. "require-dev": {
  2812. "friendsofphp/php-cs-fixer": "2.*",
  2813. "phpunit/phpunit": "^8.0 || ^9.0",
  2814. "squizlabs/php_codesniffer": "3.*"
  2815. },
  2816. "type": "library",
  2817. "autoload": {
  2818. "psr-4": {
  2819. "MaxMind\\Exception\\": "src/Exception",
  2820. "MaxMind\\WebService\\": "src/WebService"
  2821. }
  2822. },
  2823. "notification-url": "https://packagist.org/downloads/",
  2824. "license": [
  2825. "Apache-2.0"
  2826. ],
  2827. "authors": [
  2828. {
  2829. "name": "Gregory Oschwald",
  2830. "email": "goschwald@maxmind.com"
  2831. }
  2832. ],
  2833. "description": "Internal MaxMind Web Service API",
  2834. "homepage": "https://github.com/maxmind/web-service-common-php",
  2835. "support": {
  2836. "issues": "https://github.com/maxmind/web-service-common-php/issues",
  2837. "source": "https://github.com/maxmind/web-service-common-php/tree/v0.8.1"
  2838. },
  2839. "time": "2020-11-02T17:00:53+00:00"
  2840. },
  2841. {
  2842. "name": "mews/captcha",
  2843. "version": "3.2.4",
  2844. "source": {
  2845. "type": "git",
  2846. "url": "https://github.com/mewebstudio/captcha.git",
  2847. "reference": "616d006be6f53e87b93f6dc0f298fb29ca0b7d6c"
  2848. },
  2849. "dist": {
  2850. "type": "zip",
  2851. "url": "https://api.github.com/repos/mewebstudio/captcha/zipball/616d006be6f53e87b93f6dc0f298fb29ca0b7d6c",
  2852. "reference": "616d006be6f53e87b93f6dc0f298fb29ca0b7d6c",
  2853. "shasum": ""
  2854. },
  2855. "require": {
  2856. "ext-gd": "*",
  2857. "illuminate/config": "~5|^6|^7|^8",
  2858. "illuminate/filesystem": "~5|^6|^7|^8",
  2859. "illuminate/hashing": "~5|^6|^7|^8",
  2860. "illuminate/session": "~5|^6|^7|^8",
  2861. "illuminate/support": "~5|^6|^7|^8",
  2862. "intervention/image": "~2.5",
  2863. "php": "^7.2"
  2864. },
  2865. "require-dev": {
  2866. "mockery/mockery": "^1.0",
  2867. "phpunit/phpunit": "^8.5"
  2868. },
  2869. "type": "package",
  2870. "extra": {
  2871. "laravel": {
  2872. "providers": [
  2873. "Mews\\Captcha\\CaptchaServiceProvider"
  2874. ],
  2875. "aliases": {
  2876. "Captcha": "Mews\\Captcha\\Facades\\Captcha"
  2877. }
  2878. }
  2879. },
  2880. "autoload": {
  2881. "psr-4": {
  2882. "Mews\\Captcha\\": "src/"
  2883. },
  2884. "files": [
  2885. "src/helpers.php"
  2886. ]
  2887. },
  2888. "notification-url": "https://packagist.org/downloads/",
  2889. "license": [
  2890. "MIT"
  2891. ],
  2892. "authors": [
  2893. {
  2894. "name": "Muharrem ERİN",
  2895. "email": "me@mewebstudio.com",
  2896. "homepage": "https://github.com/mewebstudio",
  2897. "role": "Developer"
  2898. }
  2899. ],
  2900. "description": "Laravel 5 & 6 Captcha Package",
  2901. "homepage": "https://github.com/mewebstudio/captcha",
  2902. "keywords": [
  2903. "captcha",
  2904. "laravel5 Security",
  2905. "laravel6 Captcha",
  2906. "laravel6 Security"
  2907. ],
  2908. "support": {
  2909. "issues": "https://github.com/mewebstudio/captcha/issues",
  2910. "source": "https://github.com/mewebstudio/captcha/tree/3.2.4"
  2911. },
  2912. "time": "2020-12-14T12:34:10+00:00"
  2913. },
  2914. {
  2915. "name": "mews/purifier",
  2916. "version": "3.3.3",
  2917. "source": {
  2918. "type": "git",
  2919. "url": "https://github.com/mewebstudio/Purifier.git",
  2920. "reference": "8e0b3d87c79b38b8d88aeb3c0ba8b000a393a74c"
  2921. },
  2922. "dist": {
  2923. "type": "zip",
  2924. "url": "https://api.github.com/repos/mewebstudio/Purifier/zipball/8e0b3d87c79b38b8d88aeb3c0ba8b000a393a74c",
  2925. "reference": "8e0b3d87c79b38b8d88aeb3c0ba8b000a393a74c",
  2926. "shasum": ""
  2927. },
  2928. "require": {
  2929. "ezyang/htmlpurifier": "4.13.*",
  2930. "illuminate/config": "^5.8|^6.0|^7.0|^8.0",
  2931. "illuminate/filesystem": "^5.8|^6.0|^7.0|^8.0",
  2932. "illuminate/support": "^5.8|^6.0|^7.0|^8.0",
  2933. "php": "^7.2|^8.0"
  2934. },
  2935. "require-dev": {
  2936. "graham-campbell/testbench": "^3.2|^5.5.1",
  2937. "mockery/mockery": "^1.3.3",
  2938. "phpunit/phpunit": "^8.0|^9.0"
  2939. },
  2940. "suggest": {
  2941. "laravel/framework": "To test the Laravel bindings",
  2942. "laravel/lumen-framework": "To test the Lumen bindings"
  2943. },
  2944. "type": "package",
  2945. "extra": {
  2946. "laravel": {
  2947. "providers": [
  2948. "Mews\\Purifier\\PurifierServiceProvider"
  2949. ],
  2950. "aliases": {
  2951. "Purifier": "Mews\\Purifier\\Facades\\Purifier"
  2952. }
  2953. }
  2954. },
  2955. "autoload": {
  2956. "psr-4": {
  2957. "Mews\\Purifier\\": "src/"
  2958. },
  2959. "files": [
  2960. "src/helpers.php"
  2961. ]
  2962. },
  2963. "notification-url": "https://packagist.org/downloads/",
  2964. "license": [
  2965. "MIT"
  2966. ],
  2967. "authors": [
  2968. {
  2969. "name": "Muharrem ERİN",
  2970. "email": "me@mewebstudio.com",
  2971. "homepage": "https://github.com/mewebstudio",
  2972. "role": "Developer"
  2973. }
  2974. ],
  2975. "description": "Laravel 5/6/7 HtmlPurifier Package",
  2976. "homepage": "https://github.com/mewebstudio/purifier",
  2977. "keywords": [
  2978. "Purifier",
  2979. "htmlpurifier",
  2980. "laravel5 HtmlPurifier",
  2981. "laravel5 Purifier",
  2982. "laravel5 Security",
  2983. "laravel6 HtmlPurifier",
  2984. "laravel6 Purifier",
  2985. "laravel6 Security",
  2986. "security",
  2987. "xss"
  2988. ],
  2989. "support": {
  2990. "issues": "https://github.com/mewebstudio/Purifier/issues",
  2991. "source": "https://github.com/mewebstudio/Purifier/tree/3.3.3"
  2992. },
  2993. "time": "2020-11-03T19:46:27+00:00"
  2994. },
  2995. {
  2996. "name": "mobiledetect/mobiledetectlib",
  2997. "version": "2.8.34",
  2998. "source": {
  2999. "type": "git",
  3000. "url": "https://github.com/serbanghita/Mobile-Detect.git",
  3001. "reference": "6f8113f57a508494ca36acbcfa2dc2d923c7ed5b"
  3002. },
  3003. "dist": {
  3004. "type": "zip",
  3005. "url": "https://api.github.com/repos/serbanghita/Mobile-Detect/zipball/6f8113f57a508494ca36acbcfa2dc2d923c7ed5b",
  3006. "reference": "6f8113f57a508494ca36acbcfa2dc2d923c7ed5b",
  3007. "shasum": ""
  3008. },
  3009. "require": {
  3010. "php": ">=5.0.0"
  3011. },
  3012. "require-dev": {
  3013. "phpunit/phpunit": "~4.8.35||~5.7"
  3014. },
  3015. "type": "library",
  3016. "autoload": {
  3017. "classmap": [
  3018. "Mobile_Detect.php"
  3019. ],
  3020. "psr-0": {
  3021. "Detection": "namespaced/"
  3022. }
  3023. },
  3024. "notification-url": "https://packagist.org/downloads/",
  3025. "license": [
  3026. "MIT"
  3027. ],
  3028. "authors": [
  3029. {
  3030. "name": "Serban Ghita",
  3031. "email": "serbanghita@gmail.com",
  3032. "homepage": "http://mobiledetect.net",
  3033. "role": "Developer"
  3034. }
  3035. ],
  3036. "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.",
  3037. "homepage": "https://github.com/serbanghita/Mobile-Detect",
  3038. "keywords": [
  3039. "detect mobile devices",
  3040. "mobile",
  3041. "mobile detect",
  3042. "mobile detector",
  3043. "php mobile detect"
  3044. ],
  3045. "support": {
  3046. "issues": "https://github.com/serbanghita/Mobile-Detect/issues",
  3047. "source": "https://github.com/serbanghita/Mobile-Detect/tree/2.8.34"
  3048. },
  3049. "time": "2019-09-18T18:44:20+00:00"
  3050. },
  3051. {
  3052. "name": "monolog/monolog",
  3053. "version": "2.2.0",
  3054. "source": {
  3055. "type": "git",
  3056. "url": "https://github.com/Seldaek/monolog.git",
  3057. "reference": "1cb1cde8e8dd0f70cc0fe51354a59acad9302084"
  3058. },
  3059. "dist": {
  3060. "type": "zip",
  3061. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/1cb1cde8e8dd0f70cc0fe51354a59acad9302084",
  3062. "reference": "1cb1cde8e8dd0f70cc0fe51354a59acad9302084",
  3063. "shasum": ""
  3064. },
  3065. "require": {
  3066. "php": ">=7.2",
  3067. "psr/log": "^1.0.1"
  3068. },
  3069. "provide": {
  3070. "psr/log-implementation": "1.0.0"
  3071. },
  3072. "require-dev": {
  3073. "aws/aws-sdk-php": "^2.4.9 || ^3.0",
  3074. "doctrine/couchdb": "~1.0@dev",
  3075. "elasticsearch/elasticsearch": "^7",
  3076. "graylog2/gelf-php": "^1.4.2",
  3077. "mongodb/mongodb": "^1.8",
  3078. "php-amqplib/php-amqplib": "~2.4",
  3079. "php-console/php-console": "^3.1.3",
  3080. "phpspec/prophecy": "^1.6.1",
  3081. "phpstan/phpstan": "^0.12.59",
  3082. "phpunit/phpunit": "^8.5",
  3083. "predis/predis": "^1.1",
  3084. "rollbar/rollbar": "^1.3",
  3085. "ruflin/elastica": ">=0.90 <7.0.1",
  3086. "swiftmailer/swiftmailer": "^5.3|^6.0"
  3087. },
  3088. "suggest": {
  3089. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  3090. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  3091. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  3092. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  3093. "ext-mbstring": "Allow to work properly with unicode symbols",
  3094. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  3095. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  3096. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  3097. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  3098. "php-console/php-console": "Allow sending log messages to Google Chrome",
  3099. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  3100. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  3101. },
  3102. "type": "library",
  3103. "extra": {
  3104. "branch-alias": {
  3105. "dev-main": "2.x-dev"
  3106. }
  3107. },
  3108. "autoload": {
  3109. "psr-4": {
  3110. "Monolog\\": "src/Monolog"
  3111. }
  3112. },
  3113. "notification-url": "https://packagist.org/downloads/",
  3114. "license": [
  3115. "MIT"
  3116. ],
  3117. "authors": [
  3118. {
  3119. "name": "Jordi Boggiano",
  3120. "email": "j.boggiano@seld.be",
  3121. "homepage": "https://seld.be"
  3122. }
  3123. ],
  3124. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  3125. "homepage": "https://github.com/Seldaek/monolog",
  3126. "keywords": [
  3127. "log",
  3128. "logging",
  3129. "psr-3"
  3130. ],
  3131. "support": {
  3132. "issues": "https://github.com/Seldaek/monolog/issues",
  3133. "source": "https://github.com/Seldaek/monolog/tree/2.2.0"
  3134. },
  3135. "funding": [
  3136. {
  3137. "url": "https://github.com/Seldaek",
  3138. "type": "github"
  3139. },
  3140. {
  3141. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  3142. "type": "tidelift"
  3143. }
  3144. ],
  3145. "time": "2020-12-14T13:15:25+00:00"
  3146. },
  3147. {
  3148. "name": "myclabs/php-enum",
  3149. "version": "1.7.7",
  3150. "source": {
  3151. "type": "git",
  3152. "url": "https://github.com/myclabs/php-enum.git",
  3153. "reference": "d178027d1e679832db9f38248fcc7200647dc2b7"
  3154. },
  3155. "dist": {
  3156. "type": "zip",
  3157. "url": "https://api.github.com/repos/myclabs/php-enum/zipball/d178027d1e679832db9f38248fcc7200647dc2b7",
  3158. "reference": "d178027d1e679832db9f38248fcc7200647dc2b7",
  3159. "shasum": ""
  3160. },
  3161. "require": {
  3162. "ext-json": "*",
  3163. "php": ">=7.1"
  3164. },
  3165. "require-dev": {
  3166. "phpunit/phpunit": "^7",
  3167. "squizlabs/php_codesniffer": "1.*",
  3168. "vimeo/psalm": "^3.8"
  3169. },
  3170. "type": "library",
  3171. "autoload": {
  3172. "psr-4": {
  3173. "MyCLabs\\Enum\\": "src/"
  3174. }
  3175. },
  3176. "notification-url": "https://packagist.org/downloads/",
  3177. "license": [
  3178. "MIT"
  3179. ],
  3180. "authors": [
  3181. {
  3182. "name": "PHP Enum contributors",
  3183. "homepage": "https://github.com/myclabs/php-enum/graphs/contributors"
  3184. }
  3185. ],
  3186. "description": "PHP Enum implementation",
  3187. "homepage": "http://github.com/myclabs/php-enum",
  3188. "keywords": [
  3189. "enum"
  3190. ],
  3191. "support": {
  3192. "issues": "https://github.com/myclabs/php-enum/issues",
  3193. "source": "https://github.com/myclabs/php-enum/tree/1.7.7"
  3194. },
  3195. "funding": [
  3196. {
  3197. "url": "https://github.com/mnapoli",
  3198. "type": "github"
  3199. },
  3200. {
  3201. "url": "https://tidelift.com/funding/github/packagist/myclabs/php-enum",
  3202. "type": "tidelift"
  3203. }
  3204. ],
  3205. "time": "2020-11-14T18:14:52+00:00"
  3206. },
  3207. {
  3208. "name": "namshi/jose",
  3209. "version": "7.2.3",
  3210. "source": {
  3211. "type": "git",
  3212. "url": "https://github.com/namshi/jose.git",
  3213. "reference": "89a24d7eb3040e285dd5925fcad992378b82bcff"
  3214. },
  3215. "dist": {
  3216. "type": "zip",
  3217. "url": "https://api.github.com/repos/namshi/jose/zipball/89a24d7eb3040e285dd5925fcad992378b82bcff",
  3218. "reference": "89a24d7eb3040e285dd5925fcad992378b82bcff",
  3219. "shasum": ""
  3220. },
  3221. "require": {
  3222. "ext-date": "*",
  3223. "ext-hash": "*",
  3224. "ext-json": "*",
  3225. "ext-pcre": "*",
  3226. "ext-spl": "*",
  3227. "php": ">=5.5",
  3228. "symfony/polyfill-php56": "^1.0"
  3229. },
  3230. "require-dev": {
  3231. "phpseclib/phpseclib": "^2.0",
  3232. "phpunit/phpunit": "^4.5|^5.0",
  3233. "satooshi/php-coveralls": "^1.0"
  3234. },
  3235. "suggest": {
  3236. "ext-openssl": "Allows to use OpenSSL as crypto engine.",
  3237. "phpseclib/phpseclib": "Allows to use Phpseclib as crypto engine, use version ^2.0."
  3238. },
  3239. "type": "library",
  3240. "autoload": {
  3241. "psr-4": {
  3242. "Namshi\\JOSE\\": "src/Namshi/JOSE/"
  3243. }
  3244. },
  3245. "notification-url": "https://packagist.org/downloads/",
  3246. "license": [
  3247. "MIT"
  3248. ],
  3249. "authors": [
  3250. {
  3251. "name": "Alessandro Nadalin",
  3252. "email": "alessandro.nadalin@gmail.com"
  3253. },
  3254. {
  3255. "name": "Alessandro Cinelli (cirpo)",
  3256. "email": "alessandro.cinelli@gmail.com"
  3257. }
  3258. ],
  3259. "description": "JSON Object Signing and Encryption library for PHP.",
  3260. "keywords": [
  3261. "JSON Web Signature",
  3262. "JSON Web Token",
  3263. "JWS",
  3264. "json",
  3265. "jwt",
  3266. "token"
  3267. ],
  3268. "support": {
  3269. "issues": "https://github.com/namshi/jose/issues",
  3270. "source": "https://github.com/namshi/jose/tree/master"
  3271. },
  3272. "time": "2016-12-05T07:27:31+00:00"
  3273. },
  3274. {
  3275. "name": "nesbot/carbon",
  3276. "version": "2.43.0",
  3277. "source": {
  3278. "type": "git",
  3279. "url": "https://github.com/briannesbitt/Carbon.git",
  3280. "reference": "d32c57d8389113742f4a88725a170236470012e2"
  3281. },
  3282. "dist": {
  3283. "type": "zip",
  3284. "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/d32c57d8389113742f4a88725a170236470012e2",
  3285. "reference": "d32c57d8389113742f4a88725a170236470012e2",
  3286. "shasum": ""
  3287. },
  3288. "require": {
  3289. "ext-json": "*",
  3290. "php": "^7.1.8 || ^8.0",
  3291. "symfony/polyfill-mbstring": "^1.0",
  3292. "symfony/translation": "^3.4 || ^4.0 || ^5.0"
  3293. },
  3294. "require-dev": {
  3295. "doctrine/orm": "^2.7",
  3296. "friendsofphp/php-cs-fixer": "^2.14 || ^3.0",
  3297. "kylekatarnls/multi-tester": "^2.0",
  3298. "phpmd/phpmd": "^2.9",
  3299. "phpstan/extension-installer": "^1.0",
  3300. "phpstan/phpstan": "^0.12.54",
  3301. "phpunit/phpunit": "^7.5 || ^8.0",
  3302. "squizlabs/php_codesniffer": "^3.4"
  3303. },
  3304. "bin": [
  3305. "bin/carbon"
  3306. ],
  3307. "type": "library",
  3308. "extra": {
  3309. "branch-alias": {
  3310. "dev-master": "2.x-dev",
  3311. "dev-3.x": "3.x-dev"
  3312. },
  3313. "laravel": {
  3314. "providers": [
  3315. "Carbon\\Laravel\\ServiceProvider"
  3316. ]
  3317. },
  3318. "phpstan": {
  3319. "includes": [
  3320. "extension.neon"
  3321. ]
  3322. }
  3323. },
  3324. "autoload": {
  3325. "psr-4": {
  3326. "Carbon\\": "src/Carbon/"
  3327. }
  3328. },
  3329. "notification-url": "https://packagist.org/downloads/",
  3330. "license": [
  3331. "MIT"
  3332. ],
  3333. "authors": [
  3334. {
  3335. "name": "Brian Nesbitt",
  3336. "email": "brian@nesbot.com",
  3337. "homepage": "http://nesbot.com"
  3338. },
  3339. {
  3340. "name": "kylekatarnls",
  3341. "homepage": "http://github.com/kylekatarnls"
  3342. }
  3343. ],
  3344. "description": "An API extension for DateTime that supports 281 different languages.",
  3345. "homepage": "http://carbon.nesbot.com",
  3346. "keywords": [
  3347. "date",
  3348. "datetime",
  3349. "time"
  3350. ],
  3351. "support": {
  3352. "issues": "https://github.com/briannesbitt/Carbon/issues",
  3353. "source": "https://github.com/briannesbitt/Carbon"
  3354. },
  3355. "funding": [
  3356. {
  3357. "url": "https://opencollective.com/Carbon",
  3358. "type": "open_collective"
  3359. },
  3360. {
  3361. "url": "https://tidelift.com/funding/github/packagist/nesbot/carbon",
  3362. "type": "tidelift"
  3363. }
  3364. ],
  3365. "time": "2020-12-17T20:55:32+00:00"
  3366. },
  3367. {
  3368. "name": "nikic/php-parser",
  3369. "version": "v4.10.4",
  3370. "source": {
  3371. "type": "git",
  3372. "url": "https://github.com/nikic/PHP-Parser.git",
  3373. "reference": "c6d052fc58cb876152f89f532b95a8d7907e7f0e"
  3374. },
  3375. "dist": {
  3376. "type": "zip",
  3377. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/c6d052fc58cb876152f89f532b95a8d7907e7f0e",
  3378. "reference": "c6d052fc58cb876152f89f532b95a8d7907e7f0e",
  3379. "shasum": ""
  3380. },
  3381. "require": {
  3382. "ext-tokenizer": "*",
  3383. "php": ">=7.0"
  3384. },
  3385. "require-dev": {
  3386. "ircmaxell/php-yacc": "^0.0.7",
  3387. "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0"
  3388. },
  3389. "bin": [
  3390. "bin/php-parse"
  3391. ],
  3392. "type": "library",
  3393. "extra": {
  3394. "branch-alias": {
  3395. "dev-master": "4.9-dev"
  3396. }
  3397. },
  3398. "autoload": {
  3399. "psr-4": {
  3400. "PhpParser\\": "lib/PhpParser"
  3401. }
  3402. },
  3403. "notification-url": "https://packagist.org/downloads/",
  3404. "license": [
  3405. "BSD-3-Clause"
  3406. ],
  3407. "authors": [
  3408. {
  3409. "name": "Nikita Popov"
  3410. }
  3411. ],
  3412. "description": "A PHP parser written in PHP",
  3413. "keywords": [
  3414. "parser",
  3415. "php"
  3416. ],
  3417. "support": {
  3418. "issues": "https://github.com/nikic/PHP-Parser/issues",
  3419. "source": "https://github.com/nikic/PHP-Parser/tree/v4.10.4"
  3420. },
  3421. "time": "2020-12-20T10:01:03+00:00"
  3422. },
  3423. {
  3424. "name": "opis/closure",
  3425. "version": "3.6.1",
  3426. "source": {
  3427. "type": "git",
  3428. "url": "https://github.com/opis/closure.git",
  3429. "reference": "943b5d70cc5ae7483f6aff6ff43d7e34592ca0f5"
  3430. },
  3431. "dist": {
  3432. "type": "zip",
  3433. "url": "https://api.github.com/repos/opis/closure/zipball/943b5d70cc5ae7483f6aff6ff43d7e34592ca0f5",
  3434. "reference": "943b5d70cc5ae7483f6aff6ff43d7e34592ca0f5",
  3435. "shasum": ""
  3436. },
  3437. "require": {
  3438. "php": "^5.4 || ^7.0 || ^8.0"
  3439. },
  3440. "require-dev": {
  3441. "jeremeamia/superclosure": "^2.0",
  3442. "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.0"
  3443. },
  3444. "type": "library",
  3445. "extra": {
  3446. "branch-alias": {
  3447. "dev-master": "3.6.x-dev"
  3448. }
  3449. },
  3450. "autoload": {
  3451. "psr-4": {
  3452. "Opis\\Closure\\": "src/"
  3453. },
  3454. "files": [
  3455. "functions.php"
  3456. ]
  3457. },
  3458. "notification-url": "https://packagist.org/downloads/",
  3459. "license": [
  3460. "MIT"
  3461. ],
  3462. "authors": [
  3463. {
  3464. "name": "Marius Sarca",
  3465. "email": "marius.sarca@gmail.com"
  3466. },
  3467. {
  3468. "name": "Sorin Sarca",
  3469. "email": "sarca_sorin@hotmail.com"
  3470. }
  3471. ],
  3472. "description": "A library that can be used to serialize closures (anonymous functions) and arbitrary objects.",
  3473. "homepage": "https://opis.io/closure",
  3474. "keywords": [
  3475. "anonymous functions",
  3476. "closure",
  3477. "function",
  3478. "serializable",
  3479. "serialization",
  3480. "serialize"
  3481. ],
  3482. "support": {
  3483. "issues": "https://github.com/opis/closure/issues",
  3484. "source": "https://github.com/opis/closure/tree/3.6.1"
  3485. },
  3486. "time": "2020-11-07T02:01:34+00:00"
  3487. },
  3488. {
  3489. "name": "overtrue/laravel-lang",
  3490. "version": "4.2.1",
  3491. "source": {
  3492. "type": "git",
  3493. "url": "https://github.com/overtrue/laravel-lang.git",
  3494. "reference": "653189caa6eac682fa5d15482f271489721231c7"
  3495. },
  3496. "dist": {
  3497. "type": "zip",
  3498. "url": "https://api.github.com/repos/overtrue/laravel-lang/zipball/653189caa6eac682fa5d15482f271489721231c7",
  3499. "reference": "653189caa6eac682fa5d15482f271489721231c7",
  3500. "shasum": ""
  3501. },
  3502. "require": {
  3503. "ext-json": "*",
  3504. "laravel-lang/lang": "^7.0",
  3505. "symfony/process": "^5.0.0"
  3506. },
  3507. "require-dev": {
  3508. "laravel/framework": "~8.1"
  3509. },
  3510. "type": "library",
  3511. "extra": {
  3512. "laravel": {
  3513. "providers": [
  3514. "Overtrue\\LaravelLang\\TranslationServiceProvider"
  3515. ]
  3516. }
  3517. },
  3518. "autoload": {
  3519. "psr-4": {
  3520. "Overtrue\\LaravelLang\\": "src/"
  3521. }
  3522. },
  3523. "notification-url": "https://packagist.org/downloads/",
  3524. "license": [
  3525. "MIT"
  3526. ],
  3527. "authors": [
  3528. {
  3529. "name": "overtrue",
  3530. "email": "anzhengchao@gmail.com"
  3531. }
  3532. ],
  3533. "description": "List of 75 languages for Laravel 4, 5, 6 and 7",
  3534. "keywords": [
  3535. "i18n",
  3536. "languages",
  3537. "laravel",
  3538. "locale",
  3539. "overtrue"
  3540. ],
  3541. "support": {
  3542. "issues": "https://github.com/overtrue/laravel-lang/issues",
  3543. "source": "https://github.com/overtrue/laravel-lang/tree/4.2.1"
  3544. },
  3545. "funding": [
  3546. {
  3547. "url": "https://www.patreon.com/overtrue",
  3548. "type": "patreon"
  3549. }
  3550. ],
  3551. "time": "2020-11-12T01:44:31+00:00"
  3552. },
  3553. {
  3554. "name": "phpoffice/phpspreadsheet",
  3555. "version": "1.16.0",
  3556. "source": {
  3557. "type": "git",
  3558. "url": "https://github.com/PHPOffice/PhpSpreadsheet.git",
  3559. "reference": "76d4323b85129d0c368149c831a07a3e258b2b50"
  3560. },
  3561. "dist": {
  3562. "type": "zip",
  3563. "url": "https://api.github.com/repos/PHPOffice/PhpSpreadsheet/zipball/76d4323b85129d0c368149c831a07a3e258b2b50",
  3564. "reference": "76d4323b85129d0c368149c831a07a3e258b2b50",
  3565. "shasum": ""
  3566. },
  3567. "require": {
  3568. "ext-ctype": "*",
  3569. "ext-dom": "*",
  3570. "ext-fileinfo": "*",
  3571. "ext-gd": "*",
  3572. "ext-iconv": "*",
  3573. "ext-libxml": "*",
  3574. "ext-mbstring": "*",
  3575. "ext-simplexml": "*",
  3576. "ext-xml": "*",
  3577. "ext-xmlreader": "*",
  3578. "ext-xmlwriter": "*",
  3579. "ext-zip": "*",
  3580. "ext-zlib": "*",
  3581. "ezyang/htmlpurifier": "^4.13",
  3582. "maennchen/zipstream-php": "^2.1",
  3583. "markbaker/complex": "^1.5||^2.0",
  3584. "markbaker/matrix": "^1.2||^2.0",
  3585. "php": "^7.2||^8.0",
  3586. "psr/http-client": "^1.0",
  3587. "psr/http-factory": "^1.0",
  3588. "psr/simple-cache": "^1.0"
  3589. },
  3590. "require-dev": {
  3591. "dompdf/dompdf": "^0.8.5",
  3592. "friendsofphp/php-cs-fixer": "^2.16",
  3593. "jpgraph/jpgraph": "^4.0",
  3594. "mpdf/mpdf": "^8.0",
  3595. "phpcompatibility/php-compatibility": "^9.3",
  3596. "phpunit/phpunit": "^8.5||^9.3",
  3597. "squizlabs/php_codesniffer": "^3.5",
  3598. "tecnickcom/tcpdf": "^6.3"
  3599. },
  3600. "suggest": {
  3601. "dompdf/dompdf": "Option for rendering PDF with PDF Writer (doesn't yet support PHP8)",
  3602. "jpgraph/jpgraph": "Option for rendering charts, or including charts with PDF or HTML Writers",
  3603. "mpdf/mpdf": "Option for rendering PDF with PDF Writer",
  3604. "tecnickcom/tcpdf": "Option for rendering PDF with PDF Writer (doesn't yet support PHP8)"
  3605. },
  3606. "type": "library",
  3607. "autoload": {
  3608. "psr-4": {
  3609. "PhpOffice\\PhpSpreadsheet\\": "src/PhpSpreadsheet"
  3610. }
  3611. },
  3612. "notification-url": "https://packagist.org/downloads/",
  3613. "license": [
  3614. "MIT"
  3615. ],
  3616. "authors": [
  3617. {
  3618. "name": "Maarten Balliauw",
  3619. "homepage": "https://blog.maartenballiauw.be"
  3620. },
  3621. {
  3622. "name": "Mark Baker",
  3623. "homepage": "https://markbakeruk.net"
  3624. },
  3625. {
  3626. "name": "Franck Lefevre",
  3627. "homepage": "https://rootslabs.net"
  3628. },
  3629. {
  3630. "name": "Erik Tilt"
  3631. },
  3632. {
  3633. "name": "Adrien Crivelli"
  3634. }
  3635. ],
  3636. "description": "PHPSpreadsheet - Read, Create and Write Spreadsheet documents in PHP - Spreadsheet engine",
  3637. "homepage": "https://github.com/PHPOffice/PhpSpreadsheet",
  3638. "keywords": [
  3639. "OpenXML",
  3640. "excel",
  3641. "gnumeric",
  3642. "ods",
  3643. "php",
  3644. "spreadsheet",
  3645. "xls",
  3646. "xlsx"
  3647. ],
  3648. "support": {
  3649. "issues": "https://github.com/PHPOffice/PhpSpreadsheet/issues",
  3650. "source": "https://github.com/PHPOffice/PhpSpreadsheet/tree/1.16.0"
  3651. },
  3652. "time": "2020-12-31T18:03:49+00:00"
  3653. },
  3654. {
  3655. "name": "phpoption/phpoption",
  3656. "version": "1.7.5",
  3657. "source": {
  3658. "type": "git",
  3659. "url": "https://github.com/schmittjoh/php-option.git",
  3660. "reference": "994ecccd8f3283ecf5ac33254543eb0ac946d525"
  3661. },
  3662. "dist": {
  3663. "type": "zip",
  3664. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/994ecccd8f3283ecf5ac33254543eb0ac946d525",
  3665. "reference": "994ecccd8f3283ecf5ac33254543eb0ac946d525",
  3666. "shasum": ""
  3667. },
  3668. "require": {
  3669. "php": "^5.5.9 || ^7.0 || ^8.0"
  3670. },
  3671. "require-dev": {
  3672. "bamarni/composer-bin-plugin": "^1.4.1",
  3673. "phpunit/phpunit": "^4.8.35 || ^5.7.27 || ^6.5.6 || ^7.0 || ^8.0 || ^9.0"
  3674. },
  3675. "type": "library",
  3676. "extra": {
  3677. "branch-alias": {
  3678. "dev-master": "1.7-dev"
  3679. }
  3680. },
  3681. "autoload": {
  3682. "psr-4": {
  3683. "PhpOption\\": "src/PhpOption/"
  3684. }
  3685. },
  3686. "notification-url": "https://packagist.org/downloads/",
  3687. "license": [
  3688. "Apache-2.0"
  3689. ],
  3690. "authors": [
  3691. {
  3692. "name": "Johannes M. Schmitt",
  3693. "email": "schmittjoh@gmail.com"
  3694. },
  3695. {
  3696. "name": "Graham Campbell",
  3697. "email": "graham@alt-three.com"
  3698. }
  3699. ],
  3700. "description": "Option Type for PHP",
  3701. "keywords": [
  3702. "language",
  3703. "option",
  3704. "php",
  3705. "type"
  3706. ],
  3707. "support": {
  3708. "issues": "https://github.com/schmittjoh/php-option/issues",
  3709. "source": "https://github.com/schmittjoh/php-option/tree/1.7.5"
  3710. },
  3711. "funding": [
  3712. {
  3713. "url": "https://github.com/GrahamCampbell",
  3714. "type": "github"
  3715. },
  3716. {
  3717. "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption",
  3718. "type": "tidelift"
  3719. }
  3720. ],
  3721. "time": "2020-07-20T17:29:33+00:00"
  3722. },
  3723. {
  3724. "name": "psr/container",
  3725. "version": "1.0.0",
  3726. "source": {
  3727. "type": "git",
  3728. "url": "https://github.com/php-fig/container.git",
  3729. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f"
  3730. },
  3731. "dist": {
  3732. "type": "zip",
  3733. "url": "https://api.github.com/repos/php-fig/container/zipball/b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  3734. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  3735. "shasum": ""
  3736. },
  3737. "require": {
  3738. "php": ">=5.3.0"
  3739. },
  3740. "type": "library",
  3741. "extra": {
  3742. "branch-alias": {
  3743. "dev-master": "1.0.x-dev"
  3744. }
  3745. },
  3746. "autoload": {
  3747. "psr-4": {
  3748. "Psr\\Container\\": "src/"
  3749. }
  3750. },
  3751. "notification-url": "https://packagist.org/downloads/",
  3752. "license": [
  3753. "MIT"
  3754. ],
  3755. "authors": [
  3756. {
  3757. "name": "PHP-FIG",
  3758. "homepage": "http://www.php-fig.org/"
  3759. }
  3760. ],
  3761. "description": "Common Container Interface (PHP FIG PSR-11)",
  3762. "homepage": "https://github.com/php-fig/container",
  3763. "keywords": [
  3764. "PSR-11",
  3765. "container",
  3766. "container-interface",
  3767. "container-interop",
  3768. "psr"
  3769. ],
  3770. "support": {
  3771. "issues": "https://github.com/php-fig/container/issues",
  3772. "source": "https://github.com/php-fig/container/tree/master"
  3773. },
  3774. "time": "2017-02-14T16:28:37+00:00"
  3775. },
  3776. {
  3777. "name": "psr/event-dispatcher",
  3778. "version": "1.0.0",
  3779. "source": {
  3780. "type": "git",
  3781. "url": "https://github.com/php-fig/event-dispatcher.git",
  3782. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  3783. },
  3784. "dist": {
  3785. "type": "zip",
  3786. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  3787. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  3788. "shasum": ""
  3789. },
  3790. "require": {
  3791. "php": ">=7.2.0"
  3792. },
  3793. "type": "library",
  3794. "extra": {
  3795. "branch-alias": {
  3796. "dev-master": "1.0.x-dev"
  3797. }
  3798. },
  3799. "autoload": {
  3800. "psr-4": {
  3801. "Psr\\EventDispatcher\\": "src/"
  3802. }
  3803. },
  3804. "notification-url": "https://packagist.org/downloads/",
  3805. "license": [
  3806. "MIT"
  3807. ],
  3808. "authors": [
  3809. {
  3810. "name": "PHP-FIG",
  3811. "homepage": "http://www.php-fig.org/"
  3812. }
  3813. ],
  3814. "description": "Standard interfaces for event handling.",
  3815. "keywords": [
  3816. "events",
  3817. "psr",
  3818. "psr-14"
  3819. ],
  3820. "support": {
  3821. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  3822. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  3823. },
  3824. "time": "2019-01-08T18:20:26+00:00"
  3825. },
  3826. {
  3827. "name": "psr/http-client",
  3828. "version": "1.0.1",
  3829. "source": {
  3830. "type": "git",
  3831. "url": "https://github.com/php-fig/http-client.git",
  3832. "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621"
  3833. },
  3834. "dist": {
  3835. "type": "zip",
  3836. "url": "https://api.github.com/repos/php-fig/http-client/zipball/2dfb5f6c5eff0e91e20e913f8c5452ed95b86621",
  3837. "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621",
  3838. "shasum": ""
  3839. },
  3840. "require": {
  3841. "php": "^7.0 || ^8.0",
  3842. "psr/http-message": "^1.0"
  3843. },
  3844. "type": "library",
  3845. "extra": {
  3846. "branch-alias": {
  3847. "dev-master": "1.0.x-dev"
  3848. }
  3849. },
  3850. "autoload": {
  3851. "psr-4": {
  3852. "Psr\\Http\\Client\\": "src/"
  3853. }
  3854. },
  3855. "notification-url": "https://packagist.org/downloads/",
  3856. "license": [
  3857. "MIT"
  3858. ],
  3859. "authors": [
  3860. {
  3861. "name": "PHP-FIG",
  3862. "homepage": "http://www.php-fig.org/"
  3863. }
  3864. ],
  3865. "description": "Common interface for HTTP clients",
  3866. "homepage": "https://github.com/php-fig/http-client",
  3867. "keywords": [
  3868. "http",
  3869. "http-client",
  3870. "psr",
  3871. "psr-18"
  3872. ],
  3873. "support": {
  3874. "source": "https://github.com/php-fig/http-client/tree/master"
  3875. },
  3876. "time": "2020-06-29T06:28:15+00:00"
  3877. },
  3878. {
  3879. "name": "psr/http-factory",
  3880. "version": "1.0.1",
  3881. "source": {
  3882. "type": "git",
  3883. "url": "https://github.com/php-fig/http-factory.git",
  3884. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be"
  3885. },
  3886. "dist": {
  3887. "type": "zip",
  3888. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  3889. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  3890. "shasum": ""
  3891. },
  3892. "require": {
  3893. "php": ">=7.0.0",
  3894. "psr/http-message": "^1.0"
  3895. },
  3896. "type": "library",
  3897. "extra": {
  3898. "branch-alias": {
  3899. "dev-master": "1.0.x-dev"
  3900. }
  3901. },
  3902. "autoload": {
  3903. "psr-4": {
  3904. "Psr\\Http\\Message\\": "src/"
  3905. }
  3906. },
  3907. "notification-url": "https://packagist.org/downloads/",
  3908. "license": [
  3909. "MIT"
  3910. ],
  3911. "authors": [
  3912. {
  3913. "name": "PHP-FIG",
  3914. "homepage": "http://www.php-fig.org/"
  3915. }
  3916. ],
  3917. "description": "Common interfaces for PSR-7 HTTP message factories",
  3918. "keywords": [
  3919. "factory",
  3920. "http",
  3921. "message",
  3922. "psr",
  3923. "psr-17",
  3924. "psr-7",
  3925. "request",
  3926. "response"
  3927. ],
  3928. "support": {
  3929. "source": "https://github.com/php-fig/http-factory/tree/master"
  3930. },
  3931. "time": "2019-04-30T12:38:16+00:00"
  3932. },
  3933. {
  3934. "name": "psr/http-message",
  3935. "version": "1.0.1",
  3936. "source": {
  3937. "type": "git",
  3938. "url": "https://github.com/php-fig/http-message.git",
  3939. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  3940. },
  3941. "dist": {
  3942. "type": "zip",
  3943. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  3944. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  3945. "shasum": ""
  3946. },
  3947. "require": {
  3948. "php": ">=5.3.0"
  3949. },
  3950. "type": "library",
  3951. "extra": {
  3952. "branch-alias": {
  3953. "dev-master": "1.0.x-dev"
  3954. }
  3955. },
  3956. "autoload": {
  3957. "psr-4": {
  3958. "Psr\\Http\\Message\\": "src/"
  3959. }
  3960. },
  3961. "notification-url": "https://packagist.org/downloads/",
  3962. "license": [
  3963. "MIT"
  3964. ],
  3965. "authors": [
  3966. {
  3967. "name": "PHP-FIG",
  3968. "homepage": "http://www.php-fig.org/"
  3969. }
  3970. ],
  3971. "description": "Common interface for HTTP messages",
  3972. "homepage": "https://github.com/php-fig/http-message",
  3973. "keywords": [
  3974. "http",
  3975. "http-message",
  3976. "psr",
  3977. "psr-7",
  3978. "request",
  3979. "response"
  3980. ],
  3981. "support": {
  3982. "source": "https://github.com/php-fig/http-message/tree/master"
  3983. },
  3984. "time": "2016-08-06T14:39:51+00:00"
  3985. },
  3986. {
  3987. "name": "psr/log",
  3988. "version": "1.1.3",
  3989. "source": {
  3990. "type": "git",
  3991. "url": "https://github.com/php-fig/log.git",
  3992. "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc"
  3993. },
  3994. "dist": {
  3995. "type": "zip",
  3996. "url": "https://api.github.com/repos/php-fig/log/zipball/0f73288fd15629204f9d42b7055f72dacbe811fc",
  3997. "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc",
  3998. "shasum": ""
  3999. },
  4000. "require": {
  4001. "php": ">=5.3.0"
  4002. },
  4003. "type": "library",
  4004. "extra": {
  4005. "branch-alias": {
  4006. "dev-master": "1.1.x-dev"
  4007. }
  4008. },
  4009. "autoload": {
  4010. "psr-4": {
  4011. "Psr\\Log\\": "Psr/Log/"
  4012. }
  4013. },
  4014. "notification-url": "https://packagist.org/downloads/",
  4015. "license": [
  4016. "MIT"
  4017. ],
  4018. "authors": [
  4019. {
  4020. "name": "PHP-FIG",
  4021. "homepage": "http://www.php-fig.org/"
  4022. }
  4023. ],
  4024. "description": "Common interface for logging libraries",
  4025. "homepage": "https://github.com/php-fig/log",
  4026. "keywords": [
  4027. "log",
  4028. "psr",
  4029. "psr-3"
  4030. ],
  4031. "support": {
  4032. "source": "https://github.com/php-fig/log/tree/1.1.3"
  4033. },
  4034. "time": "2020-03-23T09:12:05+00:00"
  4035. },
  4036. {
  4037. "name": "psr/simple-cache",
  4038. "version": "1.0.1",
  4039. "source": {
  4040. "type": "git",
  4041. "url": "https://github.com/php-fig/simple-cache.git",
  4042. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b"
  4043. },
  4044. "dist": {
  4045. "type": "zip",
  4046. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  4047. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  4048. "shasum": ""
  4049. },
  4050. "require": {
  4051. "php": ">=5.3.0"
  4052. },
  4053. "type": "library",
  4054. "extra": {
  4055. "branch-alias": {
  4056. "dev-master": "1.0.x-dev"
  4057. }
  4058. },
  4059. "autoload": {
  4060. "psr-4": {
  4061. "Psr\\SimpleCache\\": "src/"
  4062. }
  4063. },
  4064. "notification-url": "https://packagist.org/downloads/",
  4065. "license": [
  4066. "MIT"
  4067. ],
  4068. "authors": [
  4069. {
  4070. "name": "PHP-FIG",
  4071. "homepage": "http://www.php-fig.org/"
  4072. }
  4073. ],
  4074. "description": "Common interfaces for simple caching",
  4075. "keywords": [
  4076. "cache",
  4077. "caching",
  4078. "psr",
  4079. "psr-16",
  4080. "simple-cache"
  4081. ],
  4082. "support": {
  4083. "source": "https://github.com/php-fig/simple-cache/tree/master"
  4084. },
  4085. "time": "2017-10-23T01:57:42+00:00"
  4086. },
  4087. {
  4088. "name": "psy/psysh",
  4089. "version": "v0.10.5",
  4090. "source": {
  4091. "type": "git",
  4092. "url": "https://github.com/bobthecow/psysh.git",
  4093. "reference": "7c710551d4a2653afa259c544508dc18a9098956"
  4094. },
  4095. "dist": {
  4096. "type": "zip",
  4097. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/7c710551d4a2653afa259c544508dc18a9098956",
  4098. "reference": "7c710551d4a2653afa259c544508dc18a9098956",
  4099. "shasum": ""
  4100. },
  4101. "require": {
  4102. "dnoegel/php-xdg-base-dir": "0.1.*",
  4103. "ext-json": "*",
  4104. "ext-tokenizer": "*",
  4105. "nikic/php-parser": "~4.0|~3.0|~2.0|~1.3",
  4106. "php": "^8.0 || ^7.0 || ^5.5.9",
  4107. "symfony/console": "~5.0|~4.0|~3.0|^2.4.2|~2.3.10",
  4108. "symfony/var-dumper": "~5.0|~4.0|~3.0|~2.7"
  4109. },
  4110. "require-dev": {
  4111. "bamarni/composer-bin-plugin": "^1.2",
  4112. "hoa/console": "3.17.*"
  4113. },
  4114. "suggest": {
  4115. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  4116. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  4117. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.",
  4118. "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history.",
  4119. "hoa/console": "A pure PHP readline implementation. You'll want this if your PHP install doesn't already support readline or libedit."
  4120. },
  4121. "bin": [
  4122. "bin/psysh"
  4123. ],
  4124. "type": "library",
  4125. "extra": {
  4126. "branch-alias": {
  4127. "dev-master": "0.10.x-dev"
  4128. }
  4129. },
  4130. "autoload": {
  4131. "files": [
  4132. "src/functions.php"
  4133. ],
  4134. "psr-4": {
  4135. "Psy\\": "src/"
  4136. }
  4137. },
  4138. "notification-url": "https://packagist.org/downloads/",
  4139. "license": [
  4140. "MIT"
  4141. ],
  4142. "authors": [
  4143. {
  4144. "name": "Justin Hileman",
  4145. "email": "justin@justinhileman.info",
  4146. "homepage": "http://justinhileman.com"
  4147. }
  4148. ],
  4149. "description": "An interactive shell for modern PHP.",
  4150. "homepage": "http://psysh.org",
  4151. "keywords": [
  4152. "REPL",
  4153. "console",
  4154. "interactive",
  4155. "shell"
  4156. ],
  4157. "support": {
  4158. "issues": "https://github.com/bobthecow/psysh/issues",
  4159. "source": "https://github.com/bobthecow/psysh/tree/v0.10.5"
  4160. },
  4161. "time": "2020-12-04T02:51:30+00:00"
  4162. },
  4163. {
  4164. "name": "ralouphie/getallheaders",
  4165. "version": "3.0.3",
  4166. "source": {
  4167. "type": "git",
  4168. "url": "https://github.com/ralouphie/getallheaders.git",
  4169. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  4170. },
  4171. "dist": {
  4172. "type": "zip",
  4173. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  4174. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  4175. "shasum": ""
  4176. },
  4177. "require": {
  4178. "php": ">=5.6"
  4179. },
  4180. "require-dev": {
  4181. "php-coveralls/php-coveralls": "^2.1",
  4182. "phpunit/phpunit": "^5 || ^6.5"
  4183. },
  4184. "type": "library",
  4185. "autoload": {
  4186. "files": [
  4187. "src/getallheaders.php"
  4188. ]
  4189. },
  4190. "notification-url": "https://packagist.org/downloads/",
  4191. "license": [
  4192. "MIT"
  4193. ],
  4194. "authors": [
  4195. {
  4196. "name": "Ralph Khattar",
  4197. "email": "ralph.khattar@gmail.com"
  4198. }
  4199. ],
  4200. "description": "A polyfill for getallheaders.",
  4201. "support": {
  4202. "issues": "https://github.com/ralouphie/getallheaders/issues",
  4203. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  4204. },
  4205. "time": "2019-03-08T08:55:37+00:00"
  4206. },
  4207. {
  4208. "name": "ramsey/collection",
  4209. "version": "1.1.1",
  4210. "source": {
  4211. "type": "git",
  4212. "url": "https://github.com/ramsey/collection.git",
  4213. "reference": "24d93aefb2cd786b7edd9f45b554aea20b28b9b1"
  4214. },
  4215. "dist": {
  4216. "type": "zip",
  4217. "url": "https://api.github.com/repos/ramsey/collection/zipball/24d93aefb2cd786b7edd9f45b554aea20b28b9b1",
  4218. "reference": "24d93aefb2cd786b7edd9f45b554aea20b28b9b1",
  4219. "shasum": ""
  4220. },
  4221. "require": {
  4222. "php": "^7.2 || ^8"
  4223. },
  4224. "require-dev": {
  4225. "captainhook/captainhook": "^5.3",
  4226. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  4227. "ergebnis/composer-normalize": "^2.6",
  4228. "fzaninotto/faker": "^1.5",
  4229. "hamcrest/hamcrest-php": "^2",
  4230. "jangregor/phpstan-prophecy": "^0.6",
  4231. "mockery/mockery": "^1.3",
  4232. "phpstan/extension-installer": "^1",
  4233. "phpstan/phpstan": "^0.12.32",
  4234. "phpstan/phpstan-mockery": "^0.12.5",
  4235. "phpstan/phpstan-phpunit": "^0.12.11",
  4236. "phpunit/phpunit": "^8.5",
  4237. "psy/psysh": "^0.10.4",
  4238. "slevomat/coding-standard": "^6.3",
  4239. "squizlabs/php_codesniffer": "^3.5",
  4240. "vimeo/psalm": "^3.12.2"
  4241. },
  4242. "type": "library",
  4243. "autoload": {
  4244. "psr-4": {
  4245. "Ramsey\\Collection\\": "src/"
  4246. }
  4247. },
  4248. "notification-url": "https://packagist.org/downloads/",
  4249. "license": [
  4250. "MIT"
  4251. ],
  4252. "authors": [
  4253. {
  4254. "name": "Ben Ramsey",
  4255. "email": "ben@benramsey.com",
  4256. "homepage": "https://benramsey.com"
  4257. }
  4258. ],
  4259. "description": "A PHP 7.2+ library for representing and manipulating collections.",
  4260. "keywords": [
  4261. "array",
  4262. "collection",
  4263. "hash",
  4264. "map",
  4265. "queue",
  4266. "set"
  4267. ],
  4268. "support": {
  4269. "issues": "https://github.com/ramsey/collection/issues",
  4270. "source": "https://github.com/ramsey/collection/tree/1.1.1"
  4271. },
  4272. "funding": [
  4273. {
  4274. "url": "https://github.com/ramsey",
  4275. "type": "github"
  4276. }
  4277. ],
  4278. "time": "2020-09-10T20:58:17+00:00"
  4279. },
  4280. {
  4281. "name": "ramsey/uuid",
  4282. "version": "4.1.1",
  4283. "source": {
  4284. "type": "git",
  4285. "url": "https://github.com/ramsey/uuid.git",
  4286. "reference": "cd4032040a750077205918c86049aa0f43d22947"
  4287. },
  4288. "dist": {
  4289. "type": "zip",
  4290. "url": "https://api.github.com/repos/ramsey/uuid/zipball/cd4032040a750077205918c86049aa0f43d22947",
  4291. "reference": "cd4032040a750077205918c86049aa0f43d22947",
  4292. "shasum": ""
  4293. },
  4294. "require": {
  4295. "brick/math": "^0.8 || ^0.9",
  4296. "ext-json": "*",
  4297. "php": "^7.2 || ^8",
  4298. "ramsey/collection": "^1.0",
  4299. "symfony/polyfill-ctype": "^1.8"
  4300. },
  4301. "replace": {
  4302. "rhumsaa/uuid": "self.version"
  4303. },
  4304. "require-dev": {
  4305. "codeception/aspect-mock": "^3",
  4306. "dealerdirect/phpcodesniffer-composer-installer": "^0.6.2 || ^0.7.0",
  4307. "doctrine/annotations": "^1.8",
  4308. "goaop/framework": "^2",
  4309. "mockery/mockery": "^1.3",
  4310. "moontoast/math": "^1.1",
  4311. "paragonie/random-lib": "^2",
  4312. "php-mock/php-mock-mockery": "^1.3",
  4313. "php-mock/php-mock-phpunit": "^2.5",
  4314. "php-parallel-lint/php-parallel-lint": "^1.1",
  4315. "phpbench/phpbench": "^0.17.1",
  4316. "phpstan/extension-installer": "^1.0",
  4317. "phpstan/phpstan": "^0.12",
  4318. "phpstan/phpstan-mockery": "^0.12",
  4319. "phpstan/phpstan-phpunit": "^0.12",
  4320. "phpunit/phpunit": "^8.5",
  4321. "psy/psysh": "^0.10.0",
  4322. "slevomat/coding-standard": "^6.0",
  4323. "squizlabs/php_codesniffer": "^3.5",
  4324. "vimeo/psalm": "3.9.4"
  4325. },
  4326. "suggest": {
  4327. "ext-bcmath": "Enables faster math with arbitrary-precision integers using BCMath.",
  4328. "ext-ctype": "Enables faster processing of character classification using ctype functions.",
  4329. "ext-gmp": "Enables faster math with arbitrary-precision integers using GMP.",
  4330. "ext-uuid": "Enables the use of PeclUuidTimeGenerator and PeclUuidRandomGenerator.",
  4331. "paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
  4332. "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type."
  4333. },
  4334. "type": "library",
  4335. "extra": {
  4336. "branch-alias": {
  4337. "dev-master": "4.x-dev"
  4338. }
  4339. },
  4340. "autoload": {
  4341. "psr-4": {
  4342. "Ramsey\\Uuid\\": "src/"
  4343. },
  4344. "files": [
  4345. "src/functions.php"
  4346. ]
  4347. },
  4348. "notification-url": "https://packagist.org/downloads/",
  4349. "license": [
  4350. "MIT"
  4351. ],
  4352. "description": "A PHP library for generating and working with universally unique identifiers (UUIDs).",
  4353. "homepage": "https://github.com/ramsey/uuid",
  4354. "keywords": [
  4355. "guid",
  4356. "identifier",
  4357. "uuid"
  4358. ],
  4359. "support": {
  4360. "issues": "https://github.com/ramsey/uuid/issues",
  4361. "rss": "https://github.com/ramsey/uuid/releases.atom",
  4362. "source": "https://github.com/ramsey/uuid"
  4363. },
  4364. "funding": [
  4365. {
  4366. "url": "https://github.com/ramsey",
  4367. "type": "github"
  4368. }
  4369. ],
  4370. "time": "2020-08-18T17:17:46+00:00"
  4371. },
  4372. {
  4373. "name": "rap2hpoutre/laravel-log-viewer",
  4374. "version": "v1.7.0",
  4375. "source": {
  4376. "type": "git",
  4377. "url": "https://github.com/rap2hpoutre/laravel-log-viewer.git",
  4378. "reference": "27392d29234b6ff38a456454558f4bcc40cc837a"
  4379. },
  4380. "dist": {
  4381. "type": "zip",
  4382. "url": "https://api.github.com/repos/rap2hpoutre/laravel-log-viewer/zipball/27392d29234b6ff38a456454558f4bcc40cc837a",
  4383. "reference": "27392d29234b6ff38a456454558f4bcc40cc837a",
  4384. "shasum": ""
  4385. },
  4386. "require": {
  4387. "illuminate/support": "4.2.*|5.*|^6.0|^7.0|^8.0",
  4388. "php": ">=5.4.0"
  4389. },
  4390. "require-dev": {
  4391. "orchestra/testbench": "3.7.*",
  4392. "phpunit/phpunit": "^7"
  4393. },
  4394. "type": "laravel-package",
  4395. "extra": {
  4396. "laravel": {
  4397. "providers": [
  4398. "Rap2hpoutre\\LaravelLogViewer\\LaravelLogViewerServiceProvider"
  4399. ]
  4400. }
  4401. },
  4402. "autoload": {
  4403. "classmap": [
  4404. "src/controllers"
  4405. ],
  4406. "psr-0": {
  4407. "Rap2hpoutre\\LaravelLogViewer\\": "src/"
  4408. }
  4409. },
  4410. "notification-url": "https://packagist.org/downloads/",
  4411. "license": [
  4412. "MIT"
  4413. ],
  4414. "authors": [
  4415. {
  4416. "name": "rap2hpoutre",
  4417. "email": "raphaelht@gmail.com"
  4418. }
  4419. ],
  4420. "description": "A Laravel log reader",
  4421. "keywords": [
  4422. "laravel",
  4423. "log",
  4424. "log-reader",
  4425. "log-viewer",
  4426. "logging",
  4427. "lumen"
  4428. ],
  4429. "support": {
  4430. "issues": "https://github.com/rap2hpoutre/laravel-log-viewer/issues",
  4431. "source": "https://github.com/rap2hpoutre/laravel-log-viewer/tree/master"
  4432. },
  4433. "time": "2020-09-08T12:21:27+00:00"
  4434. },
  4435. {
  4436. "name": "riverslei/payment",
  4437. "version": "v5.1.0",
  4438. "source": {
  4439. "type": "git",
  4440. "url": "https://github.com/helei112g/payment.git",
  4441. "reference": "77f671b68b0285a6af77dc7c5afa36eabcae35aa"
  4442. },
  4443. "dist": {
  4444. "type": "zip",
  4445. "url": "https://api.github.com/repos/helei112g/payment/zipball/77f671b68b0285a6af77dc7c5afa36eabcae35aa",
  4446. "reference": "77f671b68b0285a6af77dc7c5afa36eabcae35aa",
  4447. "shasum": ""
  4448. },
  4449. "require": {
  4450. "ext-bcmath": "*",
  4451. "ext-json": "*",
  4452. "ext-mbstring": "*",
  4453. "ext-openssl": "*",
  4454. "ext-simplexml": "*",
  4455. "ext-xml": "*",
  4456. "guzzlehttp/guzzle": "~6.0",
  4457. "php": ">=7.0"
  4458. },
  4459. "require-dev": {
  4460. "codeception/codeception": "*"
  4461. },
  4462. "type": "library",
  4463. "autoload": {
  4464. "psr-4": {
  4465. "Payment\\": "src/"
  4466. }
  4467. },
  4468. "notification-url": "https://packagist.org/downloads/",
  4469. "license": [
  4470. "MIT"
  4471. ],
  4472. "authors": [
  4473. {
  4474. "name": "Leo",
  4475. "email": "dayugog@gmail.com",
  4476. "homepage": "https://dayutalk.cn"
  4477. }
  4478. ],
  4479. "description": "支付宝支付、微信支付、招商一网通支付php SDK。方便快速接入,最完整的开源支付 php sdk",
  4480. "homepage": "http://helei112g.github.io/payment",
  4481. "keywords": [
  4482. "alipay",
  4483. "weixin",
  4484. "一网通",
  4485. "微信支付",
  4486. "招商一网通",
  4487. "支付宝支付",
  4488. "集成支付接口SDK"
  4489. ],
  4490. "support": {
  4491. "issues": "https://github.com/helei112g/payment/issues",
  4492. "source": "https://github.com/helei112g/payment/tree/v5.x"
  4493. },
  4494. "time": "2020-05-04T03:07:17+00:00"
  4495. },
  4496. {
  4497. "name": "spatie/laravel-permission",
  4498. "version": "3.18.0",
  4499. "source": {
  4500. "type": "git",
  4501. "url": "https://github.com/spatie/laravel-permission.git",
  4502. "reference": "1c51a5fa12131565fe3860705163e53d7a26258a"
  4503. },
  4504. "dist": {
  4505. "type": "zip",
  4506. "url": "https://api.github.com/repos/spatie/laravel-permission/zipball/1c51a5fa12131565fe3860705163e53d7a26258a",
  4507. "reference": "1c51a5fa12131565fe3860705163e53d7a26258a",
  4508. "shasum": ""
  4509. },
  4510. "require": {
  4511. "illuminate/auth": "^5.8|^6.0|^7.0|^8.0",
  4512. "illuminate/container": "^5.8|^6.0|^7.0|^8.0",
  4513. "illuminate/contracts": "^5.8|^6.0|^7.0|^8.0",
  4514. "illuminate/database": "^5.8|^6.0|^7.0|^8.0",
  4515. "php": "^7.2.5|^8.0"
  4516. },
  4517. "require-dev": {
  4518. "orchestra/testbench": "^3.8|^4.0|^5.0|^6.0",
  4519. "phpunit/phpunit": "^8.0|^9.0",
  4520. "predis/predis": "^1.1"
  4521. },
  4522. "type": "library",
  4523. "extra": {
  4524. "laravel": {
  4525. "providers": [
  4526. "Spatie\\Permission\\PermissionServiceProvider"
  4527. ]
  4528. }
  4529. },
  4530. "autoload": {
  4531. "psr-4": {
  4532. "Spatie\\Permission\\": "src"
  4533. },
  4534. "files": [
  4535. "src/helpers.php"
  4536. ]
  4537. },
  4538. "notification-url": "https://packagist.org/downloads/",
  4539. "license": [
  4540. "MIT"
  4541. ],
  4542. "authors": [
  4543. {
  4544. "name": "Freek Van der Herten",
  4545. "email": "freek@spatie.be",
  4546. "homepage": "https://spatie.be",
  4547. "role": "Developer"
  4548. }
  4549. ],
  4550. "description": "Permission handling for Laravel 5.8 and up",
  4551. "homepage": "https://github.com/spatie/laravel-permission",
  4552. "keywords": [
  4553. "acl",
  4554. "laravel",
  4555. "permission",
  4556. "permissions",
  4557. "rbac",
  4558. "roles",
  4559. "security",
  4560. "spatie"
  4561. ],
  4562. "support": {
  4563. "issues": "https://github.com/spatie/laravel-permission/issues",
  4564. "source": "https://github.com/spatie/laravel-permission/tree/3.18.0"
  4565. },
  4566. "funding": [
  4567. {
  4568. "url": "https://github.com/spatie",
  4569. "type": "github"
  4570. }
  4571. ],
  4572. "time": "2020-11-09T14:08:36+00:00"
  4573. },
  4574. {
  4575. "name": "srmklive/paypal",
  4576. "version": "1.8.0",
  4577. "source": {
  4578. "type": "git",
  4579. "url": "https://github.com/srmklive/laravel-paypal.git",
  4580. "reference": "0c2ae237577f62396d474674cb40f82825a41ffb"
  4581. },
  4582. "dist": {
  4583. "type": "zip",
  4584. "url": "https://api.github.com/repos/srmklive/laravel-paypal/zipball/0c2ae237577f62396d474674cb40f82825a41ffb",
  4585. "reference": "0c2ae237577f62396d474674cb40f82825a41ffb",
  4586. "shasum": ""
  4587. },
  4588. "require": {
  4589. "guzzlehttp/guzzle": "~6.0|~7.0",
  4590. "illuminate/support": "~5.1|~5.2|~5.3|~5.4|~5.5|~5.6|~5.7|~5.8|~6.0|~7.0|~8.0",
  4591. "nesbot/carbon": "~1.0|~2.0"
  4592. },
  4593. "type": "library",
  4594. "extra": {
  4595. "laravel": {
  4596. "providers": [
  4597. "Srmklive\\PayPal\\Providers\\PayPalServiceProvider"
  4598. ],
  4599. "aliases": {
  4600. "PayPal": "Srmklive\\PayPal\\Facades\\PayPal"
  4601. }
  4602. }
  4603. },
  4604. "autoload": {
  4605. "psr-4": {
  4606. "Srmklive\\PayPal\\": "src/"
  4607. }
  4608. },
  4609. "notification-url": "https://packagist.org/downloads/",
  4610. "license": [
  4611. "MIT"
  4612. ],
  4613. "authors": [
  4614. {
  4615. "name": "Raza Mehdi",
  4616. "email": "srmk@outlook.com"
  4617. }
  4618. ],
  4619. "description": "Laravel plugin For Processing Payments Through Paypal Express Checkout. Can Be Used Independently With Other Applications.",
  4620. "keywords": [
  4621. "http",
  4622. "laravel paypal",
  4623. "paypal",
  4624. "rest",
  4625. "web service"
  4626. ],
  4627. "support": {
  4628. "issues": "https://github.com/srmklive/laravel-paypal/issues",
  4629. "source": "https://github.com/srmklive/laravel-paypal/tree/v1.0"
  4630. },
  4631. "time": "2020-09-03T07:50:08+00:00"
  4632. },
  4633. {
  4634. "name": "stripe/stripe-php",
  4635. "version": "v7.67.0",
  4636. "source": {
  4637. "type": "git",
  4638. "url": "https://github.com/stripe/stripe-php.git",
  4639. "reference": "935d2c67912007f6d17b6c08a62050252c509129"
  4640. },
  4641. "dist": {
  4642. "type": "zip",
  4643. "url": "https://api.github.com/repos/stripe/stripe-php/zipball/935d2c67912007f6d17b6c08a62050252c509129",
  4644. "reference": "935d2c67912007f6d17b6c08a62050252c509129",
  4645. "shasum": ""
  4646. },
  4647. "require": {
  4648. "ext-curl": "*",
  4649. "ext-json": "*",
  4650. "ext-mbstring": "*",
  4651. "php": ">=5.6.0"
  4652. },
  4653. "require-dev": {
  4654. "friendsofphp/php-cs-fixer": "2.17.1",
  4655. "php-coveralls/php-coveralls": "^2.1",
  4656. "phpunit/phpunit": "^5.7",
  4657. "squizlabs/php_codesniffer": "^3.3",
  4658. "symfony/process": "~3.4"
  4659. },
  4660. "type": "library",
  4661. "extra": {
  4662. "branch-alias": {
  4663. "dev-master": "2.0-dev"
  4664. }
  4665. },
  4666. "autoload": {
  4667. "psr-4": {
  4668. "Stripe\\": "lib/"
  4669. }
  4670. },
  4671. "notification-url": "https://packagist.org/downloads/",
  4672. "license": [
  4673. "MIT"
  4674. ],
  4675. "authors": [
  4676. {
  4677. "name": "Stripe and contributors",
  4678. "homepage": "https://github.com/stripe/stripe-php/contributors"
  4679. }
  4680. ],
  4681. "description": "Stripe PHP Library",
  4682. "homepage": "https://stripe.com/",
  4683. "keywords": [
  4684. "api",
  4685. "payment processing",
  4686. "stripe"
  4687. ],
  4688. "support": {
  4689. "issues": "https://github.com/stripe/stripe-php/issues",
  4690. "source": "https://github.com/stripe/stripe-php/tree/v7.67.0"
  4691. },
  4692. "time": "2020-12-09T19:00:34+00:00"
  4693. },
  4694. {
  4695. "name": "swiftmailer/swiftmailer",
  4696. "version": "v6.2.4",
  4697. "source": {
  4698. "type": "git",
  4699. "url": "https://github.com/swiftmailer/swiftmailer.git",
  4700. "reference": "56f0ab23f54c4ccbb0d5dcc67ff8552e0c98d59e"
  4701. },
  4702. "dist": {
  4703. "type": "zip",
  4704. "url": "https://api.github.com/repos/swiftmailer/swiftmailer/zipball/56f0ab23f54c4ccbb0d5dcc67ff8552e0c98d59e",
  4705. "reference": "56f0ab23f54c4ccbb0d5dcc67ff8552e0c98d59e",
  4706. "shasum": ""
  4707. },
  4708. "require": {
  4709. "egulias/email-validator": "^2.0",
  4710. "php": ">=7.0.0",
  4711. "symfony/polyfill-iconv": "^1.0",
  4712. "symfony/polyfill-intl-idn": "^1.10",
  4713. "symfony/polyfill-mbstring": "^1.0"
  4714. },
  4715. "require-dev": {
  4716. "mockery/mockery": "^1.0",
  4717. "symfony/phpunit-bridge": "^4.4|^5.0"
  4718. },
  4719. "suggest": {
  4720. "ext-intl": "Needed to support internationalized email addresses"
  4721. },
  4722. "type": "library",
  4723. "extra": {
  4724. "branch-alias": {
  4725. "dev-master": "6.2-dev"
  4726. }
  4727. },
  4728. "autoload": {
  4729. "files": [
  4730. "lib/swift_required.php"
  4731. ]
  4732. },
  4733. "notification-url": "https://packagist.org/downloads/",
  4734. "license": [
  4735. "MIT"
  4736. ],
  4737. "authors": [
  4738. {
  4739. "name": "Chris Corbyn"
  4740. },
  4741. {
  4742. "name": "Fabien Potencier",
  4743. "email": "fabien@symfony.com"
  4744. }
  4745. ],
  4746. "description": "Swiftmailer, free feature-rich PHP mailer",
  4747. "homepage": "https://swiftmailer.symfony.com",
  4748. "keywords": [
  4749. "email",
  4750. "mail",
  4751. "mailer"
  4752. ],
  4753. "support": {
  4754. "issues": "https://github.com/swiftmailer/swiftmailer/issues",
  4755. "source": "https://github.com/swiftmailer/swiftmailer/tree/v6.2.4"
  4756. },
  4757. "funding": [
  4758. {
  4759. "url": "https://github.com/fabpot",
  4760. "type": "github"
  4761. },
  4762. {
  4763. "url": "https://tidelift.com/funding/github/packagist/swiftmailer/swiftmailer",
  4764. "type": "tidelift"
  4765. }
  4766. ],
  4767. "time": "2020-12-08T18:02:06+00:00"
  4768. },
  4769. {
  4770. "name": "symfony/console",
  4771. "version": "v5.2.1",
  4772. "source": {
  4773. "type": "git",
  4774. "url": "https://github.com/symfony/console.git",
  4775. "reference": "47c02526c532fb381374dab26df05e7313978976"
  4776. },
  4777. "dist": {
  4778. "type": "zip",
  4779. "url": "https://api.github.com/repos/symfony/console/zipball/47c02526c532fb381374dab26df05e7313978976",
  4780. "reference": "47c02526c532fb381374dab26df05e7313978976",
  4781. "shasum": ""
  4782. },
  4783. "require": {
  4784. "php": ">=7.2.5",
  4785. "symfony/polyfill-mbstring": "~1.0",
  4786. "symfony/polyfill-php73": "^1.8",
  4787. "symfony/polyfill-php80": "^1.15",
  4788. "symfony/service-contracts": "^1.1|^2",
  4789. "symfony/string": "^5.1"
  4790. },
  4791. "conflict": {
  4792. "symfony/dependency-injection": "<4.4",
  4793. "symfony/dotenv": "<5.1",
  4794. "symfony/event-dispatcher": "<4.4",
  4795. "symfony/lock": "<4.4",
  4796. "symfony/process": "<4.4"
  4797. },
  4798. "provide": {
  4799. "psr/log-implementation": "1.0"
  4800. },
  4801. "require-dev": {
  4802. "psr/log": "~1.0",
  4803. "symfony/config": "^4.4|^5.0",
  4804. "symfony/dependency-injection": "^4.4|^5.0",
  4805. "symfony/event-dispatcher": "^4.4|^5.0",
  4806. "symfony/lock": "^4.4|^5.0",
  4807. "symfony/process": "^4.4|^5.0",
  4808. "symfony/var-dumper": "^4.4|^5.0"
  4809. },
  4810. "suggest": {
  4811. "psr/log": "For using the console logger",
  4812. "symfony/event-dispatcher": "",
  4813. "symfony/lock": "",
  4814. "symfony/process": ""
  4815. },
  4816. "type": "library",
  4817. "autoload": {
  4818. "psr-4": {
  4819. "Symfony\\Component\\Console\\": ""
  4820. },
  4821. "exclude-from-classmap": [
  4822. "/Tests/"
  4823. ]
  4824. },
  4825. "notification-url": "https://packagist.org/downloads/",
  4826. "license": [
  4827. "MIT"
  4828. ],
  4829. "authors": [
  4830. {
  4831. "name": "Fabien Potencier",
  4832. "email": "fabien@symfony.com"
  4833. },
  4834. {
  4835. "name": "Symfony Community",
  4836. "homepage": "https://symfony.com/contributors"
  4837. }
  4838. ],
  4839. "description": "Symfony Console Component",
  4840. "homepage": "https://symfony.com",
  4841. "keywords": [
  4842. "cli",
  4843. "command line",
  4844. "console",
  4845. "terminal"
  4846. ],
  4847. "support": {
  4848. "source": "https://github.com/symfony/console/tree/v5.2.1"
  4849. },
  4850. "funding": [
  4851. {
  4852. "url": "https://symfony.com/sponsor",
  4853. "type": "custom"
  4854. },
  4855. {
  4856. "url": "https://github.com/fabpot",
  4857. "type": "github"
  4858. },
  4859. {
  4860. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4861. "type": "tidelift"
  4862. }
  4863. ],
  4864. "time": "2020-12-18T08:03:05+00:00"
  4865. },
  4866. {
  4867. "name": "symfony/css-selector",
  4868. "version": "v5.2.1",
  4869. "source": {
  4870. "type": "git",
  4871. "url": "https://github.com/symfony/css-selector.git",
  4872. "reference": "f789e7ead4c79e04ca9a6d6162fc629c89bd8054"
  4873. },
  4874. "dist": {
  4875. "type": "zip",
  4876. "url": "https://api.github.com/repos/symfony/css-selector/zipball/f789e7ead4c79e04ca9a6d6162fc629c89bd8054",
  4877. "reference": "f789e7ead4c79e04ca9a6d6162fc629c89bd8054",
  4878. "shasum": ""
  4879. },
  4880. "require": {
  4881. "php": ">=7.2.5"
  4882. },
  4883. "type": "library",
  4884. "autoload": {
  4885. "psr-4": {
  4886. "Symfony\\Component\\CssSelector\\": ""
  4887. },
  4888. "exclude-from-classmap": [
  4889. "/Tests/"
  4890. ]
  4891. },
  4892. "notification-url": "https://packagist.org/downloads/",
  4893. "license": [
  4894. "MIT"
  4895. ],
  4896. "authors": [
  4897. {
  4898. "name": "Fabien Potencier",
  4899. "email": "fabien@symfony.com"
  4900. },
  4901. {
  4902. "name": "Jean-François Simon",
  4903. "email": "jeanfrancois.simon@sensiolabs.com"
  4904. },
  4905. {
  4906. "name": "Symfony Community",
  4907. "homepage": "https://symfony.com/contributors"
  4908. }
  4909. ],
  4910. "description": "Symfony CssSelector Component",
  4911. "homepage": "https://symfony.com",
  4912. "support": {
  4913. "source": "https://github.com/symfony/css-selector/tree/v5.2.1"
  4914. },
  4915. "funding": [
  4916. {
  4917. "url": "https://symfony.com/sponsor",
  4918. "type": "custom"
  4919. },
  4920. {
  4921. "url": "https://github.com/fabpot",
  4922. "type": "github"
  4923. },
  4924. {
  4925. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4926. "type": "tidelift"
  4927. }
  4928. ],
  4929. "time": "2020-12-08T17:02:38+00:00"
  4930. },
  4931. {
  4932. "name": "symfony/deprecation-contracts",
  4933. "version": "v2.2.0",
  4934. "source": {
  4935. "type": "git",
  4936. "url": "https://github.com/symfony/deprecation-contracts.git",
  4937. "reference": "5fa56b4074d1ae755beb55617ddafe6f5d78f665"
  4938. },
  4939. "dist": {
  4940. "type": "zip",
  4941. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/5fa56b4074d1ae755beb55617ddafe6f5d78f665",
  4942. "reference": "5fa56b4074d1ae755beb55617ddafe6f5d78f665",
  4943. "shasum": ""
  4944. },
  4945. "require": {
  4946. "php": ">=7.1"
  4947. },
  4948. "type": "library",
  4949. "extra": {
  4950. "branch-alias": {
  4951. "dev-master": "2.2-dev"
  4952. },
  4953. "thanks": {
  4954. "name": "symfony/contracts",
  4955. "url": "https://github.com/symfony/contracts"
  4956. }
  4957. },
  4958. "autoload": {
  4959. "files": [
  4960. "function.php"
  4961. ]
  4962. },
  4963. "notification-url": "https://packagist.org/downloads/",
  4964. "license": [
  4965. "MIT"
  4966. ],
  4967. "authors": [
  4968. {
  4969. "name": "Nicolas Grekas",
  4970. "email": "p@tchwork.com"
  4971. },
  4972. {
  4973. "name": "Symfony Community",
  4974. "homepage": "https://symfony.com/contributors"
  4975. }
  4976. ],
  4977. "description": "A generic function and convention to trigger deprecation notices",
  4978. "homepage": "https://symfony.com",
  4979. "support": {
  4980. "source": "https://github.com/symfony/deprecation-contracts/tree/master"
  4981. },
  4982. "funding": [
  4983. {
  4984. "url": "https://symfony.com/sponsor",
  4985. "type": "custom"
  4986. },
  4987. {
  4988. "url": "https://github.com/fabpot",
  4989. "type": "github"
  4990. },
  4991. {
  4992. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4993. "type": "tidelift"
  4994. }
  4995. ],
  4996. "time": "2020-09-07T11:33:47+00:00"
  4997. },
  4998. {
  4999. "name": "symfony/error-handler",
  5000. "version": "v5.2.1",
  5001. "source": {
  5002. "type": "git",
  5003. "url": "https://github.com/symfony/error-handler.git",
  5004. "reference": "59b190ce16ddf32771a22087b60f6dafd3407147"
  5005. },
  5006. "dist": {
  5007. "type": "zip",
  5008. "url": "https://api.github.com/repos/symfony/error-handler/zipball/59b190ce16ddf32771a22087b60f6dafd3407147",
  5009. "reference": "59b190ce16ddf32771a22087b60f6dafd3407147",
  5010. "shasum": ""
  5011. },
  5012. "require": {
  5013. "php": ">=7.2.5",
  5014. "psr/log": "^1.0",
  5015. "symfony/polyfill-php80": "^1.15",
  5016. "symfony/var-dumper": "^4.4|^5.0"
  5017. },
  5018. "require-dev": {
  5019. "symfony/deprecation-contracts": "^2.1",
  5020. "symfony/http-kernel": "^4.4|^5.0",
  5021. "symfony/serializer": "^4.4|^5.0"
  5022. },
  5023. "type": "library",
  5024. "autoload": {
  5025. "psr-4": {
  5026. "Symfony\\Component\\ErrorHandler\\": ""
  5027. },
  5028. "exclude-from-classmap": [
  5029. "/Tests/"
  5030. ]
  5031. },
  5032. "notification-url": "https://packagist.org/downloads/",
  5033. "license": [
  5034. "MIT"
  5035. ],
  5036. "authors": [
  5037. {
  5038. "name": "Fabien Potencier",
  5039. "email": "fabien@symfony.com"
  5040. },
  5041. {
  5042. "name": "Symfony Community",
  5043. "homepage": "https://symfony.com/contributors"
  5044. }
  5045. ],
  5046. "description": "Symfony ErrorHandler Component",
  5047. "homepage": "https://symfony.com",
  5048. "support": {
  5049. "source": "https://github.com/symfony/error-handler/tree/v5.2.1"
  5050. },
  5051. "funding": [
  5052. {
  5053. "url": "https://symfony.com/sponsor",
  5054. "type": "custom"
  5055. },
  5056. {
  5057. "url": "https://github.com/fabpot",
  5058. "type": "github"
  5059. },
  5060. {
  5061. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5062. "type": "tidelift"
  5063. }
  5064. ],
  5065. "time": "2020-12-09T18:54:12+00:00"
  5066. },
  5067. {
  5068. "name": "symfony/event-dispatcher",
  5069. "version": "v5.2.1",
  5070. "source": {
  5071. "type": "git",
  5072. "url": "https://github.com/symfony/event-dispatcher.git",
  5073. "reference": "1c93f7a1dff592c252574c79a8635a8a80856042"
  5074. },
  5075. "dist": {
  5076. "type": "zip",
  5077. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/1c93f7a1dff592c252574c79a8635a8a80856042",
  5078. "reference": "1c93f7a1dff592c252574c79a8635a8a80856042",
  5079. "shasum": ""
  5080. },
  5081. "require": {
  5082. "php": ">=7.2.5",
  5083. "symfony/deprecation-contracts": "^2.1",
  5084. "symfony/event-dispatcher-contracts": "^2",
  5085. "symfony/polyfill-php80": "^1.15"
  5086. },
  5087. "conflict": {
  5088. "symfony/dependency-injection": "<4.4"
  5089. },
  5090. "provide": {
  5091. "psr/event-dispatcher-implementation": "1.0",
  5092. "symfony/event-dispatcher-implementation": "2.0"
  5093. },
  5094. "require-dev": {
  5095. "psr/log": "~1.0",
  5096. "symfony/config": "^4.4|^5.0",
  5097. "symfony/dependency-injection": "^4.4|^5.0",
  5098. "symfony/error-handler": "^4.4|^5.0",
  5099. "symfony/expression-language": "^4.4|^5.0",
  5100. "symfony/http-foundation": "^4.4|^5.0",
  5101. "symfony/service-contracts": "^1.1|^2",
  5102. "symfony/stopwatch": "^4.4|^5.0"
  5103. },
  5104. "suggest": {
  5105. "symfony/dependency-injection": "",
  5106. "symfony/http-kernel": ""
  5107. },
  5108. "type": "library",
  5109. "autoload": {
  5110. "psr-4": {
  5111. "Symfony\\Component\\EventDispatcher\\": ""
  5112. },
  5113. "exclude-from-classmap": [
  5114. "/Tests/"
  5115. ]
  5116. },
  5117. "notification-url": "https://packagist.org/downloads/",
  5118. "license": [
  5119. "MIT"
  5120. ],
  5121. "authors": [
  5122. {
  5123. "name": "Fabien Potencier",
  5124. "email": "fabien@symfony.com"
  5125. },
  5126. {
  5127. "name": "Symfony Community",
  5128. "homepage": "https://symfony.com/contributors"
  5129. }
  5130. ],
  5131. "description": "Symfony EventDispatcher Component",
  5132. "homepage": "https://symfony.com",
  5133. "support": {
  5134. "source": "https://github.com/symfony/event-dispatcher/tree/v5.2.1"
  5135. },
  5136. "funding": [
  5137. {
  5138. "url": "https://symfony.com/sponsor",
  5139. "type": "custom"
  5140. },
  5141. {
  5142. "url": "https://github.com/fabpot",
  5143. "type": "github"
  5144. },
  5145. {
  5146. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5147. "type": "tidelift"
  5148. }
  5149. ],
  5150. "time": "2020-12-18T08:03:05+00:00"
  5151. },
  5152. {
  5153. "name": "symfony/event-dispatcher-contracts",
  5154. "version": "v2.2.0",
  5155. "source": {
  5156. "type": "git",
  5157. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  5158. "reference": "0ba7d54483095a198fa51781bc608d17e84dffa2"
  5159. },
  5160. "dist": {
  5161. "type": "zip",
  5162. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/0ba7d54483095a198fa51781bc608d17e84dffa2",
  5163. "reference": "0ba7d54483095a198fa51781bc608d17e84dffa2",
  5164. "shasum": ""
  5165. },
  5166. "require": {
  5167. "php": ">=7.2.5",
  5168. "psr/event-dispatcher": "^1"
  5169. },
  5170. "suggest": {
  5171. "symfony/event-dispatcher-implementation": ""
  5172. },
  5173. "type": "library",
  5174. "extra": {
  5175. "branch-alias": {
  5176. "dev-master": "2.2-dev"
  5177. },
  5178. "thanks": {
  5179. "name": "symfony/contracts",
  5180. "url": "https://github.com/symfony/contracts"
  5181. }
  5182. },
  5183. "autoload": {
  5184. "psr-4": {
  5185. "Symfony\\Contracts\\EventDispatcher\\": ""
  5186. }
  5187. },
  5188. "notification-url": "https://packagist.org/downloads/",
  5189. "license": [
  5190. "MIT"
  5191. ],
  5192. "authors": [
  5193. {
  5194. "name": "Nicolas Grekas",
  5195. "email": "p@tchwork.com"
  5196. },
  5197. {
  5198. "name": "Symfony Community",
  5199. "homepage": "https://symfony.com/contributors"
  5200. }
  5201. ],
  5202. "description": "Generic abstractions related to dispatching event",
  5203. "homepage": "https://symfony.com",
  5204. "keywords": [
  5205. "abstractions",
  5206. "contracts",
  5207. "decoupling",
  5208. "interfaces",
  5209. "interoperability",
  5210. "standards"
  5211. ],
  5212. "support": {
  5213. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v2.2.0"
  5214. },
  5215. "funding": [
  5216. {
  5217. "url": "https://symfony.com/sponsor",
  5218. "type": "custom"
  5219. },
  5220. {
  5221. "url": "https://github.com/fabpot",
  5222. "type": "github"
  5223. },
  5224. {
  5225. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5226. "type": "tidelift"
  5227. }
  5228. ],
  5229. "time": "2020-09-07T11:33:47+00:00"
  5230. },
  5231. {
  5232. "name": "symfony/finder",
  5233. "version": "v5.2.1",
  5234. "source": {
  5235. "type": "git",
  5236. "url": "https://github.com/symfony/finder.git",
  5237. "reference": "0b9231a5922fd7287ba5b411893c0ecd2733e5ba"
  5238. },
  5239. "dist": {
  5240. "type": "zip",
  5241. "url": "https://api.github.com/repos/symfony/finder/zipball/0b9231a5922fd7287ba5b411893c0ecd2733e5ba",
  5242. "reference": "0b9231a5922fd7287ba5b411893c0ecd2733e5ba",
  5243. "shasum": ""
  5244. },
  5245. "require": {
  5246. "php": ">=7.2.5"
  5247. },
  5248. "type": "library",
  5249. "autoload": {
  5250. "psr-4": {
  5251. "Symfony\\Component\\Finder\\": ""
  5252. },
  5253. "exclude-from-classmap": [
  5254. "/Tests/"
  5255. ]
  5256. },
  5257. "notification-url": "https://packagist.org/downloads/",
  5258. "license": [
  5259. "MIT"
  5260. ],
  5261. "authors": [
  5262. {
  5263. "name": "Fabien Potencier",
  5264. "email": "fabien@symfony.com"
  5265. },
  5266. {
  5267. "name": "Symfony Community",
  5268. "homepage": "https://symfony.com/contributors"
  5269. }
  5270. ],
  5271. "description": "Symfony Finder Component",
  5272. "homepage": "https://symfony.com",
  5273. "support": {
  5274. "source": "https://github.com/symfony/finder/tree/v5.2.1"
  5275. },
  5276. "funding": [
  5277. {
  5278. "url": "https://symfony.com/sponsor",
  5279. "type": "custom"
  5280. },
  5281. {
  5282. "url": "https://github.com/fabpot",
  5283. "type": "github"
  5284. },
  5285. {
  5286. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5287. "type": "tidelift"
  5288. }
  5289. ],
  5290. "time": "2020-12-08T17:02:38+00:00"
  5291. },
  5292. {
  5293. "name": "symfony/http-client-contracts",
  5294. "version": "v2.3.1",
  5295. "source": {
  5296. "type": "git",
  5297. "url": "https://github.com/symfony/http-client-contracts.git",
  5298. "reference": "41db680a15018f9c1d4b23516059633ce280ca33"
  5299. },
  5300. "dist": {
  5301. "type": "zip",
  5302. "url": "https://api.github.com/repos/symfony/http-client-contracts/zipball/41db680a15018f9c1d4b23516059633ce280ca33",
  5303. "reference": "41db680a15018f9c1d4b23516059633ce280ca33",
  5304. "shasum": ""
  5305. },
  5306. "require": {
  5307. "php": ">=7.2.5"
  5308. },
  5309. "suggest": {
  5310. "symfony/http-client-implementation": ""
  5311. },
  5312. "type": "library",
  5313. "extra": {
  5314. "branch-version": "2.3",
  5315. "branch-alias": {
  5316. "dev-main": "2.3-dev"
  5317. },
  5318. "thanks": {
  5319. "name": "symfony/contracts",
  5320. "url": "https://github.com/symfony/contracts"
  5321. }
  5322. },
  5323. "autoload": {
  5324. "psr-4": {
  5325. "Symfony\\Contracts\\HttpClient\\": ""
  5326. }
  5327. },
  5328. "notification-url": "https://packagist.org/downloads/",
  5329. "license": [
  5330. "MIT"
  5331. ],
  5332. "authors": [
  5333. {
  5334. "name": "Nicolas Grekas",
  5335. "email": "p@tchwork.com"
  5336. },
  5337. {
  5338. "name": "Symfony Community",
  5339. "homepage": "https://symfony.com/contributors"
  5340. }
  5341. ],
  5342. "description": "Generic abstractions related to HTTP clients",
  5343. "homepage": "https://symfony.com",
  5344. "keywords": [
  5345. "abstractions",
  5346. "contracts",
  5347. "decoupling",
  5348. "interfaces",
  5349. "interoperability",
  5350. "standards"
  5351. ],
  5352. "support": {
  5353. "source": "https://github.com/symfony/http-client-contracts/tree/v2.3.1"
  5354. },
  5355. "funding": [
  5356. {
  5357. "url": "https://symfony.com/sponsor",
  5358. "type": "custom"
  5359. },
  5360. {
  5361. "url": "https://github.com/fabpot",
  5362. "type": "github"
  5363. },
  5364. {
  5365. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5366. "type": "tidelift"
  5367. }
  5368. ],
  5369. "time": "2020-10-14T17:08:19+00:00"
  5370. },
  5371. {
  5372. "name": "symfony/http-foundation",
  5373. "version": "v5.2.1",
  5374. "source": {
  5375. "type": "git",
  5376. "url": "https://github.com/symfony/http-foundation.git",
  5377. "reference": "a1f6218b29897ab52acba58cfa905b83625bef8d"
  5378. },
  5379. "dist": {
  5380. "type": "zip",
  5381. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/a1f6218b29897ab52acba58cfa905b83625bef8d",
  5382. "reference": "a1f6218b29897ab52acba58cfa905b83625bef8d",
  5383. "shasum": ""
  5384. },
  5385. "require": {
  5386. "php": ">=7.2.5",
  5387. "symfony/deprecation-contracts": "^2.1",
  5388. "symfony/polyfill-mbstring": "~1.1",
  5389. "symfony/polyfill-php80": "^1.15"
  5390. },
  5391. "require-dev": {
  5392. "predis/predis": "~1.0",
  5393. "symfony/cache": "^4.4|^5.0",
  5394. "symfony/expression-language": "^4.4|^5.0",
  5395. "symfony/mime": "^4.4|^5.0"
  5396. },
  5397. "suggest": {
  5398. "symfony/mime": "To use the file extension guesser"
  5399. },
  5400. "type": "library",
  5401. "autoload": {
  5402. "psr-4": {
  5403. "Symfony\\Component\\HttpFoundation\\": ""
  5404. },
  5405. "exclude-from-classmap": [
  5406. "/Tests/"
  5407. ]
  5408. },
  5409. "notification-url": "https://packagist.org/downloads/",
  5410. "license": [
  5411. "MIT"
  5412. ],
  5413. "authors": [
  5414. {
  5415. "name": "Fabien Potencier",
  5416. "email": "fabien@symfony.com"
  5417. },
  5418. {
  5419. "name": "Symfony Community",
  5420. "homepage": "https://symfony.com/contributors"
  5421. }
  5422. ],
  5423. "description": "Symfony HttpFoundation Component",
  5424. "homepage": "https://symfony.com",
  5425. "support": {
  5426. "source": "https://github.com/symfony/http-foundation/tree/v5.2.1"
  5427. },
  5428. "funding": [
  5429. {
  5430. "url": "https://symfony.com/sponsor",
  5431. "type": "custom"
  5432. },
  5433. {
  5434. "url": "https://github.com/fabpot",
  5435. "type": "github"
  5436. },
  5437. {
  5438. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5439. "type": "tidelift"
  5440. }
  5441. ],
  5442. "time": "2020-12-18T10:00:10+00:00"
  5443. },
  5444. {
  5445. "name": "symfony/http-kernel",
  5446. "version": "v5.2.1",
  5447. "source": {
  5448. "type": "git",
  5449. "url": "https://github.com/symfony/http-kernel.git",
  5450. "reference": "1feb619286d819180f7b8bc0dc44f516d9c62647"
  5451. },
  5452. "dist": {
  5453. "type": "zip",
  5454. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/1feb619286d819180f7b8bc0dc44f516d9c62647",
  5455. "reference": "1feb619286d819180f7b8bc0dc44f516d9c62647",
  5456. "shasum": ""
  5457. },
  5458. "require": {
  5459. "php": ">=7.2.5",
  5460. "psr/log": "~1.0",
  5461. "symfony/deprecation-contracts": "^2.1",
  5462. "symfony/error-handler": "^4.4|^5.0",
  5463. "symfony/event-dispatcher": "^5.0",
  5464. "symfony/http-client-contracts": "^1.1|^2",
  5465. "symfony/http-foundation": "^4.4|^5.0",
  5466. "symfony/polyfill-ctype": "^1.8",
  5467. "symfony/polyfill-php73": "^1.9",
  5468. "symfony/polyfill-php80": "^1.15"
  5469. },
  5470. "conflict": {
  5471. "symfony/browser-kit": "<4.4",
  5472. "symfony/cache": "<5.0",
  5473. "symfony/config": "<5.0",
  5474. "symfony/console": "<4.4",
  5475. "symfony/dependency-injection": "<5.1.8",
  5476. "symfony/doctrine-bridge": "<5.0",
  5477. "symfony/form": "<5.0",
  5478. "symfony/http-client": "<5.0",
  5479. "symfony/mailer": "<5.0",
  5480. "symfony/messenger": "<5.0",
  5481. "symfony/translation": "<5.0",
  5482. "symfony/twig-bridge": "<5.0",
  5483. "symfony/validator": "<5.0",
  5484. "twig/twig": "<2.4"
  5485. },
  5486. "provide": {
  5487. "psr/log-implementation": "1.0"
  5488. },
  5489. "require-dev": {
  5490. "psr/cache": "~1.0",
  5491. "symfony/browser-kit": "^4.4|^5.0",
  5492. "symfony/config": "^5.0",
  5493. "symfony/console": "^4.4|^5.0",
  5494. "symfony/css-selector": "^4.4|^5.0",
  5495. "symfony/dependency-injection": "^5.1.8",
  5496. "symfony/dom-crawler": "^4.4|^5.0",
  5497. "symfony/expression-language": "^4.4|^5.0",
  5498. "symfony/finder": "^4.4|^5.0",
  5499. "symfony/process": "^4.4|^5.0",
  5500. "symfony/routing": "^4.4|^5.0",
  5501. "symfony/stopwatch": "^4.4|^5.0",
  5502. "symfony/translation": "^4.4|^5.0",
  5503. "symfony/translation-contracts": "^1.1|^2",
  5504. "twig/twig": "^2.4|^3.0"
  5505. },
  5506. "suggest": {
  5507. "symfony/browser-kit": "",
  5508. "symfony/config": "",
  5509. "symfony/console": "",
  5510. "symfony/dependency-injection": ""
  5511. },
  5512. "type": "library",
  5513. "autoload": {
  5514. "psr-4": {
  5515. "Symfony\\Component\\HttpKernel\\": ""
  5516. },
  5517. "exclude-from-classmap": [
  5518. "/Tests/"
  5519. ]
  5520. },
  5521. "notification-url": "https://packagist.org/downloads/",
  5522. "license": [
  5523. "MIT"
  5524. ],
  5525. "authors": [
  5526. {
  5527. "name": "Fabien Potencier",
  5528. "email": "fabien@symfony.com"
  5529. },
  5530. {
  5531. "name": "Symfony Community",
  5532. "homepage": "https://symfony.com/contributors"
  5533. }
  5534. ],
  5535. "description": "Symfony HttpKernel Component",
  5536. "homepage": "https://symfony.com",
  5537. "support": {
  5538. "source": "https://github.com/symfony/http-kernel/tree/v5.2.1"
  5539. },
  5540. "funding": [
  5541. {
  5542. "url": "https://symfony.com/sponsor",
  5543. "type": "custom"
  5544. },
  5545. {
  5546. "url": "https://github.com/fabpot",
  5547. "type": "github"
  5548. },
  5549. {
  5550. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5551. "type": "tidelift"
  5552. }
  5553. ],
  5554. "time": "2020-12-18T13:49:39+00:00"
  5555. },
  5556. {
  5557. "name": "symfony/mime",
  5558. "version": "v5.2.1",
  5559. "source": {
  5560. "type": "git",
  5561. "url": "https://github.com/symfony/mime.git",
  5562. "reference": "de97005aef7426ba008c46ba840fc301df577ada"
  5563. },
  5564. "dist": {
  5565. "type": "zip",
  5566. "url": "https://api.github.com/repos/symfony/mime/zipball/de97005aef7426ba008c46ba840fc301df577ada",
  5567. "reference": "de97005aef7426ba008c46ba840fc301df577ada",
  5568. "shasum": ""
  5569. },
  5570. "require": {
  5571. "php": ">=7.2.5",
  5572. "symfony/deprecation-contracts": "^2.1",
  5573. "symfony/polyfill-intl-idn": "^1.10",
  5574. "symfony/polyfill-mbstring": "^1.0",
  5575. "symfony/polyfill-php80": "^1.15"
  5576. },
  5577. "conflict": {
  5578. "symfony/mailer": "<4.4"
  5579. },
  5580. "require-dev": {
  5581. "egulias/email-validator": "^2.1.10",
  5582. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  5583. "symfony/dependency-injection": "^4.4|^5.0",
  5584. "symfony/property-access": "^4.4|^5.1",
  5585. "symfony/property-info": "^4.4|^5.1",
  5586. "symfony/serializer": "^5.2"
  5587. },
  5588. "type": "library",
  5589. "autoload": {
  5590. "psr-4": {
  5591. "Symfony\\Component\\Mime\\": ""
  5592. },
  5593. "exclude-from-classmap": [
  5594. "/Tests/"
  5595. ]
  5596. },
  5597. "notification-url": "https://packagist.org/downloads/",
  5598. "license": [
  5599. "MIT"
  5600. ],
  5601. "authors": [
  5602. {
  5603. "name": "Fabien Potencier",
  5604. "email": "fabien@symfony.com"
  5605. },
  5606. {
  5607. "name": "Symfony Community",
  5608. "homepage": "https://symfony.com/contributors"
  5609. }
  5610. ],
  5611. "description": "A library to manipulate MIME messages",
  5612. "homepage": "https://symfony.com",
  5613. "keywords": [
  5614. "mime",
  5615. "mime-type"
  5616. ],
  5617. "support": {
  5618. "source": "https://github.com/symfony/mime/tree/v5.2.1"
  5619. },
  5620. "funding": [
  5621. {
  5622. "url": "https://symfony.com/sponsor",
  5623. "type": "custom"
  5624. },
  5625. {
  5626. "url": "https://github.com/fabpot",
  5627. "type": "github"
  5628. },
  5629. {
  5630. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5631. "type": "tidelift"
  5632. }
  5633. ],
  5634. "time": "2020-12-09T18:54:12+00:00"
  5635. },
  5636. {
  5637. "name": "symfony/polyfill-ctype",
  5638. "version": "v1.22.0",
  5639. "source": {
  5640. "type": "git",
  5641. "url": "https://github.com/symfony/polyfill-ctype.git",
  5642. "reference": "c6c942b1ac76c82448322025e084cadc56048b4e"
  5643. },
  5644. "dist": {
  5645. "type": "zip",
  5646. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/c6c942b1ac76c82448322025e084cadc56048b4e",
  5647. "reference": "c6c942b1ac76c82448322025e084cadc56048b4e",
  5648. "shasum": ""
  5649. },
  5650. "require": {
  5651. "php": ">=7.1"
  5652. },
  5653. "suggest": {
  5654. "ext-ctype": "For best performance"
  5655. },
  5656. "type": "library",
  5657. "extra": {
  5658. "branch-alias": {
  5659. "dev-main": "1.22-dev"
  5660. },
  5661. "thanks": {
  5662. "name": "symfony/polyfill",
  5663. "url": "https://github.com/symfony/polyfill"
  5664. }
  5665. },
  5666. "autoload": {
  5667. "psr-4": {
  5668. "Symfony\\Polyfill\\Ctype\\": ""
  5669. },
  5670. "files": [
  5671. "bootstrap.php"
  5672. ]
  5673. },
  5674. "notification-url": "https://packagist.org/downloads/",
  5675. "license": [
  5676. "MIT"
  5677. ],
  5678. "authors": [
  5679. {
  5680. "name": "Gert de Pagter",
  5681. "email": "BackEndTea@gmail.com"
  5682. },
  5683. {
  5684. "name": "Symfony Community",
  5685. "homepage": "https://symfony.com/contributors"
  5686. }
  5687. ],
  5688. "description": "Symfony polyfill for ctype functions",
  5689. "homepage": "https://symfony.com",
  5690. "keywords": [
  5691. "compatibility",
  5692. "ctype",
  5693. "polyfill",
  5694. "portable"
  5695. ],
  5696. "support": {
  5697. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.22.0"
  5698. },
  5699. "funding": [
  5700. {
  5701. "url": "https://symfony.com/sponsor",
  5702. "type": "custom"
  5703. },
  5704. {
  5705. "url": "https://github.com/fabpot",
  5706. "type": "github"
  5707. },
  5708. {
  5709. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5710. "type": "tidelift"
  5711. }
  5712. ],
  5713. "time": "2021-01-07T16:49:33+00:00"
  5714. },
  5715. {
  5716. "name": "symfony/polyfill-iconv",
  5717. "version": "v1.22.0",
  5718. "source": {
  5719. "type": "git",
  5720. "url": "https://github.com/symfony/polyfill-iconv.git",
  5721. "reference": "b34bfb8c4c22650ac080d2662ae3502e5f2f4ae6"
  5722. },
  5723. "dist": {
  5724. "type": "zip",
  5725. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/b34bfb8c4c22650ac080d2662ae3502e5f2f4ae6",
  5726. "reference": "b34bfb8c4c22650ac080d2662ae3502e5f2f4ae6",
  5727. "shasum": ""
  5728. },
  5729. "require": {
  5730. "php": ">=7.1"
  5731. },
  5732. "suggest": {
  5733. "ext-iconv": "For best performance"
  5734. },
  5735. "type": "library",
  5736. "extra": {
  5737. "branch-alias": {
  5738. "dev-main": "1.22-dev"
  5739. },
  5740. "thanks": {
  5741. "name": "symfony/polyfill",
  5742. "url": "https://github.com/symfony/polyfill"
  5743. }
  5744. },
  5745. "autoload": {
  5746. "psr-4": {
  5747. "Symfony\\Polyfill\\Iconv\\": ""
  5748. },
  5749. "files": [
  5750. "bootstrap.php"
  5751. ]
  5752. },
  5753. "notification-url": "https://packagist.org/downloads/",
  5754. "license": [
  5755. "MIT"
  5756. ],
  5757. "authors": [
  5758. {
  5759. "name": "Nicolas Grekas",
  5760. "email": "p@tchwork.com"
  5761. },
  5762. {
  5763. "name": "Symfony Community",
  5764. "homepage": "https://symfony.com/contributors"
  5765. }
  5766. ],
  5767. "description": "Symfony polyfill for the Iconv extension",
  5768. "homepage": "https://symfony.com",
  5769. "keywords": [
  5770. "compatibility",
  5771. "iconv",
  5772. "polyfill",
  5773. "portable",
  5774. "shim"
  5775. ],
  5776. "support": {
  5777. "source": "https://github.com/symfony/polyfill-iconv/tree/v1.22.0"
  5778. },
  5779. "funding": [
  5780. {
  5781. "url": "https://symfony.com/sponsor",
  5782. "type": "custom"
  5783. },
  5784. {
  5785. "url": "https://github.com/fabpot",
  5786. "type": "github"
  5787. },
  5788. {
  5789. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5790. "type": "tidelift"
  5791. }
  5792. ],
  5793. "time": "2021-01-07T16:49:33+00:00"
  5794. },
  5795. {
  5796. "name": "symfony/polyfill-intl-grapheme",
  5797. "version": "v1.22.0",
  5798. "source": {
  5799. "type": "git",
  5800. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  5801. "reference": "267a9adeb8ecb8071040a740930e077cdfb987af"
  5802. },
  5803. "dist": {
  5804. "type": "zip",
  5805. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/267a9adeb8ecb8071040a740930e077cdfb987af",
  5806. "reference": "267a9adeb8ecb8071040a740930e077cdfb987af",
  5807. "shasum": ""
  5808. },
  5809. "require": {
  5810. "php": ">=7.1"
  5811. },
  5812. "suggest": {
  5813. "ext-intl": "For best performance"
  5814. },
  5815. "type": "library",
  5816. "extra": {
  5817. "branch-alias": {
  5818. "dev-main": "1.22-dev"
  5819. },
  5820. "thanks": {
  5821. "name": "symfony/polyfill",
  5822. "url": "https://github.com/symfony/polyfill"
  5823. }
  5824. },
  5825. "autoload": {
  5826. "psr-4": {
  5827. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  5828. },
  5829. "files": [
  5830. "bootstrap.php"
  5831. ]
  5832. },
  5833. "notification-url": "https://packagist.org/downloads/",
  5834. "license": [
  5835. "MIT"
  5836. ],
  5837. "authors": [
  5838. {
  5839. "name": "Nicolas Grekas",
  5840. "email": "p@tchwork.com"
  5841. },
  5842. {
  5843. "name": "Symfony Community",
  5844. "homepage": "https://symfony.com/contributors"
  5845. }
  5846. ],
  5847. "description": "Symfony polyfill for intl's grapheme_* functions",
  5848. "homepage": "https://symfony.com",
  5849. "keywords": [
  5850. "compatibility",
  5851. "grapheme",
  5852. "intl",
  5853. "polyfill",
  5854. "portable",
  5855. "shim"
  5856. ],
  5857. "support": {
  5858. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.22.0"
  5859. },
  5860. "funding": [
  5861. {
  5862. "url": "https://symfony.com/sponsor",
  5863. "type": "custom"
  5864. },
  5865. {
  5866. "url": "https://github.com/fabpot",
  5867. "type": "github"
  5868. },
  5869. {
  5870. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5871. "type": "tidelift"
  5872. }
  5873. ],
  5874. "time": "2021-01-07T16:49:33+00:00"
  5875. },
  5876. {
  5877. "name": "symfony/polyfill-intl-idn",
  5878. "version": "v1.22.0",
  5879. "source": {
  5880. "type": "git",
  5881. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  5882. "reference": "0eb8293dbbcd6ef6bf81404c9ce7d95bcdf34f44"
  5883. },
  5884. "dist": {
  5885. "type": "zip",
  5886. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/0eb8293dbbcd6ef6bf81404c9ce7d95bcdf34f44",
  5887. "reference": "0eb8293dbbcd6ef6bf81404c9ce7d95bcdf34f44",
  5888. "shasum": ""
  5889. },
  5890. "require": {
  5891. "php": ">=7.1",
  5892. "symfony/polyfill-intl-normalizer": "^1.10",
  5893. "symfony/polyfill-php72": "^1.10"
  5894. },
  5895. "suggest": {
  5896. "ext-intl": "For best performance"
  5897. },
  5898. "type": "library",
  5899. "extra": {
  5900. "branch-alias": {
  5901. "dev-main": "1.22-dev"
  5902. },
  5903. "thanks": {
  5904. "name": "symfony/polyfill",
  5905. "url": "https://github.com/symfony/polyfill"
  5906. }
  5907. },
  5908. "autoload": {
  5909. "psr-4": {
  5910. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  5911. },
  5912. "files": [
  5913. "bootstrap.php"
  5914. ]
  5915. },
  5916. "notification-url": "https://packagist.org/downloads/",
  5917. "license": [
  5918. "MIT"
  5919. ],
  5920. "authors": [
  5921. {
  5922. "name": "Laurent Bassin",
  5923. "email": "laurent@bassin.info"
  5924. },
  5925. {
  5926. "name": "Trevor Rowbotham",
  5927. "email": "trevor.rowbotham@pm.me"
  5928. },
  5929. {
  5930. "name": "Symfony Community",
  5931. "homepage": "https://symfony.com/contributors"
  5932. }
  5933. ],
  5934. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  5935. "homepage": "https://symfony.com",
  5936. "keywords": [
  5937. "compatibility",
  5938. "idn",
  5939. "intl",
  5940. "polyfill",
  5941. "portable",
  5942. "shim"
  5943. ],
  5944. "support": {
  5945. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.22.0"
  5946. },
  5947. "funding": [
  5948. {
  5949. "url": "https://symfony.com/sponsor",
  5950. "type": "custom"
  5951. },
  5952. {
  5953. "url": "https://github.com/fabpot",
  5954. "type": "github"
  5955. },
  5956. {
  5957. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5958. "type": "tidelift"
  5959. }
  5960. ],
  5961. "time": "2021-01-07T16:49:33+00:00"
  5962. },
  5963. {
  5964. "name": "symfony/polyfill-intl-normalizer",
  5965. "version": "v1.22.0",
  5966. "source": {
  5967. "type": "git",
  5968. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  5969. "reference": "6e971c891537eb617a00bb07a43d182a6915faba"
  5970. },
  5971. "dist": {
  5972. "type": "zip",
  5973. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/6e971c891537eb617a00bb07a43d182a6915faba",
  5974. "reference": "6e971c891537eb617a00bb07a43d182a6915faba",
  5975. "shasum": ""
  5976. },
  5977. "require": {
  5978. "php": ">=7.1"
  5979. },
  5980. "suggest": {
  5981. "ext-intl": "For best performance"
  5982. },
  5983. "type": "library",
  5984. "extra": {
  5985. "branch-alias": {
  5986. "dev-main": "1.22-dev"
  5987. },
  5988. "thanks": {
  5989. "name": "symfony/polyfill",
  5990. "url": "https://github.com/symfony/polyfill"
  5991. }
  5992. },
  5993. "autoload": {
  5994. "psr-4": {
  5995. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  5996. },
  5997. "files": [
  5998. "bootstrap.php"
  5999. ],
  6000. "classmap": [
  6001. "Resources/stubs"
  6002. ]
  6003. },
  6004. "notification-url": "https://packagist.org/downloads/",
  6005. "license": [
  6006. "MIT"
  6007. ],
  6008. "authors": [
  6009. {
  6010. "name": "Nicolas Grekas",
  6011. "email": "p@tchwork.com"
  6012. },
  6013. {
  6014. "name": "Symfony Community",
  6015. "homepage": "https://symfony.com/contributors"
  6016. }
  6017. ],
  6018. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  6019. "homepage": "https://symfony.com",
  6020. "keywords": [
  6021. "compatibility",
  6022. "intl",
  6023. "normalizer",
  6024. "polyfill",
  6025. "portable",
  6026. "shim"
  6027. ],
  6028. "support": {
  6029. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.22.0"
  6030. },
  6031. "funding": [
  6032. {
  6033. "url": "https://symfony.com/sponsor",
  6034. "type": "custom"
  6035. },
  6036. {
  6037. "url": "https://github.com/fabpot",
  6038. "type": "github"
  6039. },
  6040. {
  6041. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6042. "type": "tidelift"
  6043. }
  6044. ],
  6045. "time": "2021-01-07T17:09:11+00:00"
  6046. },
  6047. {
  6048. "name": "symfony/polyfill-mbstring",
  6049. "version": "v1.22.0",
  6050. "source": {
  6051. "type": "git",
  6052. "url": "https://github.com/symfony/polyfill-mbstring.git",
  6053. "reference": "f377a3dd1fde44d37b9831d68dc8dea3ffd28e13"
  6054. },
  6055. "dist": {
  6056. "type": "zip",
  6057. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/f377a3dd1fde44d37b9831d68dc8dea3ffd28e13",
  6058. "reference": "f377a3dd1fde44d37b9831d68dc8dea3ffd28e13",
  6059. "shasum": ""
  6060. },
  6061. "require": {
  6062. "php": ">=7.1"
  6063. },
  6064. "suggest": {
  6065. "ext-mbstring": "For best performance"
  6066. },
  6067. "type": "library",
  6068. "extra": {
  6069. "branch-alias": {
  6070. "dev-main": "1.22-dev"
  6071. },
  6072. "thanks": {
  6073. "name": "symfony/polyfill",
  6074. "url": "https://github.com/symfony/polyfill"
  6075. }
  6076. },
  6077. "autoload": {
  6078. "psr-4": {
  6079. "Symfony\\Polyfill\\Mbstring\\": ""
  6080. },
  6081. "files": [
  6082. "bootstrap.php"
  6083. ]
  6084. },
  6085. "notification-url": "https://packagist.org/downloads/",
  6086. "license": [
  6087. "MIT"
  6088. ],
  6089. "authors": [
  6090. {
  6091. "name": "Nicolas Grekas",
  6092. "email": "p@tchwork.com"
  6093. },
  6094. {
  6095. "name": "Symfony Community",
  6096. "homepage": "https://symfony.com/contributors"
  6097. }
  6098. ],
  6099. "description": "Symfony polyfill for the Mbstring extension",
  6100. "homepage": "https://symfony.com",
  6101. "keywords": [
  6102. "compatibility",
  6103. "mbstring",
  6104. "polyfill",
  6105. "portable",
  6106. "shim"
  6107. ],
  6108. "support": {
  6109. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.22.0"
  6110. },
  6111. "funding": [
  6112. {
  6113. "url": "https://symfony.com/sponsor",
  6114. "type": "custom"
  6115. },
  6116. {
  6117. "url": "https://github.com/fabpot",
  6118. "type": "github"
  6119. },
  6120. {
  6121. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6122. "type": "tidelift"
  6123. }
  6124. ],
  6125. "time": "2021-01-07T16:49:33+00:00"
  6126. },
  6127. {
  6128. "name": "symfony/polyfill-php56",
  6129. "version": "v1.20.0",
  6130. "source": {
  6131. "type": "git",
  6132. "url": "https://github.com/symfony/polyfill-php56.git",
  6133. "reference": "54b8cd7e6c1643d78d011f3be89f3ef1f9f4c675"
  6134. },
  6135. "dist": {
  6136. "type": "zip",
  6137. "url": "https://api.github.com/repos/symfony/polyfill-php56/zipball/54b8cd7e6c1643d78d011f3be89f3ef1f9f4c675",
  6138. "reference": "54b8cd7e6c1643d78d011f3be89f3ef1f9f4c675",
  6139. "shasum": ""
  6140. },
  6141. "require": {
  6142. "php": ">=7.1"
  6143. },
  6144. "type": "metapackage",
  6145. "extra": {
  6146. "branch-alias": {
  6147. "dev-main": "1.20-dev"
  6148. },
  6149. "thanks": {
  6150. "name": "symfony/polyfill",
  6151. "url": "https://github.com/symfony/polyfill"
  6152. }
  6153. },
  6154. "notification-url": "https://packagist.org/downloads/",
  6155. "license": [
  6156. "MIT"
  6157. ],
  6158. "authors": [
  6159. {
  6160. "name": "Nicolas Grekas",
  6161. "email": "p@tchwork.com"
  6162. },
  6163. {
  6164. "name": "Symfony Community",
  6165. "homepage": "https://symfony.com/contributors"
  6166. }
  6167. ],
  6168. "description": "Symfony polyfill backporting some PHP 5.6+ features to lower PHP versions",
  6169. "homepage": "https://symfony.com",
  6170. "keywords": [
  6171. "compatibility",
  6172. "polyfill",
  6173. "portable",
  6174. "shim"
  6175. ],
  6176. "support": {
  6177. "source": "https://github.com/symfony/polyfill-php56/tree/v1.20.0"
  6178. },
  6179. "funding": [
  6180. {
  6181. "url": "https://symfony.com/sponsor",
  6182. "type": "custom"
  6183. },
  6184. {
  6185. "url": "https://github.com/fabpot",
  6186. "type": "github"
  6187. },
  6188. {
  6189. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6190. "type": "tidelift"
  6191. }
  6192. ],
  6193. "time": "2020-10-23T14:02:19+00:00"
  6194. },
  6195. {
  6196. "name": "symfony/polyfill-php72",
  6197. "version": "v1.22.0",
  6198. "source": {
  6199. "type": "git",
  6200. "url": "https://github.com/symfony/polyfill-php72.git",
  6201. "reference": "cc6e6f9b39fe8075b3dabfbaf5b5f645ae1340c9"
  6202. },
  6203. "dist": {
  6204. "type": "zip",
  6205. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/cc6e6f9b39fe8075b3dabfbaf5b5f645ae1340c9",
  6206. "reference": "cc6e6f9b39fe8075b3dabfbaf5b5f645ae1340c9",
  6207. "shasum": ""
  6208. },
  6209. "require": {
  6210. "php": ">=7.1"
  6211. },
  6212. "type": "library",
  6213. "extra": {
  6214. "branch-alias": {
  6215. "dev-main": "1.22-dev"
  6216. },
  6217. "thanks": {
  6218. "name": "symfony/polyfill",
  6219. "url": "https://github.com/symfony/polyfill"
  6220. }
  6221. },
  6222. "autoload": {
  6223. "psr-4": {
  6224. "Symfony\\Polyfill\\Php72\\": ""
  6225. },
  6226. "files": [
  6227. "bootstrap.php"
  6228. ]
  6229. },
  6230. "notification-url": "https://packagist.org/downloads/",
  6231. "license": [
  6232. "MIT"
  6233. ],
  6234. "authors": [
  6235. {
  6236. "name": "Nicolas Grekas",
  6237. "email": "p@tchwork.com"
  6238. },
  6239. {
  6240. "name": "Symfony Community",
  6241. "homepage": "https://symfony.com/contributors"
  6242. }
  6243. ],
  6244. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  6245. "homepage": "https://symfony.com",
  6246. "keywords": [
  6247. "compatibility",
  6248. "polyfill",
  6249. "portable",
  6250. "shim"
  6251. ],
  6252. "support": {
  6253. "source": "https://github.com/symfony/polyfill-php72/tree/v1.22.0"
  6254. },
  6255. "funding": [
  6256. {
  6257. "url": "https://symfony.com/sponsor",
  6258. "type": "custom"
  6259. },
  6260. {
  6261. "url": "https://github.com/fabpot",
  6262. "type": "github"
  6263. },
  6264. {
  6265. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6266. "type": "tidelift"
  6267. }
  6268. ],
  6269. "time": "2021-01-07T16:49:33+00:00"
  6270. },
  6271. {
  6272. "name": "symfony/polyfill-php73",
  6273. "version": "v1.22.0",
  6274. "source": {
  6275. "type": "git",
  6276. "url": "https://github.com/symfony/polyfill-php73.git",
  6277. "reference": "a678b42e92f86eca04b7fa4c0f6f19d097fb69e2"
  6278. },
  6279. "dist": {
  6280. "type": "zip",
  6281. "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/a678b42e92f86eca04b7fa4c0f6f19d097fb69e2",
  6282. "reference": "a678b42e92f86eca04b7fa4c0f6f19d097fb69e2",
  6283. "shasum": ""
  6284. },
  6285. "require": {
  6286. "php": ">=7.1"
  6287. },
  6288. "type": "library",
  6289. "extra": {
  6290. "branch-alias": {
  6291. "dev-main": "1.22-dev"
  6292. },
  6293. "thanks": {
  6294. "name": "symfony/polyfill",
  6295. "url": "https://github.com/symfony/polyfill"
  6296. }
  6297. },
  6298. "autoload": {
  6299. "psr-4": {
  6300. "Symfony\\Polyfill\\Php73\\": ""
  6301. },
  6302. "files": [
  6303. "bootstrap.php"
  6304. ],
  6305. "classmap": [
  6306. "Resources/stubs"
  6307. ]
  6308. },
  6309. "notification-url": "https://packagist.org/downloads/",
  6310. "license": [
  6311. "MIT"
  6312. ],
  6313. "authors": [
  6314. {
  6315. "name": "Nicolas Grekas",
  6316. "email": "p@tchwork.com"
  6317. },
  6318. {
  6319. "name": "Symfony Community",
  6320. "homepage": "https://symfony.com/contributors"
  6321. }
  6322. ],
  6323. "description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions",
  6324. "homepage": "https://symfony.com",
  6325. "keywords": [
  6326. "compatibility",
  6327. "polyfill",
  6328. "portable",
  6329. "shim"
  6330. ],
  6331. "support": {
  6332. "source": "https://github.com/symfony/polyfill-php73/tree/v1.22.0"
  6333. },
  6334. "funding": [
  6335. {
  6336. "url": "https://symfony.com/sponsor",
  6337. "type": "custom"
  6338. },
  6339. {
  6340. "url": "https://github.com/fabpot",
  6341. "type": "github"
  6342. },
  6343. {
  6344. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6345. "type": "tidelift"
  6346. }
  6347. ],
  6348. "time": "2021-01-07T16:49:33+00:00"
  6349. },
  6350. {
  6351. "name": "symfony/polyfill-php80",
  6352. "version": "v1.22.0",
  6353. "source": {
  6354. "type": "git",
  6355. "url": "https://github.com/symfony/polyfill-php80.git",
  6356. "reference": "dc3063ba22c2a1fd2f45ed856374d79114998f91"
  6357. },
  6358. "dist": {
  6359. "type": "zip",
  6360. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/dc3063ba22c2a1fd2f45ed856374d79114998f91",
  6361. "reference": "dc3063ba22c2a1fd2f45ed856374d79114998f91",
  6362. "shasum": ""
  6363. },
  6364. "require": {
  6365. "php": ">=7.1"
  6366. },
  6367. "type": "library",
  6368. "extra": {
  6369. "branch-alias": {
  6370. "dev-main": "1.22-dev"
  6371. },
  6372. "thanks": {
  6373. "name": "symfony/polyfill",
  6374. "url": "https://github.com/symfony/polyfill"
  6375. }
  6376. },
  6377. "autoload": {
  6378. "psr-4": {
  6379. "Symfony\\Polyfill\\Php80\\": ""
  6380. },
  6381. "files": [
  6382. "bootstrap.php"
  6383. ],
  6384. "classmap": [
  6385. "Resources/stubs"
  6386. ]
  6387. },
  6388. "notification-url": "https://packagist.org/downloads/",
  6389. "license": [
  6390. "MIT"
  6391. ],
  6392. "authors": [
  6393. {
  6394. "name": "Ion Bazan",
  6395. "email": "ion.bazan@gmail.com"
  6396. },
  6397. {
  6398. "name": "Nicolas Grekas",
  6399. "email": "p@tchwork.com"
  6400. },
  6401. {
  6402. "name": "Symfony Community",
  6403. "homepage": "https://symfony.com/contributors"
  6404. }
  6405. ],
  6406. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  6407. "homepage": "https://symfony.com",
  6408. "keywords": [
  6409. "compatibility",
  6410. "polyfill",
  6411. "portable",
  6412. "shim"
  6413. ],
  6414. "support": {
  6415. "source": "https://github.com/symfony/polyfill-php80/tree/v1.22.0"
  6416. },
  6417. "funding": [
  6418. {
  6419. "url": "https://symfony.com/sponsor",
  6420. "type": "custom"
  6421. },
  6422. {
  6423. "url": "https://github.com/fabpot",
  6424. "type": "github"
  6425. },
  6426. {
  6427. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6428. "type": "tidelift"
  6429. }
  6430. ],
  6431. "time": "2021-01-07T16:49:33+00:00"
  6432. },
  6433. {
  6434. "name": "symfony/process",
  6435. "version": "v5.2.1",
  6436. "source": {
  6437. "type": "git",
  6438. "url": "https://github.com/symfony/process.git",
  6439. "reference": "bd8815b8b6705298beaa384f04fabd459c10bedd"
  6440. },
  6441. "dist": {
  6442. "type": "zip",
  6443. "url": "https://api.github.com/repos/symfony/process/zipball/bd8815b8b6705298beaa384f04fabd459c10bedd",
  6444. "reference": "bd8815b8b6705298beaa384f04fabd459c10bedd",
  6445. "shasum": ""
  6446. },
  6447. "require": {
  6448. "php": ">=7.2.5",
  6449. "symfony/polyfill-php80": "^1.15"
  6450. },
  6451. "type": "library",
  6452. "autoload": {
  6453. "psr-4": {
  6454. "Symfony\\Component\\Process\\": ""
  6455. },
  6456. "exclude-from-classmap": [
  6457. "/Tests/"
  6458. ]
  6459. },
  6460. "notification-url": "https://packagist.org/downloads/",
  6461. "license": [
  6462. "MIT"
  6463. ],
  6464. "authors": [
  6465. {
  6466. "name": "Fabien Potencier",
  6467. "email": "fabien@symfony.com"
  6468. },
  6469. {
  6470. "name": "Symfony Community",
  6471. "homepage": "https://symfony.com/contributors"
  6472. }
  6473. ],
  6474. "description": "Symfony Process Component",
  6475. "homepage": "https://symfony.com",
  6476. "support": {
  6477. "source": "https://github.com/symfony/process/tree/v5.2.1"
  6478. },
  6479. "funding": [
  6480. {
  6481. "url": "https://symfony.com/sponsor",
  6482. "type": "custom"
  6483. },
  6484. {
  6485. "url": "https://github.com/fabpot",
  6486. "type": "github"
  6487. },
  6488. {
  6489. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6490. "type": "tidelift"
  6491. }
  6492. ],
  6493. "time": "2020-12-08T17:03:37+00:00"
  6494. },
  6495. {
  6496. "name": "symfony/routing",
  6497. "version": "v5.2.1",
  6498. "source": {
  6499. "type": "git",
  6500. "url": "https://github.com/symfony/routing.git",
  6501. "reference": "934ac2720dcc878a47a45c986b483a7ee7193620"
  6502. },
  6503. "dist": {
  6504. "type": "zip",
  6505. "url": "https://api.github.com/repos/symfony/routing/zipball/934ac2720dcc878a47a45c986b483a7ee7193620",
  6506. "reference": "934ac2720dcc878a47a45c986b483a7ee7193620",
  6507. "shasum": ""
  6508. },
  6509. "require": {
  6510. "php": ">=7.2.5",
  6511. "symfony/deprecation-contracts": "^2.1",
  6512. "symfony/polyfill-php80": "^1.15"
  6513. },
  6514. "conflict": {
  6515. "symfony/config": "<5.0",
  6516. "symfony/dependency-injection": "<4.4",
  6517. "symfony/yaml": "<4.4"
  6518. },
  6519. "require-dev": {
  6520. "doctrine/annotations": "^1.7",
  6521. "psr/log": "~1.0",
  6522. "symfony/config": "^5.0",
  6523. "symfony/dependency-injection": "^4.4|^5.0",
  6524. "symfony/expression-language": "^4.4|^5.0",
  6525. "symfony/http-foundation": "^4.4|^5.0",
  6526. "symfony/yaml": "^4.4|^5.0"
  6527. },
  6528. "suggest": {
  6529. "doctrine/annotations": "For using the annotation loader",
  6530. "symfony/config": "For using the all-in-one router or any loader",
  6531. "symfony/expression-language": "For using expression matching",
  6532. "symfony/http-foundation": "For using a Symfony Request object",
  6533. "symfony/yaml": "For using the YAML loader"
  6534. },
  6535. "type": "library",
  6536. "autoload": {
  6537. "psr-4": {
  6538. "Symfony\\Component\\Routing\\": ""
  6539. },
  6540. "exclude-from-classmap": [
  6541. "/Tests/"
  6542. ]
  6543. },
  6544. "notification-url": "https://packagist.org/downloads/",
  6545. "license": [
  6546. "MIT"
  6547. ],
  6548. "authors": [
  6549. {
  6550. "name": "Fabien Potencier",
  6551. "email": "fabien@symfony.com"
  6552. },
  6553. {
  6554. "name": "Symfony Community",
  6555. "homepage": "https://symfony.com/contributors"
  6556. }
  6557. ],
  6558. "description": "Symfony Routing Component",
  6559. "homepage": "https://symfony.com",
  6560. "keywords": [
  6561. "router",
  6562. "routing",
  6563. "uri",
  6564. "url"
  6565. ],
  6566. "support": {
  6567. "source": "https://github.com/symfony/routing/tree/v5.2.1"
  6568. },
  6569. "funding": [
  6570. {
  6571. "url": "https://symfony.com/sponsor",
  6572. "type": "custom"
  6573. },
  6574. {
  6575. "url": "https://github.com/fabpot",
  6576. "type": "github"
  6577. },
  6578. {
  6579. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6580. "type": "tidelift"
  6581. }
  6582. ],
  6583. "time": "2020-12-08T17:03:37+00:00"
  6584. },
  6585. {
  6586. "name": "symfony/service-contracts",
  6587. "version": "v2.2.0",
  6588. "source": {
  6589. "type": "git",
  6590. "url": "https://github.com/symfony/service-contracts.git",
  6591. "reference": "d15da7ba4957ffb8f1747218be9e1a121fd298a1"
  6592. },
  6593. "dist": {
  6594. "type": "zip",
  6595. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/d15da7ba4957ffb8f1747218be9e1a121fd298a1",
  6596. "reference": "d15da7ba4957ffb8f1747218be9e1a121fd298a1",
  6597. "shasum": ""
  6598. },
  6599. "require": {
  6600. "php": ">=7.2.5",
  6601. "psr/container": "^1.0"
  6602. },
  6603. "suggest": {
  6604. "symfony/service-implementation": ""
  6605. },
  6606. "type": "library",
  6607. "extra": {
  6608. "branch-alias": {
  6609. "dev-master": "2.2-dev"
  6610. },
  6611. "thanks": {
  6612. "name": "symfony/contracts",
  6613. "url": "https://github.com/symfony/contracts"
  6614. }
  6615. },
  6616. "autoload": {
  6617. "psr-4": {
  6618. "Symfony\\Contracts\\Service\\": ""
  6619. }
  6620. },
  6621. "notification-url": "https://packagist.org/downloads/",
  6622. "license": [
  6623. "MIT"
  6624. ],
  6625. "authors": [
  6626. {
  6627. "name": "Nicolas Grekas",
  6628. "email": "p@tchwork.com"
  6629. },
  6630. {
  6631. "name": "Symfony Community",
  6632. "homepage": "https://symfony.com/contributors"
  6633. }
  6634. ],
  6635. "description": "Generic abstractions related to writing services",
  6636. "homepage": "https://symfony.com",
  6637. "keywords": [
  6638. "abstractions",
  6639. "contracts",
  6640. "decoupling",
  6641. "interfaces",
  6642. "interoperability",
  6643. "standards"
  6644. ],
  6645. "support": {
  6646. "source": "https://github.com/symfony/service-contracts/tree/master"
  6647. },
  6648. "funding": [
  6649. {
  6650. "url": "https://symfony.com/sponsor",
  6651. "type": "custom"
  6652. },
  6653. {
  6654. "url": "https://github.com/fabpot",
  6655. "type": "github"
  6656. },
  6657. {
  6658. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6659. "type": "tidelift"
  6660. }
  6661. ],
  6662. "time": "2020-09-07T11:33:47+00:00"
  6663. },
  6664. {
  6665. "name": "symfony/string",
  6666. "version": "v5.2.1",
  6667. "source": {
  6668. "type": "git",
  6669. "url": "https://github.com/symfony/string.git",
  6670. "reference": "5bd67751d2e3f7d6f770c9154b8fbcb2aa05f7ed"
  6671. },
  6672. "dist": {
  6673. "type": "zip",
  6674. "url": "https://api.github.com/repos/symfony/string/zipball/5bd67751d2e3f7d6f770c9154b8fbcb2aa05f7ed",
  6675. "reference": "5bd67751d2e3f7d6f770c9154b8fbcb2aa05f7ed",
  6676. "shasum": ""
  6677. },
  6678. "require": {
  6679. "php": ">=7.2.5",
  6680. "symfony/polyfill-ctype": "~1.8",
  6681. "symfony/polyfill-intl-grapheme": "~1.0",
  6682. "symfony/polyfill-intl-normalizer": "~1.0",
  6683. "symfony/polyfill-mbstring": "~1.0",
  6684. "symfony/polyfill-php80": "~1.15"
  6685. },
  6686. "require-dev": {
  6687. "symfony/error-handler": "^4.4|^5.0",
  6688. "symfony/http-client": "^4.4|^5.0",
  6689. "symfony/translation-contracts": "^1.1|^2",
  6690. "symfony/var-exporter": "^4.4|^5.0"
  6691. },
  6692. "type": "library",
  6693. "autoload": {
  6694. "psr-4": {
  6695. "Symfony\\Component\\String\\": ""
  6696. },
  6697. "files": [
  6698. "Resources/functions.php"
  6699. ],
  6700. "exclude-from-classmap": [
  6701. "/Tests/"
  6702. ]
  6703. },
  6704. "notification-url": "https://packagist.org/downloads/",
  6705. "license": [
  6706. "MIT"
  6707. ],
  6708. "authors": [
  6709. {
  6710. "name": "Nicolas Grekas",
  6711. "email": "p@tchwork.com"
  6712. },
  6713. {
  6714. "name": "Symfony Community",
  6715. "homepage": "https://symfony.com/contributors"
  6716. }
  6717. ],
  6718. "description": "Symfony String component",
  6719. "homepage": "https://symfony.com",
  6720. "keywords": [
  6721. "grapheme",
  6722. "i18n",
  6723. "string",
  6724. "unicode",
  6725. "utf-8",
  6726. "utf8"
  6727. ],
  6728. "support": {
  6729. "source": "https://github.com/symfony/string/tree/v5.2.1"
  6730. },
  6731. "funding": [
  6732. {
  6733. "url": "https://symfony.com/sponsor",
  6734. "type": "custom"
  6735. },
  6736. {
  6737. "url": "https://github.com/fabpot",
  6738. "type": "github"
  6739. },
  6740. {
  6741. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6742. "type": "tidelift"
  6743. }
  6744. ],
  6745. "time": "2020-12-05T07:33:16+00:00"
  6746. },
  6747. {
  6748. "name": "symfony/translation",
  6749. "version": "v5.2.1",
  6750. "source": {
  6751. "type": "git",
  6752. "url": "https://github.com/symfony/translation.git",
  6753. "reference": "a04209ba0d1391c828e5b2373181dac63c52ee70"
  6754. },
  6755. "dist": {
  6756. "type": "zip",
  6757. "url": "https://api.github.com/repos/symfony/translation/zipball/a04209ba0d1391c828e5b2373181dac63c52ee70",
  6758. "reference": "a04209ba0d1391c828e5b2373181dac63c52ee70",
  6759. "shasum": ""
  6760. },
  6761. "require": {
  6762. "php": ">=7.2.5",
  6763. "symfony/polyfill-mbstring": "~1.0",
  6764. "symfony/polyfill-php80": "^1.15",
  6765. "symfony/translation-contracts": "^2.3"
  6766. },
  6767. "conflict": {
  6768. "symfony/config": "<4.4",
  6769. "symfony/dependency-injection": "<5.0",
  6770. "symfony/http-kernel": "<5.0",
  6771. "symfony/twig-bundle": "<5.0",
  6772. "symfony/yaml": "<4.4"
  6773. },
  6774. "provide": {
  6775. "symfony/translation-implementation": "2.0"
  6776. },
  6777. "require-dev": {
  6778. "psr/log": "~1.0",
  6779. "symfony/config": "^4.4|^5.0",
  6780. "symfony/console": "^4.4|^5.0",
  6781. "symfony/dependency-injection": "^5.0",
  6782. "symfony/finder": "^4.4|^5.0",
  6783. "symfony/http-kernel": "^5.0",
  6784. "symfony/intl": "^4.4|^5.0",
  6785. "symfony/service-contracts": "^1.1.2|^2",
  6786. "symfony/yaml": "^4.4|^5.0"
  6787. },
  6788. "suggest": {
  6789. "psr/log-implementation": "To use logging capability in translator",
  6790. "symfony/config": "",
  6791. "symfony/yaml": ""
  6792. },
  6793. "type": "library",
  6794. "autoload": {
  6795. "files": [
  6796. "Resources/functions.php"
  6797. ],
  6798. "psr-4": {
  6799. "Symfony\\Component\\Translation\\": ""
  6800. },
  6801. "exclude-from-classmap": [
  6802. "/Tests/"
  6803. ]
  6804. },
  6805. "notification-url": "https://packagist.org/downloads/",
  6806. "license": [
  6807. "MIT"
  6808. ],
  6809. "authors": [
  6810. {
  6811. "name": "Fabien Potencier",
  6812. "email": "fabien@symfony.com"
  6813. },
  6814. {
  6815. "name": "Symfony Community",
  6816. "homepage": "https://symfony.com/contributors"
  6817. }
  6818. ],
  6819. "description": "Symfony Translation Component",
  6820. "homepage": "https://symfony.com",
  6821. "support": {
  6822. "source": "https://github.com/symfony/translation/tree/v5.2.1"
  6823. },
  6824. "funding": [
  6825. {
  6826. "url": "https://symfony.com/sponsor",
  6827. "type": "custom"
  6828. },
  6829. {
  6830. "url": "https://github.com/fabpot",
  6831. "type": "github"
  6832. },
  6833. {
  6834. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6835. "type": "tidelift"
  6836. }
  6837. ],
  6838. "time": "2020-12-08T17:03:37+00:00"
  6839. },
  6840. {
  6841. "name": "symfony/translation-contracts",
  6842. "version": "v2.3.0",
  6843. "source": {
  6844. "type": "git",
  6845. "url": "https://github.com/symfony/translation-contracts.git",
  6846. "reference": "e2eaa60b558f26a4b0354e1bbb25636efaaad105"
  6847. },
  6848. "dist": {
  6849. "type": "zip",
  6850. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/e2eaa60b558f26a4b0354e1bbb25636efaaad105",
  6851. "reference": "e2eaa60b558f26a4b0354e1bbb25636efaaad105",
  6852. "shasum": ""
  6853. },
  6854. "require": {
  6855. "php": ">=7.2.5"
  6856. },
  6857. "suggest": {
  6858. "symfony/translation-implementation": ""
  6859. },
  6860. "type": "library",
  6861. "extra": {
  6862. "branch-alias": {
  6863. "dev-master": "2.3-dev"
  6864. },
  6865. "thanks": {
  6866. "name": "symfony/contracts",
  6867. "url": "https://github.com/symfony/contracts"
  6868. }
  6869. },
  6870. "autoload": {
  6871. "psr-4": {
  6872. "Symfony\\Contracts\\Translation\\": ""
  6873. }
  6874. },
  6875. "notification-url": "https://packagist.org/downloads/",
  6876. "license": [
  6877. "MIT"
  6878. ],
  6879. "authors": [
  6880. {
  6881. "name": "Nicolas Grekas",
  6882. "email": "p@tchwork.com"
  6883. },
  6884. {
  6885. "name": "Symfony Community",
  6886. "homepage": "https://symfony.com/contributors"
  6887. }
  6888. ],
  6889. "description": "Generic abstractions related to translation",
  6890. "homepage": "https://symfony.com",
  6891. "keywords": [
  6892. "abstractions",
  6893. "contracts",
  6894. "decoupling",
  6895. "interfaces",
  6896. "interoperability",
  6897. "standards"
  6898. ],
  6899. "support": {
  6900. "source": "https://github.com/symfony/translation-contracts/tree/v2.3.0"
  6901. },
  6902. "funding": [
  6903. {
  6904. "url": "https://symfony.com/sponsor",
  6905. "type": "custom"
  6906. },
  6907. {
  6908. "url": "https://github.com/fabpot",
  6909. "type": "github"
  6910. },
  6911. {
  6912. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6913. "type": "tidelift"
  6914. }
  6915. ],
  6916. "time": "2020-09-28T13:05:58+00:00"
  6917. },
  6918. {
  6919. "name": "symfony/var-dumper",
  6920. "version": "v5.2.1",
  6921. "source": {
  6922. "type": "git",
  6923. "url": "https://github.com/symfony/var-dumper.git",
  6924. "reference": "13e7e882eaa55863faa7c4ad7c60f12f1a8b5089"
  6925. },
  6926. "dist": {
  6927. "type": "zip",
  6928. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/13e7e882eaa55863faa7c4ad7c60f12f1a8b5089",
  6929. "reference": "13e7e882eaa55863faa7c4ad7c60f12f1a8b5089",
  6930. "shasum": ""
  6931. },
  6932. "require": {
  6933. "php": ">=7.2.5",
  6934. "symfony/polyfill-mbstring": "~1.0",
  6935. "symfony/polyfill-php80": "^1.15"
  6936. },
  6937. "conflict": {
  6938. "phpunit/phpunit": "<5.4.3",
  6939. "symfony/console": "<4.4"
  6940. },
  6941. "require-dev": {
  6942. "ext-iconv": "*",
  6943. "symfony/console": "^4.4|^5.0",
  6944. "symfony/process": "^4.4|^5.0",
  6945. "twig/twig": "^2.4|^3.0"
  6946. },
  6947. "suggest": {
  6948. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  6949. "ext-intl": "To show region name in time zone dump",
  6950. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  6951. },
  6952. "bin": [
  6953. "Resources/bin/var-dump-server"
  6954. ],
  6955. "type": "library",
  6956. "autoload": {
  6957. "files": [
  6958. "Resources/functions/dump.php"
  6959. ],
  6960. "psr-4": {
  6961. "Symfony\\Component\\VarDumper\\": ""
  6962. },
  6963. "exclude-from-classmap": [
  6964. "/Tests/"
  6965. ]
  6966. },
  6967. "notification-url": "https://packagist.org/downloads/",
  6968. "license": [
  6969. "MIT"
  6970. ],
  6971. "authors": [
  6972. {
  6973. "name": "Nicolas Grekas",
  6974. "email": "p@tchwork.com"
  6975. },
  6976. {
  6977. "name": "Symfony Community",
  6978. "homepage": "https://symfony.com/contributors"
  6979. }
  6980. ],
  6981. "description": "Symfony mechanism for exploring and dumping PHP variables",
  6982. "homepage": "https://symfony.com",
  6983. "keywords": [
  6984. "debug",
  6985. "dump"
  6986. ],
  6987. "support": {
  6988. "source": "https://github.com/symfony/var-dumper/tree/v5.2.1"
  6989. },
  6990. "funding": [
  6991. {
  6992. "url": "https://symfony.com/sponsor",
  6993. "type": "custom"
  6994. },
  6995. {
  6996. "url": "https://github.com/fabpot",
  6997. "type": "github"
  6998. },
  6999. {
  7000. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7001. "type": "tidelift"
  7002. }
  7003. ],
  7004. "time": "2020-12-16T17:02:19+00:00"
  7005. },
  7006. {
  7007. "name": "symfony/yaml",
  7008. "version": "v5.2.1",
  7009. "source": {
  7010. "type": "git",
  7011. "url": "https://github.com/symfony/yaml.git",
  7012. "reference": "290ea5e03b8cf9b42c783163123f54441fb06939"
  7013. },
  7014. "dist": {
  7015. "type": "zip",
  7016. "url": "https://api.github.com/repos/symfony/yaml/zipball/290ea5e03b8cf9b42c783163123f54441fb06939",
  7017. "reference": "290ea5e03b8cf9b42c783163123f54441fb06939",
  7018. "shasum": ""
  7019. },
  7020. "require": {
  7021. "php": ">=7.2.5",
  7022. "symfony/deprecation-contracts": "^2.1",
  7023. "symfony/polyfill-ctype": "~1.8"
  7024. },
  7025. "conflict": {
  7026. "symfony/console": "<4.4"
  7027. },
  7028. "require-dev": {
  7029. "symfony/console": "^4.4|^5.0"
  7030. },
  7031. "suggest": {
  7032. "symfony/console": "For validating YAML files using the lint command"
  7033. },
  7034. "bin": [
  7035. "Resources/bin/yaml-lint"
  7036. ],
  7037. "type": "library",
  7038. "autoload": {
  7039. "psr-4": {
  7040. "Symfony\\Component\\Yaml\\": ""
  7041. },
  7042. "exclude-from-classmap": [
  7043. "/Tests/"
  7044. ]
  7045. },
  7046. "notification-url": "https://packagist.org/downloads/",
  7047. "license": [
  7048. "MIT"
  7049. ],
  7050. "authors": [
  7051. {
  7052. "name": "Fabien Potencier",
  7053. "email": "fabien@symfony.com"
  7054. },
  7055. {
  7056. "name": "Symfony Community",
  7057. "homepage": "https://symfony.com/contributors"
  7058. }
  7059. ],
  7060. "description": "Symfony Yaml Component",
  7061. "homepage": "https://symfony.com",
  7062. "support": {
  7063. "source": "https://github.com/symfony/yaml/tree/v5.2.1"
  7064. },
  7065. "funding": [
  7066. {
  7067. "url": "https://symfony.com/sponsor",
  7068. "type": "custom"
  7069. },
  7070. {
  7071. "url": "https://github.com/fabpot",
  7072. "type": "github"
  7073. },
  7074. {
  7075. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7076. "type": "tidelift"
  7077. }
  7078. ],
  7079. "time": "2020-12-08T17:02:38+00:00"
  7080. },
  7081. {
  7082. "name": "tijsverkoyen/css-to-inline-styles",
  7083. "version": "2.2.3",
  7084. "source": {
  7085. "type": "git",
  7086. "url": "https://github.com/tijsverkoyen/CssToInlineStyles.git",
  7087. "reference": "b43b05cf43c1b6d849478965062b6ef73e223bb5"
  7088. },
  7089. "dist": {
  7090. "type": "zip",
  7091. "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/b43b05cf43c1b6d849478965062b6ef73e223bb5",
  7092. "reference": "b43b05cf43c1b6d849478965062b6ef73e223bb5",
  7093. "shasum": ""
  7094. },
  7095. "require": {
  7096. "ext-dom": "*",
  7097. "ext-libxml": "*",
  7098. "php": "^5.5 || ^7.0 || ^8.0",
  7099. "symfony/css-selector": "^2.7 || ^3.0 || ^4.0 || ^5.0"
  7100. },
  7101. "require-dev": {
  7102. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0 || ^7.5"
  7103. },
  7104. "type": "library",
  7105. "extra": {
  7106. "branch-alias": {
  7107. "dev-master": "2.2.x-dev"
  7108. }
  7109. },
  7110. "autoload": {
  7111. "psr-4": {
  7112. "TijsVerkoyen\\CssToInlineStyles\\": "src"
  7113. }
  7114. },
  7115. "notification-url": "https://packagist.org/downloads/",
  7116. "license": [
  7117. "BSD-3-Clause"
  7118. ],
  7119. "authors": [
  7120. {
  7121. "name": "Tijs Verkoyen",
  7122. "email": "css_to_inline_styles@verkoyen.eu",
  7123. "role": "Developer"
  7124. }
  7125. ],
  7126. "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.",
  7127. "homepage": "https://github.com/tijsverkoyen/CssToInlineStyles",
  7128. "support": {
  7129. "issues": "https://github.com/tijsverkoyen/CssToInlineStyles/issues",
  7130. "source": "https://github.com/tijsverkoyen/CssToInlineStyles/tree/2.2.3"
  7131. },
  7132. "time": "2020-07-13T06:12:54+00:00"
  7133. },
  7134. {
  7135. "name": "tymon/jwt-auth",
  7136. "version": "1.0.2",
  7137. "source": {
  7138. "type": "git",
  7139. "url": "https://github.com/tymondesigns/jwt-auth.git",
  7140. "reference": "e588cb719539366c0e2f6017f975379cb73e9680"
  7141. },
  7142. "dist": {
  7143. "type": "zip",
  7144. "url": "https://api.github.com/repos/tymondesigns/jwt-auth/zipball/e588cb719539366c0e2f6017f975379cb73e9680",
  7145. "reference": "e588cb719539366c0e2f6017f975379cb73e9680",
  7146. "shasum": ""
  7147. },
  7148. "require": {
  7149. "illuminate/auth": "^5.2|^6|^7|^8",
  7150. "illuminate/contracts": "^5.2|^6|^7|^8",
  7151. "illuminate/http": "^5.2|^6|^7|^8",
  7152. "illuminate/support": "^5.2|^6|^7|^8",
  7153. "lcobucci/jwt": "<3.4",
  7154. "namshi/jose": "^7.0",
  7155. "nesbot/carbon": "^1.0|^2.0",
  7156. "php": "^5.5.9|^7.0"
  7157. },
  7158. "require-dev": {
  7159. "illuminate/console": "^5.2|^6|^7|^8",
  7160. "illuminate/database": "^5.2|^6|^7|^8",
  7161. "illuminate/routing": "^5.2|^6|^7|^8",
  7162. "mockery/mockery": ">=0.9.9",
  7163. "phpunit/phpunit": "~4.8|~6.0"
  7164. },
  7165. "type": "library",
  7166. "extra": {
  7167. "branch-alias": {
  7168. "dev-develop": "1.0-dev"
  7169. },
  7170. "laravel": {
  7171. "aliases": {
  7172. "JWTAuth": "Tymon\\JWTAuth\\Facades\\JWTAuth",
  7173. "JWTFactory": "Tymon\\JWTAuth\\Facades\\JWTFactory"
  7174. },
  7175. "providers": [
  7176. "Tymon\\JWTAuth\\Providers\\LaravelServiceProvider"
  7177. ]
  7178. }
  7179. },
  7180. "autoload": {
  7181. "psr-4": {
  7182. "Tymon\\JWTAuth\\": "src/"
  7183. }
  7184. },
  7185. "notification-url": "https://packagist.org/downloads/",
  7186. "license": [
  7187. "MIT"
  7188. ],
  7189. "authors": [
  7190. {
  7191. "name": "Sean Tymon",
  7192. "email": "tymon148@gmail.com",
  7193. "homepage": "https://tymon.xyz",
  7194. "role": "Developer"
  7195. }
  7196. ],
  7197. "description": "JSON Web Token Authentication for Laravel and Lumen",
  7198. "homepage": "https://github.com/tymondesigns/jwt-auth",
  7199. "keywords": [
  7200. "Authentication",
  7201. "JSON Web Token",
  7202. "auth",
  7203. "jwt",
  7204. "laravel"
  7205. ],
  7206. "support": {
  7207. "issues": "https://github.com/tymondesigns/jwt-auth/issues",
  7208. "source": "https://github.com/tymondesigns/jwt-auth"
  7209. },
  7210. "funding": [
  7211. {
  7212. "url": "https://www.patreon.com/seantymon",
  7213. "type": "patreon"
  7214. }
  7215. ],
  7216. "time": "2020-11-27T12:32:42+00:00"
  7217. },
  7218. {
  7219. "name": "vlucas/phpdotenv",
  7220. "version": "v4.1.8",
  7221. "source": {
  7222. "type": "git",
  7223. "url": "https://github.com/vlucas/phpdotenv.git",
  7224. "reference": "572af79d913627a9d70374d27a6f5d689a35de32"
  7225. },
  7226. "dist": {
  7227. "type": "zip",
  7228. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/572af79d913627a9d70374d27a6f5d689a35de32",
  7229. "reference": "572af79d913627a9d70374d27a6f5d689a35de32",
  7230. "shasum": ""
  7231. },
  7232. "require": {
  7233. "php": "^5.5.9 || ^7.0 || ^8.0",
  7234. "phpoption/phpoption": "^1.7.3",
  7235. "symfony/polyfill-ctype": "^1.17"
  7236. },
  7237. "require-dev": {
  7238. "bamarni/composer-bin-plugin": "^1.4.1",
  7239. "ext-filter": "*",
  7240. "ext-pcre": "*",
  7241. "phpunit/phpunit": "^4.8.35 || ^5.7.27 || ^6.5.6 || ^7.0"
  7242. },
  7243. "suggest": {
  7244. "ext-filter": "Required to use the boolean validator.",
  7245. "ext-pcre": "Required to use most of the library."
  7246. },
  7247. "type": "library",
  7248. "extra": {
  7249. "branch-alias": {
  7250. "dev-master": "4.1-dev"
  7251. }
  7252. },
  7253. "autoload": {
  7254. "psr-4": {
  7255. "Dotenv\\": "src/"
  7256. }
  7257. },
  7258. "notification-url": "https://packagist.org/downloads/",
  7259. "license": [
  7260. "BSD-3-Clause"
  7261. ],
  7262. "authors": [
  7263. {
  7264. "name": "Graham Campbell",
  7265. "email": "graham@alt-three.com",
  7266. "homepage": "https://gjcampbell.co.uk/"
  7267. },
  7268. {
  7269. "name": "Vance Lucas",
  7270. "email": "vance@vancelucas.com",
  7271. "homepage": "https://vancelucas.com/"
  7272. }
  7273. ],
  7274. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  7275. "keywords": [
  7276. "dotenv",
  7277. "env",
  7278. "environment"
  7279. ],
  7280. "support": {
  7281. "issues": "https://github.com/vlucas/phpdotenv/issues",
  7282. "source": "https://github.com/vlucas/phpdotenv/tree/4.1"
  7283. },
  7284. "funding": [
  7285. {
  7286. "url": "https://github.com/GrahamCampbell",
  7287. "type": "github"
  7288. },
  7289. {
  7290. "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
  7291. "type": "tidelift"
  7292. }
  7293. ],
  7294. "time": "2020-07-14T19:22:52+00:00"
  7295. },
  7296. {
  7297. "name": "voku/portable-ascii",
  7298. "version": "1.5.6",
  7299. "source": {
  7300. "type": "git",
  7301. "url": "https://github.com/voku/portable-ascii.git",
  7302. "reference": "80953678b19901e5165c56752d087fc11526017c"
  7303. },
  7304. "dist": {
  7305. "type": "zip",
  7306. "url": "https://api.github.com/repos/voku/portable-ascii/zipball/80953678b19901e5165c56752d087fc11526017c",
  7307. "reference": "80953678b19901e5165c56752d087fc11526017c",
  7308. "shasum": ""
  7309. },
  7310. "require": {
  7311. "php": ">=7.0.0"
  7312. },
  7313. "require-dev": {
  7314. "phpunit/phpunit": "~6.0 || ~7.0 || ~9.0"
  7315. },
  7316. "suggest": {
  7317. "ext-intl": "Use Intl for transliterator_transliterate() support"
  7318. },
  7319. "type": "library",
  7320. "autoload": {
  7321. "psr-4": {
  7322. "voku\\": "src/voku/"
  7323. }
  7324. },
  7325. "notification-url": "https://packagist.org/downloads/",
  7326. "license": [
  7327. "MIT"
  7328. ],
  7329. "authors": [
  7330. {
  7331. "name": "Lars Moelleken",
  7332. "homepage": "http://www.moelleken.org/"
  7333. }
  7334. ],
  7335. "description": "Portable ASCII library - performance optimized (ascii) string functions for php.",
  7336. "homepage": "https://github.com/voku/portable-ascii",
  7337. "keywords": [
  7338. "ascii",
  7339. "clean",
  7340. "php"
  7341. ],
  7342. "support": {
  7343. "issues": "https://github.com/voku/portable-ascii/issues",
  7344. "source": "https://github.com/voku/portable-ascii/tree/1.5.6"
  7345. },
  7346. "funding": [
  7347. {
  7348. "url": "https://www.paypal.me/moelleken",
  7349. "type": "custom"
  7350. },
  7351. {
  7352. "url": "https://github.com/voku",
  7353. "type": "github"
  7354. },
  7355. {
  7356. "url": "https://opencollective.com/portable-ascii",
  7357. "type": "open_collective"
  7358. },
  7359. {
  7360. "url": "https://www.patreon.com/voku",
  7361. "type": "patreon"
  7362. },
  7363. {
  7364. "url": "https://tidelift.com/funding/github/packagist/voku/portable-ascii",
  7365. "type": "tidelift"
  7366. }
  7367. ],
  7368. "time": "2020-11-12T00:07:28+00:00"
  7369. },
  7370. {
  7371. "name": "xhat/payjs",
  7372. "version": "1.5.0",
  7373. "source": {
  7374. "type": "git",
  7375. "url": "https://github.com/xhat/payjs.git",
  7376. "reference": "d15b678f7fb70fc70bafa82c5a7896fceebad364"
  7377. },
  7378. "dist": {
  7379. "type": "zip",
  7380. "url": "https://api.github.com/repos/xhat/payjs/zipball/d15b678f7fb70fc70bafa82c5a7896fceebad364",
  7381. "reference": "d15b678f7fb70fc70bafa82c5a7896fceebad364",
  7382. "shasum": ""
  7383. },
  7384. "type": "library",
  7385. "autoload": {
  7386. "psr-4": {
  7387. "Xhat\\Payjs\\": "src/"
  7388. }
  7389. },
  7390. "notification-url": "https://packagist.org/downloads/",
  7391. "license": [
  7392. "MIT"
  7393. ],
  7394. "authors": [
  7395. {
  7396. "name": "andy",
  7397. "email": "andy@popfeng.com"
  7398. }
  7399. ],
  7400. "description": "本项目是基于 PAYJS 的 API 开发的 Composer Package,可直接用于生产环境 https://payjs.cn",
  7401. "support": {
  7402. "issues": "https://github.com/xhat/payjs/issues",
  7403. "source": "https://github.com/xhat/payjs/tree/1.5.0"
  7404. },
  7405. "funding": [
  7406. {
  7407. "url": "https://payjs.cn/sponsor/dajjxz",
  7408. "type": "custom"
  7409. }
  7410. ],
  7411. "time": "2020-09-11T06:02:42+00:00"
  7412. },
  7413. {
  7414. "name": "zbrettonye/geetest",
  7415. "version": "v1.2.0",
  7416. "source": {
  7417. "type": "git",
  7418. "url": "https://github.com/ZBrettonYe/geetest.git",
  7419. "reference": "ee08e5bee9be831c23df241d3ab75678a8ce5fed"
  7420. },
  7421. "dist": {
  7422. "type": "zip",
  7423. "url": "https://api.github.com/repos/ZBrettonYe/geetest/zipball/ee08e5bee9be831c23df241d3ab75678a8ce5fed",
  7424. "reference": "ee08e5bee9be831c23df241d3ab75678a8ce5fed",
  7425. "shasum": ""
  7426. },
  7427. "require": {
  7428. "ext-json": "*",
  7429. "guzzlehttp/guzzle": "^6.3|^7.0",
  7430. "illuminate/routing": "^6|^7|^8",
  7431. "illuminate/support": "^6|^7|^8",
  7432. "php": "^7.2"
  7433. },
  7434. "require-dev": {
  7435. "mockery/mockery": "^1.3.1",
  7436. "phpunit/phpunit": "^7.5.15|^8.4|^9.0"
  7437. },
  7438. "type": "library",
  7439. "extra": {
  7440. "laravel": {
  7441. "providers": [
  7442. "ZBrettonYe\\Geetest\\GeetestServiceProvider"
  7443. ],
  7444. "aliases": {
  7445. "Geetest": "ZBrettonYe\\Geetest\\Geetest"
  7446. }
  7447. }
  7448. },
  7449. "autoload": {
  7450. "psr-4": {
  7451. "ZBrettonYe\\Geetest\\": "src/"
  7452. }
  7453. },
  7454. "notification-url": "https://packagist.org/downloads/",
  7455. "license": [
  7456. "MIT"
  7457. ],
  7458. "authors": [
  7459. {
  7460. "name": "zbrettonye",
  7461. "email": "monkeyblacktech97@gmail.com"
  7462. }
  7463. ],
  7464. "description": "Geetest Package for Laravel6-8",
  7465. "keywords": [
  7466. "geetest",
  7467. "laravel"
  7468. ],
  7469. "support": {
  7470. "source": "https://github.com/ZBrettonYe/geetest/tree/v1.2.0"
  7471. },
  7472. "time": "2020-10-13T20:15:36+00:00"
  7473. },
  7474. {
  7475. "name": "zbrettonye/hcaptcha",
  7476. "version": "V1.1.0",
  7477. "source": {
  7478. "type": "git",
  7479. "url": "https://github.com/ZBrettonYe/hcaptcha.git",
  7480. "reference": "d84cb1bcf754ada345da8baadf7129dbca67d1ee"
  7481. },
  7482. "dist": {
  7483. "type": "zip",
  7484. "url": "https://api.github.com/repos/ZBrettonYe/hcaptcha/zipball/d84cb1bcf754ada345da8baadf7129dbca67d1ee",
  7485. "reference": "d84cb1bcf754ada345da8baadf7129dbca67d1ee",
  7486. "shasum": ""
  7487. },
  7488. "require": {
  7489. "guzzlehttp/guzzle": "^6.2|^7.0",
  7490. "illuminate/support": "^6|^7|^8",
  7491. "php": "^7.2"
  7492. },
  7493. "require-dev": {
  7494. "phpunit/phpunit": "~4.8"
  7495. },
  7496. "type": "library",
  7497. "extra": {
  7498. "laravel": {
  7499. "providers": [
  7500. "ZBrettonYe\\HCaptcha\\HCaptchaServiceProvider"
  7501. ],
  7502. "aliases": {
  7503. "HCaptcha": "ZBrettonYe\\HCaptcha\\Facades\\HCaptcha"
  7504. }
  7505. }
  7506. },
  7507. "autoload": {
  7508. "psr-4": {
  7509. "ZBrettonYe\\HCaptcha\\": "src/"
  7510. }
  7511. },
  7512. "notification-url": "https://packagist.org/downloads/",
  7513. "license": [
  7514. "MIT"
  7515. ],
  7516. "authors": [
  7517. {
  7518. "name": "zbrettonye",
  7519. "email": "monkeyblacktech97@gmail.com"
  7520. }
  7521. ],
  7522. "description": "hCaptcha For Laravel6~8",
  7523. "keywords": [
  7524. "captcha",
  7525. "hcaptcha",
  7526. "laravel"
  7527. ],
  7528. "support": {
  7529. "source": "https://github.com/ZBrettonYe/hcaptcha/tree/V1.1.0"
  7530. },
  7531. "time": "2020-10-13T21:22:51+00:00"
  7532. },
  7533. {
  7534. "name": "zbrettonye/no-captcha",
  7535. "version": "v1.1.0",
  7536. "source": {
  7537. "type": "git",
  7538. "url": "https://github.com/ZBrettonYe/no-captcha.git",
  7539. "reference": "4cb229bf5fa9f5726eb5a821e9710c5fc8edad28"
  7540. },
  7541. "dist": {
  7542. "type": "zip",
  7543. "url": "https://api.github.com/repos/ZBrettonYe/no-captcha/zipball/4cb229bf5fa9f5726eb5a821e9710c5fc8edad28",
  7544. "reference": "4cb229bf5fa9f5726eb5a821e9710c5fc8edad28",
  7545. "shasum": ""
  7546. },
  7547. "require": {
  7548. "ext-json": "*",
  7549. "guzzlehttp/guzzle": "^6.2|^7.0",
  7550. "illuminate/support": "^6|^7|^8",
  7551. "php": "^7.2"
  7552. },
  7553. "require-dev": {
  7554. "phpunit/phpunit": "~4.8"
  7555. },
  7556. "type": "library",
  7557. "extra": {
  7558. "laravel": {
  7559. "providers": [
  7560. "ZBrettonYe\\NoCaptcha\\NoCaptchaServiceProvider"
  7561. ],
  7562. "aliases": {
  7563. "NoCaptcha": "ZBrettonYe\\NoCaptcha\\Facades\\NoCaptcha"
  7564. }
  7565. }
  7566. },
  7567. "autoload": {
  7568. "psr-4": {
  7569. "ZBrettonYe\\NoCaptcha\\": "src/"
  7570. }
  7571. },
  7572. "notification-url": "https://packagist.org/downloads/",
  7573. "license": [
  7574. "MIT"
  7575. ],
  7576. "authors": [
  7577. {
  7578. "name": "zbrettonye",
  7579. "email": "monkeyblacktech97@gmail.com"
  7580. }
  7581. ],
  7582. "description": "No CAPTCHA reCAPTCHA For Laravel6~8",
  7583. "keywords": [
  7584. "captcha",
  7585. "laravel",
  7586. "no-captcha",
  7587. "recaptcha"
  7588. ],
  7589. "support": {
  7590. "source": "https://github.com/ZBrettonYe/no-captcha/tree/v1.1.0"
  7591. },
  7592. "time": "2020-10-13T21:35:30+00:00"
  7593. },
  7594. {
  7595. "name": "zoujingli/ip2region",
  7596. "version": "v1.0.9",
  7597. "source": {
  7598. "type": "git",
  7599. "url": "https://github.com/zoujingli/ip2region.git",
  7600. "reference": "e48f9122f50dd3b79295e35b4acdd0dcd2608ca8"
  7601. },
  7602. "dist": {
  7603. "type": "zip",
  7604. "url": "https://api.github.com/repos/zoujingli/ip2region/zipball/e48f9122f50dd3b79295e35b4acdd0dcd2608ca8",
  7605. "reference": "e48f9122f50dd3b79295e35b4acdd0dcd2608ca8",
  7606. "shasum": ""
  7607. },
  7608. "require": {
  7609. "php": ">=5.3"
  7610. },
  7611. "type": "library",
  7612. "autoload": {
  7613. "classmap": [
  7614. "Ip2Region.php"
  7615. ]
  7616. },
  7617. "notification-url": "https://packagist.org/downloads/",
  7618. "license": [
  7619. "Apache-2.0"
  7620. ],
  7621. "authors": [
  7622. {
  7623. "name": "Anyon",
  7624. "email": "zoujingli@qq.com",
  7625. "homepage": "http://ctolog.com"
  7626. }
  7627. ],
  7628. "description": "Ip2Region for PHP",
  7629. "homepage": "https://github.com/zoujingli/Ip2Region",
  7630. "keywords": [
  7631. "Ip2Region"
  7632. ],
  7633. "support": {
  7634. "issues": "https://github.com/zoujingli/ip2region/issues",
  7635. "source": "https://github.com/zoujingli/ip2region/tree/v1.0.9"
  7636. },
  7637. "time": "2020-11-06T07:21:55+00:00"
  7638. }
  7639. ],
  7640. "packages-dev": [
  7641. {
  7642. "name": "andrey-helldar/laravel-lang-publisher",
  7643. "version": "v6.2.0",
  7644. "source": {
  7645. "type": "git",
  7646. "url": "https://github.com/andrey-helldar/laravel-lang-publisher.git",
  7647. "reference": "950458ca9d43dbbd0a8ec228a26b670c8f93cf94"
  7648. },
  7649. "dist": {
  7650. "type": "zip",
  7651. "url": "https://api.github.com/repos/andrey-helldar/laravel-lang-publisher/zipball/950458ca9d43dbbd0a8ec228a26b670c8f93cf94",
  7652. "reference": "950458ca9d43dbbd0a8ec228a26b670c8f93cf94",
  7653. "shasum": ""
  7654. },
  7655. "require": {
  7656. "andrey-helldar/pretty-array": "^1.4.2",
  7657. "andrey-helldar/support": "^1.4.1",
  7658. "ext-json": "*",
  7659. "illuminate/console": "^7.0|^8.0",
  7660. "illuminate/support": "^7.0|^8.0",
  7661. "laravel-lang/lang": "^7.0",
  7662. "php": "^7.2.5|^8.0"
  7663. },
  7664. "require-dev": {
  7665. "mockery/mockery": "^1.3.1",
  7666. "orchestra/testbench": "^5.0|^6.0",
  7667. "phpunit/phpunit": "^8.4|^9.0"
  7668. },
  7669. "suggest": {
  7670. "andrey-helldar/lang-translations": "Translation of main messages",
  7671. "laravel/jetstream": "Tailwind scaffolding for the Laravel framework.",
  7672. "symfony/thanks": "Give thanks (in the form of a GitHub) to your fellow PHP package maintainers"
  7673. },
  7674. "type": "library",
  7675. "extra": {
  7676. "laravel": {
  7677. "providers": [
  7678. "Helldar\\LaravelLangPublisher\\ServiceProvider"
  7679. ]
  7680. }
  7681. },
  7682. "autoload": {
  7683. "psr-4": {
  7684. "Helldar\\LaravelLangPublisher\\": "src"
  7685. }
  7686. },
  7687. "notification-url": "https://packagist.org/downloads/",
  7688. "license": [
  7689. "MIT"
  7690. ],
  7691. "authors": [
  7692. {
  7693. "name": "Andrey Helldar",
  7694. "email": "helldar@ai-rus.com"
  7695. }
  7696. ],
  7697. "description": "Publisher lang files for the Laravel Framework + Laravel Jetstream from Laravel-Lang/lang",
  7698. "keywords": [
  7699. "fortify",
  7700. "i18n",
  7701. "jetstream",
  7702. "lang",
  7703. "languages",
  7704. "laravel",
  7705. "locale",
  7706. "localization",
  7707. "lpm",
  7708. "lumen",
  7709. "publisher",
  7710. "trans",
  7711. "translations",
  7712. "validations"
  7713. ],
  7714. "support": {
  7715. "issues": "https://github.com/andrey-helldar/laravel-lang-publisher/issues",
  7716. "source": "https://github.com/andrey-helldar/laravel-lang-publisher"
  7717. },
  7718. "funding": [
  7719. {
  7720. "url": "https://money.yandex.ru/to/410012115955701",
  7721. "type": "custom"
  7722. },
  7723. {
  7724. "url": "https://paypal.me/helldar",
  7725. "type": "custom"
  7726. }
  7727. ],
  7728. "time": "2020-11-30T10:15:29+00:00"
  7729. },
  7730. {
  7731. "name": "andrey-helldar/pretty-array",
  7732. "version": "v1.5.0",
  7733. "source": {
  7734. "type": "git",
  7735. "url": "https://github.com/andrey-helldar/pretty-array.git",
  7736. "reference": "925db552d4f7f9c0a31cbce0f58518260d80e543"
  7737. },
  7738. "dist": {
  7739. "type": "zip",
  7740. "url": "https://api.github.com/repos/andrey-helldar/pretty-array/zipball/925db552d4f7f9c0a31cbce0f58518260d80e543",
  7741. "reference": "925db552d4f7f9c0a31cbce0f58518260d80e543",
  7742. "shasum": ""
  7743. },
  7744. "require": {
  7745. "andrey-helldar/support": "^1.16.0",
  7746. "ext-dom": "*",
  7747. "ext-mbstring": "*",
  7748. "php": "^7.1.3|^8.0"
  7749. },
  7750. "require-dev": {
  7751. "phpstan/phpstan": "^0.12.7",
  7752. "phpunit/phpunit": "^7.0|^8.0"
  7753. },
  7754. "suggest": {
  7755. "symfony/thanks": "Give thanks (in the form of a GitHub) to your fellow PHP package maintainers"
  7756. },
  7757. "type": "library",
  7758. "autoload": {
  7759. "psr-4": {
  7760. "Helldar\\PrettyArray\\": "src/"
  7761. }
  7762. },
  7763. "notification-url": "https://packagist.org/downloads/",
  7764. "license": [
  7765. "MIT"
  7766. ],
  7767. "authors": [
  7768. {
  7769. "name": "Andrey Helldar",
  7770. "email": "helldar@ai-rus.com"
  7771. }
  7772. ],
  7773. "description": "Simple conversion of an array to a pretty view.",
  7774. "keywords": [
  7775. "array",
  7776. "pretty",
  7777. "pretty array"
  7778. ],
  7779. "support": {
  7780. "issues": "https://github.com/andrey-helldar/pretty-array/issues",
  7781. "source": "https://github.com/andrey-helldar/pretty-array"
  7782. },
  7783. "funding": [
  7784. {
  7785. "url": "https://money.yandex.ru/to/410012115955701",
  7786. "type": "custom"
  7787. },
  7788. {
  7789. "url": "https://paypal.me/helldar",
  7790. "type": "custom"
  7791. }
  7792. ],
  7793. "time": "2020-11-30T10:28:20+00:00"
  7794. },
  7795. {
  7796. "name": "andrey-helldar/support",
  7797. "version": "v1.30.3",
  7798. "source": {
  7799. "type": "git",
  7800. "url": "https://github.com/andrey-helldar/support.git",
  7801. "reference": "6278f7ba38fdbfb3a22b602a67620e1133703464"
  7802. },
  7803. "dist": {
  7804. "type": "zip",
  7805. "url": "https://api.github.com/repos/andrey-helldar/support/zipball/6278f7ba38fdbfb3a22b602a67620e1133703464",
  7806. "reference": "6278f7ba38fdbfb3a22b602a67620e1133703464",
  7807. "shasum": ""
  7808. },
  7809. "require": {
  7810. "ext-ctype": "*",
  7811. "ext-dom": "*",
  7812. "ext-json": "*",
  7813. "ext-mbstring": "*",
  7814. "php": "^7.1.3|^8.0",
  7815. "symfony/deprecation-contracts": "^2.0"
  7816. },
  7817. "require-dev": {
  7818. "ext-bcmath": "*",
  7819. "phpunit/phpunit": "^9.0"
  7820. },
  7821. "suggest": {
  7822. "andrey-helldar/laravel-support": "Various helper files for the Laravel and Lumen frameworks",
  7823. "ext-bcmath": "Require the extension if you will be using Helldar\\Support\\Facades\\Digit.",
  7824. "symfony/thanks": "Give thanks (in the form of a GitHub) to your fellow PHP package maintainers"
  7825. },
  7826. "type": "library",
  7827. "extra": {
  7828. "laravel": {
  7829. "providers": [
  7830. "Helldar\\Support\\ServiceProvider"
  7831. ]
  7832. }
  7833. },
  7834. "autoload": {
  7835. "psr-4": {
  7836. "Helldar\\Support\\": "src"
  7837. },
  7838. "files": [
  7839. "src/helpers/digit.php",
  7840. "src/helpers/dumper.php",
  7841. "src/helpers/http.php",
  7842. "src/helpers/strings.php"
  7843. ]
  7844. },
  7845. "notification-url": "https://packagist.org/downloads/",
  7846. "license": [
  7847. "MIT"
  7848. ],
  7849. "authors": [
  7850. {
  7851. "name": "Andrey Helldar",
  7852. "email": "helldar@ai-rus.com"
  7853. }
  7854. ],
  7855. "description": "Support package is a collection of helpers and tools for projects.",
  7856. "keywords": [
  7857. "framework",
  7858. "laravel",
  7859. "support",
  7860. "symfony",
  7861. "yii",
  7862. "yii2"
  7863. ],
  7864. "support": {
  7865. "issues": "https://github.com/andrey-helldar/support/issues",
  7866. "source": "https://github.com/andrey-helldar/support"
  7867. },
  7868. "funding": [
  7869. {
  7870. "url": "https://money.yandex.ru/to/410012115955701",
  7871. "type": "custom"
  7872. },
  7873. {
  7874. "url": "https://paypal.me/helldar",
  7875. "type": "custom"
  7876. }
  7877. ],
  7878. "time": "2020-12-29T18:59:09+00:00"
  7879. },
  7880. {
  7881. "name": "arcanedev/laravel-lang",
  7882. "version": "8.0.0",
  7883. "source": {
  7884. "type": "git",
  7885. "url": "https://github.com/ARCANEDEV/LaravelLang.git",
  7886. "reference": "8b1711a37bbab081973920ad19a729dc0df2ca4b"
  7887. },
  7888. "dist": {
  7889. "type": "zip",
  7890. "url": "https://api.github.com/repos/ARCANEDEV/LaravelLang/zipball/8b1711a37bbab081973920ad19a729dc0df2ca4b",
  7891. "reference": "8b1711a37bbab081973920ad19a729dc0df2ca4b",
  7892. "shasum": ""
  7893. },
  7894. "require": {
  7895. "arcanedev/support": "^7.1.2",
  7896. "caouecs/laravel-lang": "^6.0",
  7897. "php": "^7.2.5"
  7898. },
  7899. "require-dev": {
  7900. "mockery/mockery": "^1.3.1",
  7901. "orchestra/testbench": "^5.0",
  7902. "phpunit/phpunit": "^8.5|^9.0"
  7903. },
  7904. "type": "library",
  7905. "extra": {
  7906. "laravel": {
  7907. "providers": [
  7908. "Arcanedev\\LaravelLang\\LaravelLangServiceProvider",
  7909. "Arcanedev\\LaravelLang\\Providers\\DeferredServicesProvider",
  7910. "Arcanedev\\LaravelLang\\Providers\\TranslationServiceProvider"
  7911. ]
  7912. }
  7913. },
  7914. "autoload": {
  7915. "psr-4": {
  7916. "Arcanedev\\LaravelLang\\": "src/"
  7917. }
  7918. },
  7919. "notification-url": "https://packagist.org/downloads/",
  7920. "license": [
  7921. "MIT"
  7922. ],
  7923. "authors": [
  7924. {
  7925. "name": "ARCANEDEV",
  7926. "email": "arcanedev.maroc@gmail.com",
  7927. "homepage": "https://github.com/arcanedev-maroc",
  7928. "role": "Developer"
  7929. }
  7930. ],
  7931. "description": "Translations manager and checker for Laravel 5 based on 'caouecs/laravel4-lang' package.",
  7932. "homepage": "https://github.com/ARCANEDEV/LaravelLang",
  7933. "keywords": [
  7934. "arcanedev",
  7935. "lang",
  7936. "languages",
  7937. "laravel",
  7938. "localisation",
  7939. "localization",
  7940. "trans",
  7941. "translations",
  7942. "validations"
  7943. ],
  7944. "support": {
  7945. "issues": "https://github.com/ARCANEDEV/LaravelLang/issues",
  7946. "source": "https://github.com/ARCANEDEV/LaravelLang/tree/master"
  7947. },
  7948. "time": "2020-03-21T21:29:29+00:00"
  7949. },
  7950. {
  7951. "name": "arcanedev/support",
  7952. "version": "7.1.2",
  7953. "source": {
  7954. "type": "git",
  7955. "url": "https://github.com/ARCANEDEV/Support.git",
  7956. "reference": "7e4199d30f04c611ba5d895e663f111c217ff5a3"
  7957. },
  7958. "dist": {
  7959. "type": "zip",
  7960. "url": "https://api.github.com/repos/ARCANEDEV/Support/zipball/7e4199d30f04c611ba5d895e663f111c217ff5a3",
  7961. "reference": "7e4199d30f04c611ba5d895e663f111c217ff5a3",
  7962. "shasum": ""
  7963. },
  7964. "require": {
  7965. "illuminate/filesystem": "^7.0",
  7966. "illuminate/support": "^7.0",
  7967. "php": "^7.2.5"
  7968. },
  7969. "require-dev": {
  7970. "orchestra/testbench": "^5.0",
  7971. "phpunit/phpunit": "^8.0|^9.0"
  7972. },
  7973. "type": "library",
  7974. "extra": {
  7975. "branch-alias": {
  7976. "dev-master": "7.x-dev"
  7977. }
  7978. },
  7979. "autoload": {
  7980. "psr-4": {
  7981. "Arcanedev\\Support\\": "src/"
  7982. },
  7983. "files": [
  7984. "helpers.php"
  7985. ]
  7986. },
  7987. "notification-url": "https://packagist.org/downloads/",
  7988. "license": [
  7989. "MIT"
  7990. ],
  7991. "authors": [
  7992. {
  7993. "name": "ARCANEDEV",
  7994. "email": "arcanedev.maroc@gmail.com",
  7995. "homepage": "https://github.com/arcanedev-maroc"
  7996. }
  7997. ],
  7998. "description": "ARCANEDEV Support Helpers",
  7999. "homepage": "https://github.com/ARCANEDEV/Support",
  8000. "keywords": [
  8001. "arcanedev",
  8002. "arcanesoft",
  8003. "laravel",
  8004. "support"
  8005. ],
  8006. "support": {
  8007. "issues": "https://github.com/ARCANEDEV/Support/issues",
  8008. "source": "https://github.com/ARCANEDEV/Support/tree/7.1.2"
  8009. },
  8010. "time": "2020-03-12T09:28:19+00:00"
  8011. },
  8012. {
  8013. "name": "barryvdh/laravel-debugbar",
  8014. "version": "v3.5.2",
  8015. "source": {
  8016. "type": "git",
  8017. "url": "https://github.com/barryvdh/laravel-debugbar.git",
  8018. "reference": "cae0a8d1cb89b0f0522f65e60465e16d738e069b"
  8019. },
  8020. "dist": {
  8021. "type": "zip",
  8022. "url": "https://api.github.com/repos/barryvdh/laravel-debugbar/zipball/cae0a8d1cb89b0f0522f65e60465e16d738e069b",
  8023. "reference": "cae0a8d1cb89b0f0522f65e60465e16d738e069b",
  8024. "shasum": ""
  8025. },
  8026. "require": {
  8027. "illuminate/routing": "^6|^7|^8",
  8028. "illuminate/session": "^6|^7|^8",
  8029. "illuminate/support": "^6|^7|^8",
  8030. "maximebf/debugbar": "^1.16.3",
  8031. "php": ">=7.2",
  8032. "symfony/debug": "^4.3|^5",
  8033. "symfony/finder": "^4.3|^5"
  8034. },
  8035. "require-dev": {
  8036. "mockery/mockery": "^1.3.3",
  8037. "orchestra/testbench-dusk": "^4|^5|^6",
  8038. "phpunit/phpunit": "^8.5|^9.0",
  8039. "squizlabs/php_codesniffer": "^3.5"
  8040. },
  8041. "type": "library",
  8042. "extra": {
  8043. "branch-alias": {
  8044. "dev-master": "3.5-dev"
  8045. },
  8046. "laravel": {
  8047. "providers": [
  8048. "Barryvdh\\Debugbar\\ServiceProvider"
  8049. ],
  8050. "aliases": {
  8051. "Debugbar": "Barryvdh\\Debugbar\\Facade"
  8052. }
  8053. }
  8054. },
  8055. "autoload": {
  8056. "psr-4": {
  8057. "Barryvdh\\Debugbar\\": "src/"
  8058. },
  8059. "files": [
  8060. "src/helpers.php"
  8061. ]
  8062. },
  8063. "notification-url": "https://packagist.org/downloads/",
  8064. "license": [
  8065. "MIT"
  8066. ],
  8067. "authors": [
  8068. {
  8069. "name": "Barry vd. Heuvel",
  8070. "email": "barryvdh@gmail.com"
  8071. }
  8072. ],
  8073. "description": "PHP Debugbar integration for Laravel",
  8074. "keywords": [
  8075. "debug",
  8076. "debugbar",
  8077. "laravel",
  8078. "profiler",
  8079. "webprofiler"
  8080. ],
  8081. "support": {
  8082. "issues": "https://github.com/barryvdh/laravel-debugbar/issues",
  8083. "source": "https://github.com/barryvdh/laravel-debugbar/tree/v3.5.2"
  8084. },
  8085. "funding": [
  8086. {
  8087. "url": "https://github.com/barryvdh",
  8088. "type": "github"
  8089. }
  8090. ],
  8091. "time": "2021-01-06T14:21:44+00:00"
  8092. },
  8093. {
  8094. "name": "barryvdh/laravel-ide-helper",
  8095. "version": "v2.8.2",
  8096. "source": {
  8097. "type": "git",
  8098. "url": "https://github.com/barryvdh/laravel-ide-helper.git",
  8099. "reference": "5515cabea39b9cf55f98980d0f269dc9d85cfcca"
  8100. },
  8101. "dist": {
  8102. "type": "zip",
  8103. "url": "https://api.github.com/repos/barryvdh/laravel-ide-helper/zipball/5515cabea39b9cf55f98980d0f269dc9d85cfcca",
  8104. "reference": "5515cabea39b9cf55f98980d0f269dc9d85cfcca",
  8105. "shasum": ""
  8106. },
  8107. "require": {
  8108. "barryvdh/reflection-docblock": "^2.0.6",
  8109. "composer/composer": "^1.6 || ^2",
  8110. "doctrine/dbal": "~2.3",
  8111. "ext-json": "*",
  8112. "illuminate/console": "^6 || ^7 || ^8",
  8113. "illuminate/filesystem": "^6 || ^7 || ^8",
  8114. "illuminate/support": "^6 || ^7 || ^8",
  8115. "php": ">=7.2",
  8116. "phpdocumentor/type-resolver": "^1.1.0"
  8117. },
  8118. "require-dev": {
  8119. "ext-pdo_sqlite": "*",
  8120. "friendsofphp/php-cs-fixer": "^2",
  8121. "illuminate/config": "^6 || ^7 || ^8",
  8122. "illuminate/view": "^6 || ^7 || ^8",
  8123. "mockery/mockery": "^1.3.3",
  8124. "orchestra/testbench": "^4 || ^5 || ^6",
  8125. "phpunit/phpunit": "^8.5 || ^9",
  8126. "spatie/phpunit-snapshot-assertions": "^1.4 || ^2.2 || ^3 || ^4",
  8127. "vimeo/psalm": "^3.12"
  8128. },
  8129. "type": "library",
  8130. "extra": {
  8131. "branch-alias": {
  8132. "dev-master": "2.8-dev"
  8133. },
  8134. "laravel": {
  8135. "providers": [
  8136. "Barryvdh\\LaravelIdeHelper\\IdeHelperServiceProvider"
  8137. ]
  8138. }
  8139. },
  8140. "autoload": {
  8141. "psr-4": {
  8142. "Barryvdh\\LaravelIdeHelper\\": "src"
  8143. }
  8144. },
  8145. "notification-url": "https://packagist.org/downloads/",
  8146. "license": [
  8147. "MIT"
  8148. ],
  8149. "authors": [
  8150. {
  8151. "name": "Barry vd. Heuvel",
  8152. "email": "barryvdh@gmail.com"
  8153. }
  8154. ],
  8155. "description": "Laravel IDE Helper, generates correct PHPDocs for all Facade classes, to improve auto-completion.",
  8156. "keywords": [
  8157. "autocomplete",
  8158. "codeintel",
  8159. "helper",
  8160. "ide",
  8161. "laravel",
  8162. "netbeans",
  8163. "phpdoc",
  8164. "phpstorm",
  8165. "sublime"
  8166. ],
  8167. "support": {
  8168. "issues": "https://github.com/barryvdh/laravel-ide-helper/issues",
  8169. "source": "https://github.com/barryvdh/laravel-ide-helper/tree/v2.8.2"
  8170. },
  8171. "funding": [
  8172. {
  8173. "url": "https://github.com/barryvdh",
  8174. "type": "github"
  8175. }
  8176. ],
  8177. "time": "2020-12-06T08:55:05+00:00"
  8178. },
  8179. {
  8180. "name": "barryvdh/reflection-docblock",
  8181. "version": "v2.0.6",
  8182. "source": {
  8183. "type": "git",
  8184. "url": "https://github.com/barryvdh/ReflectionDocBlock.git",
  8185. "reference": "6b69015d83d3daf9004a71a89f26e27d27ef6a16"
  8186. },
  8187. "dist": {
  8188. "type": "zip",
  8189. "url": "https://api.github.com/repos/barryvdh/ReflectionDocBlock/zipball/6b69015d83d3daf9004a71a89f26e27d27ef6a16",
  8190. "reference": "6b69015d83d3daf9004a71a89f26e27d27ef6a16",
  8191. "shasum": ""
  8192. },
  8193. "require": {
  8194. "php": ">=5.3.3"
  8195. },
  8196. "require-dev": {
  8197. "phpunit/phpunit": "~4.0,<4.5"
  8198. },
  8199. "suggest": {
  8200. "dflydev/markdown": "~1.0",
  8201. "erusev/parsedown": "~1.0"
  8202. },
  8203. "type": "library",
  8204. "extra": {
  8205. "branch-alias": {
  8206. "dev-master": "2.0.x-dev"
  8207. }
  8208. },
  8209. "autoload": {
  8210. "psr-0": {
  8211. "Barryvdh": [
  8212. "src/"
  8213. ]
  8214. }
  8215. },
  8216. "notification-url": "https://packagist.org/downloads/",
  8217. "license": [
  8218. "MIT"
  8219. ],
  8220. "authors": [
  8221. {
  8222. "name": "Mike van Riel",
  8223. "email": "mike.vanriel@naenius.com"
  8224. }
  8225. ],
  8226. "support": {
  8227. "source": "https://github.com/barryvdh/ReflectionDocBlock/tree/v2.0.6"
  8228. },
  8229. "time": "2018-12-13T10:34:14+00:00"
  8230. },
  8231. {
  8232. "name": "caouecs/laravel-lang",
  8233. "version": "6.1.4",
  8234. "source": {
  8235. "type": "git",
  8236. "url": "https://github.com/caouecs/lang.git",
  8237. "reference": "18a7845e813e737a56a7f164301d5014b536950c"
  8238. },
  8239. "dist": {
  8240. "type": "zip",
  8241. "url": "https://api.github.com/repos/caouecs/lang/zipball/18a7845e813e737a56a7f164301d5014b536950c",
  8242. "reference": "18a7845e813e737a56a7f164301d5014b536950c",
  8243. "shasum": ""
  8244. },
  8245. "require": {
  8246. "ext-json": "*"
  8247. },
  8248. "suggest": {
  8249. "andrey-helldar/laravel-lang-publisher": "Easy installation and update of translation files for your project",
  8250. "arcanedev/laravel-lang": "Translations manager and checker for Laravel 5",
  8251. "overtrue/laravel-lang": "Command to add languages in your project"
  8252. },
  8253. "type": "library",
  8254. "notification-url": "https://packagist.org/downloads/",
  8255. "license": [
  8256. "MIT"
  8257. ],
  8258. "authors": [
  8259. {
  8260. "name": "caouecs",
  8261. "email": "caouecs@caouecs.net"
  8262. }
  8263. ],
  8264. "description": "Languages for Laravel",
  8265. "keywords": [
  8266. "lang",
  8267. "languages",
  8268. "laravel",
  8269. "lpm"
  8270. ],
  8271. "support": {
  8272. "source": "https://github.com/caouecs/lang/tree/6.1.4"
  8273. },
  8274. "abandoned": "https://github.com/Laravel-Lang/lang",
  8275. "time": "2020-07-13T14:35:32+00:00"
  8276. },
  8277. {
  8278. "name": "composer/composer",
  8279. "version": "2.0.8",
  8280. "source": {
  8281. "type": "git",
  8282. "url": "https://github.com/composer/composer.git",
  8283. "reference": "62139b2806178adb979d76bd3437534a1a9fd490"
  8284. },
  8285. "dist": {
  8286. "type": "zip",
  8287. "url": "https://api.github.com/repos/composer/composer/zipball/62139b2806178adb979d76bd3437534a1a9fd490",
  8288. "reference": "62139b2806178adb979d76bd3437534a1a9fd490",
  8289. "shasum": ""
  8290. },
  8291. "require": {
  8292. "composer/ca-bundle": "^1.0",
  8293. "composer/semver": "^3.0",
  8294. "composer/spdx-licenses": "^1.2",
  8295. "composer/xdebug-handler": "^1.1",
  8296. "justinrainbow/json-schema": "^5.2.10",
  8297. "php": "^5.3.2 || ^7.0 || ^8.0",
  8298. "psr/log": "^1.0",
  8299. "react/promise": "^1.2 || ^2.7",
  8300. "seld/jsonlint": "^1.4",
  8301. "seld/phar-utils": "^1.0",
  8302. "symfony/console": "^2.8.52 || ^3.4.35 || ^4.4 || ^5.0",
  8303. "symfony/filesystem": "^2.8.52 || ^3.4.35 || ^4.4 || ^5.0",
  8304. "symfony/finder": "^2.8.52 || ^3.4.35 || ^4.4 || ^5.0",
  8305. "symfony/process": "^2.8.52 || ^3.4.35 || ^4.4 || ^5.0"
  8306. },
  8307. "require-dev": {
  8308. "phpspec/prophecy": "^1.10",
  8309. "symfony/phpunit-bridge": "^4.2 || ^5.0"
  8310. },
  8311. "suggest": {
  8312. "ext-openssl": "Enabling the openssl extension allows you to access https URLs for repositories and packages",
  8313. "ext-zip": "Enabling the zip extension allows you to unzip archives",
  8314. "ext-zlib": "Allow gzip compression of HTTP requests"
  8315. },
  8316. "bin": [
  8317. "bin/composer"
  8318. ],
  8319. "type": "library",
  8320. "extra": {
  8321. "branch-alias": {
  8322. "dev-master": "2.0-dev"
  8323. }
  8324. },
  8325. "autoload": {
  8326. "psr-4": {
  8327. "Composer\\": "src/Composer"
  8328. }
  8329. },
  8330. "notification-url": "https://packagist.org/downloads/",
  8331. "license": [
  8332. "MIT"
  8333. ],
  8334. "authors": [
  8335. {
  8336. "name": "Nils Adermann",
  8337. "email": "naderman@naderman.de",
  8338. "homepage": "https://www.naderman.de"
  8339. },
  8340. {
  8341. "name": "Jordi Boggiano",
  8342. "email": "j.boggiano@seld.be",
  8343. "homepage": "https://seld.be"
  8344. }
  8345. ],
  8346. "description": "Composer helps you declare, manage and install dependencies of PHP projects. It ensures you have the right stack everywhere.",
  8347. "homepage": "https://getcomposer.org/",
  8348. "keywords": [
  8349. "autoload",
  8350. "dependency",
  8351. "package"
  8352. ],
  8353. "support": {
  8354. "irc": "irc://irc.freenode.org/composer",
  8355. "issues": "https://github.com/composer/composer/issues",
  8356. "source": "https://github.com/composer/composer/tree/2.0.8"
  8357. },
  8358. "funding": [
  8359. {
  8360. "url": "https://packagist.com",
  8361. "type": "custom"
  8362. },
  8363. {
  8364. "url": "https://github.com/composer",
  8365. "type": "github"
  8366. },
  8367. {
  8368. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  8369. "type": "tidelift"
  8370. }
  8371. ],
  8372. "time": "2020-12-03T16:20:39+00:00"
  8373. },
  8374. {
  8375. "name": "composer/semver",
  8376. "version": "3.2.4",
  8377. "source": {
  8378. "type": "git",
  8379. "url": "https://github.com/composer/semver.git",
  8380. "reference": "a02fdf930a3c1c3ed3a49b5f63859c0c20e10464"
  8381. },
  8382. "dist": {
  8383. "type": "zip",
  8384. "url": "https://api.github.com/repos/composer/semver/zipball/a02fdf930a3c1c3ed3a49b5f63859c0c20e10464",
  8385. "reference": "a02fdf930a3c1c3ed3a49b5f63859c0c20e10464",
  8386. "shasum": ""
  8387. },
  8388. "require": {
  8389. "php": "^5.3.2 || ^7.0 || ^8.0"
  8390. },
  8391. "require-dev": {
  8392. "phpstan/phpstan": "^0.12.54",
  8393. "symfony/phpunit-bridge": "^4.2 || ^5"
  8394. },
  8395. "type": "library",
  8396. "extra": {
  8397. "branch-alias": {
  8398. "dev-main": "3.x-dev"
  8399. }
  8400. },
  8401. "autoload": {
  8402. "psr-4": {
  8403. "Composer\\Semver\\": "src"
  8404. }
  8405. },
  8406. "notification-url": "https://packagist.org/downloads/",
  8407. "license": [
  8408. "MIT"
  8409. ],
  8410. "authors": [
  8411. {
  8412. "name": "Nils Adermann",
  8413. "email": "naderman@naderman.de",
  8414. "homepage": "http://www.naderman.de"
  8415. },
  8416. {
  8417. "name": "Jordi Boggiano",
  8418. "email": "j.boggiano@seld.be",
  8419. "homepage": "http://seld.be"
  8420. },
  8421. {
  8422. "name": "Rob Bast",
  8423. "email": "rob.bast@gmail.com",
  8424. "homepage": "http://robbast.nl"
  8425. }
  8426. ],
  8427. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  8428. "keywords": [
  8429. "semantic",
  8430. "semver",
  8431. "validation",
  8432. "versioning"
  8433. ],
  8434. "support": {
  8435. "irc": "irc://irc.freenode.org/composer",
  8436. "issues": "https://github.com/composer/semver/issues",
  8437. "source": "https://github.com/composer/semver/tree/3.2.4"
  8438. },
  8439. "funding": [
  8440. {
  8441. "url": "https://packagist.com",
  8442. "type": "custom"
  8443. },
  8444. {
  8445. "url": "https://github.com/composer",
  8446. "type": "github"
  8447. },
  8448. {
  8449. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  8450. "type": "tidelift"
  8451. }
  8452. ],
  8453. "time": "2020-11-13T08:59:24+00:00"
  8454. },
  8455. {
  8456. "name": "composer/spdx-licenses",
  8457. "version": "1.5.5",
  8458. "source": {
  8459. "type": "git",
  8460. "url": "https://github.com/composer/spdx-licenses.git",
  8461. "reference": "de30328a7af8680efdc03e396aad24befd513200"
  8462. },
  8463. "dist": {
  8464. "type": "zip",
  8465. "url": "https://api.github.com/repos/composer/spdx-licenses/zipball/de30328a7af8680efdc03e396aad24befd513200",
  8466. "reference": "de30328a7af8680efdc03e396aad24befd513200",
  8467. "shasum": ""
  8468. },
  8469. "require": {
  8470. "php": "^5.3.2 || ^7.0 || ^8.0"
  8471. },
  8472. "require-dev": {
  8473. "phpunit/phpunit": "^4.8.35 || ^5.7 || 6.5 - 7"
  8474. },
  8475. "type": "library",
  8476. "extra": {
  8477. "branch-alias": {
  8478. "dev-main": "1.x-dev"
  8479. }
  8480. },
  8481. "autoload": {
  8482. "psr-4": {
  8483. "Composer\\Spdx\\": "src"
  8484. }
  8485. },
  8486. "notification-url": "https://packagist.org/downloads/",
  8487. "license": [
  8488. "MIT"
  8489. ],
  8490. "authors": [
  8491. {
  8492. "name": "Nils Adermann",
  8493. "email": "naderman@naderman.de",
  8494. "homepage": "http://www.naderman.de"
  8495. },
  8496. {
  8497. "name": "Jordi Boggiano",
  8498. "email": "j.boggiano@seld.be",
  8499. "homepage": "http://seld.be"
  8500. },
  8501. {
  8502. "name": "Rob Bast",
  8503. "email": "rob.bast@gmail.com",
  8504. "homepage": "http://robbast.nl"
  8505. }
  8506. ],
  8507. "description": "SPDX licenses list and validation library.",
  8508. "keywords": [
  8509. "license",
  8510. "spdx",
  8511. "validator"
  8512. ],
  8513. "support": {
  8514. "irc": "irc://irc.freenode.org/composer",
  8515. "issues": "https://github.com/composer/spdx-licenses/issues",
  8516. "source": "https://github.com/composer/spdx-licenses/tree/1.5.5"
  8517. },
  8518. "funding": [
  8519. {
  8520. "url": "https://packagist.com",
  8521. "type": "custom"
  8522. },
  8523. {
  8524. "url": "https://github.com/composer",
  8525. "type": "github"
  8526. },
  8527. {
  8528. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  8529. "type": "tidelift"
  8530. }
  8531. ],
  8532. "time": "2020-12-03T16:04:16+00:00"
  8533. },
  8534. {
  8535. "name": "composer/xdebug-handler",
  8536. "version": "1.4.5",
  8537. "source": {
  8538. "type": "git",
  8539. "url": "https://github.com/composer/xdebug-handler.git",
  8540. "reference": "f28d44c286812c714741478d968104c5e604a1d4"
  8541. },
  8542. "dist": {
  8543. "type": "zip",
  8544. "url": "https://api.github.com/repos/composer/xdebug-handler/zipball/f28d44c286812c714741478d968104c5e604a1d4",
  8545. "reference": "f28d44c286812c714741478d968104c5e604a1d4",
  8546. "shasum": ""
  8547. },
  8548. "require": {
  8549. "php": "^5.3.2 || ^7.0 || ^8.0",
  8550. "psr/log": "^1.0"
  8551. },
  8552. "require-dev": {
  8553. "phpunit/phpunit": "^4.8.35 || ^5.7 || 6.5 - 8"
  8554. },
  8555. "type": "library",
  8556. "autoload": {
  8557. "psr-4": {
  8558. "Composer\\XdebugHandler\\": "src"
  8559. }
  8560. },
  8561. "notification-url": "https://packagist.org/downloads/",
  8562. "license": [
  8563. "MIT"
  8564. ],
  8565. "authors": [
  8566. {
  8567. "name": "John Stevenson",
  8568. "email": "john-stevenson@blueyonder.co.uk"
  8569. }
  8570. ],
  8571. "description": "Restarts a process without Xdebug.",
  8572. "keywords": [
  8573. "Xdebug",
  8574. "performance"
  8575. ],
  8576. "support": {
  8577. "irc": "irc://irc.freenode.org/composer",
  8578. "issues": "https://github.com/composer/xdebug-handler/issues",
  8579. "source": "https://github.com/composer/xdebug-handler/tree/1.4.5"
  8580. },
  8581. "funding": [
  8582. {
  8583. "url": "https://packagist.com",
  8584. "type": "custom"
  8585. },
  8586. {
  8587. "url": "https://github.com/composer",
  8588. "type": "github"
  8589. },
  8590. {
  8591. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  8592. "type": "tidelift"
  8593. }
  8594. ],
  8595. "time": "2020-11-13T08:04:11+00:00"
  8596. },
  8597. {
  8598. "name": "doctrine/instantiator",
  8599. "version": "1.4.0",
  8600. "source": {
  8601. "type": "git",
  8602. "url": "https://github.com/doctrine/instantiator.git",
  8603. "reference": "d56bf6102915de5702778fe20f2de3b2fe570b5b"
  8604. },
  8605. "dist": {
  8606. "type": "zip",
  8607. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/d56bf6102915de5702778fe20f2de3b2fe570b5b",
  8608. "reference": "d56bf6102915de5702778fe20f2de3b2fe570b5b",
  8609. "shasum": ""
  8610. },
  8611. "require": {
  8612. "php": "^7.1 || ^8.0"
  8613. },
  8614. "require-dev": {
  8615. "doctrine/coding-standard": "^8.0",
  8616. "ext-pdo": "*",
  8617. "ext-phar": "*",
  8618. "phpbench/phpbench": "^0.13 || 1.0.0-alpha2",
  8619. "phpstan/phpstan": "^0.12",
  8620. "phpstan/phpstan-phpunit": "^0.12",
  8621. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0"
  8622. },
  8623. "type": "library",
  8624. "autoload": {
  8625. "psr-4": {
  8626. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  8627. }
  8628. },
  8629. "notification-url": "https://packagist.org/downloads/",
  8630. "license": [
  8631. "MIT"
  8632. ],
  8633. "authors": [
  8634. {
  8635. "name": "Marco Pivetta",
  8636. "email": "ocramius@gmail.com",
  8637. "homepage": "https://ocramius.github.io/"
  8638. }
  8639. ],
  8640. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  8641. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  8642. "keywords": [
  8643. "constructor",
  8644. "instantiate"
  8645. ],
  8646. "support": {
  8647. "issues": "https://github.com/doctrine/instantiator/issues",
  8648. "source": "https://github.com/doctrine/instantiator/tree/1.4.0"
  8649. },
  8650. "funding": [
  8651. {
  8652. "url": "https://www.doctrine-project.org/sponsorship.html",
  8653. "type": "custom"
  8654. },
  8655. {
  8656. "url": "https://www.patreon.com/phpdoctrine",
  8657. "type": "patreon"
  8658. },
  8659. {
  8660. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
  8661. "type": "tidelift"
  8662. }
  8663. ],
  8664. "time": "2020-11-10T18:47:58+00:00"
  8665. },
  8666. {
  8667. "name": "facade/flare-client-php",
  8668. "version": "1.3.7",
  8669. "source": {
  8670. "type": "git",
  8671. "url": "https://github.com/facade/flare-client-php.git",
  8672. "reference": "fd688d3c06658f2b3b5f7bb19f051ee4ddf02492"
  8673. },
  8674. "dist": {
  8675. "type": "zip",
  8676. "url": "https://api.github.com/repos/facade/flare-client-php/zipball/fd688d3c06658f2b3b5f7bb19f051ee4ddf02492",
  8677. "reference": "fd688d3c06658f2b3b5f7bb19f051ee4ddf02492",
  8678. "shasum": ""
  8679. },
  8680. "require": {
  8681. "facade/ignition-contracts": "~1.0",
  8682. "illuminate/pipeline": "^5.5|^6.0|^7.0|^8.0",
  8683. "php": "^7.1|^8.0",
  8684. "symfony/http-foundation": "^3.3|^4.1|^5.0",
  8685. "symfony/mime": "^3.4|^4.0|^5.1",
  8686. "symfony/var-dumper": "^3.4|^4.0|^5.0"
  8687. },
  8688. "require-dev": {
  8689. "friendsofphp/php-cs-fixer": "^2.14",
  8690. "phpunit/phpunit": "^7.5.16",
  8691. "spatie/phpunit-snapshot-assertions": "^2.0"
  8692. },
  8693. "type": "library",
  8694. "extra": {
  8695. "branch-alias": {
  8696. "dev-master": "1.0-dev"
  8697. }
  8698. },
  8699. "autoload": {
  8700. "psr-4": {
  8701. "Facade\\FlareClient\\": "src"
  8702. },
  8703. "files": [
  8704. "src/helpers.php"
  8705. ]
  8706. },
  8707. "notification-url": "https://packagist.org/downloads/",
  8708. "license": [
  8709. "MIT"
  8710. ],
  8711. "description": "Send PHP errors to Flare",
  8712. "homepage": "https://github.com/facade/flare-client-php",
  8713. "keywords": [
  8714. "exception",
  8715. "facade",
  8716. "flare",
  8717. "reporting"
  8718. ],
  8719. "support": {
  8720. "issues": "https://github.com/facade/flare-client-php/issues",
  8721. "source": "https://github.com/facade/flare-client-php/tree/1.3.7"
  8722. },
  8723. "funding": [
  8724. {
  8725. "url": "https://github.com/spatie",
  8726. "type": "github"
  8727. }
  8728. ],
  8729. "time": "2020-10-21T16:02:39+00:00"
  8730. },
  8731. {
  8732. "name": "facade/ignition",
  8733. "version": "2.5.8",
  8734. "source": {
  8735. "type": "git",
  8736. "url": "https://github.com/facade/ignition.git",
  8737. "reference": "8e907d81244649c5ea746e2ec30c32c5f59df472"
  8738. },
  8739. "dist": {
  8740. "type": "zip",
  8741. "url": "https://api.github.com/repos/facade/ignition/zipball/8e907d81244649c5ea746e2ec30c32c5f59df472",
  8742. "reference": "8e907d81244649c5ea746e2ec30c32c5f59df472",
  8743. "shasum": ""
  8744. },
  8745. "require": {
  8746. "ext-json": "*",
  8747. "ext-mbstring": "*",
  8748. "facade/flare-client-php": "^1.3.7",
  8749. "facade/ignition-contracts": "^1.0.2",
  8750. "filp/whoops": "^2.4",
  8751. "illuminate/support": "^7.0|^8.0",
  8752. "monolog/monolog": "^2.0",
  8753. "php": "^7.2.5|^8.0",
  8754. "symfony/console": "^5.0",
  8755. "symfony/var-dumper": "^5.0"
  8756. },
  8757. "require-dev": {
  8758. "friendsofphp/php-cs-fixer": "^2.14",
  8759. "mockery/mockery": "^1.3",
  8760. "orchestra/testbench": "^5.0|^6.0",
  8761. "psalm/plugin-laravel": "^1.2"
  8762. },
  8763. "suggest": {
  8764. "laravel/telescope": "^3.1"
  8765. },
  8766. "type": "library",
  8767. "extra": {
  8768. "branch-alias": {
  8769. "dev-master": "2.x-dev"
  8770. },
  8771. "laravel": {
  8772. "providers": [
  8773. "Facade\\Ignition\\IgnitionServiceProvider"
  8774. ],
  8775. "aliases": {
  8776. "Flare": "Facade\\Ignition\\Facades\\Flare"
  8777. }
  8778. }
  8779. },
  8780. "autoload": {
  8781. "psr-4": {
  8782. "Facade\\Ignition\\": "src"
  8783. },
  8784. "files": [
  8785. "src/helpers.php"
  8786. ]
  8787. },
  8788. "notification-url": "https://packagist.org/downloads/",
  8789. "license": [
  8790. "MIT"
  8791. ],
  8792. "description": "A beautiful error page for Laravel applications.",
  8793. "homepage": "https://github.com/facade/ignition",
  8794. "keywords": [
  8795. "error",
  8796. "flare",
  8797. "laravel",
  8798. "page"
  8799. ],
  8800. "support": {
  8801. "docs": "https://flareapp.io/docs/ignition-for-laravel/introduction",
  8802. "forum": "https://twitter.com/flareappio",
  8803. "issues": "https://github.com/facade/ignition/issues",
  8804. "source": "https://github.com/facade/ignition"
  8805. },
  8806. "time": "2020-12-29T09:12:55+00:00"
  8807. },
  8808. {
  8809. "name": "facade/ignition-contracts",
  8810. "version": "1.0.2",
  8811. "source": {
  8812. "type": "git",
  8813. "url": "https://github.com/facade/ignition-contracts.git",
  8814. "reference": "3c921a1cdba35b68a7f0ccffc6dffc1995b18267"
  8815. },
  8816. "dist": {
  8817. "type": "zip",
  8818. "url": "https://api.github.com/repos/facade/ignition-contracts/zipball/3c921a1cdba35b68a7f0ccffc6dffc1995b18267",
  8819. "reference": "3c921a1cdba35b68a7f0ccffc6dffc1995b18267",
  8820. "shasum": ""
  8821. },
  8822. "require": {
  8823. "php": "^7.3|^8.0"
  8824. },
  8825. "require-dev": {
  8826. "friendsofphp/php-cs-fixer": "^v2.15.8",
  8827. "phpunit/phpunit": "^9.3.11",
  8828. "vimeo/psalm": "^3.17.1"
  8829. },
  8830. "type": "library",
  8831. "autoload": {
  8832. "psr-4": {
  8833. "Facade\\IgnitionContracts\\": "src"
  8834. }
  8835. },
  8836. "notification-url": "https://packagist.org/downloads/",
  8837. "license": [
  8838. "MIT"
  8839. ],
  8840. "authors": [
  8841. {
  8842. "name": "Freek Van der Herten",
  8843. "email": "freek@spatie.be",
  8844. "homepage": "https://flareapp.io",
  8845. "role": "Developer"
  8846. }
  8847. ],
  8848. "description": "Solution contracts for Ignition",
  8849. "homepage": "https://github.com/facade/ignition-contracts",
  8850. "keywords": [
  8851. "contracts",
  8852. "flare",
  8853. "ignition"
  8854. ],
  8855. "support": {
  8856. "issues": "https://github.com/facade/ignition-contracts/issues",
  8857. "source": "https://github.com/facade/ignition-contracts/tree/1.0.2"
  8858. },
  8859. "time": "2020-10-16T08:27:54+00:00"
  8860. },
  8861. {
  8862. "name": "fakerphp/faker",
  8863. "version": "v1.13.0",
  8864. "source": {
  8865. "type": "git",
  8866. "url": "https://github.com/FakerPHP/Faker.git",
  8867. "reference": "ab3f5364d01f2c2c16113442fb987d26e4004913"
  8868. },
  8869. "dist": {
  8870. "type": "zip",
  8871. "url": "https://api.github.com/repos/FakerPHP/Faker/zipball/ab3f5364d01f2c2c16113442fb987d26e4004913",
  8872. "reference": "ab3f5364d01f2c2c16113442fb987d26e4004913",
  8873. "shasum": ""
  8874. },
  8875. "require": {
  8876. "php": "^7.1 || ^8.0"
  8877. },
  8878. "conflict": {
  8879. "fzaninotto/faker": "*"
  8880. },
  8881. "require-dev": {
  8882. "bamarni/composer-bin-plugin": "^1.4.1",
  8883. "ext-intl": "*",
  8884. "phpunit/phpunit": "^7.5.20 || ^8.5.8 || ^9.4.2"
  8885. },
  8886. "type": "library",
  8887. "autoload": {
  8888. "psr-4": {
  8889. "Faker\\": "src/Faker/"
  8890. }
  8891. },
  8892. "notification-url": "https://packagist.org/downloads/",
  8893. "license": [
  8894. "MIT"
  8895. ],
  8896. "authors": [
  8897. {
  8898. "name": "François Zaninotto"
  8899. }
  8900. ],
  8901. "description": "Faker is a PHP library that generates fake data for you.",
  8902. "keywords": [
  8903. "data",
  8904. "faker",
  8905. "fixtures"
  8906. ],
  8907. "support": {
  8908. "issues": "https://github.com/FakerPHP/Faker/issues",
  8909. "source": "https://github.com/FakerPHP/Faker/tree/v1.13.0"
  8910. },
  8911. "time": "2020-12-18T16:50:48+00:00"
  8912. },
  8913. {
  8914. "name": "filp/whoops",
  8915. "version": "2.9.1",
  8916. "source": {
  8917. "type": "git",
  8918. "url": "https://github.com/filp/whoops.git",
  8919. "reference": "307fb34a5ab697461ec4c9db865b20ff2fd40771"
  8920. },
  8921. "dist": {
  8922. "type": "zip",
  8923. "url": "https://api.github.com/repos/filp/whoops/zipball/307fb34a5ab697461ec4c9db865b20ff2fd40771",
  8924. "reference": "307fb34a5ab697461ec4c9db865b20ff2fd40771",
  8925. "shasum": ""
  8926. },
  8927. "require": {
  8928. "php": "^5.5.9 || ^7.0 || ^8.0",
  8929. "psr/log": "^1.0.1"
  8930. },
  8931. "require-dev": {
  8932. "mockery/mockery": "^0.9 || ^1.0",
  8933. "phpunit/phpunit": "^4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.3",
  8934. "symfony/var-dumper": "^2.6 || ^3.0 || ^4.0 || ^5.0"
  8935. },
  8936. "suggest": {
  8937. "symfony/var-dumper": "Pretty print complex values better with var-dumper available",
  8938. "whoops/soap": "Formats errors as SOAP responses"
  8939. },
  8940. "type": "library",
  8941. "extra": {
  8942. "branch-alias": {
  8943. "dev-master": "2.7-dev"
  8944. }
  8945. },
  8946. "autoload": {
  8947. "psr-4": {
  8948. "Whoops\\": "src/Whoops/"
  8949. }
  8950. },
  8951. "notification-url": "https://packagist.org/downloads/",
  8952. "license": [
  8953. "MIT"
  8954. ],
  8955. "authors": [
  8956. {
  8957. "name": "Filipe Dobreira",
  8958. "homepage": "https://github.com/filp",
  8959. "role": "Developer"
  8960. }
  8961. ],
  8962. "description": "php error handling for cool kids",
  8963. "homepage": "https://filp.github.io/whoops/",
  8964. "keywords": [
  8965. "error",
  8966. "exception",
  8967. "handling",
  8968. "library",
  8969. "throwable",
  8970. "whoops"
  8971. ],
  8972. "support": {
  8973. "issues": "https://github.com/filp/whoops/issues",
  8974. "source": "https://github.com/filp/whoops/tree/2.9.1"
  8975. },
  8976. "time": "2020-11-01T12:00:00+00:00"
  8977. },
  8978. {
  8979. "name": "hamcrest/hamcrest-php",
  8980. "version": "v2.0.1",
  8981. "source": {
  8982. "type": "git",
  8983. "url": "https://github.com/hamcrest/hamcrest-php.git",
  8984. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3"
  8985. },
  8986. "dist": {
  8987. "type": "zip",
  8988. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  8989. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  8990. "shasum": ""
  8991. },
  8992. "require": {
  8993. "php": "^5.3|^7.0|^8.0"
  8994. },
  8995. "replace": {
  8996. "cordoval/hamcrest-php": "*",
  8997. "davedevelopment/hamcrest-php": "*",
  8998. "kodova/hamcrest-php": "*"
  8999. },
  9000. "require-dev": {
  9001. "phpunit/php-file-iterator": "^1.4 || ^2.0",
  9002. "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0"
  9003. },
  9004. "type": "library",
  9005. "extra": {
  9006. "branch-alias": {
  9007. "dev-master": "2.1-dev"
  9008. }
  9009. },
  9010. "autoload": {
  9011. "classmap": [
  9012. "hamcrest"
  9013. ]
  9014. },
  9015. "notification-url": "https://packagist.org/downloads/",
  9016. "license": [
  9017. "BSD-3-Clause"
  9018. ],
  9019. "description": "This is the PHP port of Hamcrest Matchers",
  9020. "keywords": [
  9021. "test"
  9022. ],
  9023. "support": {
  9024. "issues": "https://github.com/hamcrest/hamcrest-php/issues",
  9025. "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.0.1"
  9026. },
  9027. "time": "2020-07-09T08:09:16+00:00"
  9028. },
  9029. {
  9030. "name": "justinrainbow/json-schema",
  9031. "version": "5.2.10",
  9032. "source": {
  9033. "type": "git",
  9034. "url": "https://github.com/justinrainbow/json-schema.git",
  9035. "reference": "2ba9c8c862ecd5510ed16c6340aa9f6eadb4f31b"
  9036. },
  9037. "dist": {
  9038. "type": "zip",
  9039. "url": "https://api.github.com/repos/justinrainbow/json-schema/zipball/2ba9c8c862ecd5510ed16c6340aa9f6eadb4f31b",
  9040. "reference": "2ba9c8c862ecd5510ed16c6340aa9f6eadb4f31b",
  9041. "shasum": ""
  9042. },
  9043. "require": {
  9044. "php": ">=5.3.3"
  9045. },
  9046. "require-dev": {
  9047. "friendsofphp/php-cs-fixer": "~2.2.20||~2.15.1",
  9048. "json-schema/json-schema-test-suite": "1.2.0",
  9049. "phpunit/phpunit": "^4.8.35"
  9050. },
  9051. "bin": [
  9052. "bin/validate-json"
  9053. ],
  9054. "type": "library",
  9055. "extra": {
  9056. "branch-alias": {
  9057. "dev-master": "5.0.x-dev"
  9058. }
  9059. },
  9060. "autoload": {
  9061. "psr-4": {
  9062. "JsonSchema\\": "src/JsonSchema/"
  9063. }
  9064. },
  9065. "notification-url": "https://packagist.org/downloads/",
  9066. "license": [
  9067. "MIT"
  9068. ],
  9069. "authors": [
  9070. {
  9071. "name": "Bruno Prieto Reis",
  9072. "email": "bruno.p.reis@gmail.com"
  9073. },
  9074. {
  9075. "name": "Justin Rainbow",
  9076. "email": "justin.rainbow@gmail.com"
  9077. },
  9078. {
  9079. "name": "Igor Wiedler",
  9080. "email": "igor@wiedler.ch"
  9081. },
  9082. {
  9083. "name": "Robert Schönthal",
  9084. "email": "seroscho@googlemail.com"
  9085. }
  9086. ],
  9087. "description": "A library to validate a json schema.",
  9088. "homepage": "https://github.com/justinrainbow/json-schema",
  9089. "keywords": [
  9090. "json",
  9091. "schema"
  9092. ],
  9093. "support": {
  9094. "issues": "https://github.com/justinrainbow/json-schema/issues",
  9095. "source": "https://github.com/justinrainbow/json-schema/tree/5.2.10"
  9096. },
  9097. "time": "2020-05-27T16:41:55+00:00"
  9098. },
  9099. {
  9100. "name": "laravel/telescope",
  9101. "version": "v3.5.1",
  9102. "source": {
  9103. "type": "git",
  9104. "url": "https://github.com/laravel/telescope.git",
  9105. "reference": "a8d2e1106ba655006fde47a0b7ed53851c6398f5"
  9106. },
  9107. "dist": {
  9108. "type": "zip",
  9109. "url": "https://api.github.com/repos/laravel/telescope/zipball/a8d2e1106ba655006fde47a0b7ed53851c6398f5",
  9110. "reference": "a8d2e1106ba655006fde47a0b7ed53851c6398f5",
  9111. "shasum": ""
  9112. },
  9113. "require": {
  9114. "ext-json": "*",
  9115. "laravel/framework": "^6.0|^7.0",
  9116. "moontoast/math": "^1.1",
  9117. "php": "^7.2",
  9118. "symfony/var-dumper": "^4.4|^5.0"
  9119. },
  9120. "require-dev": {
  9121. "ext-gd": "*",
  9122. "orchestra/testbench": "^4.0|^5.0"
  9123. },
  9124. "type": "library",
  9125. "extra": {
  9126. "branch-alias": {
  9127. "dev-master": "3.x-dev"
  9128. },
  9129. "laravel": {
  9130. "providers": [
  9131. "Laravel\\Telescope\\TelescopeServiceProvider"
  9132. ]
  9133. }
  9134. },
  9135. "autoload": {
  9136. "psr-4": {
  9137. "Laravel\\Telescope\\": "src/"
  9138. }
  9139. },
  9140. "notification-url": "https://packagist.org/downloads/",
  9141. "license": [
  9142. "MIT"
  9143. ],
  9144. "authors": [
  9145. {
  9146. "name": "Taylor Otwell",
  9147. "email": "taylor@laravel.com"
  9148. },
  9149. {
  9150. "name": "Mohamed Said",
  9151. "email": "mohamed@laravel.com"
  9152. }
  9153. ],
  9154. "description": "An elegant debug assistant for the Laravel framework.",
  9155. "keywords": [
  9156. "debugging",
  9157. "laravel",
  9158. "monitoring"
  9159. ],
  9160. "support": {
  9161. "issues": "https://github.com/laravel/telescope/issues",
  9162. "source": "https://github.com/laravel/telescope/tree/v3.5.1"
  9163. },
  9164. "time": "2020-07-28T19:12:33+00:00"
  9165. },
  9166. {
  9167. "name": "maximebf/debugbar",
  9168. "version": "v1.16.4",
  9169. "source": {
  9170. "type": "git",
  9171. "url": "https://github.com/maximebf/php-debugbar.git",
  9172. "reference": "c86c717e4bf3c6d98422da5c38bfa7b0f494b04c"
  9173. },
  9174. "dist": {
  9175. "type": "zip",
  9176. "url": "https://api.github.com/repos/maximebf/php-debugbar/zipball/c86c717e4bf3c6d98422da5c38bfa7b0f494b04c",
  9177. "reference": "c86c717e4bf3c6d98422da5c38bfa7b0f494b04c",
  9178. "shasum": ""
  9179. },
  9180. "require": {
  9181. "php": "^7.1|^8",
  9182. "psr/log": "^1.0",
  9183. "symfony/var-dumper": "^2.6|^3|^4|^5"
  9184. },
  9185. "require-dev": {
  9186. "phpunit/phpunit": "^7.5.20 || ^9.4.2"
  9187. },
  9188. "suggest": {
  9189. "kriswallsmith/assetic": "The best way to manage assets",
  9190. "monolog/monolog": "Log using Monolog",
  9191. "predis/predis": "Redis storage"
  9192. },
  9193. "type": "library",
  9194. "extra": {
  9195. "branch-alias": {
  9196. "dev-master": "1.16-dev"
  9197. }
  9198. },
  9199. "autoload": {
  9200. "psr-4": {
  9201. "DebugBar\\": "src/DebugBar/"
  9202. }
  9203. },
  9204. "notification-url": "https://packagist.org/downloads/",
  9205. "license": [
  9206. "MIT"
  9207. ],
  9208. "authors": [
  9209. {
  9210. "name": "Maxime Bouroumeau-Fuseau",
  9211. "email": "maxime.bouroumeau@gmail.com",
  9212. "homepage": "http://maximebf.com"
  9213. },
  9214. {
  9215. "name": "Barry vd. Heuvel",
  9216. "email": "barryvdh@gmail.com"
  9217. }
  9218. ],
  9219. "description": "Debug bar in the browser for php application",
  9220. "homepage": "https://github.com/maximebf/php-debugbar",
  9221. "keywords": [
  9222. "debug",
  9223. "debugbar"
  9224. ],
  9225. "support": {
  9226. "issues": "https://github.com/maximebf/php-debugbar/issues",
  9227. "source": "https://github.com/maximebf/php-debugbar/tree/v1.16.4"
  9228. },
  9229. "time": "2020-12-07T10:48:48+00:00"
  9230. },
  9231. {
  9232. "name": "mockery/mockery",
  9233. "version": "1.4.2",
  9234. "source": {
  9235. "type": "git",
  9236. "url": "https://github.com/mockery/mockery.git",
  9237. "reference": "20cab678faed06fac225193be281ea0fddb43b93"
  9238. },
  9239. "dist": {
  9240. "type": "zip",
  9241. "url": "https://api.github.com/repos/mockery/mockery/zipball/20cab678faed06fac225193be281ea0fddb43b93",
  9242. "reference": "20cab678faed06fac225193be281ea0fddb43b93",
  9243. "shasum": ""
  9244. },
  9245. "require": {
  9246. "hamcrest/hamcrest-php": "^2.0.1",
  9247. "lib-pcre": ">=7.0",
  9248. "php": "^7.3 || ^8.0"
  9249. },
  9250. "conflict": {
  9251. "phpunit/phpunit": "<8.0"
  9252. },
  9253. "require-dev": {
  9254. "phpunit/phpunit": "^8.5 || ^9.3"
  9255. },
  9256. "type": "library",
  9257. "extra": {
  9258. "branch-alias": {
  9259. "dev-master": "1.4.x-dev"
  9260. }
  9261. },
  9262. "autoload": {
  9263. "psr-0": {
  9264. "Mockery": "library/"
  9265. }
  9266. },
  9267. "notification-url": "https://packagist.org/downloads/",
  9268. "license": [
  9269. "BSD-3-Clause"
  9270. ],
  9271. "authors": [
  9272. {
  9273. "name": "Pádraic Brady",
  9274. "email": "padraic.brady@gmail.com",
  9275. "homepage": "http://blog.astrumfutura.com"
  9276. },
  9277. {
  9278. "name": "Dave Marshall",
  9279. "email": "dave.marshall@atstsolutions.co.uk",
  9280. "homepage": "http://davedevelopment.co.uk"
  9281. }
  9282. ],
  9283. "description": "Mockery is a simple yet flexible PHP mock object framework",
  9284. "homepage": "https://github.com/mockery/mockery",
  9285. "keywords": [
  9286. "BDD",
  9287. "TDD",
  9288. "library",
  9289. "mock",
  9290. "mock objects",
  9291. "mockery",
  9292. "stub",
  9293. "test",
  9294. "test double",
  9295. "testing"
  9296. ],
  9297. "support": {
  9298. "issues": "https://github.com/mockery/mockery/issues",
  9299. "source": "https://github.com/mockery/mockery/tree/master"
  9300. },
  9301. "time": "2020-08-11T18:10:13+00:00"
  9302. },
  9303. {
  9304. "name": "moontoast/math",
  9305. "version": "1.2.1",
  9306. "source": {
  9307. "type": "git",
  9308. "url": "https://github.com/ramsey/moontoast-math.git",
  9309. "reference": "5f47d34c87767dbcc08b30377a9827df71de91fa"
  9310. },
  9311. "dist": {
  9312. "type": "zip",
  9313. "url": "https://api.github.com/repos/ramsey/moontoast-math/zipball/5f47d34c87767dbcc08b30377a9827df71de91fa",
  9314. "reference": "5f47d34c87767dbcc08b30377a9827df71de91fa",
  9315. "shasum": ""
  9316. },
  9317. "require": {
  9318. "php": ">=5.3.3",
  9319. "phpseclib/bcmath_compat": ">=1.0.3"
  9320. },
  9321. "require-dev": {
  9322. "jakub-onderka/php-parallel-lint": "^0.9.0",
  9323. "phpunit/phpunit": "^4.8 || ^5.5 || ^6.5 || ^7.0",
  9324. "satooshi/php-coveralls": "^0.6.1",
  9325. "squizlabs/php_codesniffer": "^2.3"
  9326. },
  9327. "type": "library",
  9328. "autoload": {
  9329. "psr-4": {
  9330. "Moontoast\\Math\\": "src/Moontoast/Math",
  9331. "Moontoast\\Math\\Exception\\": "src/Moontoast/Math/Exception"
  9332. }
  9333. },
  9334. "notification-url": "https://packagist.org/downloads/",
  9335. "license": [
  9336. "Apache-2.0"
  9337. ],
  9338. "authors": [
  9339. {
  9340. "name": "Ben Ramsey",
  9341. "email": "ben@benramsey.com",
  9342. "homepage": "https://benramsey.com"
  9343. }
  9344. ],
  9345. "description": "A mathematics library, providing functionality for large numbers",
  9346. "homepage": "https://github.com/ramsey/moontoast-math",
  9347. "keywords": [
  9348. "bcmath",
  9349. "math"
  9350. ],
  9351. "support": {
  9352. "issues": "https://github.com/ramsey/moontoast-math/issues",
  9353. "source": "https://github.com/ramsey/moontoast-math"
  9354. },
  9355. "abandoned": "brick/math",
  9356. "time": "2020-01-05T04:49:34+00:00"
  9357. },
  9358. {
  9359. "name": "myclabs/deep-copy",
  9360. "version": "1.10.2",
  9361. "source": {
  9362. "type": "git",
  9363. "url": "https://github.com/myclabs/DeepCopy.git",
  9364. "reference": "776f831124e9c62e1a2c601ecc52e776d8bb7220"
  9365. },
  9366. "dist": {
  9367. "type": "zip",
  9368. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/776f831124e9c62e1a2c601ecc52e776d8bb7220",
  9369. "reference": "776f831124e9c62e1a2c601ecc52e776d8bb7220",
  9370. "shasum": ""
  9371. },
  9372. "require": {
  9373. "php": "^7.1 || ^8.0"
  9374. },
  9375. "replace": {
  9376. "myclabs/deep-copy": "self.version"
  9377. },
  9378. "require-dev": {
  9379. "doctrine/collections": "^1.0",
  9380. "doctrine/common": "^2.6",
  9381. "phpunit/phpunit": "^7.1"
  9382. },
  9383. "type": "library",
  9384. "autoload": {
  9385. "psr-4": {
  9386. "DeepCopy\\": "src/DeepCopy/"
  9387. },
  9388. "files": [
  9389. "src/DeepCopy/deep_copy.php"
  9390. ]
  9391. },
  9392. "notification-url": "https://packagist.org/downloads/",
  9393. "license": [
  9394. "MIT"
  9395. ],
  9396. "description": "Create deep copies (clones) of your objects",
  9397. "keywords": [
  9398. "clone",
  9399. "copy",
  9400. "duplicate",
  9401. "object",
  9402. "object graph"
  9403. ],
  9404. "support": {
  9405. "issues": "https://github.com/myclabs/DeepCopy/issues",
  9406. "source": "https://github.com/myclabs/DeepCopy/tree/1.10.2"
  9407. },
  9408. "funding": [
  9409. {
  9410. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  9411. "type": "tidelift"
  9412. }
  9413. ],
  9414. "time": "2020-11-13T09:40:50+00:00"
  9415. },
  9416. {
  9417. "name": "nunomaduro/collision",
  9418. "version": "v4.3.0",
  9419. "source": {
  9420. "type": "git",
  9421. "url": "https://github.com/nunomaduro/collision.git",
  9422. "reference": "7c125dc2463f3e144ddc7e05e63077109508c94e"
  9423. },
  9424. "dist": {
  9425. "type": "zip",
  9426. "url": "https://api.github.com/repos/nunomaduro/collision/zipball/7c125dc2463f3e144ddc7e05e63077109508c94e",
  9427. "reference": "7c125dc2463f3e144ddc7e05e63077109508c94e",
  9428. "shasum": ""
  9429. },
  9430. "require": {
  9431. "facade/ignition-contracts": "^1.0",
  9432. "filp/whoops": "^2.4",
  9433. "php": "^7.2.5 || ^8.0",
  9434. "symfony/console": "^5.0"
  9435. },
  9436. "require-dev": {
  9437. "facade/ignition": "^2.0",
  9438. "fideloper/proxy": "^4.2",
  9439. "friendsofphp/php-cs-fixer": "^2.16",
  9440. "fruitcake/laravel-cors": "^1.0",
  9441. "laravel/framework": "^7.0",
  9442. "laravel/tinker": "^2.0",
  9443. "nunomaduro/larastan": "^0.6",
  9444. "orchestra/testbench": "^5.0",
  9445. "phpstan/phpstan": "^0.12.3",
  9446. "phpunit/phpunit": "^8.5.1 || ^9.0"
  9447. },
  9448. "type": "library",
  9449. "extra": {
  9450. "laravel": {
  9451. "providers": [
  9452. "NunoMaduro\\Collision\\Adapters\\Laravel\\CollisionServiceProvider"
  9453. ]
  9454. }
  9455. },
  9456. "autoload": {
  9457. "psr-4": {
  9458. "NunoMaduro\\Collision\\": "src/"
  9459. }
  9460. },
  9461. "notification-url": "https://packagist.org/downloads/",
  9462. "license": [
  9463. "MIT"
  9464. ],
  9465. "authors": [
  9466. {
  9467. "name": "Nuno Maduro",
  9468. "email": "enunomaduro@gmail.com"
  9469. }
  9470. ],
  9471. "description": "Cli error handling for console/command-line PHP applications.",
  9472. "keywords": [
  9473. "artisan",
  9474. "cli",
  9475. "command-line",
  9476. "console",
  9477. "error",
  9478. "handling",
  9479. "laravel",
  9480. "laravel-zero",
  9481. "php",
  9482. "symfony"
  9483. ],
  9484. "support": {
  9485. "issues": "https://github.com/nunomaduro/collision/issues",
  9486. "source": "https://github.com/nunomaduro/collision"
  9487. },
  9488. "funding": [
  9489. {
  9490. "url": "https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=66BYDWAT92N6L",
  9491. "type": "custom"
  9492. },
  9493. {
  9494. "url": "https://github.com/nunomaduro",
  9495. "type": "github"
  9496. },
  9497. {
  9498. "url": "https://www.patreon.com/nunomaduro",
  9499. "type": "patreon"
  9500. }
  9501. ],
  9502. "time": "2020-10-29T15:12:23+00:00"
  9503. },
  9504. {
  9505. "name": "paragonie/constant_time_encoding",
  9506. "version": "v2.4.0",
  9507. "source": {
  9508. "type": "git",
  9509. "url": "https://github.com/paragonie/constant_time_encoding.git",
  9510. "reference": "f34c2b11eb9d2c9318e13540a1dbc2a3afbd939c"
  9511. },
  9512. "dist": {
  9513. "type": "zip",
  9514. "url": "https://api.github.com/repos/paragonie/constant_time_encoding/zipball/f34c2b11eb9d2c9318e13540a1dbc2a3afbd939c",
  9515. "reference": "f34c2b11eb9d2c9318e13540a1dbc2a3afbd939c",
  9516. "shasum": ""
  9517. },
  9518. "require": {
  9519. "php": "^7|^8"
  9520. },
  9521. "require-dev": {
  9522. "phpunit/phpunit": "^6|^7|^8|^9",
  9523. "vimeo/psalm": "^1|^2|^3|^4"
  9524. },
  9525. "type": "library",
  9526. "autoload": {
  9527. "psr-4": {
  9528. "ParagonIE\\ConstantTime\\": "src/"
  9529. }
  9530. },
  9531. "notification-url": "https://packagist.org/downloads/",
  9532. "license": [
  9533. "MIT"
  9534. ],
  9535. "authors": [
  9536. {
  9537. "name": "Paragon Initiative Enterprises",
  9538. "email": "security@paragonie.com",
  9539. "homepage": "https://paragonie.com",
  9540. "role": "Maintainer"
  9541. },
  9542. {
  9543. "name": "Steve 'Sc00bz' Thomas",
  9544. "email": "steve@tobtu.com",
  9545. "homepage": "https://www.tobtu.com",
  9546. "role": "Original Developer"
  9547. }
  9548. ],
  9549. "description": "Constant-time Implementations of RFC 4648 Encoding (Base-64, Base-32, Base-16)",
  9550. "keywords": [
  9551. "base16",
  9552. "base32",
  9553. "base32_decode",
  9554. "base32_encode",
  9555. "base64",
  9556. "base64_decode",
  9557. "base64_encode",
  9558. "bin2hex",
  9559. "encoding",
  9560. "hex",
  9561. "hex2bin",
  9562. "rfc4648"
  9563. ],
  9564. "support": {
  9565. "email": "info@paragonie.com",
  9566. "issues": "https://github.com/paragonie/constant_time_encoding/issues",
  9567. "source": "https://github.com/paragonie/constant_time_encoding"
  9568. },
  9569. "time": "2020-12-06T15:14:20+00:00"
  9570. },
  9571. {
  9572. "name": "paragonie/random_compat",
  9573. "version": "v2.0.19",
  9574. "source": {
  9575. "type": "git",
  9576. "url": "https://github.com/paragonie/random_compat.git",
  9577. "reference": "446fc9faa5c2a9ddf65eb7121c0af7e857295241"
  9578. },
  9579. "dist": {
  9580. "type": "zip",
  9581. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/446fc9faa5c2a9ddf65eb7121c0af7e857295241",
  9582. "reference": "446fc9faa5c2a9ddf65eb7121c0af7e857295241",
  9583. "shasum": ""
  9584. },
  9585. "require": {
  9586. "php": ">=5.2.0"
  9587. },
  9588. "require-dev": {
  9589. "phpunit/phpunit": "4.*|5.*"
  9590. },
  9591. "suggest": {
  9592. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  9593. },
  9594. "type": "library",
  9595. "autoload": {
  9596. "files": [
  9597. "lib/random.php"
  9598. ]
  9599. },
  9600. "notification-url": "https://packagist.org/downloads/",
  9601. "license": [
  9602. "MIT"
  9603. ],
  9604. "authors": [
  9605. {
  9606. "name": "Paragon Initiative Enterprises",
  9607. "email": "security@paragonie.com",
  9608. "homepage": "https://paragonie.com"
  9609. }
  9610. ],
  9611. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  9612. "keywords": [
  9613. "csprng",
  9614. "polyfill",
  9615. "pseudorandom",
  9616. "random"
  9617. ],
  9618. "support": {
  9619. "email": "info@paragonie.com",
  9620. "issues": "https://github.com/paragonie/random_compat/issues",
  9621. "source": "https://github.com/paragonie/random_compat"
  9622. },
  9623. "time": "2020-10-15T10:06:57+00:00"
  9624. },
  9625. {
  9626. "name": "phar-io/manifest",
  9627. "version": "2.0.1",
  9628. "source": {
  9629. "type": "git",
  9630. "url": "https://github.com/phar-io/manifest.git",
  9631. "reference": "85265efd3af7ba3ca4b2a2c34dbfc5788dd29133"
  9632. },
  9633. "dist": {
  9634. "type": "zip",
  9635. "url": "https://api.github.com/repos/phar-io/manifest/zipball/85265efd3af7ba3ca4b2a2c34dbfc5788dd29133",
  9636. "reference": "85265efd3af7ba3ca4b2a2c34dbfc5788dd29133",
  9637. "shasum": ""
  9638. },
  9639. "require": {
  9640. "ext-dom": "*",
  9641. "ext-phar": "*",
  9642. "ext-xmlwriter": "*",
  9643. "phar-io/version": "^3.0.1",
  9644. "php": "^7.2 || ^8.0"
  9645. },
  9646. "type": "library",
  9647. "extra": {
  9648. "branch-alias": {
  9649. "dev-master": "2.0.x-dev"
  9650. }
  9651. },
  9652. "autoload": {
  9653. "classmap": [
  9654. "src/"
  9655. ]
  9656. },
  9657. "notification-url": "https://packagist.org/downloads/",
  9658. "license": [
  9659. "BSD-3-Clause"
  9660. ],
  9661. "authors": [
  9662. {
  9663. "name": "Arne Blankerts",
  9664. "email": "arne@blankerts.de",
  9665. "role": "Developer"
  9666. },
  9667. {
  9668. "name": "Sebastian Heuer",
  9669. "email": "sebastian@phpeople.de",
  9670. "role": "Developer"
  9671. },
  9672. {
  9673. "name": "Sebastian Bergmann",
  9674. "email": "sebastian@phpunit.de",
  9675. "role": "Developer"
  9676. }
  9677. ],
  9678. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  9679. "support": {
  9680. "issues": "https://github.com/phar-io/manifest/issues",
  9681. "source": "https://github.com/phar-io/manifest/tree/master"
  9682. },
  9683. "time": "2020-06-27T14:33:11+00:00"
  9684. },
  9685. {
  9686. "name": "phar-io/version",
  9687. "version": "3.0.4",
  9688. "source": {
  9689. "type": "git",
  9690. "url": "https://github.com/phar-io/version.git",
  9691. "reference": "e4782611070e50613683d2b9a57730e9a3ba5451"
  9692. },
  9693. "dist": {
  9694. "type": "zip",
  9695. "url": "https://api.github.com/repos/phar-io/version/zipball/e4782611070e50613683d2b9a57730e9a3ba5451",
  9696. "reference": "e4782611070e50613683d2b9a57730e9a3ba5451",
  9697. "shasum": ""
  9698. },
  9699. "require": {
  9700. "php": "^7.2 || ^8.0"
  9701. },
  9702. "type": "library",
  9703. "autoload": {
  9704. "classmap": [
  9705. "src/"
  9706. ]
  9707. },
  9708. "notification-url": "https://packagist.org/downloads/",
  9709. "license": [
  9710. "BSD-3-Clause"
  9711. ],
  9712. "authors": [
  9713. {
  9714. "name": "Arne Blankerts",
  9715. "email": "arne@blankerts.de",
  9716. "role": "Developer"
  9717. },
  9718. {
  9719. "name": "Sebastian Heuer",
  9720. "email": "sebastian@phpeople.de",
  9721. "role": "Developer"
  9722. },
  9723. {
  9724. "name": "Sebastian Bergmann",
  9725. "email": "sebastian@phpunit.de",
  9726. "role": "Developer"
  9727. }
  9728. ],
  9729. "description": "Library for handling version information and constraints",
  9730. "support": {
  9731. "issues": "https://github.com/phar-io/version/issues",
  9732. "source": "https://github.com/phar-io/version/tree/3.0.4"
  9733. },
  9734. "time": "2020-12-13T23:18:30+00:00"
  9735. },
  9736. {
  9737. "name": "phpdocumentor/reflection-common",
  9738. "version": "2.2.0",
  9739. "source": {
  9740. "type": "git",
  9741. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  9742. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b"
  9743. },
  9744. "dist": {
  9745. "type": "zip",
  9746. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  9747. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  9748. "shasum": ""
  9749. },
  9750. "require": {
  9751. "php": "^7.2 || ^8.0"
  9752. },
  9753. "type": "library",
  9754. "extra": {
  9755. "branch-alias": {
  9756. "dev-2.x": "2.x-dev"
  9757. }
  9758. },
  9759. "autoload": {
  9760. "psr-4": {
  9761. "phpDocumentor\\Reflection\\": "src/"
  9762. }
  9763. },
  9764. "notification-url": "https://packagist.org/downloads/",
  9765. "license": [
  9766. "MIT"
  9767. ],
  9768. "authors": [
  9769. {
  9770. "name": "Jaap van Otterdijk",
  9771. "email": "opensource@ijaap.nl"
  9772. }
  9773. ],
  9774. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  9775. "homepage": "http://www.phpdoc.org",
  9776. "keywords": [
  9777. "FQSEN",
  9778. "phpDocumentor",
  9779. "phpdoc",
  9780. "reflection",
  9781. "static analysis"
  9782. ],
  9783. "support": {
  9784. "issues": "https://github.com/phpDocumentor/ReflectionCommon/issues",
  9785. "source": "https://github.com/phpDocumentor/ReflectionCommon/tree/2.x"
  9786. },
  9787. "time": "2020-06-27T09:03:43+00:00"
  9788. },
  9789. {
  9790. "name": "phpdocumentor/reflection-docblock",
  9791. "version": "5.2.2",
  9792. "source": {
  9793. "type": "git",
  9794. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  9795. "reference": "069a785b2141f5bcf49f3e353548dc1cce6df556"
  9796. },
  9797. "dist": {
  9798. "type": "zip",
  9799. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/069a785b2141f5bcf49f3e353548dc1cce6df556",
  9800. "reference": "069a785b2141f5bcf49f3e353548dc1cce6df556",
  9801. "shasum": ""
  9802. },
  9803. "require": {
  9804. "ext-filter": "*",
  9805. "php": "^7.2 || ^8.0",
  9806. "phpdocumentor/reflection-common": "^2.2",
  9807. "phpdocumentor/type-resolver": "^1.3",
  9808. "webmozart/assert": "^1.9.1"
  9809. },
  9810. "require-dev": {
  9811. "mockery/mockery": "~1.3.2"
  9812. },
  9813. "type": "library",
  9814. "extra": {
  9815. "branch-alias": {
  9816. "dev-master": "5.x-dev"
  9817. }
  9818. },
  9819. "autoload": {
  9820. "psr-4": {
  9821. "phpDocumentor\\Reflection\\": "src"
  9822. }
  9823. },
  9824. "notification-url": "https://packagist.org/downloads/",
  9825. "license": [
  9826. "MIT"
  9827. ],
  9828. "authors": [
  9829. {
  9830. "name": "Mike van Riel",
  9831. "email": "me@mikevanriel.com"
  9832. },
  9833. {
  9834. "name": "Jaap van Otterdijk",
  9835. "email": "account@ijaap.nl"
  9836. }
  9837. ],
  9838. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  9839. "support": {
  9840. "issues": "https://github.com/phpDocumentor/ReflectionDocBlock/issues",
  9841. "source": "https://github.com/phpDocumentor/ReflectionDocBlock/tree/master"
  9842. },
  9843. "time": "2020-09-03T19:13:55+00:00"
  9844. },
  9845. {
  9846. "name": "phpdocumentor/type-resolver",
  9847. "version": "1.4.0",
  9848. "source": {
  9849. "type": "git",
  9850. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  9851. "reference": "6a467b8989322d92aa1c8bf2bebcc6e5c2ba55c0"
  9852. },
  9853. "dist": {
  9854. "type": "zip",
  9855. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/6a467b8989322d92aa1c8bf2bebcc6e5c2ba55c0",
  9856. "reference": "6a467b8989322d92aa1c8bf2bebcc6e5c2ba55c0",
  9857. "shasum": ""
  9858. },
  9859. "require": {
  9860. "php": "^7.2 || ^8.0",
  9861. "phpdocumentor/reflection-common": "^2.0"
  9862. },
  9863. "require-dev": {
  9864. "ext-tokenizer": "*"
  9865. },
  9866. "type": "library",
  9867. "extra": {
  9868. "branch-alias": {
  9869. "dev-1.x": "1.x-dev"
  9870. }
  9871. },
  9872. "autoload": {
  9873. "psr-4": {
  9874. "phpDocumentor\\Reflection\\": "src"
  9875. }
  9876. },
  9877. "notification-url": "https://packagist.org/downloads/",
  9878. "license": [
  9879. "MIT"
  9880. ],
  9881. "authors": [
  9882. {
  9883. "name": "Mike van Riel",
  9884. "email": "me@mikevanriel.com"
  9885. }
  9886. ],
  9887. "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names",
  9888. "support": {
  9889. "issues": "https://github.com/phpDocumentor/TypeResolver/issues",
  9890. "source": "https://github.com/phpDocumentor/TypeResolver/tree/1.4.0"
  9891. },
  9892. "time": "2020-09-17T18:55:26+00:00"
  9893. },
  9894. {
  9895. "name": "phpseclib/bcmath_compat",
  9896. "version": "2.0.0",
  9897. "source": {
  9898. "type": "git",
  9899. "url": "https://github.com/phpseclib/bcmath_compat.git",
  9900. "reference": "fd896dfceffc13d8cf45d2ee3470777a70026f3c"
  9901. },
  9902. "dist": {
  9903. "type": "zip",
  9904. "url": "https://api.github.com/repos/phpseclib/bcmath_compat/zipball/fd896dfceffc13d8cf45d2ee3470777a70026f3c",
  9905. "reference": "fd896dfceffc13d8cf45d2ee3470777a70026f3c",
  9906. "shasum": ""
  9907. },
  9908. "require": {
  9909. "phpseclib/phpseclib": "^3.0"
  9910. },
  9911. "provide": {
  9912. "ext-bcmath": "8.0.0"
  9913. },
  9914. "require-dev": {
  9915. "phpunit/phpunit": "^4.8.35|^5.7|^6.0|^9.4",
  9916. "squizlabs/php_codesniffer": "^3.0"
  9917. },
  9918. "suggest": {
  9919. "ext-gmp": "Will enable faster math operations"
  9920. },
  9921. "type": "library",
  9922. "autoload": {
  9923. "files": [
  9924. "lib/bcmath.php"
  9925. ],
  9926. "psr-4": {
  9927. "bcmath_compat\\": "src"
  9928. }
  9929. },
  9930. "notification-url": "https://packagist.org/downloads/",
  9931. "license": [
  9932. "MIT"
  9933. ],
  9934. "authors": [
  9935. {
  9936. "name": "Jim Wigginton",
  9937. "email": "terrafrost@php.net",
  9938. "homepage": "http://phpseclib.sourceforge.net"
  9939. }
  9940. ],
  9941. "description": "PHP 5.x/7.x polyfill for bcmath extension",
  9942. "keywords": [
  9943. "BigInteger",
  9944. "bcmath",
  9945. "bigdecimal",
  9946. "math",
  9947. "polyfill"
  9948. ],
  9949. "support": {
  9950. "email": "terrafrost@php.net",
  9951. "issues": "https://github.com/phpseclib/bcmath_compat/issues",
  9952. "source": "https://github.com/phpseclib/bcmath_compat"
  9953. },
  9954. "time": "2020-12-22T16:38:51+00:00"
  9955. },
  9956. {
  9957. "name": "phpseclib/phpseclib",
  9958. "version": "3.0.2",
  9959. "source": {
  9960. "type": "git",
  9961. "url": "https://github.com/phpseclib/phpseclib.git",
  9962. "reference": "7a9418e4e02a3da7950b6b85c30e694d68daf995"
  9963. },
  9964. "dist": {
  9965. "type": "zip",
  9966. "url": "https://api.github.com/repos/phpseclib/phpseclib/zipball/7a9418e4e02a3da7950b6b85c30e694d68daf995",
  9967. "reference": "7a9418e4e02a3da7950b6b85c30e694d68daf995",
  9968. "shasum": ""
  9969. },
  9970. "require": {
  9971. "paragonie/constant_time_encoding": "^1|^2",
  9972. "paragonie/random_compat": "^1.4|^2.0",
  9973. "php": ">=5.6.1"
  9974. },
  9975. "require-dev": {
  9976. "phing/phing": "~2.7",
  9977. "phpunit/phpunit": "^5.7|^6.0|^9.4",
  9978. "squizlabs/php_codesniffer": "~2.0"
  9979. },
  9980. "suggest": {
  9981. "ext-gmp": "Install the GMP (GNU Multiple Precision) extension in order to speed up arbitrary precision integer arithmetic operations.",
  9982. "ext-libsodium": "SSH2/SFTP can make use of some algorithms provided by the libsodium-php extension.",
  9983. "ext-mcrypt": "Install the Mcrypt extension in order to speed up a few other cryptographic operations.",
  9984. "ext-openssl": "Install the OpenSSL extension in order to speed up a wide variety of cryptographic operations."
  9985. },
  9986. "type": "library",
  9987. "autoload": {
  9988. "files": [
  9989. "phpseclib/bootstrap.php"
  9990. ],
  9991. "psr-4": {
  9992. "phpseclib3\\": "phpseclib/"
  9993. }
  9994. },
  9995. "notification-url": "https://packagist.org/downloads/",
  9996. "license": [
  9997. "MIT"
  9998. ],
  9999. "authors": [
  10000. {
  10001. "name": "Jim Wigginton",
  10002. "email": "terrafrost@php.net",
  10003. "role": "Lead Developer"
  10004. },
  10005. {
  10006. "name": "Patrick Monnerat",
  10007. "email": "pm@datasphere.ch",
  10008. "role": "Developer"
  10009. },
  10010. {
  10011. "name": "Andreas Fischer",
  10012. "email": "bantu@phpbb.com",
  10013. "role": "Developer"
  10014. },
  10015. {
  10016. "name": "Hans-Jürgen Petrich",
  10017. "email": "petrich@tronic-media.com",
  10018. "role": "Developer"
  10019. },
  10020. {
  10021. "name": "Graham Campbell",
  10022. "email": "graham@alt-three.com",
  10023. "role": "Developer"
  10024. }
  10025. ],
  10026. "description": "PHP Secure Communications Library - Pure-PHP implementations of RSA, AES, SSH2, SFTP, X.509 etc.",
  10027. "homepage": "http://phpseclib.sourceforge.net",
  10028. "keywords": [
  10029. "BigInteger",
  10030. "aes",
  10031. "asn.1",
  10032. "asn1",
  10033. "blowfish",
  10034. "crypto",
  10035. "cryptography",
  10036. "encryption",
  10037. "rsa",
  10038. "security",
  10039. "sftp",
  10040. "signature",
  10041. "signing",
  10042. "ssh",
  10043. "twofish",
  10044. "x.509",
  10045. "x509"
  10046. ],
  10047. "support": {
  10048. "issues": "https://github.com/phpseclib/phpseclib/issues",
  10049. "source": "https://github.com/phpseclib/phpseclib/tree/3.0.2"
  10050. },
  10051. "funding": [
  10052. {
  10053. "url": "https://github.com/terrafrost",
  10054. "type": "github"
  10055. },
  10056. {
  10057. "url": "https://www.patreon.com/phpseclib",
  10058. "type": "patreon"
  10059. },
  10060. {
  10061. "url": "https://tidelift.com/funding/github/packagist/phpseclib/phpseclib",
  10062. "type": "tidelift"
  10063. }
  10064. ],
  10065. "time": "2020-12-23T16:39:00+00:00"
  10066. },
  10067. {
  10068. "name": "phpspec/prophecy",
  10069. "version": "1.12.2",
  10070. "source": {
  10071. "type": "git",
  10072. "url": "https://github.com/phpspec/prophecy.git",
  10073. "reference": "245710e971a030f42e08f4912863805570f23d39"
  10074. },
  10075. "dist": {
  10076. "type": "zip",
  10077. "url": "https://api.github.com/repos/phpspec/prophecy/zipball/245710e971a030f42e08f4912863805570f23d39",
  10078. "reference": "245710e971a030f42e08f4912863805570f23d39",
  10079. "shasum": ""
  10080. },
  10081. "require": {
  10082. "doctrine/instantiator": "^1.2",
  10083. "php": "^7.2 || ~8.0, <8.1",
  10084. "phpdocumentor/reflection-docblock": "^5.2",
  10085. "sebastian/comparator": "^3.0 || ^4.0",
  10086. "sebastian/recursion-context": "^3.0 || ^4.0"
  10087. },
  10088. "require-dev": {
  10089. "phpspec/phpspec": "^6.0",
  10090. "phpunit/phpunit": "^8.0 || ^9.0"
  10091. },
  10092. "type": "library",
  10093. "extra": {
  10094. "branch-alias": {
  10095. "dev-master": "1.11.x-dev"
  10096. }
  10097. },
  10098. "autoload": {
  10099. "psr-4": {
  10100. "Prophecy\\": "src/Prophecy"
  10101. }
  10102. },
  10103. "notification-url": "https://packagist.org/downloads/",
  10104. "license": [
  10105. "MIT"
  10106. ],
  10107. "authors": [
  10108. {
  10109. "name": "Konstantin Kudryashov",
  10110. "email": "ever.zet@gmail.com",
  10111. "homepage": "http://everzet.com"
  10112. },
  10113. {
  10114. "name": "Marcello Duarte",
  10115. "email": "marcello.duarte@gmail.com"
  10116. }
  10117. ],
  10118. "description": "Highly opinionated mocking framework for PHP 5.3+",
  10119. "homepage": "https://github.com/phpspec/prophecy",
  10120. "keywords": [
  10121. "Double",
  10122. "Dummy",
  10123. "fake",
  10124. "mock",
  10125. "spy",
  10126. "stub"
  10127. ],
  10128. "support": {
  10129. "issues": "https://github.com/phpspec/prophecy/issues",
  10130. "source": "https://github.com/phpspec/prophecy/tree/1.12.2"
  10131. },
  10132. "time": "2020-12-19T10:15:11+00:00"
  10133. },
  10134. {
  10135. "name": "phpunit/php-code-coverage",
  10136. "version": "9.2.5",
  10137. "source": {
  10138. "type": "git",
  10139. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  10140. "reference": "f3e026641cc91909d421802dd3ac7827ebfd97e1"
  10141. },
  10142. "dist": {
  10143. "type": "zip",
  10144. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/f3e026641cc91909d421802dd3ac7827ebfd97e1",
  10145. "reference": "f3e026641cc91909d421802dd3ac7827ebfd97e1",
  10146. "shasum": ""
  10147. },
  10148. "require": {
  10149. "ext-dom": "*",
  10150. "ext-libxml": "*",
  10151. "ext-xmlwriter": "*",
  10152. "nikic/php-parser": "^4.10.2",
  10153. "php": ">=7.3",
  10154. "phpunit/php-file-iterator": "^3.0.3",
  10155. "phpunit/php-text-template": "^2.0.2",
  10156. "sebastian/code-unit-reverse-lookup": "^2.0.2",
  10157. "sebastian/complexity": "^2.0",
  10158. "sebastian/environment": "^5.1.2",
  10159. "sebastian/lines-of-code": "^1.0.3",
  10160. "sebastian/version": "^3.0.1",
  10161. "theseer/tokenizer": "^1.2.0"
  10162. },
  10163. "require-dev": {
  10164. "phpunit/phpunit": "^9.3"
  10165. },
  10166. "suggest": {
  10167. "ext-pcov": "*",
  10168. "ext-xdebug": "*"
  10169. },
  10170. "type": "library",
  10171. "extra": {
  10172. "branch-alias": {
  10173. "dev-master": "9.2-dev"
  10174. }
  10175. },
  10176. "autoload": {
  10177. "classmap": [
  10178. "src/"
  10179. ]
  10180. },
  10181. "notification-url": "https://packagist.org/downloads/",
  10182. "license": [
  10183. "BSD-3-Clause"
  10184. ],
  10185. "authors": [
  10186. {
  10187. "name": "Sebastian Bergmann",
  10188. "email": "sebastian@phpunit.de",
  10189. "role": "lead"
  10190. }
  10191. ],
  10192. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  10193. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  10194. "keywords": [
  10195. "coverage",
  10196. "testing",
  10197. "xunit"
  10198. ],
  10199. "support": {
  10200. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  10201. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/9.2.5"
  10202. },
  10203. "funding": [
  10204. {
  10205. "url": "https://github.com/sebastianbergmann",
  10206. "type": "github"
  10207. }
  10208. ],
  10209. "time": "2020-11-28T06:44:49+00:00"
  10210. },
  10211. {
  10212. "name": "phpunit/php-file-iterator",
  10213. "version": "3.0.5",
  10214. "source": {
  10215. "type": "git",
  10216. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  10217. "reference": "aa4be8575f26070b100fccb67faabb28f21f66f8"
  10218. },
  10219. "dist": {
  10220. "type": "zip",
  10221. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/aa4be8575f26070b100fccb67faabb28f21f66f8",
  10222. "reference": "aa4be8575f26070b100fccb67faabb28f21f66f8",
  10223. "shasum": ""
  10224. },
  10225. "require": {
  10226. "php": ">=7.3"
  10227. },
  10228. "require-dev": {
  10229. "phpunit/phpunit": "^9.3"
  10230. },
  10231. "type": "library",
  10232. "extra": {
  10233. "branch-alias": {
  10234. "dev-master": "3.0-dev"
  10235. }
  10236. },
  10237. "autoload": {
  10238. "classmap": [
  10239. "src/"
  10240. ]
  10241. },
  10242. "notification-url": "https://packagist.org/downloads/",
  10243. "license": [
  10244. "BSD-3-Clause"
  10245. ],
  10246. "authors": [
  10247. {
  10248. "name": "Sebastian Bergmann",
  10249. "email": "sebastian@phpunit.de",
  10250. "role": "lead"
  10251. }
  10252. ],
  10253. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  10254. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  10255. "keywords": [
  10256. "filesystem",
  10257. "iterator"
  10258. ],
  10259. "support": {
  10260. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  10261. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/3.0.5"
  10262. },
  10263. "funding": [
  10264. {
  10265. "url": "https://github.com/sebastianbergmann",
  10266. "type": "github"
  10267. }
  10268. ],
  10269. "time": "2020-09-28T05:57:25+00:00"
  10270. },
  10271. {
  10272. "name": "phpunit/php-invoker",
  10273. "version": "3.1.1",
  10274. "source": {
  10275. "type": "git",
  10276. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  10277. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67"
  10278. },
  10279. "dist": {
  10280. "type": "zip",
  10281. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  10282. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  10283. "shasum": ""
  10284. },
  10285. "require": {
  10286. "php": ">=7.3"
  10287. },
  10288. "require-dev": {
  10289. "ext-pcntl": "*",
  10290. "phpunit/phpunit": "^9.3"
  10291. },
  10292. "suggest": {
  10293. "ext-pcntl": "*"
  10294. },
  10295. "type": "library",
  10296. "extra": {
  10297. "branch-alias": {
  10298. "dev-master": "3.1-dev"
  10299. }
  10300. },
  10301. "autoload": {
  10302. "classmap": [
  10303. "src/"
  10304. ]
  10305. },
  10306. "notification-url": "https://packagist.org/downloads/",
  10307. "license": [
  10308. "BSD-3-Clause"
  10309. ],
  10310. "authors": [
  10311. {
  10312. "name": "Sebastian Bergmann",
  10313. "email": "sebastian@phpunit.de",
  10314. "role": "lead"
  10315. }
  10316. ],
  10317. "description": "Invoke callables with a timeout",
  10318. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  10319. "keywords": [
  10320. "process"
  10321. ],
  10322. "support": {
  10323. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  10324. "source": "https://github.com/sebastianbergmann/php-invoker/tree/3.1.1"
  10325. },
  10326. "funding": [
  10327. {
  10328. "url": "https://github.com/sebastianbergmann",
  10329. "type": "github"
  10330. }
  10331. ],
  10332. "time": "2020-09-28T05:58:55+00:00"
  10333. },
  10334. {
  10335. "name": "phpunit/php-text-template",
  10336. "version": "2.0.4",
  10337. "source": {
  10338. "type": "git",
  10339. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  10340. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28"
  10341. },
  10342. "dist": {
  10343. "type": "zip",
  10344. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  10345. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  10346. "shasum": ""
  10347. },
  10348. "require": {
  10349. "php": ">=7.3"
  10350. },
  10351. "require-dev": {
  10352. "phpunit/phpunit": "^9.3"
  10353. },
  10354. "type": "library",
  10355. "extra": {
  10356. "branch-alias": {
  10357. "dev-master": "2.0-dev"
  10358. }
  10359. },
  10360. "autoload": {
  10361. "classmap": [
  10362. "src/"
  10363. ]
  10364. },
  10365. "notification-url": "https://packagist.org/downloads/",
  10366. "license": [
  10367. "BSD-3-Clause"
  10368. ],
  10369. "authors": [
  10370. {
  10371. "name": "Sebastian Bergmann",
  10372. "email": "sebastian@phpunit.de",
  10373. "role": "lead"
  10374. }
  10375. ],
  10376. "description": "Simple template engine.",
  10377. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  10378. "keywords": [
  10379. "template"
  10380. ],
  10381. "support": {
  10382. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  10383. "source": "https://github.com/sebastianbergmann/php-text-template/tree/2.0.4"
  10384. },
  10385. "funding": [
  10386. {
  10387. "url": "https://github.com/sebastianbergmann",
  10388. "type": "github"
  10389. }
  10390. ],
  10391. "time": "2020-10-26T05:33:50+00:00"
  10392. },
  10393. {
  10394. "name": "phpunit/php-timer",
  10395. "version": "5.0.3",
  10396. "source": {
  10397. "type": "git",
  10398. "url": "https://github.com/sebastianbergmann/php-timer.git",
  10399. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2"
  10400. },
  10401. "dist": {
  10402. "type": "zip",
  10403. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  10404. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  10405. "shasum": ""
  10406. },
  10407. "require": {
  10408. "php": ">=7.3"
  10409. },
  10410. "require-dev": {
  10411. "phpunit/phpunit": "^9.3"
  10412. },
  10413. "type": "library",
  10414. "extra": {
  10415. "branch-alias": {
  10416. "dev-master": "5.0-dev"
  10417. }
  10418. },
  10419. "autoload": {
  10420. "classmap": [
  10421. "src/"
  10422. ]
  10423. },
  10424. "notification-url": "https://packagist.org/downloads/",
  10425. "license": [
  10426. "BSD-3-Clause"
  10427. ],
  10428. "authors": [
  10429. {
  10430. "name": "Sebastian Bergmann",
  10431. "email": "sebastian@phpunit.de",
  10432. "role": "lead"
  10433. }
  10434. ],
  10435. "description": "Utility class for timing",
  10436. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  10437. "keywords": [
  10438. "timer"
  10439. ],
  10440. "support": {
  10441. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  10442. "source": "https://github.com/sebastianbergmann/php-timer/tree/5.0.3"
  10443. },
  10444. "funding": [
  10445. {
  10446. "url": "https://github.com/sebastianbergmann",
  10447. "type": "github"
  10448. }
  10449. ],
  10450. "time": "2020-10-26T13:16:10+00:00"
  10451. },
  10452. {
  10453. "name": "phpunit/phpunit",
  10454. "version": "9.5.0",
  10455. "source": {
  10456. "type": "git",
  10457. "url": "https://github.com/sebastianbergmann/phpunit.git",
  10458. "reference": "8e16c225d57c3d6808014df6b1dd7598d0a5bbbe"
  10459. },
  10460. "dist": {
  10461. "type": "zip",
  10462. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/8e16c225d57c3d6808014df6b1dd7598d0a5bbbe",
  10463. "reference": "8e16c225d57c3d6808014df6b1dd7598d0a5bbbe",
  10464. "shasum": ""
  10465. },
  10466. "require": {
  10467. "doctrine/instantiator": "^1.3.1",
  10468. "ext-dom": "*",
  10469. "ext-json": "*",
  10470. "ext-libxml": "*",
  10471. "ext-mbstring": "*",
  10472. "ext-xml": "*",
  10473. "ext-xmlwriter": "*",
  10474. "myclabs/deep-copy": "^1.10.1",
  10475. "phar-io/manifest": "^2.0.1",
  10476. "phar-io/version": "^3.0.2",
  10477. "php": ">=7.3",
  10478. "phpspec/prophecy": "^1.12.1",
  10479. "phpunit/php-code-coverage": "^9.2.3",
  10480. "phpunit/php-file-iterator": "^3.0.5",
  10481. "phpunit/php-invoker": "^3.1.1",
  10482. "phpunit/php-text-template": "^2.0.3",
  10483. "phpunit/php-timer": "^5.0.2",
  10484. "sebastian/cli-parser": "^1.0.1",
  10485. "sebastian/code-unit": "^1.0.6",
  10486. "sebastian/comparator": "^4.0.5",
  10487. "sebastian/diff": "^4.0.3",
  10488. "sebastian/environment": "^5.1.3",
  10489. "sebastian/exporter": "^4.0.3",
  10490. "sebastian/global-state": "^5.0.1",
  10491. "sebastian/object-enumerator": "^4.0.3",
  10492. "sebastian/resource-operations": "^3.0.3",
  10493. "sebastian/type": "^2.3",
  10494. "sebastian/version": "^3.0.2"
  10495. },
  10496. "require-dev": {
  10497. "ext-pdo": "*",
  10498. "phpspec/prophecy-phpunit": "^2.0.1"
  10499. },
  10500. "suggest": {
  10501. "ext-soap": "*",
  10502. "ext-xdebug": "*"
  10503. },
  10504. "bin": [
  10505. "phpunit"
  10506. ],
  10507. "type": "library",
  10508. "extra": {
  10509. "branch-alias": {
  10510. "dev-master": "9.5-dev"
  10511. }
  10512. },
  10513. "autoload": {
  10514. "classmap": [
  10515. "src/"
  10516. ],
  10517. "files": [
  10518. "src/Framework/Assert/Functions.php"
  10519. ]
  10520. },
  10521. "notification-url": "https://packagist.org/downloads/",
  10522. "license": [
  10523. "BSD-3-Clause"
  10524. ],
  10525. "authors": [
  10526. {
  10527. "name": "Sebastian Bergmann",
  10528. "email": "sebastian@phpunit.de",
  10529. "role": "lead"
  10530. }
  10531. ],
  10532. "description": "The PHP Unit Testing framework.",
  10533. "homepage": "https://phpunit.de/",
  10534. "keywords": [
  10535. "phpunit",
  10536. "testing",
  10537. "xunit"
  10538. ],
  10539. "support": {
  10540. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  10541. "source": "https://github.com/sebastianbergmann/phpunit/tree/9.5.0"
  10542. },
  10543. "funding": [
  10544. {
  10545. "url": "https://phpunit.de/donate.html",
  10546. "type": "custom"
  10547. },
  10548. {
  10549. "url": "https://github.com/sebastianbergmann",
  10550. "type": "github"
  10551. }
  10552. ],
  10553. "time": "2020-12-04T05:05:53+00:00"
  10554. },
  10555. {
  10556. "name": "react/promise",
  10557. "version": "v2.8.0",
  10558. "source": {
  10559. "type": "git",
  10560. "url": "https://github.com/reactphp/promise.git",
  10561. "reference": "f3cff96a19736714524ca0dd1d4130de73dbbbc4"
  10562. },
  10563. "dist": {
  10564. "type": "zip",
  10565. "url": "https://api.github.com/repos/reactphp/promise/zipball/f3cff96a19736714524ca0dd1d4130de73dbbbc4",
  10566. "reference": "f3cff96a19736714524ca0dd1d4130de73dbbbc4",
  10567. "shasum": ""
  10568. },
  10569. "require": {
  10570. "php": ">=5.4.0"
  10571. },
  10572. "require-dev": {
  10573. "phpunit/phpunit": "^7.0 || ^6.5 || ^5.7 || ^4.8.36"
  10574. },
  10575. "type": "library",
  10576. "autoload": {
  10577. "psr-4": {
  10578. "React\\Promise\\": "src/"
  10579. },
  10580. "files": [
  10581. "src/functions_include.php"
  10582. ]
  10583. },
  10584. "notification-url": "https://packagist.org/downloads/",
  10585. "license": [
  10586. "MIT"
  10587. ],
  10588. "authors": [
  10589. {
  10590. "name": "Jan Sorgalla",
  10591. "email": "jsorgalla@gmail.com"
  10592. }
  10593. ],
  10594. "description": "A lightweight implementation of CommonJS Promises/A for PHP",
  10595. "keywords": [
  10596. "promise",
  10597. "promises"
  10598. ],
  10599. "support": {
  10600. "issues": "https://github.com/reactphp/promise/issues",
  10601. "source": "https://github.com/reactphp/promise/tree/v2.8.0"
  10602. },
  10603. "time": "2020-05-12T15:16:56+00:00"
  10604. },
  10605. {
  10606. "name": "sebastian/cli-parser",
  10607. "version": "1.0.1",
  10608. "source": {
  10609. "type": "git",
  10610. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  10611. "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2"
  10612. },
  10613. "dist": {
  10614. "type": "zip",
  10615. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/442e7c7e687e42adc03470c7b668bc4b2402c0b2",
  10616. "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2",
  10617. "shasum": ""
  10618. },
  10619. "require": {
  10620. "php": ">=7.3"
  10621. },
  10622. "require-dev": {
  10623. "phpunit/phpunit": "^9.3"
  10624. },
  10625. "type": "library",
  10626. "extra": {
  10627. "branch-alias": {
  10628. "dev-master": "1.0-dev"
  10629. }
  10630. },
  10631. "autoload": {
  10632. "classmap": [
  10633. "src/"
  10634. ]
  10635. },
  10636. "notification-url": "https://packagist.org/downloads/",
  10637. "license": [
  10638. "BSD-3-Clause"
  10639. ],
  10640. "authors": [
  10641. {
  10642. "name": "Sebastian Bergmann",
  10643. "email": "sebastian@phpunit.de",
  10644. "role": "lead"
  10645. }
  10646. ],
  10647. "description": "Library for parsing CLI options",
  10648. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  10649. "support": {
  10650. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  10651. "source": "https://github.com/sebastianbergmann/cli-parser/tree/1.0.1"
  10652. },
  10653. "funding": [
  10654. {
  10655. "url": "https://github.com/sebastianbergmann",
  10656. "type": "github"
  10657. }
  10658. ],
  10659. "time": "2020-09-28T06:08:49+00:00"
  10660. },
  10661. {
  10662. "name": "sebastian/code-unit",
  10663. "version": "1.0.8",
  10664. "source": {
  10665. "type": "git",
  10666. "url": "https://github.com/sebastianbergmann/code-unit.git",
  10667. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120"
  10668. },
  10669. "dist": {
  10670. "type": "zip",
  10671. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/1fc9f64c0927627ef78ba436c9b17d967e68e120",
  10672. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120",
  10673. "shasum": ""
  10674. },
  10675. "require": {
  10676. "php": ">=7.3"
  10677. },
  10678. "require-dev": {
  10679. "phpunit/phpunit": "^9.3"
  10680. },
  10681. "type": "library",
  10682. "extra": {
  10683. "branch-alias": {
  10684. "dev-master": "1.0-dev"
  10685. }
  10686. },
  10687. "autoload": {
  10688. "classmap": [
  10689. "src/"
  10690. ]
  10691. },
  10692. "notification-url": "https://packagist.org/downloads/",
  10693. "license": [
  10694. "BSD-3-Clause"
  10695. ],
  10696. "authors": [
  10697. {
  10698. "name": "Sebastian Bergmann",
  10699. "email": "sebastian@phpunit.de",
  10700. "role": "lead"
  10701. }
  10702. ],
  10703. "description": "Collection of value objects that represent the PHP code units",
  10704. "homepage": "https://github.com/sebastianbergmann/code-unit",
  10705. "support": {
  10706. "issues": "https://github.com/sebastianbergmann/code-unit/issues",
  10707. "source": "https://github.com/sebastianbergmann/code-unit/tree/1.0.8"
  10708. },
  10709. "funding": [
  10710. {
  10711. "url": "https://github.com/sebastianbergmann",
  10712. "type": "github"
  10713. }
  10714. ],
  10715. "time": "2020-10-26T13:08:54+00:00"
  10716. },
  10717. {
  10718. "name": "sebastian/code-unit-reverse-lookup",
  10719. "version": "2.0.3",
  10720. "source": {
  10721. "type": "git",
  10722. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  10723. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5"
  10724. },
  10725. "dist": {
  10726. "type": "zip",
  10727. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  10728. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  10729. "shasum": ""
  10730. },
  10731. "require": {
  10732. "php": ">=7.3"
  10733. },
  10734. "require-dev": {
  10735. "phpunit/phpunit": "^9.3"
  10736. },
  10737. "type": "library",
  10738. "extra": {
  10739. "branch-alias": {
  10740. "dev-master": "2.0-dev"
  10741. }
  10742. },
  10743. "autoload": {
  10744. "classmap": [
  10745. "src/"
  10746. ]
  10747. },
  10748. "notification-url": "https://packagist.org/downloads/",
  10749. "license": [
  10750. "BSD-3-Clause"
  10751. ],
  10752. "authors": [
  10753. {
  10754. "name": "Sebastian Bergmann",
  10755. "email": "sebastian@phpunit.de"
  10756. }
  10757. ],
  10758. "description": "Looks up which function or method a line of code belongs to",
  10759. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  10760. "support": {
  10761. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  10762. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/2.0.3"
  10763. },
  10764. "funding": [
  10765. {
  10766. "url": "https://github.com/sebastianbergmann",
  10767. "type": "github"
  10768. }
  10769. ],
  10770. "time": "2020-09-28T05:30:19+00:00"
  10771. },
  10772. {
  10773. "name": "sebastian/comparator",
  10774. "version": "4.0.6",
  10775. "source": {
  10776. "type": "git",
  10777. "url": "https://github.com/sebastianbergmann/comparator.git",
  10778. "reference": "55f4261989e546dc112258c7a75935a81a7ce382"
  10779. },
  10780. "dist": {
  10781. "type": "zip",
  10782. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/55f4261989e546dc112258c7a75935a81a7ce382",
  10783. "reference": "55f4261989e546dc112258c7a75935a81a7ce382",
  10784. "shasum": ""
  10785. },
  10786. "require": {
  10787. "php": ">=7.3",
  10788. "sebastian/diff": "^4.0",
  10789. "sebastian/exporter": "^4.0"
  10790. },
  10791. "require-dev": {
  10792. "phpunit/phpunit": "^9.3"
  10793. },
  10794. "type": "library",
  10795. "extra": {
  10796. "branch-alias": {
  10797. "dev-master": "4.0-dev"
  10798. }
  10799. },
  10800. "autoload": {
  10801. "classmap": [
  10802. "src/"
  10803. ]
  10804. },
  10805. "notification-url": "https://packagist.org/downloads/",
  10806. "license": [
  10807. "BSD-3-Clause"
  10808. ],
  10809. "authors": [
  10810. {
  10811. "name": "Sebastian Bergmann",
  10812. "email": "sebastian@phpunit.de"
  10813. },
  10814. {
  10815. "name": "Jeff Welch",
  10816. "email": "whatthejeff@gmail.com"
  10817. },
  10818. {
  10819. "name": "Volker Dusch",
  10820. "email": "github@wallbash.com"
  10821. },
  10822. {
  10823. "name": "Bernhard Schussek",
  10824. "email": "bschussek@2bepublished.at"
  10825. }
  10826. ],
  10827. "description": "Provides the functionality to compare PHP values for equality",
  10828. "homepage": "https://github.com/sebastianbergmann/comparator",
  10829. "keywords": [
  10830. "comparator",
  10831. "compare",
  10832. "equality"
  10833. ],
  10834. "support": {
  10835. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  10836. "source": "https://github.com/sebastianbergmann/comparator/tree/4.0.6"
  10837. },
  10838. "funding": [
  10839. {
  10840. "url": "https://github.com/sebastianbergmann",
  10841. "type": "github"
  10842. }
  10843. ],
  10844. "time": "2020-10-26T15:49:45+00:00"
  10845. },
  10846. {
  10847. "name": "sebastian/complexity",
  10848. "version": "2.0.2",
  10849. "source": {
  10850. "type": "git",
  10851. "url": "https://github.com/sebastianbergmann/complexity.git",
  10852. "reference": "739b35e53379900cc9ac327b2147867b8b6efd88"
  10853. },
  10854. "dist": {
  10855. "type": "zip",
  10856. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/739b35e53379900cc9ac327b2147867b8b6efd88",
  10857. "reference": "739b35e53379900cc9ac327b2147867b8b6efd88",
  10858. "shasum": ""
  10859. },
  10860. "require": {
  10861. "nikic/php-parser": "^4.7",
  10862. "php": ">=7.3"
  10863. },
  10864. "require-dev": {
  10865. "phpunit/phpunit": "^9.3"
  10866. },
  10867. "type": "library",
  10868. "extra": {
  10869. "branch-alias": {
  10870. "dev-master": "2.0-dev"
  10871. }
  10872. },
  10873. "autoload": {
  10874. "classmap": [
  10875. "src/"
  10876. ]
  10877. },
  10878. "notification-url": "https://packagist.org/downloads/",
  10879. "license": [
  10880. "BSD-3-Clause"
  10881. ],
  10882. "authors": [
  10883. {
  10884. "name": "Sebastian Bergmann",
  10885. "email": "sebastian@phpunit.de",
  10886. "role": "lead"
  10887. }
  10888. ],
  10889. "description": "Library for calculating the complexity of PHP code units",
  10890. "homepage": "https://github.com/sebastianbergmann/complexity",
  10891. "support": {
  10892. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  10893. "source": "https://github.com/sebastianbergmann/complexity/tree/2.0.2"
  10894. },
  10895. "funding": [
  10896. {
  10897. "url": "https://github.com/sebastianbergmann",
  10898. "type": "github"
  10899. }
  10900. ],
  10901. "time": "2020-10-26T15:52:27+00:00"
  10902. },
  10903. {
  10904. "name": "sebastian/diff",
  10905. "version": "4.0.4",
  10906. "source": {
  10907. "type": "git",
  10908. "url": "https://github.com/sebastianbergmann/diff.git",
  10909. "reference": "3461e3fccc7cfdfc2720be910d3bd73c69be590d"
  10910. },
  10911. "dist": {
  10912. "type": "zip",
  10913. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/3461e3fccc7cfdfc2720be910d3bd73c69be590d",
  10914. "reference": "3461e3fccc7cfdfc2720be910d3bd73c69be590d",
  10915. "shasum": ""
  10916. },
  10917. "require": {
  10918. "php": ">=7.3"
  10919. },
  10920. "require-dev": {
  10921. "phpunit/phpunit": "^9.3",
  10922. "symfony/process": "^4.2 || ^5"
  10923. },
  10924. "type": "library",
  10925. "extra": {
  10926. "branch-alias": {
  10927. "dev-master": "4.0-dev"
  10928. }
  10929. },
  10930. "autoload": {
  10931. "classmap": [
  10932. "src/"
  10933. ]
  10934. },
  10935. "notification-url": "https://packagist.org/downloads/",
  10936. "license": [
  10937. "BSD-3-Clause"
  10938. ],
  10939. "authors": [
  10940. {
  10941. "name": "Sebastian Bergmann",
  10942. "email": "sebastian@phpunit.de"
  10943. },
  10944. {
  10945. "name": "Kore Nordmann",
  10946. "email": "mail@kore-nordmann.de"
  10947. }
  10948. ],
  10949. "description": "Diff implementation",
  10950. "homepage": "https://github.com/sebastianbergmann/diff",
  10951. "keywords": [
  10952. "diff",
  10953. "udiff",
  10954. "unidiff",
  10955. "unified diff"
  10956. ],
  10957. "support": {
  10958. "issues": "https://github.com/sebastianbergmann/diff/issues",
  10959. "source": "https://github.com/sebastianbergmann/diff/tree/4.0.4"
  10960. },
  10961. "funding": [
  10962. {
  10963. "url": "https://github.com/sebastianbergmann",
  10964. "type": "github"
  10965. }
  10966. ],
  10967. "time": "2020-10-26T13:10:38+00:00"
  10968. },
  10969. {
  10970. "name": "sebastian/environment",
  10971. "version": "5.1.3",
  10972. "source": {
  10973. "type": "git",
  10974. "url": "https://github.com/sebastianbergmann/environment.git",
  10975. "reference": "388b6ced16caa751030f6a69e588299fa09200ac"
  10976. },
  10977. "dist": {
  10978. "type": "zip",
  10979. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/388b6ced16caa751030f6a69e588299fa09200ac",
  10980. "reference": "388b6ced16caa751030f6a69e588299fa09200ac",
  10981. "shasum": ""
  10982. },
  10983. "require": {
  10984. "php": ">=7.3"
  10985. },
  10986. "require-dev": {
  10987. "phpunit/phpunit": "^9.3"
  10988. },
  10989. "suggest": {
  10990. "ext-posix": "*"
  10991. },
  10992. "type": "library",
  10993. "extra": {
  10994. "branch-alias": {
  10995. "dev-master": "5.1-dev"
  10996. }
  10997. },
  10998. "autoload": {
  10999. "classmap": [
  11000. "src/"
  11001. ]
  11002. },
  11003. "notification-url": "https://packagist.org/downloads/",
  11004. "license": [
  11005. "BSD-3-Clause"
  11006. ],
  11007. "authors": [
  11008. {
  11009. "name": "Sebastian Bergmann",
  11010. "email": "sebastian@phpunit.de"
  11011. }
  11012. ],
  11013. "description": "Provides functionality to handle HHVM/PHP environments",
  11014. "homepage": "http://www.github.com/sebastianbergmann/environment",
  11015. "keywords": [
  11016. "Xdebug",
  11017. "environment",
  11018. "hhvm"
  11019. ],
  11020. "support": {
  11021. "issues": "https://github.com/sebastianbergmann/environment/issues",
  11022. "source": "https://github.com/sebastianbergmann/environment/tree/5.1.3"
  11023. },
  11024. "funding": [
  11025. {
  11026. "url": "https://github.com/sebastianbergmann",
  11027. "type": "github"
  11028. }
  11029. ],
  11030. "time": "2020-09-28T05:52:38+00:00"
  11031. },
  11032. {
  11033. "name": "sebastian/exporter",
  11034. "version": "4.0.3",
  11035. "source": {
  11036. "type": "git",
  11037. "url": "https://github.com/sebastianbergmann/exporter.git",
  11038. "reference": "d89cc98761b8cb5a1a235a6b703ae50d34080e65"
  11039. },
  11040. "dist": {
  11041. "type": "zip",
  11042. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/d89cc98761b8cb5a1a235a6b703ae50d34080e65",
  11043. "reference": "d89cc98761b8cb5a1a235a6b703ae50d34080e65",
  11044. "shasum": ""
  11045. },
  11046. "require": {
  11047. "php": ">=7.3",
  11048. "sebastian/recursion-context": "^4.0"
  11049. },
  11050. "require-dev": {
  11051. "ext-mbstring": "*",
  11052. "phpunit/phpunit": "^9.3"
  11053. },
  11054. "type": "library",
  11055. "extra": {
  11056. "branch-alias": {
  11057. "dev-master": "4.0-dev"
  11058. }
  11059. },
  11060. "autoload": {
  11061. "classmap": [
  11062. "src/"
  11063. ]
  11064. },
  11065. "notification-url": "https://packagist.org/downloads/",
  11066. "license": [
  11067. "BSD-3-Clause"
  11068. ],
  11069. "authors": [
  11070. {
  11071. "name": "Sebastian Bergmann",
  11072. "email": "sebastian@phpunit.de"
  11073. },
  11074. {
  11075. "name": "Jeff Welch",
  11076. "email": "whatthejeff@gmail.com"
  11077. },
  11078. {
  11079. "name": "Volker Dusch",
  11080. "email": "github@wallbash.com"
  11081. },
  11082. {
  11083. "name": "Adam Harvey",
  11084. "email": "aharvey@php.net"
  11085. },
  11086. {
  11087. "name": "Bernhard Schussek",
  11088. "email": "bschussek@gmail.com"
  11089. }
  11090. ],
  11091. "description": "Provides the functionality to export PHP variables for visualization",
  11092. "homepage": "http://www.github.com/sebastianbergmann/exporter",
  11093. "keywords": [
  11094. "export",
  11095. "exporter"
  11096. ],
  11097. "support": {
  11098. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  11099. "source": "https://github.com/sebastianbergmann/exporter/tree/4.0.3"
  11100. },
  11101. "funding": [
  11102. {
  11103. "url": "https://github.com/sebastianbergmann",
  11104. "type": "github"
  11105. }
  11106. ],
  11107. "time": "2020-09-28T05:24:23+00:00"
  11108. },
  11109. {
  11110. "name": "sebastian/global-state",
  11111. "version": "5.0.2",
  11112. "source": {
  11113. "type": "git",
  11114. "url": "https://github.com/sebastianbergmann/global-state.git",
  11115. "reference": "a90ccbddffa067b51f574dea6eb25d5680839455"
  11116. },
  11117. "dist": {
  11118. "type": "zip",
  11119. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/a90ccbddffa067b51f574dea6eb25d5680839455",
  11120. "reference": "a90ccbddffa067b51f574dea6eb25d5680839455",
  11121. "shasum": ""
  11122. },
  11123. "require": {
  11124. "php": ">=7.3",
  11125. "sebastian/object-reflector": "^2.0",
  11126. "sebastian/recursion-context": "^4.0"
  11127. },
  11128. "require-dev": {
  11129. "ext-dom": "*",
  11130. "phpunit/phpunit": "^9.3"
  11131. },
  11132. "suggest": {
  11133. "ext-uopz": "*"
  11134. },
  11135. "type": "library",
  11136. "extra": {
  11137. "branch-alias": {
  11138. "dev-master": "5.0-dev"
  11139. }
  11140. },
  11141. "autoload": {
  11142. "classmap": [
  11143. "src/"
  11144. ]
  11145. },
  11146. "notification-url": "https://packagist.org/downloads/",
  11147. "license": [
  11148. "BSD-3-Clause"
  11149. ],
  11150. "authors": [
  11151. {
  11152. "name": "Sebastian Bergmann",
  11153. "email": "sebastian@phpunit.de"
  11154. }
  11155. ],
  11156. "description": "Snapshotting of global state",
  11157. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  11158. "keywords": [
  11159. "global state"
  11160. ],
  11161. "support": {
  11162. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  11163. "source": "https://github.com/sebastianbergmann/global-state/tree/5.0.2"
  11164. },
  11165. "funding": [
  11166. {
  11167. "url": "https://github.com/sebastianbergmann",
  11168. "type": "github"
  11169. }
  11170. ],
  11171. "time": "2020-10-26T15:55:19+00:00"
  11172. },
  11173. {
  11174. "name": "sebastian/lines-of-code",
  11175. "version": "1.0.3",
  11176. "source": {
  11177. "type": "git",
  11178. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  11179. "reference": "c1c2e997aa3146983ed888ad08b15470a2e22ecc"
  11180. },
  11181. "dist": {
  11182. "type": "zip",
  11183. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/c1c2e997aa3146983ed888ad08b15470a2e22ecc",
  11184. "reference": "c1c2e997aa3146983ed888ad08b15470a2e22ecc",
  11185. "shasum": ""
  11186. },
  11187. "require": {
  11188. "nikic/php-parser": "^4.6",
  11189. "php": ">=7.3"
  11190. },
  11191. "require-dev": {
  11192. "phpunit/phpunit": "^9.3"
  11193. },
  11194. "type": "library",
  11195. "extra": {
  11196. "branch-alias": {
  11197. "dev-master": "1.0-dev"
  11198. }
  11199. },
  11200. "autoload": {
  11201. "classmap": [
  11202. "src/"
  11203. ]
  11204. },
  11205. "notification-url": "https://packagist.org/downloads/",
  11206. "license": [
  11207. "BSD-3-Clause"
  11208. ],
  11209. "authors": [
  11210. {
  11211. "name": "Sebastian Bergmann",
  11212. "email": "sebastian@phpunit.de",
  11213. "role": "lead"
  11214. }
  11215. ],
  11216. "description": "Library for counting the lines of code in PHP source code",
  11217. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  11218. "support": {
  11219. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  11220. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/1.0.3"
  11221. },
  11222. "funding": [
  11223. {
  11224. "url": "https://github.com/sebastianbergmann",
  11225. "type": "github"
  11226. }
  11227. ],
  11228. "time": "2020-11-28T06:42:11+00:00"
  11229. },
  11230. {
  11231. "name": "sebastian/object-enumerator",
  11232. "version": "4.0.4",
  11233. "source": {
  11234. "type": "git",
  11235. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  11236. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71"
  11237. },
  11238. "dist": {
  11239. "type": "zip",
  11240. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/5c9eeac41b290a3712d88851518825ad78f45c71",
  11241. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71",
  11242. "shasum": ""
  11243. },
  11244. "require": {
  11245. "php": ">=7.3",
  11246. "sebastian/object-reflector": "^2.0",
  11247. "sebastian/recursion-context": "^4.0"
  11248. },
  11249. "require-dev": {
  11250. "phpunit/phpunit": "^9.3"
  11251. },
  11252. "type": "library",
  11253. "extra": {
  11254. "branch-alias": {
  11255. "dev-master": "4.0-dev"
  11256. }
  11257. },
  11258. "autoload": {
  11259. "classmap": [
  11260. "src/"
  11261. ]
  11262. },
  11263. "notification-url": "https://packagist.org/downloads/",
  11264. "license": [
  11265. "BSD-3-Clause"
  11266. ],
  11267. "authors": [
  11268. {
  11269. "name": "Sebastian Bergmann",
  11270. "email": "sebastian@phpunit.de"
  11271. }
  11272. ],
  11273. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  11274. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  11275. "support": {
  11276. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  11277. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/4.0.4"
  11278. },
  11279. "funding": [
  11280. {
  11281. "url": "https://github.com/sebastianbergmann",
  11282. "type": "github"
  11283. }
  11284. ],
  11285. "time": "2020-10-26T13:12:34+00:00"
  11286. },
  11287. {
  11288. "name": "sebastian/object-reflector",
  11289. "version": "2.0.4",
  11290. "source": {
  11291. "type": "git",
  11292. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  11293. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7"
  11294. },
  11295. "dist": {
  11296. "type": "zip",
  11297. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  11298. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  11299. "shasum": ""
  11300. },
  11301. "require": {
  11302. "php": ">=7.3"
  11303. },
  11304. "require-dev": {
  11305. "phpunit/phpunit": "^9.3"
  11306. },
  11307. "type": "library",
  11308. "extra": {
  11309. "branch-alias": {
  11310. "dev-master": "2.0-dev"
  11311. }
  11312. },
  11313. "autoload": {
  11314. "classmap": [
  11315. "src/"
  11316. ]
  11317. },
  11318. "notification-url": "https://packagist.org/downloads/",
  11319. "license": [
  11320. "BSD-3-Clause"
  11321. ],
  11322. "authors": [
  11323. {
  11324. "name": "Sebastian Bergmann",
  11325. "email": "sebastian@phpunit.de"
  11326. }
  11327. ],
  11328. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  11329. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  11330. "support": {
  11331. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  11332. "source": "https://github.com/sebastianbergmann/object-reflector/tree/2.0.4"
  11333. },
  11334. "funding": [
  11335. {
  11336. "url": "https://github.com/sebastianbergmann",
  11337. "type": "github"
  11338. }
  11339. ],
  11340. "time": "2020-10-26T13:14:26+00:00"
  11341. },
  11342. {
  11343. "name": "sebastian/recursion-context",
  11344. "version": "4.0.4",
  11345. "source": {
  11346. "type": "git",
  11347. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  11348. "reference": "cd9d8cf3c5804de4341c283ed787f099f5506172"
  11349. },
  11350. "dist": {
  11351. "type": "zip",
  11352. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/cd9d8cf3c5804de4341c283ed787f099f5506172",
  11353. "reference": "cd9d8cf3c5804de4341c283ed787f099f5506172",
  11354. "shasum": ""
  11355. },
  11356. "require": {
  11357. "php": ">=7.3"
  11358. },
  11359. "require-dev": {
  11360. "phpunit/phpunit": "^9.3"
  11361. },
  11362. "type": "library",
  11363. "extra": {
  11364. "branch-alias": {
  11365. "dev-master": "4.0-dev"
  11366. }
  11367. },
  11368. "autoload": {
  11369. "classmap": [
  11370. "src/"
  11371. ]
  11372. },
  11373. "notification-url": "https://packagist.org/downloads/",
  11374. "license": [
  11375. "BSD-3-Clause"
  11376. ],
  11377. "authors": [
  11378. {
  11379. "name": "Sebastian Bergmann",
  11380. "email": "sebastian@phpunit.de"
  11381. },
  11382. {
  11383. "name": "Jeff Welch",
  11384. "email": "whatthejeff@gmail.com"
  11385. },
  11386. {
  11387. "name": "Adam Harvey",
  11388. "email": "aharvey@php.net"
  11389. }
  11390. ],
  11391. "description": "Provides functionality to recursively process PHP variables",
  11392. "homepage": "http://www.github.com/sebastianbergmann/recursion-context",
  11393. "support": {
  11394. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  11395. "source": "https://github.com/sebastianbergmann/recursion-context/tree/4.0.4"
  11396. },
  11397. "funding": [
  11398. {
  11399. "url": "https://github.com/sebastianbergmann",
  11400. "type": "github"
  11401. }
  11402. ],
  11403. "time": "2020-10-26T13:17:30+00:00"
  11404. },
  11405. {
  11406. "name": "sebastian/resource-operations",
  11407. "version": "3.0.3",
  11408. "source": {
  11409. "type": "git",
  11410. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  11411. "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8"
  11412. },
  11413. "dist": {
  11414. "type": "zip",
  11415. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8",
  11416. "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8",
  11417. "shasum": ""
  11418. },
  11419. "require": {
  11420. "php": ">=7.3"
  11421. },
  11422. "require-dev": {
  11423. "phpunit/phpunit": "^9.0"
  11424. },
  11425. "type": "library",
  11426. "extra": {
  11427. "branch-alias": {
  11428. "dev-master": "3.0-dev"
  11429. }
  11430. },
  11431. "autoload": {
  11432. "classmap": [
  11433. "src/"
  11434. ]
  11435. },
  11436. "notification-url": "https://packagist.org/downloads/",
  11437. "license": [
  11438. "BSD-3-Clause"
  11439. ],
  11440. "authors": [
  11441. {
  11442. "name": "Sebastian Bergmann",
  11443. "email": "sebastian@phpunit.de"
  11444. }
  11445. ],
  11446. "description": "Provides a list of PHP built-in functions that operate on resources",
  11447. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  11448. "support": {
  11449. "issues": "https://github.com/sebastianbergmann/resource-operations/issues",
  11450. "source": "https://github.com/sebastianbergmann/resource-operations/tree/3.0.3"
  11451. },
  11452. "funding": [
  11453. {
  11454. "url": "https://github.com/sebastianbergmann",
  11455. "type": "github"
  11456. }
  11457. ],
  11458. "time": "2020-09-28T06:45:17+00:00"
  11459. },
  11460. {
  11461. "name": "sebastian/type",
  11462. "version": "2.3.1",
  11463. "source": {
  11464. "type": "git",
  11465. "url": "https://github.com/sebastianbergmann/type.git",
  11466. "reference": "81cd61ab7bbf2de744aba0ea61fae32f721df3d2"
  11467. },
  11468. "dist": {
  11469. "type": "zip",
  11470. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/81cd61ab7bbf2de744aba0ea61fae32f721df3d2",
  11471. "reference": "81cd61ab7bbf2de744aba0ea61fae32f721df3d2",
  11472. "shasum": ""
  11473. },
  11474. "require": {
  11475. "php": ">=7.3"
  11476. },
  11477. "require-dev": {
  11478. "phpunit/phpunit": "^9.3"
  11479. },
  11480. "type": "library",
  11481. "extra": {
  11482. "branch-alias": {
  11483. "dev-master": "2.3-dev"
  11484. }
  11485. },
  11486. "autoload": {
  11487. "classmap": [
  11488. "src/"
  11489. ]
  11490. },
  11491. "notification-url": "https://packagist.org/downloads/",
  11492. "license": [
  11493. "BSD-3-Clause"
  11494. ],
  11495. "authors": [
  11496. {
  11497. "name": "Sebastian Bergmann",
  11498. "email": "sebastian@phpunit.de",
  11499. "role": "lead"
  11500. }
  11501. ],
  11502. "description": "Collection of value objects that represent the types of the PHP type system",
  11503. "homepage": "https://github.com/sebastianbergmann/type",
  11504. "support": {
  11505. "issues": "https://github.com/sebastianbergmann/type/issues",
  11506. "source": "https://github.com/sebastianbergmann/type/tree/2.3.1"
  11507. },
  11508. "funding": [
  11509. {
  11510. "url": "https://github.com/sebastianbergmann",
  11511. "type": "github"
  11512. }
  11513. ],
  11514. "time": "2020-10-26T13:18:59+00:00"
  11515. },
  11516. {
  11517. "name": "sebastian/version",
  11518. "version": "3.0.2",
  11519. "source": {
  11520. "type": "git",
  11521. "url": "https://github.com/sebastianbergmann/version.git",
  11522. "reference": "c6c1022351a901512170118436c764e473f6de8c"
  11523. },
  11524. "dist": {
  11525. "type": "zip",
  11526. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c6c1022351a901512170118436c764e473f6de8c",
  11527. "reference": "c6c1022351a901512170118436c764e473f6de8c",
  11528. "shasum": ""
  11529. },
  11530. "require": {
  11531. "php": ">=7.3"
  11532. },
  11533. "type": "library",
  11534. "extra": {
  11535. "branch-alias": {
  11536. "dev-master": "3.0-dev"
  11537. }
  11538. },
  11539. "autoload": {
  11540. "classmap": [
  11541. "src/"
  11542. ]
  11543. },
  11544. "notification-url": "https://packagist.org/downloads/",
  11545. "license": [
  11546. "BSD-3-Clause"
  11547. ],
  11548. "authors": [
  11549. {
  11550. "name": "Sebastian Bergmann",
  11551. "email": "sebastian@phpunit.de",
  11552. "role": "lead"
  11553. }
  11554. ],
  11555. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  11556. "homepage": "https://github.com/sebastianbergmann/version",
  11557. "support": {
  11558. "issues": "https://github.com/sebastianbergmann/version/issues",
  11559. "source": "https://github.com/sebastianbergmann/version/tree/3.0.2"
  11560. },
  11561. "funding": [
  11562. {
  11563. "url": "https://github.com/sebastianbergmann",
  11564. "type": "github"
  11565. }
  11566. ],
  11567. "time": "2020-09-28T06:39:44+00:00"
  11568. },
  11569. {
  11570. "name": "seld/jsonlint",
  11571. "version": "1.8.3",
  11572. "source": {
  11573. "type": "git",
  11574. "url": "https://github.com/Seldaek/jsonlint.git",
  11575. "reference": "9ad6ce79c342fbd44df10ea95511a1b24dee5b57"
  11576. },
  11577. "dist": {
  11578. "type": "zip",
  11579. "url": "https://api.github.com/repos/Seldaek/jsonlint/zipball/9ad6ce79c342fbd44df10ea95511a1b24dee5b57",
  11580. "reference": "9ad6ce79c342fbd44df10ea95511a1b24dee5b57",
  11581. "shasum": ""
  11582. },
  11583. "require": {
  11584. "php": "^5.3 || ^7.0 || ^8.0"
  11585. },
  11586. "require-dev": {
  11587. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0"
  11588. },
  11589. "bin": [
  11590. "bin/jsonlint"
  11591. ],
  11592. "type": "library",
  11593. "autoload": {
  11594. "psr-4": {
  11595. "Seld\\JsonLint\\": "src/Seld/JsonLint/"
  11596. }
  11597. },
  11598. "notification-url": "https://packagist.org/downloads/",
  11599. "license": [
  11600. "MIT"
  11601. ],
  11602. "authors": [
  11603. {
  11604. "name": "Jordi Boggiano",
  11605. "email": "j.boggiano@seld.be",
  11606. "homepage": "http://seld.be"
  11607. }
  11608. ],
  11609. "description": "JSON Linter",
  11610. "keywords": [
  11611. "json",
  11612. "linter",
  11613. "parser",
  11614. "validator"
  11615. ],
  11616. "support": {
  11617. "issues": "https://github.com/Seldaek/jsonlint/issues",
  11618. "source": "https://github.com/Seldaek/jsonlint/tree/1.8.3"
  11619. },
  11620. "funding": [
  11621. {
  11622. "url": "https://github.com/Seldaek",
  11623. "type": "github"
  11624. },
  11625. {
  11626. "url": "https://tidelift.com/funding/github/packagist/seld/jsonlint",
  11627. "type": "tidelift"
  11628. }
  11629. ],
  11630. "time": "2020-11-11T09:19:24+00:00"
  11631. },
  11632. {
  11633. "name": "seld/phar-utils",
  11634. "version": "1.1.1",
  11635. "source": {
  11636. "type": "git",
  11637. "url": "https://github.com/Seldaek/phar-utils.git",
  11638. "reference": "8674b1d84ffb47cc59a101f5d5a3b61e87d23796"
  11639. },
  11640. "dist": {
  11641. "type": "zip",
  11642. "url": "https://api.github.com/repos/Seldaek/phar-utils/zipball/8674b1d84ffb47cc59a101f5d5a3b61e87d23796",
  11643. "reference": "8674b1d84ffb47cc59a101f5d5a3b61e87d23796",
  11644. "shasum": ""
  11645. },
  11646. "require": {
  11647. "php": ">=5.3"
  11648. },
  11649. "type": "library",
  11650. "extra": {
  11651. "branch-alias": {
  11652. "dev-master": "1.x-dev"
  11653. }
  11654. },
  11655. "autoload": {
  11656. "psr-4": {
  11657. "Seld\\PharUtils\\": "src/"
  11658. }
  11659. },
  11660. "notification-url": "https://packagist.org/downloads/",
  11661. "license": [
  11662. "MIT"
  11663. ],
  11664. "authors": [
  11665. {
  11666. "name": "Jordi Boggiano",
  11667. "email": "j.boggiano@seld.be"
  11668. }
  11669. ],
  11670. "description": "PHAR file format utilities, for when PHP phars you up",
  11671. "keywords": [
  11672. "phar"
  11673. ],
  11674. "support": {
  11675. "issues": "https://github.com/Seldaek/phar-utils/issues",
  11676. "source": "https://github.com/Seldaek/phar-utils/tree/master"
  11677. },
  11678. "time": "2020-07-07T18:42:57+00:00"
  11679. },
  11680. {
  11681. "name": "symfony/debug",
  11682. "version": "v4.4.18",
  11683. "source": {
  11684. "type": "git",
  11685. "url": "https://github.com/symfony/debug.git",
  11686. "reference": "5dfc7825f3bfe9bb74b23d8b8ce0e0894e32b544"
  11687. },
  11688. "dist": {
  11689. "type": "zip",
  11690. "url": "https://api.github.com/repos/symfony/debug/zipball/5dfc7825f3bfe9bb74b23d8b8ce0e0894e32b544",
  11691. "reference": "5dfc7825f3bfe9bb74b23d8b8ce0e0894e32b544",
  11692. "shasum": ""
  11693. },
  11694. "require": {
  11695. "php": ">=7.1.3",
  11696. "psr/log": "~1.0",
  11697. "symfony/polyfill-php80": "^1.15"
  11698. },
  11699. "conflict": {
  11700. "symfony/http-kernel": "<3.4"
  11701. },
  11702. "require-dev": {
  11703. "symfony/http-kernel": "^3.4|^4.0|^5.0"
  11704. },
  11705. "type": "library",
  11706. "autoload": {
  11707. "psr-4": {
  11708. "Symfony\\Component\\Debug\\": ""
  11709. },
  11710. "exclude-from-classmap": [
  11711. "/Tests/"
  11712. ]
  11713. },
  11714. "notification-url": "https://packagist.org/downloads/",
  11715. "license": [
  11716. "MIT"
  11717. ],
  11718. "authors": [
  11719. {
  11720. "name": "Fabien Potencier",
  11721. "email": "fabien@symfony.com"
  11722. },
  11723. {
  11724. "name": "Symfony Community",
  11725. "homepage": "https://symfony.com/contributors"
  11726. }
  11727. ],
  11728. "description": "Symfony Debug Component",
  11729. "homepage": "https://symfony.com",
  11730. "support": {
  11731. "source": "https://github.com/symfony/debug/tree/v4.4.18"
  11732. },
  11733. "funding": [
  11734. {
  11735. "url": "https://symfony.com/sponsor",
  11736. "type": "custom"
  11737. },
  11738. {
  11739. "url": "https://github.com/fabpot",
  11740. "type": "github"
  11741. },
  11742. {
  11743. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11744. "type": "tidelift"
  11745. }
  11746. ],
  11747. "time": "2020-12-10T16:34:26+00:00"
  11748. },
  11749. {
  11750. "name": "symfony/filesystem",
  11751. "version": "v5.2.1",
  11752. "source": {
  11753. "type": "git",
  11754. "url": "https://github.com/symfony/filesystem.git",
  11755. "reference": "fa8f8cab6b65e2d99a118e082935344c5ba8c60d"
  11756. },
  11757. "dist": {
  11758. "type": "zip",
  11759. "url": "https://api.github.com/repos/symfony/filesystem/zipball/fa8f8cab6b65e2d99a118e082935344c5ba8c60d",
  11760. "reference": "fa8f8cab6b65e2d99a118e082935344c5ba8c60d",
  11761. "shasum": ""
  11762. },
  11763. "require": {
  11764. "php": ">=7.2.5",
  11765. "symfony/polyfill-ctype": "~1.8"
  11766. },
  11767. "type": "library",
  11768. "autoload": {
  11769. "psr-4": {
  11770. "Symfony\\Component\\Filesystem\\": ""
  11771. },
  11772. "exclude-from-classmap": [
  11773. "/Tests/"
  11774. ]
  11775. },
  11776. "notification-url": "https://packagist.org/downloads/",
  11777. "license": [
  11778. "MIT"
  11779. ],
  11780. "authors": [
  11781. {
  11782. "name": "Fabien Potencier",
  11783. "email": "fabien@symfony.com"
  11784. },
  11785. {
  11786. "name": "Symfony Community",
  11787. "homepage": "https://symfony.com/contributors"
  11788. }
  11789. ],
  11790. "description": "Symfony Filesystem Component",
  11791. "homepage": "https://symfony.com",
  11792. "support": {
  11793. "source": "https://github.com/symfony/filesystem/tree/v5.2.1"
  11794. },
  11795. "funding": [
  11796. {
  11797. "url": "https://symfony.com/sponsor",
  11798. "type": "custom"
  11799. },
  11800. {
  11801. "url": "https://github.com/fabpot",
  11802. "type": "github"
  11803. },
  11804. {
  11805. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11806. "type": "tidelift"
  11807. }
  11808. ],
  11809. "time": "2020-11-30T17:05:38+00:00"
  11810. },
  11811. {
  11812. "name": "theseer/tokenizer",
  11813. "version": "1.2.0",
  11814. "source": {
  11815. "type": "git",
  11816. "url": "https://github.com/theseer/tokenizer.git",
  11817. "reference": "75a63c33a8577608444246075ea0af0d052e452a"
  11818. },
  11819. "dist": {
  11820. "type": "zip",
  11821. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/75a63c33a8577608444246075ea0af0d052e452a",
  11822. "reference": "75a63c33a8577608444246075ea0af0d052e452a",
  11823. "shasum": ""
  11824. },
  11825. "require": {
  11826. "ext-dom": "*",
  11827. "ext-tokenizer": "*",
  11828. "ext-xmlwriter": "*",
  11829. "php": "^7.2 || ^8.0"
  11830. },
  11831. "type": "library",
  11832. "autoload": {
  11833. "classmap": [
  11834. "src/"
  11835. ]
  11836. },
  11837. "notification-url": "https://packagist.org/downloads/",
  11838. "license": [
  11839. "BSD-3-Clause"
  11840. ],
  11841. "authors": [
  11842. {
  11843. "name": "Arne Blankerts",
  11844. "email": "arne@blankerts.de",
  11845. "role": "Developer"
  11846. }
  11847. ],
  11848. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  11849. "support": {
  11850. "issues": "https://github.com/theseer/tokenizer/issues",
  11851. "source": "https://github.com/theseer/tokenizer/tree/master"
  11852. },
  11853. "funding": [
  11854. {
  11855. "url": "https://github.com/theseer",
  11856. "type": "github"
  11857. }
  11858. ],
  11859. "time": "2020-07-12T23:59:07+00:00"
  11860. },
  11861. {
  11862. "name": "webmozart/assert",
  11863. "version": "1.9.1",
  11864. "source": {
  11865. "type": "git",
  11866. "url": "https://github.com/webmozart/assert.git",
  11867. "reference": "bafc69caeb4d49c39fd0779086c03a3738cbb389"
  11868. },
  11869. "dist": {
  11870. "type": "zip",
  11871. "url": "https://api.github.com/repos/webmozart/assert/zipball/bafc69caeb4d49c39fd0779086c03a3738cbb389",
  11872. "reference": "bafc69caeb4d49c39fd0779086c03a3738cbb389",
  11873. "shasum": ""
  11874. },
  11875. "require": {
  11876. "php": "^5.3.3 || ^7.0 || ^8.0",
  11877. "symfony/polyfill-ctype": "^1.8"
  11878. },
  11879. "conflict": {
  11880. "phpstan/phpstan": "<0.12.20",
  11881. "vimeo/psalm": "<3.9.1"
  11882. },
  11883. "require-dev": {
  11884. "phpunit/phpunit": "^4.8.36 || ^7.5.13"
  11885. },
  11886. "type": "library",
  11887. "autoload": {
  11888. "psr-4": {
  11889. "Webmozart\\Assert\\": "src/"
  11890. }
  11891. },
  11892. "notification-url": "https://packagist.org/downloads/",
  11893. "license": [
  11894. "MIT"
  11895. ],
  11896. "authors": [
  11897. {
  11898. "name": "Bernhard Schussek",
  11899. "email": "bschussek@gmail.com"
  11900. }
  11901. ],
  11902. "description": "Assertions to validate method input/output with nice error messages.",
  11903. "keywords": [
  11904. "assert",
  11905. "check",
  11906. "validate"
  11907. ],
  11908. "support": {
  11909. "issues": "https://github.com/webmozart/assert/issues",
  11910. "source": "https://github.com/webmozart/assert/tree/master"
  11911. },
  11912. "time": "2020-07-08T17:02:28+00:00"
  11913. }
  11914. ],
  11915. "aliases": [],
  11916. "minimum-stability": "dev",
  11917. "stability-flags": [],
  11918. "prefer-stable": true,
  11919. "prefer-lowest": false,
  11920. "platform": {
  11921. "php": "^7.2.5|^8.0",
  11922. "ext-json": "*",
  11923. "ext-mbstring": "*",
  11924. "ext-openssl": "*",
  11925. "ext-simplexml": "*"
  11926. },
  11927. "platform-dev": [],
  11928. "plugin-api-version": "2.0.0"
  11929. }