composer.lock 416 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546105471054810549105501055110552105531055410555105561055710558105591056010561105621056310564105651056610567105681056910570105711057210573105741057510576105771057810579105801058110582105831058410585105861058710588105891059010591105921059310594105951059610597105981059910600106011060210603106041060510606106071060810609106101061110612106131061410615106161061710618106191062010621106221062310624106251062610627106281062910630106311063210633106341063510636106371063810639106401064110642106431064410645106461064710648106491065010651106521065310654106551065610657106581065910660106611066210663106641066510666106671066810669106701067110672106731067410675106761067710678106791068010681106821068310684106851068610687106881068910690106911069210693106941069510696106971069810699107001070110702107031070410705107061070710708107091071010711107121071310714107151071610717107181071910720107211072210723107241072510726107271072810729107301073110732107331073410735107361073710738107391074010741107421074310744107451074610747107481074910750107511075210753107541075510756107571075810759107601076110762107631076410765107661076710768107691077010771107721077310774107751077610777107781077910780107811078210783107841078510786107871078810789107901079110792107931079410795107961079710798107991080010801108021080310804108051080610807108081080910810108111081210813108141081510816108171081810819108201082110822108231082410825108261082710828108291083010831108321083310834108351083610837108381083910840108411084210843108441084510846108471084810849108501085110852108531085410855108561085710858108591086010861108621086310864108651086610867108681086910870108711087210873108741087510876108771087810879108801088110882108831088410885108861088710888108891089010891108921089310894108951089610897108981089910900109011090210903109041090510906109071090810909109101091110912109131091410915109161091710918109191092010921109221092310924109251092610927109281092910930109311093210933109341093510936109371093810939109401094110942109431094410945109461094710948109491095010951109521095310954109551095610957109581095910960109611096210963109641096510966109671096810969109701097110972109731097410975109761097710978109791098010981109821098310984109851098610987109881098910990109911099210993109941099510996109971099810999110001100111002110031100411005110061100711008110091101011011110121101311014110151101611017110181101911020110211102211023110241102511026110271102811029110301103111032110331103411035110361103711038110391104011041110421104311044110451104611047110481104911050110511105211053110541105511056110571105811059110601106111062110631106411065110661106711068110691107011071110721107311074110751107611077110781107911080110811108211083110841108511086110871108811089110901109111092110931109411095110961109711098110991110011101111021110311104111051110611107111081110911110111111111211113111141111511116111171111811119111201112111122111231112411125111261112711128111291113011131111321113311134111351113611137111381113911140111411114211143111441114511146111471114811149111501115111152111531115411155111561115711158111591116011161111621116311164111651116611167111681116911170111711117211173111741117511176111771117811179111801118111182111831118411185111861118711188111891119011191111921119311194111951119611197111981119911200112011120211203112041120511206112071120811209112101121111212112131121411215112161121711218112191122011221112221122311224112251122611227112281122911230112311123211233112341123511236112371123811239112401124111242112431124411245112461124711248112491125011251112521125311254112551125611257112581125911260112611126211263112641126511266112671126811269112701127111272112731127411275112761127711278112791128011281112821128311284112851128611287112881128911290112911129211293112941129511296112971129811299113001130111302113031130411305113061130711308113091131011311113121131311314113151131611317113181131911320113211132211323113241132511326113271132811329113301133111332113331133411335113361133711338113391134011341113421134311344113451134611347113481134911350113511135211353113541135511356113571135811359113601136111362113631136411365113661136711368113691137011371113721137311374113751137611377113781137911380113811138211383113841138511386113871138811389113901139111392113931139411395113961139711398113991140011401114021140311404114051140611407114081140911410114111141211413114141141511416114171141811419114201142111422114231142411425114261142711428114291143011431114321143311434114351143611437114381143911440114411144211443114441144511446114471144811449114501145111452114531145411455114561145711458114591146011461114621146311464114651146611467114681146911470114711147211473114741147511476114771147811479114801148111482114831148411485114861148711488114891149011491114921149311494114951149611497114981149911500115011150211503115041150511506115071150811509115101151111512115131151411515115161151711518115191152011521115221152311524115251152611527115281152911530115311153211533115341153511536115371153811539115401154111542115431154411545115461154711548115491155011551115521155311554115551155611557115581155911560115611156211563115641156511566115671156811569115701157111572115731157411575115761157711578115791158011581115821158311584115851158611587115881158911590115911159211593115941159511596115971159811599116001160111602116031160411605116061160711608116091161011611116121161311614116151161611617116181161911620116211162211623116241162511626116271162811629116301163111632116331163411635116361163711638116391164011641116421164311644116451164611647116481164911650116511165211653116541165511656116571165811659116601166111662116631166411665116661166711668116691167011671116721167311674116751167611677116781167911680116811168211683
  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": "04879cdf04f34417c35aebbabc2229f6",
  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": "ezyang/htmlpurifier",
  847. "version": "v4.13.0",
  848. "source": {
  849. "type": "git",
  850. "url": "https://github.com/ezyang/htmlpurifier.git",
  851. "reference": "08e27c97e4c6ed02f37c5b2b20488046c8d90d75"
  852. },
  853. "dist": {
  854. "type": "zip",
  855. "url": "https://api.github.com/repos/ezyang/htmlpurifier/zipball/08e27c97e4c6ed02f37c5b2b20488046c8d90d75",
  856. "reference": "08e27c97e4c6ed02f37c5b2b20488046c8d90d75",
  857. "shasum": ""
  858. },
  859. "require": {
  860. "php": ">=5.2"
  861. },
  862. "require-dev": {
  863. "simpletest/simpletest": "dev-master#72de02a7b80c6bb8864ef9bf66d41d2f58f826bd"
  864. },
  865. "type": "library",
  866. "autoload": {
  867. "psr-0": {
  868. "HTMLPurifier": "library/"
  869. },
  870. "files": [
  871. "library/HTMLPurifier.composer.php"
  872. ],
  873. "exclude-from-classmap": [
  874. "/library/HTMLPurifier/Language/"
  875. ]
  876. },
  877. "notification-url": "https://packagist.org/downloads/",
  878. "license": [
  879. "LGPL-2.1-or-later"
  880. ],
  881. "authors": [
  882. {
  883. "name": "Edward Z. Yang",
  884. "email": "admin@htmlpurifier.org",
  885. "homepage": "http://ezyang.com"
  886. }
  887. ],
  888. "description": "Standards compliant HTML filter written in PHP",
  889. "homepage": "http://htmlpurifier.org/",
  890. "keywords": [
  891. "html"
  892. ],
  893. "support": {
  894. "issues": "https://github.com/ezyang/htmlpurifier/issues",
  895. "source": "https://github.com/ezyang/htmlpurifier/tree/master"
  896. },
  897. "time": "2020-06-29T00:56:53+00:00"
  898. },
  899. {
  900. "name": "fideloper/proxy",
  901. "version": "4.4.1",
  902. "source": {
  903. "type": "git",
  904. "url": "https://github.com/fideloper/TrustedProxy.git",
  905. "reference": "c073b2bd04d1c90e04dc1b787662b558dd65ade0"
  906. },
  907. "dist": {
  908. "type": "zip",
  909. "url": "https://api.github.com/repos/fideloper/TrustedProxy/zipball/c073b2bd04d1c90e04dc1b787662b558dd65ade0",
  910. "reference": "c073b2bd04d1c90e04dc1b787662b558dd65ade0",
  911. "shasum": ""
  912. },
  913. "require": {
  914. "illuminate/contracts": "^5.0|^6.0|^7.0|^8.0|^9.0",
  915. "php": ">=5.4.0"
  916. },
  917. "require-dev": {
  918. "illuminate/http": "^5.0|^6.0|^7.0|^8.0|^9.0",
  919. "mockery/mockery": "^1.0",
  920. "phpunit/phpunit": "^6.0"
  921. },
  922. "type": "library",
  923. "extra": {
  924. "laravel": {
  925. "providers": [
  926. "Fideloper\\Proxy\\TrustedProxyServiceProvider"
  927. ]
  928. }
  929. },
  930. "autoload": {
  931. "psr-4": {
  932. "Fideloper\\Proxy\\": "src/"
  933. }
  934. },
  935. "notification-url": "https://packagist.org/downloads/",
  936. "license": [
  937. "MIT"
  938. ],
  939. "authors": [
  940. {
  941. "name": "Chris Fidao",
  942. "email": "fideloper@gmail.com"
  943. }
  944. ],
  945. "description": "Set trusted proxies for Laravel",
  946. "keywords": [
  947. "load balancing",
  948. "proxy",
  949. "trusted proxy"
  950. ],
  951. "support": {
  952. "issues": "https://github.com/fideloper/TrustedProxy/issues",
  953. "source": "https://github.com/fideloper/TrustedProxy/tree/4.4.1"
  954. },
  955. "time": "2020-10-22T13:48:01+00:00"
  956. },
  957. {
  958. "name": "fruitcake/laravel-cors",
  959. "version": "v2.0.3",
  960. "source": {
  961. "type": "git",
  962. "url": "https://github.com/fruitcake/laravel-cors.git",
  963. "reference": "01de0fe5f71c70d1930ee9a80385f9cc28e0f63a"
  964. },
  965. "dist": {
  966. "type": "zip",
  967. "url": "https://api.github.com/repos/fruitcake/laravel-cors/zipball/01de0fe5f71c70d1930ee9a80385f9cc28e0f63a",
  968. "reference": "01de0fe5f71c70d1930ee9a80385f9cc28e0f63a",
  969. "shasum": ""
  970. },
  971. "require": {
  972. "asm89/stack-cors": "^2.0.1",
  973. "illuminate/contracts": "^6|^7|^8|^9",
  974. "illuminate/support": "^6|^7|^8|^9",
  975. "php": ">=7.2",
  976. "symfony/http-foundation": "^4|^5",
  977. "symfony/http-kernel": "^4.3.4|^5"
  978. },
  979. "require-dev": {
  980. "laravel/framework": "^6|^7|^8",
  981. "orchestra/testbench-dusk": "^4|^5|^6",
  982. "phpunit/phpunit": "^6|^7|^8",
  983. "squizlabs/php_codesniffer": "^3.5"
  984. },
  985. "type": "library",
  986. "extra": {
  987. "branch-alias": {
  988. "dev-master": "2.0-dev"
  989. },
  990. "laravel": {
  991. "providers": [
  992. "Fruitcake\\Cors\\CorsServiceProvider"
  993. ]
  994. }
  995. },
  996. "autoload": {
  997. "psr-4": {
  998. "Fruitcake\\Cors\\": "src/"
  999. }
  1000. },
  1001. "notification-url": "https://packagist.org/downloads/",
  1002. "license": [
  1003. "MIT"
  1004. ],
  1005. "authors": [
  1006. {
  1007. "name": "Fruitcake",
  1008. "homepage": "https://fruitcake.nl"
  1009. },
  1010. {
  1011. "name": "Barry vd. Heuvel",
  1012. "email": "barryvdh@gmail.com"
  1013. }
  1014. ],
  1015. "description": "Adds CORS (Cross-Origin Resource Sharing) headers support in your Laravel application",
  1016. "keywords": [
  1017. "api",
  1018. "cors",
  1019. "crossdomain",
  1020. "laravel"
  1021. ],
  1022. "support": {
  1023. "issues": "https://github.com/fruitcake/laravel-cors/issues",
  1024. "source": "https://github.com/fruitcake/laravel-cors/tree/v2.0.3"
  1025. },
  1026. "funding": [
  1027. {
  1028. "url": "https://github.com/barryvdh",
  1029. "type": "github"
  1030. }
  1031. ],
  1032. "time": "2020-10-22T13:57:20+00:00"
  1033. },
  1034. {
  1035. "name": "geoip2/geoip2",
  1036. "version": "v2.11.0",
  1037. "source": {
  1038. "type": "git",
  1039. "url": "https://github.com/maxmind/GeoIP2-php.git",
  1040. "reference": "d01be5894a5c1a3381c58c9b1795cd07f96c30f7"
  1041. },
  1042. "dist": {
  1043. "type": "zip",
  1044. "url": "https://api.github.com/repos/maxmind/GeoIP2-php/zipball/d01be5894a5c1a3381c58c9b1795cd07f96c30f7",
  1045. "reference": "d01be5894a5c1a3381c58c9b1795cd07f96c30f7",
  1046. "shasum": ""
  1047. },
  1048. "require": {
  1049. "ext-json": "*",
  1050. "maxmind-db/reader": "~1.8",
  1051. "maxmind/web-service-common": "~0.8",
  1052. "php": ">=7.2"
  1053. },
  1054. "require-dev": {
  1055. "friendsofphp/php-cs-fixer": "2.*",
  1056. "phpunit/phpunit": "^8.0 || ^9.0",
  1057. "squizlabs/php_codesniffer": "3.*"
  1058. },
  1059. "type": "library",
  1060. "autoload": {
  1061. "psr-4": {
  1062. "GeoIp2\\": "src"
  1063. }
  1064. },
  1065. "notification-url": "https://packagist.org/downloads/",
  1066. "license": [
  1067. "Apache-2.0"
  1068. ],
  1069. "authors": [
  1070. {
  1071. "name": "Gregory J. Oschwald",
  1072. "email": "goschwald@maxmind.com",
  1073. "homepage": "https://www.maxmind.com/"
  1074. }
  1075. ],
  1076. "description": "MaxMind GeoIP2 PHP API",
  1077. "homepage": "https://github.com/maxmind/GeoIP2-php",
  1078. "keywords": [
  1079. "IP",
  1080. "geoip",
  1081. "geoip2",
  1082. "geolocation",
  1083. "maxmind"
  1084. ],
  1085. "support": {
  1086. "issues": "https://github.com/maxmind/GeoIP2-php/issues",
  1087. "source": "https://github.com/maxmind/GeoIP2-php/tree/v2.11.0"
  1088. },
  1089. "time": "2020-10-01T18:48:34+00:00"
  1090. },
  1091. {
  1092. "name": "guzzlehttp/guzzle",
  1093. "version": "6.5.5",
  1094. "source": {
  1095. "type": "git",
  1096. "url": "https://github.com/guzzle/guzzle.git",
  1097. "reference": "9d4290de1cfd701f38099ef7e183b64b4b7b0c5e"
  1098. },
  1099. "dist": {
  1100. "type": "zip",
  1101. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/9d4290de1cfd701f38099ef7e183b64b4b7b0c5e",
  1102. "reference": "9d4290de1cfd701f38099ef7e183b64b4b7b0c5e",
  1103. "shasum": ""
  1104. },
  1105. "require": {
  1106. "ext-json": "*",
  1107. "guzzlehttp/promises": "^1.0",
  1108. "guzzlehttp/psr7": "^1.6.1",
  1109. "php": ">=5.5",
  1110. "symfony/polyfill-intl-idn": "^1.17.0"
  1111. },
  1112. "require-dev": {
  1113. "ext-curl": "*",
  1114. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.4 || ^7.0",
  1115. "psr/log": "^1.1"
  1116. },
  1117. "suggest": {
  1118. "psr/log": "Required for using the Log middleware"
  1119. },
  1120. "type": "library",
  1121. "extra": {
  1122. "branch-alias": {
  1123. "dev-master": "6.5-dev"
  1124. }
  1125. },
  1126. "autoload": {
  1127. "psr-4": {
  1128. "GuzzleHttp\\": "src/"
  1129. },
  1130. "files": [
  1131. "src/functions_include.php"
  1132. ]
  1133. },
  1134. "notification-url": "https://packagist.org/downloads/",
  1135. "license": [
  1136. "MIT"
  1137. ],
  1138. "authors": [
  1139. {
  1140. "name": "Michael Dowling",
  1141. "email": "mtdowling@gmail.com",
  1142. "homepage": "https://github.com/mtdowling"
  1143. }
  1144. ],
  1145. "description": "Guzzle is a PHP HTTP client library",
  1146. "homepage": "http://guzzlephp.org/",
  1147. "keywords": [
  1148. "client",
  1149. "curl",
  1150. "framework",
  1151. "http",
  1152. "http client",
  1153. "rest",
  1154. "web service"
  1155. ],
  1156. "support": {
  1157. "issues": "https://github.com/guzzle/guzzle/issues",
  1158. "source": "https://github.com/guzzle/guzzle/tree/6.5"
  1159. },
  1160. "time": "2020-06-16T21:01:06+00:00"
  1161. },
  1162. {
  1163. "name": "guzzlehttp/promises",
  1164. "version": "1.4.0",
  1165. "source": {
  1166. "type": "git",
  1167. "url": "https://github.com/guzzle/promises.git",
  1168. "reference": "60d379c243457e073cff02bc323a2a86cb355631"
  1169. },
  1170. "dist": {
  1171. "type": "zip",
  1172. "url": "https://api.github.com/repos/guzzle/promises/zipball/60d379c243457e073cff02bc323a2a86cb355631",
  1173. "reference": "60d379c243457e073cff02bc323a2a86cb355631",
  1174. "shasum": ""
  1175. },
  1176. "require": {
  1177. "php": ">=5.5"
  1178. },
  1179. "require-dev": {
  1180. "symfony/phpunit-bridge": "^4.4 || ^5.1"
  1181. },
  1182. "type": "library",
  1183. "extra": {
  1184. "branch-alias": {
  1185. "dev-master": "1.4-dev"
  1186. }
  1187. },
  1188. "autoload": {
  1189. "psr-4": {
  1190. "GuzzleHttp\\Promise\\": "src/"
  1191. },
  1192. "files": [
  1193. "src/functions_include.php"
  1194. ]
  1195. },
  1196. "notification-url": "https://packagist.org/downloads/",
  1197. "license": [
  1198. "MIT"
  1199. ],
  1200. "authors": [
  1201. {
  1202. "name": "Michael Dowling",
  1203. "email": "mtdowling@gmail.com",
  1204. "homepage": "https://github.com/mtdowling"
  1205. }
  1206. ],
  1207. "description": "Guzzle promises library",
  1208. "keywords": [
  1209. "promise"
  1210. ],
  1211. "support": {
  1212. "issues": "https://github.com/guzzle/promises/issues",
  1213. "source": "https://github.com/guzzle/promises/tree/1.4.0"
  1214. },
  1215. "time": "2020-09-30T07:37:28+00:00"
  1216. },
  1217. {
  1218. "name": "guzzlehttp/psr7",
  1219. "version": "1.7.0",
  1220. "source": {
  1221. "type": "git",
  1222. "url": "https://github.com/guzzle/psr7.git",
  1223. "reference": "53330f47520498c0ae1f61f7e2c90f55690c06a3"
  1224. },
  1225. "dist": {
  1226. "type": "zip",
  1227. "url": "https://api.github.com/repos/guzzle/psr7/zipball/53330f47520498c0ae1f61f7e2c90f55690c06a3",
  1228. "reference": "53330f47520498c0ae1f61f7e2c90f55690c06a3",
  1229. "shasum": ""
  1230. },
  1231. "require": {
  1232. "php": ">=5.4.0",
  1233. "psr/http-message": "~1.0",
  1234. "ralouphie/getallheaders": "^2.0.5 || ^3.0.0"
  1235. },
  1236. "provide": {
  1237. "psr/http-message-implementation": "1.0"
  1238. },
  1239. "require-dev": {
  1240. "ext-zlib": "*",
  1241. "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.10"
  1242. },
  1243. "suggest": {
  1244. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  1245. },
  1246. "type": "library",
  1247. "extra": {
  1248. "branch-alias": {
  1249. "dev-master": "1.7-dev"
  1250. }
  1251. },
  1252. "autoload": {
  1253. "psr-4": {
  1254. "GuzzleHttp\\Psr7\\": "src/"
  1255. },
  1256. "files": [
  1257. "src/functions_include.php"
  1258. ]
  1259. },
  1260. "notification-url": "https://packagist.org/downloads/",
  1261. "license": [
  1262. "MIT"
  1263. ],
  1264. "authors": [
  1265. {
  1266. "name": "Michael Dowling",
  1267. "email": "mtdowling@gmail.com",
  1268. "homepage": "https://github.com/mtdowling"
  1269. },
  1270. {
  1271. "name": "Tobias Schultze",
  1272. "homepage": "https://github.com/Tobion"
  1273. }
  1274. ],
  1275. "description": "PSR-7 message implementation that also provides common utility methods",
  1276. "keywords": [
  1277. "http",
  1278. "message",
  1279. "psr-7",
  1280. "request",
  1281. "response",
  1282. "stream",
  1283. "uri",
  1284. "url"
  1285. ],
  1286. "support": {
  1287. "issues": "https://github.com/guzzle/psr7/issues",
  1288. "source": "https://github.com/guzzle/psr7/tree/1.7.0"
  1289. },
  1290. "time": "2020-09-30T07:37:11+00:00"
  1291. },
  1292. {
  1293. "name": "intervention/image",
  1294. "version": "2.5.1",
  1295. "source": {
  1296. "type": "git",
  1297. "url": "https://github.com/Intervention/image.git",
  1298. "reference": "abbf18d5ab8367f96b3205ca3c89fb2fa598c69e"
  1299. },
  1300. "dist": {
  1301. "type": "zip",
  1302. "url": "https://api.github.com/repos/Intervention/image/zipball/abbf18d5ab8367f96b3205ca3c89fb2fa598c69e",
  1303. "reference": "abbf18d5ab8367f96b3205ca3c89fb2fa598c69e",
  1304. "shasum": ""
  1305. },
  1306. "require": {
  1307. "ext-fileinfo": "*",
  1308. "guzzlehttp/psr7": "~1.1",
  1309. "php": ">=5.4.0"
  1310. },
  1311. "require-dev": {
  1312. "mockery/mockery": "~0.9.2",
  1313. "phpunit/phpunit": "^4.8 || ^5.7"
  1314. },
  1315. "suggest": {
  1316. "ext-gd": "to use GD library based image processing.",
  1317. "ext-imagick": "to use Imagick based image processing.",
  1318. "intervention/imagecache": "Caching extension for the Intervention Image library"
  1319. },
  1320. "type": "library",
  1321. "extra": {
  1322. "branch-alias": {
  1323. "dev-master": "2.4-dev"
  1324. },
  1325. "laravel": {
  1326. "providers": [
  1327. "Intervention\\Image\\ImageServiceProvider"
  1328. ],
  1329. "aliases": {
  1330. "Image": "Intervention\\Image\\Facades\\Image"
  1331. }
  1332. }
  1333. },
  1334. "autoload": {
  1335. "psr-4": {
  1336. "Intervention\\Image\\": "src/Intervention/Image"
  1337. }
  1338. },
  1339. "notification-url": "https://packagist.org/downloads/",
  1340. "license": [
  1341. "MIT"
  1342. ],
  1343. "authors": [
  1344. {
  1345. "name": "Oliver Vogel",
  1346. "email": "oliver@olivervogel.com",
  1347. "homepage": "http://olivervogel.com/"
  1348. }
  1349. ],
  1350. "description": "Image handling and manipulation library with support for Laravel integration",
  1351. "homepage": "http://image.intervention.io/",
  1352. "keywords": [
  1353. "gd",
  1354. "image",
  1355. "imagick",
  1356. "laravel",
  1357. "thumbnail",
  1358. "watermark"
  1359. ],
  1360. "support": {
  1361. "issues": "https://github.com/Intervention/image/issues",
  1362. "source": "https://github.com/Intervention/image/tree/master"
  1363. },
  1364. "time": "2019-11-02T09:15:47+00:00"
  1365. },
  1366. {
  1367. "name": "ip2location/ip2location-laravel",
  1368. "version": "1.2.0",
  1369. "source": {
  1370. "type": "git",
  1371. "url": "https://github.com/ip2location/ip2location-laravel.git",
  1372. "reference": "56b0da66e12982ef6db0e2fe3b231659c5e76a9b"
  1373. },
  1374. "dist": {
  1375. "type": "zip",
  1376. "url": "https://api.github.com/repos/ip2location/ip2location-laravel/zipball/56b0da66e12982ef6db0e2fe3b231659c5e76a9b",
  1377. "reference": "56b0da66e12982ef6db0e2fe3b231659c5e76a9b",
  1378. "shasum": ""
  1379. },
  1380. "require": {
  1381. "ip2location/ip2location-php": "8.*",
  1382. "php": ">=5.4"
  1383. },
  1384. "type": "library",
  1385. "autoload": {
  1386. "psr-4": {
  1387. "Ip2location\\IP2LocationLaravel\\": "src/"
  1388. }
  1389. },
  1390. "notification-url": "https://packagist.org/downloads/",
  1391. "license": [
  1392. "MIT"
  1393. ],
  1394. "authors": [
  1395. {
  1396. "name": "IP2Location",
  1397. "email": "support@ip2location.com"
  1398. }
  1399. ],
  1400. "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.",
  1401. "keywords": [
  1402. "geolocation",
  1403. "ip2location",
  1404. "laravel",
  1405. "laravel 5",
  1406. "laravel 7"
  1407. ],
  1408. "support": {
  1409. "issues": "https://github.com/ip2location/ip2location-laravel/issues",
  1410. "source": "https://github.com/ip2location/ip2location-laravel/tree/master"
  1411. },
  1412. "time": "2020-08-27T07:47:55+00:00"
  1413. },
  1414. {
  1415. "name": "ip2location/ip2location-php",
  1416. "version": "8.3.0",
  1417. "source": {
  1418. "type": "git",
  1419. "url": "https://github.com/chrislim2888/IP2Location-PHP-Module.git",
  1420. "reference": "4c501aa1f666ae85eab84d4df9d19399f2e6ce15"
  1421. },
  1422. "dist": {
  1423. "type": "zip",
  1424. "url": "https://api.github.com/repos/chrislim2888/IP2Location-PHP-Module/zipball/4c501aa1f666ae85eab84d4df9d19399f2e6ce15",
  1425. "reference": "4c501aa1f666ae85eab84d4df9d19399f2e6ce15",
  1426. "shasum": ""
  1427. },
  1428. "type": "library",
  1429. "autoload": {
  1430. "classmap": [
  1431. "IP2Location.php"
  1432. ]
  1433. },
  1434. "notification-url": "https://packagist.org/downloads/",
  1435. "license": [
  1436. "MIT"
  1437. ],
  1438. "authors": [
  1439. {
  1440. "name": "IP2Location",
  1441. "email": "support@ip2location.com",
  1442. "homepage": "http://www.ip2location.com"
  1443. }
  1444. ],
  1445. "description": "[Official Release] IP2Location PHP API to get location info from IPv4 and IPv6 address.",
  1446. "homepage": "http://www.ip2location.com",
  1447. "keywords": [
  1448. "geolocation",
  1449. "ip2location",
  1450. "ip2locationlite"
  1451. ],
  1452. "support": {
  1453. "issues": "https://github.com/chrislim2888/IP2Location-PHP-Module/issues",
  1454. "source": "https://github.com/chrislim2888/IP2Location-PHP-Module/tree/8.3.0"
  1455. },
  1456. "time": "2020-11-23T04:30:39+00:00"
  1457. },
  1458. {
  1459. "name": "ipip/db",
  1460. "version": "v1.0.0",
  1461. "source": {
  1462. "type": "git",
  1463. "url": "https://github.com/ipipdotnet/ipdb-php.git",
  1464. "reference": "af42bf28b37dc76beccd7bbe2b0b0572e21f42cf"
  1465. },
  1466. "dist": {
  1467. "type": "zip",
  1468. "url": "https://api.github.com/repos/ipipdotnet/ipdb-php/zipball/af42bf28b37dc76beccd7bbe2b0b0572e21f42cf",
  1469. "reference": "af42bf28b37dc76beccd7bbe2b0b0572e21f42cf",
  1470. "shasum": ""
  1471. },
  1472. "require": {
  1473. "php": ">=5.4.0"
  1474. },
  1475. "type": "library",
  1476. "autoload": {
  1477. "psr-4": {
  1478. "ipip\\db\\": "src/ipip/db/"
  1479. }
  1480. },
  1481. "notification-url": "https://packagist.org/downloads/",
  1482. "license": [
  1483. "Apache-2.0"
  1484. ],
  1485. "authors": [
  1486. {
  1487. "name": "IPIP.net",
  1488. "email": "frk@ipip.net",
  1489. "homepage": "https://www.ipip.net"
  1490. }
  1491. ],
  1492. "description": "IPIP.net officially supported IP database ipdb format parsing library",
  1493. "homepage": "https://www.ipip.net",
  1494. "keywords": [
  1495. "IP",
  1496. "geo",
  1497. "geoip",
  1498. "geolocation",
  1499. "ipdb",
  1500. "ipip.net"
  1501. ],
  1502. "support": {
  1503. "issues": "https://github.com/ipipdotnet/ipdb-php/issues",
  1504. "source": "https://github.com/ipipdotnet/ipdb-php/tree/v1.0.0"
  1505. },
  1506. "time": "2018-11-01T08:07:04+00:00"
  1507. },
  1508. {
  1509. "name": "jaybizzle/crawler-detect",
  1510. "version": "v1.2.103",
  1511. "source": {
  1512. "type": "git",
  1513. "url": "https://github.com/JayBizzle/Crawler-Detect.git",
  1514. "reference": "3efa2860959cc971f17624b40bf0699823f9d0f3"
  1515. },
  1516. "dist": {
  1517. "type": "zip",
  1518. "url": "https://api.github.com/repos/JayBizzle/Crawler-Detect/zipball/3efa2860959cc971f17624b40bf0699823f9d0f3",
  1519. "reference": "3efa2860959cc971f17624b40bf0699823f9d0f3",
  1520. "shasum": ""
  1521. },
  1522. "require": {
  1523. "php": ">=5.3.0"
  1524. },
  1525. "require-dev": {
  1526. "phpunit/phpunit": "^4.8|^5.5|^6.5"
  1527. },
  1528. "type": "library",
  1529. "autoload": {
  1530. "psr-4": {
  1531. "Jaybizzle\\CrawlerDetect\\": "src/"
  1532. }
  1533. },
  1534. "notification-url": "https://packagist.org/downloads/",
  1535. "license": [
  1536. "MIT"
  1537. ],
  1538. "authors": [
  1539. {
  1540. "name": "Mark Beech",
  1541. "email": "m@rkbee.ch",
  1542. "role": "Developer"
  1543. }
  1544. ],
  1545. "description": "CrawlerDetect is a PHP class for detecting bots/crawlers/spiders via the user agent",
  1546. "homepage": "https://github.com/JayBizzle/Crawler-Detect/",
  1547. "keywords": [
  1548. "crawler",
  1549. "crawler detect",
  1550. "crawler detector",
  1551. "crawlerdetect",
  1552. "php crawler detect"
  1553. ],
  1554. "support": {
  1555. "issues": "https://github.com/JayBizzle/Crawler-Detect/issues",
  1556. "source": "https://github.com/JayBizzle/Crawler-Detect/tree/v1.2.103"
  1557. },
  1558. "time": "2020-11-23T19:49:25+00:00"
  1559. },
  1560. {
  1561. "name": "jenssegers/agent",
  1562. "version": "v2.6.4",
  1563. "source": {
  1564. "type": "git",
  1565. "url": "https://github.com/jenssegers/agent.git",
  1566. "reference": "daa11c43729510b3700bc34d414664966b03bffe"
  1567. },
  1568. "dist": {
  1569. "type": "zip",
  1570. "url": "https://api.github.com/repos/jenssegers/agent/zipball/daa11c43729510b3700bc34d414664966b03bffe",
  1571. "reference": "daa11c43729510b3700bc34d414664966b03bffe",
  1572. "shasum": ""
  1573. },
  1574. "require": {
  1575. "jaybizzle/crawler-detect": "^1.2",
  1576. "mobiledetect/mobiledetectlib": "^2.7.6",
  1577. "php": ">=5.6"
  1578. },
  1579. "require-dev": {
  1580. "php-coveralls/php-coveralls": "^2.1",
  1581. "phpunit/phpunit": "^5.0|^6.0|^7.0"
  1582. },
  1583. "suggest": {
  1584. "illuminate/support": "Required for laravel service providers"
  1585. },
  1586. "type": "library",
  1587. "extra": {
  1588. "branch-alias": {
  1589. "dev-master": "3.0-dev"
  1590. },
  1591. "laravel": {
  1592. "providers": [
  1593. "Jenssegers\\Agent\\AgentServiceProvider"
  1594. ],
  1595. "aliases": {
  1596. "Agent": "Jenssegers\\Agent\\Facades\\Agent"
  1597. }
  1598. }
  1599. },
  1600. "autoload": {
  1601. "psr-4": {
  1602. "Jenssegers\\Agent\\": "src/"
  1603. }
  1604. },
  1605. "notification-url": "https://packagist.org/downloads/",
  1606. "license": [
  1607. "MIT"
  1608. ],
  1609. "authors": [
  1610. {
  1611. "name": "Jens Segers",
  1612. "homepage": "https://jenssegers.com"
  1613. }
  1614. ],
  1615. "description": "Desktop/mobile user agent parser with support for Laravel, based on Mobiledetect",
  1616. "homepage": "https://github.com/jenssegers/agent",
  1617. "keywords": [
  1618. "Agent",
  1619. "browser",
  1620. "desktop",
  1621. "laravel",
  1622. "mobile",
  1623. "platform",
  1624. "user agent",
  1625. "useragent"
  1626. ],
  1627. "support": {
  1628. "issues": "https://github.com/jenssegers/agent/issues",
  1629. "source": "https://github.com/jenssegers/agent/tree/v2.6.4"
  1630. },
  1631. "funding": [
  1632. {
  1633. "url": "https://github.com/jenssegers",
  1634. "type": "github"
  1635. },
  1636. {
  1637. "url": "https://tidelift.com/funding/github/packagist/jenssegers/agent",
  1638. "type": "tidelift"
  1639. }
  1640. ],
  1641. "time": "2020-06-13T08:05:20+00:00"
  1642. },
  1643. {
  1644. "name": "laravel-lang/lang",
  1645. "version": "7.0.9",
  1646. "source": {
  1647. "type": "git",
  1648. "url": "https://github.com/Laravel-Lang/lang.git",
  1649. "reference": "679a65755db37b35acd36a5e0ca51e055815a00a"
  1650. },
  1651. "dist": {
  1652. "type": "zip",
  1653. "url": "https://api.github.com/repos/Laravel-Lang/lang/zipball/679a65755db37b35acd36a5e0ca51e055815a00a",
  1654. "reference": "679a65755db37b35acd36a5e0ca51e055815a00a",
  1655. "shasum": ""
  1656. },
  1657. "require": {
  1658. "ext-json": "*"
  1659. },
  1660. "suggest": {
  1661. "andrey-helldar/laravel-lang-publisher": "Easy installation and update of translation files for your project",
  1662. "arcanedev/laravel-lang": "Translations manager and checker for Laravel 5",
  1663. "overtrue/laravel-lang": "Command to add languages in your project"
  1664. },
  1665. "type": "library",
  1666. "notification-url": "https://packagist.org/downloads/",
  1667. "license": [
  1668. "MIT"
  1669. ],
  1670. "authors": [
  1671. {
  1672. "name": "Laravel-Lang Team"
  1673. }
  1674. ],
  1675. "description": "Languages for Laravel",
  1676. "keywords": [
  1677. "lang",
  1678. "languages",
  1679. "laravel",
  1680. "lpm"
  1681. ],
  1682. "support": {
  1683. "issues": "https://github.com/Laravel-Lang/lang/issues",
  1684. "source": "https://github.com/Laravel-Lang/lang/tree/7.0.9"
  1685. },
  1686. "time": "2020-11-30T20:35:41+00:00"
  1687. },
  1688. {
  1689. "name": "laravel/framework",
  1690. "version": "v7.30.1",
  1691. "source": {
  1692. "type": "git",
  1693. "url": "https://github.com/laravel/framework.git",
  1694. "reference": "e73855b18dcfc645c36d2474f437e4e73dd3c11d"
  1695. },
  1696. "dist": {
  1697. "type": "zip",
  1698. "url": "https://api.github.com/repos/laravel/framework/zipball/e73855b18dcfc645c36d2474f437e4e73dd3c11d",
  1699. "reference": "e73855b18dcfc645c36d2474f437e4e73dd3c11d",
  1700. "shasum": ""
  1701. },
  1702. "require": {
  1703. "doctrine/inflector": "^1.4|^2.0",
  1704. "dragonmantank/cron-expression": "^2.3.1",
  1705. "egulias/email-validator": "^2.1.10",
  1706. "ext-json": "*",
  1707. "ext-mbstring": "*",
  1708. "ext-openssl": "*",
  1709. "league/commonmark": "^1.3",
  1710. "league/flysystem": "^1.1",
  1711. "monolog/monolog": "^2.0",
  1712. "nesbot/carbon": "^2.31",
  1713. "opis/closure": "^3.6",
  1714. "php": "^7.2.5|^8.0",
  1715. "psr/container": "^1.0",
  1716. "psr/simple-cache": "^1.0",
  1717. "ramsey/uuid": "^3.7|^4.0",
  1718. "swiftmailer/swiftmailer": "^6.0",
  1719. "symfony/console": "^5.0",
  1720. "symfony/error-handler": "^5.0",
  1721. "symfony/finder": "^5.0",
  1722. "symfony/http-foundation": "^5.0",
  1723. "symfony/http-kernel": "^5.0",
  1724. "symfony/mime": "^5.0",
  1725. "symfony/polyfill-php73": "^1.17",
  1726. "symfony/process": "^5.0",
  1727. "symfony/routing": "^5.0",
  1728. "symfony/var-dumper": "^5.0",
  1729. "tijsverkoyen/css-to-inline-styles": "^2.2.2",
  1730. "vlucas/phpdotenv": "^4.0",
  1731. "voku/portable-ascii": "^1.4.8"
  1732. },
  1733. "conflict": {
  1734. "tightenco/collect": "<5.5.33"
  1735. },
  1736. "provide": {
  1737. "psr/container-implementation": "1.0"
  1738. },
  1739. "replace": {
  1740. "illuminate/auth": "self.version",
  1741. "illuminate/broadcasting": "self.version",
  1742. "illuminate/bus": "self.version",
  1743. "illuminate/cache": "self.version",
  1744. "illuminate/config": "self.version",
  1745. "illuminate/console": "self.version",
  1746. "illuminate/container": "self.version",
  1747. "illuminate/contracts": "self.version",
  1748. "illuminate/cookie": "self.version",
  1749. "illuminate/database": "self.version",
  1750. "illuminate/encryption": "self.version",
  1751. "illuminate/events": "self.version",
  1752. "illuminate/filesystem": "self.version",
  1753. "illuminate/hashing": "self.version",
  1754. "illuminate/http": "self.version",
  1755. "illuminate/log": "self.version",
  1756. "illuminate/mail": "self.version",
  1757. "illuminate/notifications": "self.version",
  1758. "illuminate/pagination": "self.version",
  1759. "illuminate/pipeline": "self.version",
  1760. "illuminate/queue": "self.version",
  1761. "illuminate/redis": "self.version",
  1762. "illuminate/routing": "self.version",
  1763. "illuminate/session": "self.version",
  1764. "illuminate/support": "self.version",
  1765. "illuminate/testing": "self.version",
  1766. "illuminate/translation": "self.version",
  1767. "illuminate/validation": "self.version",
  1768. "illuminate/view": "self.version"
  1769. },
  1770. "require-dev": {
  1771. "aws/aws-sdk-php": "^3.155",
  1772. "doctrine/dbal": "^2.6",
  1773. "filp/whoops": "^2.8",
  1774. "guzzlehttp/guzzle": "^6.3.1|^7.0.1",
  1775. "league/flysystem-cached-adapter": "^1.0",
  1776. "mockery/mockery": "~1.3.3|^1.4.2",
  1777. "moontoast/math": "^1.1",
  1778. "orchestra/testbench-core": "^5.8",
  1779. "pda/pheanstalk": "^4.0",
  1780. "phpunit/phpunit": "^8.4|^9.3.3",
  1781. "predis/predis": "^1.1.1",
  1782. "symfony/cache": "^5.0"
  1783. },
  1784. "suggest": {
  1785. "aws/aws-sdk-php": "Required to use the SQS queue driver, DynamoDb failed job storage and SES mail driver (^3.155).",
  1786. "doctrine/dbal": "Required to rename columns and drop SQLite columns (^2.6).",
  1787. "ext-ftp": "Required to use the Flysystem FTP driver.",
  1788. "ext-gd": "Required to use Illuminate\\Http\\Testing\\FileFactory::image().",
  1789. "ext-memcached": "Required to use the memcache cache driver.",
  1790. "ext-pcntl": "Required to use all features of the queue worker.",
  1791. "ext-posix": "Required to use all features of the queue worker.",
  1792. "ext-redis": "Required to use the Redis cache and queue drivers (^4.0|^5.0).",
  1793. "fakerphp/faker": "Required to use the eloquent factory builder (^1.9.1).",
  1794. "filp/whoops": "Required for friendly error pages in development (^2.8).",
  1795. "guzzlehttp/guzzle": "Required to use the HTTP Client, Mailgun mail driver and the ping methods on schedules (^6.3.1|^7.0.1).",
  1796. "laravel/tinker": "Required to use the tinker console command (^2.0).",
  1797. "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (^1.0).",
  1798. "league/flysystem-cached-adapter": "Required to use the Flysystem cache (^1.0).",
  1799. "league/flysystem-sftp": "Required to use the Flysystem SFTP driver (^1.0).",
  1800. "mockery/mockery": "Required to use mocking (~1.3.3|^1.4.2).",
  1801. "moontoast/math": "Required to use ordered UUIDs (^1.1).",
  1802. "nyholm/psr7": "Required to use PSR-7 bridging features (^1.2).",
  1803. "pda/pheanstalk": "Required to use the beanstalk queue driver (^4.0).",
  1804. "phpunit/phpunit": "Required to use assertions and run tests (^8.4|^9.3.3).",
  1805. "predis/predis": "Required to use the predis connector (^1.1.2).",
  1806. "psr/http-message": "Required to allow Storage::put to accept a StreamInterface (^1.0).",
  1807. "pusher/pusher-php-server": "Required to use the Pusher broadcast driver (^4.0).",
  1808. "symfony/cache": "Required to PSR-6 cache bridge (^5.0).",
  1809. "symfony/filesystem": "Required to create relative storage directory symbolic links (^5.0).",
  1810. "symfony/psr-http-message-bridge": "Required to use PSR-7 bridging features (^2.0).",
  1811. "wildbit/swiftmailer-postmark": "Required to use Postmark mail driver (^3.0)."
  1812. },
  1813. "type": "library",
  1814. "extra": {
  1815. "branch-alias": {
  1816. "dev-master": "7.x-dev"
  1817. }
  1818. },
  1819. "autoload": {
  1820. "files": [
  1821. "src/Illuminate/Foundation/helpers.php",
  1822. "src/Illuminate/Support/helpers.php"
  1823. ],
  1824. "psr-4": {
  1825. "Illuminate\\": "src/Illuminate/"
  1826. }
  1827. },
  1828. "notification-url": "https://packagist.org/downloads/",
  1829. "license": [
  1830. "MIT"
  1831. ],
  1832. "authors": [
  1833. {
  1834. "name": "Taylor Otwell",
  1835. "email": "taylor@laravel.com"
  1836. }
  1837. ],
  1838. "description": "The Laravel Framework.",
  1839. "homepage": "https://laravel.com",
  1840. "keywords": [
  1841. "framework",
  1842. "laravel"
  1843. ],
  1844. "support": {
  1845. "issues": "https://github.com/laravel/framework/issues",
  1846. "source": "https://github.com/laravel/framework"
  1847. },
  1848. "time": "2020-12-22T17:00:45+00:00"
  1849. },
  1850. {
  1851. "name": "laravel/tinker",
  1852. "version": "v2.5.0",
  1853. "source": {
  1854. "type": "git",
  1855. "url": "https://github.com/laravel/tinker.git",
  1856. "reference": "45884b526e10a88a1b179fa1a1a24d5468c668c2"
  1857. },
  1858. "dist": {
  1859. "type": "zip",
  1860. "url": "https://api.github.com/repos/laravel/tinker/zipball/45884b526e10a88a1b179fa1a1a24d5468c668c2",
  1861. "reference": "45884b526e10a88a1b179fa1a1a24d5468c668c2",
  1862. "shasum": ""
  1863. },
  1864. "require": {
  1865. "illuminate/console": "^6.0|^7.0|^8.0",
  1866. "illuminate/contracts": "^6.0|^7.0|^8.0",
  1867. "illuminate/support": "^6.0|^7.0|^8.0",
  1868. "php": "^7.2.5|^8.0",
  1869. "psy/psysh": "^0.10.4",
  1870. "symfony/var-dumper": "^4.3.4|^5.0"
  1871. },
  1872. "require-dev": {
  1873. "mockery/mockery": "~1.3.3|^1.4.2",
  1874. "phpunit/phpunit": "^8.5.8|^9.3.3"
  1875. },
  1876. "suggest": {
  1877. "illuminate/database": "The Illuminate Database package (^6.0|^7.0|^8.0)."
  1878. },
  1879. "type": "library",
  1880. "extra": {
  1881. "branch-alias": {
  1882. "dev-master": "2.x-dev"
  1883. },
  1884. "laravel": {
  1885. "providers": [
  1886. "Laravel\\Tinker\\TinkerServiceProvider"
  1887. ]
  1888. }
  1889. },
  1890. "autoload": {
  1891. "psr-4": {
  1892. "Laravel\\Tinker\\": "src/"
  1893. }
  1894. },
  1895. "notification-url": "https://packagist.org/downloads/",
  1896. "license": [
  1897. "MIT"
  1898. ],
  1899. "authors": [
  1900. {
  1901. "name": "Taylor Otwell",
  1902. "email": "taylor@laravel.com"
  1903. }
  1904. ],
  1905. "description": "Powerful REPL for the Laravel framework.",
  1906. "keywords": [
  1907. "REPL",
  1908. "Tinker",
  1909. "laravel",
  1910. "psysh"
  1911. ],
  1912. "support": {
  1913. "issues": "https://github.com/laravel/tinker/issues",
  1914. "source": "https://github.com/laravel/tinker/tree/v2.5.0"
  1915. },
  1916. "time": "2020-10-29T13:07:12+00:00"
  1917. },
  1918. {
  1919. "name": "lcobucci/jwt",
  1920. "version": "3.3.3",
  1921. "source": {
  1922. "type": "git",
  1923. "url": "https://github.com/lcobucci/jwt.git",
  1924. "reference": "c1123697f6a2ec29162b82f170dd4a491f524773"
  1925. },
  1926. "dist": {
  1927. "type": "zip",
  1928. "url": "https://api.github.com/repos/lcobucci/jwt/zipball/c1123697f6a2ec29162b82f170dd4a491f524773",
  1929. "reference": "c1123697f6a2ec29162b82f170dd4a491f524773",
  1930. "shasum": ""
  1931. },
  1932. "require": {
  1933. "ext-mbstring": "*",
  1934. "ext-openssl": "*",
  1935. "php": "^5.6 || ^7.0"
  1936. },
  1937. "require-dev": {
  1938. "mikey179/vfsstream": "~1.5",
  1939. "phpmd/phpmd": "~2.2",
  1940. "phpunit/php-invoker": "~1.1",
  1941. "phpunit/phpunit": "^5.7 || ^7.3",
  1942. "squizlabs/php_codesniffer": "~2.3"
  1943. },
  1944. "type": "library",
  1945. "extra": {
  1946. "branch-alias": {
  1947. "dev-master": "3.1-dev"
  1948. }
  1949. },
  1950. "autoload": {
  1951. "psr-4": {
  1952. "Lcobucci\\JWT\\": "src"
  1953. }
  1954. },
  1955. "notification-url": "https://packagist.org/downloads/",
  1956. "license": [
  1957. "BSD-3-Clause"
  1958. ],
  1959. "authors": [
  1960. {
  1961. "name": "Luís Otávio Cobucci Oblonczyk",
  1962. "email": "lcobucci@gmail.com",
  1963. "role": "Developer"
  1964. }
  1965. ],
  1966. "description": "A simple library to work with JSON Web Token and JSON Web Signature",
  1967. "keywords": [
  1968. "JWS",
  1969. "jwt"
  1970. ],
  1971. "support": {
  1972. "issues": "https://github.com/lcobucci/jwt/issues",
  1973. "source": "https://github.com/lcobucci/jwt/tree/3.3.3"
  1974. },
  1975. "funding": [
  1976. {
  1977. "url": "https://github.com/lcobucci",
  1978. "type": "github"
  1979. },
  1980. {
  1981. "url": "https://www.patreon.com/lcobucci",
  1982. "type": "patreon"
  1983. }
  1984. ],
  1985. "time": "2020-08-20T13:22:28+00:00"
  1986. },
  1987. {
  1988. "name": "league/commonmark",
  1989. "version": "1.5.7",
  1990. "source": {
  1991. "type": "git",
  1992. "url": "https://github.com/thephpleague/commonmark.git",
  1993. "reference": "11df9b36fd4f1d2b727a73bf14931d81373b9a54"
  1994. },
  1995. "dist": {
  1996. "type": "zip",
  1997. "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/11df9b36fd4f1d2b727a73bf14931d81373b9a54",
  1998. "reference": "11df9b36fd4f1d2b727a73bf14931d81373b9a54",
  1999. "shasum": ""
  2000. },
  2001. "require": {
  2002. "ext-mbstring": "*",
  2003. "php": "^7.1 || ^8.0"
  2004. },
  2005. "conflict": {
  2006. "scrutinizer/ocular": "1.7.*"
  2007. },
  2008. "require-dev": {
  2009. "cebe/markdown": "~1.0",
  2010. "commonmark/commonmark.js": "0.29.2",
  2011. "erusev/parsedown": "~1.0",
  2012. "ext-json": "*",
  2013. "github/gfm": "0.29.0",
  2014. "michelf/php-markdown": "~1.4",
  2015. "mikehaertl/php-shellcommand": "^1.4",
  2016. "phpstan/phpstan": "^0.12",
  2017. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.2",
  2018. "scrutinizer/ocular": "^1.5",
  2019. "symfony/finder": "^4.2"
  2020. },
  2021. "bin": [
  2022. "bin/commonmark"
  2023. ],
  2024. "type": "library",
  2025. "autoload": {
  2026. "psr-4": {
  2027. "League\\CommonMark\\": "src"
  2028. }
  2029. },
  2030. "notification-url": "https://packagist.org/downloads/",
  2031. "license": [
  2032. "BSD-3-Clause"
  2033. ],
  2034. "authors": [
  2035. {
  2036. "name": "Colin O'Dell",
  2037. "email": "colinodell@gmail.com",
  2038. "homepage": "https://www.colinodell.com",
  2039. "role": "Lead Developer"
  2040. }
  2041. ],
  2042. "description": "Highly-extensible PHP Markdown parser which fully supports the CommonMark spec and Github-Flavored Markdown (GFM)",
  2043. "homepage": "https://commonmark.thephpleague.com",
  2044. "keywords": [
  2045. "commonmark",
  2046. "flavored",
  2047. "gfm",
  2048. "github",
  2049. "github-flavored",
  2050. "markdown",
  2051. "md",
  2052. "parser"
  2053. ],
  2054. "support": {
  2055. "docs": "https://commonmark.thephpleague.com/",
  2056. "issues": "https://github.com/thephpleague/commonmark/issues",
  2057. "rss": "https://github.com/thephpleague/commonmark/releases.atom",
  2058. "source": "https://github.com/thephpleague/commonmark"
  2059. },
  2060. "funding": [
  2061. {
  2062. "url": "https://enjoy.gitstore.app/repositories/thephpleague/commonmark",
  2063. "type": "custom"
  2064. },
  2065. {
  2066. "url": "https://www.colinodell.com/sponsor",
  2067. "type": "custom"
  2068. },
  2069. {
  2070. "url": "https://www.paypal.me/colinpodell/10.00",
  2071. "type": "custom"
  2072. },
  2073. {
  2074. "url": "https://github.com/colinodell",
  2075. "type": "github"
  2076. },
  2077. {
  2078. "url": "https://www.patreon.com/colinodell",
  2079. "type": "patreon"
  2080. },
  2081. {
  2082. "url": "https://tidelift.com/funding/github/packagist/league/commonmark",
  2083. "type": "tidelift"
  2084. }
  2085. ],
  2086. "time": "2020-10-31T13:49:32+00:00"
  2087. },
  2088. {
  2089. "name": "league/flysystem",
  2090. "version": "1.1.3",
  2091. "source": {
  2092. "type": "git",
  2093. "url": "https://github.com/thephpleague/flysystem.git",
  2094. "reference": "9be3b16c877d477357c015cec057548cf9b2a14a"
  2095. },
  2096. "dist": {
  2097. "type": "zip",
  2098. "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/9be3b16c877d477357c015cec057548cf9b2a14a",
  2099. "reference": "9be3b16c877d477357c015cec057548cf9b2a14a",
  2100. "shasum": ""
  2101. },
  2102. "require": {
  2103. "ext-fileinfo": "*",
  2104. "league/mime-type-detection": "^1.3",
  2105. "php": "^7.2.5 || ^8.0"
  2106. },
  2107. "conflict": {
  2108. "league/flysystem-sftp": "<1.0.6"
  2109. },
  2110. "require-dev": {
  2111. "phpspec/prophecy": "^1.11.1",
  2112. "phpunit/phpunit": "^8.5.8"
  2113. },
  2114. "suggest": {
  2115. "ext-fileinfo": "Required for MimeType",
  2116. "ext-ftp": "Allows you to use FTP server storage",
  2117. "ext-openssl": "Allows you to use FTPS server storage",
  2118. "league/flysystem-aws-s3-v2": "Allows you to use S3 storage with AWS SDK v2",
  2119. "league/flysystem-aws-s3-v3": "Allows you to use S3 storage with AWS SDK v3",
  2120. "league/flysystem-azure": "Allows you to use Windows Azure Blob storage",
  2121. "league/flysystem-cached-adapter": "Flysystem adapter decorator for metadata caching",
  2122. "league/flysystem-eventable-filesystem": "Allows you to use EventableFilesystem",
  2123. "league/flysystem-rackspace": "Allows you to use Rackspace Cloud Files",
  2124. "league/flysystem-sftp": "Allows you to use SFTP server storage via phpseclib",
  2125. "league/flysystem-webdav": "Allows you to use WebDAV storage",
  2126. "league/flysystem-ziparchive": "Allows you to use ZipArchive adapter",
  2127. "spatie/flysystem-dropbox": "Allows you to use Dropbox storage",
  2128. "srmklive/flysystem-dropbox-v2": "Allows you to use Dropbox storage for PHP 5 applications"
  2129. },
  2130. "type": "library",
  2131. "extra": {
  2132. "branch-alias": {
  2133. "dev-master": "1.1-dev"
  2134. }
  2135. },
  2136. "autoload": {
  2137. "psr-4": {
  2138. "League\\Flysystem\\": "src/"
  2139. }
  2140. },
  2141. "notification-url": "https://packagist.org/downloads/",
  2142. "license": [
  2143. "MIT"
  2144. ],
  2145. "authors": [
  2146. {
  2147. "name": "Frank de Jonge",
  2148. "email": "info@frenky.net"
  2149. }
  2150. ],
  2151. "description": "Filesystem abstraction: Many filesystems, one API.",
  2152. "keywords": [
  2153. "Cloud Files",
  2154. "WebDAV",
  2155. "abstraction",
  2156. "aws",
  2157. "cloud",
  2158. "copy.com",
  2159. "dropbox",
  2160. "file systems",
  2161. "files",
  2162. "filesystem",
  2163. "filesystems",
  2164. "ftp",
  2165. "rackspace",
  2166. "remote",
  2167. "s3",
  2168. "sftp",
  2169. "storage"
  2170. ],
  2171. "support": {
  2172. "issues": "https://github.com/thephpleague/flysystem/issues",
  2173. "source": "https://github.com/thephpleague/flysystem/tree/1.x"
  2174. },
  2175. "funding": [
  2176. {
  2177. "url": "https://offset.earth/frankdejonge",
  2178. "type": "other"
  2179. }
  2180. ],
  2181. "time": "2020-08-23T07:39:11+00:00"
  2182. },
  2183. {
  2184. "name": "league/mime-type-detection",
  2185. "version": "1.5.1",
  2186. "source": {
  2187. "type": "git",
  2188. "url": "https://github.com/thephpleague/mime-type-detection.git",
  2189. "reference": "353f66d7555d8a90781f6f5e7091932f9a4250aa"
  2190. },
  2191. "dist": {
  2192. "type": "zip",
  2193. "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/353f66d7555d8a90781f6f5e7091932f9a4250aa",
  2194. "reference": "353f66d7555d8a90781f6f5e7091932f9a4250aa",
  2195. "shasum": ""
  2196. },
  2197. "require": {
  2198. "ext-fileinfo": "*",
  2199. "php": "^7.2 || ^8.0"
  2200. },
  2201. "require-dev": {
  2202. "phpstan/phpstan": "^0.12.36",
  2203. "phpunit/phpunit": "^8.5.8"
  2204. },
  2205. "type": "library",
  2206. "autoload": {
  2207. "psr-4": {
  2208. "League\\MimeTypeDetection\\": "src"
  2209. }
  2210. },
  2211. "notification-url": "https://packagist.org/downloads/",
  2212. "license": [
  2213. "MIT"
  2214. ],
  2215. "authors": [
  2216. {
  2217. "name": "Frank de Jonge",
  2218. "email": "info@frankdejonge.nl"
  2219. }
  2220. ],
  2221. "description": "Mime-type detection for Flysystem",
  2222. "support": {
  2223. "issues": "https://github.com/thephpleague/mime-type-detection/issues",
  2224. "source": "https://github.com/thephpleague/mime-type-detection/tree/1.5.1"
  2225. },
  2226. "funding": [
  2227. {
  2228. "url": "https://github.com/frankdejonge",
  2229. "type": "github"
  2230. },
  2231. {
  2232. "url": "https://tidelift.com/funding/github/packagist/league/flysystem",
  2233. "type": "tidelift"
  2234. }
  2235. ],
  2236. "time": "2020-10-18T11:50:25+00:00"
  2237. },
  2238. {
  2239. "name": "maennchen/zipstream-php",
  2240. "version": "2.1.0",
  2241. "source": {
  2242. "type": "git",
  2243. "url": "https://github.com/maennchen/ZipStream-PHP.git",
  2244. "reference": "c4c5803cc1f93df3d2448478ef79394a5981cc58"
  2245. },
  2246. "dist": {
  2247. "type": "zip",
  2248. "url": "https://api.github.com/repos/maennchen/ZipStream-PHP/zipball/c4c5803cc1f93df3d2448478ef79394a5981cc58",
  2249. "reference": "c4c5803cc1f93df3d2448478ef79394a5981cc58",
  2250. "shasum": ""
  2251. },
  2252. "require": {
  2253. "myclabs/php-enum": "^1.5",
  2254. "php": ">= 7.1",
  2255. "psr/http-message": "^1.0",
  2256. "symfony/polyfill-mbstring": "^1.0"
  2257. },
  2258. "require-dev": {
  2259. "ext-zip": "*",
  2260. "guzzlehttp/guzzle": ">= 6.3",
  2261. "mikey179/vfsstream": "^1.6",
  2262. "phpunit/phpunit": ">= 7.5"
  2263. },
  2264. "type": "library",
  2265. "autoload": {
  2266. "psr-4": {
  2267. "ZipStream\\": "src/"
  2268. }
  2269. },
  2270. "notification-url": "https://packagist.org/downloads/",
  2271. "license": [
  2272. "MIT"
  2273. ],
  2274. "authors": [
  2275. {
  2276. "name": "Paul Duncan",
  2277. "email": "pabs@pablotron.org"
  2278. },
  2279. {
  2280. "name": "Jonatan Männchen",
  2281. "email": "jonatan@maennchen.ch"
  2282. },
  2283. {
  2284. "name": "Jesse Donat",
  2285. "email": "donatj@gmail.com"
  2286. },
  2287. {
  2288. "name": "András Kolesár",
  2289. "email": "kolesar@kolesar.hu"
  2290. }
  2291. ],
  2292. "description": "ZipStream is a library for dynamically streaming dynamic zip files from PHP without writing to the disk at all on the server.",
  2293. "keywords": [
  2294. "stream",
  2295. "zip"
  2296. ],
  2297. "support": {
  2298. "issues": "https://github.com/maennchen/ZipStream-PHP/issues",
  2299. "source": "https://github.com/maennchen/ZipStream-PHP/tree/master"
  2300. },
  2301. "funding": [
  2302. {
  2303. "url": "https://opencollective.com/zipstream",
  2304. "type": "open_collective"
  2305. }
  2306. ],
  2307. "time": "2020-05-30T13:11:16+00:00"
  2308. },
  2309. {
  2310. "name": "markbaker/complex",
  2311. "version": "2.0.0",
  2312. "source": {
  2313. "type": "git",
  2314. "url": "https://github.com/MarkBaker/PHPComplex.git",
  2315. "reference": "9999f1432fae467bc93c53f357105b4c31bb994c"
  2316. },
  2317. "dist": {
  2318. "type": "zip",
  2319. "url": "https://api.github.com/repos/MarkBaker/PHPComplex/zipball/9999f1432fae467bc93c53f357105b4c31bb994c",
  2320. "reference": "9999f1432fae467bc93c53f357105b4c31bb994c",
  2321. "shasum": ""
  2322. },
  2323. "require": {
  2324. "php": "^7.2 || ^8.0"
  2325. },
  2326. "require-dev": {
  2327. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  2328. "phpcompatibility/php-compatibility": "^9.0",
  2329. "phpdocumentor/phpdocumentor": "2.*",
  2330. "phploc/phploc": "^4.0",
  2331. "phpmd/phpmd": "2.*",
  2332. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.3",
  2333. "sebastian/phpcpd": "^4.0",
  2334. "squizlabs/php_codesniffer": "^3.4"
  2335. },
  2336. "type": "library",
  2337. "autoload": {
  2338. "psr-4": {
  2339. "Complex\\": "classes/src/"
  2340. },
  2341. "files": [
  2342. "classes/src/functions/abs.php",
  2343. "classes/src/functions/acos.php",
  2344. "classes/src/functions/acosh.php",
  2345. "classes/src/functions/acot.php",
  2346. "classes/src/functions/acoth.php",
  2347. "classes/src/functions/acsc.php",
  2348. "classes/src/functions/acsch.php",
  2349. "classes/src/functions/argument.php",
  2350. "classes/src/functions/asec.php",
  2351. "classes/src/functions/asech.php",
  2352. "classes/src/functions/asin.php",
  2353. "classes/src/functions/asinh.php",
  2354. "classes/src/functions/atan.php",
  2355. "classes/src/functions/atanh.php",
  2356. "classes/src/functions/conjugate.php",
  2357. "classes/src/functions/cos.php",
  2358. "classes/src/functions/cosh.php",
  2359. "classes/src/functions/cot.php",
  2360. "classes/src/functions/coth.php",
  2361. "classes/src/functions/csc.php",
  2362. "classes/src/functions/csch.php",
  2363. "classes/src/functions/exp.php",
  2364. "classes/src/functions/inverse.php",
  2365. "classes/src/functions/ln.php",
  2366. "classes/src/functions/log2.php",
  2367. "classes/src/functions/log10.php",
  2368. "classes/src/functions/negative.php",
  2369. "classes/src/functions/pow.php",
  2370. "classes/src/functions/rho.php",
  2371. "classes/src/functions/sec.php",
  2372. "classes/src/functions/sech.php",
  2373. "classes/src/functions/sin.php",
  2374. "classes/src/functions/sinh.php",
  2375. "classes/src/functions/sqrt.php",
  2376. "classes/src/functions/tan.php",
  2377. "classes/src/functions/tanh.php",
  2378. "classes/src/functions/theta.php",
  2379. "classes/src/operations/add.php",
  2380. "classes/src/operations/subtract.php",
  2381. "classes/src/operations/multiply.php",
  2382. "classes/src/operations/divideby.php",
  2383. "classes/src/operations/divideinto.php"
  2384. ]
  2385. },
  2386. "notification-url": "https://packagist.org/downloads/",
  2387. "license": [
  2388. "MIT"
  2389. ],
  2390. "authors": [
  2391. {
  2392. "name": "Mark Baker",
  2393. "email": "mark@lange.demon.co.uk"
  2394. }
  2395. ],
  2396. "description": "PHP Class for working with complex numbers",
  2397. "homepage": "https://github.com/MarkBaker/PHPComplex",
  2398. "keywords": [
  2399. "complex",
  2400. "mathematics"
  2401. ],
  2402. "support": {
  2403. "issues": "https://github.com/MarkBaker/PHPComplex/issues",
  2404. "source": "https://github.com/MarkBaker/PHPComplex/tree/PHP8"
  2405. },
  2406. "time": "2020-08-26T10:42:07+00:00"
  2407. },
  2408. {
  2409. "name": "markbaker/matrix",
  2410. "version": "2.0.0",
  2411. "source": {
  2412. "type": "git",
  2413. "url": "https://github.com/MarkBaker/PHPMatrix.git",
  2414. "reference": "9567d9c4c519fbe40de01dbd1e4469dbbb66f46a"
  2415. },
  2416. "dist": {
  2417. "type": "zip",
  2418. "url": "https://api.github.com/repos/MarkBaker/PHPMatrix/zipball/9567d9c4c519fbe40de01dbd1e4469dbbb66f46a",
  2419. "reference": "9567d9c4c519fbe40de01dbd1e4469dbbb66f46a",
  2420. "shasum": ""
  2421. },
  2422. "require": {
  2423. "php": "^7.2 || ^8.0"
  2424. },
  2425. "require-dev": {
  2426. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  2427. "phpcompatibility/php-compatibility": "^9.0",
  2428. "phpdocumentor/phpdocumentor": "2.*",
  2429. "phploc/phploc": "^4.0",
  2430. "phpmd/phpmd": "2.*",
  2431. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.3",
  2432. "sebastian/phpcpd": "^4.0",
  2433. "squizlabs/php_codesniffer": "^3.4"
  2434. },
  2435. "type": "library",
  2436. "autoload": {
  2437. "psr-4": {
  2438. "Matrix\\": "classes/src/"
  2439. },
  2440. "files": [
  2441. "classes/src/functions/adjoint.php",
  2442. "classes/src/functions/antidiagonal.php",
  2443. "classes/src/functions/cofactors.php",
  2444. "classes/src/functions/determinant.php",
  2445. "classes/src/functions/diagonal.php",
  2446. "classes/src/functions/identity.php",
  2447. "classes/src/functions/inverse.php",
  2448. "classes/src/functions/minors.php",
  2449. "classes/src/functions/trace.php",
  2450. "classes/src/functions/transpose.php",
  2451. "classes/src/operations/add.php",
  2452. "classes/src/operations/directsum.php",
  2453. "classes/src/operations/subtract.php",
  2454. "classes/src/operations/multiply.php",
  2455. "classes/src/operations/divideby.php",
  2456. "classes/src/operations/divideinto.php"
  2457. ]
  2458. },
  2459. "notification-url": "https://packagist.org/downloads/",
  2460. "license": [
  2461. "MIT"
  2462. ],
  2463. "authors": [
  2464. {
  2465. "name": "Mark Baker",
  2466. "email": "mark@demon-angel.eu"
  2467. }
  2468. ],
  2469. "description": "PHP Class for working with matrices",
  2470. "homepage": "https://github.com/MarkBaker/PHPMatrix",
  2471. "keywords": [
  2472. "mathematics",
  2473. "matrix",
  2474. "vector"
  2475. ],
  2476. "support": {
  2477. "issues": "https://github.com/MarkBaker/PHPMatrix/issues",
  2478. "source": "https://github.com/MarkBaker/PHPMatrix/tree/PHP8"
  2479. },
  2480. "time": "2020-08-28T17:11:00+00:00"
  2481. },
  2482. {
  2483. "name": "maxmind-db/reader",
  2484. "version": "v1.8.0",
  2485. "source": {
  2486. "type": "git",
  2487. "url": "https://github.com/maxmind/MaxMind-DB-Reader-php.git",
  2488. "reference": "b566d429ac9aec10594b0935be8ff38302f8d5c8"
  2489. },
  2490. "dist": {
  2491. "type": "zip",
  2492. "url": "https://api.github.com/repos/maxmind/MaxMind-DB-Reader-php/zipball/b566d429ac9aec10594b0935be8ff38302f8d5c8",
  2493. "reference": "b566d429ac9aec10594b0935be8ff38302f8d5c8",
  2494. "shasum": ""
  2495. },
  2496. "require": {
  2497. "php": ">=7.2"
  2498. },
  2499. "conflict": {
  2500. "ext-maxminddb": "<1.8.0,>=2.0.0"
  2501. },
  2502. "require-dev": {
  2503. "friendsofphp/php-cs-fixer": "2.*",
  2504. "php-coveralls/php-coveralls": "^2.1",
  2505. "phpunit/phpcov": ">=6.0.0",
  2506. "phpunit/phpunit": ">=8.0.0,<10.0.0",
  2507. "squizlabs/php_codesniffer": "3.*"
  2508. },
  2509. "suggest": {
  2510. "ext-bcmath": "bcmath or gmp is required for decoding larger integers with the pure PHP decoder",
  2511. "ext-gmp": "bcmath or gmp is required for decoding larger integers with the pure PHP decoder",
  2512. "ext-maxminddb": "A C-based database decoder that provides significantly faster lookups"
  2513. },
  2514. "type": "library",
  2515. "autoload": {
  2516. "psr-4": {
  2517. "MaxMind\\Db\\": "src/MaxMind/Db"
  2518. }
  2519. },
  2520. "notification-url": "https://packagist.org/downloads/",
  2521. "license": [
  2522. "Apache-2.0"
  2523. ],
  2524. "authors": [
  2525. {
  2526. "name": "Gregory J. Oschwald",
  2527. "email": "goschwald@maxmind.com",
  2528. "homepage": "https://www.maxmind.com/"
  2529. }
  2530. ],
  2531. "description": "MaxMind DB Reader API",
  2532. "homepage": "https://github.com/maxmind/MaxMind-DB-Reader-php",
  2533. "keywords": [
  2534. "database",
  2535. "geoip",
  2536. "geoip2",
  2537. "geolocation",
  2538. "maxmind"
  2539. ],
  2540. "support": {
  2541. "issues": "https://github.com/maxmind/MaxMind-DB-Reader-php/issues",
  2542. "source": "https://github.com/maxmind/MaxMind-DB-Reader-php/tree/v1.8.0"
  2543. },
  2544. "time": "2020-10-01T17:30:21+00:00"
  2545. },
  2546. {
  2547. "name": "maxmind/web-service-common",
  2548. "version": "v0.8.1",
  2549. "source": {
  2550. "type": "git",
  2551. "url": "https://github.com/maxmind/web-service-common-php.git",
  2552. "reference": "32f274051c543fc865e5a84d3a2c703913641ea8"
  2553. },
  2554. "dist": {
  2555. "type": "zip",
  2556. "url": "https://api.github.com/repos/maxmind/web-service-common-php/zipball/32f274051c543fc865e5a84d3a2c703913641ea8",
  2557. "reference": "32f274051c543fc865e5a84d3a2c703913641ea8",
  2558. "shasum": ""
  2559. },
  2560. "require": {
  2561. "composer/ca-bundle": "^1.0.3",
  2562. "ext-curl": "*",
  2563. "ext-json": "*",
  2564. "php": ">=7.2"
  2565. },
  2566. "require-dev": {
  2567. "friendsofphp/php-cs-fixer": "2.*",
  2568. "phpunit/phpunit": "^8.0 || ^9.0",
  2569. "squizlabs/php_codesniffer": "3.*"
  2570. },
  2571. "type": "library",
  2572. "autoload": {
  2573. "psr-4": {
  2574. "MaxMind\\Exception\\": "src/Exception",
  2575. "MaxMind\\WebService\\": "src/WebService"
  2576. }
  2577. },
  2578. "notification-url": "https://packagist.org/downloads/",
  2579. "license": [
  2580. "Apache-2.0"
  2581. ],
  2582. "authors": [
  2583. {
  2584. "name": "Gregory Oschwald",
  2585. "email": "goschwald@maxmind.com"
  2586. }
  2587. ],
  2588. "description": "Internal MaxMind Web Service API",
  2589. "homepage": "https://github.com/maxmind/web-service-common-php",
  2590. "support": {
  2591. "issues": "https://github.com/maxmind/web-service-common-php/issues",
  2592. "source": "https://github.com/maxmind/web-service-common-php/tree/v0.8.1"
  2593. },
  2594. "time": "2020-11-02T17:00:53+00:00"
  2595. },
  2596. {
  2597. "name": "mews/captcha",
  2598. "version": "3.2.4",
  2599. "source": {
  2600. "type": "git",
  2601. "url": "https://github.com/mewebstudio/captcha.git",
  2602. "reference": "616d006be6f53e87b93f6dc0f298fb29ca0b7d6c"
  2603. },
  2604. "dist": {
  2605. "type": "zip",
  2606. "url": "https://api.github.com/repos/mewebstudio/captcha/zipball/616d006be6f53e87b93f6dc0f298fb29ca0b7d6c",
  2607. "reference": "616d006be6f53e87b93f6dc0f298fb29ca0b7d6c",
  2608. "shasum": ""
  2609. },
  2610. "require": {
  2611. "ext-gd": "*",
  2612. "illuminate/config": "~5|^6|^7|^8",
  2613. "illuminate/filesystem": "~5|^6|^7|^8",
  2614. "illuminate/hashing": "~5|^6|^7|^8",
  2615. "illuminate/session": "~5|^6|^7|^8",
  2616. "illuminate/support": "~5|^6|^7|^8",
  2617. "intervention/image": "~2.5",
  2618. "php": "^7.2"
  2619. },
  2620. "require-dev": {
  2621. "mockery/mockery": "^1.0",
  2622. "phpunit/phpunit": "^8.5"
  2623. },
  2624. "type": "package",
  2625. "extra": {
  2626. "laravel": {
  2627. "providers": [
  2628. "Mews\\Captcha\\CaptchaServiceProvider"
  2629. ],
  2630. "aliases": {
  2631. "Captcha": "Mews\\Captcha\\Facades\\Captcha"
  2632. }
  2633. }
  2634. },
  2635. "autoload": {
  2636. "psr-4": {
  2637. "Mews\\Captcha\\": "src/"
  2638. },
  2639. "files": [
  2640. "src/helpers.php"
  2641. ]
  2642. },
  2643. "notification-url": "https://packagist.org/downloads/",
  2644. "license": [
  2645. "MIT"
  2646. ],
  2647. "authors": [
  2648. {
  2649. "name": "Muharrem ERİN",
  2650. "email": "me@mewebstudio.com",
  2651. "homepage": "https://github.com/mewebstudio",
  2652. "role": "Developer"
  2653. }
  2654. ],
  2655. "description": "Laravel 5 & 6 Captcha Package",
  2656. "homepage": "https://github.com/mewebstudio/captcha",
  2657. "keywords": [
  2658. "captcha",
  2659. "laravel5 Security",
  2660. "laravel6 Captcha",
  2661. "laravel6 Security"
  2662. ],
  2663. "support": {
  2664. "issues": "https://github.com/mewebstudio/captcha/issues",
  2665. "source": "https://github.com/mewebstudio/captcha/tree/3.2.4"
  2666. },
  2667. "time": "2020-12-14T12:34:10+00:00"
  2668. },
  2669. {
  2670. "name": "mews/purifier",
  2671. "version": "3.3.3",
  2672. "source": {
  2673. "type": "git",
  2674. "url": "https://github.com/mewebstudio/Purifier.git",
  2675. "reference": "8e0b3d87c79b38b8d88aeb3c0ba8b000a393a74c"
  2676. },
  2677. "dist": {
  2678. "type": "zip",
  2679. "url": "https://api.github.com/repos/mewebstudio/Purifier/zipball/8e0b3d87c79b38b8d88aeb3c0ba8b000a393a74c",
  2680. "reference": "8e0b3d87c79b38b8d88aeb3c0ba8b000a393a74c",
  2681. "shasum": ""
  2682. },
  2683. "require": {
  2684. "ezyang/htmlpurifier": "4.13.*",
  2685. "illuminate/config": "^5.8|^6.0|^7.0|^8.0",
  2686. "illuminate/filesystem": "^5.8|^6.0|^7.0|^8.0",
  2687. "illuminate/support": "^5.8|^6.0|^7.0|^8.0",
  2688. "php": "^7.2|^8.0"
  2689. },
  2690. "require-dev": {
  2691. "graham-campbell/testbench": "^3.2|^5.5.1",
  2692. "mockery/mockery": "^1.3.3",
  2693. "phpunit/phpunit": "^8.0|^9.0"
  2694. },
  2695. "suggest": {
  2696. "laravel/framework": "To test the Laravel bindings",
  2697. "laravel/lumen-framework": "To test the Lumen bindings"
  2698. },
  2699. "type": "package",
  2700. "extra": {
  2701. "laravel": {
  2702. "providers": [
  2703. "Mews\\Purifier\\PurifierServiceProvider"
  2704. ],
  2705. "aliases": {
  2706. "Purifier": "Mews\\Purifier\\Facades\\Purifier"
  2707. }
  2708. }
  2709. },
  2710. "autoload": {
  2711. "psr-4": {
  2712. "Mews\\Purifier\\": "src/"
  2713. },
  2714. "files": [
  2715. "src/helpers.php"
  2716. ]
  2717. },
  2718. "notification-url": "https://packagist.org/downloads/",
  2719. "license": [
  2720. "MIT"
  2721. ],
  2722. "authors": [
  2723. {
  2724. "name": "Muharrem ERİN",
  2725. "email": "me@mewebstudio.com",
  2726. "homepage": "https://github.com/mewebstudio",
  2727. "role": "Developer"
  2728. }
  2729. ],
  2730. "description": "Laravel 5/6/7 HtmlPurifier Package",
  2731. "homepage": "https://github.com/mewebstudio/purifier",
  2732. "keywords": [
  2733. "Purifier",
  2734. "htmlpurifier",
  2735. "laravel5 HtmlPurifier",
  2736. "laravel5 Purifier",
  2737. "laravel5 Security",
  2738. "laravel6 HtmlPurifier",
  2739. "laravel6 Purifier",
  2740. "laravel6 Security",
  2741. "security",
  2742. "xss"
  2743. ],
  2744. "support": {
  2745. "issues": "https://github.com/mewebstudio/Purifier/issues",
  2746. "source": "https://github.com/mewebstudio/Purifier/tree/3.3.3"
  2747. },
  2748. "time": "2020-11-03T19:46:27+00:00"
  2749. },
  2750. {
  2751. "name": "mobiledetect/mobiledetectlib",
  2752. "version": "2.8.34",
  2753. "source": {
  2754. "type": "git",
  2755. "url": "https://github.com/serbanghita/Mobile-Detect.git",
  2756. "reference": "6f8113f57a508494ca36acbcfa2dc2d923c7ed5b"
  2757. },
  2758. "dist": {
  2759. "type": "zip",
  2760. "url": "https://api.github.com/repos/serbanghita/Mobile-Detect/zipball/6f8113f57a508494ca36acbcfa2dc2d923c7ed5b",
  2761. "reference": "6f8113f57a508494ca36acbcfa2dc2d923c7ed5b",
  2762. "shasum": ""
  2763. },
  2764. "require": {
  2765. "php": ">=5.0.0"
  2766. },
  2767. "require-dev": {
  2768. "phpunit/phpunit": "~4.8.35||~5.7"
  2769. },
  2770. "type": "library",
  2771. "autoload": {
  2772. "classmap": [
  2773. "Mobile_Detect.php"
  2774. ],
  2775. "psr-0": {
  2776. "Detection": "namespaced/"
  2777. }
  2778. },
  2779. "notification-url": "https://packagist.org/downloads/",
  2780. "license": [
  2781. "MIT"
  2782. ],
  2783. "authors": [
  2784. {
  2785. "name": "Serban Ghita",
  2786. "email": "serbanghita@gmail.com",
  2787. "homepage": "http://mobiledetect.net",
  2788. "role": "Developer"
  2789. }
  2790. ],
  2791. "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.",
  2792. "homepage": "https://github.com/serbanghita/Mobile-Detect",
  2793. "keywords": [
  2794. "detect mobile devices",
  2795. "mobile",
  2796. "mobile detect",
  2797. "mobile detector",
  2798. "php mobile detect"
  2799. ],
  2800. "support": {
  2801. "issues": "https://github.com/serbanghita/Mobile-Detect/issues",
  2802. "source": "https://github.com/serbanghita/Mobile-Detect/tree/2.8.34"
  2803. },
  2804. "time": "2019-09-18T18:44:20+00:00"
  2805. },
  2806. {
  2807. "name": "monolog/monolog",
  2808. "version": "2.2.0",
  2809. "source": {
  2810. "type": "git",
  2811. "url": "https://github.com/Seldaek/monolog.git",
  2812. "reference": "1cb1cde8e8dd0f70cc0fe51354a59acad9302084"
  2813. },
  2814. "dist": {
  2815. "type": "zip",
  2816. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/1cb1cde8e8dd0f70cc0fe51354a59acad9302084",
  2817. "reference": "1cb1cde8e8dd0f70cc0fe51354a59acad9302084",
  2818. "shasum": ""
  2819. },
  2820. "require": {
  2821. "php": ">=7.2",
  2822. "psr/log": "^1.0.1"
  2823. },
  2824. "provide": {
  2825. "psr/log-implementation": "1.0.0"
  2826. },
  2827. "require-dev": {
  2828. "aws/aws-sdk-php": "^2.4.9 || ^3.0",
  2829. "doctrine/couchdb": "~1.0@dev",
  2830. "elasticsearch/elasticsearch": "^7",
  2831. "graylog2/gelf-php": "^1.4.2",
  2832. "mongodb/mongodb": "^1.8",
  2833. "php-amqplib/php-amqplib": "~2.4",
  2834. "php-console/php-console": "^3.1.3",
  2835. "phpspec/prophecy": "^1.6.1",
  2836. "phpstan/phpstan": "^0.12.59",
  2837. "phpunit/phpunit": "^8.5",
  2838. "predis/predis": "^1.1",
  2839. "rollbar/rollbar": "^1.3",
  2840. "ruflin/elastica": ">=0.90 <7.0.1",
  2841. "swiftmailer/swiftmailer": "^5.3|^6.0"
  2842. },
  2843. "suggest": {
  2844. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  2845. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  2846. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  2847. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  2848. "ext-mbstring": "Allow to work properly with unicode symbols",
  2849. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  2850. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  2851. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  2852. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  2853. "php-console/php-console": "Allow sending log messages to Google Chrome",
  2854. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  2855. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  2856. },
  2857. "type": "library",
  2858. "extra": {
  2859. "branch-alias": {
  2860. "dev-main": "2.x-dev"
  2861. }
  2862. },
  2863. "autoload": {
  2864. "psr-4": {
  2865. "Monolog\\": "src/Monolog"
  2866. }
  2867. },
  2868. "notification-url": "https://packagist.org/downloads/",
  2869. "license": [
  2870. "MIT"
  2871. ],
  2872. "authors": [
  2873. {
  2874. "name": "Jordi Boggiano",
  2875. "email": "j.boggiano@seld.be",
  2876. "homepage": "https://seld.be"
  2877. }
  2878. ],
  2879. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  2880. "homepage": "https://github.com/Seldaek/monolog",
  2881. "keywords": [
  2882. "log",
  2883. "logging",
  2884. "psr-3"
  2885. ],
  2886. "support": {
  2887. "issues": "https://github.com/Seldaek/monolog/issues",
  2888. "source": "https://github.com/Seldaek/monolog/tree/2.2.0"
  2889. },
  2890. "funding": [
  2891. {
  2892. "url": "https://github.com/Seldaek",
  2893. "type": "github"
  2894. },
  2895. {
  2896. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  2897. "type": "tidelift"
  2898. }
  2899. ],
  2900. "time": "2020-12-14T13:15:25+00:00"
  2901. },
  2902. {
  2903. "name": "myclabs/php-enum",
  2904. "version": "1.7.7",
  2905. "source": {
  2906. "type": "git",
  2907. "url": "https://github.com/myclabs/php-enum.git",
  2908. "reference": "d178027d1e679832db9f38248fcc7200647dc2b7"
  2909. },
  2910. "dist": {
  2911. "type": "zip",
  2912. "url": "https://api.github.com/repos/myclabs/php-enum/zipball/d178027d1e679832db9f38248fcc7200647dc2b7",
  2913. "reference": "d178027d1e679832db9f38248fcc7200647dc2b7",
  2914. "shasum": ""
  2915. },
  2916. "require": {
  2917. "ext-json": "*",
  2918. "php": ">=7.1"
  2919. },
  2920. "require-dev": {
  2921. "phpunit/phpunit": "^7",
  2922. "squizlabs/php_codesniffer": "1.*",
  2923. "vimeo/psalm": "^3.8"
  2924. },
  2925. "type": "library",
  2926. "autoload": {
  2927. "psr-4": {
  2928. "MyCLabs\\Enum\\": "src/"
  2929. }
  2930. },
  2931. "notification-url": "https://packagist.org/downloads/",
  2932. "license": [
  2933. "MIT"
  2934. ],
  2935. "authors": [
  2936. {
  2937. "name": "PHP Enum contributors",
  2938. "homepage": "https://github.com/myclabs/php-enum/graphs/contributors"
  2939. }
  2940. ],
  2941. "description": "PHP Enum implementation",
  2942. "homepage": "http://github.com/myclabs/php-enum",
  2943. "keywords": [
  2944. "enum"
  2945. ],
  2946. "support": {
  2947. "issues": "https://github.com/myclabs/php-enum/issues",
  2948. "source": "https://github.com/myclabs/php-enum/tree/1.7.7"
  2949. },
  2950. "funding": [
  2951. {
  2952. "url": "https://github.com/mnapoli",
  2953. "type": "github"
  2954. },
  2955. {
  2956. "url": "https://tidelift.com/funding/github/packagist/myclabs/php-enum",
  2957. "type": "tidelift"
  2958. }
  2959. ],
  2960. "time": "2020-11-14T18:14:52+00:00"
  2961. },
  2962. {
  2963. "name": "namshi/jose",
  2964. "version": "7.2.3",
  2965. "source": {
  2966. "type": "git",
  2967. "url": "https://github.com/namshi/jose.git",
  2968. "reference": "89a24d7eb3040e285dd5925fcad992378b82bcff"
  2969. },
  2970. "dist": {
  2971. "type": "zip",
  2972. "url": "https://api.github.com/repos/namshi/jose/zipball/89a24d7eb3040e285dd5925fcad992378b82bcff",
  2973. "reference": "89a24d7eb3040e285dd5925fcad992378b82bcff",
  2974. "shasum": ""
  2975. },
  2976. "require": {
  2977. "ext-date": "*",
  2978. "ext-hash": "*",
  2979. "ext-json": "*",
  2980. "ext-pcre": "*",
  2981. "ext-spl": "*",
  2982. "php": ">=5.5",
  2983. "symfony/polyfill-php56": "^1.0"
  2984. },
  2985. "require-dev": {
  2986. "phpseclib/phpseclib": "^2.0",
  2987. "phpunit/phpunit": "^4.5|^5.0",
  2988. "satooshi/php-coveralls": "^1.0"
  2989. },
  2990. "suggest": {
  2991. "ext-openssl": "Allows to use OpenSSL as crypto engine.",
  2992. "phpseclib/phpseclib": "Allows to use Phpseclib as crypto engine, use version ^2.0."
  2993. },
  2994. "type": "library",
  2995. "autoload": {
  2996. "psr-4": {
  2997. "Namshi\\JOSE\\": "src/Namshi/JOSE/"
  2998. }
  2999. },
  3000. "notification-url": "https://packagist.org/downloads/",
  3001. "license": [
  3002. "MIT"
  3003. ],
  3004. "authors": [
  3005. {
  3006. "name": "Alessandro Nadalin",
  3007. "email": "alessandro.nadalin@gmail.com"
  3008. },
  3009. {
  3010. "name": "Alessandro Cinelli (cirpo)",
  3011. "email": "alessandro.cinelli@gmail.com"
  3012. }
  3013. ],
  3014. "description": "JSON Object Signing and Encryption library for PHP.",
  3015. "keywords": [
  3016. "JSON Web Signature",
  3017. "JSON Web Token",
  3018. "JWS",
  3019. "json",
  3020. "jwt",
  3021. "token"
  3022. ],
  3023. "support": {
  3024. "issues": "https://github.com/namshi/jose/issues",
  3025. "source": "https://github.com/namshi/jose/tree/master"
  3026. },
  3027. "time": "2016-12-05T07:27:31+00:00"
  3028. },
  3029. {
  3030. "name": "nesbot/carbon",
  3031. "version": "2.43.0",
  3032. "source": {
  3033. "type": "git",
  3034. "url": "https://github.com/briannesbitt/Carbon.git",
  3035. "reference": "d32c57d8389113742f4a88725a170236470012e2"
  3036. },
  3037. "dist": {
  3038. "type": "zip",
  3039. "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/d32c57d8389113742f4a88725a170236470012e2",
  3040. "reference": "d32c57d8389113742f4a88725a170236470012e2",
  3041. "shasum": ""
  3042. },
  3043. "require": {
  3044. "ext-json": "*",
  3045. "php": "^7.1.8 || ^8.0",
  3046. "symfony/polyfill-mbstring": "^1.0",
  3047. "symfony/translation": "^3.4 || ^4.0 || ^5.0"
  3048. },
  3049. "require-dev": {
  3050. "doctrine/orm": "^2.7",
  3051. "friendsofphp/php-cs-fixer": "^2.14 || ^3.0",
  3052. "kylekatarnls/multi-tester": "^2.0",
  3053. "phpmd/phpmd": "^2.9",
  3054. "phpstan/extension-installer": "^1.0",
  3055. "phpstan/phpstan": "^0.12.54",
  3056. "phpunit/phpunit": "^7.5 || ^8.0",
  3057. "squizlabs/php_codesniffer": "^3.4"
  3058. },
  3059. "bin": [
  3060. "bin/carbon"
  3061. ],
  3062. "type": "library",
  3063. "extra": {
  3064. "branch-alias": {
  3065. "dev-master": "2.x-dev",
  3066. "dev-3.x": "3.x-dev"
  3067. },
  3068. "laravel": {
  3069. "providers": [
  3070. "Carbon\\Laravel\\ServiceProvider"
  3071. ]
  3072. },
  3073. "phpstan": {
  3074. "includes": [
  3075. "extension.neon"
  3076. ]
  3077. }
  3078. },
  3079. "autoload": {
  3080. "psr-4": {
  3081. "Carbon\\": "src/Carbon/"
  3082. }
  3083. },
  3084. "notification-url": "https://packagist.org/downloads/",
  3085. "license": [
  3086. "MIT"
  3087. ],
  3088. "authors": [
  3089. {
  3090. "name": "Brian Nesbitt",
  3091. "email": "brian@nesbot.com",
  3092. "homepage": "http://nesbot.com"
  3093. },
  3094. {
  3095. "name": "kylekatarnls",
  3096. "homepage": "http://github.com/kylekatarnls"
  3097. }
  3098. ],
  3099. "description": "An API extension for DateTime that supports 281 different languages.",
  3100. "homepage": "http://carbon.nesbot.com",
  3101. "keywords": [
  3102. "date",
  3103. "datetime",
  3104. "time"
  3105. ],
  3106. "support": {
  3107. "issues": "https://github.com/briannesbitt/Carbon/issues",
  3108. "source": "https://github.com/briannesbitt/Carbon"
  3109. },
  3110. "funding": [
  3111. {
  3112. "url": "https://opencollective.com/Carbon",
  3113. "type": "open_collective"
  3114. },
  3115. {
  3116. "url": "https://tidelift.com/funding/github/packagist/nesbot/carbon",
  3117. "type": "tidelift"
  3118. }
  3119. ],
  3120. "time": "2020-12-17T20:55:32+00:00"
  3121. },
  3122. {
  3123. "name": "nikic/php-parser",
  3124. "version": "v4.10.4",
  3125. "source": {
  3126. "type": "git",
  3127. "url": "https://github.com/nikic/PHP-Parser.git",
  3128. "reference": "c6d052fc58cb876152f89f532b95a8d7907e7f0e"
  3129. },
  3130. "dist": {
  3131. "type": "zip",
  3132. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/c6d052fc58cb876152f89f532b95a8d7907e7f0e",
  3133. "reference": "c6d052fc58cb876152f89f532b95a8d7907e7f0e",
  3134. "shasum": ""
  3135. },
  3136. "require": {
  3137. "ext-tokenizer": "*",
  3138. "php": ">=7.0"
  3139. },
  3140. "require-dev": {
  3141. "ircmaxell/php-yacc": "^0.0.7",
  3142. "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0"
  3143. },
  3144. "bin": [
  3145. "bin/php-parse"
  3146. ],
  3147. "type": "library",
  3148. "extra": {
  3149. "branch-alias": {
  3150. "dev-master": "4.9-dev"
  3151. }
  3152. },
  3153. "autoload": {
  3154. "psr-4": {
  3155. "PhpParser\\": "lib/PhpParser"
  3156. }
  3157. },
  3158. "notification-url": "https://packagist.org/downloads/",
  3159. "license": [
  3160. "BSD-3-Clause"
  3161. ],
  3162. "authors": [
  3163. {
  3164. "name": "Nikita Popov"
  3165. }
  3166. ],
  3167. "description": "A PHP parser written in PHP",
  3168. "keywords": [
  3169. "parser",
  3170. "php"
  3171. ],
  3172. "support": {
  3173. "issues": "https://github.com/nikic/PHP-Parser/issues",
  3174. "source": "https://github.com/nikic/PHP-Parser/tree/v4.10.4"
  3175. },
  3176. "time": "2020-12-20T10:01:03+00:00"
  3177. },
  3178. {
  3179. "name": "opis/closure",
  3180. "version": "3.6.1",
  3181. "source": {
  3182. "type": "git",
  3183. "url": "https://github.com/opis/closure.git",
  3184. "reference": "943b5d70cc5ae7483f6aff6ff43d7e34592ca0f5"
  3185. },
  3186. "dist": {
  3187. "type": "zip",
  3188. "url": "https://api.github.com/repos/opis/closure/zipball/943b5d70cc5ae7483f6aff6ff43d7e34592ca0f5",
  3189. "reference": "943b5d70cc5ae7483f6aff6ff43d7e34592ca0f5",
  3190. "shasum": ""
  3191. },
  3192. "require": {
  3193. "php": "^5.4 || ^7.0 || ^8.0"
  3194. },
  3195. "require-dev": {
  3196. "jeremeamia/superclosure": "^2.0",
  3197. "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.0"
  3198. },
  3199. "type": "library",
  3200. "extra": {
  3201. "branch-alias": {
  3202. "dev-master": "3.6.x-dev"
  3203. }
  3204. },
  3205. "autoload": {
  3206. "psr-4": {
  3207. "Opis\\Closure\\": "src/"
  3208. },
  3209. "files": [
  3210. "functions.php"
  3211. ]
  3212. },
  3213. "notification-url": "https://packagist.org/downloads/",
  3214. "license": [
  3215. "MIT"
  3216. ],
  3217. "authors": [
  3218. {
  3219. "name": "Marius Sarca",
  3220. "email": "marius.sarca@gmail.com"
  3221. },
  3222. {
  3223. "name": "Sorin Sarca",
  3224. "email": "sarca_sorin@hotmail.com"
  3225. }
  3226. ],
  3227. "description": "A library that can be used to serialize closures (anonymous functions) and arbitrary objects.",
  3228. "homepage": "https://opis.io/closure",
  3229. "keywords": [
  3230. "anonymous functions",
  3231. "closure",
  3232. "function",
  3233. "serializable",
  3234. "serialization",
  3235. "serialize"
  3236. ],
  3237. "support": {
  3238. "issues": "https://github.com/opis/closure/issues",
  3239. "source": "https://github.com/opis/closure/tree/3.6.1"
  3240. },
  3241. "time": "2020-11-07T02:01:34+00:00"
  3242. },
  3243. {
  3244. "name": "overtrue/laravel-lang",
  3245. "version": "4.2.1",
  3246. "source": {
  3247. "type": "git",
  3248. "url": "https://github.com/overtrue/laravel-lang.git",
  3249. "reference": "653189caa6eac682fa5d15482f271489721231c7"
  3250. },
  3251. "dist": {
  3252. "type": "zip",
  3253. "url": "https://api.github.com/repos/overtrue/laravel-lang/zipball/653189caa6eac682fa5d15482f271489721231c7",
  3254. "reference": "653189caa6eac682fa5d15482f271489721231c7",
  3255. "shasum": ""
  3256. },
  3257. "require": {
  3258. "ext-json": "*",
  3259. "laravel-lang/lang": "^7.0",
  3260. "symfony/process": "^5.0.0"
  3261. },
  3262. "require-dev": {
  3263. "laravel/framework": "~8.1"
  3264. },
  3265. "type": "library",
  3266. "extra": {
  3267. "laravel": {
  3268. "providers": [
  3269. "Overtrue\\LaravelLang\\TranslationServiceProvider"
  3270. ]
  3271. }
  3272. },
  3273. "autoload": {
  3274. "psr-4": {
  3275. "Overtrue\\LaravelLang\\": "src/"
  3276. }
  3277. },
  3278. "notification-url": "https://packagist.org/downloads/",
  3279. "license": [
  3280. "MIT"
  3281. ],
  3282. "authors": [
  3283. {
  3284. "name": "overtrue",
  3285. "email": "anzhengchao@gmail.com"
  3286. }
  3287. ],
  3288. "description": "List of 75 languages for Laravel 4, 5, 6 and 7",
  3289. "keywords": [
  3290. "i18n",
  3291. "languages",
  3292. "laravel",
  3293. "locale",
  3294. "overtrue"
  3295. ],
  3296. "support": {
  3297. "issues": "https://github.com/overtrue/laravel-lang/issues",
  3298. "source": "https://github.com/overtrue/laravel-lang/tree/4.2.1"
  3299. },
  3300. "funding": [
  3301. {
  3302. "url": "https://www.patreon.com/overtrue",
  3303. "type": "patreon"
  3304. }
  3305. ],
  3306. "time": "2020-11-12T01:44:31+00:00"
  3307. },
  3308. {
  3309. "name": "phpoffice/phpspreadsheet",
  3310. "version": "1.16.1",
  3311. "source": {
  3312. "type": "git",
  3313. "url": "https://github.com/PHPOffice/PhpSpreadsheet.git",
  3314. "reference": "76d4323b85129d0c368149c831a07a3e258b2b50"
  3315. },
  3316. "dist": {
  3317. "type": "zip",
  3318. "url": "https://api.github.com/repos/PHPOffice/PhpSpreadsheet/zipball/76d4323b85129d0c368149c831a07a3e258b2b50",
  3319. "reference": "76d4323b85129d0c368149c831a07a3e258b2b50",
  3320. "shasum": ""
  3321. },
  3322. "require": {
  3323. "ext-ctype": "*",
  3324. "ext-dom": "*",
  3325. "ext-fileinfo": "*",
  3326. "ext-gd": "*",
  3327. "ext-iconv": "*",
  3328. "ext-libxml": "*",
  3329. "ext-mbstring": "*",
  3330. "ext-simplexml": "*",
  3331. "ext-xml": "*",
  3332. "ext-xmlreader": "*",
  3333. "ext-xmlwriter": "*",
  3334. "ext-zip": "*",
  3335. "ext-zlib": "*",
  3336. "ezyang/htmlpurifier": "^4.13",
  3337. "maennchen/zipstream-php": "^2.1",
  3338. "markbaker/complex": "^1.5||^2.0",
  3339. "markbaker/matrix": "^1.2||^2.0",
  3340. "php": "^7.2||^8.0",
  3341. "psr/http-client": "^1.0",
  3342. "psr/http-factory": "^1.0",
  3343. "psr/simple-cache": "^1.0"
  3344. },
  3345. "require-dev": {
  3346. "dompdf/dompdf": "^0.8.5",
  3347. "friendsofphp/php-cs-fixer": "^2.16",
  3348. "jpgraph/jpgraph": "^4.0",
  3349. "mpdf/mpdf": "^8.0",
  3350. "phpcompatibility/php-compatibility": "^9.3",
  3351. "phpunit/phpunit": "^8.5||^9.3",
  3352. "squizlabs/php_codesniffer": "^3.5",
  3353. "tecnickcom/tcpdf": "^6.3"
  3354. },
  3355. "suggest": {
  3356. "dompdf/dompdf": "Option for rendering PDF with PDF Writer (doesn't yet support PHP8)",
  3357. "jpgraph/jpgraph": "Option for rendering charts, or including charts with PDF or HTML Writers",
  3358. "mpdf/mpdf": "Option for rendering PDF with PDF Writer",
  3359. "tecnickcom/tcpdf": "Option for rendering PDF with PDF Writer (doesn't yet support PHP8)"
  3360. },
  3361. "type": "library",
  3362. "autoload": {
  3363. "psr-4": {
  3364. "PhpOffice\\PhpSpreadsheet\\": "src/PhpSpreadsheet"
  3365. }
  3366. },
  3367. "notification-url": "https://packagist.org/downloads/",
  3368. "license": [
  3369. "MIT"
  3370. ],
  3371. "authors": [
  3372. {
  3373. "name": "Maarten Balliauw",
  3374. "homepage": "https://blog.maartenballiauw.be"
  3375. },
  3376. {
  3377. "name": "Mark Baker",
  3378. "homepage": "https://markbakeruk.net"
  3379. },
  3380. {
  3381. "name": "Franck Lefevre",
  3382. "homepage": "https://rootslabs.net"
  3383. },
  3384. {
  3385. "name": "Erik Tilt"
  3386. },
  3387. {
  3388. "name": "Adrien Crivelli"
  3389. }
  3390. ],
  3391. "description": "PHPSpreadsheet - Read, Create and Write Spreadsheet documents in PHP - Spreadsheet engine",
  3392. "homepage": "https://github.com/PHPOffice/PhpSpreadsheet",
  3393. "keywords": [
  3394. "OpenXML",
  3395. "excel",
  3396. "gnumeric",
  3397. "ods",
  3398. "php",
  3399. "spreadsheet",
  3400. "xls",
  3401. "xlsx"
  3402. ],
  3403. "support": {
  3404. "issues": "https://github.com/PHPOffice/PhpSpreadsheet/issues",
  3405. "source": "https://github.com/PHPOffice/PhpSpreadsheet/tree/1.16.1"
  3406. },
  3407. "time": "2020-12-31T18:03:49+00:00"
  3408. },
  3409. {
  3410. "name": "phpoption/phpoption",
  3411. "version": "1.7.5",
  3412. "source": {
  3413. "type": "git",
  3414. "url": "https://github.com/schmittjoh/php-option.git",
  3415. "reference": "994ecccd8f3283ecf5ac33254543eb0ac946d525"
  3416. },
  3417. "dist": {
  3418. "type": "zip",
  3419. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/994ecccd8f3283ecf5ac33254543eb0ac946d525",
  3420. "reference": "994ecccd8f3283ecf5ac33254543eb0ac946d525",
  3421. "shasum": ""
  3422. },
  3423. "require": {
  3424. "php": "^5.5.9 || ^7.0 || ^8.0"
  3425. },
  3426. "require-dev": {
  3427. "bamarni/composer-bin-plugin": "^1.4.1",
  3428. "phpunit/phpunit": "^4.8.35 || ^5.7.27 || ^6.5.6 || ^7.0 || ^8.0 || ^9.0"
  3429. },
  3430. "type": "library",
  3431. "extra": {
  3432. "branch-alias": {
  3433. "dev-master": "1.7-dev"
  3434. }
  3435. },
  3436. "autoload": {
  3437. "psr-4": {
  3438. "PhpOption\\": "src/PhpOption/"
  3439. }
  3440. },
  3441. "notification-url": "https://packagist.org/downloads/",
  3442. "license": [
  3443. "Apache-2.0"
  3444. ],
  3445. "authors": [
  3446. {
  3447. "name": "Johannes M. Schmitt",
  3448. "email": "schmittjoh@gmail.com"
  3449. },
  3450. {
  3451. "name": "Graham Campbell",
  3452. "email": "graham@alt-three.com"
  3453. }
  3454. ],
  3455. "description": "Option Type for PHP",
  3456. "keywords": [
  3457. "language",
  3458. "option",
  3459. "php",
  3460. "type"
  3461. ],
  3462. "support": {
  3463. "issues": "https://github.com/schmittjoh/php-option/issues",
  3464. "source": "https://github.com/schmittjoh/php-option/tree/1.7.5"
  3465. },
  3466. "funding": [
  3467. {
  3468. "url": "https://github.com/GrahamCampbell",
  3469. "type": "github"
  3470. },
  3471. {
  3472. "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption",
  3473. "type": "tidelift"
  3474. }
  3475. ],
  3476. "time": "2020-07-20T17:29:33+00:00"
  3477. },
  3478. {
  3479. "name": "psr/container",
  3480. "version": "1.0.0",
  3481. "source": {
  3482. "type": "git",
  3483. "url": "https://github.com/php-fig/container.git",
  3484. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f"
  3485. },
  3486. "dist": {
  3487. "type": "zip",
  3488. "url": "https://api.github.com/repos/php-fig/container/zipball/b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  3489. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  3490. "shasum": ""
  3491. },
  3492. "require": {
  3493. "php": ">=5.3.0"
  3494. },
  3495. "type": "library",
  3496. "extra": {
  3497. "branch-alias": {
  3498. "dev-master": "1.0.x-dev"
  3499. }
  3500. },
  3501. "autoload": {
  3502. "psr-4": {
  3503. "Psr\\Container\\": "src/"
  3504. }
  3505. },
  3506. "notification-url": "https://packagist.org/downloads/",
  3507. "license": [
  3508. "MIT"
  3509. ],
  3510. "authors": [
  3511. {
  3512. "name": "PHP-FIG",
  3513. "homepage": "http://www.php-fig.org/"
  3514. }
  3515. ],
  3516. "description": "Common Container Interface (PHP FIG PSR-11)",
  3517. "homepage": "https://github.com/php-fig/container",
  3518. "keywords": [
  3519. "PSR-11",
  3520. "container",
  3521. "container-interface",
  3522. "container-interop",
  3523. "psr"
  3524. ],
  3525. "support": {
  3526. "issues": "https://github.com/php-fig/container/issues",
  3527. "source": "https://github.com/php-fig/container/tree/master"
  3528. },
  3529. "time": "2017-02-14T16:28:37+00:00"
  3530. },
  3531. {
  3532. "name": "psr/event-dispatcher",
  3533. "version": "1.0.0",
  3534. "source": {
  3535. "type": "git",
  3536. "url": "https://github.com/php-fig/event-dispatcher.git",
  3537. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  3538. },
  3539. "dist": {
  3540. "type": "zip",
  3541. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  3542. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  3543. "shasum": ""
  3544. },
  3545. "require": {
  3546. "php": ">=7.2.0"
  3547. },
  3548. "type": "library",
  3549. "extra": {
  3550. "branch-alias": {
  3551. "dev-master": "1.0.x-dev"
  3552. }
  3553. },
  3554. "autoload": {
  3555. "psr-4": {
  3556. "Psr\\EventDispatcher\\": "src/"
  3557. }
  3558. },
  3559. "notification-url": "https://packagist.org/downloads/",
  3560. "license": [
  3561. "MIT"
  3562. ],
  3563. "authors": [
  3564. {
  3565. "name": "PHP-FIG",
  3566. "homepage": "http://www.php-fig.org/"
  3567. }
  3568. ],
  3569. "description": "Standard interfaces for event handling.",
  3570. "keywords": [
  3571. "events",
  3572. "psr",
  3573. "psr-14"
  3574. ],
  3575. "support": {
  3576. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  3577. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  3578. },
  3579. "time": "2019-01-08T18:20:26+00:00"
  3580. },
  3581. {
  3582. "name": "psr/http-client",
  3583. "version": "1.0.1",
  3584. "source": {
  3585. "type": "git",
  3586. "url": "https://github.com/php-fig/http-client.git",
  3587. "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621"
  3588. },
  3589. "dist": {
  3590. "type": "zip",
  3591. "url": "https://api.github.com/repos/php-fig/http-client/zipball/2dfb5f6c5eff0e91e20e913f8c5452ed95b86621",
  3592. "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621",
  3593. "shasum": ""
  3594. },
  3595. "require": {
  3596. "php": "^7.0 || ^8.0",
  3597. "psr/http-message": "^1.0"
  3598. },
  3599. "type": "library",
  3600. "extra": {
  3601. "branch-alias": {
  3602. "dev-master": "1.0.x-dev"
  3603. }
  3604. },
  3605. "autoload": {
  3606. "psr-4": {
  3607. "Psr\\Http\\Client\\": "src/"
  3608. }
  3609. },
  3610. "notification-url": "https://packagist.org/downloads/",
  3611. "license": [
  3612. "MIT"
  3613. ],
  3614. "authors": [
  3615. {
  3616. "name": "PHP-FIG",
  3617. "homepage": "http://www.php-fig.org/"
  3618. }
  3619. ],
  3620. "description": "Common interface for HTTP clients",
  3621. "homepage": "https://github.com/php-fig/http-client",
  3622. "keywords": [
  3623. "http",
  3624. "http-client",
  3625. "psr",
  3626. "psr-18"
  3627. ],
  3628. "support": {
  3629. "source": "https://github.com/php-fig/http-client/tree/master"
  3630. },
  3631. "time": "2020-06-29T06:28:15+00:00"
  3632. },
  3633. {
  3634. "name": "psr/http-factory",
  3635. "version": "1.0.1",
  3636. "source": {
  3637. "type": "git",
  3638. "url": "https://github.com/php-fig/http-factory.git",
  3639. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be"
  3640. },
  3641. "dist": {
  3642. "type": "zip",
  3643. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  3644. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  3645. "shasum": ""
  3646. },
  3647. "require": {
  3648. "php": ">=7.0.0",
  3649. "psr/http-message": "^1.0"
  3650. },
  3651. "type": "library",
  3652. "extra": {
  3653. "branch-alias": {
  3654. "dev-master": "1.0.x-dev"
  3655. }
  3656. },
  3657. "autoload": {
  3658. "psr-4": {
  3659. "Psr\\Http\\Message\\": "src/"
  3660. }
  3661. },
  3662. "notification-url": "https://packagist.org/downloads/",
  3663. "license": [
  3664. "MIT"
  3665. ],
  3666. "authors": [
  3667. {
  3668. "name": "PHP-FIG",
  3669. "homepage": "http://www.php-fig.org/"
  3670. }
  3671. ],
  3672. "description": "Common interfaces for PSR-7 HTTP message factories",
  3673. "keywords": [
  3674. "factory",
  3675. "http",
  3676. "message",
  3677. "psr",
  3678. "psr-17",
  3679. "psr-7",
  3680. "request",
  3681. "response"
  3682. ],
  3683. "support": {
  3684. "source": "https://github.com/php-fig/http-factory/tree/master"
  3685. },
  3686. "time": "2019-04-30T12:38:16+00:00"
  3687. },
  3688. {
  3689. "name": "psr/http-message",
  3690. "version": "1.0.1",
  3691. "source": {
  3692. "type": "git",
  3693. "url": "https://github.com/php-fig/http-message.git",
  3694. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  3695. },
  3696. "dist": {
  3697. "type": "zip",
  3698. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  3699. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  3700. "shasum": ""
  3701. },
  3702. "require": {
  3703. "php": ">=5.3.0"
  3704. },
  3705. "type": "library",
  3706. "extra": {
  3707. "branch-alias": {
  3708. "dev-master": "1.0.x-dev"
  3709. }
  3710. },
  3711. "autoload": {
  3712. "psr-4": {
  3713. "Psr\\Http\\Message\\": "src/"
  3714. }
  3715. },
  3716. "notification-url": "https://packagist.org/downloads/",
  3717. "license": [
  3718. "MIT"
  3719. ],
  3720. "authors": [
  3721. {
  3722. "name": "PHP-FIG",
  3723. "homepage": "http://www.php-fig.org/"
  3724. }
  3725. ],
  3726. "description": "Common interface for HTTP messages",
  3727. "homepage": "https://github.com/php-fig/http-message",
  3728. "keywords": [
  3729. "http",
  3730. "http-message",
  3731. "psr",
  3732. "psr-7",
  3733. "request",
  3734. "response"
  3735. ],
  3736. "support": {
  3737. "source": "https://github.com/php-fig/http-message/tree/master"
  3738. },
  3739. "time": "2016-08-06T14:39:51+00:00"
  3740. },
  3741. {
  3742. "name": "psr/log",
  3743. "version": "1.1.3",
  3744. "source": {
  3745. "type": "git",
  3746. "url": "https://github.com/php-fig/log.git",
  3747. "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc"
  3748. },
  3749. "dist": {
  3750. "type": "zip",
  3751. "url": "https://api.github.com/repos/php-fig/log/zipball/0f73288fd15629204f9d42b7055f72dacbe811fc",
  3752. "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc",
  3753. "shasum": ""
  3754. },
  3755. "require": {
  3756. "php": ">=5.3.0"
  3757. },
  3758. "type": "library",
  3759. "extra": {
  3760. "branch-alias": {
  3761. "dev-master": "1.1.x-dev"
  3762. }
  3763. },
  3764. "autoload": {
  3765. "psr-4": {
  3766. "Psr\\Log\\": "Psr/Log/"
  3767. }
  3768. },
  3769. "notification-url": "https://packagist.org/downloads/",
  3770. "license": [
  3771. "MIT"
  3772. ],
  3773. "authors": [
  3774. {
  3775. "name": "PHP-FIG",
  3776. "homepage": "http://www.php-fig.org/"
  3777. }
  3778. ],
  3779. "description": "Common interface for logging libraries",
  3780. "homepage": "https://github.com/php-fig/log",
  3781. "keywords": [
  3782. "log",
  3783. "psr",
  3784. "psr-3"
  3785. ],
  3786. "support": {
  3787. "source": "https://github.com/php-fig/log/tree/1.1.3"
  3788. },
  3789. "time": "2020-03-23T09:12:05+00:00"
  3790. },
  3791. {
  3792. "name": "psr/simple-cache",
  3793. "version": "1.0.1",
  3794. "source": {
  3795. "type": "git",
  3796. "url": "https://github.com/php-fig/simple-cache.git",
  3797. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b"
  3798. },
  3799. "dist": {
  3800. "type": "zip",
  3801. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  3802. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  3803. "shasum": ""
  3804. },
  3805. "require": {
  3806. "php": ">=5.3.0"
  3807. },
  3808. "type": "library",
  3809. "extra": {
  3810. "branch-alias": {
  3811. "dev-master": "1.0.x-dev"
  3812. }
  3813. },
  3814. "autoload": {
  3815. "psr-4": {
  3816. "Psr\\SimpleCache\\": "src/"
  3817. }
  3818. },
  3819. "notification-url": "https://packagist.org/downloads/",
  3820. "license": [
  3821. "MIT"
  3822. ],
  3823. "authors": [
  3824. {
  3825. "name": "PHP-FIG",
  3826. "homepage": "http://www.php-fig.org/"
  3827. }
  3828. ],
  3829. "description": "Common interfaces for simple caching",
  3830. "keywords": [
  3831. "cache",
  3832. "caching",
  3833. "psr",
  3834. "psr-16",
  3835. "simple-cache"
  3836. ],
  3837. "support": {
  3838. "source": "https://github.com/php-fig/simple-cache/tree/master"
  3839. },
  3840. "time": "2017-10-23T01:57:42+00:00"
  3841. },
  3842. {
  3843. "name": "psy/psysh",
  3844. "version": "v0.10.5",
  3845. "source": {
  3846. "type": "git",
  3847. "url": "https://github.com/bobthecow/psysh.git",
  3848. "reference": "7c710551d4a2653afa259c544508dc18a9098956"
  3849. },
  3850. "dist": {
  3851. "type": "zip",
  3852. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/7c710551d4a2653afa259c544508dc18a9098956",
  3853. "reference": "7c710551d4a2653afa259c544508dc18a9098956",
  3854. "shasum": ""
  3855. },
  3856. "require": {
  3857. "dnoegel/php-xdg-base-dir": "0.1.*",
  3858. "ext-json": "*",
  3859. "ext-tokenizer": "*",
  3860. "nikic/php-parser": "~4.0|~3.0|~2.0|~1.3",
  3861. "php": "^8.0 || ^7.0 || ^5.5.9",
  3862. "symfony/console": "~5.0|~4.0|~3.0|^2.4.2|~2.3.10",
  3863. "symfony/var-dumper": "~5.0|~4.0|~3.0|~2.7"
  3864. },
  3865. "require-dev": {
  3866. "bamarni/composer-bin-plugin": "^1.2",
  3867. "hoa/console": "3.17.*"
  3868. },
  3869. "suggest": {
  3870. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  3871. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  3872. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.",
  3873. "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history.",
  3874. "hoa/console": "A pure PHP readline implementation. You'll want this if your PHP install doesn't already support readline or libedit."
  3875. },
  3876. "bin": [
  3877. "bin/psysh"
  3878. ],
  3879. "type": "library",
  3880. "extra": {
  3881. "branch-alias": {
  3882. "dev-master": "0.10.x-dev"
  3883. }
  3884. },
  3885. "autoload": {
  3886. "files": [
  3887. "src/functions.php"
  3888. ],
  3889. "psr-4": {
  3890. "Psy\\": "src/"
  3891. }
  3892. },
  3893. "notification-url": "https://packagist.org/downloads/",
  3894. "license": [
  3895. "MIT"
  3896. ],
  3897. "authors": [
  3898. {
  3899. "name": "Justin Hileman",
  3900. "email": "justin@justinhileman.info",
  3901. "homepage": "http://justinhileman.com"
  3902. }
  3903. ],
  3904. "description": "An interactive shell for modern PHP.",
  3905. "homepage": "http://psysh.org",
  3906. "keywords": [
  3907. "REPL",
  3908. "console",
  3909. "interactive",
  3910. "shell"
  3911. ],
  3912. "support": {
  3913. "issues": "https://github.com/bobthecow/psysh/issues",
  3914. "source": "https://github.com/bobthecow/psysh/tree/v0.10.5"
  3915. },
  3916. "time": "2020-12-04T02:51:30+00:00"
  3917. },
  3918. {
  3919. "name": "ralouphie/getallheaders",
  3920. "version": "3.0.3",
  3921. "source": {
  3922. "type": "git",
  3923. "url": "https://github.com/ralouphie/getallheaders.git",
  3924. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  3925. },
  3926. "dist": {
  3927. "type": "zip",
  3928. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  3929. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  3930. "shasum": ""
  3931. },
  3932. "require": {
  3933. "php": ">=5.6"
  3934. },
  3935. "require-dev": {
  3936. "php-coveralls/php-coveralls": "^2.1",
  3937. "phpunit/phpunit": "^5 || ^6.5"
  3938. },
  3939. "type": "library",
  3940. "autoload": {
  3941. "files": [
  3942. "src/getallheaders.php"
  3943. ]
  3944. },
  3945. "notification-url": "https://packagist.org/downloads/",
  3946. "license": [
  3947. "MIT"
  3948. ],
  3949. "authors": [
  3950. {
  3951. "name": "Ralph Khattar",
  3952. "email": "ralph.khattar@gmail.com"
  3953. }
  3954. ],
  3955. "description": "A polyfill for getallheaders.",
  3956. "support": {
  3957. "issues": "https://github.com/ralouphie/getallheaders/issues",
  3958. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  3959. },
  3960. "time": "2019-03-08T08:55:37+00:00"
  3961. },
  3962. {
  3963. "name": "ramsey/collection",
  3964. "version": "1.1.1",
  3965. "source": {
  3966. "type": "git",
  3967. "url": "https://github.com/ramsey/collection.git",
  3968. "reference": "24d93aefb2cd786b7edd9f45b554aea20b28b9b1"
  3969. },
  3970. "dist": {
  3971. "type": "zip",
  3972. "url": "https://api.github.com/repos/ramsey/collection/zipball/24d93aefb2cd786b7edd9f45b554aea20b28b9b1",
  3973. "reference": "24d93aefb2cd786b7edd9f45b554aea20b28b9b1",
  3974. "shasum": ""
  3975. },
  3976. "require": {
  3977. "php": "^7.2 || ^8"
  3978. },
  3979. "require-dev": {
  3980. "captainhook/captainhook": "^5.3",
  3981. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  3982. "ergebnis/composer-normalize": "^2.6",
  3983. "fzaninotto/faker": "^1.5",
  3984. "hamcrest/hamcrest-php": "^2",
  3985. "jangregor/phpstan-prophecy": "^0.6",
  3986. "mockery/mockery": "^1.3",
  3987. "phpstan/extension-installer": "^1",
  3988. "phpstan/phpstan": "^0.12.32",
  3989. "phpstan/phpstan-mockery": "^0.12.5",
  3990. "phpstan/phpstan-phpunit": "^0.12.11",
  3991. "phpunit/phpunit": "^8.5",
  3992. "psy/psysh": "^0.10.4",
  3993. "slevomat/coding-standard": "^6.3",
  3994. "squizlabs/php_codesniffer": "^3.5",
  3995. "vimeo/psalm": "^3.12.2"
  3996. },
  3997. "type": "library",
  3998. "autoload": {
  3999. "psr-4": {
  4000. "Ramsey\\Collection\\": "src/"
  4001. }
  4002. },
  4003. "notification-url": "https://packagist.org/downloads/",
  4004. "license": [
  4005. "MIT"
  4006. ],
  4007. "authors": [
  4008. {
  4009. "name": "Ben Ramsey",
  4010. "email": "ben@benramsey.com",
  4011. "homepage": "https://benramsey.com"
  4012. }
  4013. ],
  4014. "description": "A PHP 7.2+ library for representing and manipulating collections.",
  4015. "keywords": [
  4016. "array",
  4017. "collection",
  4018. "hash",
  4019. "map",
  4020. "queue",
  4021. "set"
  4022. ],
  4023. "support": {
  4024. "issues": "https://github.com/ramsey/collection/issues",
  4025. "source": "https://github.com/ramsey/collection/tree/1.1.1"
  4026. },
  4027. "funding": [
  4028. {
  4029. "url": "https://github.com/ramsey",
  4030. "type": "github"
  4031. }
  4032. ],
  4033. "time": "2020-09-10T20:58:17+00:00"
  4034. },
  4035. {
  4036. "name": "ramsey/uuid",
  4037. "version": "4.1.1",
  4038. "source": {
  4039. "type": "git",
  4040. "url": "https://github.com/ramsey/uuid.git",
  4041. "reference": "cd4032040a750077205918c86049aa0f43d22947"
  4042. },
  4043. "dist": {
  4044. "type": "zip",
  4045. "url": "https://api.github.com/repos/ramsey/uuid/zipball/cd4032040a750077205918c86049aa0f43d22947",
  4046. "reference": "cd4032040a750077205918c86049aa0f43d22947",
  4047. "shasum": ""
  4048. },
  4049. "require": {
  4050. "brick/math": "^0.8 || ^0.9",
  4051. "ext-json": "*",
  4052. "php": "^7.2 || ^8",
  4053. "ramsey/collection": "^1.0",
  4054. "symfony/polyfill-ctype": "^1.8"
  4055. },
  4056. "replace": {
  4057. "rhumsaa/uuid": "self.version"
  4058. },
  4059. "require-dev": {
  4060. "codeception/aspect-mock": "^3",
  4061. "dealerdirect/phpcodesniffer-composer-installer": "^0.6.2 || ^0.7.0",
  4062. "doctrine/annotations": "^1.8",
  4063. "goaop/framework": "^2",
  4064. "mockery/mockery": "^1.3",
  4065. "moontoast/math": "^1.1",
  4066. "paragonie/random-lib": "^2",
  4067. "php-mock/php-mock-mockery": "^1.3",
  4068. "php-mock/php-mock-phpunit": "^2.5",
  4069. "php-parallel-lint/php-parallel-lint": "^1.1",
  4070. "phpbench/phpbench": "^0.17.1",
  4071. "phpstan/extension-installer": "^1.0",
  4072. "phpstan/phpstan": "^0.12",
  4073. "phpstan/phpstan-mockery": "^0.12",
  4074. "phpstan/phpstan-phpunit": "^0.12",
  4075. "phpunit/phpunit": "^8.5",
  4076. "psy/psysh": "^0.10.0",
  4077. "slevomat/coding-standard": "^6.0",
  4078. "squizlabs/php_codesniffer": "^3.5",
  4079. "vimeo/psalm": "3.9.4"
  4080. },
  4081. "suggest": {
  4082. "ext-bcmath": "Enables faster math with arbitrary-precision integers using BCMath.",
  4083. "ext-ctype": "Enables faster processing of character classification using ctype functions.",
  4084. "ext-gmp": "Enables faster math with arbitrary-precision integers using GMP.",
  4085. "ext-uuid": "Enables the use of PeclUuidTimeGenerator and PeclUuidRandomGenerator.",
  4086. "paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
  4087. "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type."
  4088. },
  4089. "type": "library",
  4090. "extra": {
  4091. "branch-alias": {
  4092. "dev-master": "4.x-dev"
  4093. }
  4094. },
  4095. "autoload": {
  4096. "psr-4": {
  4097. "Ramsey\\Uuid\\": "src/"
  4098. },
  4099. "files": [
  4100. "src/functions.php"
  4101. ]
  4102. },
  4103. "notification-url": "https://packagist.org/downloads/",
  4104. "license": [
  4105. "MIT"
  4106. ],
  4107. "description": "A PHP library for generating and working with universally unique identifiers (UUIDs).",
  4108. "homepage": "https://github.com/ramsey/uuid",
  4109. "keywords": [
  4110. "guid",
  4111. "identifier",
  4112. "uuid"
  4113. ],
  4114. "support": {
  4115. "issues": "https://github.com/ramsey/uuid/issues",
  4116. "rss": "https://github.com/ramsey/uuid/releases.atom",
  4117. "source": "https://github.com/ramsey/uuid"
  4118. },
  4119. "funding": [
  4120. {
  4121. "url": "https://github.com/ramsey",
  4122. "type": "github"
  4123. }
  4124. ],
  4125. "time": "2020-08-18T17:17:46+00:00"
  4126. },
  4127. {
  4128. "name": "rap2hpoutre/laravel-log-viewer",
  4129. "version": "v1.7.0",
  4130. "source": {
  4131. "type": "git",
  4132. "url": "https://github.com/rap2hpoutre/laravel-log-viewer.git",
  4133. "reference": "27392d29234b6ff38a456454558f4bcc40cc837a"
  4134. },
  4135. "dist": {
  4136. "type": "zip",
  4137. "url": "https://api.github.com/repos/rap2hpoutre/laravel-log-viewer/zipball/27392d29234b6ff38a456454558f4bcc40cc837a",
  4138. "reference": "27392d29234b6ff38a456454558f4bcc40cc837a",
  4139. "shasum": ""
  4140. },
  4141. "require": {
  4142. "illuminate/support": "4.2.*|5.*|^6.0|^7.0|^8.0",
  4143. "php": ">=5.4.0"
  4144. },
  4145. "require-dev": {
  4146. "orchestra/testbench": "3.7.*",
  4147. "phpunit/phpunit": "^7"
  4148. },
  4149. "type": "laravel-package",
  4150. "extra": {
  4151. "laravel": {
  4152. "providers": [
  4153. "Rap2hpoutre\\LaravelLogViewer\\LaravelLogViewerServiceProvider"
  4154. ]
  4155. }
  4156. },
  4157. "autoload": {
  4158. "classmap": [
  4159. "src/controllers"
  4160. ],
  4161. "psr-0": {
  4162. "Rap2hpoutre\\LaravelLogViewer\\": "src/"
  4163. }
  4164. },
  4165. "notification-url": "https://packagist.org/downloads/",
  4166. "license": [
  4167. "MIT"
  4168. ],
  4169. "authors": [
  4170. {
  4171. "name": "rap2hpoutre",
  4172. "email": "raphaelht@gmail.com"
  4173. }
  4174. ],
  4175. "description": "A Laravel log reader",
  4176. "keywords": [
  4177. "laravel",
  4178. "log",
  4179. "log-reader",
  4180. "log-viewer",
  4181. "logging",
  4182. "lumen"
  4183. ],
  4184. "support": {
  4185. "issues": "https://github.com/rap2hpoutre/laravel-log-viewer/issues",
  4186. "source": "https://github.com/rap2hpoutre/laravel-log-viewer/tree/master"
  4187. },
  4188. "time": "2020-09-08T12:21:27+00:00"
  4189. },
  4190. {
  4191. "name": "riverslei/payment",
  4192. "version": "v5.1.0",
  4193. "source": {
  4194. "type": "git",
  4195. "url": "https://github.com/helei112g/payment.git",
  4196. "reference": "77f671b68b0285a6af77dc7c5afa36eabcae35aa"
  4197. },
  4198. "dist": {
  4199. "type": "zip",
  4200. "url": "https://api.github.com/repos/helei112g/payment/zipball/77f671b68b0285a6af77dc7c5afa36eabcae35aa",
  4201. "reference": "77f671b68b0285a6af77dc7c5afa36eabcae35aa",
  4202. "shasum": ""
  4203. },
  4204. "require": {
  4205. "ext-bcmath": "*",
  4206. "ext-json": "*",
  4207. "ext-mbstring": "*",
  4208. "ext-openssl": "*",
  4209. "ext-simplexml": "*",
  4210. "ext-xml": "*",
  4211. "guzzlehttp/guzzle": "~6.0",
  4212. "php": ">=7.0"
  4213. },
  4214. "require-dev": {
  4215. "codeception/codeception": "*"
  4216. },
  4217. "type": "library",
  4218. "autoload": {
  4219. "psr-4": {
  4220. "Payment\\": "src/"
  4221. }
  4222. },
  4223. "notification-url": "https://packagist.org/downloads/",
  4224. "license": [
  4225. "MIT"
  4226. ],
  4227. "authors": [
  4228. {
  4229. "name": "Leo",
  4230. "email": "dayugog@gmail.com",
  4231. "homepage": "https://dayutalk.cn"
  4232. }
  4233. ],
  4234. "description": "支付宝支付、微信支付、招商一网通支付php SDK。方便快速接入,最完整的开源支付 php sdk",
  4235. "homepage": "http://helei112g.github.io/payment",
  4236. "keywords": [
  4237. "alipay",
  4238. "weixin",
  4239. "一网通",
  4240. "微信支付",
  4241. "招商一网通",
  4242. "支付宝支付",
  4243. "集成支付接口SDK"
  4244. ],
  4245. "support": {
  4246. "issues": "https://github.com/helei112g/payment/issues",
  4247. "source": "https://github.com/helei112g/payment/tree/v5.x"
  4248. },
  4249. "time": "2020-05-04T03:07:17+00:00"
  4250. },
  4251. {
  4252. "name": "spatie/laravel-permission",
  4253. "version": "3.18.0",
  4254. "source": {
  4255. "type": "git",
  4256. "url": "https://github.com/spatie/laravel-permission.git",
  4257. "reference": "1c51a5fa12131565fe3860705163e53d7a26258a"
  4258. },
  4259. "dist": {
  4260. "type": "zip",
  4261. "url": "https://api.github.com/repos/spatie/laravel-permission/zipball/1c51a5fa12131565fe3860705163e53d7a26258a",
  4262. "reference": "1c51a5fa12131565fe3860705163e53d7a26258a",
  4263. "shasum": ""
  4264. },
  4265. "require": {
  4266. "illuminate/auth": "^5.8|^6.0|^7.0|^8.0",
  4267. "illuminate/container": "^5.8|^6.0|^7.0|^8.0",
  4268. "illuminate/contracts": "^5.8|^6.0|^7.0|^8.0",
  4269. "illuminate/database": "^5.8|^6.0|^7.0|^8.0",
  4270. "php": "^7.2.5|^8.0"
  4271. },
  4272. "require-dev": {
  4273. "orchestra/testbench": "^3.8|^4.0|^5.0|^6.0",
  4274. "phpunit/phpunit": "^8.0|^9.0",
  4275. "predis/predis": "^1.1"
  4276. },
  4277. "type": "library",
  4278. "extra": {
  4279. "laravel": {
  4280. "providers": [
  4281. "Spatie\\Permission\\PermissionServiceProvider"
  4282. ]
  4283. }
  4284. },
  4285. "autoload": {
  4286. "psr-4": {
  4287. "Spatie\\Permission\\": "src"
  4288. },
  4289. "files": [
  4290. "src/helpers.php"
  4291. ]
  4292. },
  4293. "notification-url": "https://packagist.org/downloads/",
  4294. "license": [
  4295. "MIT"
  4296. ],
  4297. "authors": [
  4298. {
  4299. "name": "Freek Van der Herten",
  4300. "email": "freek@spatie.be",
  4301. "homepage": "https://spatie.be",
  4302. "role": "Developer"
  4303. }
  4304. ],
  4305. "description": "Permission handling for Laravel 5.8 and up",
  4306. "homepage": "https://github.com/spatie/laravel-permission",
  4307. "keywords": [
  4308. "acl",
  4309. "laravel",
  4310. "permission",
  4311. "permissions",
  4312. "rbac",
  4313. "roles",
  4314. "security",
  4315. "spatie"
  4316. ],
  4317. "support": {
  4318. "issues": "https://github.com/spatie/laravel-permission/issues",
  4319. "source": "https://github.com/spatie/laravel-permission/tree/3.18.0"
  4320. },
  4321. "funding": [
  4322. {
  4323. "url": "https://github.com/spatie",
  4324. "type": "github"
  4325. }
  4326. ],
  4327. "time": "2020-11-09T14:08:36+00:00"
  4328. },
  4329. {
  4330. "name": "srmklive/paypal",
  4331. "version": "1.8.0",
  4332. "source": {
  4333. "type": "git",
  4334. "url": "https://github.com/srmklive/laravel-paypal.git",
  4335. "reference": "0c2ae237577f62396d474674cb40f82825a41ffb"
  4336. },
  4337. "dist": {
  4338. "type": "zip",
  4339. "url": "https://api.github.com/repos/srmklive/laravel-paypal/zipball/0c2ae237577f62396d474674cb40f82825a41ffb",
  4340. "reference": "0c2ae237577f62396d474674cb40f82825a41ffb",
  4341. "shasum": ""
  4342. },
  4343. "require": {
  4344. "guzzlehttp/guzzle": "~6.0|~7.0",
  4345. "illuminate/support": "~5.1|~5.2|~5.3|~5.4|~5.5|~5.6|~5.7|~5.8|~6.0|~7.0|~8.0",
  4346. "nesbot/carbon": "~1.0|~2.0"
  4347. },
  4348. "type": "library",
  4349. "extra": {
  4350. "laravel": {
  4351. "providers": [
  4352. "Srmklive\\PayPal\\Providers\\PayPalServiceProvider"
  4353. ],
  4354. "aliases": {
  4355. "PayPal": "Srmklive\\PayPal\\Facades\\PayPal"
  4356. }
  4357. }
  4358. },
  4359. "autoload": {
  4360. "psr-4": {
  4361. "Srmklive\\PayPal\\": "src/"
  4362. }
  4363. },
  4364. "notification-url": "https://packagist.org/downloads/",
  4365. "license": [
  4366. "MIT"
  4367. ],
  4368. "authors": [
  4369. {
  4370. "name": "Raza Mehdi",
  4371. "email": "srmk@outlook.com"
  4372. }
  4373. ],
  4374. "description": "Laravel plugin For Processing Payments Through Paypal Express Checkout. Can Be Used Independently With Other Applications.",
  4375. "keywords": [
  4376. "http",
  4377. "laravel paypal",
  4378. "paypal",
  4379. "rest",
  4380. "web service"
  4381. ],
  4382. "support": {
  4383. "issues": "https://github.com/srmklive/laravel-paypal/issues",
  4384. "source": "https://github.com/srmklive/laravel-paypal/tree/v1.0"
  4385. },
  4386. "time": "2020-09-03T07:50:08+00:00"
  4387. },
  4388. {
  4389. "name": "stripe/stripe-php",
  4390. "version": "v7.67.0",
  4391. "source": {
  4392. "type": "git",
  4393. "url": "https://github.com/stripe/stripe-php.git",
  4394. "reference": "935d2c67912007f6d17b6c08a62050252c509129"
  4395. },
  4396. "dist": {
  4397. "type": "zip",
  4398. "url": "https://api.github.com/repos/stripe/stripe-php/zipball/935d2c67912007f6d17b6c08a62050252c509129",
  4399. "reference": "935d2c67912007f6d17b6c08a62050252c509129",
  4400. "shasum": ""
  4401. },
  4402. "require": {
  4403. "ext-curl": "*",
  4404. "ext-json": "*",
  4405. "ext-mbstring": "*",
  4406. "php": ">=5.6.0"
  4407. },
  4408. "require-dev": {
  4409. "friendsofphp/php-cs-fixer": "2.17.1",
  4410. "php-coveralls/php-coveralls": "^2.1",
  4411. "phpunit/phpunit": "^5.7",
  4412. "squizlabs/php_codesniffer": "^3.3",
  4413. "symfony/process": "~3.4"
  4414. },
  4415. "type": "library",
  4416. "extra": {
  4417. "branch-alias": {
  4418. "dev-master": "2.0-dev"
  4419. }
  4420. },
  4421. "autoload": {
  4422. "psr-4": {
  4423. "Stripe\\": "lib/"
  4424. }
  4425. },
  4426. "notification-url": "https://packagist.org/downloads/",
  4427. "license": [
  4428. "MIT"
  4429. ],
  4430. "authors": [
  4431. {
  4432. "name": "Stripe and contributors",
  4433. "homepage": "https://github.com/stripe/stripe-php/contributors"
  4434. }
  4435. ],
  4436. "description": "Stripe PHP Library",
  4437. "homepage": "https://stripe.com/",
  4438. "keywords": [
  4439. "api",
  4440. "payment processing",
  4441. "stripe"
  4442. ],
  4443. "support": {
  4444. "issues": "https://github.com/stripe/stripe-php/issues",
  4445. "source": "https://github.com/stripe/stripe-php/tree/v7.67.0"
  4446. },
  4447. "time": "2020-12-09T19:00:34+00:00"
  4448. },
  4449. {
  4450. "name": "swiftmailer/swiftmailer",
  4451. "version": "v6.2.4",
  4452. "source": {
  4453. "type": "git",
  4454. "url": "https://github.com/swiftmailer/swiftmailer.git",
  4455. "reference": "56f0ab23f54c4ccbb0d5dcc67ff8552e0c98d59e"
  4456. },
  4457. "dist": {
  4458. "type": "zip",
  4459. "url": "https://api.github.com/repos/swiftmailer/swiftmailer/zipball/56f0ab23f54c4ccbb0d5dcc67ff8552e0c98d59e",
  4460. "reference": "56f0ab23f54c4ccbb0d5dcc67ff8552e0c98d59e",
  4461. "shasum": ""
  4462. },
  4463. "require": {
  4464. "egulias/email-validator": "^2.0",
  4465. "php": ">=7.0.0",
  4466. "symfony/polyfill-iconv": "^1.0",
  4467. "symfony/polyfill-intl-idn": "^1.10",
  4468. "symfony/polyfill-mbstring": "^1.0"
  4469. },
  4470. "require-dev": {
  4471. "mockery/mockery": "^1.0",
  4472. "symfony/phpunit-bridge": "^4.4|^5.0"
  4473. },
  4474. "suggest": {
  4475. "ext-intl": "Needed to support internationalized email addresses"
  4476. },
  4477. "type": "library",
  4478. "extra": {
  4479. "branch-alias": {
  4480. "dev-master": "6.2-dev"
  4481. }
  4482. },
  4483. "autoload": {
  4484. "files": [
  4485. "lib/swift_required.php"
  4486. ]
  4487. },
  4488. "notification-url": "https://packagist.org/downloads/",
  4489. "license": [
  4490. "MIT"
  4491. ],
  4492. "authors": [
  4493. {
  4494. "name": "Chris Corbyn"
  4495. },
  4496. {
  4497. "name": "Fabien Potencier",
  4498. "email": "fabien@symfony.com"
  4499. }
  4500. ],
  4501. "description": "Swiftmailer, free feature-rich PHP mailer",
  4502. "homepage": "https://swiftmailer.symfony.com",
  4503. "keywords": [
  4504. "email",
  4505. "mail",
  4506. "mailer"
  4507. ],
  4508. "support": {
  4509. "issues": "https://github.com/swiftmailer/swiftmailer/issues",
  4510. "source": "https://github.com/swiftmailer/swiftmailer/tree/v6.2.4"
  4511. },
  4512. "funding": [
  4513. {
  4514. "url": "https://github.com/fabpot",
  4515. "type": "github"
  4516. },
  4517. {
  4518. "url": "https://tidelift.com/funding/github/packagist/swiftmailer/swiftmailer",
  4519. "type": "tidelift"
  4520. }
  4521. ],
  4522. "time": "2020-12-08T18:02:06+00:00"
  4523. },
  4524. {
  4525. "name": "symfony/console",
  4526. "version": "v5.2.1",
  4527. "source": {
  4528. "type": "git",
  4529. "url": "https://github.com/symfony/console.git",
  4530. "reference": "47c02526c532fb381374dab26df05e7313978976"
  4531. },
  4532. "dist": {
  4533. "type": "zip",
  4534. "url": "https://api.github.com/repos/symfony/console/zipball/47c02526c532fb381374dab26df05e7313978976",
  4535. "reference": "47c02526c532fb381374dab26df05e7313978976",
  4536. "shasum": ""
  4537. },
  4538. "require": {
  4539. "php": ">=7.2.5",
  4540. "symfony/polyfill-mbstring": "~1.0",
  4541. "symfony/polyfill-php73": "^1.8",
  4542. "symfony/polyfill-php80": "^1.15",
  4543. "symfony/service-contracts": "^1.1|^2",
  4544. "symfony/string": "^5.1"
  4545. },
  4546. "conflict": {
  4547. "symfony/dependency-injection": "<4.4",
  4548. "symfony/dotenv": "<5.1",
  4549. "symfony/event-dispatcher": "<4.4",
  4550. "symfony/lock": "<4.4",
  4551. "symfony/process": "<4.4"
  4552. },
  4553. "provide": {
  4554. "psr/log-implementation": "1.0"
  4555. },
  4556. "require-dev": {
  4557. "psr/log": "~1.0",
  4558. "symfony/config": "^4.4|^5.0",
  4559. "symfony/dependency-injection": "^4.4|^5.0",
  4560. "symfony/event-dispatcher": "^4.4|^5.0",
  4561. "symfony/lock": "^4.4|^5.0",
  4562. "symfony/process": "^4.4|^5.0",
  4563. "symfony/var-dumper": "^4.4|^5.0"
  4564. },
  4565. "suggest": {
  4566. "psr/log": "For using the console logger",
  4567. "symfony/event-dispatcher": "",
  4568. "symfony/lock": "",
  4569. "symfony/process": ""
  4570. },
  4571. "type": "library",
  4572. "autoload": {
  4573. "psr-4": {
  4574. "Symfony\\Component\\Console\\": ""
  4575. },
  4576. "exclude-from-classmap": [
  4577. "/Tests/"
  4578. ]
  4579. },
  4580. "notification-url": "https://packagist.org/downloads/",
  4581. "license": [
  4582. "MIT"
  4583. ],
  4584. "authors": [
  4585. {
  4586. "name": "Fabien Potencier",
  4587. "email": "fabien@symfony.com"
  4588. },
  4589. {
  4590. "name": "Symfony Community",
  4591. "homepage": "https://symfony.com/contributors"
  4592. }
  4593. ],
  4594. "description": "Symfony Console Component",
  4595. "homepage": "https://symfony.com",
  4596. "keywords": [
  4597. "cli",
  4598. "command line",
  4599. "console",
  4600. "terminal"
  4601. ],
  4602. "support": {
  4603. "source": "https://github.com/symfony/console/tree/v5.2.1"
  4604. },
  4605. "funding": [
  4606. {
  4607. "url": "https://symfony.com/sponsor",
  4608. "type": "custom"
  4609. },
  4610. {
  4611. "url": "https://github.com/fabpot",
  4612. "type": "github"
  4613. },
  4614. {
  4615. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4616. "type": "tidelift"
  4617. }
  4618. ],
  4619. "time": "2020-12-18T08:03:05+00:00"
  4620. },
  4621. {
  4622. "name": "symfony/css-selector",
  4623. "version": "v5.2.1",
  4624. "source": {
  4625. "type": "git",
  4626. "url": "https://github.com/symfony/css-selector.git",
  4627. "reference": "f789e7ead4c79e04ca9a6d6162fc629c89bd8054"
  4628. },
  4629. "dist": {
  4630. "type": "zip",
  4631. "url": "https://api.github.com/repos/symfony/css-selector/zipball/f789e7ead4c79e04ca9a6d6162fc629c89bd8054",
  4632. "reference": "f789e7ead4c79e04ca9a6d6162fc629c89bd8054",
  4633. "shasum": ""
  4634. },
  4635. "require": {
  4636. "php": ">=7.2.5"
  4637. },
  4638. "type": "library",
  4639. "autoload": {
  4640. "psr-4": {
  4641. "Symfony\\Component\\CssSelector\\": ""
  4642. },
  4643. "exclude-from-classmap": [
  4644. "/Tests/"
  4645. ]
  4646. },
  4647. "notification-url": "https://packagist.org/downloads/",
  4648. "license": [
  4649. "MIT"
  4650. ],
  4651. "authors": [
  4652. {
  4653. "name": "Fabien Potencier",
  4654. "email": "fabien@symfony.com"
  4655. },
  4656. {
  4657. "name": "Jean-François Simon",
  4658. "email": "jeanfrancois.simon@sensiolabs.com"
  4659. },
  4660. {
  4661. "name": "Symfony Community",
  4662. "homepage": "https://symfony.com/contributors"
  4663. }
  4664. ],
  4665. "description": "Symfony CssSelector Component",
  4666. "homepage": "https://symfony.com",
  4667. "support": {
  4668. "source": "https://github.com/symfony/css-selector/tree/v5.2.1"
  4669. },
  4670. "funding": [
  4671. {
  4672. "url": "https://symfony.com/sponsor",
  4673. "type": "custom"
  4674. },
  4675. {
  4676. "url": "https://github.com/fabpot",
  4677. "type": "github"
  4678. },
  4679. {
  4680. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4681. "type": "tidelift"
  4682. }
  4683. ],
  4684. "time": "2020-12-08T17:02:38+00:00"
  4685. },
  4686. {
  4687. "name": "symfony/deprecation-contracts",
  4688. "version": "v2.2.0",
  4689. "source": {
  4690. "type": "git",
  4691. "url": "https://github.com/symfony/deprecation-contracts.git",
  4692. "reference": "5fa56b4074d1ae755beb55617ddafe6f5d78f665"
  4693. },
  4694. "dist": {
  4695. "type": "zip",
  4696. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/5fa56b4074d1ae755beb55617ddafe6f5d78f665",
  4697. "reference": "5fa56b4074d1ae755beb55617ddafe6f5d78f665",
  4698. "shasum": ""
  4699. },
  4700. "require": {
  4701. "php": ">=7.1"
  4702. },
  4703. "type": "library",
  4704. "extra": {
  4705. "branch-alias": {
  4706. "dev-master": "2.2-dev"
  4707. },
  4708. "thanks": {
  4709. "name": "symfony/contracts",
  4710. "url": "https://github.com/symfony/contracts"
  4711. }
  4712. },
  4713. "autoload": {
  4714. "files": [
  4715. "function.php"
  4716. ]
  4717. },
  4718. "notification-url": "https://packagist.org/downloads/",
  4719. "license": [
  4720. "MIT"
  4721. ],
  4722. "authors": [
  4723. {
  4724. "name": "Nicolas Grekas",
  4725. "email": "p@tchwork.com"
  4726. },
  4727. {
  4728. "name": "Symfony Community",
  4729. "homepage": "https://symfony.com/contributors"
  4730. }
  4731. ],
  4732. "description": "A generic function and convention to trigger deprecation notices",
  4733. "homepage": "https://symfony.com",
  4734. "support": {
  4735. "source": "https://github.com/symfony/deprecation-contracts/tree/master"
  4736. },
  4737. "funding": [
  4738. {
  4739. "url": "https://symfony.com/sponsor",
  4740. "type": "custom"
  4741. },
  4742. {
  4743. "url": "https://github.com/fabpot",
  4744. "type": "github"
  4745. },
  4746. {
  4747. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4748. "type": "tidelift"
  4749. }
  4750. ],
  4751. "time": "2020-09-07T11:33:47+00:00"
  4752. },
  4753. {
  4754. "name": "symfony/error-handler",
  4755. "version": "v5.2.1",
  4756. "source": {
  4757. "type": "git",
  4758. "url": "https://github.com/symfony/error-handler.git",
  4759. "reference": "59b190ce16ddf32771a22087b60f6dafd3407147"
  4760. },
  4761. "dist": {
  4762. "type": "zip",
  4763. "url": "https://api.github.com/repos/symfony/error-handler/zipball/59b190ce16ddf32771a22087b60f6dafd3407147",
  4764. "reference": "59b190ce16ddf32771a22087b60f6dafd3407147",
  4765. "shasum": ""
  4766. },
  4767. "require": {
  4768. "php": ">=7.2.5",
  4769. "psr/log": "^1.0",
  4770. "symfony/polyfill-php80": "^1.15",
  4771. "symfony/var-dumper": "^4.4|^5.0"
  4772. },
  4773. "require-dev": {
  4774. "symfony/deprecation-contracts": "^2.1",
  4775. "symfony/http-kernel": "^4.4|^5.0",
  4776. "symfony/serializer": "^4.4|^5.0"
  4777. },
  4778. "type": "library",
  4779. "autoload": {
  4780. "psr-4": {
  4781. "Symfony\\Component\\ErrorHandler\\": ""
  4782. },
  4783. "exclude-from-classmap": [
  4784. "/Tests/"
  4785. ]
  4786. },
  4787. "notification-url": "https://packagist.org/downloads/",
  4788. "license": [
  4789. "MIT"
  4790. ],
  4791. "authors": [
  4792. {
  4793. "name": "Fabien Potencier",
  4794. "email": "fabien@symfony.com"
  4795. },
  4796. {
  4797. "name": "Symfony Community",
  4798. "homepage": "https://symfony.com/contributors"
  4799. }
  4800. ],
  4801. "description": "Symfony ErrorHandler Component",
  4802. "homepage": "https://symfony.com",
  4803. "support": {
  4804. "source": "https://github.com/symfony/error-handler/tree/v5.2.1"
  4805. },
  4806. "funding": [
  4807. {
  4808. "url": "https://symfony.com/sponsor",
  4809. "type": "custom"
  4810. },
  4811. {
  4812. "url": "https://github.com/fabpot",
  4813. "type": "github"
  4814. },
  4815. {
  4816. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4817. "type": "tidelift"
  4818. }
  4819. ],
  4820. "time": "2020-12-09T18:54:12+00:00"
  4821. },
  4822. {
  4823. "name": "symfony/event-dispatcher",
  4824. "version": "v5.2.1",
  4825. "source": {
  4826. "type": "git",
  4827. "url": "https://github.com/symfony/event-dispatcher.git",
  4828. "reference": "1c93f7a1dff592c252574c79a8635a8a80856042"
  4829. },
  4830. "dist": {
  4831. "type": "zip",
  4832. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/1c93f7a1dff592c252574c79a8635a8a80856042",
  4833. "reference": "1c93f7a1dff592c252574c79a8635a8a80856042",
  4834. "shasum": ""
  4835. },
  4836. "require": {
  4837. "php": ">=7.2.5",
  4838. "symfony/deprecation-contracts": "^2.1",
  4839. "symfony/event-dispatcher-contracts": "^2",
  4840. "symfony/polyfill-php80": "^1.15"
  4841. },
  4842. "conflict": {
  4843. "symfony/dependency-injection": "<4.4"
  4844. },
  4845. "provide": {
  4846. "psr/event-dispatcher-implementation": "1.0",
  4847. "symfony/event-dispatcher-implementation": "2.0"
  4848. },
  4849. "require-dev": {
  4850. "psr/log": "~1.0",
  4851. "symfony/config": "^4.4|^5.0",
  4852. "symfony/dependency-injection": "^4.4|^5.0",
  4853. "symfony/error-handler": "^4.4|^5.0",
  4854. "symfony/expression-language": "^4.4|^5.0",
  4855. "symfony/http-foundation": "^4.4|^5.0",
  4856. "symfony/service-contracts": "^1.1|^2",
  4857. "symfony/stopwatch": "^4.4|^5.0"
  4858. },
  4859. "suggest": {
  4860. "symfony/dependency-injection": "",
  4861. "symfony/http-kernel": ""
  4862. },
  4863. "type": "library",
  4864. "autoload": {
  4865. "psr-4": {
  4866. "Symfony\\Component\\EventDispatcher\\": ""
  4867. },
  4868. "exclude-from-classmap": [
  4869. "/Tests/"
  4870. ]
  4871. },
  4872. "notification-url": "https://packagist.org/downloads/",
  4873. "license": [
  4874. "MIT"
  4875. ],
  4876. "authors": [
  4877. {
  4878. "name": "Fabien Potencier",
  4879. "email": "fabien@symfony.com"
  4880. },
  4881. {
  4882. "name": "Symfony Community",
  4883. "homepage": "https://symfony.com/contributors"
  4884. }
  4885. ],
  4886. "description": "Symfony EventDispatcher Component",
  4887. "homepage": "https://symfony.com",
  4888. "support": {
  4889. "source": "https://github.com/symfony/event-dispatcher/tree/v5.2.1"
  4890. },
  4891. "funding": [
  4892. {
  4893. "url": "https://symfony.com/sponsor",
  4894. "type": "custom"
  4895. },
  4896. {
  4897. "url": "https://github.com/fabpot",
  4898. "type": "github"
  4899. },
  4900. {
  4901. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4902. "type": "tidelift"
  4903. }
  4904. ],
  4905. "time": "2020-12-18T08:03:05+00:00"
  4906. },
  4907. {
  4908. "name": "symfony/event-dispatcher-contracts",
  4909. "version": "v2.2.0",
  4910. "source": {
  4911. "type": "git",
  4912. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  4913. "reference": "0ba7d54483095a198fa51781bc608d17e84dffa2"
  4914. },
  4915. "dist": {
  4916. "type": "zip",
  4917. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/0ba7d54483095a198fa51781bc608d17e84dffa2",
  4918. "reference": "0ba7d54483095a198fa51781bc608d17e84dffa2",
  4919. "shasum": ""
  4920. },
  4921. "require": {
  4922. "php": ">=7.2.5",
  4923. "psr/event-dispatcher": "^1"
  4924. },
  4925. "suggest": {
  4926. "symfony/event-dispatcher-implementation": ""
  4927. },
  4928. "type": "library",
  4929. "extra": {
  4930. "branch-alias": {
  4931. "dev-master": "2.2-dev"
  4932. },
  4933. "thanks": {
  4934. "name": "symfony/contracts",
  4935. "url": "https://github.com/symfony/contracts"
  4936. }
  4937. },
  4938. "autoload": {
  4939. "psr-4": {
  4940. "Symfony\\Contracts\\EventDispatcher\\": ""
  4941. }
  4942. },
  4943. "notification-url": "https://packagist.org/downloads/",
  4944. "license": [
  4945. "MIT"
  4946. ],
  4947. "authors": [
  4948. {
  4949. "name": "Nicolas Grekas",
  4950. "email": "p@tchwork.com"
  4951. },
  4952. {
  4953. "name": "Symfony Community",
  4954. "homepage": "https://symfony.com/contributors"
  4955. }
  4956. ],
  4957. "description": "Generic abstractions related to dispatching event",
  4958. "homepage": "https://symfony.com",
  4959. "keywords": [
  4960. "abstractions",
  4961. "contracts",
  4962. "decoupling",
  4963. "interfaces",
  4964. "interoperability",
  4965. "standards"
  4966. ],
  4967. "support": {
  4968. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v2.2.0"
  4969. },
  4970. "funding": [
  4971. {
  4972. "url": "https://symfony.com/sponsor",
  4973. "type": "custom"
  4974. },
  4975. {
  4976. "url": "https://github.com/fabpot",
  4977. "type": "github"
  4978. },
  4979. {
  4980. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4981. "type": "tidelift"
  4982. }
  4983. ],
  4984. "time": "2020-09-07T11:33:47+00:00"
  4985. },
  4986. {
  4987. "name": "symfony/finder",
  4988. "version": "v5.2.1",
  4989. "source": {
  4990. "type": "git",
  4991. "url": "https://github.com/symfony/finder.git",
  4992. "reference": "0b9231a5922fd7287ba5b411893c0ecd2733e5ba"
  4993. },
  4994. "dist": {
  4995. "type": "zip",
  4996. "url": "https://api.github.com/repos/symfony/finder/zipball/0b9231a5922fd7287ba5b411893c0ecd2733e5ba",
  4997. "reference": "0b9231a5922fd7287ba5b411893c0ecd2733e5ba",
  4998. "shasum": ""
  4999. },
  5000. "require": {
  5001. "php": ">=7.2.5"
  5002. },
  5003. "type": "library",
  5004. "autoload": {
  5005. "psr-4": {
  5006. "Symfony\\Component\\Finder\\": ""
  5007. },
  5008. "exclude-from-classmap": [
  5009. "/Tests/"
  5010. ]
  5011. },
  5012. "notification-url": "https://packagist.org/downloads/",
  5013. "license": [
  5014. "MIT"
  5015. ],
  5016. "authors": [
  5017. {
  5018. "name": "Fabien Potencier",
  5019. "email": "fabien@symfony.com"
  5020. },
  5021. {
  5022. "name": "Symfony Community",
  5023. "homepage": "https://symfony.com/contributors"
  5024. }
  5025. ],
  5026. "description": "Symfony Finder Component",
  5027. "homepage": "https://symfony.com",
  5028. "support": {
  5029. "source": "https://github.com/symfony/finder/tree/v5.2.1"
  5030. },
  5031. "funding": [
  5032. {
  5033. "url": "https://symfony.com/sponsor",
  5034. "type": "custom"
  5035. },
  5036. {
  5037. "url": "https://github.com/fabpot",
  5038. "type": "github"
  5039. },
  5040. {
  5041. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5042. "type": "tidelift"
  5043. }
  5044. ],
  5045. "time": "2020-12-08T17:02:38+00:00"
  5046. },
  5047. {
  5048. "name": "symfony/http-client-contracts",
  5049. "version": "v2.3.1",
  5050. "source": {
  5051. "type": "git",
  5052. "url": "https://github.com/symfony/http-client-contracts.git",
  5053. "reference": "41db680a15018f9c1d4b23516059633ce280ca33"
  5054. },
  5055. "dist": {
  5056. "type": "zip",
  5057. "url": "https://api.github.com/repos/symfony/http-client-contracts/zipball/41db680a15018f9c1d4b23516059633ce280ca33",
  5058. "reference": "41db680a15018f9c1d4b23516059633ce280ca33",
  5059. "shasum": ""
  5060. },
  5061. "require": {
  5062. "php": ">=7.2.5"
  5063. },
  5064. "suggest": {
  5065. "symfony/http-client-implementation": ""
  5066. },
  5067. "type": "library",
  5068. "extra": {
  5069. "branch-version": "2.3",
  5070. "branch-alias": {
  5071. "dev-main": "2.3-dev"
  5072. },
  5073. "thanks": {
  5074. "name": "symfony/contracts",
  5075. "url": "https://github.com/symfony/contracts"
  5076. }
  5077. },
  5078. "autoload": {
  5079. "psr-4": {
  5080. "Symfony\\Contracts\\HttpClient\\": ""
  5081. }
  5082. },
  5083. "notification-url": "https://packagist.org/downloads/",
  5084. "license": [
  5085. "MIT"
  5086. ],
  5087. "authors": [
  5088. {
  5089. "name": "Nicolas Grekas",
  5090. "email": "p@tchwork.com"
  5091. },
  5092. {
  5093. "name": "Symfony Community",
  5094. "homepage": "https://symfony.com/contributors"
  5095. }
  5096. ],
  5097. "description": "Generic abstractions related to HTTP clients",
  5098. "homepage": "https://symfony.com",
  5099. "keywords": [
  5100. "abstractions",
  5101. "contracts",
  5102. "decoupling",
  5103. "interfaces",
  5104. "interoperability",
  5105. "standards"
  5106. ],
  5107. "support": {
  5108. "source": "https://github.com/symfony/http-client-contracts/tree/v2.3.1"
  5109. },
  5110. "funding": [
  5111. {
  5112. "url": "https://symfony.com/sponsor",
  5113. "type": "custom"
  5114. },
  5115. {
  5116. "url": "https://github.com/fabpot",
  5117. "type": "github"
  5118. },
  5119. {
  5120. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5121. "type": "tidelift"
  5122. }
  5123. ],
  5124. "time": "2020-10-14T17:08:19+00:00"
  5125. },
  5126. {
  5127. "name": "symfony/http-foundation",
  5128. "version": "v5.2.1",
  5129. "source": {
  5130. "type": "git",
  5131. "url": "https://github.com/symfony/http-foundation.git",
  5132. "reference": "a1f6218b29897ab52acba58cfa905b83625bef8d"
  5133. },
  5134. "dist": {
  5135. "type": "zip",
  5136. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/a1f6218b29897ab52acba58cfa905b83625bef8d",
  5137. "reference": "a1f6218b29897ab52acba58cfa905b83625bef8d",
  5138. "shasum": ""
  5139. },
  5140. "require": {
  5141. "php": ">=7.2.5",
  5142. "symfony/deprecation-contracts": "^2.1",
  5143. "symfony/polyfill-mbstring": "~1.1",
  5144. "symfony/polyfill-php80": "^1.15"
  5145. },
  5146. "require-dev": {
  5147. "predis/predis": "~1.0",
  5148. "symfony/cache": "^4.4|^5.0",
  5149. "symfony/expression-language": "^4.4|^5.0",
  5150. "symfony/mime": "^4.4|^5.0"
  5151. },
  5152. "suggest": {
  5153. "symfony/mime": "To use the file extension guesser"
  5154. },
  5155. "type": "library",
  5156. "autoload": {
  5157. "psr-4": {
  5158. "Symfony\\Component\\HttpFoundation\\": ""
  5159. },
  5160. "exclude-from-classmap": [
  5161. "/Tests/"
  5162. ]
  5163. },
  5164. "notification-url": "https://packagist.org/downloads/",
  5165. "license": [
  5166. "MIT"
  5167. ],
  5168. "authors": [
  5169. {
  5170. "name": "Fabien Potencier",
  5171. "email": "fabien@symfony.com"
  5172. },
  5173. {
  5174. "name": "Symfony Community",
  5175. "homepage": "https://symfony.com/contributors"
  5176. }
  5177. ],
  5178. "description": "Symfony HttpFoundation Component",
  5179. "homepage": "https://symfony.com",
  5180. "support": {
  5181. "source": "https://github.com/symfony/http-foundation/tree/v5.2.1"
  5182. },
  5183. "funding": [
  5184. {
  5185. "url": "https://symfony.com/sponsor",
  5186. "type": "custom"
  5187. },
  5188. {
  5189. "url": "https://github.com/fabpot",
  5190. "type": "github"
  5191. },
  5192. {
  5193. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5194. "type": "tidelift"
  5195. }
  5196. ],
  5197. "time": "2020-12-18T10:00:10+00:00"
  5198. },
  5199. {
  5200. "name": "symfony/http-kernel",
  5201. "version": "v5.2.1",
  5202. "source": {
  5203. "type": "git",
  5204. "url": "https://github.com/symfony/http-kernel.git",
  5205. "reference": "1feb619286d819180f7b8bc0dc44f516d9c62647"
  5206. },
  5207. "dist": {
  5208. "type": "zip",
  5209. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/1feb619286d819180f7b8bc0dc44f516d9c62647",
  5210. "reference": "1feb619286d819180f7b8bc0dc44f516d9c62647",
  5211. "shasum": ""
  5212. },
  5213. "require": {
  5214. "php": ">=7.2.5",
  5215. "psr/log": "~1.0",
  5216. "symfony/deprecation-contracts": "^2.1",
  5217. "symfony/error-handler": "^4.4|^5.0",
  5218. "symfony/event-dispatcher": "^5.0",
  5219. "symfony/http-client-contracts": "^1.1|^2",
  5220. "symfony/http-foundation": "^4.4|^5.0",
  5221. "symfony/polyfill-ctype": "^1.8",
  5222. "symfony/polyfill-php73": "^1.9",
  5223. "symfony/polyfill-php80": "^1.15"
  5224. },
  5225. "conflict": {
  5226. "symfony/browser-kit": "<4.4",
  5227. "symfony/cache": "<5.0",
  5228. "symfony/config": "<5.0",
  5229. "symfony/console": "<4.4",
  5230. "symfony/dependency-injection": "<5.1.8",
  5231. "symfony/doctrine-bridge": "<5.0",
  5232. "symfony/form": "<5.0",
  5233. "symfony/http-client": "<5.0",
  5234. "symfony/mailer": "<5.0",
  5235. "symfony/messenger": "<5.0",
  5236. "symfony/translation": "<5.0",
  5237. "symfony/twig-bridge": "<5.0",
  5238. "symfony/validator": "<5.0",
  5239. "twig/twig": "<2.4"
  5240. },
  5241. "provide": {
  5242. "psr/log-implementation": "1.0"
  5243. },
  5244. "require-dev": {
  5245. "psr/cache": "~1.0",
  5246. "symfony/browser-kit": "^4.4|^5.0",
  5247. "symfony/config": "^5.0",
  5248. "symfony/console": "^4.4|^5.0",
  5249. "symfony/css-selector": "^4.4|^5.0",
  5250. "symfony/dependency-injection": "^5.1.8",
  5251. "symfony/dom-crawler": "^4.4|^5.0",
  5252. "symfony/expression-language": "^4.4|^5.0",
  5253. "symfony/finder": "^4.4|^5.0",
  5254. "symfony/process": "^4.4|^5.0",
  5255. "symfony/routing": "^4.4|^5.0",
  5256. "symfony/stopwatch": "^4.4|^5.0",
  5257. "symfony/translation": "^4.4|^5.0",
  5258. "symfony/translation-contracts": "^1.1|^2",
  5259. "twig/twig": "^2.4|^3.0"
  5260. },
  5261. "suggest": {
  5262. "symfony/browser-kit": "",
  5263. "symfony/config": "",
  5264. "symfony/console": "",
  5265. "symfony/dependency-injection": ""
  5266. },
  5267. "type": "library",
  5268. "autoload": {
  5269. "psr-4": {
  5270. "Symfony\\Component\\HttpKernel\\": ""
  5271. },
  5272. "exclude-from-classmap": [
  5273. "/Tests/"
  5274. ]
  5275. },
  5276. "notification-url": "https://packagist.org/downloads/",
  5277. "license": [
  5278. "MIT"
  5279. ],
  5280. "authors": [
  5281. {
  5282. "name": "Fabien Potencier",
  5283. "email": "fabien@symfony.com"
  5284. },
  5285. {
  5286. "name": "Symfony Community",
  5287. "homepage": "https://symfony.com/contributors"
  5288. }
  5289. ],
  5290. "description": "Symfony HttpKernel Component",
  5291. "homepage": "https://symfony.com",
  5292. "support": {
  5293. "source": "https://github.com/symfony/http-kernel/tree/v5.2.1"
  5294. },
  5295. "funding": [
  5296. {
  5297. "url": "https://symfony.com/sponsor",
  5298. "type": "custom"
  5299. },
  5300. {
  5301. "url": "https://github.com/fabpot",
  5302. "type": "github"
  5303. },
  5304. {
  5305. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5306. "type": "tidelift"
  5307. }
  5308. ],
  5309. "time": "2020-12-18T13:49:39+00:00"
  5310. },
  5311. {
  5312. "name": "symfony/mime",
  5313. "version": "v5.2.1",
  5314. "source": {
  5315. "type": "git",
  5316. "url": "https://github.com/symfony/mime.git",
  5317. "reference": "de97005aef7426ba008c46ba840fc301df577ada"
  5318. },
  5319. "dist": {
  5320. "type": "zip",
  5321. "url": "https://api.github.com/repos/symfony/mime/zipball/de97005aef7426ba008c46ba840fc301df577ada",
  5322. "reference": "de97005aef7426ba008c46ba840fc301df577ada",
  5323. "shasum": ""
  5324. },
  5325. "require": {
  5326. "php": ">=7.2.5",
  5327. "symfony/deprecation-contracts": "^2.1",
  5328. "symfony/polyfill-intl-idn": "^1.10",
  5329. "symfony/polyfill-mbstring": "^1.0",
  5330. "symfony/polyfill-php80": "^1.15"
  5331. },
  5332. "conflict": {
  5333. "symfony/mailer": "<4.4"
  5334. },
  5335. "require-dev": {
  5336. "egulias/email-validator": "^2.1.10",
  5337. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  5338. "symfony/dependency-injection": "^4.4|^5.0",
  5339. "symfony/property-access": "^4.4|^5.1",
  5340. "symfony/property-info": "^4.4|^5.1",
  5341. "symfony/serializer": "^5.2"
  5342. },
  5343. "type": "library",
  5344. "autoload": {
  5345. "psr-4": {
  5346. "Symfony\\Component\\Mime\\": ""
  5347. },
  5348. "exclude-from-classmap": [
  5349. "/Tests/"
  5350. ]
  5351. },
  5352. "notification-url": "https://packagist.org/downloads/",
  5353. "license": [
  5354. "MIT"
  5355. ],
  5356. "authors": [
  5357. {
  5358. "name": "Fabien Potencier",
  5359. "email": "fabien@symfony.com"
  5360. },
  5361. {
  5362. "name": "Symfony Community",
  5363. "homepage": "https://symfony.com/contributors"
  5364. }
  5365. ],
  5366. "description": "A library to manipulate MIME messages",
  5367. "homepage": "https://symfony.com",
  5368. "keywords": [
  5369. "mime",
  5370. "mime-type"
  5371. ],
  5372. "support": {
  5373. "source": "https://github.com/symfony/mime/tree/v5.2.1"
  5374. },
  5375. "funding": [
  5376. {
  5377. "url": "https://symfony.com/sponsor",
  5378. "type": "custom"
  5379. },
  5380. {
  5381. "url": "https://github.com/fabpot",
  5382. "type": "github"
  5383. },
  5384. {
  5385. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5386. "type": "tidelift"
  5387. }
  5388. ],
  5389. "time": "2020-12-09T18:54:12+00:00"
  5390. },
  5391. {
  5392. "name": "symfony/polyfill-ctype",
  5393. "version": "v1.20.0",
  5394. "source": {
  5395. "type": "git",
  5396. "url": "https://github.com/symfony/polyfill-ctype.git",
  5397. "reference": "f4ba089a5b6366e453971d3aad5fe8e897b37f41"
  5398. },
  5399. "dist": {
  5400. "type": "zip",
  5401. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/f4ba089a5b6366e453971d3aad5fe8e897b37f41",
  5402. "reference": "f4ba089a5b6366e453971d3aad5fe8e897b37f41",
  5403. "shasum": ""
  5404. },
  5405. "require": {
  5406. "php": ">=7.1"
  5407. },
  5408. "suggest": {
  5409. "ext-ctype": "For best performance"
  5410. },
  5411. "type": "library",
  5412. "extra": {
  5413. "branch-alias": {
  5414. "dev-main": "1.20-dev"
  5415. },
  5416. "thanks": {
  5417. "name": "symfony/polyfill",
  5418. "url": "https://github.com/symfony/polyfill"
  5419. }
  5420. },
  5421. "autoload": {
  5422. "psr-4": {
  5423. "Symfony\\Polyfill\\Ctype\\": ""
  5424. },
  5425. "files": [
  5426. "bootstrap.php"
  5427. ]
  5428. },
  5429. "notification-url": "https://packagist.org/downloads/",
  5430. "license": [
  5431. "MIT"
  5432. ],
  5433. "authors": [
  5434. {
  5435. "name": "Gert de Pagter",
  5436. "email": "BackEndTea@gmail.com"
  5437. },
  5438. {
  5439. "name": "Symfony Community",
  5440. "homepage": "https://symfony.com/contributors"
  5441. }
  5442. ],
  5443. "description": "Symfony polyfill for ctype functions",
  5444. "homepage": "https://symfony.com",
  5445. "keywords": [
  5446. "compatibility",
  5447. "ctype",
  5448. "polyfill",
  5449. "portable"
  5450. ],
  5451. "support": {
  5452. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.20.0"
  5453. },
  5454. "funding": [
  5455. {
  5456. "url": "https://symfony.com/sponsor",
  5457. "type": "custom"
  5458. },
  5459. {
  5460. "url": "https://github.com/fabpot",
  5461. "type": "github"
  5462. },
  5463. {
  5464. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5465. "type": "tidelift"
  5466. }
  5467. ],
  5468. "time": "2020-10-23T14:02:19+00:00"
  5469. },
  5470. {
  5471. "name": "symfony/polyfill-iconv",
  5472. "version": "v1.20.0",
  5473. "source": {
  5474. "type": "git",
  5475. "url": "https://github.com/symfony/polyfill-iconv.git",
  5476. "reference": "c536646fdb4f29104dd26effc2fdcb9a5b085024"
  5477. },
  5478. "dist": {
  5479. "type": "zip",
  5480. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/c536646fdb4f29104dd26effc2fdcb9a5b085024",
  5481. "reference": "c536646fdb4f29104dd26effc2fdcb9a5b085024",
  5482. "shasum": ""
  5483. },
  5484. "require": {
  5485. "php": ">=7.1"
  5486. },
  5487. "suggest": {
  5488. "ext-iconv": "For best performance"
  5489. },
  5490. "type": "library",
  5491. "extra": {
  5492. "branch-alias": {
  5493. "dev-main": "1.20-dev"
  5494. },
  5495. "thanks": {
  5496. "name": "symfony/polyfill",
  5497. "url": "https://github.com/symfony/polyfill"
  5498. }
  5499. },
  5500. "autoload": {
  5501. "psr-4": {
  5502. "Symfony\\Polyfill\\Iconv\\": ""
  5503. },
  5504. "files": [
  5505. "bootstrap.php"
  5506. ]
  5507. },
  5508. "notification-url": "https://packagist.org/downloads/",
  5509. "license": [
  5510. "MIT"
  5511. ],
  5512. "authors": [
  5513. {
  5514. "name": "Nicolas Grekas",
  5515. "email": "p@tchwork.com"
  5516. },
  5517. {
  5518. "name": "Symfony Community",
  5519. "homepage": "https://symfony.com/contributors"
  5520. }
  5521. ],
  5522. "description": "Symfony polyfill for the Iconv extension",
  5523. "homepage": "https://symfony.com",
  5524. "keywords": [
  5525. "compatibility",
  5526. "iconv",
  5527. "polyfill",
  5528. "portable",
  5529. "shim"
  5530. ],
  5531. "support": {
  5532. "source": "https://github.com/symfony/polyfill-iconv/tree/v1.20.0"
  5533. },
  5534. "funding": [
  5535. {
  5536. "url": "https://symfony.com/sponsor",
  5537. "type": "custom"
  5538. },
  5539. {
  5540. "url": "https://github.com/fabpot",
  5541. "type": "github"
  5542. },
  5543. {
  5544. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5545. "type": "tidelift"
  5546. }
  5547. ],
  5548. "time": "2020-10-23T14:02:19+00:00"
  5549. },
  5550. {
  5551. "name": "symfony/polyfill-intl-grapheme",
  5552. "version": "v1.20.0",
  5553. "source": {
  5554. "type": "git",
  5555. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  5556. "reference": "c7cf3f858ec7d70b89559d6e6eb1f7c2517d479c"
  5557. },
  5558. "dist": {
  5559. "type": "zip",
  5560. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/c7cf3f858ec7d70b89559d6e6eb1f7c2517d479c",
  5561. "reference": "c7cf3f858ec7d70b89559d6e6eb1f7c2517d479c",
  5562. "shasum": ""
  5563. },
  5564. "require": {
  5565. "php": ">=7.1"
  5566. },
  5567. "suggest": {
  5568. "ext-intl": "For best performance"
  5569. },
  5570. "type": "library",
  5571. "extra": {
  5572. "branch-alias": {
  5573. "dev-main": "1.20-dev"
  5574. },
  5575. "thanks": {
  5576. "name": "symfony/polyfill",
  5577. "url": "https://github.com/symfony/polyfill"
  5578. }
  5579. },
  5580. "autoload": {
  5581. "psr-4": {
  5582. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  5583. },
  5584. "files": [
  5585. "bootstrap.php"
  5586. ]
  5587. },
  5588. "notification-url": "https://packagist.org/downloads/",
  5589. "license": [
  5590. "MIT"
  5591. ],
  5592. "authors": [
  5593. {
  5594. "name": "Nicolas Grekas",
  5595. "email": "p@tchwork.com"
  5596. },
  5597. {
  5598. "name": "Symfony Community",
  5599. "homepage": "https://symfony.com/contributors"
  5600. }
  5601. ],
  5602. "description": "Symfony polyfill for intl's grapheme_* functions",
  5603. "homepage": "https://symfony.com",
  5604. "keywords": [
  5605. "compatibility",
  5606. "grapheme",
  5607. "intl",
  5608. "polyfill",
  5609. "portable",
  5610. "shim"
  5611. ],
  5612. "support": {
  5613. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.20.0"
  5614. },
  5615. "funding": [
  5616. {
  5617. "url": "https://symfony.com/sponsor",
  5618. "type": "custom"
  5619. },
  5620. {
  5621. "url": "https://github.com/fabpot",
  5622. "type": "github"
  5623. },
  5624. {
  5625. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5626. "type": "tidelift"
  5627. }
  5628. ],
  5629. "time": "2020-10-23T14:02:19+00:00"
  5630. },
  5631. {
  5632. "name": "symfony/polyfill-intl-idn",
  5633. "version": "v1.20.0",
  5634. "source": {
  5635. "type": "git",
  5636. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  5637. "reference": "3b75acd829741c768bc8b1f84eb33265e7cc5117"
  5638. },
  5639. "dist": {
  5640. "type": "zip",
  5641. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/3b75acd829741c768bc8b1f84eb33265e7cc5117",
  5642. "reference": "3b75acd829741c768bc8b1f84eb33265e7cc5117",
  5643. "shasum": ""
  5644. },
  5645. "require": {
  5646. "php": ">=7.1",
  5647. "symfony/polyfill-intl-normalizer": "^1.10",
  5648. "symfony/polyfill-php72": "^1.10"
  5649. },
  5650. "suggest": {
  5651. "ext-intl": "For best performance"
  5652. },
  5653. "type": "library",
  5654. "extra": {
  5655. "branch-alias": {
  5656. "dev-main": "1.20-dev"
  5657. },
  5658. "thanks": {
  5659. "name": "symfony/polyfill",
  5660. "url": "https://github.com/symfony/polyfill"
  5661. }
  5662. },
  5663. "autoload": {
  5664. "psr-4": {
  5665. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  5666. },
  5667. "files": [
  5668. "bootstrap.php"
  5669. ]
  5670. },
  5671. "notification-url": "https://packagist.org/downloads/",
  5672. "license": [
  5673. "MIT"
  5674. ],
  5675. "authors": [
  5676. {
  5677. "name": "Laurent Bassin",
  5678. "email": "laurent@bassin.info"
  5679. },
  5680. {
  5681. "name": "Trevor Rowbotham",
  5682. "email": "trevor.rowbotham@pm.me"
  5683. },
  5684. {
  5685. "name": "Symfony Community",
  5686. "homepage": "https://symfony.com/contributors"
  5687. }
  5688. ],
  5689. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  5690. "homepage": "https://symfony.com",
  5691. "keywords": [
  5692. "compatibility",
  5693. "idn",
  5694. "intl",
  5695. "polyfill",
  5696. "portable",
  5697. "shim"
  5698. ],
  5699. "support": {
  5700. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.20.0"
  5701. },
  5702. "funding": [
  5703. {
  5704. "url": "https://symfony.com/sponsor",
  5705. "type": "custom"
  5706. },
  5707. {
  5708. "url": "https://github.com/fabpot",
  5709. "type": "github"
  5710. },
  5711. {
  5712. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5713. "type": "tidelift"
  5714. }
  5715. ],
  5716. "time": "2020-10-23T14:02:19+00:00"
  5717. },
  5718. {
  5719. "name": "symfony/polyfill-intl-normalizer",
  5720. "version": "v1.20.0",
  5721. "source": {
  5722. "type": "git",
  5723. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  5724. "reference": "727d1096295d807c309fb01a851577302394c897"
  5725. },
  5726. "dist": {
  5727. "type": "zip",
  5728. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/727d1096295d807c309fb01a851577302394c897",
  5729. "reference": "727d1096295d807c309fb01a851577302394c897",
  5730. "shasum": ""
  5731. },
  5732. "require": {
  5733. "php": ">=7.1"
  5734. },
  5735. "suggest": {
  5736. "ext-intl": "For best performance"
  5737. },
  5738. "type": "library",
  5739. "extra": {
  5740. "branch-alias": {
  5741. "dev-main": "1.20-dev"
  5742. },
  5743. "thanks": {
  5744. "name": "symfony/polyfill",
  5745. "url": "https://github.com/symfony/polyfill"
  5746. }
  5747. },
  5748. "autoload": {
  5749. "psr-4": {
  5750. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  5751. },
  5752. "files": [
  5753. "bootstrap.php"
  5754. ],
  5755. "classmap": [
  5756. "Resources/stubs"
  5757. ]
  5758. },
  5759. "notification-url": "https://packagist.org/downloads/",
  5760. "license": [
  5761. "MIT"
  5762. ],
  5763. "authors": [
  5764. {
  5765. "name": "Nicolas Grekas",
  5766. "email": "p@tchwork.com"
  5767. },
  5768. {
  5769. "name": "Symfony Community",
  5770. "homepage": "https://symfony.com/contributors"
  5771. }
  5772. ],
  5773. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  5774. "homepage": "https://symfony.com",
  5775. "keywords": [
  5776. "compatibility",
  5777. "intl",
  5778. "normalizer",
  5779. "polyfill",
  5780. "portable",
  5781. "shim"
  5782. ],
  5783. "support": {
  5784. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.20.0"
  5785. },
  5786. "funding": [
  5787. {
  5788. "url": "https://symfony.com/sponsor",
  5789. "type": "custom"
  5790. },
  5791. {
  5792. "url": "https://github.com/fabpot",
  5793. "type": "github"
  5794. },
  5795. {
  5796. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5797. "type": "tidelift"
  5798. }
  5799. ],
  5800. "time": "2020-10-23T14:02:19+00:00"
  5801. },
  5802. {
  5803. "name": "symfony/polyfill-mbstring",
  5804. "version": "v1.20.0",
  5805. "source": {
  5806. "type": "git",
  5807. "url": "https://github.com/symfony/polyfill-mbstring.git",
  5808. "reference": "39d483bdf39be819deabf04ec872eb0b2410b531"
  5809. },
  5810. "dist": {
  5811. "type": "zip",
  5812. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/39d483bdf39be819deabf04ec872eb0b2410b531",
  5813. "reference": "39d483bdf39be819deabf04ec872eb0b2410b531",
  5814. "shasum": ""
  5815. },
  5816. "require": {
  5817. "php": ">=7.1"
  5818. },
  5819. "suggest": {
  5820. "ext-mbstring": "For best performance"
  5821. },
  5822. "type": "library",
  5823. "extra": {
  5824. "branch-alias": {
  5825. "dev-main": "1.20-dev"
  5826. },
  5827. "thanks": {
  5828. "name": "symfony/polyfill",
  5829. "url": "https://github.com/symfony/polyfill"
  5830. }
  5831. },
  5832. "autoload": {
  5833. "psr-4": {
  5834. "Symfony\\Polyfill\\Mbstring\\": ""
  5835. },
  5836. "files": [
  5837. "bootstrap.php"
  5838. ]
  5839. },
  5840. "notification-url": "https://packagist.org/downloads/",
  5841. "license": [
  5842. "MIT"
  5843. ],
  5844. "authors": [
  5845. {
  5846. "name": "Nicolas Grekas",
  5847. "email": "p@tchwork.com"
  5848. },
  5849. {
  5850. "name": "Symfony Community",
  5851. "homepage": "https://symfony.com/contributors"
  5852. }
  5853. ],
  5854. "description": "Symfony polyfill for the Mbstring extension",
  5855. "homepage": "https://symfony.com",
  5856. "keywords": [
  5857. "compatibility",
  5858. "mbstring",
  5859. "polyfill",
  5860. "portable",
  5861. "shim"
  5862. ],
  5863. "support": {
  5864. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.20.0"
  5865. },
  5866. "funding": [
  5867. {
  5868. "url": "https://symfony.com/sponsor",
  5869. "type": "custom"
  5870. },
  5871. {
  5872. "url": "https://github.com/fabpot",
  5873. "type": "github"
  5874. },
  5875. {
  5876. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5877. "type": "tidelift"
  5878. }
  5879. ],
  5880. "time": "2020-10-23T14:02:19+00:00"
  5881. },
  5882. {
  5883. "name": "symfony/polyfill-php56",
  5884. "version": "v1.20.0",
  5885. "source": {
  5886. "type": "git",
  5887. "url": "https://github.com/symfony/polyfill-php56.git",
  5888. "reference": "54b8cd7e6c1643d78d011f3be89f3ef1f9f4c675"
  5889. },
  5890. "dist": {
  5891. "type": "zip",
  5892. "url": "https://api.github.com/repos/symfony/polyfill-php56/zipball/54b8cd7e6c1643d78d011f3be89f3ef1f9f4c675",
  5893. "reference": "54b8cd7e6c1643d78d011f3be89f3ef1f9f4c675",
  5894. "shasum": ""
  5895. },
  5896. "require": {
  5897. "php": ">=7.1"
  5898. },
  5899. "type": "metapackage",
  5900. "extra": {
  5901. "branch-alias": {
  5902. "dev-main": "1.20-dev"
  5903. },
  5904. "thanks": {
  5905. "name": "symfony/polyfill",
  5906. "url": "https://github.com/symfony/polyfill"
  5907. }
  5908. },
  5909. "notification-url": "https://packagist.org/downloads/",
  5910. "license": [
  5911. "MIT"
  5912. ],
  5913. "authors": [
  5914. {
  5915. "name": "Nicolas Grekas",
  5916. "email": "p@tchwork.com"
  5917. },
  5918. {
  5919. "name": "Symfony Community",
  5920. "homepage": "https://symfony.com/contributors"
  5921. }
  5922. ],
  5923. "description": "Symfony polyfill backporting some PHP 5.6+ features to lower PHP versions",
  5924. "homepage": "https://symfony.com",
  5925. "keywords": [
  5926. "compatibility",
  5927. "polyfill",
  5928. "portable",
  5929. "shim"
  5930. ],
  5931. "support": {
  5932. "source": "https://github.com/symfony/polyfill-php56/tree/v1.20.0"
  5933. },
  5934. "funding": [
  5935. {
  5936. "url": "https://symfony.com/sponsor",
  5937. "type": "custom"
  5938. },
  5939. {
  5940. "url": "https://github.com/fabpot",
  5941. "type": "github"
  5942. },
  5943. {
  5944. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5945. "type": "tidelift"
  5946. }
  5947. ],
  5948. "time": "2020-10-23T14:02:19+00:00"
  5949. },
  5950. {
  5951. "name": "symfony/polyfill-php72",
  5952. "version": "v1.20.0",
  5953. "source": {
  5954. "type": "git",
  5955. "url": "https://github.com/symfony/polyfill-php72.git",
  5956. "reference": "cede45fcdfabdd6043b3592e83678e42ec69e930"
  5957. },
  5958. "dist": {
  5959. "type": "zip",
  5960. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/cede45fcdfabdd6043b3592e83678e42ec69e930",
  5961. "reference": "cede45fcdfabdd6043b3592e83678e42ec69e930",
  5962. "shasum": ""
  5963. },
  5964. "require": {
  5965. "php": ">=7.1"
  5966. },
  5967. "type": "library",
  5968. "extra": {
  5969. "branch-alias": {
  5970. "dev-main": "1.20-dev"
  5971. },
  5972. "thanks": {
  5973. "name": "symfony/polyfill",
  5974. "url": "https://github.com/symfony/polyfill"
  5975. }
  5976. },
  5977. "autoload": {
  5978. "psr-4": {
  5979. "Symfony\\Polyfill\\Php72\\": ""
  5980. },
  5981. "files": [
  5982. "bootstrap.php"
  5983. ]
  5984. },
  5985. "notification-url": "https://packagist.org/downloads/",
  5986. "license": [
  5987. "MIT"
  5988. ],
  5989. "authors": [
  5990. {
  5991. "name": "Nicolas Grekas",
  5992. "email": "p@tchwork.com"
  5993. },
  5994. {
  5995. "name": "Symfony Community",
  5996. "homepage": "https://symfony.com/contributors"
  5997. }
  5998. ],
  5999. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  6000. "homepage": "https://symfony.com",
  6001. "keywords": [
  6002. "compatibility",
  6003. "polyfill",
  6004. "portable",
  6005. "shim"
  6006. ],
  6007. "support": {
  6008. "source": "https://github.com/symfony/polyfill-php72/tree/v1.20.0"
  6009. },
  6010. "funding": [
  6011. {
  6012. "url": "https://symfony.com/sponsor",
  6013. "type": "custom"
  6014. },
  6015. {
  6016. "url": "https://github.com/fabpot",
  6017. "type": "github"
  6018. },
  6019. {
  6020. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6021. "type": "tidelift"
  6022. }
  6023. ],
  6024. "time": "2020-10-23T14:02:19+00:00"
  6025. },
  6026. {
  6027. "name": "symfony/polyfill-php73",
  6028. "version": "v1.20.0",
  6029. "source": {
  6030. "type": "git",
  6031. "url": "https://github.com/symfony/polyfill-php73.git",
  6032. "reference": "8ff431c517be11c78c48a39a66d37431e26a6bed"
  6033. },
  6034. "dist": {
  6035. "type": "zip",
  6036. "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/8ff431c517be11c78c48a39a66d37431e26a6bed",
  6037. "reference": "8ff431c517be11c78c48a39a66d37431e26a6bed",
  6038. "shasum": ""
  6039. },
  6040. "require": {
  6041. "php": ">=7.1"
  6042. },
  6043. "type": "library",
  6044. "extra": {
  6045. "branch-alias": {
  6046. "dev-main": "1.20-dev"
  6047. },
  6048. "thanks": {
  6049. "name": "symfony/polyfill",
  6050. "url": "https://github.com/symfony/polyfill"
  6051. }
  6052. },
  6053. "autoload": {
  6054. "psr-4": {
  6055. "Symfony\\Polyfill\\Php73\\": ""
  6056. },
  6057. "files": [
  6058. "bootstrap.php"
  6059. ],
  6060. "classmap": [
  6061. "Resources/stubs"
  6062. ]
  6063. },
  6064. "notification-url": "https://packagist.org/downloads/",
  6065. "license": [
  6066. "MIT"
  6067. ],
  6068. "authors": [
  6069. {
  6070. "name": "Nicolas Grekas",
  6071. "email": "p@tchwork.com"
  6072. },
  6073. {
  6074. "name": "Symfony Community",
  6075. "homepage": "https://symfony.com/contributors"
  6076. }
  6077. ],
  6078. "description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions",
  6079. "homepage": "https://symfony.com",
  6080. "keywords": [
  6081. "compatibility",
  6082. "polyfill",
  6083. "portable",
  6084. "shim"
  6085. ],
  6086. "support": {
  6087. "source": "https://github.com/symfony/polyfill-php73/tree/v1.20.0"
  6088. },
  6089. "funding": [
  6090. {
  6091. "url": "https://symfony.com/sponsor",
  6092. "type": "custom"
  6093. },
  6094. {
  6095. "url": "https://github.com/fabpot",
  6096. "type": "github"
  6097. },
  6098. {
  6099. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6100. "type": "tidelift"
  6101. }
  6102. ],
  6103. "time": "2020-10-23T14:02:19+00:00"
  6104. },
  6105. {
  6106. "name": "symfony/polyfill-php80",
  6107. "version": "v1.20.0",
  6108. "source": {
  6109. "type": "git",
  6110. "url": "https://github.com/symfony/polyfill-php80.git",
  6111. "reference": "e70aa8b064c5b72d3df2abd5ab1e90464ad009de"
  6112. },
  6113. "dist": {
  6114. "type": "zip",
  6115. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/e70aa8b064c5b72d3df2abd5ab1e90464ad009de",
  6116. "reference": "e70aa8b064c5b72d3df2abd5ab1e90464ad009de",
  6117. "shasum": ""
  6118. },
  6119. "require": {
  6120. "php": ">=7.1"
  6121. },
  6122. "type": "library",
  6123. "extra": {
  6124. "branch-alias": {
  6125. "dev-main": "1.20-dev"
  6126. },
  6127. "thanks": {
  6128. "name": "symfony/polyfill",
  6129. "url": "https://github.com/symfony/polyfill"
  6130. }
  6131. },
  6132. "autoload": {
  6133. "psr-4": {
  6134. "Symfony\\Polyfill\\Php80\\": ""
  6135. },
  6136. "files": [
  6137. "bootstrap.php"
  6138. ],
  6139. "classmap": [
  6140. "Resources/stubs"
  6141. ]
  6142. },
  6143. "notification-url": "https://packagist.org/downloads/",
  6144. "license": [
  6145. "MIT"
  6146. ],
  6147. "authors": [
  6148. {
  6149. "name": "Ion Bazan",
  6150. "email": "ion.bazan@gmail.com"
  6151. },
  6152. {
  6153. "name": "Nicolas Grekas",
  6154. "email": "p@tchwork.com"
  6155. },
  6156. {
  6157. "name": "Symfony Community",
  6158. "homepage": "https://symfony.com/contributors"
  6159. }
  6160. ],
  6161. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  6162. "homepage": "https://symfony.com",
  6163. "keywords": [
  6164. "compatibility",
  6165. "polyfill",
  6166. "portable",
  6167. "shim"
  6168. ],
  6169. "support": {
  6170. "source": "https://github.com/symfony/polyfill-php80/tree/v1.20.0"
  6171. },
  6172. "funding": [
  6173. {
  6174. "url": "https://symfony.com/sponsor",
  6175. "type": "custom"
  6176. },
  6177. {
  6178. "url": "https://github.com/fabpot",
  6179. "type": "github"
  6180. },
  6181. {
  6182. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6183. "type": "tidelift"
  6184. }
  6185. ],
  6186. "time": "2020-10-23T14:02:19+00:00"
  6187. },
  6188. {
  6189. "name": "symfony/process",
  6190. "version": "v5.2.1",
  6191. "source": {
  6192. "type": "git",
  6193. "url": "https://github.com/symfony/process.git",
  6194. "reference": "bd8815b8b6705298beaa384f04fabd459c10bedd"
  6195. },
  6196. "dist": {
  6197. "type": "zip",
  6198. "url": "https://api.github.com/repos/symfony/process/zipball/bd8815b8b6705298beaa384f04fabd459c10bedd",
  6199. "reference": "bd8815b8b6705298beaa384f04fabd459c10bedd",
  6200. "shasum": ""
  6201. },
  6202. "require": {
  6203. "php": ">=7.2.5",
  6204. "symfony/polyfill-php80": "^1.15"
  6205. },
  6206. "type": "library",
  6207. "autoload": {
  6208. "psr-4": {
  6209. "Symfony\\Component\\Process\\": ""
  6210. },
  6211. "exclude-from-classmap": [
  6212. "/Tests/"
  6213. ]
  6214. },
  6215. "notification-url": "https://packagist.org/downloads/",
  6216. "license": [
  6217. "MIT"
  6218. ],
  6219. "authors": [
  6220. {
  6221. "name": "Fabien Potencier",
  6222. "email": "fabien@symfony.com"
  6223. },
  6224. {
  6225. "name": "Symfony Community",
  6226. "homepage": "https://symfony.com/contributors"
  6227. }
  6228. ],
  6229. "description": "Symfony Process Component",
  6230. "homepage": "https://symfony.com",
  6231. "support": {
  6232. "source": "https://github.com/symfony/process/tree/v5.2.1"
  6233. },
  6234. "funding": [
  6235. {
  6236. "url": "https://symfony.com/sponsor",
  6237. "type": "custom"
  6238. },
  6239. {
  6240. "url": "https://github.com/fabpot",
  6241. "type": "github"
  6242. },
  6243. {
  6244. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6245. "type": "tidelift"
  6246. }
  6247. ],
  6248. "time": "2020-12-08T17:03:37+00:00"
  6249. },
  6250. {
  6251. "name": "symfony/routing",
  6252. "version": "v5.2.1",
  6253. "source": {
  6254. "type": "git",
  6255. "url": "https://github.com/symfony/routing.git",
  6256. "reference": "934ac2720dcc878a47a45c986b483a7ee7193620"
  6257. },
  6258. "dist": {
  6259. "type": "zip",
  6260. "url": "https://api.github.com/repos/symfony/routing/zipball/934ac2720dcc878a47a45c986b483a7ee7193620",
  6261. "reference": "934ac2720dcc878a47a45c986b483a7ee7193620",
  6262. "shasum": ""
  6263. },
  6264. "require": {
  6265. "php": ">=7.2.5",
  6266. "symfony/deprecation-contracts": "^2.1",
  6267. "symfony/polyfill-php80": "^1.15"
  6268. },
  6269. "conflict": {
  6270. "symfony/config": "<5.0",
  6271. "symfony/dependency-injection": "<4.4",
  6272. "symfony/yaml": "<4.4"
  6273. },
  6274. "require-dev": {
  6275. "doctrine/annotations": "^1.7",
  6276. "psr/log": "~1.0",
  6277. "symfony/config": "^5.0",
  6278. "symfony/dependency-injection": "^4.4|^5.0",
  6279. "symfony/expression-language": "^4.4|^5.0",
  6280. "symfony/http-foundation": "^4.4|^5.0",
  6281. "symfony/yaml": "^4.4|^5.0"
  6282. },
  6283. "suggest": {
  6284. "doctrine/annotations": "For using the annotation loader",
  6285. "symfony/config": "For using the all-in-one router or any loader",
  6286. "symfony/expression-language": "For using expression matching",
  6287. "symfony/http-foundation": "For using a Symfony Request object",
  6288. "symfony/yaml": "For using the YAML loader"
  6289. },
  6290. "type": "library",
  6291. "autoload": {
  6292. "psr-4": {
  6293. "Symfony\\Component\\Routing\\": ""
  6294. },
  6295. "exclude-from-classmap": [
  6296. "/Tests/"
  6297. ]
  6298. },
  6299. "notification-url": "https://packagist.org/downloads/",
  6300. "license": [
  6301. "MIT"
  6302. ],
  6303. "authors": [
  6304. {
  6305. "name": "Fabien Potencier",
  6306. "email": "fabien@symfony.com"
  6307. },
  6308. {
  6309. "name": "Symfony Community",
  6310. "homepage": "https://symfony.com/contributors"
  6311. }
  6312. ],
  6313. "description": "Symfony Routing Component",
  6314. "homepage": "https://symfony.com",
  6315. "keywords": [
  6316. "router",
  6317. "routing",
  6318. "uri",
  6319. "url"
  6320. ],
  6321. "support": {
  6322. "source": "https://github.com/symfony/routing/tree/v5.2.1"
  6323. },
  6324. "funding": [
  6325. {
  6326. "url": "https://symfony.com/sponsor",
  6327. "type": "custom"
  6328. },
  6329. {
  6330. "url": "https://github.com/fabpot",
  6331. "type": "github"
  6332. },
  6333. {
  6334. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6335. "type": "tidelift"
  6336. }
  6337. ],
  6338. "time": "2020-12-08T17:03:37+00:00"
  6339. },
  6340. {
  6341. "name": "symfony/service-contracts",
  6342. "version": "v2.2.0",
  6343. "source": {
  6344. "type": "git",
  6345. "url": "https://github.com/symfony/service-contracts.git",
  6346. "reference": "d15da7ba4957ffb8f1747218be9e1a121fd298a1"
  6347. },
  6348. "dist": {
  6349. "type": "zip",
  6350. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/d15da7ba4957ffb8f1747218be9e1a121fd298a1",
  6351. "reference": "d15da7ba4957ffb8f1747218be9e1a121fd298a1",
  6352. "shasum": ""
  6353. },
  6354. "require": {
  6355. "php": ">=7.2.5",
  6356. "psr/container": "^1.0"
  6357. },
  6358. "suggest": {
  6359. "symfony/service-implementation": ""
  6360. },
  6361. "type": "library",
  6362. "extra": {
  6363. "branch-alias": {
  6364. "dev-master": "2.2-dev"
  6365. },
  6366. "thanks": {
  6367. "name": "symfony/contracts",
  6368. "url": "https://github.com/symfony/contracts"
  6369. }
  6370. },
  6371. "autoload": {
  6372. "psr-4": {
  6373. "Symfony\\Contracts\\Service\\": ""
  6374. }
  6375. },
  6376. "notification-url": "https://packagist.org/downloads/",
  6377. "license": [
  6378. "MIT"
  6379. ],
  6380. "authors": [
  6381. {
  6382. "name": "Nicolas Grekas",
  6383. "email": "p@tchwork.com"
  6384. },
  6385. {
  6386. "name": "Symfony Community",
  6387. "homepage": "https://symfony.com/contributors"
  6388. }
  6389. ],
  6390. "description": "Generic abstractions related to writing services",
  6391. "homepage": "https://symfony.com",
  6392. "keywords": [
  6393. "abstractions",
  6394. "contracts",
  6395. "decoupling",
  6396. "interfaces",
  6397. "interoperability",
  6398. "standards"
  6399. ],
  6400. "support": {
  6401. "source": "https://github.com/symfony/service-contracts/tree/master"
  6402. },
  6403. "funding": [
  6404. {
  6405. "url": "https://symfony.com/sponsor",
  6406. "type": "custom"
  6407. },
  6408. {
  6409. "url": "https://github.com/fabpot",
  6410. "type": "github"
  6411. },
  6412. {
  6413. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6414. "type": "tidelift"
  6415. }
  6416. ],
  6417. "time": "2020-09-07T11:33:47+00:00"
  6418. },
  6419. {
  6420. "name": "symfony/string",
  6421. "version": "v5.2.1",
  6422. "source": {
  6423. "type": "git",
  6424. "url": "https://github.com/symfony/string.git",
  6425. "reference": "5bd67751d2e3f7d6f770c9154b8fbcb2aa05f7ed"
  6426. },
  6427. "dist": {
  6428. "type": "zip",
  6429. "url": "https://api.github.com/repos/symfony/string/zipball/5bd67751d2e3f7d6f770c9154b8fbcb2aa05f7ed",
  6430. "reference": "5bd67751d2e3f7d6f770c9154b8fbcb2aa05f7ed",
  6431. "shasum": ""
  6432. },
  6433. "require": {
  6434. "php": ">=7.2.5",
  6435. "symfony/polyfill-ctype": "~1.8",
  6436. "symfony/polyfill-intl-grapheme": "~1.0",
  6437. "symfony/polyfill-intl-normalizer": "~1.0",
  6438. "symfony/polyfill-mbstring": "~1.0",
  6439. "symfony/polyfill-php80": "~1.15"
  6440. },
  6441. "require-dev": {
  6442. "symfony/error-handler": "^4.4|^5.0",
  6443. "symfony/http-client": "^4.4|^5.0",
  6444. "symfony/translation-contracts": "^1.1|^2",
  6445. "symfony/var-exporter": "^4.4|^5.0"
  6446. },
  6447. "type": "library",
  6448. "autoload": {
  6449. "psr-4": {
  6450. "Symfony\\Component\\String\\": ""
  6451. },
  6452. "files": [
  6453. "Resources/functions.php"
  6454. ],
  6455. "exclude-from-classmap": [
  6456. "/Tests/"
  6457. ]
  6458. },
  6459. "notification-url": "https://packagist.org/downloads/",
  6460. "license": [
  6461. "MIT"
  6462. ],
  6463. "authors": [
  6464. {
  6465. "name": "Nicolas Grekas",
  6466. "email": "p@tchwork.com"
  6467. },
  6468. {
  6469. "name": "Symfony Community",
  6470. "homepage": "https://symfony.com/contributors"
  6471. }
  6472. ],
  6473. "description": "Symfony String component",
  6474. "homepage": "https://symfony.com",
  6475. "keywords": [
  6476. "grapheme",
  6477. "i18n",
  6478. "string",
  6479. "unicode",
  6480. "utf-8",
  6481. "utf8"
  6482. ],
  6483. "support": {
  6484. "source": "https://github.com/symfony/string/tree/v5.2.1"
  6485. },
  6486. "funding": [
  6487. {
  6488. "url": "https://symfony.com/sponsor",
  6489. "type": "custom"
  6490. },
  6491. {
  6492. "url": "https://github.com/fabpot",
  6493. "type": "github"
  6494. },
  6495. {
  6496. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6497. "type": "tidelift"
  6498. }
  6499. ],
  6500. "time": "2020-12-05T07:33:16+00:00"
  6501. },
  6502. {
  6503. "name": "symfony/translation",
  6504. "version": "v5.2.1",
  6505. "source": {
  6506. "type": "git",
  6507. "url": "https://github.com/symfony/translation.git",
  6508. "reference": "a04209ba0d1391c828e5b2373181dac63c52ee70"
  6509. },
  6510. "dist": {
  6511. "type": "zip",
  6512. "url": "https://api.github.com/repos/symfony/translation/zipball/a04209ba0d1391c828e5b2373181dac63c52ee70",
  6513. "reference": "a04209ba0d1391c828e5b2373181dac63c52ee70",
  6514. "shasum": ""
  6515. },
  6516. "require": {
  6517. "php": ">=7.2.5",
  6518. "symfony/polyfill-mbstring": "~1.0",
  6519. "symfony/polyfill-php80": "^1.15",
  6520. "symfony/translation-contracts": "^2.3"
  6521. },
  6522. "conflict": {
  6523. "symfony/config": "<4.4",
  6524. "symfony/dependency-injection": "<5.0",
  6525. "symfony/http-kernel": "<5.0",
  6526. "symfony/twig-bundle": "<5.0",
  6527. "symfony/yaml": "<4.4"
  6528. },
  6529. "provide": {
  6530. "symfony/translation-implementation": "2.0"
  6531. },
  6532. "require-dev": {
  6533. "psr/log": "~1.0",
  6534. "symfony/config": "^4.4|^5.0",
  6535. "symfony/console": "^4.4|^5.0",
  6536. "symfony/dependency-injection": "^5.0",
  6537. "symfony/finder": "^4.4|^5.0",
  6538. "symfony/http-kernel": "^5.0",
  6539. "symfony/intl": "^4.4|^5.0",
  6540. "symfony/service-contracts": "^1.1.2|^2",
  6541. "symfony/yaml": "^4.4|^5.0"
  6542. },
  6543. "suggest": {
  6544. "psr/log-implementation": "To use logging capability in translator",
  6545. "symfony/config": "",
  6546. "symfony/yaml": ""
  6547. },
  6548. "type": "library",
  6549. "autoload": {
  6550. "files": [
  6551. "Resources/functions.php"
  6552. ],
  6553. "psr-4": {
  6554. "Symfony\\Component\\Translation\\": ""
  6555. },
  6556. "exclude-from-classmap": [
  6557. "/Tests/"
  6558. ]
  6559. },
  6560. "notification-url": "https://packagist.org/downloads/",
  6561. "license": [
  6562. "MIT"
  6563. ],
  6564. "authors": [
  6565. {
  6566. "name": "Fabien Potencier",
  6567. "email": "fabien@symfony.com"
  6568. },
  6569. {
  6570. "name": "Symfony Community",
  6571. "homepage": "https://symfony.com/contributors"
  6572. }
  6573. ],
  6574. "description": "Symfony Translation Component",
  6575. "homepage": "https://symfony.com",
  6576. "support": {
  6577. "source": "https://github.com/symfony/translation/tree/v5.2.1"
  6578. },
  6579. "funding": [
  6580. {
  6581. "url": "https://symfony.com/sponsor",
  6582. "type": "custom"
  6583. },
  6584. {
  6585. "url": "https://github.com/fabpot",
  6586. "type": "github"
  6587. },
  6588. {
  6589. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6590. "type": "tidelift"
  6591. }
  6592. ],
  6593. "time": "2020-12-08T17:03:37+00:00"
  6594. },
  6595. {
  6596. "name": "symfony/translation-contracts",
  6597. "version": "v2.3.0",
  6598. "source": {
  6599. "type": "git",
  6600. "url": "https://github.com/symfony/translation-contracts.git",
  6601. "reference": "e2eaa60b558f26a4b0354e1bbb25636efaaad105"
  6602. },
  6603. "dist": {
  6604. "type": "zip",
  6605. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/e2eaa60b558f26a4b0354e1bbb25636efaaad105",
  6606. "reference": "e2eaa60b558f26a4b0354e1bbb25636efaaad105",
  6607. "shasum": ""
  6608. },
  6609. "require": {
  6610. "php": ">=7.2.5"
  6611. },
  6612. "suggest": {
  6613. "symfony/translation-implementation": ""
  6614. },
  6615. "type": "library",
  6616. "extra": {
  6617. "branch-alias": {
  6618. "dev-master": "2.3-dev"
  6619. },
  6620. "thanks": {
  6621. "name": "symfony/contracts",
  6622. "url": "https://github.com/symfony/contracts"
  6623. }
  6624. },
  6625. "autoload": {
  6626. "psr-4": {
  6627. "Symfony\\Contracts\\Translation\\": ""
  6628. }
  6629. },
  6630. "notification-url": "https://packagist.org/downloads/",
  6631. "license": [
  6632. "MIT"
  6633. ],
  6634. "authors": [
  6635. {
  6636. "name": "Nicolas Grekas",
  6637. "email": "p@tchwork.com"
  6638. },
  6639. {
  6640. "name": "Symfony Community",
  6641. "homepage": "https://symfony.com/contributors"
  6642. }
  6643. ],
  6644. "description": "Generic abstractions related to translation",
  6645. "homepage": "https://symfony.com",
  6646. "keywords": [
  6647. "abstractions",
  6648. "contracts",
  6649. "decoupling",
  6650. "interfaces",
  6651. "interoperability",
  6652. "standards"
  6653. ],
  6654. "support": {
  6655. "source": "https://github.com/symfony/translation-contracts/tree/v2.3.0"
  6656. },
  6657. "funding": [
  6658. {
  6659. "url": "https://symfony.com/sponsor",
  6660. "type": "custom"
  6661. },
  6662. {
  6663. "url": "https://github.com/fabpot",
  6664. "type": "github"
  6665. },
  6666. {
  6667. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6668. "type": "tidelift"
  6669. }
  6670. ],
  6671. "time": "2020-09-28T13:05:58+00:00"
  6672. },
  6673. {
  6674. "name": "symfony/var-dumper",
  6675. "version": "v5.2.1",
  6676. "source": {
  6677. "type": "git",
  6678. "url": "https://github.com/symfony/var-dumper.git",
  6679. "reference": "13e7e882eaa55863faa7c4ad7c60f12f1a8b5089"
  6680. },
  6681. "dist": {
  6682. "type": "zip",
  6683. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/13e7e882eaa55863faa7c4ad7c60f12f1a8b5089",
  6684. "reference": "13e7e882eaa55863faa7c4ad7c60f12f1a8b5089",
  6685. "shasum": ""
  6686. },
  6687. "require": {
  6688. "php": ">=7.2.5",
  6689. "symfony/polyfill-mbstring": "~1.0",
  6690. "symfony/polyfill-php80": "^1.15"
  6691. },
  6692. "conflict": {
  6693. "phpunit/phpunit": "<5.4.3",
  6694. "symfony/console": "<4.4"
  6695. },
  6696. "require-dev": {
  6697. "ext-iconv": "*",
  6698. "symfony/console": "^4.4|^5.0",
  6699. "symfony/process": "^4.4|^5.0",
  6700. "twig/twig": "^2.4|^3.0"
  6701. },
  6702. "suggest": {
  6703. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  6704. "ext-intl": "To show region name in time zone dump",
  6705. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  6706. },
  6707. "bin": [
  6708. "Resources/bin/var-dump-server"
  6709. ],
  6710. "type": "library",
  6711. "autoload": {
  6712. "files": [
  6713. "Resources/functions/dump.php"
  6714. ],
  6715. "psr-4": {
  6716. "Symfony\\Component\\VarDumper\\": ""
  6717. },
  6718. "exclude-from-classmap": [
  6719. "/Tests/"
  6720. ]
  6721. },
  6722. "notification-url": "https://packagist.org/downloads/",
  6723. "license": [
  6724. "MIT"
  6725. ],
  6726. "authors": [
  6727. {
  6728. "name": "Nicolas Grekas",
  6729. "email": "p@tchwork.com"
  6730. },
  6731. {
  6732. "name": "Symfony Community",
  6733. "homepage": "https://symfony.com/contributors"
  6734. }
  6735. ],
  6736. "description": "Symfony mechanism for exploring and dumping PHP variables",
  6737. "homepage": "https://symfony.com",
  6738. "keywords": [
  6739. "debug",
  6740. "dump"
  6741. ],
  6742. "support": {
  6743. "source": "https://github.com/symfony/var-dumper/tree/v5.2.1"
  6744. },
  6745. "funding": [
  6746. {
  6747. "url": "https://symfony.com/sponsor",
  6748. "type": "custom"
  6749. },
  6750. {
  6751. "url": "https://github.com/fabpot",
  6752. "type": "github"
  6753. },
  6754. {
  6755. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6756. "type": "tidelift"
  6757. }
  6758. ],
  6759. "time": "2020-12-16T17:02:19+00:00"
  6760. },
  6761. {
  6762. "name": "symfony/yaml",
  6763. "version": "v5.2.1",
  6764. "source": {
  6765. "type": "git",
  6766. "url": "https://github.com/symfony/yaml.git",
  6767. "reference": "290ea5e03b8cf9b42c783163123f54441fb06939"
  6768. },
  6769. "dist": {
  6770. "type": "zip",
  6771. "url": "https://api.github.com/repos/symfony/yaml/zipball/290ea5e03b8cf9b42c783163123f54441fb06939",
  6772. "reference": "290ea5e03b8cf9b42c783163123f54441fb06939",
  6773. "shasum": ""
  6774. },
  6775. "require": {
  6776. "php": ">=7.2.5",
  6777. "symfony/deprecation-contracts": "^2.1",
  6778. "symfony/polyfill-ctype": "~1.8"
  6779. },
  6780. "conflict": {
  6781. "symfony/console": "<4.4"
  6782. },
  6783. "require-dev": {
  6784. "symfony/console": "^4.4|^5.0"
  6785. },
  6786. "suggest": {
  6787. "symfony/console": "For validating YAML files using the lint command"
  6788. },
  6789. "bin": [
  6790. "Resources/bin/yaml-lint"
  6791. ],
  6792. "type": "library",
  6793. "autoload": {
  6794. "psr-4": {
  6795. "Symfony\\Component\\Yaml\\": ""
  6796. },
  6797. "exclude-from-classmap": [
  6798. "/Tests/"
  6799. ]
  6800. },
  6801. "notification-url": "https://packagist.org/downloads/",
  6802. "license": [
  6803. "MIT"
  6804. ],
  6805. "authors": [
  6806. {
  6807. "name": "Fabien Potencier",
  6808. "email": "fabien@symfony.com"
  6809. },
  6810. {
  6811. "name": "Symfony Community",
  6812. "homepage": "https://symfony.com/contributors"
  6813. }
  6814. ],
  6815. "description": "Symfony Yaml Component",
  6816. "homepage": "https://symfony.com",
  6817. "support": {
  6818. "source": "https://github.com/symfony/yaml/tree/v5.2.1"
  6819. },
  6820. "funding": [
  6821. {
  6822. "url": "https://symfony.com/sponsor",
  6823. "type": "custom"
  6824. },
  6825. {
  6826. "url": "https://github.com/fabpot",
  6827. "type": "github"
  6828. },
  6829. {
  6830. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6831. "type": "tidelift"
  6832. }
  6833. ],
  6834. "time": "2020-12-08T17:02:38+00:00"
  6835. },
  6836. {
  6837. "name": "tijsverkoyen/css-to-inline-styles",
  6838. "version": "2.2.3",
  6839. "source": {
  6840. "type": "git",
  6841. "url": "https://github.com/tijsverkoyen/CssToInlineStyles.git",
  6842. "reference": "b43b05cf43c1b6d849478965062b6ef73e223bb5"
  6843. },
  6844. "dist": {
  6845. "type": "zip",
  6846. "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/b43b05cf43c1b6d849478965062b6ef73e223bb5",
  6847. "reference": "b43b05cf43c1b6d849478965062b6ef73e223bb5",
  6848. "shasum": ""
  6849. },
  6850. "require": {
  6851. "ext-dom": "*",
  6852. "ext-libxml": "*",
  6853. "php": "^5.5 || ^7.0 || ^8.0",
  6854. "symfony/css-selector": "^2.7 || ^3.0 || ^4.0 || ^5.0"
  6855. },
  6856. "require-dev": {
  6857. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0 || ^7.5"
  6858. },
  6859. "type": "library",
  6860. "extra": {
  6861. "branch-alias": {
  6862. "dev-master": "2.2.x-dev"
  6863. }
  6864. },
  6865. "autoload": {
  6866. "psr-4": {
  6867. "TijsVerkoyen\\CssToInlineStyles\\": "src"
  6868. }
  6869. },
  6870. "notification-url": "https://packagist.org/downloads/",
  6871. "license": [
  6872. "BSD-3-Clause"
  6873. ],
  6874. "authors": [
  6875. {
  6876. "name": "Tijs Verkoyen",
  6877. "email": "css_to_inline_styles@verkoyen.eu",
  6878. "role": "Developer"
  6879. }
  6880. ],
  6881. "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.",
  6882. "homepage": "https://github.com/tijsverkoyen/CssToInlineStyles",
  6883. "support": {
  6884. "issues": "https://github.com/tijsverkoyen/CssToInlineStyles/issues",
  6885. "source": "https://github.com/tijsverkoyen/CssToInlineStyles/tree/2.2.3"
  6886. },
  6887. "time": "2020-07-13T06:12:54+00:00"
  6888. },
  6889. {
  6890. "name": "tymon/jwt-auth",
  6891. "version": "1.0.2",
  6892. "source": {
  6893. "type": "git",
  6894. "url": "https://github.com/tymondesigns/jwt-auth.git",
  6895. "reference": "e588cb719539366c0e2f6017f975379cb73e9680"
  6896. },
  6897. "dist": {
  6898. "type": "zip",
  6899. "url": "https://api.github.com/repos/tymondesigns/jwt-auth/zipball/e588cb719539366c0e2f6017f975379cb73e9680",
  6900. "reference": "e588cb719539366c0e2f6017f975379cb73e9680",
  6901. "shasum": ""
  6902. },
  6903. "require": {
  6904. "illuminate/auth": "^5.2|^6|^7|^8",
  6905. "illuminate/contracts": "^5.2|^6|^7|^8",
  6906. "illuminate/http": "^5.2|^6|^7|^8",
  6907. "illuminate/support": "^5.2|^6|^7|^8",
  6908. "lcobucci/jwt": "<3.4",
  6909. "namshi/jose": "^7.0",
  6910. "nesbot/carbon": "^1.0|^2.0",
  6911. "php": "^5.5.9|^7.0"
  6912. },
  6913. "require-dev": {
  6914. "illuminate/console": "^5.2|^6|^7|^8",
  6915. "illuminate/database": "^5.2|^6|^7|^8",
  6916. "illuminate/routing": "^5.2|^6|^7|^8",
  6917. "mockery/mockery": ">=0.9.9",
  6918. "phpunit/phpunit": "~4.8|~6.0"
  6919. },
  6920. "type": "library",
  6921. "extra": {
  6922. "branch-alias": {
  6923. "dev-develop": "1.0-dev"
  6924. },
  6925. "laravel": {
  6926. "aliases": {
  6927. "JWTAuth": "Tymon\\JWTAuth\\Facades\\JWTAuth",
  6928. "JWTFactory": "Tymon\\JWTAuth\\Facades\\JWTFactory"
  6929. },
  6930. "providers": [
  6931. "Tymon\\JWTAuth\\Providers\\LaravelServiceProvider"
  6932. ]
  6933. }
  6934. },
  6935. "autoload": {
  6936. "psr-4": {
  6937. "Tymon\\JWTAuth\\": "src/"
  6938. }
  6939. },
  6940. "notification-url": "https://packagist.org/downloads/",
  6941. "license": [
  6942. "MIT"
  6943. ],
  6944. "authors": [
  6945. {
  6946. "name": "Sean Tymon",
  6947. "email": "tymon148@gmail.com",
  6948. "homepage": "https://tymon.xyz",
  6949. "role": "Developer"
  6950. }
  6951. ],
  6952. "description": "JSON Web Token Authentication for Laravel and Lumen",
  6953. "homepage": "https://github.com/tymondesigns/jwt-auth",
  6954. "keywords": [
  6955. "Authentication",
  6956. "JSON Web Token",
  6957. "auth",
  6958. "jwt",
  6959. "laravel"
  6960. ],
  6961. "support": {
  6962. "issues": "https://github.com/tymondesigns/jwt-auth/issues",
  6963. "source": "https://github.com/tymondesigns/jwt-auth"
  6964. },
  6965. "funding": [
  6966. {
  6967. "url": "https://www.patreon.com/seantymon",
  6968. "type": "patreon"
  6969. }
  6970. ],
  6971. "time": "2020-11-27T12:32:42+00:00"
  6972. },
  6973. {
  6974. "name": "vlucas/phpdotenv",
  6975. "version": "v4.1.8",
  6976. "source": {
  6977. "type": "git",
  6978. "url": "https://github.com/vlucas/phpdotenv.git",
  6979. "reference": "572af79d913627a9d70374d27a6f5d689a35de32"
  6980. },
  6981. "dist": {
  6982. "type": "zip",
  6983. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/572af79d913627a9d70374d27a6f5d689a35de32",
  6984. "reference": "572af79d913627a9d70374d27a6f5d689a35de32",
  6985. "shasum": ""
  6986. },
  6987. "require": {
  6988. "php": "^5.5.9 || ^7.0 || ^8.0",
  6989. "phpoption/phpoption": "^1.7.3",
  6990. "symfony/polyfill-ctype": "^1.17"
  6991. },
  6992. "require-dev": {
  6993. "bamarni/composer-bin-plugin": "^1.4.1",
  6994. "ext-filter": "*",
  6995. "ext-pcre": "*",
  6996. "phpunit/phpunit": "^4.8.35 || ^5.7.27 || ^6.5.6 || ^7.0"
  6997. },
  6998. "suggest": {
  6999. "ext-filter": "Required to use the boolean validator.",
  7000. "ext-pcre": "Required to use most of the library."
  7001. },
  7002. "type": "library",
  7003. "extra": {
  7004. "branch-alias": {
  7005. "dev-master": "4.1-dev"
  7006. }
  7007. },
  7008. "autoload": {
  7009. "psr-4": {
  7010. "Dotenv\\": "src/"
  7011. }
  7012. },
  7013. "notification-url": "https://packagist.org/downloads/",
  7014. "license": [
  7015. "BSD-3-Clause"
  7016. ],
  7017. "authors": [
  7018. {
  7019. "name": "Graham Campbell",
  7020. "email": "graham@alt-three.com",
  7021. "homepage": "https://gjcampbell.co.uk/"
  7022. },
  7023. {
  7024. "name": "Vance Lucas",
  7025. "email": "vance@vancelucas.com",
  7026. "homepage": "https://vancelucas.com/"
  7027. }
  7028. ],
  7029. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  7030. "keywords": [
  7031. "dotenv",
  7032. "env",
  7033. "environment"
  7034. ],
  7035. "support": {
  7036. "issues": "https://github.com/vlucas/phpdotenv/issues",
  7037. "source": "https://github.com/vlucas/phpdotenv/tree/4.1"
  7038. },
  7039. "funding": [
  7040. {
  7041. "url": "https://github.com/GrahamCampbell",
  7042. "type": "github"
  7043. },
  7044. {
  7045. "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
  7046. "type": "tidelift"
  7047. }
  7048. ],
  7049. "time": "2020-07-14T19:22:52+00:00"
  7050. },
  7051. {
  7052. "name": "voku/portable-ascii",
  7053. "version": "1.5.6",
  7054. "source": {
  7055. "type": "git",
  7056. "url": "https://github.com/voku/portable-ascii.git",
  7057. "reference": "80953678b19901e5165c56752d087fc11526017c"
  7058. },
  7059. "dist": {
  7060. "type": "zip",
  7061. "url": "https://api.github.com/repos/voku/portable-ascii/zipball/80953678b19901e5165c56752d087fc11526017c",
  7062. "reference": "80953678b19901e5165c56752d087fc11526017c",
  7063. "shasum": ""
  7064. },
  7065. "require": {
  7066. "php": ">=7.0.0"
  7067. },
  7068. "require-dev": {
  7069. "phpunit/phpunit": "~6.0 || ~7.0 || ~9.0"
  7070. },
  7071. "suggest": {
  7072. "ext-intl": "Use Intl for transliterator_transliterate() support"
  7073. },
  7074. "type": "library",
  7075. "autoload": {
  7076. "psr-4": {
  7077. "voku\\": "src/voku/"
  7078. }
  7079. },
  7080. "notification-url": "https://packagist.org/downloads/",
  7081. "license": [
  7082. "MIT"
  7083. ],
  7084. "authors": [
  7085. {
  7086. "name": "Lars Moelleken",
  7087. "homepage": "http://www.moelleken.org/"
  7088. }
  7089. ],
  7090. "description": "Portable ASCII library - performance optimized (ascii) string functions for php.",
  7091. "homepage": "https://github.com/voku/portable-ascii",
  7092. "keywords": [
  7093. "ascii",
  7094. "clean",
  7095. "php"
  7096. ],
  7097. "support": {
  7098. "issues": "https://github.com/voku/portable-ascii/issues",
  7099. "source": "https://github.com/voku/portable-ascii/tree/1.5.6"
  7100. },
  7101. "funding": [
  7102. {
  7103. "url": "https://www.paypal.me/moelleken",
  7104. "type": "custom"
  7105. },
  7106. {
  7107. "url": "https://github.com/voku",
  7108. "type": "github"
  7109. },
  7110. {
  7111. "url": "https://opencollective.com/portable-ascii",
  7112. "type": "open_collective"
  7113. },
  7114. {
  7115. "url": "https://www.patreon.com/voku",
  7116. "type": "patreon"
  7117. },
  7118. {
  7119. "url": "https://tidelift.com/funding/github/packagist/voku/portable-ascii",
  7120. "type": "tidelift"
  7121. }
  7122. ],
  7123. "time": "2020-11-12T00:07:28+00:00"
  7124. },
  7125. {
  7126. "name": "xhat/payjs",
  7127. "version": "1.5.0",
  7128. "source": {
  7129. "type": "git",
  7130. "url": "https://github.com/xhat/payjs.git",
  7131. "reference": "d15b678f7fb70fc70bafa82c5a7896fceebad364"
  7132. },
  7133. "dist": {
  7134. "type": "zip",
  7135. "url": "https://api.github.com/repos/xhat/payjs/zipball/d15b678f7fb70fc70bafa82c5a7896fceebad364",
  7136. "reference": "d15b678f7fb70fc70bafa82c5a7896fceebad364",
  7137. "shasum": ""
  7138. },
  7139. "type": "library",
  7140. "autoload": {
  7141. "psr-4": {
  7142. "Xhat\\Payjs\\": "src/"
  7143. }
  7144. },
  7145. "notification-url": "https://packagist.org/downloads/",
  7146. "license": [
  7147. "MIT"
  7148. ],
  7149. "authors": [
  7150. {
  7151. "name": "andy",
  7152. "email": "andy@popfeng.com"
  7153. }
  7154. ],
  7155. "description": "本项目是基于 PAYJS 的 API 开发的 Composer Package,可直接用于生产环境 https://payjs.cn",
  7156. "support": {
  7157. "issues": "https://github.com/xhat/payjs/issues",
  7158. "source": "https://github.com/xhat/payjs/tree/1.5.0"
  7159. },
  7160. "funding": [
  7161. {
  7162. "url": "https://payjs.cn/sponsor/dajjxz",
  7163. "type": "custom"
  7164. }
  7165. ],
  7166. "time": "2020-09-11T06:02:42+00:00"
  7167. },
  7168. {
  7169. "name": "zbrettonye/geetest",
  7170. "version": "v1.2.0",
  7171. "source": {
  7172. "type": "git",
  7173. "url": "https://github.com/ZBrettonYe/geetest.git",
  7174. "reference": "ee08e5bee9be831c23df241d3ab75678a8ce5fed"
  7175. },
  7176. "dist": {
  7177. "type": "zip",
  7178. "url": "https://api.github.com/repos/ZBrettonYe/geetest/zipball/ee08e5bee9be831c23df241d3ab75678a8ce5fed",
  7179. "reference": "ee08e5bee9be831c23df241d3ab75678a8ce5fed",
  7180. "shasum": ""
  7181. },
  7182. "require": {
  7183. "ext-json": "*",
  7184. "guzzlehttp/guzzle": "^6.3|^7.0",
  7185. "illuminate/routing": "^6|^7|^8",
  7186. "illuminate/support": "^6|^7|^8",
  7187. "php": "^7.2"
  7188. },
  7189. "require-dev": {
  7190. "mockery/mockery": "^1.3.1",
  7191. "phpunit/phpunit": "^7.5.15|^8.4|^9.0"
  7192. },
  7193. "type": "library",
  7194. "extra": {
  7195. "laravel": {
  7196. "providers": [
  7197. "ZBrettonYe\\Geetest\\GeetestServiceProvider"
  7198. ],
  7199. "aliases": {
  7200. "Geetest": "ZBrettonYe\\Geetest\\Geetest"
  7201. }
  7202. }
  7203. },
  7204. "autoload": {
  7205. "psr-4": {
  7206. "ZBrettonYe\\Geetest\\": "src/"
  7207. }
  7208. },
  7209. "notification-url": "https://packagist.org/downloads/",
  7210. "license": [
  7211. "MIT"
  7212. ],
  7213. "authors": [
  7214. {
  7215. "name": "zbrettonye",
  7216. "email": "monkeyblacktech97@gmail.com"
  7217. }
  7218. ],
  7219. "description": "Geetest Package for Laravel6-8",
  7220. "keywords": [
  7221. "geetest",
  7222. "laravel"
  7223. ],
  7224. "support": {
  7225. "source": "https://github.com/ZBrettonYe/geetest/tree/v1.2.0"
  7226. },
  7227. "time": "2020-10-13T20:15:36+00:00"
  7228. },
  7229. {
  7230. "name": "zbrettonye/hcaptcha",
  7231. "version": "V1.1.0",
  7232. "source": {
  7233. "type": "git",
  7234. "url": "https://github.com/ZBrettonYe/hcaptcha.git",
  7235. "reference": "d84cb1bcf754ada345da8baadf7129dbca67d1ee"
  7236. },
  7237. "dist": {
  7238. "type": "zip",
  7239. "url": "https://api.github.com/repos/ZBrettonYe/hcaptcha/zipball/d84cb1bcf754ada345da8baadf7129dbca67d1ee",
  7240. "reference": "d84cb1bcf754ada345da8baadf7129dbca67d1ee",
  7241. "shasum": ""
  7242. },
  7243. "require": {
  7244. "guzzlehttp/guzzle": "^6.2|^7.0",
  7245. "illuminate/support": "^6|^7|^8",
  7246. "php": "^7.2"
  7247. },
  7248. "require-dev": {
  7249. "phpunit/phpunit": "~4.8"
  7250. },
  7251. "type": "library",
  7252. "extra": {
  7253. "laravel": {
  7254. "providers": [
  7255. "ZBrettonYe\\HCaptcha\\HCaptchaServiceProvider"
  7256. ],
  7257. "aliases": {
  7258. "HCaptcha": "ZBrettonYe\\HCaptcha\\Facades\\HCaptcha"
  7259. }
  7260. }
  7261. },
  7262. "autoload": {
  7263. "psr-4": {
  7264. "ZBrettonYe\\HCaptcha\\": "src/"
  7265. }
  7266. },
  7267. "notification-url": "https://packagist.org/downloads/",
  7268. "license": [
  7269. "MIT"
  7270. ],
  7271. "authors": [
  7272. {
  7273. "name": "zbrettonye",
  7274. "email": "monkeyblacktech97@gmail.com"
  7275. }
  7276. ],
  7277. "description": "hCaptcha For Laravel6~8",
  7278. "keywords": [
  7279. "captcha",
  7280. "hcaptcha",
  7281. "laravel"
  7282. ],
  7283. "support": {
  7284. "source": "https://github.com/ZBrettonYe/hcaptcha/tree/V1.1.0"
  7285. },
  7286. "time": "2020-10-13T21:22:51+00:00"
  7287. },
  7288. {
  7289. "name": "zbrettonye/no-captcha",
  7290. "version": "v1.1.0",
  7291. "source": {
  7292. "type": "git",
  7293. "url": "https://github.com/ZBrettonYe/no-captcha.git",
  7294. "reference": "4cb229bf5fa9f5726eb5a821e9710c5fc8edad28"
  7295. },
  7296. "dist": {
  7297. "type": "zip",
  7298. "url": "https://api.github.com/repos/ZBrettonYe/no-captcha/zipball/4cb229bf5fa9f5726eb5a821e9710c5fc8edad28",
  7299. "reference": "4cb229bf5fa9f5726eb5a821e9710c5fc8edad28",
  7300. "shasum": ""
  7301. },
  7302. "require": {
  7303. "ext-json": "*",
  7304. "guzzlehttp/guzzle": "^6.2|^7.0",
  7305. "illuminate/support": "^6|^7|^8",
  7306. "php": "^7.2"
  7307. },
  7308. "require-dev": {
  7309. "phpunit/phpunit": "~4.8"
  7310. },
  7311. "type": "library",
  7312. "extra": {
  7313. "laravel": {
  7314. "providers": [
  7315. "ZBrettonYe\\NoCaptcha\\NoCaptchaServiceProvider"
  7316. ],
  7317. "aliases": {
  7318. "NoCaptcha": "ZBrettonYe\\NoCaptcha\\Facades\\NoCaptcha"
  7319. }
  7320. }
  7321. },
  7322. "autoload": {
  7323. "psr-4": {
  7324. "ZBrettonYe\\NoCaptcha\\": "src/"
  7325. }
  7326. },
  7327. "notification-url": "https://packagist.org/downloads/",
  7328. "license": [
  7329. "MIT"
  7330. ],
  7331. "authors": [
  7332. {
  7333. "name": "zbrettonye",
  7334. "email": "monkeyblacktech97@gmail.com"
  7335. }
  7336. ],
  7337. "description": "No CAPTCHA reCAPTCHA For Laravel6~8",
  7338. "keywords": [
  7339. "captcha",
  7340. "laravel",
  7341. "no-captcha",
  7342. "recaptcha"
  7343. ],
  7344. "support": {
  7345. "source": "https://github.com/ZBrettonYe/no-captcha/tree/v1.1.0"
  7346. },
  7347. "time": "2020-10-13T21:35:30+00:00"
  7348. },
  7349. {
  7350. "name": "zoujingli/ip2region",
  7351. "version": "v1.0.9",
  7352. "source": {
  7353. "type": "git",
  7354. "url": "https://github.com/zoujingli/ip2region.git",
  7355. "reference": "e48f9122f50dd3b79295e35b4acdd0dcd2608ca8"
  7356. },
  7357. "dist": {
  7358. "type": "zip",
  7359. "url": "https://api.github.com/repos/zoujingli/ip2region/zipball/e48f9122f50dd3b79295e35b4acdd0dcd2608ca8",
  7360. "reference": "e48f9122f50dd3b79295e35b4acdd0dcd2608ca8",
  7361. "shasum": ""
  7362. },
  7363. "require": {
  7364. "php": ">=5.3"
  7365. },
  7366. "type": "library",
  7367. "autoload": {
  7368. "classmap": [
  7369. "Ip2Region.php"
  7370. ]
  7371. },
  7372. "notification-url": "https://packagist.org/downloads/",
  7373. "license": [
  7374. "Apache-2.0"
  7375. ],
  7376. "authors": [
  7377. {
  7378. "name": "Anyon",
  7379. "email": "zoujingli@qq.com",
  7380. "homepage": "http://ctolog.com"
  7381. }
  7382. ],
  7383. "description": "Ip2Region for PHP",
  7384. "homepage": "https://github.com/zoujingli/Ip2Region",
  7385. "keywords": [
  7386. "Ip2Region"
  7387. ],
  7388. "support": {
  7389. "issues": "https://github.com/zoujingli/ip2region/issues",
  7390. "source": "https://github.com/zoujingli/ip2region/tree/v1.0.9"
  7391. },
  7392. "time": "2020-11-06T07:21:55+00:00"
  7393. }
  7394. ],
  7395. "packages-dev": [
  7396. {
  7397. "name": "andrey-helldar/laravel-lang-publisher",
  7398. "version": "v6.2.0",
  7399. "source": {
  7400. "type": "git",
  7401. "url": "https://github.com/andrey-helldar/laravel-lang-publisher.git",
  7402. "reference": "950458ca9d43dbbd0a8ec228a26b670c8f93cf94"
  7403. },
  7404. "dist": {
  7405. "type": "zip",
  7406. "url": "https://api.github.com/repos/andrey-helldar/laravel-lang-publisher/zipball/950458ca9d43dbbd0a8ec228a26b670c8f93cf94",
  7407. "reference": "950458ca9d43dbbd0a8ec228a26b670c8f93cf94",
  7408. "shasum": ""
  7409. },
  7410. "require": {
  7411. "andrey-helldar/pretty-array": "^1.4.2",
  7412. "andrey-helldar/support": "^1.4.1",
  7413. "ext-json": "*",
  7414. "illuminate/console": "^7.0|^8.0",
  7415. "illuminate/support": "^7.0|^8.0",
  7416. "laravel-lang/lang": "^7.0",
  7417. "php": "^7.2.5|^8.0"
  7418. },
  7419. "require-dev": {
  7420. "mockery/mockery": "^1.3.1",
  7421. "orchestra/testbench": "^5.0|^6.0",
  7422. "phpunit/phpunit": "^8.4|^9.0"
  7423. },
  7424. "suggest": {
  7425. "andrey-helldar/lang-translations": "Translation of main messages",
  7426. "laravel/jetstream": "Tailwind scaffolding for the Laravel framework.",
  7427. "symfony/thanks": "Give thanks (in the form of a GitHub) to your fellow PHP package maintainers"
  7428. },
  7429. "type": "library",
  7430. "extra": {
  7431. "laravel": {
  7432. "providers": [
  7433. "Helldar\\LaravelLangPublisher\\ServiceProvider"
  7434. ]
  7435. }
  7436. },
  7437. "autoload": {
  7438. "psr-4": {
  7439. "Helldar\\LaravelLangPublisher\\": "src"
  7440. }
  7441. },
  7442. "notification-url": "https://packagist.org/downloads/",
  7443. "license": [
  7444. "MIT"
  7445. ],
  7446. "authors": [
  7447. {
  7448. "name": "Andrey Helldar",
  7449. "email": "helldar@ai-rus.com"
  7450. }
  7451. ],
  7452. "description": "Publisher lang files for the Laravel Framework + Laravel Jetstream from Laravel-Lang/lang",
  7453. "keywords": [
  7454. "fortify",
  7455. "i18n",
  7456. "jetstream",
  7457. "lang",
  7458. "languages",
  7459. "laravel",
  7460. "locale",
  7461. "localization",
  7462. "lpm",
  7463. "lumen",
  7464. "publisher",
  7465. "trans",
  7466. "translations",
  7467. "validations"
  7468. ],
  7469. "support": {
  7470. "issues": "https://github.com/andrey-helldar/laravel-lang-publisher/issues",
  7471. "source": "https://github.com/andrey-helldar/laravel-lang-publisher"
  7472. },
  7473. "funding": [
  7474. {
  7475. "url": "https://money.yandex.ru/to/410012115955701",
  7476. "type": "custom"
  7477. },
  7478. {
  7479. "url": "https://paypal.me/helldar",
  7480. "type": "custom"
  7481. }
  7482. ],
  7483. "time": "2020-11-30T10:15:29+00:00"
  7484. },
  7485. {
  7486. "name": "andrey-helldar/pretty-array",
  7487. "version": "v1.5.0",
  7488. "source": {
  7489. "type": "git",
  7490. "url": "https://github.com/andrey-helldar/pretty-array.git",
  7491. "reference": "925db552d4f7f9c0a31cbce0f58518260d80e543"
  7492. },
  7493. "dist": {
  7494. "type": "zip",
  7495. "url": "https://api.github.com/repos/andrey-helldar/pretty-array/zipball/925db552d4f7f9c0a31cbce0f58518260d80e543",
  7496. "reference": "925db552d4f7f9c0a31cbce0f58518260d80e543",
  7497. "shasum": ""
  7498. },
  7499. "require": {
  7500. "andrey-helldar/support": "^1.16.0",
  7501. "ext-dom": "*",
  7502. "ext-mbstring": "*",
  7503. "php": "^7.1.3|^8.0"
  7504. },
  7505. "require-dev": {
  7506. "phpstan/phpstan": "^0.12.7",
  7507. "phpunit/phpunit": "^7.0|^8.0"
  7508. },
  7509. "suggest": {
  7510. "symfony/thanks": "Give thanks (in the form of a GitHub) to your fellow PHP package maintainers"
  7511. },
  7512. "type": "library",
  7513. "autoload": {
  7514. "psr-4": {
  7515. "Helldar\\PrettyArray\\": "src/"
  7516. }
  7517. },
  7518. "notification-url": "https://packagist.org/downloads/",
  7519. "license": [
  7520. "MIT"
  7521. ],
  7522. "authors": [
  7523. {
  7524. "name": "Andrey Helldar",
  7525. "email": "helldar@ai-rus.com"
  7526. }
  7527. ],
  7528. "description": "Simple conversion of an array to a pretty view.",
  7529. "keywords": [
  7530. "array",
  7531. "pretty",
  7532. "pretty array"
  7533. ],
  7534. "support": {
  7535. "issues": "https://github.com/andrey-helldar/pretty-array/issues",
  7536. "source": "https://github.com/andrey-helldar/pretty-array"
  7537. },
  7538. "funding": [
  7539. {
  7540. "url": "https://money.yandex.ru/to/410012115955701",
  7541. "type": "custom"
  7542. },
  7543. {
  7544. "url": "https://paypal.me/helldar",
  7545. "type": "custom"
  7546. }
  7547. ],
  7548. "time": "2020-11-30T10:28:20+00:00"
  7549. },
  7550. {
  7551. "name": "andrey-helldar/support",
  7552. "version": "v1.30.3",
  7553. "source": {
  7554. "type": "git",
  7555. "url": "https://github.com/andrey-helldar/support.git",
  7556. "reference": "6278f7ba38fdbfb3a22b602a67620e1133703464"
  7557. },
  7558. "dist": {
  7559. "type": "zip",
  7560. "url": "https://api.github.com/repos/andrey-helldar/support/zipball/6278f7ba38fdbfb3a22b602a67620e1133703464",
  7561. "reference": "6278f7ba38fdbfb3a22b602a67620e1133703464",
  7562. "shasum": ""
  7563. },
  7564. "require": {
  7565. "ext-ctype": "*",
  7566. "ext-dom": "*",
  7567. "ext-json": "*",
  7568. "ext-mbstring": "*",
  7569. "php": "^7.1.3|^8.0",
  7570. "symfony/deprecation-contracts": "^2.0"
  7571. },
  7572. "require-dev": {
  7573. "ext-bcmath": "*",
  7574. "phpunit/phpunit": "^9.0"
  7575. },
  7576. "suggest": {
  7577. "andrey-helldar/laravel-support": "Various helper files for the Laravel and Lumen frameworks",
  7578. "ext-bcmath": "Require the extension if you will be using Helldar\\Support\\Facades\\Digit.",
  7579. "symfony/thanks": "Give thanks (in the form of a GitHub) to your fellow PHP package maintainers"
  7580. },
  7581. "type": "library",
  7582. "extra": {
  7583. "laravel": {
  7584. "providers": [
  7585. "Helldar\\Support\\ServiceProvider"
  7586. ]
  7587. }
  7588. },
  7589. "autoload": {
  7590. "psr-4": {
  7591. "Helldar\\Support\\": "src"
  7592. },
  7593. "files": [
  7594. "src/helpers/digit.php",
  7595. "src/helpers/dumper.php",
  7596. "src/helpers/http.php",
  7597. "src/helpers/strings.php"
  7598. ]
  7599. },
  7600. "notification-url": "https://packagist.org/downloads/",
  7601. "license": [
  7602. "MIT"
  7603. ],
  7604. "authors": [
  7605. {
  7606. "name": "Andrey Helldar",
  7607. "email": "helldar@ai-rus.com"
  7608. }
  7609. ],
  7610. "description": "Support package is a collection of helpers and tools for projects.",
  7611. "keywords": [
  7612. "framework",
  7613. "laravel",
  7614. "support",
  7615. "symfony",
  7616. "yii",
  7617. "yii2"
  7618. ],
  7619. "support": {
  7620. "issues": "https://github.com/andrey-helldar/support/issues",
  7621. "source": "https://github.com/andrey-helldar/support"
  7622. },
  7623. "funding": [
  7624. {
  7625. "url": "https://money.yandex.ru/to/410012115955701",
  7626. "type": "custom"
  7627. },
  7628. {
  7629. "url": "https://paypal.me/helldar",
  7630. "type": "custom"
  7631. }
  7632. ],
  7633. "time": "2020-12-29T18:59:09+00:00"
  7634. },
  7635. {
  7636. "name": "arcanedev/laravel-lang",
  7637. "version": "8.0.0",
  7638. "source": {
  7639. "type": "git",
  7640. "url": "https://github.com/ARCANEDEV/LaravelLang.git",
  7641. "reference": "8b1711a37bbab081973920ad19a729dc0df2ca4b"
  7642. },
  7643. "dist": {
  7644. "type": "zip",
  7645. "url": "https://api.github.com/repos/ARCANEDEV/LaravelLang/zipball/8b1711a37bbab081973920ad19a729dc0df2ca4b",
  7646. "reference": "8b1711a37bbab081973920ad19a729dc0df2ca4b",
  7647. "shasum": ""
  7648. },
  7649. "require": {
  7650. "arcanedev/support": "^7.1.2",
  7651. "caouecs/laravel-lang": "^6.0",
  7652. "php": "^7.2.5"
  7653. },
  7654. "require-dev": {
  7655. "mockery/mockery": "^1.3.1",
  7656. "orchestra/testbench": "^5.0",
  7657. "phpunit/phpunit": "^8.5|^9.0"
  7658. },
  7659. "type": "library",
  7660. "extra": {
  7661. "laravel": {
  7662. "providers": [
  7663. "Arcanedev\\LaravelLang\\LaravelLangServiceProvider",
  7664. "Arcanedev\\LaravelLang\\Providers\\DeferredServicesProvider",
  7665. "Arcanedev\\LaravelLang\\Providers\\TranslationServiceProvider"
  7666. ]
  7667. }
  7668. },
  7669. "autoload": {
  7670. "psr-4": {
  7671. "Arcanedev\\LaravelLang\\": "src/"
  7672. }
  7673. },
  7674. "notification-url": "https://packagist.org/downloads/",
  7675. "license": [
  7676. "MIT"
  7677. ],
  7678. "authors": [
  7679. {
  7680. "name": "ARCANEDEV",
  7681. "email": "arcanedev.maroc@gmail.com",
  7682. "homepage": "https://github.com/arcanedev-maroc",
  7683. "role": "Developer"
  7684. }
  7685. ],
  7686. "description": "Translations manager and checker for Laravel 5 based on 'caouecs/laravel4-lang' package.",
  7687. "homepage": "https://github.com/ARCANEDEV/LaravelLang",
  7688. "keywords": [
  7689. "arcanedev",
  7690. "lang",
  7691. "languages",
  7692. "laravel",
  7693. "localisation",
  7694. "localization",
  7695. "trans",
  7696. "translations",
  7697. "validations"
  7698. ],
  7699. "support": {
  7700. "issues": "https://github.com/ARCANEDEV/LaravelLang/issues",
  7701. "source": "https://github.com/ARCANEDEV/LaravelLang/tree/master"
  7702. },
  7703. "time": "2020-03-21T21:29:29+00:00"
  7704. },
  7705. {
  7706. "name": "arcanedev/support",
  7707. "version": "7.1.2",
  7708. "source": {
  7709. "type": "git",
  7710. "url": "https://github.com/ARCANEDEV/Support.git",
  7711. "reference": "7e4199d30f04c611ba5d895e663f111c217ff5a3"
  7712. },
  7713. "dist": {
  7714. "type": "zip",
  7715. "url": "https://api.github.com/repos/ARCANEDEV/Support/zipball/7e4199d30f04c611ba5d895e663f111c217ff5a3",
  7716. "reference": "7e4199d30f04c611ba5d895e663f111c217ff5a3",
  7717. "shasum": ""
  7718. },
  7719. "require": {
  7720. "illuminate/filesystem": "^7.0",
  7721. "illuminate/support": "^7.0",
  7722. "php": "^7.2.5"
  7723. },
  7724. "require-dev": {
  7725. "orchestra/testbench": "^5.0",
  7726. "phpunit/phpunit": "^8.0|^9.0"
  7727. },
  7728. "type": "library",
  7729. "extra": {
  7730. "branch-alias": {
  7731. "dev-master": "7.x-dev"
  7732. }
  7733. },
  7734. "autoload": {
  7735. "psr-4": {
  7736. "Arcanedev\\Support\\": "src/"
  7737. },
  7738. "files": [
  7739. "helpers.php"
  7740. ]
  7741. },
  7742. "notification-url": "https://packagist.org/downloads/",
  7743. "license": [
  7744. "MIT"
  7745. ],
  7746. "authors": [
  7747. {
  7748. "name": "ARCANEDEV",
  7749. "email": "arcanedev.maroc@gmail.com",
  7750. "homepage": "https://github.com/arcanedev-maroc"
  7751. }
  7752. ],
  7753. "description": "ARCANEDEV Support Helpers",
  7754. "homepage": "https://github.com/ARCANEDEV/Support",
  7755. "keywords": [
  7756. "arcanedev",
  7757. "arcanesoft",
  7758. "laravel",
  7759. "support"
  7760. ],
  7761. "support": {
  7762. "issues": "https://github.com/ARCANEDEV/Support/issues",
  7763. "source": "https://github.com/ARCANEDEV/Support/tree/7.1.2"
  7764. },
  7765. "time": "2020-03-12T09:28:19+00:00"
  7766. },
  7767. {
  7768. "name": "barryvdh/laravel-debugbar",
  7769. "version": "v3.5.1",
  7770. "source": {
  7771. "type": "git",
  7772. "url": "https://github.com/barryvdh/laravel-debugbar.git",
  7773. "reference": "233c10688f4c1a6e66ed2ef123038b1363d1bedc"
  7774. },
  7775. "dist": {
  7776. "type": "zip",
  7777. "url": "https://api.github.com/repos/barryvdh/laravel-debugbar/zipball/233c10688f4c1a6e66ed2ef123038b1363d1bedc",
  7778. "reference": "233c10688f4c1a6e66ed2ef123038b1363d1bedc",
  7779. "shasum": ""
  7780. },
  7781. "require": {
  7782. "illuminate/routing": "^6|^7|^8",
  7783. "illuminate/session": "^6|^7|^8",
  7784. "illuminate/support": "^6|^7|^8",
  7785. "maximebf/debugbar": "^1.16.3",
  7786. "php": ">=7.2",
  7787. "symfony/debug": "^4.3|^5",
  7788. "symfony/finder": "^4.3|^5"
  7789. },
  7790. "require-dev": {
  7791. "orchestra/testbench-dusk": "^4|^5|^6",
  7792. "phpunit/phpunit": "^8.5|^9.0",
  7793. "squizlabs/php_codesniffer": "^3.5"
  7794. },
  7795. "type": "library",
  7796. "extra": {
  7797. "branch-alias": {
  7798. "dev-master": "3.5-dev"
  7799. },
  7800. "laravel": {
  7801. "providers": [
  7802. "Barryvdh\\Debugbar\\ServiceProvider"
  7803. ],
  7804. "aliases": {
  7805. "Debugbar": "Barryvdh\\Debugbar\\Facade"
  7806. }
  7807. }
  7808. },
  7809. "autoload": {
  7810. "psr-4": {
  7811. "Barryvdh\\Debugbar\\": "src/"
  7812. },
  7813. "files": [
  7814. "src/helpers.php"
  7815. ]
  7816. },
  7817. "notification-url": "https://packagist.org/downloads/",
  7818. "license": [
  7819. "MIT"
  7820. ],
  7821. "authors": [
  7822. {
  7823. "name": "Barry vd. Heuvel",
  7824. "email": "barryvdh@gmail.com"
  7825. }
  7826. ],
  7827. "description": "PHP Debugbar integration for Laravel",
  7828. "keywords": [
  7829. "debug",
  7830. "debugbar",
  7831. "laravel",
  7832. "profiler",
  7833. "webprofiler"
  7834. ],
  7835. "support": {
  7836. "issues": "https://github.com/barryvdh/laravel-debugbar/issues",
  7837. "source": "https://github.com/barryvdh/laravel-debugbar/tree/v3.5.1"
  7838. },
  7839. "funding": [
  7840. {
  7841. "url": "https://github.com/barryvdh",
  7842. "type": "github"
  7843. }
  7844. ],
  7845. "time": "2020-09-07T19:32:39+00:00"
  7846. },
  7847. {
  7848. "name": "barryvdh/laravel-ide-helper",
  7849. "version": "v2.8.2",
  7850. "source": {
  7851. "type": "git",
  7852. "url": "https://github.com/barryvdh/laravel-ide-helper.git",
  7853. "reference": "5515cabea39b9cf55f98980d0f269dc9d85cfcca"
  7854. },
  7855. "dist": {
  7856. "type": "zip",
  7857. "url": "https://api.github.com/repos/barryvdh/laravel-ide-helper/zipball/5515cabea39b9cf55f98980d0f269dc9d85cfcca",
  7858. "reference": "5515cabea39b9cf55f98980d0f269dc9d85cfcca",
  7859. "shasum": ""
  7860. },
  7861. "require": {
  7862. "barryvdh/reflection-docblock": "^2.0.6",
  7863. "composer/composer": "^1.6 || ^2",
  7864. "doctrine/dbal": "~2.3",
  7865. "ext-json": "*",
  7866. "illuminate/console": "^6 || ^7 || ^8",
  7867. "illuminate/filesystem": "^6 || ^7 || ^8",
  7868. "illuminate/support": "^6 || ^7 || ^8",
  7869. "php": ">=7.2",
  7870. "phpdocumentor/type-resolver": "^1.1.0"
  7871. },
  7872. "require-dev": {
  7873. "ext-pdo_sqlite": "*",
  7874. "friendsofphp/php-cs-fixer": "^2",
  7875. "illuminate/config": "^6 || ^7 || ^8",
  7876. "illuminate/view": "^6 || ^7 || ^8",
  7877. "mockery/mockery": "^1.3.3",
  7878. "orchestra/testbench": "^4 || ^5 || ^6",
  7879. "phpunit/phpunit": "^8.5 || ^9",
  7880. "spatie/phpunit-snapshot-assertions": "^1.4 || ^2.2 || ^3 || ^4",
  7881. "vimeo/psalm": "^3.12"
  7882. },
  7883. "type": "library",
  7884. "extra": {
  7885. "branch-alias": {
  7886. "dev-master": "2.8-dev"
  7887. },
  7888. "laravel": {
  7889. "providers": [
  7890. "Barryvdh\\LaravelIdeHelper\\IdeHelperServiceProvider"
  7891. ]
  7892. }
  7893. },
  7894. "autoload": {
  7895. "psr-4": {
  7896. "Barryvdh\\LaravelIdeHelper\\": "src"
  7897. }
  7898. },
  7899. "notification-url": "https://packagist.org/downloads/",
  7900. "license": [
  7901. "MIT"
  7902. ],
  7903. "authors": [
  7904. {
  7905. "name": "Barry vd. Heuvel",
  7906. "email": "barryvdh@gmail.com"
  7907. }
  7908. ],
  7909. "description": "Laravel IDE Helper, generates correct PHPDocs for all Facade classes, to improve auto-completion.",
  7910. "keywords": [
  7911. "autocomplete",
  7912. "codeintel",
  7913. "helper",
  7914. "ide",
  7915. "laravel",
  7916. "netbeans",
  7917. "phpdoc",
  7918. "phpstorm",
  7919. "sublime"
  7920. ],
  7921. "support": {
  7922. "issues": "https://github.com/barryvdh/laravel-ide-helper/issues",
  7923. "source": "https://github.com/barryvdh/laravel-ide-helper/tree/v2.8.2"
  7924. },
  7925. "funding": [
  7926. {
  7927. "url": "https://github.com/barryvdh",
  7928. "type": "github"
  7929. }
  7930. ],
  7931. "time": "2020-12-06T08:55:05+00:00"
  7932. },
  7933. {
  7934. "name": "barryvdh/reflection-docblock",
  7935. "version": "v2.0.6",
  7936. "source": {
  7937. "type": "git",
  7938. "url": "https://github.com/barryvdh/ReflectionDocBlock.git",
  7939. "reference": "6b69015d83d3daf9004a71a89f26e27d27ef6a16"
  7940. },
  7941. "dist": {
  7942. "type": "zip",
  7943. "url": "https://api.github.com/repos/barryvdh/ReflectionDocBlock/zipball/6b69015d83d3daf9004a71a89f26e27d27ef6a16",
  7944. "reference": "6b69015d83d3daf9004a71a89f26e27d27ef6a16",
  7945. "shasum": ""
  7946. },
  7947. "require": {
  7948. "php": ">=5.3.3"
  7949. },
  7950. "require-dev": {
  7951. "phpunit/phpunit": "~4.0,<4.5"
  7952. },
  7953. "suggest": {
  7954. "dflydev/markdown": "~1.0",
  7955. "erusev/parsedown": "~1.0"
  7956. },
  7957. "type": "library",
  7958. "extra": {
  7959. "branch-alias": {
  7960. "dev-master": "2.0.x-dev"
  7961. }
  7962. },
  7963. "autoload": {
  7964. "psr-0": {
  7965. "Barryvdh": [
  7966. "src/"
  7967. ]
  7968. }
  7969. },
  7970. "notification-url": "https://packagist.org/downloads/",
  7971. "license": [
  7972. "MIT"
  7973. ],
  7974. "authors": [
  7975. {
  7976. "name": "Mike van Riel",
  7977. "email": "mike.vanriel@naenius.com"
  7978. }
  7979. ],
  7980. "support": {
  7981. "source": "https://github.com/barryvdh/ReflectionDocBlock/tree/v2.0.6"
  7982. },
  7983. "time": "2018-12-13T10:34:14+00:00"
  7984. },
  7985. {
  7986. "name": "caouecs/laravel-lang",
  7987. "version": "6.1.4",
  7988. "source": {
  7989. "type": "git",
  7990. "url": "https://github.com/caouecs/lang.git",
  7991. "reference": "18a7845e813e737a56a7f164301d5014b536950c"
  7992. },
  7993. "dist": {
  7994. "type": "zip",
  7995. "url": "https://api.github.com/repos/caouecs/lang/zipball/18a7845e813e737a56a7f164301d5014b536950c",
  7996. "reference": "18a7845e813e737a56a7f164301d5014b536950c",
  7997. "shasum": ""
  7998. },
  7999. "require": {
  8000. "ext-json": "*"
  8001. },
  8002. "suggest": {
  8003. "andrey-helldar/laravel-lang-publisher": "Easy installation and update of translation files for your project",
  8004. "arcanedev/laravel-lang": "Translations manager and checker for Laravel 5",
  8005. "overtrue/laravel-lang": "Command to add languages in your project"
  8006. },
  8007. "type": "library",
  8008. "notification-url": "https://packagist.org/downloads/",
  8009. "license": [
  8010. "MIT"
  8011. ],
  8012. "authors": [
  8013. {
  8014. "name": "caouecs",
  8015. "email": "caouecs@caouecs.net"
  8016. }
  8017. ],
  8018. "description": "Languages for Laravel",
  8019. "keywords": [
  8020. "lang",
  8021. "languages",
  8022. "laravel",
  8023. "lpm"
  8024. ],
  8025. "support": {
  8026. "source": "https://github.com/caouecs/lang/tree/6.1.4"
  8027. },
  8028. "abandoned": "https://github.com/Laravel-Lang/lang",
  8029. "time": "2020-07-13T14:35:32+00:00"
  8030. },
  8031. {
  8032. "name": "composer/composer",
  8033. "version": "2.0.8",
  8034. "source": {
  8035. "type": "git",
  8036. "url": "https://github.com/composer/composer.git",
  8037. "reference": "62139b2806178adb979d76bd3437534a1a9fd490"
  8038. },
  8039. "dist": {
  8040. "type": "zip",
  8041. "url": "https://api.github.com/repos/composer/composer/zipball/62139b2806178adb979d76bd3437534a1a9fd490",
  8042. "reference": "62139b2806178adb979d76bd3437534a1a9fd490",
  8043. "shasum": ""
  8044. },
  8045. "require": {
  8046. "composer/ca-bundle": "^1.0",
  8047. "composer/semver": "^3.0",
  8048. "composer/spdx-licenses": "^1.2",
  8049. "composer/xdebug-handler": "^1.1",
  8050. "justinrainbow/json-schema": "^5.2.10",
  8051. "php": "^5.3.2 || ^7.0 || ^8.0",
  8052. "psr/log": "^1.0",
  8053. "react/promise": "^1.2 || ^2.7",
  8054. "seld/jsonlint": "^1.4",
  8055. "seld/phar-utils": "^1.0",
  8056. "symfony/console": "^2.8.52 || ^3.4.35 || ^4.4 || ^5.0",
  8057. "symfony/filesystem": "^2.8.52 || ^3.4.35 || ^4.4 || ^5.0",
  8058. "symfony/finder": "^2.8.52 || ^3.4.35 || ^4.4 || ^5.0",
  8059. "symfony/process": "^2.8.52 || ^3.4.35 || ^4.4 || ^5.0"
  8060. },
  8061. "require-dev": {
  8062. "phpspec/prophecy": "^1.10",
  8063. "symfony/phpunit-bridge": "^4.2 || ^5.0"
  8064. },
  8065. "suggest": {
  8066. "ext-openssl": "Enabling the openssl extension allows you to access https URLs for repositories and packages",
  8067. "ext-zip": "Enabling the zip extension allows you to unzip archives",
  8068. "ext-zlib": "Allow gzip compression of HTTP requests"
  8069. },
  8070. "bin": [
  8071. "bin/composer"
  8072. ],
  8073. "type": "library",
  8074. "extra": {
  8075. "branch-alias": {
  8076. "dev-master": "2.0-dev"
  8077. }
  8078. },
  8079. "autoload": {
  8080. "psr-4": {
  8081. "Composer\\": "src/Composer"
  8082. }
  8083. },
  8084. "notification-url": "https://packagist.org/downloads/",
  8085. "license": [
  8086. "MIT"
  8087. ],
  8088. "authors": [
  8089. {
  8090. "name": "Nils Adermann",
  8091. "email": "naderman@naderman.de",
  8092. "homepage": "https://www.naderman.de"
  8093. },
  8094. {
  8095. "name": "Jordi Boggiano",
  8096. "email": "j.boggiano@seld.be",
  8097. "homepage": "https://seld.be"
  8098. }
  8099. ],
  8100. "description": "Composer helps you declare, manage and install dependencies of PHP projects. It ensures you have the right stack everywhere.",
  8101. "homepage": "https://getcomposer.org/",
  8102. "keywords": [
  8103. "autoload",
  8104. "dependency",
  8105. "package"
  8106. ],
  8107. "support": {
  8108. "irc": "irc://irc.freenode.org/composer",
  8109. "issues": "https://github.com/composer/composer/issues",
  8110. "source": "https://github.com/composer/composer/tree/2.0.8"
  8111. },
  8112. "funding": [
  8113. {
  8114. "url": "https://packagist.com",
  8115. "type": "custom"
  8116. },
  8117. {
  8118. "url": "https://github.com/composer",
  8119. "type": "github"
  8120. },
  8121. {
  8122. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  8123. "type": "tidelift"
  8124. }
  8125. ],
  8126. "time": "2020-12-03T16:20:39+00:00"
  8127. },
  8128. {
  8129. "name": "composer/semver",
  8130. "version": "3.2.4",
  8131. "source": {
  8132. "type": "git",
  8133. "url": "https://github.com/composer/semver.git",
  8134. "reference": "a02fdf930a3c1c3ed3a49b5f63859c0c20e10464"
  8135. },
  8136. "dist": {
  8137. "type": "zip",
  8138. "url": "https://api.github.com/repos/composer/semver/zipball/a02fdf930a3c1c3ed3a49b5f63859c0c20e10464",
  8139. "reference": "a02fdf930a3c1c3ed3a49b5f63859c0c20e10464",
  8140. "shasum": ""
  8141. },
  8142. "require": {
  8143. "php": "^5.3.2 || ^7.0 || ^8.0"
  8144. },
  8145. "require-dev": {
  8146. "phpstan/phpstan": "^0.12.54",
  8147. "symfony/phpunit-bridge": "^4.2 || ^5"
  8148. },
  8149. "type": "library",
  8150. "extra": {
  8151. "branch-alias": {
  8152. "dev-main": "3.x-dev"
  8153. }
  8154. },
  8155. "autoload": {
  8156. "psr-4": {
  8157. "Composer\\Semver\\": "src"
  8158. }
  8159. },
  8160. "notification-url": "https://packagist.org/downloads/",
  8161. "license": [
  8162. "MIT"
  8163. ],
  8164. "authors": [
  8165. {
  8166. "name": "Nils Adermann",
  8167. "email": "naderman@naderman.de",
  8168. "homepage": "http://www.naderman.de"
  8169. },
  8170. {
  8171. "name": "Jordi Boggiano",
  8172. "email": "j.boggiano@seld.be",
  8173. "homepage": "http://seld.be"
  8174. },
  8175. {
  8176. "name": "Rob Bast",
  8177. "email": "rob.bast@gmail.com",
  8178. "homepage": "http://robbast.nl"
  8179. }
  8180. ],
  8181. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  8182. "keywords": [
  8183. "semantic",
  8184. "semver",
  8185. "validation",
  8186. "versioning"
  8187. ],
  8188. "support": {
  8189. "irc": "irc://irc.freenode.org/composer",
  8190. "issues": "https://github.com/composer/semver/issues",
  8191. "source": "https://github.com/composer/semver/tree/3.2.4"
  8192. },
  8193. "funding": [
  8194. {
  8195. "url": "https://packagist.com",
  8196. "type": "custom"
  8197. },
  8198. {
  8199. "url": "https://github.com/composer",
  8200. "type": "github"
  8201. },
  8202. {
  8203. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  8204. "type": "tidelift"
  8205. }
  8206. ],
  8207. "time": "2020-11-13T08:59:24+00:00"
  8208. },
  8209. {
  8210. "name": "composer/spdx-licenses",
  8211. "version": "1.5.5",
  8212. "source": {
  8213. "type": "git",
  8214. "url": "https://github.com/composer/spdx-licenses.git",
  8215. "reference": "de30328a7af8680efdc03e396aad24befd513200"
  8216. },
  8217. "dist": {
  8218. "type": "zip",
  8219. "url": "https://api.github.com/repos/composer/spdx-licenses/zipball/de30328a7af8680efdc03e396aad24befd513200",
  8220. "reference": "de30328a7af8680efdc03e396aad24befd513200",
  8221. "shasum": ""
  8222. },
  8223. "require": {
  8224. "php": "^5.3.2 || ^7.0 || ^8.0"
  8225. },
  8226. "require-dev": {
  8227. "phpunit/phpunit": "^4.8.35 || ^5.7 || 6.5 - 7"
  8228. },
  8229. "type": "library",
  8230. "extra": {
  8231. "branch-alias": {
  8232. "dev-main": "1.x-dev"
  8233. }
  8234. },
  8235. "autoload": {
  8236. "psr-4": {
  8237. "Composer\\Spdx\\": "src"
  8238. }
  8239. },
  8240. "notification-url": "https://packagist.org/downloads/",
  8241. "license": [
  8242. "MIT"
  8243. ],
  8244. "authors": [
  8245. {
  8246. "name": "Nils Adermann",
  8247. "email": "naderman@naderman.de",
  8248. "homepage": "http://www.naderman.de"
  8249. },
  8250. {
  8251. "name": "Jordi Boggiano",
  8252. "email": "j.boggiano@seld.be",
  8253. "homepage": "http://seld.be"
  8254. },
  8255. {
  8256. "name": "Rob Bast",
  8257. "email": "rob.bast@gmail.com",
  8258. "homepage": "http://robbast.nl"
  8259. }
  8260. ],
  8261. "description": "SPDX licenses list and validation library.",
  8262. "keywords": [
  8263. "license",
  8264. "spdx",
  8265. "validator"
  8266. ],
  8267. "support": {
  8268. "irc": "irc://irc.freenode.org/composer",
  8269. "issues": "https://github.com/composer/spdx-licenses/issues",
  8270. "source": "https://github.com/composer/spdx-licenses/tree/1.5.5"
  8271. },
  8272. "funding": [
  8273. {
  8274. "url": "https://packagist.com",
  8275. "type": "custom"
  8276. },
  8277. {
  8278. "url": "https://github.com/composer",
  8279. "type": "github"
  8280. },
  8281. {
  8282. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  8283. "type": "tidelift"
  8284. }
  8285. ],
  8286. "time": "2020-12-03T16:04:16+00:00"
  8287. },
  8288. {
  8289. "name": "composer/xdebug-handler",
  8290. "version": "1.4.5",
  8291. "source": {
  8292. "type": "git",
  8293. "url": "https://github.com/composer/xdebug-handler.git",
  8294. "reference": "f28d44c286812c714741478d968104c5e604a1d4"
  8295. },
  8296. "dist": {
  8297. "type": "zip",
  8298. "url": "https://api.github.com/repos/composer/xdebug-handler/zipball/f28d44c286812c714741478d968104c5e604a1d4",
  8299. "reference": "f28d44c286812c714741478d968104c5e604a1d4",
  8300. "shasum": ""
  8301. },
  8302. "require": {
  8303. "php": "^5.3.2 || ^7.0 || ^8.0",
  8304. "psr/log": "^1.0"
  8305. },
  8306. "require-dev": {
  8307. "phpunit/phpunit": "^4.8.35 || ^5.7 || 6.5 - 8"
  8308. },
  8309. "type": "library",
  8310. "autoload": {
  8311. "psr-4": {
  8312. "Composer\\XdebugHandler\\": "src"
  8313. }
  8314. },
  8315. "notification-url": "https://packagist.org/downloads/",
  8316. "license": [
  8317. "MIT"
  8318. ],
  8319. "authors": [
  8320. {
  8321. "name": "John Stevenson",
  8322. "email": "john-stevenson@blueyonder.co.uk"
  8323. }
  8324. ],
  8325. "description": "Restarts a process without Xdebug.",
  8326. "keywords": [
  8327. "Xdebug",
  8328. "performance"
  8329. ],
  8330. "support": {
  8331. "irc": "irc://irc.freenode.org/composer",
  8332. "issues": "https://github.com/composer/xdebug-handler/issues",
  8333. "source": "https://github.com/composer/xdebug-handler/tree/1.4.5"
  8334. },
  8335. "funding": [
  8336. {
  8337. "url": "https://packagist.com",
  8338. "type": "custom"
  8339. },
  8340. {
  8341. "url": "https://github.com/composer",
  8342. "type": "github"
  8343. },
  8344. {
  8345. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  8346. "type": "tidelift"
  8347. }
  8348. ],
  8349. "time": "2020-11-13T08:04:11+00:00"
  8350. },
  8351. {
  8352. "name": "doctrine/instantiator",
  8353. "version": "1.4.0",
  8354. "source": {
  8355. "type": "git",
  8356. "url": "https://github.com/doctrine/instantiator.git",
  8357. "reference": "d56bf6102915de5702778fe20f2de3b2fe570b5b"
  8358. },
  8359. "dist": {
  8360. "type": "zip",
  8361. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/d56bf6102915de5702778fe20f2de3b2fe570b5b",
  8362. "reference": "d56bf6102915de5702778fe20f2de3b2fe570b5b",
  8363. "shasum": ""
  8364. },
  8365. "require": {
  8366. "php": "^7.1 || ^8.0"
  8367. },
  8368. "require-dev": {
  8369. "doctrine/coding-standard": "^8.0",
  8370. "ext-pdo": "*",
  8371. "ext-phar": "*",
  8372. "phpbench/phpbench": "^0.13 || 1.0.0-alpha2",
  8373. "phpstan/phpstan": "^0.12",
  8374. "phpstan/phpstan-phpunit": "^0.12",
  8375. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0"
  8376. },
  8377. "type": "library",
  8378. "autoload": {
  8379. "psr-4": {
  8380. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  8381. }
  8382. },
  8383. "notification-url": "https://packagist.org/downloads/",
  8384. "license": [
  8385. "MIT"
  8386. ],
  8387. "authors": [
  8388. {
  8389. "name": "Marco Pivetta",
  8390. "email": "ocramius@gmail.com",
  8391. "homepage": "https://ocramius.github.io/"
  8392. }
  8393. ],
  8394. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  8395. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  8396. "keywords": [
  8397. "constructor",
  8398. "instantiate"
  8399. ],
  8400. "support": {
  8401. "issues": "https://github.com/doctrine/instantiator/issues",
  8402. "source": "https://github.com/doctrine/instantiator/tree/1.4.0"
  8403. },
  8404. "funding": [
  8405. {
  8406. "url": "https://www.doctrine-project.org/sponsorship.html",
  8407. "type": "custom"
  8408. },
  8409. {
  8410. "url": "https://www.patreon.com/phpdoctrine",
  8411. "type": "patreon"
  8412. },
  8413. {
  8414. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
  8415. "type": "tidelift"
  8416. }
  8417. ],
  8418. "time": "2020-11-10T18:47:58+00:00"
  8419. },
  8420. {
  8421. "name": "facade/flare-client-php",
  8422. "version": "1.3.7",
  8423. "source": {
  8424. "type": "git",
  8425. "url": "https://github.com/facade/flare-client-php.git",
  8426. "reference": "fd688d3c06658f2b3b5f7bb19f051ee4ddf02492"
  8427. },
  8428. "dist": {
  8429. "type": "zip",
  8430. "url": "https://api.github.com/repos/facade/flare-client-php/zipball/fd688d3c06658f2b3b5f7bb19f051ee4ddf02492",
  8431. "reference": "fd688d3c06658f2b3b5f7bb19f051ee4ddf02492",
  8432. "shasum": ""
  8433. },
  8434. "require": {
  8435. "facade/ignition-contracts": "~1.0",
  8436. "illuminate/pipeline": "^5.5|^6.0|^7.0|^8.0",
  8437. "php": "^7.1|^8.0",
  8438. "symfony/http-foundation": "^3.3|^4.1|^5.0",
  8439. "symfony/mime": "^3.4|^4.0|^5.1",
  8440. "symfony/var-dumper": "^3.4|^4.0|^5.0"
  8441. },
  8442. "require-dev": {
  8443. "friendsofphp/php-cs-fixer": "^2.14",
  8444. "phpunit/phpunit": "^7.5.16",
  8445. "spatie/phpunit-snapshot-assertions": "^2.0"
  8446. },
  8447. "type": "library",
  8448. "extra": {
  8449. "branch-alias": {
  8450. "dev-master": "1.0-dev"
  8451. }
  8452. },
  8453. "autoload": {
  8454. "psr-4": {
  8455. "Facade\\FlareClient\\": "src"
  8456. },
  8457. "files": [
  8458. "src/helpers.php"
  8459. ]
  8460. },
  8461. "notification-url": "https://packagist.org/downloads/",
  8462. "license": [
  8463. "MIT"
  8464. ],
  8465. "description": "Send PHP errors to Flare",
  8466. "homepage": "https://github.com/facade/flare-client-php",
  8467. "keywords": [
  8468. "exception",
  8469. "facade",
  8470. "flare",
  8471. "reporting"
  8472. ],
  8473. "support": {
  8474. "issues": "https://github.com/facade/flare-client-php/issues",
  8475. "source": "https://github.com/facade/flare-client-php/tree/1.3.7"
  8476. },
  8477. "funding": [
  8478. {
  8479. "url": "https://github.com/spatie",
  8480. "type": "github"
  8481. }
  8482. ],
  8483. "time": "2020-10-21T16:02:39+00:00"
  8484. },
  8485. {
  8486. "name": "facade/ignition",
  8487. "version": "2.5.8",
  8488. "source": {
  8489. "type": "git",
  8490. "url": "https://github.com/facade/ignition.git",
  8491. "reference": "8e907d81244649c5ea746e2ec30c32c5f59df472"
  8492. },
  8493. "dist": {
  8494. "type": "zip",
  8495. "url": "https://api.github.com/repos/facade/ignition/zipball/8e907d81244649c5ea746e2ec30c32c5f59df472",
  8496. "reference": "8e907d81244649c5ea746e2ec30c32c5f59df472",
  8497. "shasum": ""
  8498. },
  8499. "require": {
  8500. "ext-json": "*",
  8501. "ext-mbstring": "*",
  8502. "facade/flare-client-php": "^1.3.7",
  8503. "facade/ignition-contracts": "^1.0.2",
  8504. "filp/whoops": "^2.4",
  8505. "illuminate/support": "^7.0|^8.0",
  8506. "monolog/monolog": "^2.0",
  8507. "php": "^7.2.5|^8.0",
  8508. "symfony/console": "^5.0",
  8509. "symfony/var-dumper": "^5.0"
  8510. },
  8511. "require-dev": {
  8512. "friendsofphp/php-cs-fixer": "^2.14",
  8513. "mockery/mockery": "^1.3",
  8514. "orchestra/testbench": "^5.0|^6.0",
  8515. "psalm/plugin-laravel": "^1.2"
  8516. },
  8517. "suggest": {
  8518. "laravel/telescope": "^3.1"
  8519. },
  8520. "type": "library",
  8521. "extra": {
  8522. "branch-alias": {
  8523. "dev-master": "2.x-dev"
  8524. },
  8525. "laravel": {
  8526. "providers": [
  8527. "Facade\\Ignition\\IgnitionServiceProvider"
  8528. ],
  8529. "aliases": {
  8530. "Flare": "Facade\\Ignition\\Facades\\Flare"
  8531. }
  8532. }
  8533. },
  8534. "autoload": {
  8535. "psr-4": {
  8536. "Facade\\Ignition\\": "src"
  8537. },
  8538. "files": [
  8539. "src/helpers.php"
  8540. ]
  8541. },
  8542. "notification-url": "https://packagist.org/downloads/",
  8543. "license": [
  8544. "MIT"
  8545. ],
  8546. "description": "A beautiful error page for Laravel applications.",
  8547. "homepage": "https://github.com/facade/ignition",
  8548. "keywords": [
  8549. "error",
  8550. "flare",
  8551. "laravel",
  8552. "page"
  8553. ],
  8554. "support": {
  8555. "docs": "https://flareapp.io/docs/ignition-for-laravel/introduction",
  8556. "forum": "https://twitter.com/flareappio",
  8557. "issues": "https://github.com/facade/ignition/issues",
  8558. "source": "https://github.com/facade/ignition"
  8559. },
  8560. "time": "2020-12-29T09:12:55+00:00"
  8561. },
  8562. {
  8563. "name": "facade/ignition-contracts",
  8564. "version": "1.0.2",
  8565. "source": {
  8566. "type": "git",
  8567. "url": "https://github.com/facade/ignition-contracts.git",
  8568. "reference": "3c921a1cdba35b68a7f0ccffc6dffc1995b18267"
  8569. },
  8570. "dist": {
  8571. "type": "zip",
  8572. "url": "https://api.github.com/repos/facade/ignition-contracts/zipball/3c921a1cdba35b68a7f0ccffc6dffc1995b18267",
  8573. "reference": "3c921a1cdba35b68a7f0ccffc6dffc1995b18267",
  8574. "shasum": ""
  8575. },
  8576. "require": {
  8577. "php": "^7.3|^8.0"
  8578. },
  8579. "require-dev": {
  8580. "friendsofphp/php-cs-fixer": "^v2.15.8",
  8581. "phpunit/phpunit": "^9.3.11",
  8582. "vimeo/psalm": "^3.17.1"
  8583. },
  8584. "type": "library",
  8585. "autoload": {
  8586. "psr-4": {
  8587. "Facade\\IgnitionContracts\\": "src"
  8588. }
  8589. },
  8590. "notification-url": "https://packagist.org/downloads/",
  8591. "license": [
  8592. "MIT"
  8593. ],
  8594. "authors": [
  8595. {
  8596. "name": "Freek Van der Herten",
  8597. "email": "freek@spatie.be",
  8598. "homepage": "https://flareapp.io",
  8599. "role": "Developer"
  8600. }
  8601. ],
  8602. "description": "Solution contracts for Ignition",
  8603. "homepage": "https://github.com/facade/ignition-contracts",
  8604. "keywords": [
  8605. "contracts",
  8606. "flare",
  8607. "ignition"
  8608. ],
  8609. "support": {
  8610. "issues": "https://github.com/facade/ignition-contracts/issues",
  8611. "source": "https://github.com/facade/ignition-contracts/tree/1.0.2"
  8612. },
  8613. "time": "2020-10-16T08:27:54+00:00"
  8614. },
  8615. {
  8616. "name": "fakerphp/faker",
  8617. "version": "v1.13.0",
  8618. "source": {
  8619. "type": "git",
  8620. "url": "https://github.com/FakerPHP/Faker.git",
  8621. "reference": "ab3f5364d01f2c2c16113442fb987d26e4004913"
  8622. },
  8623. "dist": {
  8624. "type": "zip",
  8625. "url": "https://api.github.com/repos/FakerPHP/Faker/zipball/ab3f5364d01f2c2c16113442fb987d26e4004913",
  8626. "reference": "ab3f5364d01f2c2c16113442fb987d26e4004913",
  8627. "shasum": ""
  8628. },
  8629. "require": {
  8630. "php": "^7.1 || ^8.0"
  8631. },
  8632. "conflict": {
  8633. "fzaninotto/faker": "*"
  8634. },
  8635. "require-dev": {
  8636. "bamarni/composer-bin-plugin": "^1.4.1",
  8637. "ext-intl": "*",
  8638. "phpunit/phpunit": "^7.5.20 || ^8.5.8 || ^9.4.2"
  8639. },
  8640. "type": "library",
  8641. "autoload": {
  8642. "psr-4": {
  8643. "Faker\\": "src/Faker/"
  8644. }
  8645. },
  8646. "notification-url": "https://packagist.org/downloads/",
  8647. "license": [
  8648. "MIT"
  8649. ],
  8650. "authors": [
  8651. {
  8652. "name": "François Zaninotto"
  8653. }
  8654. ],
  8655. "description": "Faker is a PHP library that generates fake data for you.",
  8656. "keywords": [
  8657. "data",
  8658. "faker",
  8659. "fixtures"
  8660. ],
  8661. "support": {
  8662. "issues": "https://github.com/FakerPHP/Faker/issues",
  8663. "source": "https://github.com/FakerPHP/Faker/tree/v1.13.0"
  8664. },
  8665. "time": "2020-12-18T16:50:48+00:00"
  8666. },
  8667. {
  8668. "name": "filp/whoops",
  8669. "version": "2.9.1",
  8670. "source": {
  8671. "type": "git",
  8672. "url": "https://github.com/filp/whoops.git",
  8673. "reference": "307fb34a5ab697461ec4c9db865b20ff2fd40771"
  8674. },
  8675. "dist": {
  8676. "type": "zip",
  8677. "url": "https://api.github.com/repos/filp/whoops/zipball/307fb34a5ab697461ec4c9db865b20ff2fd40771",
  8678. "reference": "307fb34a5ab697461ec4c9db865b20ff2fd40771",
  8679. "shasum": ""
  8680. },
  8681. "require": {
  8682. "php": "^5.5.9 || ^7.0 || ^8.0",
  8683. "psr/log": "^1.0.1"
  8684. },
  8685. "require-dev": {
  8686. "mockery/mockery": "^0.9 || ^1.0",
  8687. "phpunit/phpunit": "^4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.3",
  8688. "symfony/var-dumper": "^2.6 || ^3.0 || ^4.0 || ^5.0"
  8689. },
  8690. "suggest": {
  8691. "symfony/var-dumper": "Pretty print complex values better with var-dumper available",
  8692. "whoops/soap": "Formats errors as SOAP responses"
  8693. },
  8694. "type": "library",
  8695. "extra": {
  8696. "branch-alias": {
  8697. "dev-master": "2.7-dev"
  8698. }
  8699. },
  8700. "autoload": {
  8701. "psr-4": {
  8702. "Whoops\\": "src/Whoops/"
  8703. }
  8704. },
  8705. "notification-url": "https://packagist.org/downloads/",
  8706. "license": [
  8707. "MIT"
  8708. ],
  8709. "authors": [
  8710. {
  8711. "name": "Filipe Dobreira",
  8712. "homepage": "https://github.com/filp",
  8713. "role": "Developer"
  8714. }
  8715. ],
  8716. "description": "php error handling for cool kids",
  8717. "homepage": "https://filp.github.io/whoops/",
  8718. "keywords": [
  8719. "error",
  8720. "exception",
  8721. "handling",
  8722. "library",
  8723. "throwable",
  8724. "whoops"
  8725. ],
  8726. "support": {
  8727. "issues": "https://github.com/filp/whoops/issues",
  8728. "source": "https://github.com/filp/whoops/tree/2.9.1"
  8729. },
  8730. "time": "2020-11-01T12:00:00+00:00"
  8731. },
  8732. {
  8733. "name": "hamcrest/hamcrest-php",
  8734. "version": "v2.0.1",
  8735. "source": {
  8736. "type": "git",
  8737. "url": "https://github.com/hamcrest/hamcrest-php.git",
  8738. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3"
  8739. },
  8740. "dist": {
  8741. "type": "zip",
  8742. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  8743. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  8744. "shasum": ""
  8745. },
  8746. "require": {
  8747. "php": "^5.3|^7.0|^8.0"
  8748. },
  8749. "replace": {
  8750. "cordoval/hamcrest-php": "*",
  8751. "davedevelopment/hamcrest-php": "*",
  8752. "kodova/hamcrest-php": "*"
  8753. },
  8754. "require-dev": {
  8755. "phpunit/php-file-iterator": "^1.4 || ^2.0",
  8756. "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0"
  8757. },
  8758. "type": "library",
  8759. "extra": {
  8760. "branch-alias": {
  8761. "dev-master": "2.1-dev"
  8762. }
  8763. },
  8764. "autoload": {
  8765. "classmap": [
  8766. "hamcrest"
  8767. ]
  8768. },
  8769. "notification-url": "https://packagist.org/downloads/",
  8770. "license": [
  8771. "BSD-3-Clause"
  8772. ],
  8773. "description": "This is the PHP port of Hamcrest Matchers",
  8774. "keywords": [
  8775. "test"
  8776. ],
  8777. "support": {
  8778. "issues": "https://github.com/hamcrest/hamcrest-php/issues",
  8779. "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.0.1"
  8780. },
  8781. "time": "2020-07-09T08:09:16+00:00"
  8782. },
  8783. {
  8784. "name": "justinrainbow/json-schema",
  8785. "version": "5.2.10",
  8786. "source": {
  8787. "type": "git",
  8788. "url": "https://github.com/justinrainbow/json-schema.git",
  8789. "reference": "2ba9c8c862ecd5510ed16c6340aa9f6eadb4f31b"
  8790. },
  8791. "dist": {
  8792. "type": "zip",
  8793. "url": "https://api.github.com/repos/justinrainbow/json-schema/zipball/2ba9c8c862ecd5510ed16c6340aa9f6eadb4f31b",
  8794. "reference": "2ba9c8c862ecd5510ed16c6340aa9f6eadb4f31b",
  8795. "shasum": ""
  8796. },
  8797. "require": {
  8798. "php": ">=5.3.3"
  8799. },
  8800. "require-dev": {
  8801. "friendsofphp/php-cs-fixer": "~2.2.20||~2.15.1",
  8802. "json-schema/json-schema-test-suite": "1.2.0",
  8803. "phpunit/phpunit": "^4.8.35"
  8804. },
  8805. "bin": [
  8806. "bin/validate-json"
  8807. ],
  8808. "type": "library",
  8809. "extra": {
  8810. "branch-alias": {
  8811. "dev-master": "5.0.x-dev"
  8812. }
  8813. },
  8814. "autoload": {
  8815. "psr-4": {
  8816. "JsonSchema\\": "src/JsonSchema/"
  8817. }
  8818. },
  8819. "notification-url": "https://packagist.org/downloads/",
  8820. "license": [
  8821. "MIT"
  8822. ],
  8823. "authors": [
  8824. {
  8825. "name": "Bruno Prieto Reis",
  8826. "email": "bruno.p.reis@gmail.com"
  8827. },
  8828. {
  8829. "name": "Justin Rainbow",
  8830. "email": "justin.rainbow@gmail.com"
  8831. },
  8832. {
  8833. "name": "Igor Wiedler",
  8834. "email": "igor@wiedler.ch"
  8835. },
  8836. {
  8837. "name": "Robert Schönthal",
  8838. "email": "seroscho@googlemail.com"
  8839. }
  8840. ],
  8841. "description": "A library to validate a json schema.",
  8842. "homepage": "https://github.com/justinrainbow/json-schema",
  8843. "keywords": [
  8844. "json",
  8845. "schema"
  8846. ],
  8847. "support": {
  8848. "issues": "https://github.com/justinrainbow/json-schema/issues",
  8849. "source": "https://github.com/justinrainbow/json-schema/tree/5.2.10"
  8850. },
  8851. "time": "2020-05-27T16:41:55+00:00"
  8852. },
  8853. {
  8854. "name": "laravel/telescope",
  8855. "version": "v3.5.1",
  8856. "source": {
  8857. "type": "git",
  8858. "url": "https://github.com/laravel/telescope.git",
  8859. "reference": "a8d2e1106ba655006fde47a0b7ed53851c6398f5"
  8860. },
  8861. "dist": {
  8862. "type": "zip",
  8863. "url": "https://api.github.com/repos/laravel/telescope/zipball/a8d2e1106ba655006fde47a0b7ed53851c6398f5",
  8864. "reference": "a8d2e1106ba655006fde47a0b7ed53851c6398f5",
  8865. "shasum": ""
  8866. },
  8867. "require": {
  8868. "ext-json": "*",
  8869. "laravel/framework": "^6.0|^7.0",
  8870. "moontoast/math": "^1.1",
  8871. "php": "^7.2",
  8872. "symfony/var-dumper": "^4.4|^5.0"
  8873. },
  8874. "require-dev": {
  8875. "ext-gd": "*",
  8876. "orchestra/testbench": "^4.0|^5.0"
  8877. },
  8878. "type": "library",
  8879. "extra": {
  8880. "branch-alias": {
  8881. "dev-master": "3.x-dev"
  8882. },
  8883. "laravel": {
  8884. "providers": [
  8885. "Laravel\\Telescope\\TelescopeServiceProvider"
  8886. ]
  8887. }
  8888. },
  8889. "autoload": {
  8890. "psr-4": {
  8891. "Laravel\\Telescope\\": "src/"
  8892. }
  8893. },
  8894. "notification-url": "https://packagist.org/downloads/",
  8895. "license": [
  8896. "MIT"
  8897. ],
  8898. "authors": [
  8899. {
  8900. "name": "Taylor Otwell",
  8901. "email": "taylor@laravel.com"
  8902. },
  8903. {
  8904. "name": "Mohamed Said",
  8905. "email": "mohamed@laravel.com"
  8906. }
  8907. ],
  8908. "description": "An elegant debug assistant for the Laravel framework.",
  8909. "keywords": [
  8910. "debugging",
  8911. "laravel",
  8912. "monitoring"
  8913. ],
  8914. "support": {
  8915. "issues": "https://github.com/laravel/telescope/issues",
  8916. "source": "https://github.com/laravel/telescope/tree/v3.5.1"
  8917. },
  8918. "time": "2020-07-28T19:12:33+00:00"
  8919. },
  8920. {
  8921. "name": "maximebf/debugbar",
  8922. "version": "v1.16.4",
  8923. "source": {
  8924. "type": "git",
  8925. "url": "https://github.com/maximebf/php-debugbar.git",
  8926. "reference": "c86c717e4bf3c6d98422da5c38bfa7b0f494b04c"
  8927. },
  8928. "dist": {
  8929. "type": "zip",
  8930. "url": "https://api.github.com/repos/maximebf/php-debugbar/zipball/c86c717e4bf3c6d98422da5c38bfa7b0f494b04c",
  8931. "reference": "c86c717e4bf3c6d98422da5c38bfa7b0f494b04c",
  8932. "shasum": ""
  8933. },
  8934. "require": {
  8935. "php": "^7.1|^8",
  8936. "psr/log": "^1.0",
  8937. "symfony/var-dumper": "^2.6|^3|^4|^5"
  8938. },
  8939. "require-dev": {
  8940. "phpunit/phpunit": "^7.5.20 || ^9.4.2"
  8941. },
  8942. "suggest": {
  8943. "kriswallsmith/assetic": "The best way to manage assets",
  8944. "monolog/monolog": "Log using Monolog",
  8945. "predis/predis": "Redis storage"
  8946. },
  8947. "type": "library",
  8948. "extra": {
  8949. "branch-alias": {
  8950. "dev-master": "1.16-dev"
  8951. }
  8952. },
  8953. "autoload": {
  8954. "psr-4": {
  8955. "DebugBar\\": "src/DebugBar/"
  8956. }
  8957. },
  8958. "notification-url": "https://packagist.org/downloads/",
  8959. "license": [
  8960. "MIT"
  8961. ],
  8962. "authors": [
  8963. {
  8964. "name": "Maxime Bouroumeau-Fuseau",
  8965. "email": "maxime.bouroumeau@gmail.com",
  8966. "homepage": "http://maximebf.com"
  8967. },
  8968. {
  8969. "name": "Barry vd. Heuvel",
  8970. "email": "barryvdh@gmail.com"
  8971. }
  8972. ],
  8973. "description": "Debug bar in the browser for php application",
  8974. "homepage": "https://github.com/maximebf/php-debugbar",
  8975. "keywords": [
  8976. "debug",
  8977. "debugbar"
  8978. ],
  8979. "support": {
  8980. "issues": "https://github.com/maximebf/php-debugbar/issues",
  8981. "source": "https://github.com/maximebf/php-debugbar/tree/v1.16.4"
  8982. },
  8983. "time": "2020-12-07T10:48:48+00:00"
  8984. },
  8985. {
  8986. "name": "mockery/mockery",
  8987. "version": "1.4.2",
  8988. "source": {
  8989. "type": "git",
  8990. "url": "https://github.com/mockery/mockery.git",
  8991. "reference": "20cab678faed06fac225193be281ea0fddb43b93"
  8992. },
  8993. "dist": {
  8994. "type": "zip",
  8995. "url": "https://api.github.com/repos/mockery/mockery/zipball/20cab678faed06fac225193be281ea0fddb43b93",
  8996. "reference": "20cab678faed06fac225193be281ea0fddb43b93",
  8997. "shasum": ""
  8998. },
  8999. "require": {
  9000. "hamcrest/hamcrest-php": "^2.0.1",
  9001. "lib-pcre": ">=7.0",
  9002. "php": "^7.3 || ^8.0"
  9003. },
  9004. "conflict": {
  9005. "phpunit/phpunit": "<8.0"
  9006. },
  9007. "require-dev": {
  9008. "phpunit/phpunit": "^8.5 || ^9.3"
  9009. },
  9010. "type": "library",
  9011. "extra": {
  9012. "branch-alias": {
  9013. "dev-master": "1.4.x-dev"
  9014. }
  9015. },
  9016. "autoload": {
  9017. "psr-0": {
  9018. "Mockery": "library/"
  9019. }
  9020. },
  9021. "notification-url": "https://packagist.org/downloads/",
  9022. "license": [
  9023. "BSD-3-Clause"
  9024. ],
  9025. "authors": [
  9026. {
  9027. "name": "Pádraic Brady",
  9028. "email": "padraic.brady@gmail.com",
  9029. "homepage": "http://blog.astrumfutura.com"
  9030. },
  9031. {
  9032. "name": "Dave Marshall",
  9033. "email": "dave.marshall@atstsolutions.co.uk",
  9034. "homepage": "http://davedevelopment.co.uk"
  9035. }
  9036. ],
  9037. "description": "Mockery is a simple yet flexible PHP mock object framework",
  9038. "homepage": "https://github.com/mockery/mockery",
  9039. "keywords": [
  9040. "BDD",
  9041. "TDD",
  9042. "library",
  9043. "mock",
  9044. "mock objects",
  9045. "mockery",
  9046. "stub",
  9047. "test",
  9048. "test double",
  9049. "testing"
  9050. ],
  9051. "support": {
  9052. "issues": "https://github.com/mockery/mockery/issues",
  9053. "source": "https://github.com/mockery/mockery/tree/master"
  9054. },
  9055. "time": "2020-08-11T18:10:13+00:00"
  9056. },
  9057. {
  9058. "name": "moontoast/math",
  9059. "version": "1.2.1",
  9060. "source": {
  9061. "type": "git",
  9062. "url": "https://github.com/ramsey/moontoast-math.git",
  9063. "reference": "5f47d34c87767dbcc08b30377a9827df71de91fa"
  9064. },
  9065. "dist": {
  9066. "type": "zip",
  9067. "url": "https://api.github.com/repos/ramsey/moontoast-math/zipball/5f47d34c87767dbcc08b30377a9827df71de91fa",
  9068. "reference": "5f47d34c87767dbcc08b30377a9827df71de91fa",
  9069. "shasum": ""
  9070. },
  9071. "require": {
  9072. "php": ">=5.3.3",
  9073. "phpseclib/bcmath_compat": ">=1.0.3"
  9074. },
  9075. "require-dev": {
  9076. "jakub-onderka/php-parallel-lint": "^0.9.0",
  9077. "phpunit/phpunit": "^4.8 || ^5.5 || ^6.5 || ^7.0",
  9078. "satooshi/php-coveralls": "^0.6.1",
  9079. "squizlabs/php_codesniffer": "^2.3"
  9080. },
  9081. "type": "library",
  9082. "autoload": {
  9083. "psr-4": {
  9084. "Moontoast\\Math\\": "src/Moontoast/Math",
  9085. "Moontoast\\Math\\Exception\\": "src/Moontoast/Math/Exception"
  9086. }
  9087. },
  9088. "notification-url": "https://packagist.org/downloads/",
  9089. "license": [
  9090. "Apache-2.0"
  9091. ],
  9092. "authors": [
  9093. {
  9094. "name": "Ben Ramsey",
  9095. "email": "ben@benramsey.com",
  9096. "homepage": "https://benramsey.com"
  9097. }
  9098. ],
  9099. "description": "A mathematics library, providing functionality for large numbers",
  9100. "homepage": "https://github.com/ramsey/moontoast-math",
  9101. "keywords": [
  9102. "bcmath",
  9103. "math"
  9104. ],
  9105. "support": {
  9106. "issues": "https://github.com/ramsey/moontoast-math/issues",
  9107. "source": "https://github.com/ramsey/moontoast-math"
  9108. },
  9109. "abandoned": "brick/math",
  9110. "time": "2020-01-05T04:49:34+00:00"
  9111. },
  9112. {
  9113. "name": "myclabs/deep-copy",
  9114. "version": "1.10.2",
  9115. "source": {
  9116. "type": "git",
  9117. "url": "https://github.com/myclabs/DeepCopy.git",
  9118. "reference": "776f831124e9c62e1a2c601ecc52e776d8bb7220"
  9119. },
  9120. "dist": {
  9121. "type": "zip",
  9122. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/776f831124e9c62e1a2c601ecc52e776d8bb7220",
  9123. "reference": "776f831124e9c62e1a2c601ecc52e776d8bb7220",
  9124. "shasum": ""
  9125. },
  9126. "require": {
  9127. "php": "^7.1 || ^8.0"
  9128. },
  9129. "replace": {
  9130. "myclabs/deep-copy": "self.version"
  9131. },
  9132. "require-dev": {
  9133. "doctrine/collections": "^1.0",
  9134. "doctrine/common": "^2.6",
  9135. "phpunit/phpunit": "^7.1"
  9136. },
  9137. "type": "library",
  9138. "autoload": {
  9139. "psr-4": {
  9140. "DeepCopy\\": "src/DeepCopy/"
  9141. },
  9142. "files": [
  9143. "src/DeepCopy/deep_copy.php"
  9144. ]
  9145. },
  9146. "notification-url": "https://packagist.org/downloads/",
  9147. "license": [
  9148. "MIT"
  9149. ],
  9150. "description": "Create deep copies (clones) of your objects",
  9151. "keywords": [
  9152. "clone",
  9153. "copy",
  9154. "duplicate",
  9155. "object",
  9156. "object graph"
  9157. ],
  9158. "support": {
  9159. "issues": "https://github.com/myclabs/DeepCopy/issues",
  9160. "source": "https://github.com/myclabs/DeepCopy/tree/1.10.2"
  9161. },
  9162. "funding": [
  9163. {
  9164. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  9165. "type": "tidelift"
  9166. }
  9167. ],
  9168. "time": "2020-11-13T09:40:50+00:00"
  9169. },
  9170. {
  9171. "name": "nunomaduro/collision",
  9172. "version": "v4.3.0",
  9173. "source": {
  9174. "type": "git",
  9175. "url": "https://github.com/nunomaduro/collision.git",
  9176. "reference": "7c125dc2463f3e144ddc7e05e63077109508c94e"
  9177. },
  9178. "dist": {
  9179. "type": "zip",
  9180. "url": "https://api.github.com/repos/nunomaduro/collision/zipball/7c125dc2463f3e144ddc7e05e63077109508c94e",
  9181. "reference": "7c125dc2463f3e144ddc7e05e63077109508c94e",
  9182. "shasum": ""
  9183. },
  9184. "require": {
  9185. "facade/ignition-contracts": "^1.0",
  9186. "filp/whoops": "^2.4",
  9187. "php": "^7.2.5 || ^8.0",
  9188. "symfony/console": "^5.0"
  9189. },
  9190. "require-dev": {
  9191. "facade/ignition": "^2.0",
  9192. "fideloper/proxy": "^4.2",
  9193. "friendsofphp/php-cs-fixer": "^2.16",
  9194. "fruitcake/laravel-cors": "^1.0",
  9195. "laravel/framework": "^7.0",
  9196. "laravel/tinker": "^2.0",
  9197. "nunomaduro/larastan": "^0.6",
  9198. "orchestra/testbench": "^5.0",
  9199. "phpstan/phpstan": "^0.12.3",
  9200. "phpunit/phpunit": "^8.5.1 || ^9.0"
  9201. },
  9202. "type": "library",
  9203. "extra": {
  9204. "laravel": {
  9205. "providers": [
  9206. "NunoMaduro\\Collision\\Adapters\\Laravel\\CollisionServiceProvider"
  9207. ]
  9208. }
  9209. },
  9210. "autoload": {
  9211. "psr-4": {
  9212. "NunoMaduro\\Collision\\": "src/"
  9213. }
  9214. },
  9215. "notification-url": "https://packagist.org/downloads/",
  9216. "license": [
  9217. "MIT"
  9218. ],
  9219. "authors": [
  9220. {
  9221. "name": "Nuno Maduro",
  9222. "email": "enunomaduro@gmail.com"
  9223. }
  9224. ],
  9225. "description": "Cli error handling for console/command-line PHP applications.",
  9226. "keywords": [
  9227. "artisan",
  9228. "cli",
  9229. "command-line",
  9230. "console",
  9231. "error",
  9232. "handling",
  9233. "laravel",
  9234. "laravel-zero",
  9235. "php",
  9236. "symfony"
  9237. ],
  9238. "support": {
  9239. "issues": "https://github.com/nunomaduro/collision/issues",
  9240. "source": "https://github.com/nunomaduro/collision"
  9241. },
  9242. "funding": [
  9243. {
  9244. "url": "https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=66BYDWAT92N6L",
  9245. "type": "custom"
  9246. },
  9247. {
  9248. "url": "https://github.com/nunomaduro",
  9249. "type": "github"
  9250. },
  9251. {
  9252. "url": "https://www.patreon.com/nunomaduro",
  9253. "type": "patreon"
  9254. }
  9255. ],
  9256. "time": "2020-10-29T15:12:23+00:00"
  9257. },
  9258. {
  9259. "name": "paragonie/constant_time_encoding",
  9260. "version": "v2.4.0",
  9261. "source": {
  9262. "type": "git",
  9263. "url": "https://github.com/paragonie/constant_time_encoding.git",
  9264. "reference": "f34c2b11eb9d2c9318e13540a1dbc2a3afbd939c"
  9265. },
  9266. "dist": {
  9267. "type": "zip",
  9268. "url": "https://api.github.com/repos/paragonie/constant_time_encoding/zipball/f34c2b11eb9d2c9318e13540a1dbc2a3afbd939c",
  9269. "reference": "f34c2b11eb9d2c9318e13540a1dbc2a3afbd939c",
  9270. "shasum": ""
  9271. },
  9272. "require": {
  9273. "php": "^7|^8"
  9274. },
  9275. "require-dev": {
  9276. "phpunit/phpunit": "^6|^7|^8|^9",
  9277. "vimeo/psalm": "^1|^2|^3|^4"
  9278. },
  9279. "type": "library",
  9280. "autoload": {
  9281. "psr-4": {
  9282. "ParagonIE\\ConstantTime\\": "src/"
  9283. }
  9284. },
  9285. "notification-url": "https://packagist.org/downloads/",
  9286. "license": [
  9287. "MIT"
  9288. ],
  9289. "authors": [
  9290. {
  9291. "name": "Paragon Initiative Enterprises",
  9292. "email": "security@paragonie.com",
  9293. "homepage": "https://paragonie.com",
  9294. "role": "Maintainer"
  9295. },
  9296. {
  9297. "name": "Steve 'Sc00bz' Thomas",
  9298. "email": "steve@tobtu.com",
  9299. "homepage": "https://www.tobtu.com",
  9300. "role": "Original Developer"
  9301. }
  9302. ],
  9303. "description": "Constant-time Implementations of RFC 4648 Encoding (Base-64, Base-32, Base-16)",
  9304. "keywords": [
  9305. "base16",
  9306. "base32",
  9307. "base32_decode",
  9308. "base32_encode",
  9309. "base64",
  9310. "base64_decode",
  9311. "base64_encode",
  9312. "bin2hex",
  9313. "encoding",
  9314. "hex",
  9315. "hex2bin",
  9316. "rfc4648"
  9317. ],
  9318. "support": {
  9319. "email": "info@paragonie.com",
  9320. "issues": "https://github.com/paragonie/constant_time_encoding/issues",
  9321. "source": "https://github.com/paragonie/constant_time_encoding"
  9322. },
  9323. "time": "2020-12-06T15:14:20+00:00"
  9324. },
  9325. {
  9326. "name": "paragonie/random_compat",
  9327. "version": "v2.0.19",
  9328. "source": {
  9329. "type": "git",
  9330. "url": "https://github.com/paragonie/random_compat.git",
  9331. "reference": "446fc9faa5c2a9ddf65eb7121c0af7e857295241"
  9332. },
  9333. "dist": {
  9334. "type": "zip",
  9335. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/446fc9faa5c2a9ddf65eb7121c0af7e857295241",
  9336. "reference": "446fc9faa5c2a9ddf65eb7121c0af7e857295241",
  9337. "shasum": ""
  9338. },
  9339. "require": {
  9340. "php": ">=5.2.0"
  9341. },
  9342. "require-dev": {
  9343. "phpunit/phpunit": "4.*|5.*"
  9344. },
  9345. "suggest": {
  9346. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  9347. },
  9348. "type": "library",
  9349. "autoload": {
  9350. "files": [
  9351. "lib/random.php"
  9352. ]
  9353. },
  9354. "notification-url": "https://packagist.org/downloads/",
  9355. "license": [
  9356. "MIT"
  9357. ],
  9358. "authors": [
  9359. {
  9360. "name": "Paragon Initiative Enterprises",
  9361. "email": "security@paragonie.com",
  9362. "homepage": "https://paragonie.com"
  9363. }
  9364. ],
  9365. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  9366. "keywords": [
  9367. "csprng",
  9368. "polyfill",
  9369. "pseudorandom",
  9370. "random"
  9371. ],
  9372. "support": {
  9373. "email": "info@paragonie.com",
  9374. "issues": "https://github.com/paragonie/random_compat/issues",
  9375. "source": "https://github.com/paragonie/random_compat"
  9376. },
  9377. "time": "2020-10-15T10:06:57+00:00"
  9378. },
  9379. {
  9380. "name": "phar-io/manifest",
  9381. "version": "2.0.1",
  9382. "source": {
  9383. "type": "git",
  9384. "url": "https://github.com/phar-io/manifest.git",
  9385. "reference": "85265efd3af7ba3ca4b2a2c34dbfc5788dd29133"
  9386. },
  9387. "dist": {
  9388. "type": "zip",
  9389. "url": "https://api.github.com/repos/phar-io/manifest/zipball/85265efd3af7ba3ca4b2a2c34dbfc5788dd29133",
  9390. "reference": "85265efd3af7ba3ca4b2a2c34dbfc5788dd29133",
  9391. "shasum": ""
  9392. },
  9393. "require": {
  9394. "ext-dom": "*",
  9395. "ext-phar": "*",
  9396. "ext-xmlwriter": "*",
  9397. "phar-io/version": "^3.0.1",
  9398. "php": "^7.2 || ^8.0"
  9399. },
  9400. "type": "library",
  9401. "extra": {
  9402. "branch-alias": {
  9403. "dev-master": "2.0.x-dev"
  9404. }
  9405. },
  9406. "autoload": {
  9407. "classmap": [
  9408. "src/"
  9409. ]
  9410. },
  9411. "notification-url": "https://packagist.org/downloads/",
  9412. "license": [
  9413. "BSD-3-Clause"
  9414. ],
  9415. "authors": [
  9416. {
  9417. "name": "Arne Blankerts",
  9418. "email": "arne@blankerts.de",
  9419. "role": "Developer"
  9420. },
  9421. {
  9422. "name": "Sebastian Heuer",
  9423. "email": "sebastian@phpeople.de",
  9424. "role": "Developer"
  9425. },
  9426. {
  9427. "name": "Sebastian Bergmann",
  9428. "email": "sebastian@phpunit.de",
  9429. "role": "Developer"
  9430. }
  9431. ],
  9432. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  9433. "support": {
  9434. "issues": "https://github.com/phar-io/manifest/issues",
  9435. "source": "https://github.com/phar-io/manifest/tree/master"
  9436. },
  9437. "time": "2020-06-27T14:33:11+00:00"
  9438. },
  9439. {
  9440. "name": "phar-io/version",
  9441. "version": "3.0.4",
  9442. "source": {
  9443. "type": "git",
  9444. "url": "https://github.com/phar-io/version.git",
  9445. "reference": "e4782611070e50613683d2b9a57730e9a3ba5451"
  9446. },
  9447. "dist": {
  9448. "type": "zip",
  9449. "url": "https://api.github.com/repos/phar-io/version/zipball/e4782611070e50613683d2b9a57730e9a3ba5451",
  9450. "reference": "e4782611070e50613683d2b9a57730e9a3ba5451",
  9451. "shasum": ""
  9452. },
  9453. "require": {
  9454. "php": "^7.2 || ^8.0"
  9455. },
  9456. "type": "library",
  9457. "autoload": {
  9458. "classmap": [
  9459. "src/"
  9460. ]
  9461. },
  9462. "notification-url": "https://packagist.org/downloads/",
  9463. "license": [
  9464. "BSD-3-Clause"
  9465. ],
  9466. "authors": [
  9467. {
  9468. "name": "Arne Blankerts",
  9469. "email": "arne@blankerts.de",
  9470. "role": "Developer"
  9471. },
  9472. {
  9473. "name": "Sebastian Heuer",
  9474. "email": "sebastian@phpeople.de",
  9475. "role": "Developer"
  9476. },
  9477. {
  9478. "name": "Sebastian Bergmann",
  9479. "email": "sebastian@phpunit.de",
  9480. "role": "Developer"
  9481. }
  9482. ],
  9483. "description": "Library for handling version information and constraints",
  9484. "support": {
  9485. "issues": "https://github.com/phar-io/version/issues",
  9486. "source": "https://github.com/phar-io/version/tree/3.0.4"
  9487. },
  9488. "time": "2020-12-13T23:18:30+00:00"
  9489. },
  9490. {
  9491. "name": "phpdocumentor/reflection-common",
  9492. "version": "2.2.0",
  9493. "source": {
  9494. "type": "git",
  9495. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  9496. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b"
  9497. },
  9498. "dist": {
  9499. "type": "zip",
  9500. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  9501. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  9502. "shasum": ""
  9503. },
  9504. "require": {
  9505. "php": "^7.2 || ^8.0"
  9506. },
  9507. "type": "library",
  9508. "extra": {
  9509. "branch-alias": {
  9510. "dev-2.x": "2.x-dev"
  9511. }
  9512. },
  9513. "autoload": {
  9514. "psr-4": {
  9515. "phpDocumentor\\Reflection\\": "src/"
  9516. }
  9517. },
  9518. "notification-url": "https://packagist.org/downloads/",
  9519. "license": [
  9520. "MIT"
  9521. ],
  9522. "authors": [
  9523. {
  9524. "name": "Jaap van Otterdijk",
  9525. "email": "opensource@ijaap.nl"
  9526. }
  9527. ],
  9528. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  9529. "homepage": "http://www.phpdoc.org",
  9530. "keywords": [
  9531. "FQSEN",
  9532. "phpDocumentor",
  9533. "phpdoc",
  9534. "reflection",
  9535. "static analysis"
  9536. ],
  9537. "support": {
  9538. "issues": "https://github.com/phpDocumentor/ReflectionCommon/issues",
  9539. "source": "https://github.com/phpDocumentor/ReflectionCommon/tree/2.x"
  9540. },
  9541. "time": "2020-06-27T09:03:43+00:00"
  9542. },
  9543. {
  9544. "name": "phpdocumentor/reflection-docblock",
  9545. "version": "5.2.2",
  9546. "source": {
  9547. "type": "git",
  9548. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  9549. "reference": "069a785b2141f5bcf49f3e353548dc1cce6df556"
  9550. },
  9551. "dist": {
  9552. "type": "zip",
  9553. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/069a785b2141f5bcf49f3e353548dc1cce6df556",
  9554. "reference": "069a785b2141f5bcf49f3e353548dc1cce6df556",
  9555. "shasum": ""
  9556. },
  9557. "require": {
  9558. "ext-filter": "*",
  9559. "php": "^7.2 || ^8.0",
  9560. "phpdocumentor/reflection-common": "^2.2",
  9561. "phpdocumentor/type-resolver": "^1.3",
  9562. "webmozart/assert": "^1.9.1"
  9563. },
  9564. "require-dev": {
  9565. "mockery/mockery": "~1.3.2"
  9566. },
  9567. "type": "library",
  9568. "extra": {
  9569. "branch-alias": {
  9570. "dev-master": "5.x-dev"
  9571. }
  9572. },
  9573. "autoload": {
  9574. "psr-4": {
  9575. "phpDocumentor\\Reflection\\": "src"
  9576. }
  9577. },
  9578. "notification-url": "https://packagist.org/downloads/",
  9579. "license": [
  9580. "MIT"
  9581. ],
  9582. "authors": [
  9583. {
  9584. "name": "Mike van Riel",
  9585. "email": "me@mikevanriel.com"
  9586. },
  9587. {
  9588. "name": "Jaap van Otterdijk",
  9589. "email": "account@ijaap.nl"
  9590. }
  9591. ],
  9592. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  9593. "support": {
  9594. "issues": "https://github.com/phpDocumentor/ReflectionDocBlock/issues",
  9595. "source": "https://github.com/phpDocumentor/ReflectionDocBlock/tree/master"
  9596. },
  9597. "time": "2020-09-03T19:13:55+00:00"
  9598. },
  9599. {
  9600. "name": "phpdocumentor/type-resolver",
  9601. "version": "1.4.0",
  9602. "source": {
  9603. "type": "git",
  9604. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  9605. "reference": "6a467b8989322d92aa1c8bf2bebcc6e5c2ba55c0"
  9606. },
  9607. "dist": {
  9608. "type": "zip",
  9609. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/6a467b8989322d92aa1c8bf2bebcc6e5c2ba55c0",
  9610. "reference": "6a467b8989322d92aa1c8bf2bebcc6e5c2ba55c0",
  9611. "shasum": ""
  9612. },
  9613. "require": {
  9614. "php": "^7.2 || ^8.0",
  9615. "phpdocumentor/reflection-common": "^2.0"
  9616. },
  9617. "require-dev": {
  9618. "ext-tokenizer": "*"
  9619. },
  9620. "type": "library",
  9621. "extra": {
  9622. "branch-alias": {
  9623. "dev-1.x": "1.x-dev"
  9624. }
  9625. },
  9626. "autoload": {
  9627. "psr-4": {
  9628. "phpDocumentor\\Reflection\\": "src"
  9629. }
  9630. },
  9631. "notification-url": "https://packagist.org/downloads/",
  9632. "license": [
  9633. "MIT"
  9634. ],
  9635. "authors": [
  9636. {
  9637. "name": "Mike van Riel",
  9638. "email": "me@mikevanriel.com"
  9639. }
  9640. ],
  9641. "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names",
  9642. "support": {
  9643. "issues": "https://github.com/phpDocumentor/TypeResolver/issues",
  9644. "source": "https://github.com/phpDocumentor/TypeResolver/tree/1.4.0"
  9645. },
  9646. "time": "2020-09-17T18:55:26+00:00"
  9647. },
  9648. {
  9649. "name": "phpseclib/bcmath_compat",
  9650. "version": "2.0.0",
  9651. "source": {
  9652. "type": "git",
  9653. "url": "https://github.com/phpseclib/bcmath_compat.git",
  9654. "reference": "fd896dfceffc13d8cf45d2ee3470777a70026f3c"
  9655. },
  9656. "dist": {
  9657. "type": "zip",
  9658. "url": "https://api.github.com/repos/phpseclib/bcmath_compat/zipball/fd896dfceffc13d8cf45d2ee3470777a70026f3c",
  9659. "reference": "fd896dfceffc13d8cf45d2ee3470777a70026f3c",
  9660. "shasum": ""
  9661. },
  9662. "require": {
  9663. "phpseclib/phpseclib": "^3.0"
  9664. },
  9665. "provide": {
  9666. "ext-bcmath": "8.0.0"
  9667. },
  9668. "require-dev": {
  9669. "phpunit/phpunit": "^4.8.35|^5.7|^6.0|^9.4",
  9670. "squizlabs/php_codesniffer": "^3.0"
  9671. },
  9672. "suggest": {
  9673. "ext-gmp": "Will enable faster math operations"
  9674. },
  9675. "type": "library",
  9676. "autoload": {
  9677. "files": [
  9678. "lib/bcmath.php"
  9679. ],
  9680. "psr-4": {
  9681. "bcmath_compat\\": "src"
  9682. }
  9683. },
  9684. "notification-url": "https://packagist.org/downloads/",
  9685. "license": [
  9686. "MIT"
  9687. ],
  9688. "authors": [
  9689. {
  9690. "name": "Jim Wigginton",
  9691. "email": "terrafrost@php.net",
  9692. "homepage": "http://phpseclib.sourceforge.net"
  9693. }
  9694. ],
  9695. "description": "PHP 5.x/7.x polyfill for bcmath extension",
  9696. "keywords": [
  9697. "BigInteger",
  9698. "bcmath",
  9699. "bigdecimal",
  9700. "math",
  9701. "polyfill"
  9702. ],
  9703. "support": {
  9704. "email": "terrafrost@php.net",
  9705. "issues": "https://github.com/phpseclib/bcmath_compat/issues",
  9706. "source": "https://github.com/phpseclib/bcmath_compat"
  9707. },
  9708. "time": "2020-12-22T16:38:51+00:00"
  9709. },
  9710. {
  9711. "name": "phpseclib/phpseclib",
  9712. "version": "3.0.2",
  9713. "source": {
  9714. "type": "git",
  9715. "url": "https://github.com/phpseclib/phpseclib.git",
  9716. "reference": "7a9418e4e02a3da7950b6b85c30e694d68daf995"
  9717. },
  9718. "dist": {
  9719. "type": "zip",
  9720. "url": "https://api.github.com/repos/phpseclib/phpseclib/zipball/7a9418e4e02a3da7950b6b85c30e694d68daf995",
  9721. "reference": "7a9418e4e02a3da7950b6b85c30e694d68daf995",
  9722. "shasum": ""
  9723. },
  9724. "require": {
  9725. "paragonie/constant_time_encoding": "^1|^2",
  9726. "paragonie/random_compat": "^1.4|^2.0",
  9727. "php": ">=5.6.1"
  9728. },
  9729. "require-dev": {
  9730. "phing/phing": "~2.7",
  9731. "phpunit/phpunit": "^5.7|^6.0|^9.4",
  9732. "squizlabs/php_codesniffer": "~2.0"
  9733. },
  9734. "suggest": {
  9735. "ext-gmp": "Install the GMP (GNU Multiple Precision) extension in order to speed up arbitrary precision integer arithmetic operations.",
  9736. "ext-libsodium": "SSH2/SFTP can make use of some algorithms provided by the libsodium-php extension.",
  9737. "ext-mcrypt": "Install the Mcrypt extension in order to speed up a few other cryptographic operations.",
  9738. "ext-openssl": "Install the OpenSSL extension in order to speed up a wide variety of cryptographic operations."
  9739. },
  9740. "type": "library",
  9741. "autoload": {
  9742. "files": [
  9743. "phpseclib/bootstrap.php"
  9744. ],
  9745. "psr-4": {
  9746. "phpseclib3\\": "phpseclib/"
  9747. }
  9748. },
  9749. "notification-url": "https://packagist.org/downloads/",
  9750. "license": [
  9751. "MIT"
  9752. ],
  9753. "authors": [
  9754. {
  9755. "name": "Jim Wigginton",
  9756. "email": "terrafrost@php.net",
  9757. "role": "Lead Developer"
  9758. },
  9759. {
  9760. "name": "Patrick Monnerat",
  9761. "email": "pm@datasphere.ch",
  9762. "role": "Developer"
  9763. },
  9764. {
  9765. "name": "Andreas Fischer",
  9766. "email": "bantu@phpbb.com",
  9767. "role": "Developer"
  9768. },
  9769. {
  9770. "name": "Hans-Jürgen Petrich",
  9771. "email": "petrich@tronic-media.com",
  9772. "role": "Developer"
  9773. },
  9774. {
  9775. "name": "Graham Campbell",
  9776. "email": "graham@alt-three.com",
  9777. "role": "Developer"
  9778. }
  9779. ],
  9780. "description": "PHP Secure Communications Library - Pure-PHP implementations of RSA, AES, SSH2, SFTP, X.509 etc.",
  9781. "homepage": "http://phpseclib.sourceforge.net",
  9782. "keywords": [
  9783. "BigInteger",
  9784. "aes",
  9785. "asn.1",
  9786. "asn1",
  9787. "blowfish",
  9788. "crypto",
  9789. "cryptography",
  9790. "encryption",
  9791. "rsa",
  9792. "security",
  9793. "sftp",
  9794. "signature",
  9795. "signing",
  9796. "ssh",
  9797. "twofish",
  9798. "x.509",
  9799. "x509"
  9800. ],
  9801. "support": {
  9802. "issues": "https://github.com/phpseclib/phpseclib/issues",
  9803. "source": "https://github.com/phpseclib/phpseclib/tree/3.0.2"
  9804. },
  9805. "funding": [
  9806. {
  9807. "url": "https://github.com/terrafrost",
  9808. "type": "github"
  9809. },
  9810. {
  9811. "url": "https://www.patreon.com/phpseclib",
  9812. "type": "patreon"
  9813. },
  9814. {
  9815. "url": "https://tidelift.com/funding/github/packagist/phpseclib/phpseclib",
  9816. "type": "tidelift"
  9817. }
  9818. ],
  9819. "time": "2020-12-23T16:39:00+00:00"
  9820. },
  9821. {
  9822. "name": "phpspec/prophecy",
  9823. "version": "1.12.2",
  9824. "source": {
  9825. "type": "git",
  9826. "url": "https://github.com/phpspec/prophecy.git",
  9827. "reference": "245710e971a030f42e08f4912863805570f23d39"
  9828. },
  9829. "dist": {
  9830. "type": "zip",
  9831. "url": "https://api.github.com/repos/phpspec/prophecy/zipball/245710e971a030f42e08f4912863805570f23d39",
  9832. "reference": "245710e971a030f42e08f4912863805570f23d39",
  9833. "shasum": ""
  9834. },
  9835. "require": {
  9836. "doctrine/instantiator": "^1.2",
  9837. "php": "^7.2 || ~8.0, <8.1",
  9838. "phpdocumentor/reflection-docblock": "^5.2",
  9839. "sebastian/comparator": "^3.0 || ^4.0",
  9840. "sebastian/recursion-context": "^3.0 || ^4.0"
  9841. },
  9842. "require-dev": {
  9843. "phpspec/phpspec": "^6.0",
  9844. "phpunit/phpunit": "^8.0 || ^9.0"
  9845. },
  9846. "type": "library",
  9847. "extra": {
  9848. "branch-alias": {
  9849. "dev-master": "1.11.x-dev"
  9850. }
  9851. },
  9852. "autoload": {
  9853. "psr-4": {
  9854. "Prophecy\\": "src/Prophecy"
  9855. }
  9856. },
  9857. "notification-url": "https://packagist.org/downloads/",
  9858. "license": [
  9859. "MIT"
  9860. ],
  9861. "authors": [
  9862. {
  9863. "name": "Konstantin Kudryashov",
  9864. "email": "ever.zet@gmail.com",
  9865. "homepage": "http://everzet.com"
  9866. },
  9867. {
  9868. "name": "Marcello Duarte",
  9869. "email": "marcello.duarte@gmail.com"
  9870. }
  9871. ],
  9872. "description": "Highly opinionated mocking framework for PHP 5.3+",
  9873. "homepage": "https://github.com/phpspec/prophecy",
  9874. "keywords": [
  9875. "Double",
  9876. "Dummy",
  9877. "fake",
  9878. "mock",
  9879. "spy",
  9880. "stub"
  9881. ],
  9882. "support": {
  9883. "issues": "https://github.com/phpspec/prophecy/issues",
  9884. "source": "https://github.com/phpspec/prophecy/tree/1.12.2"
  9885. },
  9886. "time": "2020-12-19T10:15:11+00:00"
  9887. },
  9888. {
  9889. "name": "phpunit/php-code-coverage",
  9890. "version": "9.2.5",
  9891. "source": {
  9892. "type": "git",
  9893. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  9894. "reference": "f3e026641cc91909d421802dd3ac7827ebfd97e1"
  9895. },
  9896. "dist": {
  9897. "type": "zip",
  9898. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/f3e026641cc91909d421802dd3ac7827ebfd97e1",
  9899. "reference": "f3e026641cc91909d421802dd3ac7827ebfd97e1",
  9900. "shasum": ""
  9901. },
  9902. "require": {
  9903. "ext-dom": "*",
  9904. "ext-libxml": "*",
  9905. "ext-xmlwriter": "*",
  9906. "nikic/php-parser": "^4.10.2",
  9907. "php": ">=7.3",
  9908. "phpunit/php-file-iterator": "^3.0.3",
  9909. "phpunit/php-text-template": "^2.0.2",
  9910. "sebastian/code-unit-reverse-lookup": "^2.0.2",
  9911. "sebastian/complexity": "^2.0",
  9912. "sebastian/environment": "^5.1.2",
  9913. "sebastian/lines-of-code": "^1.0.3",
  9914. "sebastian/version": "^3.0.1",
  9915. "theseer/tokenizer": "^1.2.0"
  9916. },
  9917. "require-dev": {
  9918. "phpunit/phpunit": "^9.3"
  9919. },
  9920. "suggest": {
  9921. "ext-pcov": "*",
  9922. "ext-xdebug": "*"
  9923. },
  9924. "type": "library",
  9925. "extra": {
  9926. "branch-alias": {
  9927. "dev-master": "9.2-dev"
  9928. }
  9929. },
  9930. "autoload": {
  9931. "classmap": [
  9932. "src/"
  9933. ]
  9934. },
  9935. "notification-url": "https://packagist.org/downloads/",
  9936. "license": [
  9937. "BSD-3-Clause"
  9938. ],
  9939. "authors": [
  9940. {
  9941. "name": "Sebastian Bergmann",
  9942. "email": "sebastian@phpunit.de",
  9943. "role": "lead"
  9944. }
  9945. ],
  9946. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  9947. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  9948. "keywords": [
  9949. "coverage",
  9950. "testing",
  9951. "xunit"
  9952. ],
  9953. "support": {
  9954. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  9955. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/9.2.5"
  9956. },
  9957. "funding": [
  9958. {
  9959. "url": "https://github.com/sebastianbergmann",
  9960. "type": "github"
  9961. }
  9962. ],
  9963. "time": "2020-11-28T06:44:49+00:00"
  9964. },
  9965. {
  9966. "name": "phpunit/php-file-iterator",
  9967. "version": "3.0.5",
  9968. "source": {
  9969. "type": "git",
  9970. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  9971. "reference": "aa4be8575f26070b100fccb67faabb28f21f66f8"
  9972. },
  9973. "dist": {
  9974. "type": "zip",
  9975. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/aa4be8575f26070b100fccb67faabb28f21f66f8",
  9976. "reference": "aa4be8575f26070b100fccb67faabb28f21f66f8",
  9977. "shasum": ""
  9978. },
  9979. "require": {
  9980. "php": ">=7.3"
  9981. },
  9982. "require-dev": {
  9983. "phpunit/phpunit": "^9.3"
  9984. },
  9985. "type": "library",
  9986. "extra": {
  9987. "branch-alias": {
  9988. "dev-master": "3.0-dev"
  9989. }
  9990. },
  9991. "autoload": {
  9992. "classmap": [
  9993. "src/"
  9994. ]
  9995. },
  9996. "notification-url": "https://packagist.org/downloads/",
  9997. "license": [
  9998. "BSD-3-Clause"
  9999. ],
  10000. "authors": [
  10001. {
  10002. "name": "Sebastian Bergmann",
  10003. "email": "sebastian@phpunit.de",
  10004. "role": "lead"
  10005. }
  10006. ],
  10007. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  10008. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  10009. "keywords": [
  10010. "filesystem",
  10011. "iterator"
  10012. ],
  10013. "support": {
  10014. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  10015. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/3.0.5"
  10016. },
  10017. "funding": [
  10018. {
  10019. "url": "https://github.com/sebastianbergmann",
  10020. "type": "github"
  10021. }
  10022. ],
  10023. "time": "2020-09-28T05:57:25+00:00"
  10024. },
  10025. {
  10026. "name": "phpunit/php-invoker",
  10027. "version": "3.1.1",
  10028. "source": {
  10029. "type": "git",
  10030. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  10031. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67"
  10032. },
  10033. "dist": {
  10034. "type": "zip",
  10035. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  10036. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  10037. "shasum": ""
  10038. },
  10039. "require": {
  10040. "php": ">=7.3"
  10041. },
  10042. "require-dev": {
  10043. "ext-pcntl": "*",
  10044. "phpunit/phpunit": "^9.3"
  10045. },
  10046. "suggest": {
  10047. "ext-pcntl": "*"
  10048. },
  10049. "type": "library",
  10050. "extra": {
  10051. "branch-alias": {
  10052. "dev-master": "3.1-dev"
  10053. }
  10054. },
  10055. "autoload": {
  10056. "classmap": [
  10057. "src/"
  10058. ]
  10059. },
  10060. "notification-url": "https://packagist.org/downloads/",
  10061. "license": [
  10062. "BSD-3-Clause"
  10063. ],
  10064. "authors": [
  10065. {
  10066. "name": "Sebastian Bergmann",
  10067. "email": "sebastian@phpunit.de",
  10068. "role": "lead"
  10069. }
  10070. ],
  10071. "description": "Invoke callables with a timeout",
  10072. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  10073. "keywords": [
  10074. "process"
  10075. ],
  10076. "support": {
  10077. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  10078. "source": "https://github.com/sebastianbergmann/php-invoker/tree/3.1.1"
  10079. },
  10080. "funding": [
  10081. {
  10082. "url": "https://github.com/sebastianbergmann",
  10083. "type": "github"
  10084. }
  10085. ],
  10086. "time": "2020-09-28T05:58:55+00:00"
  10087. },
  10088. {
  10089. "name": "phpunit/php-text-template",
  10090. "version": "2.0.4",
  10091. "source": {
  10092. "type": "git",
  10093. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  10094. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28"
  10095. },
  10096. "dist": {
  10097. "type": "zip",
  10098. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  10099. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  10100. "shasum": ""
  10101. },
  10102. "require": {
  10103. "php": ">=7.3"
  10104. },
  10105. "require-dev": {
  10106. "phpunit/phpunit": "^9.3"
  10107. },
  10108. "type": "library",
  10109. "extra": {
  10110. "branch-alias": {
  10111. "dev-master": "2.0-dev"
  10112. }
  10113. },
  10114. "autoload": {
  10115. "classmap": [
  10116. "src/"
  10117. ]
  10118. },
  10119. "notification-url": "https://packagist.org/downloads/",
  10120. "license": [
  10121. "BSD-3-Clause"
  10122. ],
  10123. "authors": [
  10124. {
  10125. "name": "Sebastian Bergmann",
  10126. "email": "sebastian@phpunit.de",
  10127. "role": "lead"
  10128. }
  10129. ],
  10130. "description": "Simple template engine.",
  10131. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  10132. "keywords": [
  10133. "template"
  10134. ],
  10135. "support": {
  10136. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  10137. "source": "https://github.com/sebastianbergmann/php-text-template/tree/2.0.4"
  10138. },
  10139. "funding": [
  10140. {
  10141. "url": "https://github.com/sebastianbergmann",
  10142. "type": "github"
  10143. }
  10144. ],
  10145. "time": "2020-10-26T05:33:50+00:00"
  10146. },
  10147. {
  10148. "name": "phpunit/php-timer",
  10149. "version": "5.0.3",
  10150. "source": {
  10151. "type": "git",
  10152. "url": "https://github.com/sebastianbergmann/php-timer.git",
  10153. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2"
  10154. },
  10155. "dist": {
  10156. "type": "zip",
  10157. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  10158. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  10159. "shasum": ""
  10160. },
  10161. "require": {
  10162. "php": ">=7.3"
  10163. },
  10164. "require-dev": {
  10165. "phpunit/phpunit": "^9.3"
  10166. },
  10167. "type": "library",
  10168. "extra": {
  10169. "branch-alias": {
  10170. "dev-master": "5.0-dev"
  10171. }
  10172. },
  10173. "autoload": {
  10174. "classmap": [
  10175. "src/"
  10176. ]
  10177. },
  10178. "notification-url": "https://packagist.org/downloads/",
  10179. "license": [
  10180. "BSD-3-Clause"
  10181. ],
  10182. "authors": [
  10183. {
  10184. "name": "Sebastian Bergmann",
  10185. "email": "sebastian@phpunit.de",
  10186. "role": "lead"
  10187. }
  10188. ],
  10189. "description": "Utility class for timing",
  10190. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  10191. "keywords": [
  10192. "timer"
  10193. ],
  10194. "support": {
  10195. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  10196. "source": "https://github.com/sebastianbergmann/php-timer/tree/5.0.3"
  10197. },
  10198. "funding": [
  10199. {
  10200. "url": "https://github.com/sebastianbergmann",
  10201. "type": "github"
  10202. }
  10203. ],
  10204. "time": "2020-10-26T13:16:10+00:00"
  10205. },
  10206. {
  10207. "name": "phpunit/phpunit",
  10208. "version": "9.5.0",
  10209. "source": {
  10210. "type": "git",
  10211. "url": "https://github.com/sebastianbergmann/phpunit.git",
  10212. "reference": "8e16c225d57c3d6808014df6b1dd7598d0a5bbbe"
  10213. },
  10214. "dist": {
  10215. "type": "zip",
  10216. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/8e16c225d57c3d6808014df6b1dd7598d0a5bbbe",
  10217. "reference": "8e16c225d57c3d6808014df6b1dd7598d0a5bbbe",
  10218. "shasum": ""
  10219. },
  10220. "require": {
  10221. "doctrine/instantiator": "^1.3.1",
  10222. "ext-dom": "*",
  10223. "ext-json": "*",
  10224. "ext-libxml": "*",
  10225. "ext-mbstring": "*",
  10226. "ext-xml": "*",
  10227. "ext-xmlwriter": "*",
  10228. "myclabs/deep-copy": "^1.10.1",
  10229. "phar-io/manifest": "^2.0.1",
  10230. "phar-io/version": "^3.0.2",
  10231. "php": ">=7.3",
  10232. "phpspec/prophecy": "^1.12.1",
  10233. "phpunit/php-code-coverage": "^9.2.3",
  10234. "phpunit/php-file-iterator": "^3.0.5",
  10235. "phpunit/php-invoker": "^3.1.1",
  10236. "phpunit/php-text-template": "^2.0.3",
  10237. "phpunit/php-timer": "^5.0.2",
  10238. "sebastian/cli-parser": "^1.0.1",
  10239. "sebastian/code-unit": "^1.0.6",
  10240. "sebastian/comparator": "^4.0.5",
  10241. "sebastian/diff": "^4.0.3",
  10242. "sebastian/environment": "^5.1.3",
  10243. "sebastian/exporter": "^4.0.3",
  10244. "sebastian/global-state": "^5.0.1",
  10245. "sebastian/object-enumerator": "^4.0.3",
  10246. "sebastian/resource-operations": "^3.0.3",
  10247. "sebastian/type": "^2.3",
  10248. "sebastian/version": "^3.0.2"
  10249. },
  10250. "require-dev": {
  10251. "ext-pdo": "*",
  10252. "phpspec/prophecy-phpunit": "^2.0.1"
  10253. },
  10254. "suggest": {
  10255. "ext-soap": "*",
  10256. "ext-xdebug": "*"
  10257. },
  10258. "bin": [
  10259. "phpunit"
  10260. ],
  10261. "type": "library",
  10262. "extra": {
  10263. "branch-alias": {
  10264. "dev-master": "9.5-dev"
  10265. }
  10266. },
  10267. "autoload": {
  10268. "classmap": [
  10269. "src/"
  10270. ],
  10271. "files": [
  10272. "src/Framework/Assert/Functions.php"
  10273. ]
  10274. },
  10275. "notification-url": "https://packagist.org/downloads/",
  10276. "license": [
  10277. "BSD-3-Clause"
  10278. ],
  10279. "authors": [
  10280. {
  10281. "name": "Sebastian Bergmann",
  10282. "email": "sebastian@phpunit.de",
  10283. "role": "lead"
  10284. }
  10285. ],
  10286. "description": "The PHP Unit Testing framework.",
  10287. "homepage": "https://phpunit.de/",
  10288. "keywords": [
  10289. "phpunit",
  10290. "testing",
  10291. "xunit"
  10292. ],
  10293. "support": {
  10294. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  10295. "source": "https://github.com/sebastianbergmann/phpunit/tree/9.5.0"
  10296. },
  10297. "funding": [
  10298. {
  10299. "url": "https://phpunit.de/donate.html",
  10300. "type": "custom"
  10301. },
  10302. {
  10303. "url": "https://github.com/sebastianbergmann",
  10304. "type": "github"
  10305. }
  10306. ],
  10307. "time": "2020-12-04T05:05:53+00:00"
  10308. },
  10309. {
  10310. "name": "react/promise",
  10311. "version": "v2.8.0",
  10312. "source": {
  10313. "type": "git",
  10314. "url": "https://github.com/reactphp/promise.git",
  10315. "reference": "f3cff96a19736714524ca0dd1d4130de73dbbbc4"
  10316. },
  10317. "dist": {
  10318. "type": "zip",
  10319. "url": "https://api.github.com/repos/reactphp/promise/zipball/f3cff96a19736714524ca0dd1d4130de73dbbbc4",
  10320. "reference": "f3cff96a19736714524ca0dd1d4130de73dbbbc4",
  10321. "shasum": ""
  10322. },
  10323. "require": {
  10324. "php": ">=5.4.0"
  10325. },
  10326. "require-dev": {
  10327. "phpunit/phpunit": "^7.0 || ^6.5 || ^5.7 || ^4.8.36"
  10328. },
  10329. "type": "library",
  10330. "autoload": {
  10331. "psr-4": {
  10332. "React\\Promise\\": "src/"
  10333. },
  10334. "files": [
  10335. "src/functions_include.php"
  10336. ]
  10337. },
  10338. "notification-url": "https://packagist.org/downloads/",
  10339. "license": [
  10340. "MIT"
  10341. ],
  10342. "authors": [
  10343. {
  10344. "name": "Jan Sorgalla",
  10345. "email": "jsorgalla@gmail.com"
  10346. }
  10347. ],
  10348. "description": "A lightweight implementation of CommonJS Promises/A for PHP",
  10349. "keywords": [
  10350. "promise",
  10351. "promises"
  10352. ],
  10353. "support": {
  10354. "issues": "https://github.com/reactphp/promise/issues",
  10355. "source": "https://github.com/reactphp/promise/tree/v2.8.0"
  10356. },
  10357. "time": "2020-05-12T15:16:56+00:00"
  10358. },
  10359. {
  10360. "name": "sebastian/cli-parser",
  10361. "version": "1.0.1",
  10362. "source": {
  10363. "type": "git",
  10364. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  10365. "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2"
  10366. },
  10367. "dist": {
  10368. "type": "zip",
  10369. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/442e7c7e687e42adc03470c7b668bc4b2402c0b2",
  10370. "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2",
  10371. "shasum": ""
  10372. },
  10373. "require": {
  10374. "php": ">=7.3"
  10375. },
  10376. "require-dev": {
  10377. "phpunit/phpunit": "^9.3"
  10378. },
  10379. "type": "library",
  10380. "extra": {
  10381. "branch-alias": {
  10382. "dev-master": "1.0-dev"
  10383. }
  10384. },
  10385. "autoload": {
  10386. "classmap": [
  10387. "src/"
  10388. ]
  10389. },
  10390. "notification-url": "https://packagist.org/downloads/",
  10391. "license": [
  10392. "BSD-3-Clause"
  10393. ],
  10394. "authors": [
  10395. {
  10396. "name": "Sebastian Bergmann",
  10397. "email": "sebastian@phpunit.de",
  10398. "role": "lead"
  10399. }
  10400. ],
  10401. "description": "Library for parsing CLI options",
  10402. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  10403. "support": {
  10404. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  10405. "source": "https://github.com/sebastianbergmann/cli-parser/tree/1.0.1"
  10406. },
  10407. "funding": [
  10408. {
  10409. "url": "https://github.com/sebastianbergmann",
  10410. "type": "github"
  10411. }
  10412. ],
  10413. "time": "2020-09-28T06:08:49+00:00"
  10414. },
  10415. {
  10416. "name": "sebastian/code-unit",
  10417. "version": "1.0.8",
  10418. "source": {
  10419. "type": "git",
  10420. "url": "https://github.com/sebastianbergmann/code-unit.git",
  10421. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120"
  10422. },
  10423. "dist": {
  10424. "type": "zip",
  10425. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/1fc9f64c0927627ef78ba436c9b17d967e68e120",
  10426. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120",
  10427. "shasum": ""
  10428. },
  10429. "require": {
  10430. "php": ">=7.3"
  10431. },
  10432. "require-dev": {
  10433. "phpunit/phpunit": "^9.3"
  10434. },
  10435. "type": "library",
  10436. "extra": {
  10437. "branch-alias": {
  10438. "dev-master": "1.0-dev"
  10439. }
  10440. },
  10441. "autoload": {
  10442. "classmap": [
  10443. "src/"
  10444. ]
  10445. },
  10446. "notification-url": "https://packagist.org/downloads/",
  10447. "license": [
  10448. "BSD-3-Clause"
  10449. ],
  10450. "authors": [
  10451. {
  10452. "name": "Sebastian Bergmann",
  10453. "email": "sebastian@phpunit.de",
  10454. "role": "lead"
  10455. }
  10456. ],
  10457. "description": "Collection of value objects that represent the PHP code units",
  10458. "homepage": "https://github.com/sebastianbergmann/code-unit",
  10459. "support": {
  10460. "issues": "https://github.com/sebastianbergmann/code-unit/issues",
  10461. "source": "https://github.com/sebastianbergmann/code-unit/tree/1.0.8"
  10462. },
  10463. "funding": [
  10464. {
  10465. "url": "https://github.com/sebastianbergmann",
  10466. "type": "github"
  10467. }
  10468. ],
  10469. "time": "2020-10-26T13:08:54+00:00"
  10470. },
  10471. {
  10472. "name": "sebastian/code-unit-reverse-lookup",
  10473. "version": "2.0.3",
  10474. "source": {
  10475. "type": "git",
  10476. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  10477. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5"
  10478. },
  10479. "dist": {
  10480. "type": "zip",
  10481. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  10482. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  10483. "shasum": ""
  10484. },
  10485. "require": {
  10486. "php": ">=7.3"
  10487. },
  10488. "require-dev": {
  10489. "phpunit/phpunit": "^9.3"
  10490. },
  10491. "type": "library",
  10492. "extra": {
  10493. "branch-alias": {
  10494. "dev-master": "2.0-dev"
  10495. }
  10496. },
  10497. "autoload": {
  10498. "classmap": [
  10499. "src/"
  10500. ]
  10501. },
  10502. "notification-url": "https://packagist.org/downloads/",
  10503. "license": [
  10504. "BSD-3-Clause"
  10505. ],
  10506. "authors": [
  10507. {
  10508. "name": "Sebastian Bergmann",
  10509. "email": "sebastian@phpunit.de"
  10510. }
  10511. ],
  10512. "description": "Looks up which function or method a line of code belongs to",
  10513. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  10514. "support": {
  10515. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  10516. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/2.0.3"
  10517. },
  10518. "funding": [
  10519. {
  10520. "url": "https://github.com/sebastianbergmann",
  10521. "type": "github"
  10522. }
  10523. ],
  10524. "time": "2020-09-28T05:30:19+00:00"
  10525. },
  10526. {
  10527. "name": "sebastian/comparator",
  10528. "version": "4.0.6",
  10529. "source": {
  10530. "type": "git",
  10531. "url": "https://github.com/sebastianbergmann/comparator.git",
  10532. "reference": "55f4261989e546dc112258c7a75935a81a7ce382"
  10533. },
  10534. "dist": {
  10535. "type": "zip",
  10536. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/55f4261989e546dc112258c7a75935a81a7ce382",
  10537. "reference": "55f4261989e546dc112258c7a75935a81a7ce382",
  10538. "shasum": ""
  10539. },
  10540. "require": {
  10541. "php": ">=7.3",
  10542. "sebastian/diff": "^4.0",
  10543. "sebastian/exporter": "^4.0"
  10544. },
  10545. "require-dev": {
  10546. "phpunit/phpunit": "^9.3"
  10547. },
  10548. "type": "library",
  10549. "extra": {
  10550. "branch-alias": {
  10551. "dev-master": "4.0-dev"
  10552. }
  10553. },
  10554. "autoload": {
  10555. "classmap": [
  10556. "src/"
  10557. ]
  10558. },
  10559. "notification-url": "https://packagist.org/downloads/",
  10560. "license": [
  10561. "BSD-3-Clause"
  10562. ],
  10563. "authors": [
  10564. {
  10565. "name": "Sebastian Bergmann",
  10566. "email": "sebastian@phpunit.de"
  10567. },
  10568. {
  10569. "name": "Jeff Welch",
  10570. "email": "whatthejeff@gmail.com"
  10571. },
  10572. {
  10573. "name": "Volker Dusch",
  10574. "email": "github@wallbash.com"
  10575. },
  10576. {
  10577. "name": "Bernhard Schussek",
  10578. "email": "bschussek@2bepublished.at"
  10579. }
  10580. ],
  10581. "description": "Provides the functionality to compare PHP values for equality",
  10582. "homepage": "https://github.com/sebastianbergmann/comparator",
  10583. "keywords": [
  10584. "comparator",
  10585. "compare",
  10586. "equality"
  10587. ],
  10588. "support": {
  10589. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  10590. "source": "https://github.com/sebastianbergmann/comparator/tree/4.0.6"
  10591. },
  10592. "funding": [
  10593. {
  10594. "url": "https://github.com/sebastianbergmann",
  10595. "type": "github"
  10596. }
  10597. ],
  10598. "time": "2020-10-26T15:49:45+00:00"
  10599. },
  10600. {
  10601. "name": "sebastian/complexity",
  10602. "version": "2.0.2",
  10603. "source": {
  10604. "type": "git",
  10605. "url": "https://github.com/sebastianbergmann/complexity.git",
  10606. "reference": "739b35e53379900cc9ac327b2147867b8b6efd88"
  10607. },
  10608. "dist": {
  10609. "type": "zip",
  10610. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/739b35e53379900cc9ac327b2147867b8b6efd88",
  10611. "reference": "739b35e53379900cc9ac327b2147867b8b6efd88",
  10612. "shasum": ""
  10613. },
  10614. "require": {
  10615. "nikic/php-parser": "^4.7",
  10616. "php": ">=7.3"
  10617. },
  10618. "require-dev": {
  10619. "phpunit/phpunit": "^9.3"
  10620. },
  10621. "type": "library",
  10622. "extra": {
  10623. "branch-alias": {
  10624. "dev-master": "2.0-dev"
  10625. }
  10626. },
  10627. "autoload": {
  10628. "classmap": [
  10629. "src/"
  10630. ]
  10631. },
  10632. "notification-url": "https://packagist.org/downloads/",
  10633. "license": [
  10634. "BSD-3-Clause"
  10635. ],
  10636. "authors": [
  10637. {
  10638. "name": "Sebastian Bergmann",
  10639. "email": "sebastian@phpunit.de",
  10640. "role": "lead"
  10641. }
  10642. ],
  10643. "description": "Library for calculating the complexity of PHP code units",
  10644. "homepage": "https://github.com/sebastianbergmann/complexity",
  10645. "support": {
  10646. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  10647. "source": "https://github.com/sebastianbergmann/complexity/tree/2.0.2"
  10648. },
  10649. "funding": [
  10650. {
  10651. "url": "https://github.com/sebastianbergmann",
  10652. "type": "github"
  10653. }
  10654. ],
  10655. "time": "2020-10-26T15:52:27+00:00"
  10656. },
  10657. {
  10658. "name": "sebastian/diff",
  10659. "version": "4.0.4",
  10660. "source": {
  10661. "type": "git",
  10662. "url": "https://github.com/sebastianbergmann/diff.git",
  10663. "reference": "3461e3fccc7cfdfc2720be910d3bd73c69be590d"
  10664. },
  10665. "dist": {
  10666. "type": "zip",
  10667. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/3461e3fccc7cfdfc2720be910d3bd73c69be590d",
  10668. "reference": "3461e3fccc7cfdfc2720be910d3bd73c69be590d",
  10669. "shasum": ""
  10670. },
  10671. "require": {
  10672. "php": ">=7.3"
  10673. },
  10674. "require-dev": {
  10675. "phpunit/phpunit": "^9.3",
  10676. "symfony/process": "^4.2 || ^5"
  10677. },
  10678. "type": "library",
  10679. "extra": {
  10680. "branch-alias": {
  10681. "dev-master": "4.0-dev"
  10682. }
  10683. },
  10684. "autoload": {
  10685. "classmap": [
  10686. "src/"
  10687. ]
  10688. },
  10689. "notification-url": "https://packagist.org/downloads/",
  10690. "license": [
  10691. "BSD-3-Clause"
  10692. ],
  10693. "authors": [
  10694. {
  10695. "name": "Sebastian Bergmann",
  10696. "email": "sebastian@phpunit.de"
  10697. },
  10698. {
  10699. "name": "Kore Nordmann",
  10700. "email": "mail@kore-nordmann.de"
  10701. }
  10702. ],
  10703. "description": "Diff implementation",
  10704. "homepage": "https://github.com/sebastianbergmann/diff",
  10705. "keywords": [
  10706. "diff",
  10707. "udiff",
  10708. "unidiff",
  10709. "unified diff"
  10710. ],
  10711. "support": {
  10712. "issues": "https://github.com/sebastianbergmann/diff/issues",
  10713. "source": "https://github.com/sebastianbergmann/diff/tree/4.0.4"
  10714. },
  10715. "funding": [
  10716. {
  10717. "url": "https://github.com/sebastianbergmann",
  10718. "type": "github"
  10719. }
  10720. ],
  10721. "time": "2020-10-26T13:10:38+00:00"
  10722. },
  10723. {
  10724. "name": "sebastian/environment",
  10725. "version": "5.1.3",
  10726. "source": {
  10727. "type": "git",
  10728. "url": "https://github.com/sebastianbergmann/environment.git",
  10729. "reference": "388b6ced16caa751030f6a69e588299fa09200ac"
  10730. },
  10731. "dist": {
  10732. "type": "zip",
  10733. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/388b6ced16caa751030f6a69e588299fa09200ac",
  10734. "reference": "388b6ced16caa751030f6a69e588299fa09200ac",
  10735. "shasum": ""
  10736. },
  10737. "require": {
  10738. "php": ">=7.3"
  10739. },
  10740. "require-dev": {
  10741. "phpunit/phpunit": "^9.3"
  10742. },
  10743. "suggest": {
  10744. "ext-posix": "*"
  10745. },
  10746. "type": "library",
  10747. "extra": {
  10748. "branch-alias": {
  10749. "dev-master": "5.1-dev"
  10750. }
  10751. },
  10752. "autoload": {
  10753. "classmap": [
  10754. "src/"
  10755. ]
  10756. },
  10757. "notification-url": "https://packagist.org/downloads/",
  10758. "license": [
  10759. "BSD-3-Clause"
  10760. ],
  10761. "authors": [
  10762. {
  10763. "name": "Sebastian Bergmann",
  10764. "email": "sebastian@phpunit.de"
  10765. }
  10766. ],
  10767. "description": "Provides functionality to handle HHVM/PHP environments",
  10768. "homepage": "http://www.github.com/sebastianbergmann/environment",
  10769. "keywords": [
  10770. "Xdebug",
  10771. "environment",
  10772. "hhvm"
  10773. ],
  10774. "support": {
  10775. "issues": "https://github.com/sebastianbergmann/environment/issues",
  10776. "source": "https://github.com/sebastianbergmann/environment/tree/5.1.3"
  10777. },
  10778. "funding": [
  10779. {
  10780. "url": "https://github.com/sebastianbergmann",
  10781. "type": "github"
  10782. }
  10783. ],
  10784. "time": "2020-09-28T05:52:38+00:00"
  10785. },
  10786. {
  10787. "name": "sebastian/exporter",
  10788. "version": "4.0.3",
  10789. "source": {
  10790. "type": "git",
  10791. "url": "https://github.com/sebastianbergmann/exporter.git",
  10792. "reference": "d89cc98761b8cb5a1a235a6b703ae50d34080e65"
  10793. },
  10794. "dist": {
  10795. "type": "zip",
  10796. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/d89cc98761b8cb5a1a235a6b703ae50d34080e65",
  10797. "reference": "d89cc98761b8cb5a1a235a6b703ae50d34080e65",
  10798. "shasum": ""
  10799. },
  10800. "require": {
  10801. "php": ">=7.3",
  10802. "sebastian/recursion-context": "^4.0"
  10803. },
  10804. "require-dev": {
  10805. "ext-mbstring": "*",
  10806. "phpunit/phpunit": "^9.3"
  10807. },
  10808. "type": "library",
  10809. "extra": {
  10810. "branch-alias": {
  10811. "dev-master": "4.0-dev"
  10812. }
  10813. },
  10814. "autoload": {
  10815. "classmap": [
  10816. "src/"
  10817. ]
  10818. },
  10819. "notification-url": "https://packagist.org/downloads/",
  10820. "license": [
  10821. "BSD-3-Clause"
  10822. ],
  10823. "authors": [
  10824. {
  10825. "name": "Sebastian Bergmann",
  10826. "email": "sebastian@phpunit.de"
  10827. },
  10828. {
  10829. "name": "Jeff Welch",
  10830. "email": "whatthejeff@gmail.com"
  10831. },
  10832. {
  10833. "name": "Volker Dusch",
  10834. "email": "github@wallbash.com"
  10835. },
  10836. {
  10837. "name": "Adam Harvey",
  10838. "email": "aharvey@php.net"
  10839. },
  10840. {
  10841. "name": "Bernhard Schussek",
  10842. "email": "bschussek@gmail.com"
  10843. }
  10844. ],
  10845. "description": "Provides the functionality to export PHP variables for visualization",
  10846. "homepage": "http://www.github.com/sebastianbergmann/exporter",
  10847. "keywords": [
  10848. "export",
  10849. "exporter"
  10850. ],
  10851. "support": {
  10852. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  10853. "source": "https://github.com/sebastianbergmann/exporter/tree/4.0.3"
  10854. },
  10855. "funding": [
  10856. {
  10857. "url": "https://github.com/sebastianbergmann",
  10858. "type": "github"
  10859. }
  10860. ],
  10861. "time": "2020-09-28T05:24:23+00:00"
  10862. },
  10863. {
  10864. "name": "sebastian/global-state",
  10865. "version": "5.0.2",
  10866. "source": {
  10867. "type": "git",
  10868. "url": "https://github.com/sebastianbergmann/global-state.git",
  10869. "reference": "a90ccbddffa067b51f574dea6eb25d5680839455"
  10870. },
  10871. "dist": {
  10872. "type": "zip",
  10873. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/a90ccbddffa067b51f574dea6eb25d5680839455",
  10874. "reference": "a90ccbddffa067b51f574dea6eb25d5680839455",
  10875. "shasum": ""
  10876. },
  10877. "require": {
  10878. "php": ">=7.3",
  10879. "sebastian/object-reflector": "^2.0",
  10880. "sebastian/recursion-context": "^4.0"
  10881. },
  10882. "require-dev": {
  10883. "ext-dom": "*",
  10884. "phpunit/phpunit": "^9.3"
  10885. },
  10886. "suggest": {
  10887. "ext-uopz": "*"
  10888. },
  10889. "type": "library",
  10890. "extra": {
  10891. "branch-alias": {
  10892. "dev-master": "5.0-dev"
  10893. }
  10894. },
  10895. "autoload": {
  10896. "classmap": [
  10897. "src/"
  10898. ]
  10899. },
  10900. "notification-url": "https://packagist.org/downloads/",
  10901. "license": [
  10902. "BSD-3-Clause"
  10903. ],
  10904. "authors": [
  10905. {
  10906. "name": "Sebastian Bergmann",
  10907. "email": "sebastian@phpunit.de"
  10908. }
  10909. ],
  10910. "description": "Snapshotting of global state",
  10911. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  10912. "keywords": [
  10913. "global state"
  10914. ],
  10915. "support": {
  10916. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  10917. "source": "https://github.com/sebastianbergmann/global-state/tree/5.0.2"
  10918. },
  10919. "funding": [
  10920. {
  10921. "url": "https://github.com/sebastianbergmann",
  10922. "type": "github"
  10923. }
  10924. ],
  10925. "time": "2020-10-26T15:55:19+00:00"
  10926. },
  10927. {
  10928. "name": "sebastian/lines-of-code",
  10929. "version": "1.0.3",
  10930. "source": {
  10931. "type": "git",
  10932. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  10933. "reference": "c1c2e997aa3146983ed888ad08b15470a2e22ecc"
  10934. },
  10935. "dist": {
  10936. "type": "zip",
  10937. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/c1c2e997aa3146983ed888ad08b15470a2e22ecc",
  10938. "reference": "c1c2e997aa3146983ed888ad08b15470a2e22ecc",
  10939. "shasum": ""
  10940. },
  10941. "require": {
  10942. "nikic/php-parser": "^4.6",
  10943. "php": ">=7.3"
  10944. },
  10945. "require-dev": {
  10946. "phpunit/phpunit": "^9.3"
  10947. },
  10948. "type": "library",
  10949. "extra": {
  10950. "branch-alias": {
  10951. "dev-master": "1.0-dev"
  10952. }
  10953. },
  10954. "autoload": {
  10955. "classmap": [
  10956. "src/"
  10957. ]
  10958. },
  10959. "notification-url": "https://packagist.org/downloads/",
  10960. "license": [
  10961. "BSD-3-Clause"
  10962. ],
  10963. "authors": [
  10964. {
  10965. "name": "Sebastian Bergmann",
  10966. "email": "sebastian@phpunit.de",
  10967. "role": "lead"
  10968. }
  10969. ],
  10970. "description": "Library for counting the lines of code in PHP source code",
  10971. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  10972. "support": {
  10973. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  10974. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/1.0.3"
  10975. },
  10976. "funding": [
  10977. {
  10978. "url": "https://github.com/sebastianbergmann",
  10979. "type": "github"
  10980. }
  10981. ],
  10982. "time": "2020-11-28T06:42:11+00:00"
  10983. },
  10984. {
  10985. "name": "sebastian/object-enumerator",
  10986. "version": "4.0.4",
  10987. "source": {
  10988. "type": "git",
  10989. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  10990. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71"
  10991. },
  10992. "dist": {
  10993. "type": "zip",
  10994. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/5c9eeac41b290a3712d88851518825ad78f45c71",
  10995. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71",
  10996. "shasum": ""
  10997. },
  10998. "require": {
  10999. "php": ">=7.3",
  11000. "sebastian/object-reflector": "^2.0",
  11001. "sebastian/recursion-context": "^4.0"
  11002. },
  11003. "require-dev": {
  11004. "phpunit/phpunit": "^9.3"
  11005. },
  11006. "type": "library",
  11007. "extra": {
  11008. "branch-alias": {
  11009. "dev-master": "4.0-dev"
  11010. }
  11011. },
  11012. "autoload": {
  11013. "classmap": [
  11014. "src/"
  11015. ]
  11016. },
  11017. "notification-url": "https://packagist.org/downloads/",
  11018. "license": [
  11019. "BSD-3-Clause"
  11020. ],
  11021. "authors": [
  11022. {
  11023. "name": "Sebastian Bergmann",
  11024. "email": "sebastian@phpunit.de"
  11025. }
  11026. ],
  11027. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  11028. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  11029. "support": {
  11030. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  11031. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/4.0.4"
  11032. },
  11033. "funding": [
  11034. {
  11035. "url": "https://github.com/sebastianbergmann",
  11036. "type": "github"
  11037. }
  11038. ],
  11039. "time": "2020-10-26T13:12:34+00:00"
  11040. },
  11041. {
  11042. "name": "sebastian/object-reflector",
  11043. "version": "2.0.4",
  11044. "source": {
  11045. "type": "git",
  11046. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  11047. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7"
  11048. },
  11049. "dist": {
  11050. "type": "zip",
  11051. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  11052. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  11053. "shasum": ""
  11054. },
  11055. "require": {
  11056. "php": ">=7.3"
  11057. },
  11058. "require-dev": {
  11059. "phpunit/phpunit": "^9.3"
  11060. },
  11061. "type": "library",
  11062. "extra": {
  11063. "branch-alias": {
  11064. "dev-master": "2.0-dev"
  11065. }
  11066. },
  11067. "autoload": {
  11068. "classmap": [
  11069. "src/"
  11070. ]
  11071. },
  11072. "notification-url": "https://packagist.org/downloads/",
  11073. "license": [
  11074. "BSD-3-Clause"
  11075. ],
  11076. "authors": [
  11077. {
  11078. "name": "Sebastian Bergmann",
  11079. "email": "sebastian@phpunit.de"
  11080. }
  11081. ],
  11082. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  11083. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  11084. "support": {
  11085. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  11086. "source": "https://github.com/sebastianbergmann/object-reflector/tree/2.0.4"
  11087. },
  11088. "funding": [
  11089. {
  11090. "url": "https://github.com/sebastianbergmann",
  11091. "type": "github"
  11092. }
  11093. ],
  11094. "time": "2020-10-26T13:14:26+00:00"
  11095. },
  11096. {
  11097. "name": "sebastian/recursion-context",
  11098. "version": "4.0.4",
  11099. "source": {
  11100. "type": "git",
  11101. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  11102. "reference": "cd9d8cf3c5804de4341c283ed787f099f5506172"
  11103. },
  11104. "dist": {
  11105. "type": "zip",
  11106. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/cd9d8cf3c5804de4341c283ed787f099f5506172",
  11107. "reference": "cd9d8cf3c5804de4341c283ed787f099f5506172",
  11108. "shasum": ""
  11109. },
  11110. "require": {
  11111. "php": ">=7.3"
  11112. },
  11113. "require-dev": {
  11114. "phpunit/phpunit": "^9.3"
  11115. },
  11116. "type": "library",
  11117. "extra": {
  11118. "branch-alias": {
  11119. "dev-master": "4.0-dev"
  11120. }
  11121. },
  11122. "autoload": {
  11123. "classmap": [
  11124. "src/"
  11125. ]
  11126. },
  11127. "notification-url": "https://packagist.org/downloads/",
  11128. "license": [
  11129. "BSD-3-Clause"
  11130. ],
  11131. "authors": [
  11132. {
  11133. "name": "Sebastian Bergmann",
  11134. "email": "sebastian@phpunit.de"
  11135. },
  11136. {
  11137. "name": "Jeff Welch",
  11138. "email": "whatthejeff@gmail.com"
  11139. },
  11140. {
  11141. "name": "Adam Harvey",
  11142. "email": "aharvey@php.net"
  11143. }
  11144. ],
  11145. "description": "Provides functionality to recursively process PHP variables",
  11146. "homepage": "http://www.github.com/sebastianbergmann/recursion-context",
  11147. "support": {
  11148. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  11149. "source": "https://github.com/sebastianbergmann/recursion-context/tree/4.0.4"
  11150. },
  11151. "funding": [
  11152. {
  11153. "url": "https://github.com/sebastianbergmann",
  11154. "type": "github"
  11155. }
  11156. ],
  11157. "time": "2020-10-26T13:17:30+00:00"
  11158. },
  11159. {
  11160. "name": "sebastian/resource-operations",
  11161. "version": "3.0.3",
  11162. "source": {
  11163. "type": "git",
  11164. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  11165. "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8"
  11166. },
  11167. "dist": {
  11168. "type": "zip",
  11169. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8",
  11170. "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8",
  11171. "shasum": ""
  11172. },
  11173. "require": {
  11174. "php": ">=7.3"
  11175. },
  11176. "require-dev": {
  11177. "phpunit/phpunit": "^9.0"
  11178. },
  11179. "type": "library",
  11180. "extra": {
  11181. "branch-alias": {
  11182. "dev-master": "3.0-dev"
  11183. }
  11184. },
  11185. "autoload": {
  11186. "classmap": [
  11187. "src/"
  11188. ]
  11189. },
  11190. "notification-url": "https://packagist.org/downloads/",
  11191. "license": [
  11192. "BSD-3-Clause"
  11193. ],
  11194. "authors": [
  11195. {
  11196. "name": "Sebastian Bergmann",
  11197. "email": "sebastian@phpunit.de"
  11198. }
  11199. ],
  11200. "description": "Provides a list of PHP built-in functions that operate on resources",
  11201. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  11202. "support": {
  11203. "issues": "https://github.com/sebastianbergmann/resource-operations/issues",
  11204. "source": "https://github.com/sebastianbergmann/resource-operations/tree/3.0.3"
  11205. },
  11206. "funding": [
  11207. {
  11208. "url": "https://github.com/sebastianbergmann",
  11209. "type": "github"
  11210. }
  11211. ],
  11212. "time": "2020-09-28T06:45:17+00:00"
  11213. },
  11214. {
  11215. "name": "sebastian/type",
  11216. "version": "2.3.1",
  11217. "source": {
  11218. "type": "git",
  11219. "url": "https://github.com/sebastianbergmann/type.git",
  11220. "reference": "81cd61ab7bbf2de744aba0ea61fae32f721df3d2"
  11221. },
  11222. "dist": {
  11223. "type": "zip",
  11224. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/81cd61ab7bbf2de744aba0ea61fae32f721df3d2",
  11225. "reference": "81cd61ab7bbf2de744aba0ea61fae32f721df3d2",
  11226. "shasum": ""
  11227. },
  11228. "require": {
  11229. "php": ">=7.3"
  11230. },
  11231. "require-dev": {
  11232. "phpunit/phpunit": "^9.3"
  11233. },
  11234. "type": "library",
  11235. "extra": {
  11236. "branch-alias": {
  11237. "dev-master": "2.3-dev"
  11238. }
  11239. },
  11240. "autoload": {
  11241. "classmap": [
  11242. "src/"
  11243. ]
  11244. },
  11245. "notification-url": "https://packagist.org/downloads/",
  11246. "license": [
  11247. "BSD-3-Clause"
  11248. ],
  11249. "authors": [
  11250. {
  11251. "name": "Sebastian Bergmann",
  11252. "email": "sebastian@phpunit.de",
  11253. "role": "lead"
  11254. }
  11255. ],
  11256. "description": "Collection of value objects that represent the types of the PHP type system",
  11257. "homepage": "https://github.com/sebastianbergmann/type",
  11258. "support": {
  11259. "issues": "https://github.com/sebastianbergmann/type/issues",
  11260. "source": "https://github.com/sebastianbergmann/type/tree/2.3.1"
  11261. },
  11262. "funding": [
  11263. {
  11264. "url": "https://github.com/sebastianbergmann",
  11265. "type": "github"
  11266. }
  11267. ],
  11268. "time": "2020-10-26T13:18:59+00:00"
  11269. },
  11270. {
  11271. "name": "sebastian/version",
  11272. "version": "3.0.2",
  11273. "source": {
  11274. "type": "git",
  11275. "url": "https://github.com/sebastianbergmann/version.git",
  11276. "reference": "c6c1022351a901512170118436c764e473f6de8c"
  11277. },
  11278. "dist": {
  11279. "type": "zip",
  11280. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c6c1022351a901512170118436c764e473f6de8c",
  11281. "reference": "c6c1022351a901512170118436c764e473f6de8c",
  11282. "shasum": ""
  11283. },
  11284. "require": {
  11285. "php": ">=7.3"
  11286. },
  11287. "type": "library",
  11288. "extra": {
  11289. "branch-alias": {
  11290. "dev-master": "3.0-dev"
  11291. }
  11292. },
  11293. "autoload": {
  11294. "classmap": [
  11295. "src/"
  11296. ]
  11297. },
  11298. "notification-url": "https://packagist.org/downloads/",
  11299. "license": [
  11300. "BSD-3-Clause"
  11301. ],
  11302. "authors": [
  11303. {
  11304. "name": "Sebastian Bergmann",
  11305. "email": "sebastian@phpunit.de",
  11306. "role": "lead"
  11307. }
  11308. ],
  11309. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  11310. "homepage": "https://github.com/sebastianbergmann/version",
  11311. "support": {
  11312. "issues": "https://github.com/sebastianbergmann/version/issues",
  11313. "source": "https://github.com/sebastianbergmann/version/tree/3.0.2"
  11314. },
  11315. "funding": [
  11316. {
  11317. "url": "https://github.com/sebastianbergmann",
  11318. "type": "github"
  11319. }
  11320. ],
  11321. "time": "2020-09-28T06:39:44+00:00"
  11322. },
  11323. {
  11324. "name": "seld/jsonlint",
  11325. "version": "1.8.3",
  11326. "source": {
  11327. "type": "git",
  11328. "url": "https://github.com/Seldaek/jsonlint.git",
  11329. "reference": "9ad6ce79c342fbd44df10ea95511a1b24dee5b57"
  11330. },
  11331. "dist": {
  11332. "type": "zip",
  11333. "url": "https://api.github.com/repos/Seldaek/jsonlint/zipball/9ad6ce79c342fbd44df10ea95511a1b24dee5b57",
  11334. "reference": "9ad6ce79c342fbd44df10ea95511a1b24dee5b57",
  11335. "shasum": ""
  11336. },
  11337. "require": {
  11338. "php": "^5.3 || ^7.0 || ^8.0"
  11339. },
  11340. "require-dev": {
  11341. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0"
  11342. },
  11343. "bin": [
  11344. "bin/jsonlint"
  11345. ],
  11346. "type": "library",
  11347. "autoload": {
  11348. "psr-4": {
  11349. "Seld\\JsonLint\\": "src/Seld/JsonLint/"
  11350. }
  11351. },
  11352. "notification-url": "https://packagist.org/downloads/",
  11353. "license": [
  11354. "MIT"
  11355. ],
  11356. "authors": [
  11357. {
  11358. "name": "Jordi Boggiano",
  11359. "email": "j.boggiano@seld.be",
  11360. "homepage": "http://seld.be"
  11361. }
  11362. ],
  11363. "description": "JSON Linter",
  11364. "keywords": [
  11365. "json",
  11366. "linter",
  11367. "parser",
  11368. "validator"
  11369. ],
  11370. "support": {
  11371. "issues": "https://github.com/Seldaek/jsonlint/issues",
  11372. "source": "https://github.com/Seldaek/jsonlint/tree/1.8.3"
  11373. },
  11374. "funding": [
  11375. {
  11376. "url": "https://github.com/Seldaek",
  11377. "type": "github"
  11378. },
  11379. {
  11380. "url": "https://tidelift.com/funding/github/packagist/seld/jsonlint",
  11381. "type": "tidelift"
  11382. }
  11383. ],
  11384. "time": "2020-11-11T09:19:24+00:00"
  11385. },
  11386. {
  11387. "name": "seld/phar-utils",
  11388. "version": "1.1.1",
  11389. "source": {
  11390. "type": "git",
  11391. "url": "https://github.com/Seldaek/phar-utils.git",
  11392. "reference": "8674b1d84ffb47cc59a101f5d5a3b61e87d23796"
  11393. },
  11394. "dist": {
  11395. "type": "zip",
  11396. "url": "https://api.github.com/repos/Seldaek/phar-utils/zipball/8674b1d84ffb47cc59a101f5d5a3b61e87d23796",
  11397. "reference": "8674b1d84ffb47cc59a101f5d5a3b61e87d23796",
  11398. "shasum": ""
  11399. },
  11400. "require": {
  11401. "php": ">=5.3"
  11402. },
  11403. "type": "library",
  11404. "extra": {
  11405. "branch-alias": {
  11406. "dev-master": "1.x-dev"
  11407. }
  11408. },
  11409. "autoload": {
  11410. "psr-4": {
  11411. "Seld\\PharUtils\\": "src/"
  11412. }
  11413. },
  11414. "notification-url": "https://packagist.org/downloads/",
  11415. "license": [
  11416. "MIT"
  11417. ],
  11418. "authors": [
  11419. {
  11420. "name": "Jordi Boggiano",
  11421. "email": "j.boggiano@seld.be"
  11422. }
  11423. ],
  11424. "description": "PHAR file format utilities, for when PHP phars you up",
  11425. "keywords": [
  11426. "phar"
  11427. ],
  11428. "support": {
  11429. "issues": "https://github.com/Seldaek/phar-utils/issues",
  11430. "source": "https://github.com/Seldaek/phar-utils/tree/master"
  11431. },
  11432. "time": "2020-07-07T18:42:57+00:00"
  11433. },
  11434. {
  11435. "name": "symfony/debug",
  11436. "version": "v4.4.18",
  11437. "source": {
  11438. "type": "git",
  11439. "url": "https://github.com/symfony/debug.git",
  11440. "reference": "5dfc7825f3bfe9bb74b23d8b8ce0e0894e32b544"
  11441. },
  11442. "dist": {
  11443. "type": "zip",
  11444. "url": "https://api.github.com/repos/symfony/debug/zipball/5dfc7825f3bfe9bb74b23d8b8ce0e0894e32b544",
  11445. "reference": "5dfc7825f3bfe9bb74b23d8b8ce0e0894e32b544",
  11446. "shasum": ""
  11447. },
  11448. "require": {
  11449. "php": ">=7.1.3",
  11450. "psr/log": "~1.0",
  11451. "symfony/polyfill-php80": "^1.15"
  11452. },
  11453. "conflict": {
  11454. "symfony/http-kernel": "<3.4"
  11455. },
  11456. "require-dev": {
  11457. "symfony/http-kernel": "^3.4|^4.0|^5.0"
  11458. },
  11459. "type": "library",
  11460. "autoload": {
  11461. "psr-4": {
  11462. "Symfony\\Component\\Debug\\": ""
  11463. },
  11464. "exclude-from-classmap": [
  11465. "/Tests/"
  11466. ]
  11467. },
  11468. "notification-url": "https://packagist.org/downloads/",
  11469. "license": [
  11470. "MIT"
  11471. ],
  11472. "authors": [
  11473. {
  11474. "name": "Fabien Potencier",
  11475. "email": "fabien@symfony.com"
  11476. },
  11477. {
  11478. "name": "Symfony Community",
  11479. "homepage": "https://symfony.com/contributors"
  11480. }
  11481. ],
  11482. "description": "Symfony Debug Component",
  11483. "homepage": "https://symfony.com",
  11484. "support": {
  11485. "source": "https://github.com/symfony/debug/tree/v4.4.18"
  11486. },
  11487. "funding": [
  11488. {
  11489. "url": "https://symfony.com/sponsor",
  11490. "type": "custom"
  11491. },
  11492. {
  11493. "url": "https://github.com/fabpot",
  11494. "type": "github"
  11495. },
  11496. {
  11497. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11498. "type": "tidelift"
  11499. }
  11500. ],
  11501. "time": "2020-12-10T16:34:26+00:00"
  11502. },
  11503. {
  11504. "name": "symfony/filesystem",
  11505. "version": "v5.2.1",
  11506. "source": {
  11507. "type": "git",
  11508. "url": "https://github.com/symfony/filesystem.git",
  11509. "reference": "fa8f8cab6b65e2d99a118e082935344c5ba8c60d"
  11510. },
  11511. "dist": {
  11512. "type": "zip",
  11513. "url": "https://api.github.com/repos/symfony/filesystem/zipball/fa8f8cab6b65e2d99a118e082935344c5ba8c60d",
  11514. "reference": "fa8f8cab6b65e2d99a118e082935344c5ba8c60d",
  11515. "shasum": ""
  11516. },
  11517. "require": {
  11518. "php": ">=7.2.5",
  11519. "symfony/polyfill-ctype": "~1.8"
  11520. },
  11521. "type": "library",
  11522. "autoload": {
  11523. "psr-4": {
  11524. "Symfony\\Component\\Filesystem\\": ""
  11525. },
  11526. "exclude-from-classmap": [
  11527. "/Tests/"
  11528. ]
  11529. },
  11530. "notification-url": "https://packagist.org/downloads/",
  11531. "license": [
  11532. "MIT"
  11533. ],
  11534. "authors": [
  11535. {
  11536. "name": "Fabien Potencier",
  11537. "email": "fabien@symfony.com"
  11538. },
  11539. {
  11540. "name": "Symfony Community",
  11541. "homepage": "https://symfony.com/contributors"
  11542. }
  11543. ],
  11544. "description": "Symfony Filesystem Component",
  11545. "homepage": "https://symfony.com",
  11546. "support": {
  11547. "source": "https://github.com/symfony/filesystem/tree/v5.2.1"
  11548. },
  11549. "funding": [
  11550. {
  11551. "url": "https://symfony.com/sponsor",
  11552. "type": "custom"
  11553. },
  11554. {
  11555. "url": "https://github.com/fabpot",
  11556. "type": "github"
  11557. },
  11558. {
  11559. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11560. "type": "tidelift"
  11561. }
  11562. ],
  11563. "time": "2020-11-30T17:05:38+00:00"
  11564. },
  11565. {
  11566. "name": "theseer/tokenizer",
  11567. "version": "1.2.0",
  11568. "source": {
  11569. "type": "git",
  11570. "url": "https://github.com/theseer/tokenizer.git",
  11571. "reference": "75a63c33a8577608444246075ea0af0d052e452a"
  11572. },
  11573. "dist": {
  11574. "type": "zip",
  11575. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/75a63c33a8577608444246075ea0af0d052e452a",
  11576. "reference": "75a63c33a8577608444246075ea0af0d052e452a",
  11577. "shasum": ""
  11578. },
  11579. "require": {
  11580. "ext-dom": "*",
  11581. "ext-tokenizer": "*",
  11582. "ext-xmlwriter": "*",
  11583. "php": "^7.2 || ^8.0"
  11584. },
  11585. "type": "library",
  11586. "autoload": {
  11587. "classmap": [
  11588. "src/"
  11589. ]
  11590. },
  11591. "notification-url": "https://packagist.org/downloads/",
  11592. "license": [
  11593. "BSD-3-Clause"
  11594. ],
  11595. "authors": [
  11596. {
  11597. "name": "Arne Blankerts",
  11598. "email": "arne@blankerts.de",
  11599. "role": "Developer"
  11600. }
  11601. ],
  11602. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  11603. "support": {
  11604. "issues": "https://github.com/theseer/tokenizer/issues",
  11605. "source": "https://github.com/theseer/tokenizer/tree/master"
  11606. },
  11607. "funding": [
  11608. {
  11609. "url": "https://github.com/theseer",
  11610. "type": "github"
  11611. }
  11612. ],
  11613. "time": "2020-07-12T23:59:07+00:00"
  11614. },
  11615. {
  11616. "name": "webmozart/assert",
  11617. "version": "1.9.1",
  11618. "source": {
  11619. "type": "git",
  11620. "url": "https://github.com/webmozart/assert.git",
  11621. "reference": "bafc69caeb4d49c39fd0779086c03a3738cbb389"
  11622. },
  11623. "dist": {
  11624. "type": "zip",
  11625. "url": "https://api.github.com/repos/webmozart/assert/zipball/bafc69caeb4d49c39fd0779086c03a3738cbb389",
  11626. "reference": "bafc69caeb4d49c39fd0779086c03a3738cbb389",
  11627. "shasum": ""
  11628. },
  11629. "require": {
  11630. "php": "^5.3.3 || ^7.0 || ^8.0",
  11631. "symfony/polyfill-ctype": "^1.8"
  11632. },
  11633. "conflict": {
  11634. "phpstan/phpstan": "<0.12.20",
  11635. "vimeo/psalm": "<3.9.1"
  11636. },
  11637. "require-dev": {
  11638. "phpunit/phpunit": "^4.8.36 || ^7.5.13"
  11639. },
  11640. "type": "library",
  11641. "autoload": {
  11642. "psr-4": {
  11643. "Webmozart\\Assert\\": "src/"
  11644. }
  11645. },
  11646. "notification-url": "https://packagist.org/downloads/",
  11647. "license": [
  11648. "MIT"
  11649. ],
  11650. "authors": [
  11651. {
  11652. "name": "Bernhard Schussek",
  11653. "email": "bschussek@gmail.com"
  11654. }
  11655. ],
  11656. "description": "Assertions to validate method input/output with nice error messages.",
  11657. "keywords": [
  11658. "assert",
  11659. "check",
  11660. "validate"
  11661. ],
  11662. "support": {
  11663. "issues": "https://github.com/webmozart/assert/issues",
  11664. "source": "https://github.com/webmozart/assert/tree/master"
  11665. },
  11666. "time": "2020-07-08T17:02:28+00:00"
  11667. }
  11668. ],
  11669. "aliases": [],
  11670. "minimum-stability": "dev",
  11671. "stability-flags": [],
  11672. "prefer-stable": true,
  11673. "prefer-lowest": false,
  11674. "platform": {
  11675. "php": "^7.2.5|^8.0",
  11676. "ext-json": "*",
  11677. "ext-mbstring": "*",
  11678. "ext-openssl": "*",
  11679. "ext-simplexml": "*"
  11680. },
  11681. "platform-dev": [],
  11682. "plugin-api-version": "2.0.0"
  11683. }