composer.lock 356 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165
  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": "207d104243d5ac152aca1e773c3dae3d",
  8. "packages": [
  9. {
  10. "name": "asm89/stack-cors",
  11. "version": "v2.0.1",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/asm89/stack-cors.git",
  15. "reference": "23f469e81c65e2fb7fc7bce371fbdc363fe32adf"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/asm89/stack-cors/zipball/23f469e81c65e2fb7fc7bce371fbdc363fe32adf",
  20. "reference": "23f469e81c65e2fb7fc7bce371fbdc363fe32adf",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "php": "^7.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. "time": "2020-05-31T07:17:05+00:00"
  60. },
  61. {
  62. "name": "bacon/bacon-qr-code",
  63. "version": "2.0.0",
  64. "source": {
  65. "type": "git",
  66. "url": "https://github.com/Bacon/BaconQrCode.git",
  67. "reference": "eaac909da3ccc32b748a65b127acd8918f58d9b0"
  68. },
  69. "dist": {
  70. "type": "zip",
  71. "url": "https://api.github.com/repos/Bacon/BaconQrCode/zipball/eaac909da3ccc32b748a65b127acd8918f58d9b0",
  72. "reference": "eaac909da3ccc32b748a65b127acd8918f58d9b0",
  73. "shasum": ""
  74. },
  75. "require": {
  76. "dasprid/enum": "^1.0",
  77. "ext-iconv": "*",
  78. "php": "^7.1"
  79. },
  80. "require-dev": {
  81. "phly/keep-a-changelog": "^1.4",
  82. "phpunit/phpunit": "^6.4",
  83. "squizlabs/php_codesniffer": "^3.1"
  84. },
  85. "suggest": {
  86. "ext-imagick": "to generate QR code images"
  87. },
  88. "type": "library",
  89. "autoload": {
  90. "psr-4": {
  91. "BaconQrCode\\": "src/"
  92. }
  93. },
  94. "notification-url": "https://packagist.org/downloads/",
  95. "license": [
  96. "BSD-2-Clause"
  97. ],
  98. "authors": [
  99. {
  100. "name": "Ben Scholzen 'DASPRiD'",
  101. "email": "mail@dasprids.de",
  102. "homepage": "http://www.dasprids.de",
  103. "role": "Developer"
  104. }
  105. ],
  106. "description": "BaconQrCode is a QR code generator for PHP.",
  107. "homepage": "https://github.com/Bacon/BaconQrCode",
  108. "time": "2018-04-25T17:53:56+00:00"
  109. },
  110. {
  111. "name": "brick/math",
  112. "version": "0.9.1",
  113. "source": {
  114. "type": "git",
  115. "url": "https://github.com/brick/math.git",
  116. "reference": "283a40c901101e66de7061bd359252c013dcc43c"
  117. },
  118. "dist": {
  119. "type": "zip",
  120. "url": "https://api.github.com/repos/brick/math/zipball/283a40c901101e66de7061bd359252c013dcc43c",
  121. "reference": "283a40c901101e66de7061bd359252c013dcc43c",
  122. "shasum": ""
  123. },
  124. "require": {
  125. "ext-json": "*",
  126. "php": "^7.1|^8.0"
  127. },
  128. "require-dev": {
  129. "php-coveralls/php-coveralls": "^2.2",
  130. "phpunit/phpunit": "^7.5.15|^8.5",
  131. "vimeo/psalm": "^3.5"
  132. },
  133. "type": "library",
  134. "autoload": {
  135. "psr-4": {
  136. "Brick\\Math\\": "src/"
  137. }
  138. },
  139. "notification-url": "https://packagist.org/downloads/",
  140. "license": [
  141. "MIT"
  142. ],
  143. "description": "Arbitrary-precision arithmetic library",
  144. "keywords": [
  145. "Arbitrary-precision",
  146. "BigInteger",
  147. "BigRational",
  148. "arithmetic",
  149. "bigdecimal",
  150. "bignum",
  151. "brick",
  152. "math"
  153. ],
  154. "funding": [
  155. {
  156. "url": "https://tidelift.com/funding/github/packagist/brick/math",
  157. "type": "tidelift"
  158. }
  159. ],
  160. "time": "2020-08-18T23:57:15+00:00"
  161. },
  162. {
  163. "name": "caouecs/laravel-lang",
  164. "version": "7.0.3",
  165. "source": {
  166. "type": "git",
  167. "url": "https://github.com/caouecs/lang.git",
  168. "reference": "2cb9932f781415f1669ce27d29e5b86399ab164a"
  169. },
  170. "dist": {
  171. "type": "zip",
  172. "url": "https://api.github.com/repos/caouecs/lang/zipball/2cb9932f781415f1669ce27d29e5b86399ab164a",
  173. "reference": "2cb9932f781415f1669ce27d29e5b86399ab164a",
  174. "shasum": ""
  175. },
  176. "require": {
  177. "ext-json": "*"
  178. },
  179. "suggest": {
  180. "andrey-helldar/laravel-lang-publisher": "Easy installation and update of translation files for your project",
  181. "arcanedev/laravel-lang": "Translations manager and checker for Laravel 5",
  182. "overtrue/laravel-lang": "Command to add languages in your project"
  183. },
  184. "type": "library",
  185. "notification-url": "https://packagist.org/downloads/",
  186. "license": [
  187. "MIT"
  188. ],
  189. "authors": [
  190. {
  191. "name": "caouecs",
  192. "email": "caouecs@caouecs.net"
  193. }
  194. ],
  195. "description": "Languages for Laravel",
  196. "keywords": [
  197. "lang",
  198. "languages",
  199. "laravel",
  200. "lpm"
  201. ],
  202. "abandoned": "https://github.com/Laravel-Lang/lang",
  203. "time": "2020-08-23T08:17:21+00:00"
  204. },
  205. {
  206. "name": "composer/ca-bundle",
  207. "version": "1.2.8",
  208. "source": {
  209. "type": "git",
  210. "url": "https://github.com/composer/ca-bundle.git",
  211. "reference": "8a7ecad675253e4654ea05505233285377405215"
  212. },
  213. "dist": {
  214. "type": "zip",
  215. "url": "https://api.github.com/repos/composer/ca-bundle/zipball/8a7ecad675253e4654ea05505233285377405215",
  216. "reference": "8a7ecad675253e4654ea05505233285377405215",
  217. "shasum": ""
  218. },
  219. "require": {
  220. "ext-openssl": "*",
  221. "ext-pcre": "*",
  222. "php": "^5.3.2 || ^7.0 || ^8.0"
  223. },
  224. "require-dev": {
  225. "phpunit/phpunit": "^4.8.35 || ^5.7 || 6.5 - 8",
  226. "psr/log": "^1.0",
  227. "symfony/process": "^2.5 || ^3.0 || ^4.0 || ^5.0"
  228. },
  229. "type": "library",
  230. "extra": {
  231. "branch-alias": {
  232. "dev-master": "1.x-dev"
  233. }
  234. },
  235. "autoload": {
  236. "psr-4": {
  237. "Composer\\CaBundle\\": "src"
  238. }
  239. },
  240. "notification-url": "https://packagist.org/downloads/",
  241. "license": [
  242. "MIT"
  243. ],
  244. "authors": [
  245. {
  246. "name": "Jordi Boggiano",
  247. "email": "j.boggiano@seld.be",
  248. "homepage": "http://seld.be"
  249. }
  250. ],
  251. "description": "Lets you find a path to the system CA bundle, and includes a fallback to the Mozilla CA bundle.",
  252. "keywords": [
  253. "cabundle",
  254. "cacert",
  255. "certificate",
  256. "ssl",
  257. "tls"
  258. ],
  259. "funding": [
  260. {
  261. "url": "https://packagist.com",
  262. "type": "custom"
  263. },
  264. {
  265. "url": "https://github.com/composer",
  266. "type": "github"
  267. },
  268. {
  269. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  270. "type": "tidelift"
  271. }
  272. ],
  273. "time": "2020-08-23T12:54:47+00:00"
  274. },
  275. {
  276. "name": "dasprid/enum",
  277. "version": "1.0.2",
  278. "source": {
  279. "type": "git",
  280. "url": "https://github.com/DASPRiD/Enum.git",
  281. "reference": "6ccc0d7141a7f149e3c56cb0ce5f05d9152cfd07"
  282. },
  283. "dist": {
  284. "type": "zip",
  285. "url": "https://api.github.com/repos/DASPRiD/Enum/zipball/6ccc0d7141a7f149e3c56cb0ce5f05d9152cfd07",
  286. "reference": "6ccc0d7141a7f149e3c56cb0ce5f05d9152cfd07",
  287. "shasum": ""
  288. },
  289. "require-dev": {
  290. "phpunit/phpunit": "^7 | ^8 | ^9",
  291. "squizlabs/php_codesniffer": "^3.4"
  292. },
  293. "type": "library",
  294. "autoload": {
  295. "psr-4": {
  296. "DASPRiD\\Enum\\": "src/"
  297. }
  298. },
  299. "notification-url": "https://packagist.org/downloads/",
  300. "license": [
  301. "BSD-2-Clause"
  302. ],
  303. "authors": [
  304. {
  305. "name": "Ben Scholzen 'DASPRiD'",
  306. "email": "mail@dasprids.de",
  307. "homepage": "https://dasprids.de/",
  308. "role": "Developer"
  309. }
  310. ],
  311. "description": "PHP 7.1 enum implementation",
  312. "keywords": [
  313. "enum",
  314. "map"
  315. ],
  316. "time": "2020-07-30T16:37:13+00:00"
  317. },
  318. {
  319. "name": "dnoegel/php-xdg-base-dir",
  320. "version": "v0.1.1",
  321. "source": {
  322. "type": "git",
  323. "url": "https://github.com/dnoegel/php-xdg-base-dir.git",
  324. "reference": "8f8a6e48c5ecb0f991c2fdcf5f154a47d85f9ffd"
  325. },
  326. "dist": {
  327. "type": "zip",
  328. "url": "https://api.github.com/repos/dnoegel/php-xdg-base-dir/zipball/8f8a6e48c5ecb0f991c2fdcf5f154a47d85f9ffd",
  329. "reference": "8f8a6e48c5ecb0f991c2fdcf5f154a47d85f9ffd",
  330. "shasum": ""
  331. },
  332. "require": {
  333. "php": ">=5.3.2"
  334. },
  335. "require-dev": {
  336. "phpunit/phpunit": "~7.0|~6.0|~5.0|~4.8.35"
  337. },
  338. "type": "library",
  339. "autoload": {
  340. "psr-4": {
  341. "XdgBaseDir\\": "src/"
  342. }
  343. },
  344. "notification-url": "https://packagist.org/downloads/",
  345. "license": [
  346. "MIT"
  347. ],
  348. "description": "implementation of xdg base directory specification for php",
  349. "time": "2019-12-04T15:06:13+00:00"
  350. },
  351. {
  352. "name": "doctrine/inflector",
  353. "version": "2.0.3",
  354. "source": {
  355. "type": "git",
  356. "url": "https://github.com/doctrine/inflector.git",
  357. "reference": "9cf661f4eb38f7c881cac67c75ea9b00bf97b210"
  358. },
  359. "dist": {
  360. "type": "zip",
  361. "url": "https://api.github.com/repos/doctrine/inflector/zipball/9cf661f4eb38f7c881cac67c75ea9b00bf97b210",
  362. "reference": "9cf661f4eb38f7c881cac67c75ea9b00bf97b210",
  363. "shasum": ""
  364. },
  365. "require": {
  366. "php": "^7.2 || ^8.0"
  367. },
  368. "require-dev": {
  369. "doctrine/coding-standard": "^7.0",
  370. "phpstan/phpstan": "^0.11",
  371. "phpstan/phpstan-phpunit": "^0.11",
  372. "phpstan/phpstan-strict-rules": "^0.11",
  373. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0"
  374. },
  375. "type": "library",
  376. "extra": {
  377. "branch-alias": {
  378. "dev-master": "2.0.x-dev"
  379. }
  380. },
  381. "autoload": {
  382. "psr-4": {
  383. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  384. }
  385. },
  386. "notification-url": "https://packagist.org/downloads/",
  387. "license": [
  388. "MIT"
  389. ],
  390. "authors": [
  391. {
  392. "name": "Guilherme Blanco",
  393. "email": "guilhermeblanco@gmail.com"
  394. },
  395. {
  396. "name": "Roman Borschel",
  397. "email": "roman@code-factory.org"
  398. },
  399. {
  400. "name": "Benjamin Eberlei",
  401. "email": "kontakt@beberlei.de"
  402. },
  403. {
  404. "name": "Jonathan Wage",
  405. "email": "jonwage@gmail.com"
  406. },
  407. {
  408. "name": "Johannes Schmitt",
  409. "email": "schmittjoh@gmail.com"
  410. }
  411. ],
  412. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  413. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  414. "keywords": [
  415. "inflection",
  416. "inflector",
  417. "lowercase",
  418. "manipulation",
  419. "php",
  420. "plural",
  421. "singular",
  422. "strings",
  423. "uppercase",
  424. "words"
  425. ],
  426. "funding": [
  427. {
  428. "url": "https://www.doctrine-project.org/sponsorship.html",
  429. "type": "custom"
  430. },
  431. {
  432. "url": "https://www.patreon.com/phpdoctrine",
  433. "type": "patreon"
  434. },
  435. {
  436. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  437. "type": "tidelift"
  438. }
  439. ],
  440. "time": "2020-05-29T15:13:26+00:00"
  441. },
  442. {
  443. "name": "doctrine/lexer",
  444. "version": "1.2.1",
  445. "source": {
  446. "type": "git",
  447. "url": "https://github.com/doctrine/lexer.git",
  448. "reference": "e864bbf5904cb8f5bb334f99209b48018522f042"
  449. },
  450. "dist": {
  451. "type": "zip",
  452. "url": "https://api.github.com/repos/doctrine/lexer/zipball/e864bbf5904cb8f5bb334f99209b48018522f042",
  453. "reference": "e864bbf5904cb8f5bb334f99209b48018522f042",
  454. "shasum": ""
  455. },
  456. "require": {
  457. "php": "^7.2 || ^8.0"
  458. },
  459. "require-dev": {
  460. "doctrine/coding-standard": "^6.0",
  461. "phpstan/phpstan": "^0.11.8",
  462. "phpunit/phpunit": "^8.2"
  463. },
  464. "type": "library",
  465. "extra": {
  466. "branch-alias": {
  467. "dev-master": "1.2.x-dev"
  468. }
  469. },
  470. "autoload": {
  471. "psr-4": {
  472. "Doctrine\\Common\\Lexer\\": "lib/Doctrine/Common/Lexer"
  473. }
  474. },
  475. "notification-url": "https://packagist.org/downloads/",
  476. "license": [
  477. "MIT"
  478. ],
  479. "authors": [
  480. {
  481. "name": "Guilherme Blanco",
  482. "email": "guilhermeblanco@gmail.com"
  483. },
  484. {
  485. "name": "Roman Borschel",
  486. "email": "roman@code-factory.org"
  487. },
  488. {
  489. "name": "Johannes Schmitt",
  490. "email": "schmittjoh@gmail.com"
  491. }
  492. ],
  493. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  494. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  495. "keywords": [
  496. "annotations",
  497. "docblock",
  498. "lexer",
  499. "parser",
  500. "php"
  501. ],
  502. "funding": [
  503. {
  504. "url": "https://www.doctrine-project.org/sponsorship.html",
  505. "type": "custom"
  506. },
  507. {
  508. "url": "https://www.patreon.com/phpdoctrine",
  509. "type": "patreon"
  510. },
  511. {
  512. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  513. "type": "tidelift"
  514. }
  515. ],
  516. "time": "2020-05-25T17:44:05+00:00"
  517. },
  518. {
  519. "name": "dragonmantank/cron-expression",
  520. "version": "v2.3.0",
  521. "source": {
  522. "type": "git",
  523. "url": "https://github.com/dragonmantank/cron-expression.git",
  524. "reference": "72b6fbf76adb3cf5bc0db68559b33d41219aba27"
  525. },
  526. "dist": {
  527. "type": "zip",
  528. "url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/72b6fbf76adb3cf5bc0db68559b33d41219aba27",
  529. "reference": "72b6fbf76adb3cf5bc0db68559b33d41219aba27",
  530. "shasum": ""
  531. },
  532. "require": {
  533. "php": "^7.0"
  534. },
  535. "require-dev": {
  536. "phpunit/phpunit": "^6.4|^7.0"
  537. },
  538. "type": "library",
  539. "extra": {
  540. "branch-alias": {
  541. "dev-master": "2.3-dev"
  542. }
  543. },
  544. "autoload": {
  545. "psr-4": {
  546. "Cron\\": "src/Cron/"
  547. }
  548. },
  549. "notification-url": "https://packagist.org/downloads/",
  550. "license": [
  551. "MIT"
  552. ],
  553. "authors": [
  554. {
  555. "name": "Michael Dowling",
  556. "email": "mtdowling@gmail.com",
  557. "homepage": "https://github.com/mtdowling"
  558. },
  559. {
  560. "name": "Chris Tankersley",
  561. "email": "chris@ctankersley.com",
  562. "homepage": "https://github.com/dragonmantank"
  563. }
  564. ],
  565. "description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due",
  566. "keywords": [
  567. "cron",
  568. "schedule"
  569. ],
  570. "time": "2019-03-31T00:38:28+00:00"
  571. },
  572. {
  573. "name": "egulias/email-validator",
  574. "version": "2.1.20",
  575. "source": {
  576. "type": "git",
  577. "url": "https://github.com/egulias/EmailValidator.git",
  578. "reference": "f46887bc48db66c7f38f668eb7d6ae54583617ff"
  579. },
  580. "dist": {
  581. "type": "zip",
  582. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/f46887bc48db66c7f38f668eb7d6ae54583617ff",
  583. "reference": "f46887bc48db66c7f38f668eb7d6ae54583617ff",
  584. "shasum": ""
  585. },
  586. "require": {
  587. "doctrine/lexer": "^1.0.1",
  588. "php": ">=5.5",
  589. "symfony/polyfill-intl-idn": "^1.10"
  590. },
  591. "require-dev": {
  592. "dominicsayers/isemail": "^3.0.7",
  593. "phpunit/phpunit": "^4.8.36|^7.5.15",
  594. "satooshi/php-coveralls": "^1.0.1"
  595. },
  596. "suggest": {
  597. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  598. },
  599. "type": "library",
  600. "extra": {
  601. "branch-alias": {
  602. "dev-master": "2.1.x-dev"
  603. }
  604. },
  605. "autoload": {
  606. "psr-4": {
  607. "Egulias\\EmailValidator\\": "src"
  608. }
  609. },
  610. "notification-url": "https://packagist.org/downloads/",
  611. "license": [
  612. "MIT"
  613. ],
  614. "authors": [
  615. {
  616. "name": "Eduardo Gulias Davis"
  617. }
  618. ],
  619. "description": "A library for validating emails against several RFCs",
  620. "homepage": "https://github.com/egulias/EmailValidator",
  621. "keywords": [
  622. "email",
  623. "emailvalidation",
  624. "emailvalidator",
  625. "validation",
  626. "validator"
  627. ],
  628. "time": "2020-09-06T13:44:32+00:00"
  629. },
  630. {
  631. "name": "ezyang/htmlpurifier",
  632. "version": "v4.13.0",
  633. "source": {
  634. "type": "git",
  635. "url": "https://github.com/ezyang/htmlpurifier.git",
  636. "reference": "08e27c97e4c6ed02f37c5b2b20488046c8d90d75"
  637. },
  638. "dist": {
  639. "type": "zip",
  640. "url": "https://api.github.com/repos/ezyang/htmlpurifier/zipball/08e27c97e4c6ed02f37c5b2b20488046c8d90d75",
  641. "reference": "08e27c97e4c6ed02f37c5b2b20488046c8d90d75",
  642. "shasum": ""
  643. },
  644. "require": {
  645. "php": ">=5.2"
  646. },
  647. "require-dev": {
  648. "simpletest/simpletest": "dev-master#72de02a7b80c6bb8864ef9bf66d41d2f58f826bd"
  649. },
  650. "type": "library",
  651. "autoload": {
  652. "psr-0": {
  653. "HTMLPurifier": "library/"
  654. },
  655. "files": [
  656. "library/HTMLPurifier.composer.php"
  657. ],
  658. "exclude-from-classmap": [
  659. "/library/HTMLPurifier/Language/"
  660. ]
  661. },
  662. "notification-url": "https://packagist.org/downloads/",
  663. "license": [
  664. "LGPL-2.1-or-later"
  665. ],
  666. "authors": [
  667. {
  668. "name": "Edward Z. Yang",
  669. "email": "admin@htmlpurifier.org",
  670. "homepage": "http://ezyang.com"
  671. }
  672. ],
  673. "description": "Standards compliant HTML filter written in PHP",
  674. "homepage": "http://htmlpurifier.org/",
  675. "keywords": [
  676. "html"
  677. ],
  678. "time": "2020-06-29T00:56:53+00:00"
  679. },
  680. {
  681. "name": "fideloper/proxy",
  682. "version": "4.4.0",
  683. "source": {
  684. "type": "git",
  685. "url": "https://github.com/fideloper/TrustedProxy.git",
  686. "reference": "9beebf48a1c344ed67c1d36bb1b8709db7c3c1a8"
  687. },
  688. "dist": {
  689. "type": "zip",
  690. "url": "https://api.github.com/repos/fideloper/TrustedProxy/zipball/9beebf48a1c344ed67c1d36bb1b8709db7c3c1a8",
  691. "reference": "9beebf48a1c344ed67c1d36bb1b8709db7c3c1a8",
  692. "shasum": ""
  693. },
  694. "require": {
  695. "illuminate/contracts": "^5.0|^6.0|^7.0|^8.0",
  696. "php": ">=5.4.0"
  697. },
  698. "require-dev": {
  699. "illuminate/http": "^5.0|^6.0|^7.0|^8.0",
  700. "mockery/mockery": "^1.0",
  701. "phpunit/phpunit": "^6.0"
  702. },
  703. "type": "library",
  704. "extra": {
  705. "laravel": {
  706. "providers": [
  707. "Fideloper\\Proxy\\TrustedProxyServiceProvider"
  708. ]
  709. }
  710. },
  711. "autoload": {
  712. "psr-4": {
  713. "Fideloper\\Proxy\\": "src/"
  714. }
  715. },
  716. "notification-url": "https://packagist.org/downloads/",
  717. "license": [
  718. "MIT"
  719. ],
  720. "authors": [
  721. {
  722. "name": "Chris Fidao",
  723. "email": "fideloper@gmail.com"
  724. }
  725. ],
  726. "description": "Set trusted proxies for Laravel",
  727. "keywords": [
  728. "load balancing",
  729. "proxy",
  730. "trusted proxy"
  731. ],
  732. "time": "2020-06-23T01:36:47+00:00"
  733. },
  734. {
  735. "name": "fruitcake/laravel-cors",
  736. "version": "v2.0.2",
  737. "source": {
  738. "type": "git",
  739. "url": "https://github.com/fruitcake/laravel-cors.git",
  740. "reference": "4b19bfc3bd422948af37a42a62fad7f49025894a"
  741. },
  742. "dist": {
  743. "type": "zip",
  744. "url": "https://api.github.com/repos/fruitcake/laravel-cors/zipball/4b19bfc3bd422948af37a42a62fad7f49025894a",
  745. "reference": "4b19bfc3bd422948af37a42a62fad7f49025894a",
  746. "shasum": ""
  747. },
  748. "require": {
  749. "asm89/stack-cors": "^2.0.1",
  750. "illuminate/contracts": "^6|^7|^8",
  751. "illuminate/support": "^6|^7|^8",
  752. "php": ">=7.2",
  753. "symfony/http-foundation": "^4|^5",
  754. "symfony/http-kernel": "^4.3.4|^5"
  755. },
  756. "require-dev": {
  757. "laravel/framework": "^6|^7|^8",
  758. "orchestra/testbench-dusk": "^4|^5|^6",
  759. "phpunit/phpunit": "^6|^7|^8",
  760. "squizlabs/php_codesniffer": "^3.5"
  761. },
  762. "type": "library",
  763. "extra": {
  764. "branch-alias": {
  765. "dev-master": "2.0-dev"
  766. },
  767. "laravel": {
  768. "providers": [
  769. "Fruitcake\\Cors\\CorsServiceProvider"
  770. ]
  771. }
  772. },
  773. "autoload": {
  774. "psr-4": {
  775. "Fruitcake\\Cors\\": "src/"
  776. }
  777. },
  778. "notification-url": "https://packagist.org/downloads/",
  779. "license": [
  780. "MIT"
  781. ],
  782. "authors": [
  783. {
  784. "name": "Fruitcake",
  785. "homepage": "https://fruitcake.nl"
  786. },
  787. {
  788. "name": "Barry vd. Heuvel",
  789. "email": "barryvdh@gmail.com"
  790. }
  791. ],
  792. "description": "Adds CORS (Cross-Origin Resource Sharing) headers support in your Laravel application",
  793. "keywords": [
  794. "api",
  795. "cors",
  796. "crossdomain",
  797. "laravel"
  798. ],
  799. "funding": [
  800. {
  801. "url": "https://github.com/barryvdh",
  802. "type": "github"
  803. }
  804. ],
  805. "time": "2020-09-07T11:48:52+00:00"
  806. },
  807. {
  808. "name": "geoip2/geoip2",
  809. "version": "v2.10.0",
  810. "source": {
  811. "type": "git",
  812. "url": "https://github.com/maxmind/GeoIP2-php.git",
  813. "reference": "419557cd21d9fe039721a83490701a58c8ce784a"
  814. },
  815. "dist": {
  816. "type": "zip",
  817. "url": "https://api.github.com/repos/maxmind/GeoIP2-php/zipball/419557cd21d9fe039721a83490701a58c8ce784a",
  818. "reference": "419557cd21d9fe039721a83490701a58c8ce784a",
  819. "shasum": ""
  820. },
  821. "require": {
  822. "ext-json": "*",
  823. "maxmind-db/reader": "~1.5",
  824. "maxmind/web-service-common": "~0.6",
  825. "php": ">=5.6"
  826. },
  827. "require-dev": {
  828. "friendsofphp/php-cs-fixer": "2.*",
  829. "phpunit/phpunit": "5.*",
  830. "squizlabs/php_codesniffer": "3.*"
  831. },
  832. "type": "library",
  833. "autoload": {
  834. "psr-4": {
  835. "GeoIp2\\": "src"
  836. }
  837. },
  838. "notification-url": "https://packagist.org/downloads/",
  839. "license": [
  840. "Apache-2.0"
  841. ],
  842. "authors": [
  843. {
  844. "name": "Gregory J. Oschwald",
  845. "email": "goschwald@maxmind.com",
  846. "homepage": "https://www.maxmind.com/"
  847. }
  848. ],
  849. "description": "MaxMind GeoIP2 PHP API",
  850. "homepage": "https://github.com/maxmind/GeoIP2-php",
  851. "keywords": [
  852. "IP",
  853. "geoip",
  854. "geoip2",
  855. "geolocation",
  856. "maxmind"
  857. ],
  858. "time": "2019-12-12T18:48:39+00:00"
  859. },
  860. {
  861. "name": "guzzlehttp/guzzle",
  862. "version": "6.5.5",
  863. "source": {
  864. "type": "git",
  865. "url": "https://github.com/guzzle/guzzle.git",
  866. "reference": "9d4290de1cfd701f38099ef7e183b64b4b7b0c5e"
  867. },
  868. "dist": {
  869. "type": "zip",
  870. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/9d4290de1cfd701f38099ef7e183b64b4b7b0c5e",
  871. "reference": "9d4290de1cfd701f38099ef7e183b64b4b7b0c5e",
  872. "shasum": ""
  873. },
  874. "require": {
  875. "ext-json": "*",
  876. "guzzlehttp/promises": "^1.0",
  877. "guzzlehttp/psr7": "^1.6.1",
  878. "php": ">=5.5",
  879. "symfony/polyfill-intl-idn": "^1.17.0"
  880. },
  881. "require-dev": {
  882. "ext-curl": "*",
  883. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.4 || ^7.0",
  884. "psr/log": "^1.1"
  885. },
  886. "suggest": {
  887. "psr/log": "Required for using the Log middleware"
  888. },
  889. "type": "library",
  890. "extra": {
  891. "branch-alias": {
  892. "dev-master": "6.5-dev"
  893. }
  894. },
  895. "autoload": {
  896. "psr-4": {
  897. "GuzzleHttp\\": "src/"
  898. },
  899. "files": [
  900. "src/functions_include.php"
  901. ]
  902. },
  903. "notification-url": "https://packagist.org/downloads/",
  904. "license": [
  905. "MIT"
  906. ],
  907. "authors": [
  908. {
  909. "name": "Michael Dowling",
  910. "email": "mtdowling@gmail.com",
  911. "homepage": "https://github.com/mtdowling"
  912. }
  913. ],
  914. "description": "Guzzle is a PHP HTTP client library",
  915. "homepage": "http://guzzlephp.org/",
  916. "keywords": [
  917. "client",
  918. "curl",
  919. "framework",
  920. "http",
  921. "http client",
  922. "rest",
  923. "web service"
  924. ],
  925. "time": "2020-06-16T21:01:06+00:00"
  926. },
  927. {
  928. "name": "guzzlehttp/promises",
  929. "version": "v1.3.1",
  930. "source": {
  931. "type": "git",
  932. "url": "https://github.com/guzzle/promises.git",
  933. "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646"
  934. },
  935. "dist": {
  936. "type": "zip",
  937. "url": "https://api.github.com/repos/guzzle/promises/zipball/a59da6cf61d80060647ff4d3eb2c03a2bc694646",
  938. "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646",
  939. "shasum": ""
  940. },
  941. "require": {
  942. "php": ">=5.5.0"
  943. },
  944. "require-dev": {
  945. "phpunit/phpunit": "^4.0"
  946. },
  947. "type": "library",
  948. "extra": {
  949. "branch-alias": {
  950. "dev-master": "1.4-dev"
  951. }
  952. },
  953. "autoload": {
  954. "psr-4": {
  955. "GuzzleHttp\\Promise\\": "src/"
  956. },
  957. "files": [
  958. "src/functions_include.php"
  959. ]
  960. },
  961. "notification-url": "https://packagist.org/downloads/",
  962. "license": [
  963. "MIT"
  964. ],
  965. "authors": [
  966. {
  967. "name": "Michael Dowling",
  968. "email": "mtdowling@gmail.com",
  969. "homepage": "https://github.com/mtdowling"
  970. }
  971. ],
  972. "description": "Guzzle promises library",
  973. "keywords": [
  974. "promise"
  975. ],
  976. "time": "2016-12-20T10:07:11+00:00"
  977. },
  978. {
  979. "name": "guzzlehttp/psr7",
  980. "version": "1.6.1",
  981. "source": {
  982. "type": "git",
  983. "url": "https://github.com/guzzle/psr7.git",
  984. "reference": "239400de7a173fe9901b9ac7c06497751f00727a"
  985. },
  986. "dist": {
  987. "type": "zip",
  988. "url": "https://api.github.com/repos/guzzle/psr7/zipball/239400de7a173fe9901b9ac7c06497751f00727a",
  989. "reference": "239400de7a173fe9901b9ac7c06497751f00727a",
  990. "shasum": ""
  991. },
  992. "require": {
  993. "php": ">=5.4.0",
  994. "psr/http-message": "~1.0",
  995. "ralouphie/getallheaders": "^2.0.5 || ^3.0.0"
  996. },
  997. "provide": {
  998. "psr/http-message-implementation": "1.0"
  999. },
  1000. "require-dev": {
  1001. "ext-zlib": "*",
  1002. "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.8"
  1003. },
  1004. "suggest": {
  1005. "zendframework/zend-httphandlerrunner": "Emit PSR-7 responses"
  1006. },
  1007. "type": "library",
  1008. "extra": {
  1009. "branch-alias": {
  1010. "dev-master": "1.6-dev"
  1011. }
  1012. },
  1013. "autoload": {
  1014. "psr-4": {
  1015. "GuzzleHttp\\Psr7\\": "src/"
  1016. },
  1017. "files": [
  1018. "src/functions_include.php"
  1019. ]
  1020. },
  1021. "notification-url": "https://packagist.org/downloads/",
  1022. "license": [
  1023. "MIT"
  1024. ],
  1025. "authors": [
  1026. {
  1027. "name": "Michael Dowling",
  1028. "email": "mtdowling@gmail.com",
  1029. "homepage": "https://github.com/mtdowling"
  1030. },
  1031. {
  1032. "name": "Tobias Schultze",
  1033. "homepage": "https://github.com/Tobion"
  1034. }
  1035. ],
  1036. "description": "PSR-7 message implementation that also provides common utility methods",
  1037. "keywords": [
  1038. "http",
  1039. "message",
  1040. "psr-7",
  1041. "request",
  1042. "response",
  1043. "stream",
  1044. "uri",
  1045. "url"
  1046. ],
  1047. "time": "2019-07-01T23:21:34+00:00"
  1048. },
  1049. {
  1050. "name": "intervention/image",
  1051. "version": "2.5.1",
  1052. "source": {
  1053. "type": "git",
  1054. "url": "https://github.com/Intervention/image.git",
  1055. "reference": "abbf18d5ab8367f96b3205ca3c89fb2fa598c69e"
  1056. },
  1057. "dist": {
  1058. "type": "zip",
  1059. "url": "https://api.github.com/repos/Intervention/image/zipball/abbf18d5ab8367f96b3205ca3c89fb2fa598c69e",
  1060. "reference": "abbf18d5ab8367f96b3205ca3c89fb2fa598c69e",
  1061. "shasum": ""
  1062. },
  1063. "require": {
  1064. "ext-fileinfo": "*",
  1065. "guzzlehttp/psr7": "~1.1",
  1066. "php": ">=5.4.0"
  1067. },
  1068. "require-dev": {
  1069. "mockery/mockery": "~0.9.2",
  1070. "phpunit/phpunit": "^4.8 || ^5.7"
  1071. },
  1072. "suggest": {
  1073. "ext-gd": "to use GD library based image processing.",
  1074. "ext-imagick": "to use Imagick based image processing.",
  1075. "intervention/imagecache": "Caching extension for the Intervention Image library"
  1076. },
  1077. "type": "library",
  1078. "extra": {
  1079. "branch-alias": {
  1080. "dev-master": "2.4-dev"
  1081. },
  1082. "laravel": {
  1083. "providers": [
  1084. "Intervention\\Image\\ImageServiceProvider"
  1085. ],
  1086. "aliases": {
  1087. "Image": "Intervention\\Image\\Facades\\Image"
  1088. }
  1089. }
  1090. },
  1091. "autoload": {
  1092. "psr-4": {
  1093. "Intervention\\Image\\": "src/Intervention/Image"
  1094. }
  1095. },
  1096. "notification-url": "https://packagist.org/downloads/",
  1097. "license": [
  1098. "MIT"
  1099. ],
  1100. "authors": [
  1101. {
  1102. "name": "Oliver Vogel",
  1103. "email": "oliver@olivervogel.com",
  1104. "homepage": "http://olivervogel.com/"
  1105. }
  1106. ],
  1107. "description": "Image handling and manipulation library with support for Laravel integration",
  1108. "homepage": "http://image.intervention.io/",
  1109. "keywords": [
  1110. "gd",
  1111. "image",
  1112. "imagick",
  1113. "laravel",
  1114. "thumbnail",
  1115. "watermark"
  1116. ],
  1117. "time": "2019-11-02T09:15:47+00:00"
  1118. },
  1119. {
  1120. "name": "ip2location/ip2location-laravel",
  1121. "version": "1.2.0",
  1122. "source": {
  1123. "type": "git",
  1124. "url": "https://github.com/ip2location/ip2location-laravel.git",
  1125. "reference": "56b0da66e12982ef6db0e2fe3b231659c5e76a9b"
  1126. },
  1127. "dist": {
  1128. "type": "zip",
  1129. "url": "https://api.github.com/repos/ip2location/ip2location-laravel/zipball/56b0da66e12982ef6db0e2fe3b231659c5e76a9b",
  1130. "reference": "56b0da66e12982ef6db0e2fe3b231659c5e76a9b",
  1131. "shasum": ""
  1132. },
  1133. "require": {
  1134. "ip2location/ip2location-php": "8.*",
  1135. "php": ">=5.4"
  1136. },
  1137. "type": "library",
  1138. "autoload": {
  1139. "psr-4": {
  1140. "Ip2location\\IP2LocationLaravel\\": "src/"
  1141. }
  1142. },
  1143. "notification-url": "https://packagist.org/downloads/",
  1144. "license": [
  1145. "MIT"
  1146. ],
  1147. "authors": [
  1148. {
  1149. "name": "IP2Location",
  1150. "email": "support@ip2location.com"
  1151. }
  1152. ],
  1153. "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.",
  1154. "keywords": [
  1155. "geolocation",
  1156. "ip2location",
  1157. "laravel",
  1158. "laravel 5",
  1159. "laravel 7"
  1160. ],
  1161. "time": "2020-08-27T07:47:55+00:00"
  1162. },
  1163. {
  1164. "name": "ip2location/ip2location-php",
  1165. "version": "8.2.2",
  1166. "source": {
  1167. "type": "git",
  1168. "url": "https://github.com/chrislim2888/IP2Location-PHP-Module.git",
  1169. "reference": "9cbb8ab32b940523ea5b08ca3bab7adc4dde019f"
  1170. },
  1171. "dist": {
  1172. "type": "zip",
  1173. "url": "https://api.github.com/repos/chrislim2888/IP2Location-PHP-Module/zipball/9cbb8ab32b940523ea5b08ca3bab7adc4dde019f",
  1174. "reference": "9cbb8ab32b940523ea5b08ca3bab7adc4dde019f",
  1175. "shasum": ""
  1176. },
  1177. "type": "library",
  1178. "autoload": {
  1179. "classmap": [
  1180. "IP2Location.php"
  1181. ]
  1182. },
  1183. "notification-url": "https://packagist.org/downloads/",
  1184. "license": [
  1185. "MIT"
  1186. ],
  1187. "authors": [
  1188. {
  1189. "name": "IP2Location",
  1190. "email": "support@ip2location.com",
  1191. "homepage": "http://www.ip2location.com"
  1192. }
  1193. ],
  1194. "description": "[Official Release] IP2Location PHP API to get location info from IPv4 and IPv6 address.",
  1195. "homepage": "http://www.ip2location.com",
  1196. "keywords": [
  1197. "geolocation",
  1198. "ip2location",
  1199. "ip2locationlite"
  1200. ],
  1201. "time": "2020-03-25T00:20:36+00:00"
  1202. },
  1203. {
  1204. "name": "ipip/db",
  1205. "version": "v1.0.0",
  1206. "source": {
  1207. "type": "git",
  1208. "url": "https://github.com/ipipdotnet/ipdb-php.git",
  1209. "reference": "af42bf28b37dc76beccd7bbe2b0b0572e21f42cf"
  1210. },
  1211. "dist": {
  1212. "type": "zip",
  1213. "url": "https://api.github.com/repos/ipipdotnet/ipdb-php/zipball/af42bf28b37dc76beccd7bbe2b0b0572e21f42cf",
  1214. "reference": "af42bf28b37dc76beccd7bbe2b0b0572e21f42cf",
  1215. "shasum": ""
  1216. },
  1217. "require": {
  1218. "php": ">=5.4.0"
  1219. },
  1220. "type": "library",
  1221. "autoload": {
  1222. "psr-4": {
  1223. "ipip\\db\\": "src/ipip/db/"
  1224. }
  1225. },
  1226. "notification-url": "https://packagist.org/downloads/",
  1227. "license": [
  1228. "Apache-2.0"
  1229. ],
  1230. "authors": [
  1231. {
  1232. "name": "IPIP.net",
  1233. "email": "frk@ipip.net",
  1234. "homepage": "https://www.ipip.net"
  1235. }
  1236. ],
  1237. "description": "IPIP.net officially supported IP database ipdb format parsing library",
  1238. "homepage": "https://www.ipip.net",
  1239. "keywords": [
  1240. "IP",
  1241. "geo",
  1242. "geoip",
  1243. "geolocation",
  1244. "ipdb",
  1245. "ipip.net"
  1246. ],
  1247. "time": "2018-11-01T08:07:04+00:00"
  1248. },
  1249. {
  1250. "name": "jaybizzle/crawler-detect",
  1251. "version": "v1.2.99",
  1252. "source": {
  1253. "type": "git",
  1254. "url": "https://github.com/JayBizzle/Crawler-Detect.git",
  1255. "reference": "0ffea34489b258a2709bfe93a9553e1efa5d1904"
  1256. },
  1257. "dist": {
  1258. "type": "zip",
  1259. "url": "https://api.github.com/repos/JayBizzle/Crawler-Detect/zipball/0ffea34489b258a2709bfe93a9553e1efa5d1904",
  1260. "reference": "0ffea34489b258a2709bfe93a9553e1efa5d1904",
  1261. "shasum": ""
  1262. },
  1263. "require": {
  1264. "php": ">=5.3.0"
  1265. },
  1266. "require-dev": {
  1267. "phpunit/phpunit": "^4.8|^5.5|^6.5",
  1268. "satooshi/php-coveralls": "1.*"
  1269. },
  1270. "type": "library",
  1271. "autoload": {
  1272. "psr-4": {
  1273. "Jaybizzle\\CrawlerDetect\\": "src/"
  1274. }
  1275. },
  1276. "notification-url": "https://packagist.org/downloads/",
  1277. "license": [
  1278. "MIT"
  1279. ],
  1280. "authors": [
  1281. {
  1282. "name": "Mark Beech",
  1283. "email": "m@rkbee.ch",
  1284. "role": "Developer"
  1285. }
  1286. ],
  1287. "description": "CrawlerDetect is a PHP class for detecting bots/crawlers/spiders via the user agent",
  1288. "homepage": "https://github.com/JayBizzle/Crawler-Detect/",
  1289. "keywords": [
  1290. "crawler",
  1291. "crawler detect",
  1292. "crawler detector",
  1293. "crawlerdetect",
  1294. "php crawler detect"
  1295. ],
  1296. "time": "2020-08-25T21:35:55+00:00"
  1297. },
  1298. {
  1299. "name": "jenssegers/agent",
  1300. "version": "v2.6.4",
  1301. "source": {
  1302. "type": "git",
  1303. "url": "https://github.com/jenssegers/agent.git",
  1304. "reference": "daa11c43729510b3700bc34d414664966b03bffe"
  1305. },
  1306. "dist": {
  1307. "type": "zip",
  1308. "url": "https://api.github.com/repos/jenssegers/agent/zipball/daa11c43729510b3700bc34d414664966b03bffe",
  1309. "reference": "daa11c43729510b3700bc34d414664966b03bffe",
  1310. "shasum": ""
  1311. },
  1312. "require": {
  1313. "jaybizzle/crawler-detect": "^1.2",
  1314. "mobiledetect/mobiledetectlib": "^2.7.6",
  1315. "php": ">=5.6"
  1316. },
  1317. "require-dev": {
  1318. "php-coveralls/php-coveralls": "^2.1",
  1319. "phpunit/phpunit": "^5.0|^6.0|^7.0"
  1320. },
  1321. "suggest": {
  1322. "illuminate/support": "Required for laravel service providers"
  1323. },
  1324. "type": "library",
  1325. "extra": {
  1326. "branch-alias": {
  1327. "dev-master": "3.0-dev"
  1328. },
  1329. "laravel": {
  1330. "providers": [
  1331. "Jenssegers\\Agent\\AgentServiceProvider"
  1332. ],
  1333. "aliases": {
  1334. "Agent": "Jenssegers\\Agent\\Facades\\Agent"
  1335. }
  1336. }
  1337. },
  1338. "autoload": {
  1339. "psr-4": {
  1340. "Jenssegers\\Agent\\": "src/"
  1341. }
  1342. },
  1343. "notification-url": "https://packagist.org/downloads/",
  1344. "license": [
  1345. "MIT"
  1346. ],
  1347. "authors": [
  1348. {
  1349. "name": "Jens Segers",
  1350. "homepage": "https://jenssegers.com"
  1351. }
  1352. ],
  1353. "description": "Desktop/mobile user agent parser with support for Laravel, based on Mobiledetect",
  1354. "homepage": "https://github.com/jenssegers/agent",
  1355. "keywords": [
  1356. "Agent",
  1357. "browser",
  1358. "desktop",
  1359. "laravel",
  1360. "mobile",
  1361. "platform",
  1362. "user agent",
  1363. "useragent"
  1364. ],
  1365. "funding": [
  1366. {
  1367. "url": "https://github.com/jenssegers",
  1368. "type": "github"
  1369. },
  1370. {
  1371. "url": "https://tidelift.com/funding/github/packagist/jenssegers/agent",
  1372. "type": "tidelift"
  1373. }
  1374. ],
  1375. "time": "2020-06-13T08:05:20+00:00"
  1376. },
  1377. {
  1378. "name": "laravel/framework",
  1379. "version": "v7.28.1",
  1380. "source": {
  1381. "type": "git",
  1382. "url": "https://github.com/laravel/framework.git",
  1383. "reference": "f7493ab717ca2a9598b1db2d6a3bae8ac8c755e8"
  1384. },
  1385. "dist": {
  1386. "type": "zip",
  1387. "url": "https://api.github.com/repos/laravel/framework/zipball/f7493ab717ca2a9598b1db2d6a3bae8ac8c755e8",
  1388. "reference": "f7493ab717ca2a9598b1db2d6a3bae8ac8c755e8",
  1389. "shasum": ""
  1390. },
  1391. "require": {
  1392. "doctrine/inflector": "^1.4|^2.0",
  1393. "dragonmantank/cron-expression": "^2.0",
  1394. "egulias/email-validator": "^2.1.10",
  1395. "ext-json": "*",
  1396. "ext-mbstring": "*",
  1397. "ext-openssl": "*",
  1398. "league/commonmark": "^1.3",
  1399. "league/flysystem": "^1.0.34",
  1400. "monolog/monolog": "^2.0",
  1401. "nesbot/carbon": "^2.17",
  1402. "opis/closure": "^3.1",
  1403. "php": "^7.2.5",
  1404. "psr/container": "^1.0",
  1405. "psr/simple-cache": "^1.0",
  1406. "ramsey/uuid": "^3.7|^4.0",
  1407. "swiftmailer/swiftmailer": "^6.0",
  1408. "symfony/console": "^5.0",
  1409. "symfony/error-handler": "^5.0",
  1410. "symfony/finder": "^5.0",
  1411. "symfony/http-foundation": "^5.0",
  1412. "symfony/http-kernel": "^5.0",
  1413. "symfony/mime": "^5.0",
  1414. "symfony/polyfill-php73": "^1.17",
  1415. "symfony/process": "^5.0",
  1416. "symfony/routing": "^5.0",
  1417. "symfony/var-dumper": "^5.0",
  1418. "tijsverkoyen/css-to-inline-styles": "^2.2.2",
  1419. "vlucas/phpdotenv": "^4.0",
  1420. "voku/portable-ascii": "^1.4.8"
  1421. },
  1422. "conflict": {
  1423. "tightenco/collect": "<5.5.33"
  1424. },
  1425. "provide": {
  1426. "psr/container-implementation": "1.0"
  1427. },
  1428. "replace": {
  1429. "illuminate/auth": "self.version",
  1430. "illuminate/broadcasting": "self.version",
  1431. "illuminate/bus": "self.version",
  1432. "illuminate/cache": "self.version",
  1433. "illuminate/config": "self.version",
  1434. "illuminate/console": "self.version",
  1435. "illuminate/container": "self.version",
  1436. "illuminate/contracts": "self.version",
  1437. "illuminate/cookie": "self.version",
  1438. "illuminate/database": "self.version",
  1439. "illuminate/encryption": "self.version",
  1440. "illuminate/events": "self.version",
  1441. "illuminate/filesystem": "self.version",
  1442. "illuminate/hashing": "self.version",
  1443. "illuminate/http": "self.version",
  1444. "illuminate/log": "self.version",
  1445. "illuminate/mail": "self.version",
  1446. "illuminate/notifications": "self.version",
  1447. "illuminate/pagination": "self.version",
  1448. "illuminate/pipeline": "self.version",
  1449. "illuminate/queue": "self.version",
  1450. "illuminate/redis": "self.version",
  1451. "illuminate/routing": "self.version",
  1452. "illuminate/session": "self.version",
  1453. "illuminate/support": "self.version",
  1454. "illuminate/testing": "self.version",
  1455. "illuminate/translation": "self.version",
  1456. "illuminate/validation": "self.version",
  1457. "illuminate/view": "self.version"
  1458. },
  1459. "require-dev": {
  1460. "aws/aws-sdk-php": "^3.0",
  1461. "doctrine/dbal": "^2.6",
  1462. "filp/whoops": "^2.4",
  1463. "guzzlehttp/guzzle": "^6.3.1|^7.0",
  1464. "league/flysystem-cached-adapter": "^1.0",
  1465. "mockery/mockery": "^1.3.1",
  1466. "moontoast/math": "^1.1",
  1467. "orchestra/testbench-core": "^5.0",
  1468. "pda/pheanstalk": "^4.0",
  1469. "phpunit/phpunit": "^8.4|^9.0",
  1470. "predis/predis": "^1.1.1",
  1471. "symfony/cache": "^5.0"
  1472. },
  1473. "suggest": {
  1474. "aws/aws-sdk-php": "Required to use the SQS queue driver, DynamoDb failed job storage and SES mail driver (^3.0).",
  1475. "doctrine/dbal": "Required to rename columns and drop SQLite columns (^2.6).",
  1476. "ext-ftp": "Required to use the Flysystem FTP driver.",
  1477. "ext-gd": "Required to use Illuminate\\Http\\Testing\\FileFactory::image().",
  1478. "ext-memcached": "Required to use the memcache cache driver.",
  1479. "ext-pcntl": "Required to use all features of the queue worker.",
  1480. "ext-posix": "Required to use all features of the queue worker.",
  1481. "ext-redis": "Required to use the Redis cache and queue drivers (^4.0|^5.0).",
  1482. "filp/whoops": "Required for friendly error pages in development (^2.4).",
  1483. "fzaninotto/faker": "Required to use the eloquent factory builder (^1.9.1).",
  1484. "guzzlehttp/guzzle": "Required to use the HTTP Client, Mailgun mail driver and the ping methods on schedules (^6.3.1|^7.0).",
  1485. "laravel/tinker": "Required to use the tinker console command (^2.0).",
  1486. "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (^1.0).",
  1487. "league/flysystem-cached-adapter": "Required to use the Flysystem cache (^1.0).",
  1488. "league/flysystem-sftp": "Required to use the Flysystem SFTP driver (^1.0).",
  1489. "mockery/mockery": "Required to use mocking (^1.3.1).",
  1490. "moontoast/math": "Required to use ordered UUIDs (^1.1).",
  1491. "nyholm/psr7": "Required to use PSR-7 bridging features (^1.2).",
  1492. "pda/pheanstalk": "Required to use the beanstalk queue driver (^4.0).",
  1493. "phpunit/phpunit": "Required to use assertions and run tests (^8.4|^9.0).",
  1494. "predis/predis": "Required to use the predis connector (^1.1.2).",
  1495. "psr/http-message": "Required to allow Storage::put to accept a StreamInterface (^1.0).",
  1496. "pusher/pusher-php-server": "Required to use the Pusher broadcast driver (^4.0).",
  1497. "symfony/cache": "Required to PSR-6 cache bridge (^5.0).",
  1498. "symfony/filesystem": "Required to create relative storage directory symbolic links (^5.0).",
  1499. "symfony/psr-http-message-bridge": "Required to use PSR-7 bridging features (^2.0).",
  1500. "wildbit/swiftmailer-postmark": "Required to use Postmark mail driver (^3.0)."
  1501. },
  1502. "type": "library",
  1503. "extra": {
  1504. "branch-alias": {
  1505. "dev-master": "7.x-dev"
  1506. }
  1507. },
  1508. "autoload": {
  1509. "files": [
  1510. "src/Illuminate/Foundation/helpers.php",
  1511. "src/Illuminate/Support/helpers.php"
  1512. ],
  1513. "psr-4": {
  1514. "Illuminate\\": "src/Illuminate/"
  1515. }
  1516. },
  1517. "notification-url": "https://packagist.org/downloads/",
  1518. "license": [
  1519. "MIT"
  1520. ],
  1521. "authors": [
  1522. {
  1523. "name": "Taylor Otwell",
  1524. "email": "taylor@laravel.com"
  1525. }
  1526. ],
  1527. "description": "The Laravel Framework.",
  1528. "homepage": "https://laravel.com",
  1529. "keywords": [
  1530. "framework",
  1531. "laravel"
  1532. ],
  1533. "support": {
  1534. "issues": "https://github.com/laravel/framework/issues",
  1535. "source": "https://github.com/laravel/framework"
  1536. },
  1537. "time": "2020-09-09T15:02:46+00:00"
  1538. },
  1539. {
  1540. "name": "laravel/tinker",
  1541. "version": "v2.4.2",
  1542. "source": {
  1543. "type": "git",
  1544. "url": "https://github.com/laravel/tinker.git",
  1545. "reference": "58424c24e8aec31c3a3ac54eb3adb15e8a0a067b"
  1546. },
  1547. "dist": {
  1548. "type": "zip",
  1549. "url": "https://api.github.com/repos/laravel/tinker/zipball/58424c24e8aec31c3a3ac54eb3adb15e8a0a067b",
  1550. "reference": "58424c24e8aec31c3a3ac54eb3adb15e8a0a067b",
  1551. "shasum": ""
  1552. },
  1553. "require": {
  1554. "illuminate/console": "^6.0|^7.0|^8.0",
  1555. "illuminate/contracts": "^6.0|^7.0|^8.0",
  1556. "illuminate/support": "^6.0|^7.0|^8.0",
  1557. "php": "^7.2",
  1558. "psy/psysh": "^0.10.3",
  1559. "symfony/var-dumper": "^4.3|^5.0"
  1560. },
  1561. "require-dev": {
  1562. "mockery/mockery": "^1.3.1",
  1563. "phpunit/phpunit": "^8.4|^9.0"
  1564. },
  1565. "suggest": {
  1566. "illuminate/database": "The Illuminate Database package (^6.0|^7.0|^8.0)."
  1567. },
  1568. "type": "library",
  1569. "extra": {
  1570. "branch-alias": {
  1571. "dev-master": "2.x-dev"
  1572. },
  1573. "laravel": {
  1574. "providers": [
  1575. "Laravel\\Tinker\\TinkerServiceProvider"
  1576. ]
  1577. }
  1578. },
  1579. "autoload": {
  1580. "psr-4": {
  1581. "Laravel\\Tinker\\": "src/"
  1582. }
  1583. },
  1584. "notification-url": "https://packagist.org/downloads/",
  1585. "license": [
  1586. "MIT"
  1587. ],
  1588. "authors": [
  1589. {
  1590. "name": "Taylor Otwell",
  1591. "email": "taylor@laravel.com"
  1592. }
  1593. ],
  1594. "description": "Powerful REPL for the Laravel framework.",
  1595. "keywords": [
  1596. "REPL",
  1597. "Tinker",
  1598. "laravel",
  1599. "psysh"
  1600. ],
  1601. "time": "2020-08-11T19:28:08+00:00"
  1602. },
  1603. {
  1604. "name": "league/commonmark",
  1605. "version": "1.5.4",
  1606. "source": {
  1607. "type": "git",
  1608. "url": "https://github.com/thephpleague/commonmark.git",
  1609. "reference": "21819c989e69bab07e933866ad30c7e3f32984ba"
  1610. },
  1611. "dist": {
  1612. "type": "zip",
  1613. "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/21819c989e69bab07e933866ad30c7e3f32984ba",
  1614. "reference": "21819c989e69bab07e933866ad30c7e3f32984ba",
  1615. "shasum": ""
  1616. },
  1617. "require": {
  1618. "ext-mbstring": "*",
  1619. "php": "^7.1 || ^8.0"
  1620. },
  1621. "conflict": {
  1622. "scrutinizer/ocular": "1.7.*"
  1623. },
  1624. "require-dev": {
  1625. "cebe/markdown": "~1.0",
  1626. "commonmark/commonmark.js": "0.29.1",
  1627. "erusev/parsedown": "~1.0",
  1628. "ext-json": "*",
  1629. "github/gfm": "0.29.0",
  1630. "michelf/php-markdown": "~1.4",
  1631. "mikehaertl/php-shellcommand": "^1.4",
  1632. "phpstan/phpstan": "^0.12",
  1633. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.2",
  1634. "scrutinizer/ocular": "^1.5",
  1635. "symfony/finder": "^4.2"
  1636. },
  1637. "bin": [
  1638. "bin/commonmark"
  1639. ],
  1640. "type": "library",
  1641. "autoload": {
  1642. "psr-4": {
  1643. "League\\CommonMark\\": "src"
  1644. }
  1645. },
  1646. "notification-url": "https://packagist.org/downloads/",
  1647. "license": [
  1648. "BSD-3-Clause"
  1649. ],
  1650. "authors": [
  1651. {
  1652. "name": "Colin O'Dell",
  1653. "email": "colinodell@gmail.com",
  1654. "homepage": "https://www.colinodell.com",
  1655. "role": "Lead Developer"
  1656. }
  1657. ],
  1658. "description": "Highly-extensible PHP Markdown parser which fully supports the CommonMark spec and Github-Flavored Markdown (GFM)",
  1659. "homepage": "https://commonmark.thephpleague.com",
  1660. "keywords": [
  1661. "commonmark",
  1662. "flavored",
  1663. "gfm",
  1664. "github",
  1665. "github-flavored",
  1666. "markdown",
  1667. "md",
  1668. "parser"
  1669. ],
  1670. "funding": [
  1671. {
  1672. "url": "https://enjoy.gitstore.app/repositories/thephpleague/commonmark",
  1673. "type": "custom"
  1674. },
  1675. {
  1676. "url": "https://www.colinodell.com/sponsor",
  1677. "type": "custom"
  1678. },
  1679. {
  1680. "url": "https://www.paypal.me/colinpodell/10.00",
  1681. "type": "custom"
  1682. },
  1683. {
  1684. "url": "https://github.com/colinodell",
  1685. "type": "github"
  1686. },
  1687. {
  1688. "url": "https://www.patreon.com/colinodell",
  1689. "type": "patreon"
  1690. },
  1691. {
  1692. "url": "https://tidelift.com/funding/github/packagist/league/commonmark",
  1693. "type": "tidelift"
  1694. }
  1695. ],
  1696. "time": "2020-08-18T01:19:12+00:00"
  1697. },
  1698. {
  1699. "name": "league/flysystem",
  1700. "version": "1.1.3",
  1701. "source": {
  1702. "type": "git",
  1703. "url": "https://github.com/thephpleague/flysystem.git",
  1704. "reference": "9be3b16c877d477357c015cec057548cf9b2a14a"
  1705. },
  1706. "dist": {
  1707. "type": "zip",
  1708. "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/9be3b16c877d477357c015cec057548cf9b2a14a",
  1709. "reference": "9be3b16c877d477357c015cec057548cf9b2a14a",
  1710. "shasum": ""
  1711. },
  1712. "require": {
  1713. "ext-fileinfo": "*",
  1714. "league/mime-type-detection": "^1.3",
  1715. "php": "^7.2.5 || ^8.0"
  1716. },
  1717. "conflict": {
  1718. "league/flysystem-sftp": "<1.0.6"
  1719. },
  1720. "require-dev": {
  1721. "phpspec/prophecy": "^1.11.1",
  1722. "phpunit/phpunit": "^8.5.8"
  1723. },
  1724. "suggest": {
  1725. "ext-fileinfo": "Required for MimeType",
  1726. "ext-ftp": "Allows you to use FTP server storage",
  1727. "ext-openssl": "Allows you to use FTPS server storage",
  1728. "league/flysystem-aws-s3-v2": "Allows you to use S3 storage with AWS SDK v2",
  1729. "league/flysystem-aws-s3-v3": "Allows you to use S3 storage with AWS SDK v3",
  1730. "league/flysystem-azure": "Allows you to use Windows Azure Blob storage",
  1731. "league/flysystem-cached-adapter": "Flysystem adapter decorator for metadata caching",
  1732. "league/flysystem-eventable-filesystem": "Allows you to use EventableFilesystem",
  1733. "league/flysystem-rackspace": "Allows you to use Rackspace Cloud Files",
  1734. "league/flysystem-sftp": "Allows you to use SFTP server storage via phpseclib",
  1735. "league/flysystem-webdav": "Allows you to use WebDAV storage",
  1736. "league/flysystem-ziparchive": "Allows you to use ZipArchive adapter",
  1737. "spatie/flysystem-dropbox": "Allows you to use Dropbox storage",
  1738. "srmklive/flysystem-dropbox-v2": "Allows you to use Dropbox storage for PHP 5 applications"
  1739. },
  1740. "type": "library",
  1741. "extra": {
  1742. "branch-alias": {
  1743. "dev-master": "1.1-dev"
  1744. }
  1745. },
  1746. "autoload": {
  1747. "psr-4": {
  1748. "League\\Flysystem\\": "src/"
  1749. }
  1750. },
  1751. "notification-url": "https://packagist.org/downloads/",
  1752. "license": [
  1753. "MIT"
  1754. ],
  1755. "authors": [
  1756. {
  1757. "name": "Frank de Jonge",
  1758. "email": "info@frenky.net"
  1759. }
  1760. ],
  1761. "description": "Filesystem abstraction: Many filesystems, one API.",
  1762. "keywords": [
  1763. "Cloud Files",
  1764. "WebDAV",
  1765. "abstraction",
  1766. "aws",
  1767. "cloud",
  1768. "copy.com",
  1769. "dropbox",
  1770. "file systems",
  1771. "files",
  1772. "filesystem",
  1773. "filesystems",
  1774. "ftp",
  1775. "rackspace",
  1776. "remote",
  1777. "s3",
  1778. "sftp",
  1779. "storage"
  1780. ],
  1781. "funding": [
  1782. {
  1783. "url": "https://offset.earth/frankdejonge",
  1784. "type": "other"
  1785. }
  1786. ],
  1787. "time": "2020-08-23T07:39:11+00:00"
  1788. },
  1789. {
  1790. "name": "league/mime-type-detection",
  1791. "version": "1.4.0",
  1792. "source": {
  1793. "type": "git",
  1794. "url": "https://github.com/thephpleague/mime-type-detection.git",
  1795. "reference": "fda190b62b962d96a069fcc414d781db66d65b69"
  1796. },
  1797. "dist": {
  1798. "type": "zip",
  1799. "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/fda190b62b962d96a069fcc414d781db66d65b69",
  1800. "reference": "fda190b62b962d96a069fcc414d781db66d65b69",
  1801. "shasum": ""
  1802. },
  1803. "require": {
  1804. "ext-fileinfo": "*",
  1805. "php": "^7.2 || ^8.0"
  1806. },
  1807. "require-dev": {
  1808. "phpstan/phpstan": "^0.12.36",
  1809. "phpunit/phpunit": "^8.5.8"
  1810. },
  1811. "type": "library",
  1812. "autoload": {
  1813. "psr-4": {
  1814. "League\\MimeTypeDetection\\": "src"
  1815. }
  1816. },
  1817. "notification-url": "https://packagist.org/downloads/",
  1818. "license": [
  1819. "MIT"
  1820. ],
  1821. "authors": [
  1822. {
  1823. "name": "Frank de Jonge",
  1824. "email": "info@frankdejonge.nl"
  1825. }
  1826. ],
  1827. "description": "Mime-type detection for Flysystem",
  1828. "funding": [
  1829. {
  1830. "url": "https://github.com/frankdejonge",
  1831. "type": "github"
  1832. },
  1833. {
  1834. "url": "https://tidelift.com/funding/github/packagist/league/flysystem",
  1835. "type": "tidelift"
  1836. }
  1837. ],
  1838. "time": "2020-08-09T10:34:01+00:00"
  1839. },
  1840. {
  1841. "name": "maennchen/zipstream-php",
  1842. "version": "2.1.0",
  1843. "source": {
  1844. "type": "git",
  1845. "url": "https://github.com/maennchen/ZipStream-PHP.git",
  1846. "reference": "c4c5803cc1f93df3d2448478ef79394a5981cc58"
  1847. },
  1848. "dist": {
  1849. "type": "zip",
  1850. "url": "https://api.github.com/repos/maennchen/ZipStream-PHP/zipball/c4c5803cc1f93df3d2448478ef79394a5981cc58",
  1851. "reference": "c4c5803cc1f93df3d2448478ef79394a5981cc58",
  1852. "shasum": ""
  1853. },
  1854. "require": {
  1855. "myclabs/php-enum": "^1.5",
  1856. "php": ">= 7.1",
  1857. "psr/http-message": "^1.0",
  1858. "symfony/polyfill-mbstring": "^1.0"
  1859. },
  1860. "require-dev": {
  1861. "ext-zip": "*",
  1862. "guzzlehttp/guzzle": ">= 6.3",
  1863. "mikey179/vfsstream": "^1.6",
  1864. "phpunit/phpunit": ">= 7.5"
  1865. },
  1866. "type": "library",
  1867. "autoload": {
  1868. "psr-4": {
  1869. "ZipStream\\": "src/"
  1870. }
  1871. },
  1872. "notification-url": "https://packagist.org/downloads/",
  1873. "license": [
  1874. "MIT"
  1875. ],
  1876. "authors": [
  1877. {
  1878. "name": "Paul Duncan",
  1879. "email": "pabs@pablotron.org"
  1880. },
  1881. {
  1882. "name": "Jonatan Männchen",
  1883. "email": "jonatan@maennchen.ch"
  1884. },
  1885. {
  1886. "name": "Jesse Donat",
  1887. "email": "donatj@gmail.com"
  1888. },
  1889. {
  1890. "name": "András Kolesár",
  1891. "email": "kolesar@kolesar.hu"
  1892. }
  1893. ],
  1894. "description": "ZipStream is a library for dynamically streaming dynamic zip files from PHP without writing to the disk at all on the server.",
  1895. "keywords": [
  1896. "stream",
  1897. "zip"
  1898. ],
  1899. "funding": [
  1900. {
  1901. "url": "https://opencollective.com/zipstream",
  1902. "type": "open_collective"
  1903. }
  1904. ],
  1905. "time": "2020-05-30T13:11:16+00:00"
  1906. },
  1907. {
  1908. "name": "markbaker/complex",
  1909. "version": "1.5.0",
  1910. "source": {
  1911. "type": "git",
  1912. "url": "https://github.com/MarkBaker/PHPComplex.git",
  1913. "reference": "c3131244e29c08d44fefb49e0dd35021e9e39dd2"
  1914. },
  1915. "dist": {
  1916. "type": "zip",
  1917. "url": "https://api.github.com/repos/MarkBaker/PHPComplex/zipball/c3131244e29c08d44fefb49e0dd35021e9e39dd2",
  1918. "reference": "c3131244e29c08d44fefb49e0dd35021e9e39dd2",
  1919. "shasum": ""
  1920. },
  1921. "require": {
  1922. "php": "^5.6.0|^7.0"
  1923. },
  1924. "require-dev": {
  1925. "dealerdirect/phpcodesniffer-composer-installer": "^0.5.0",
  1926. "phpcompatibility/php-compatibility": "^9.0",
  1927. "phpdocumentor/phpdocumentor": "2.*",
  1928. "phploc/phploc": "^4.0|^5.0|^6.0|^7.0",
  1929. "phpmd/phpmd": "2.*",
  1930. "phpunit/phpunit": "^4.8.35|^5.0|^6.0|^7.0",
  1931. "sebastian/phpcpd": "2.*",
  1932. "squizlabs/php_codesniffer": "^3.4.0"
  1933. },
  1934. "type": "library",
  1935. "autoload": {
  1936. "psr-4": {
  1937. "Complex\\": "classes/src/"
  1938. },
  1939. "files": [
  1940. "classes/src/functions/abs.php",
  1941. "classes/src/functions/acos.php",
  1942. "classes/src/functions/acosh.php",
  1943. "classes/src/functions/acot.php",
  1944. "classes/src/functions/acoth.php",
  1945. "classes/src/functions/acsc.php",
  1946. "classes/src/functions/acsch.php",
  1947. "classes/src/functions/argument.php",
  1948. "classes/src/functions/asec.php",
  1949. "classes/src/functions/asech.php",
  1950. "classes/src/functions/asin.php",
  1951. "classes/src/functions/asinh.php",
  1952. "classes/src/functions/atan.php",
  1953. "classes/src/functions/atanh.php",
  1954. "classes/src/functions/conjugate.php",
  1955. "classes/src/functions/cos.php",
  1956. "classes/src/functions/cosh.php",
  1957. "classes/src/functions/cot.php",
  1958. "classes/src/functions/coth.php",
  1959. "classes/src/functions/csc.php",
  1960. "classes/src/functions/csch.php",
  1961. "classes/src/functions/exp.php",
  1962. "classes/src/functions/inverse.php",
  1963. "classes/src/functions/ln.php",
  1964. "classes/src/functions/log2.php",
  1965. "classes/src/functions/log10.php",
  1966. "classes/src/functions/negative.php",
  1967. "classes/src/functions/pow.php",
  1968. "classes/src/functions/rho.php",
  1969. "classes/src/functions/sec.php",
  1970. "classes/src/functions/sech.php",
  1971. "classes/src/functions/sin.php",
  1972. "classes/src/functions/sinh.php",
  1973. "classes/src/functions/sqrt.php",
  1974. "classes/src/functions/tan.php",
  1975. "classes/src/functions/tanh.php",
  1976. "classes/src/functions/theta.php",
  1977. "classes/src/operations/add.php",
  1978. "classes/src/operations/subtract.php",
  1979. "classes/src/operations/multiply.php",
  1980. "classes/src/operations/divideby.php",
  1981. "classes/src/operations/divideinto.php"
  1982. ]
  1983. },
  1984. "notification-url": "https://packagist.org/downloads/",
  1985. "license": [
  1986. "MIT"
  1987. ],
  1988. "authors": [
  1989. {
  1990. "name": "Mark Baker",
  1991. "email": "mark@lange.demon.co.uk"
  1992. }
  1993. ],
  1994. "description": "PHP Class for working with complex numbers",
  1995. "homepage": "https://github.com/MarkBaker/PHPComplex",
  1996. "keywords": [
  1997. "complex",
  1998. "mathematics"
  1999. ],
  2000. "time": "2020-08-26T19:47:57+00:00"
  2001. },
  2002. {
  2003. "name": "markbaker/matrix",
  2004. "version": "1.2.1",
  2005. "source": {
  2006. "type": "git",
  2007. "url": "https://github.com/MarkBaker/PHPMatrix.git",
  2008. "reference": "182d44c3b2e3b063468f7481ae3ef71c69dc1409"
  2009. },
  2010. "dist": {
  2011. "type": "zip",
  2012. "url": "https://api.github.com/repos/MarkBaker/PHPMatrix/zipball/182d44c3b2e3b063468f7481ae3ef71c69dc1409",
  2013. "reference": "182d44c3b2e3b063468f7481ae3ef71c69dc1409",
  2014. "shasum": ""
  2015. },
  2016. "require": {
  2017. "php": "^5.6.0|^7.0.0"
  2018. },
  2019. "require-dev": {
  2020. "dealerdirect/phpcodesniffer-composer-installer": "dev-master",
  2021. "phpcompatibility/php-compatibility": "dev-master",
  2022. "phploc/phploc": "^4",
  2023. "phpmd/phpmd": "dev-master",
  2024. "phpunit/phpunit": "^5.7|^6.0|7.0",
  2025. "sebastian/phpcpd": "^3.0",
  2026. "squizlabs/php_codesniffer": "^3.0@dev"
  2027. },
  2028. "type": "library",
  2029. "autoload": {
  2030. "psr-4": {
  2031. "Matrix\\": "classes/src/"
  2032. },
  2033. "files": [
  2034. "classes/src/functions/adjoint.php",
  2035. "classes/src/functions/antidiagonal.php",
  2036. "classes/src/functions/cofactors.php",
  2037. "classes/src/functions/determinant.php",
  2038. "classes/src/functions/diagonal.php",
  2039. "classes/src/functions/identity.php",
  2040. "classes/src/functions/inverse.php",
  2041. "classes/src/functions/minors.php",
  2042. "classes/src/functions/trace.php",
  2043. "classes/src/functions/transpose.php",
  2044. "classes/src/operations/add.php",
  2045. "classes/src/operations/directsum.php",
  2046. "classes/src/operations/subtract.php",
  2047. "classes/src/operations/multiply.php",
  2048. "classes/src/operations/divideby.php",
  2049. "classes/src/operations/divideinto.php"
  2050. ]
  2051. },
  2052. "notification-url": "https://packagist.org/downloads/",
  2053. "license": [
  2054. "MIT"
  2055. ],
  2056. "authors": [
  2057. {
  2058. "name": "Mark Baker",
  2059. "email": "mark@lange.demon.co.uk"
  2060. }
  2061. ],
  2062. "description": "PHP Class for working with matrices",
  2063. "homepage": "https://github.com/MarkBaker/PHPMatrix",
  2064. "keywords": [
  2065. "mathematics",
  2066. "matrix",
  2067. "vector"
  2068. ],
  2069. "time": "2020-08-28T19:41:55+00:00"
  2070. },
  2071. {
  2072. "name": "maxmind-db/reader",
  2073. "version": "v1.7.0",
  2074. "source": {
  2075. "type": "git",
  2076. "url": "https://github.com/maxmind/MaxMind-DB-Reader-php.git",
  2077. "reference": "942553da239f12051275f9c666538b5dd09e2908"
  2078. },
  2079. "dist": {
  2080. "type": "zip",
  2081. "url": "https://api.github.com/repos/maxmind/MaxMind-DB-Reader-php/zipball/942553da239f12051275f9c666538b5dd09e2908",
  2082. "reference": "942553da239f12051275f9c666538b5dd09e2908",
  2083. "shasum": ""
  2084. },
  2085. "require": {
  2086. "php": ">=7.2"
  2087. },
  2088. "conflict": {
  2089. "ext-maxminddb": "<1.7.0,>=2.0.0"
  2090. },
  2091. "require-dev": {
  2092. "friendsofphp/php-cs-fixer": "2.*",
  2093. "php-coveralls/php-coveralls": "^2.1",
  2094. "phpunit/phpcov": ">=6.0.0",
  2095. "phpunit/phpunit": ">=8.0.0,<10.0.0",
  2096. "squizlabs/php_codesniffer": "3.*"
  2097. },
  2098. "suggest": {
  2099. "ext-bcmath": "bcmath or gmp is required for decoding larger integers with the pure PHP decoder",
  2100. "ext-gmp": "bcmath or gmp is required for decoding larger integers with the pure PHP decoder",
  2101. "ext-maxminddb": "A C-based database decoder that provides significantly faster lookups"
  2102. },
  2103. "type": "library",
  2104. "autoload": {
  2105. "psr-4": {
  2106. "MaxMind\\Db\\": "src/MaxMind/Db"
  2107. }
  2108. },
  2109. "notification-url": "https://packagist.org/downloads/",
  2110. "license": [
  2111. "Apache-2.0"
  2112. ],
  2113. "authors": [
  2114. {
  2115. "name": "Gregory J. Oschwald",
  2116. "email": "goschwald@maxmind.com",
  2117. "homepage": "https://www.maxmind.com/"
  2118. }
  2119. ],
  2120. "description": "MaxMind DB Reader API",
  2121. "homepage": "https://github.com/maxmind/MaxMind-DB-Reader-php",
  2122. "keywords": [
  2123. "database",
  2124. "geoip",
  2125. "geoip2",
  2126. "geolocation",
  2127. "maxmind"
  2128. ],
  2129. "time": "2020-08-07T22:10:05+00:00"
  2130. },
  2131. {
  2132. "name": "maxmind/web-service-common",
  2133. "version": "v0.7.0",
  2134. "source": {
  2135. "type": "git",
  2136. "url": "https://github.com/maxmind/web-service-common-php.git",
  2137. "reference": "74c996c218ada5c639c8c2f076756e059f5552fc"
  2138. },
  2139. "dist": {
  2140. "type": "zip",
  2141. "url": "https://api.github.com/repos/maxmind/web-service-common-php/zipball/74c996c218ada5c639c8c2f076756e059f5552fc",
  2142. "reference": "74c996c218ada5c639c8c2f076756e059f5552fc",
  2143. "shasum": ""
  2144. },
  2145. "require": {
  2146. "composer/ca-bundle": "^1.0.3",
  2147. "ext-curl": "*",
  2148. "ext-json": "*",
  2149. "php": ">=5.6"
  2150. },
  2151. "require-dev": {
  2152. "friendsofphp/php-cs-fixer": "2.*",
  2153. "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0",
  2154. "squizlabs/php_codesniffer": "3.*"
  2155. },
  2156. "type": "library",
  2157. "autoload": {
  2158. "psr-4": {
  2159. "MaxMind\\Exception\\": "src/Exception",
  2160. "MaxMind\\WebService\\": "src/WebService"
  2161. }
  2162. },
  2163. "notification-url": "https://packagist.org/downloads/",
  2164. "license": [
  2165. "Apache-2.0"
  2166. ],
  2167. "authors": [
  2168. {
  2169. "name": "Gregory Oschwald",
  2170. "email": "goschwald@maxmind.com"
  2171. }
  2172. ],
  2173. "description": "Internal MaxMind Web Service API",
  2174. "homepage": "https://github.com/maxmind/web-service-common-php",
  2175. "time": "2020-05-06T14:07:26+00:00"
  2176. },
  2177. {
  2178. "name": "mews/captcha",
  2179. "version": "3.2.0",
  2180. "source": {
  2181. "type": "git",
  2182. "url": "https://github.com/mewebstudio/captcha.git",
  2183. "reference": "39569c990901820f3228853dd9471812b3227958"
  2184. },
  2185. "dist": {
  2186. "type": "zip",
  2187. "url": "https://api.github.com/repos/mewebstudio/captcha/zipball/39569c990901820f3228853dd9471812b3227958",
  2188. "reference": "39569c990901820f3228853dd9471812b3227958",
  2189. "shasum": ""
  2190. },
  2191. "require": {
  2192. "ext-gd": "*",
  2193. "illuminate/config": "~5|^6|^7|^8",
  2194. "illuminate/filesystem": "~5|^6|^7|^8",
  2195. "illuminate/hashing": "~5|^6|^7|^8",
  2196. "illuminate/session": "~5|^6|^7|^8",
  2197. "illuminate/support": "~5|^6|^7|^8",
  2198. "intervention/image": "~2.5",
  2199. "php": "^7.2"
  2200. },
  2201. "require-dev": {
  2202. "mockery/mockery": "^1.0",
  2203. "phpunit/phpunit": "^8.5"
  2204. },
  2205. "type": "package",
  2206. "extra": {
  2207. "laravel": {
  2208. "providers": [
  2209. "Mews\\Captcha\\CaptchaServiceProvider"
  2210. ],
  2211. "aliases": {
  2212. "Captcha": "Mews\\Captcha\\Facades\\Captcha"
  2213. }
  2214. }
  2215. },
  2216. "autoload": {
  2217. "psr-4": {
  2218. "Mews\\Captcha\\": "src/"
  2219. },
  2220. "files": [
  2221. "src/helpers.php"
  2222. ]
  2223. },
  2224. "notification-url": "https://packagist.org/downloads/",
  2225. "license": [
  2226. "MIT"
  2227. ],
  2228. "authors": [
  2229. {
  2230. "name": "Muharrem ERİN",
  2231. "email": "me@mewebstudio.com",
  2232. "homepage": "https://github.com/mewebstudio",
  2233. "role": "Developer"
  2234. }
  2235. ],
  2236. "description": "Laravel 5 & 6 Captcha Package",
  2237. "homepage": "https://github.com/mewebstudio/captcha",
  2238. "keywords": [
  2239. "captcha",
  2240. "laravel5 Security",
  2241. "laravel6 Captcha",
  2242. "laravel6 Security"
  2243. ],
  2244. "support": {
  2245. "issues": "https://github.com/mewebstudio/captcha/issues",
  2246. "source": "https://github.com/mewebstudio/captcha/tree/3.2.0"
  2247. },
  2248. "time": "2020-09-10T22:33:58+00:00"
  2249. },
  2250. {
  2251. "name": "mews/purifier",
  2252. "version": "3.3.0",
  2253. "source": {
  2254. "type": "git",
  2255. "url": "https://github.com/mewebstudio/Purifier.git",
  2256. "reference": "da76c8705550d549a8723ffe7368c0f5554652a1"
  2257. },
  2258. "dist": {
  2259. "type": "zip",
  2260. "url": "https://api.github.com/repos/mewebstudio/Purifier/zipball/da76c8705550d549a8723ffe7368c0f5554652a1",
  2261. "reference": "da76c8705550d549a8723ffe7368c0f5554652a1",
  2262. "shasum": ""
  2263. },
  2264. "require": {
  2265. "ezyang/htmlpurifier": "4.13.*",
  2266. "illuminate/config": "^5.8|^6.0|^7.0|^8.0",
  2267. "illuminate/filesystem": "^5.8|^6.0|^7.0|^8.0",
  2268. "illuminate/support": "^5.8|^6.0|^7.0|^8.0",
  2269. "php": "^7.2"
  2270. },
  2271. "require-dev": {
  2272. "graham-campbell/testbench": "^3.2|^5.5.1",
  2273. "mockery/mockery": "^1.0",
  2274. "phpunit/phpunit": "^8.0|^9.0"
  2275. },
  2276. "suggest": {
  2277. "laravel/framework": "To test the Laravel bindings",
  2278. "laravel/lumen-framework": "To test the Lumen bindings"
  2279. },
  2280. "type": "package",
  2281. "extra": {
  2282. "laravel": {
  2283. "providers": [
  2284. "Mews\\Purifier\\PurifierServiceProvider"
  2285. ],
  2286. "aliases": {
  2287. "Purifier": "Mews\\Purifier\\Facades\\Purifier"
  2288. }
  2289. }
  2290. },
  2291. "autoload": {
  2292. "psr-4": {
  2293. "Mews\\Purifier\\": "src/"
  2294. },
  2295. "files": [
  2296. "src/helpers.php"
  2297. ]
  2298. },
  2299. "notification-url": "https://packagist.org/downloads/",
  2300. "license": [
  2301. "MIT"
  2302. ],
  2303. "authors": [
  2304. {
  2305. "name": "Muharrem ERİN",
  2306. "email": "me@mewebstudio.com",
  2307. "homepage": "https://github.com/mewebstudio",
  2308. "role": "Developer"
  2309. }
  2310. ],
  2311. "description": "Laravel 5/6/7 HtmlPurifier Package",
  2312. "homepage": "https://github.com/mewebstudio/purifier",
  2313. "keywords": [
  2314. "Purifier",
  2315. "htmlpurifier",
  2316. "laravel5 HtmlPurifier",
  2317. "laravel5 Purifier",
  2318. "laravel5 Security",
  2319. "laravel6 HtmlPurifier",
  2320. "laravel6 Purifier",
  2321. "laravel6 Security",
  2322. "security",
  2323. "xss"
  2324. ],
  2325. "time": "2020-09-10T22:30:34+00:00"
  2326. },
  2327. {
  2328. "name": "mobiledetect/mobiledetectlib",
  2329. "version": "2.8.34",
  2330. "source": {
  2331. "type": "git",
  2332. "url": "https://github.com/serbanghita/Mobile-Detect.git",
  2333. "reference": "6f8113f57a508494ca36acbcfa2dc2d923c7ed5b"
  2334. },
  2335. "dist": {
  2336. "type": "zip",
  2337. "url": "https://api.github.com/repos/serbanghita/Mobile-Detect/zipball/6f8113f57a508494ca36acbcfa2dc2d923c7ed5b",
  2338. "reference": "6f8113f57a508494ca36acbcfa2dc2d923c7ed5b",
  2339. "shasum": ""
  2340. },
  2341. "require": {
  2342. "php": ">=5.0.0"
  2343. },
  2344. "require-dev": {
  2345. "phpunit/phpunit": "~4.8.35||~5.7"
  2346. },
  2347. "type": "library",
  2348. "autoload": {
  2349. "classmap": [
  2350. "Mobile_Detect.php"
  2351. ],
  2352. "psr-0": {
  2353. "Detection": "namespaced/"
  2354. }
  2355. },
  2356. "notification-url": "https://packagist.org/downloads/",
  2357. "license": [
  2358. "MIT"
  2359. ],
  2360. "authors": [
  2361. {
  2362. "name": "Serban Ghita",
  2363. "email": "serbanghita@gmail.com",
  2364. "homepage": "http://mobiledetect.net",
  2365. "role": "Developer"
  2366. }
  2367. ],
  2368. "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.",
  2369. "homepage": "https://github.com/serbanghita/Mobile-Detect",
  2370. "keywords": [
  2371. "detect mobile devices",
  2372. "mobile",
  2373. "mobile detect",
  2374. "mobile detector",
  2375. "php mobile detect"
  2376. ],
  2377. "time": "2019-09-18T18:44:20+00:00"
  2378. },
  2379. {
  2380. "name": "monolog/monolog",
  2381. "version": "2.1.1",
  2382. "source": {
  2383. "type": "git",
  2384. "url": "https://github.com/Seldaek/monolog.git",
  2385. "reference": "f9eee5cec93dfb313a38b6b288741e84e53f02d5"
  2386. },
  2387. "dist": {
  2388. "type": "zip",
  2389. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/f9eee5cec93dfb313a38b6b288741e84e53f02d5",
  2390. "reference": "f9eee5cec93dfb313a38b6b288741e84e53f02d5",
  2391. "shasum": ""
  2392. },
  2393. "require": {
  2394. "php": ">=7.2",
  2395. "psr/log": "^1.0.1"
  2396. },
  2397. "provide": {
  2398. "psr/log-implementation": "1.0.0"
  2399. },
  2400. "require-dev": {
  2401. "aws/aws-sdk-php": "^2.4.9 || ^3.0",
  2402. "doctrine/couchdb": "~1.0@dev",
  2403. "elasticsearch/elasticsearch": "^6.0",
  2404. "graylog2/gelf-php": "^1.4.2",
  2405. "php-amqplib/php-amqplib": "~2.4",
  2406. "php-console/php-console": "^3.1.3",
  2407. "php-parallel-lint/php-parallel-lint": "^1.0",
  2408. "phpspec/prophecy": "^1.6.1",
  2409. "phpunit/phpunit": "^8.5",
  2410. "predis/predis": "^1.1",
  2411. "rollbar/rollbar": "^1.3",
  2412. "ruflin/elastica": ">=0.90 <3.0",
  2413. "swiftmailer/swiftmailer": "^5.3|^6.0"
  2414. },
  2415. "suggest": {
  2416. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  2417. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  2418. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  2419. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  2420. "ext-mbstring": "Allow to work properly with unicode symbols",
  2421. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  2422. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  2423. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  2424. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  2425. "php-console/php-console": "Allow sending log messages to Google Chrome",
  2426. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  2427. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  2428. },
  2429. "type": "library",
  2430. "extra": {
  2431. "branch-alias": {
  2432. "dev-master": "2.x-dev"
  2433. }
  2434. },
  2435. "autoload": {
  2436. "psr-4": {
  2437. "Monolog\\": "src/Monolog"
  2438. }
  2439. },
  2440. "notification-url": "https://packagist.org/downloads/",
  2441. "license": [
  2442. "MIT"
  2443. ],
  2444. "authors": [
  2445. {
  2446. "name": "Jordi Boggiano",
  2447. "email": "j.boggiano@seld.be",
  2448. "homepage": "http://seld.be"
  2449. }
  2450. ],
  2451. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  2452. "homepage": "http://github.com/Seldaek/monolog",
  2453. "keywords": [
  2454. "log",
  2455. "logging",
  2456. "psr-3"
  2457. ],
  2458. "funding": [
  2459. {
  2460. "url": "https://github.com/Seldaek",
  2461. "type": "github"
  2462. },
  2463. {
  2464. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  2465. "type": "tidelift"
  2466. }
  2467. ],
  2468. "time": "2020-07-23T08:41:23+00:00"
  2469. },
  2470. {
  2471. "name": "myclabs/php-enum",
  2472. "version": "1.7.6",
  2473. "source": {
  2474. "type": "git",
  2475. "url": "https://github.com/myclabs/php-enum.git",
  2476. "reference": "5f36467c7a87e20fbdc51e524fd8f9d1de80187c"
  2477. },
  2478. "dist": {
  2479. "type": "zip",
  2480. "url": "https://api.github.com/repos/myclabs/php-enum/zipball/5f36467c7a87e20fbdc51e524fd8f9d1de80187c",
  2481. "reference": "5f36467c7a87e20fbdc51e524fd8f9d1de80187c",
  2482. "shasum": ""
  2483. },
  2484. "require": {
  2485. "ext-json": "*",
  2486. "php": ">=7.1"
  2487. },
  2488. "require-dev": {
  2489. "phpunit/phpunit": "^7",
  2490. "squizlabs/php_codesniffer": "1.*",
  2491. "vimeo/psalm": "^3.8"
  2492. },
  2493. "type": "library",
  2494. "autoload": {
  2495. "psr-4": {
  2496. "MyCLabs\\Enum\\": "src/"
  2497. }
  2498. },
  2499. "notification-url": "https://packagist.org/downloads/",
  2500. "license": [
  2501. "MIT"
  2502. ],
  2503. "authors": [
  2504. {
  2505. "name": "PHP Enum contributors",
  2506. "homepage": "https://github.com/myclabs/php-enum/graphs/contributors"
  2507. }
  2508. ],
  2509. "description": "PHP Enum implementation",
  2510. "homepage": "http://github.com/myclabs/php-enum",
  2511. "keywords": [
  2512. "enum"
  2513. ],
  2514. "time": "2020-02-14T08:15:52+00:00"
  2515. },
  2516. {
  2517. "name": "nesbot/carbon",
  2518. "version": "2.39.2",
  2519. "source": {
  2520. "type": "git",
  2521. "url": "https://github.com/briannesbitt/Carbon.git",
  2522. "reference": "326efde1bc09077a26cb77f6e2e32e13f06c27f2"
  2523. },
  2524. "dist": {
  2525. "type": "zip",
  2526. "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/326efde1bc09077a26cb77f6e2e32e13f06c27f2",
  2527. "reference": "326efde1bc09077a26cb77f6e2e32e13f06c27f2",
  2528. "shasum": ""
  2529. },
  2530. "require": {
  2531. "ext-json": "*",
  2532. "php": "^7.1.8 || ^8.0",
  2533. "symfony/polyfill-mbstring": "^1.0",
  2534. "symfony/translation": "^3.4 || ^4.0 || ^5.0"
  2535. },
  2536. "require-dev": {
  2537. "doctrine/orm": "^2.7",
  2538. "friendsofphp/php-cs-fixer": "^2.14 || ^3.0",
  2539. "kylekatarnls/multi-tester": "^2.0",
  2540. "phpmd/phpmd": "^2.9",
  2541. "phpstan/extension-installer": "^1.0",
  2542. "phpstan/phpstan": "^0.12.35",
  2543. "phpunit/phpunit": "^7.5 || ^8.0",
  2544. "squizlabs/php_codesniffer": "^3.4"
  2545. },
  2546. "bin": [
  2547. "bin/carbon"
  2548. ],
  2549. "type": "library",
  2550. "extra": {
  2551. "branch-alias": {
  2552. "dev-master": "2.x-dev",
  2553. "dev-3.x": "3.x-dev"
  2554. },
  2555. "laravel": {
  2556. "providers": [
  2557. "Carbon\\Laravel\\ServiceProvider"
  2558. ]
  2559. },
  2560. "phpstan": {
  2561. "includes": [
  2562. "extension.neon"
  2563. ]
  2564. }
  2565. },
  2566. "autoload": {
  2567. "psr-4": {
  2568. "Carbon\\": "src/Carbon/"
  2569. }
  2570. },
  2571. "notification-url": "https://packagist.org/downloads/",
  2572. "license": [
  2573. "MIT"
  2574. ],
  2575. "authors": [
  2576. {
  2577. "name": "Brian Nesbitt",
  2578. "email": "brian@nesbot.com",
  2579. "homepage": "http://nesbot.com"
  2580. },
  2581. {
  2582. "name": "kylekatarnls",
  2583. "homepage": "http://github.com/kylekatarnls"
  2584. }
  2585. ],
  2586. "description": "An API extension for DateTime that supports 281 different languages.",
  2587. "homepage": "http://carbon.nesbot.com",
  2588. "keywords": [
  2589. "date",
  2590. "datetime",
  2591. "time"
  2592. ],
  2593. "support": {
  2594. "issues": "https://github.com/briannesbitt/Carbon/issues",
  2595. "source": "https://github.com/briannesbitt/Carbon"
  2596. },
  2597. "funding": [
  2598. {
  2599. "url": "https://opencollective.com/Carbon",
  2600. "type": "open_collective"
  2601. },
  2602. {
  2603. "url": "https://tidelift.com/funding/github/packagist/nesbot/carbon",
  2604. "type": "tidelift"
  2605. }
  2606. ],
  2607. "time": "2020-09-10T12:16:42+00:00"
  2608. },
  2609. {
  2610. "name": "nikic/php-parser",
  2611. "version": "v4.9.1",
  2612. "source": {
  2613. "type": "git",
  2614. "url": "https://github.com/nikic/PHP-Parser.git",
  2615. "reference": "88e519766fc58bd46b8265561fb79b54e2e00b28"
  2616. },
  2617. "dist": {
  2618. "type": "zip",
  2619. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/88e519766fc58bd46b8265561fb79b54e2e00b28",
  2620. "reference": "88e519766fc58bd46b8265561fb79b54e2e00b28",
  2621. "shasum": ""
  2622. },
  2623. "require": {
  2624. "ext-tokenizer": "*",
  2625. "php": ">=7.0"
  2626. },
  2627. "require-dev": {
  2628. "ircmaxell/php-yacc": "^0.0.7",
  2629. "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0"
  2630. },
  2631. "bin": [
  2632. "bin/php-parse"
  2633. ],
  2634. "type": "library",
  2635. "extra": {
  2636. "branch-alias": {
  2637. "dev-master": "4.9-dev"
  2638. }
  2639. },
  2640. "autoload": {
  2641. "psr-4": {
  2642. "PhpParser\\": "lib/PhpParser"
  2643. }
  2644. },
  2645. "notification-url": "https://packagist.org/downloads/",
  2646. "license": [
  2647. "BSD-3-Clause"
  2648. ],
  2649. "authors": [
  2650. {
  2651. "name": "Nikita Popov"
  2652. }
  2653. ],
  2654. "description": "A PHP parser written in PHP",
  2655. "keywords": [
  2656. "parser",
  2657. "php"
  2658. ],
  2659. "time": "2020-08-30T16:15:20+00:00"
  2660. },
  2661. {
  2662. "name": "openlss/lib-array2xml",
  2663. "version": "1.0.0",
  2664. "source": {
  2665. "type": "git",
  2666. "url": "https://github.com/nullivex/lib-array2xml.git",
  2667. "reference": "a91f18a8dfc69ffabe5f9b068bc39bb202c81d90"
  2668. },
  2669. "dist": {
  2670. "type": "zip",
  2671. "url": "https://api.github.com/repos/nullivex/lib-array2xml/zipball/a91f18a8dfc69ffabe5f9b068bc39bb202c81d90",
  2672. "reference": "a91f18a8dfc69ffabe5f9b068bc39bb202c81d90",
  2673. "shasum": ""
  2674. },
  2675. "require": {
  2676. "php": ">=5.3.2"
  2677. },
  2678. "type": "library",
  2679. "autoload": {
  2680. "psr-0": {
  2681. "LSS": ""
  2682. }
  2683. },
  2684. "notification-url": "https://packagist.org/downloads/",
  2685. "license": [
  2686. "Apache-2.0"
  2687. ],
  2688. "authors": [
  2689. {
  2690. "name": "Bryan Tong",
  2691. "email": "bryan@nullivex.com",
  2692. "homepage": "https://www.nullivex.com"
  2693. },
  2694. {
  2695. "name": "Tony Butler",
  2696. "email": "spudz76@gmail.com",
  2697. "homepage": "https://www.nullivex.com"
  2698. }
  2699. ],
  2700. "description": "Array2XML conversion library credit to lalit.org",
  2701. "homepage": "https://www.nullivex.com",
  2702. "keywords": [
  2703. "array",
  2704. "array conversion",
  2705. "xml",
  2706. "xml conversion"
  2707. ],
  2708. "time": "2019-03-29T20:06:56+00:00"
  2709. },
  2710. {
  2711. "name": "opis/closure",
  2712. "version": "3.5.7",
  2713. "source": {
  2714. "type": "git",
  2715. "url": "https://github.com/opis/closure.git",
  2716. "reference": "4531e53afe2fc660403e76fb7644e95998bff7bf"
  2717. },
  2718. "dist": {
  2719. "type": "zip",
  2720. "url": "https://api.github.com/repos/opis/closure/zipball/4531e53afe2fc660403e76fb7644e95998bff7bf",
  2721. "reference": "4531e53afe2fc660403e76fb7644e95998bff7bf",
  2722. "shasum": ""
  2723. },
  2724. "require": {
  2725. "php": "^5.4 || ^7.0"
  2726. },
  2727. "require-dev": {
  2728. "jeremeamia/superclosure": "^2.0",
  2729. "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0"
  2730. },
  2731. "type": "library",
  2732. "extra": {
  2733. "branch-alias": {
  2734. "dev-master": "3.5.x-dev"
  2735. }
  2736. },
  2737. "autoload": {
  2738. "psr-4": {
  2739. "Opis\\Closure\\": "src/"
  2740. },
  2741. "files": [
  2742. "functions.php"
  2743. ]
  2744. },
  2745. "notification-url": "https://packagist.org/downloads/",
  2746. "license": [
  2747. "MIT"
  2748. ],
  2749. "authors": [
  2750. {
  2751. "name": "Marius Sarca",
  2752. "email": "marius.sarca@gmail.com"
  2753. },
  2754. {
  2755. "name": "Sorin Sarca",
  2756. "email": "sarca_sorin@hotmail.com"
  2757. }
  2758. ],
  2759. "description": "A library that can be used to serialize closures (anonymous functions) and arbitrary objects.",
  2760. "homepage": "https://opis.io/closure",
  2761. "keywords": [
  2762. "anonymous functions",
  2763. "closure",
  2764. "function",
  2765. "serializable",
  2766. "serialization",
  2767. "serialize"
  2768. ],
  2769. "time": "2020-09-06T17:02:15+00:00"
  2770. },
  2771. {
  2772. "name": "overtrue/laravel-lang",
  2773. "version": "4.0.1",
  2774. "source": {
  2775. "type": "git",
  2776. "url": "https://github.com/overtrue/laravel-lang.git",
  2777. "reference": "8622a7d41fa52c502acaf63a4c416e849e02dfc7"
  2778. },
  2779. "dist": {
  2780. "type": "zip",
  2781. "url": "https://api.github.com/repos/overtrue/laravel-lang/zipball/8622a7d41fa52c502acaf63a4c416e849e02dfc7",
  2782. "reference": "8622a7d41fa52c502acaf63a4c416e849e02dfc7",
  2783. "shasum": ""
  2784. },
  2785. "require": {
  2786. "caouecs/laravel-lang": "~7.0",
  2787. "symfony/process": "^5.0.0"
  2788. },
  2789. "require-dev": {
  2790. "laravel/framework": "~7.0"
  2791. },
  2792. "type": "library",
  2793. "extra": {
  2794. "laravel": {
  2795. "providers": [
  2796. "Overtrue\\LaravelLang\\TranslationServiceProvider"
  2797. ]
  2798. }
  2799. },
  2800. "autoload": {
  2801. "psr-4": {
  2802. "Overtrue\\LaravelLang\\": "src/"
  2803. },
  2804. "files": [
  2805. "src/helpers.php"
  2806. ]
  2807. },
  2808. "notification-url": "https://packagist.org/downloads/",
  2809. "license": [
  2810. "MIT"
  2811. ],
  2812. "authors": [
  2813. {
  2814. "name": "overtrue",
  2815. "email": "anzhengchao@gmail.com"
  2816. }
  2817. ],
  2818. "description": "List of 52 languages for Laravel 5",
  2819. "keywords": [
  2820. "i18n",
  2821. "languages",
  2822. "laravel",
  2823. "locale",
  2824. "overtrue"
  2825. ],
  2826. "funding": [
  2827. {
  2828. "url": "https://www.patreon.com/overtrue",
  2829. "type": "patreon"
  2830. }
  2831. ],
  2832. "time": "2020-07-21T06:36:31+00:00"
  2833. },
  2834. {
  2835. "name": "paragonie/random_compat",
  2836. "version": "v9.99.99",
  2837. "source": {
  2838. "type": "git",
  2839. "url": "https://github.com/paragonie/random_compat.git",
  2840. "reference": "84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95"
  2841. },
  2842. "dist": {
  2843. "type": "zip",
  2844. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95",
  2845. "reference": "84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95",
  2846. "shasum": ""
  2847. },
  2848. "require": {
  2849. "php": "^7"
  2850. },
  2851. "require-dev": {
  2852. "phpunit/phpunit": "4.*|5.*",
  2853. "vimeo/psalm": "^1"
  2854. },
  2855. "suggest": {
  2856. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  2857. },
  2858. "type": "library",
  2859. "notification-url": "https://packagist.org/downloads/",
  2860. "license": [
  2861. "MIT"
  2862. ],
  2863. "authors": [
  2864. {
  2865. "name": "Paragon Initiative Enterprises",
  2866. "email": "security@paragonie.com",
  2867. "homepage": "https://paragonie.com"
  2868. }
  2869. ],
  2870. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  2871. "keywords": [
  2872. "csprng",
  2873. "polyfill",
  2874. "pseudorandom",
  2875. "random"
  2876. ],
  2877. "time": "2018-07-02T15:55:56+00:00"
  2878. },
  2879. {
  2880. "name": "phpoffice/phpspreadsheet",
  2881. "version": "1.14.1",
  2882. "source": {
  2883. "type": "git",
  2884. "url": "https://github.com/PHPOffice/PhpSpreadsheet.git",
  2885. "reference": "2383aad5689778470491581442aab38cec41bf1d"
  2886. },
  2887. "dist": {
  2888. "type": "zip",
  2889. "url": "https://api.github.com/repos/PHPOffice/PhpSpreadsheet/zipball/2383aad5689778470491581442aab38cec41bf1d",
  2890. "reference": "2383aad5689778470491581442aab38cec41bf1d",
  2891. "shasum": ""
  2892. },
  2893. "require": {
  2894. "ext-ctype": "*",
  2895. "ext-dom": "*",
  2896. "ext-fileinfo": "*",
  2897. "ext-gd": "*",
  2898. "ext-iconv": "*",
  2899. "ext-libxml": "*",
  2900. "ext-mbstring": "*",
  2901. "ext-simplexml": "*",
  2902. "ext-xml": "*",
  2903. "ext-xmlreader": "*",
  2904. "ext-xmlwriter": "*",
  2905. "ext-zip": "*",
  2906. "ext-zlib": "*",
  2907. "maennchen/zipstream-php": "^2.1",
  2908. "markbaker/complex": "^1.4",
  2909. "markbaker/matrix": "^1.2",
  2910. "php": "^7.2",
  2911. "psr/http-client": "^1.0",
  2912. "psr/http-factory": "^1.0",
  2913. "psr/simple-cache": "^1.0"
  2914. },
  2915. "require-dev": {
  2916. "dompdf/dompdf": "^0.8.5",
  2917. "friendsofphp/php-cs-fixer": "^2.16",
  2918. "jpgraph/jpgraph": "^4.0",
  2919. "mpdf/mpdf": "^8.0",
  2920. "phpcompatibility/php-compatibility": "^9.3",
  2921. "phpunit/phpunit": "^8.5",
  2922. "squizlabs/php_codesniffer": "^3.5",
  2923. "tecnickcom/tcpdf": "^6.3"
  2924. },
  2925. "suggest": {
  2926. "dompdf/dompdf": "Option for rendering PDF with PDF Writer",
  2927. "jpgraph/jpgraph": "Option for rendering charts, or including charts with PDF or HTML Writers",
  2928. "mpdf/mpdf": "Option for rendering PDF with PDF Writer",
  2929. "tecnickcom/tcpdf": "Option for rendering PDF with PDF Writer"
  2930. },
  2931. "type": "library",
  2932. "autoload": {
  2933. "psr-4": {
  2934. "PhpOffice\\PhpSpreadsheet\\": "src/PhpSpreadsheet"
  2935. }
  2936. },
  2937. "notification-url": "https://packagist.org/downloads/",
  2938. "license": [
  2939. "MIT"
  2940. ],
  2941. "authors": [
  2942. {
  2943. "name": "Maarten Balliauw",
  2944. "homepage": "https://blog.maartenballiauw.be"
  2945. },
  2946. {
  2947. "name": "Mark Baker",
  2948. "homepage": "https://markbakeruk.net"
  2949. },
  2950. {
  2951. "name": "Franck Lefevre",
  2952. "homepage": "https://rootslabs.net"
  2953. },
  2954. {
  2955. "name": "Erik Tilt"
  2956. },
  2957. {
  2958. "name": "Adrien Crivelli"
  2959. }
  2960. ],
  2961. "description": "PHPSpreadsheet - Read, Create and Write Spreadsheet documents in PHP - Spreadsheet engine",
  2962. "homepage": "https://github.com/PHPOffice/PhpSpreadsheet",
  2963. "keywords": [
  2964. "OpenXML",
  2965. "excel",
  2966. "gnumeric",
  2967. "ods",
  2968. "php",
  2969. "spreadsheet",
  2970. "xls",
  2971. "xlsx"
  2972. ],
  2973. "time": "2020-07-19T09:51:35+00:00"
  2974. },
  2975. {
  2976. "name": "phpoption/phpoption",
  2977. "version": "1.7.5",
  2978. "source": {
  2979. "type": "git",
  2980. "url": "https://github.com/schmittjoh/php-option.git",
  2981. "reference": "994ecccd8f3283ecf5ac33254543eb0ac946d525"
  2982. },
  2983. "dist": {
  2984. "type": "zip",
  2985. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/994ecccd8f3283ecf5ac33254543eb0ac946d525",
  2986. "reference": "994ecccd8f3283ecf5ac33254543eb0ac946d525",
  2987. "shasum": ""
  2988. },
  2989. "require": {
  2990. "php": "^5.5.9 || ^7.0 || ^8.0"
  2991. },
  2992. "require-dev": {
  2993. "bamarni/composer-bin-plugin": "^1.4.1",
  2994. "phpunit/phpunit": "^4.8.35 || ^5.7.27 || ^6.5.6 || ^7.0 || ^8.0 || ^9.0"
  2995. },
  2996. "type": "library",
  2997. "extra": {
  2998. "branch-alias": {
  2999. "dev-master": "1.7-dev"
  3000. }
  3001. },
  3002. "autoload": {
  3003. "psr-4": {
  3004. "PhpOption\\": "src/PhpOption/"
  3005. }
  3006. },
  3007. "notification-url": "https://packagist.org/downloads/",
  3008. "license": [
  3009. "Apache-2.0"
  3010. ],
  3011. "authors": [
  3012. {
  3013. "name": "Johannes M. Schmitt",
  3014. "email": "schmittjoh@gmail.com"
  3015. },
  3016. {
  3017. "name": "Graham Campbell",
  3018. "email": "graham@alt-three.com"
  3019. }
  3020. ],
  3021. "description": "Option Type for PHP",
  3022. "keywords": [
  3023. "language",
  3024. "option",
  3025. "php",
  3026. "type"
  3027. ],
  3028. "funding": [
  3029. {
  3030. "url": "https://github.com/GrahamCampbell",
  3031. "type": "github"
  3032. },
  3033. {
  3034. "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption",
  3035. "type": "tidelift"
  3036. }
  3037. ],
  3038. "time": "2020-07-20T17:29:33+00:00"
  3039. },
  3040. {
  3041. "name": "psr/container",
  3042. "version": "1.0.0",
  3043. "source": {
  3044. "type": "git",
  3045. "url": "https://github.com/php-fig/container.git",
  3046. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f"
  3047. },
  3048. "dist": {
  3049. "type": "zip",
  3050. "url": "https://api.github.com/repos/php-fig/container/zipball/b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  3051. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  3052. "shasum": ""
  3053. },
  3054. "require": {
  3055. "php": ">=5.3.0"
  3056. },
  3057. "type": "library",
  3058. "extra": {
  3059. "branch-alias": {
  3060. "dev-master": "1.0.x-dev"
  3061. }
  3062. },
  3063. "autoload": {
  3064. "psr-4": {
  3065. "Psr\\Container\\": "src/"
  3066. }
  3067. },
  3068. "notification-url": "https://packagist.org/downloads/",
  3069. "license": [
  3070. "MIT"
  3071. ],
  3072. "authors": [
  3073. {
  3074. "name": "PHP-FIG",
  3075. "homepage": "http://www.php-fig.org/"
  3076. }
  3077. ],
  3078. "description": "Common Container Interface (PHP FIG PSR-11)",
  3079. "homepage": "https://github.com/php-fig/container",
  3080. "keywords": [
  3081. "PSR-11",
  3082. "container",
  3083. "container-interface",
  3084. "container-interop",
  3085. "psr"
  3086. ],
  3087. "time": "2017-02-14T16:28:37+00:00"
  3088. },
  3089. {
  3090. "name": "psr/event-dispatcher",
  3091. "version": "1.0.0",
  3092. "source": {
  3093. "type": "git",
  3094. "url": "https://github.com/php-fig/event-dispatcher.git",
  3095. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  3096. },
  3097. "dist": {
  3098. "type": "zip",
  3099. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  3100. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  3101. "shasum": ""
  3102. },
  3103. "require": {
  3104. "php": ">=7.2.0"
  3105. },
  3106. "type": "library",
  3107. "extra": {
  3108. "branch-alias": {
  3109. "dev-master": "1.0.x-dev"
  3110. }
  3111. },
  3112. "autoload": {
  3113. "psr-4": {
  3114. "Psr\\EventDispatcher\\": "src/"
  3115. }
  3116. },
  3117. "notification-url": "https://packagist.org/downloads/",
  3118. "license": [
  3119. "MIT"
  3120. ],
  3121. "authors": [
  3122. {
  3123. "name": "PHP-FIG",
  3124. "homepage": "http://www.php-fig.org/"
  3125. }
  3126. ],
  3127. "description": "Standard interfaces for event handling.",
  3128. "keywords": [
  3129. "events",
  3130. "psr",
  3131. "psr-14"
  3132. ],
  3133. "time": "2019-01-08T18:20:26+00:00"
  3134. },
  3135. {
  3136. "name": "psr/http-client",
  3137. "version": "1.0.1",
  3138. "source": {
  3139. "type": "git",
  3140. "url": "https://github.com/php-fig/http-client.git",
  3141. "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621"
  3142. },
  3143. "dist": {
  3144. "type": "zip",
  3145. "url": "https://api.github.com/repos/php-fig/http-client/zipball/2dfb5f6c5eff0e91e20e913f8c5452ed95b86621",
  3146. "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621",
  3147. "shasum": ""
  3148. },
  3149. "require": {
  3150. "php": "^7.0 || ^8.0",
  3151. "psr/http-message": "^1.0"
  3152. },
  3153. "type": "library",
  3154. "extra": {
  3155. "branch-alias": {
  3156. "dev-master": "1.0.x-dev"
  3157. }
  3158. },
  3159. "autoload": {
  3160. "psr-4": {
  3161. "Psr\\Http\\Client\\": "src/"
  3162. }
  3163. },
  3164. "notification-url": "https://packagist.org/downloads/",
  3165. "license": [
  3166. "MIT"
  3167. ],
  3168. "authors": [
  3169. {
  3170. "name": "PHP-FIG",
  3171. "homepage": "http://www.php-fig.org/"
  3172. }
  3173. ],
  3174. "description": "Common interface for HTTP clients",
  3175. "homepage": "https://github.com/php-fig/http-client",
  3176. "keywords": [
  3177. "http",
  3178. "http-client",
  3179. "psr",
  3180. "psr-18"
  3181. ],
  3182. "time": "2020-06-29T06:28:15+00:00"
  3183. },
  3184. {
  3185. "name": "psr/http-factory",
  3186. "version": "1.0.1",
  3187. "source": {
  3188. "type": "git",
  3189. "url": "https://github.com/php-fig/http-factory.git",
  3190. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be"
  3191. },
  3192. "dist": {
  3193. "type": "zip",
  3194. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  3195. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  3196. "shasum": ""
  3197. },
  3198. "require": {
  3199. "php": ">=7.0.0",
  3200. "psr/http-message": "^1.0"
  3201. },
  3202. "type": "library",
  3203. "extra": {
  3204. "branch-alias": {
  3205. "dev-master": "1.0.x-dev"
  3206. }
  3207. },
  3208. "autoload": {
  3209. "psr-4": {
  3210. "Psr\\Http\\Message\\": "src/"
  3211. }
  3212. },
  3213. "notification-url": "https://packagist.org/downloads/",
  3214. "license": [
  3215. "MIT"
  3216. ],
  3217. "authors": [
  3218. {
  3219. "name": "PHP-FIG",
  3220. "homepage": "http://www.php-fig.org/"
  3221. }
  3222. ],
  3223. "description": "Common interfaces for PSR-7 HTTP message factories",
  3224. "keywords": [
  3225. "factory",
  3226. "http",
  3227. "message",
  3228. "psr",
  3229. "psr-17",
  3230. "psr-7",
  3231. "request",
  3232. "response"
  3233. ],
  3234. "time": "2019-04-30T12:38:16+00:00"
  3235. },
  3236. {
  3237. "name": "psr/http-message",
  3238. "version": "1.0.1",
  3239. "source": {
  3240. "type": "git",
  3241. "url": "https://github.com/php-fig/http-message.git",
  3242. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  3243. },
  3244. "dist": {
  3245. "type": "zip",
  3246. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  3247. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  3248. "shasum": ""
  3249. },
  3250. "require": {
  3251. "php": ">=5.3.0"
  3252. },
  3253. "type": "library",
  3254. "extra": {
  3255. "branch-alias": {
  3256. "dev-master": "1.0.x-dev"
  3257. }
  3258. },
  3259. "autoload": {
  3260. "psr-4": {
  3261. "Psr\\Http\\Message\\": "src/"
  3262. }
  3263. },
  3264. "notification-url": "https://packagist.org/downloads/",
  3265. "license": [
  3266. "MIT"
  3267. ],
  3268. "authors": [
  3269. {
  3270. "name": "PHP-FIG",
  3271. "homepage": "http://www.php-fig.org/"
  3272. }
  3273. ],
  3274. "description": "Common interface for HTTP messages",
  3275. "homepage": "https://github.com/php-fig/http-message",
  3276. "keywords": [
  3277. "http",
  3278. "http-message",
  3279. "psr",
  3280. "psr-7",
  3281. "request",
  3282. "response"
  3283. ],
  3284. "time": "2016-08-06T14:39:51+00:00"
  3285. },
  3286. {
  3287. "name": "psr/log",
  3288. "version": "1.1.3",
  3289. "source": {
  3290. "type": "git",
  3291. "url": "https://github.com/php-fig/log.git",
  3292. "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc"
  3293. },
  3294. "dist": {
  3295. "type": "zip",
  3296. "url": "https://api.github.com/repos/php-fig/log/zipball/0f73288fd15629204f9d42b7055f72dacbe811fc",
  3297. "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc",
  3298. "shasum": ""
  3299. },
  3300. "require": {
  3301. "php": ">=5.3.0"
  3302. },
  3303. "type": "library",
  3304. "extra": {
  3305. "branch-alias": {
  3306. "dev-master": "1.1.x-dev"
  3307. }
  3308. },
  3309. "autoload": {
  3310. "psr-4": {
  3311. "Psr\\Log\\": "Psr/Log/"
  3312. }
  3313. },
  3314. "notification-url": "https://packagist.org/downloads/",
  3315. "license": [
  3316. "MIT"
  3317. ],
  3318. "authors": [
  3319. {
  3320. "name": "PHP-FIG",
  3321. "homepage": "http://www.php-fig.org/"
  3322. }
  3323. ],
  3324. "description": "Common interface for logging libraries",
  3325. "homepage": "https://github.com/php-fig/log",
  3326. "keywords": [
  3327. "log",
  3328. "psr",
  3329. "psr-3"
  3330. ],
  3331. "time": "2020-03-23T09:12:05+00:00"
  3332. },
  3333. {
  3334. "name": "psr/simple-cache",
  3335. "version": "1.0.1",
  3336. "source": {
  3337. "type": "git",
  3338. "url": "https://github.com/php-fig/simple-cache.git",
  3339. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b"
  3340. },
  3341. "dist": {
  3342. "type": "zip",
  3343. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  3344. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  3345. "shasum": ""
  3346. },
  3347. "require": {
  3348. "php": ">=5.3.0"
  3349. },
  3350. "type": "library",
  3351. "extra": {
  3352. "branch-alias": {
  3353. "dev-master": "1.0.x-dev"
  3354. }
  3355. },
  3356. "autoload": {
  3357. "psr-4": {
  3358. "Psr\\SimpleCache\\": "src/"
  3359. }
  3360. },
  3361. "notification-url": "https://packagist.org/downloads/",
  3362. "license": [
  3363. "MIT"
  3364. ],
  3365. "authors": [
  3366. {
  3367. "name": "PHP-FIG",
  3368. "homepage": "http://www.php-fig.org/"
  3369. }
  3370. ],
  3371. "description": "Common interfaces for simple caching",
  3372. "keywords": [
  3373. "cache",
  3374. "caching",
  3375. "psr",
  3376. "psr-16",
  3377. "simple-cache"
  3378. ],
  3379. "time": "2017-10-23T01:57:42+00:00"
  3380. },
  3381. {
  3382. "name": "psy/psysh",
  3383. "version": "v0.10.4",
  3384. "source": {
  3385. "type": "git",
  3386. "url": "https://github.com/bobthecow/psysh.git",
  3387. "reference": "a8aec1b2981ab66882a01cce36a49b6317dc3560"
  3388. },
  3389. "dist": {
  3390. "type": "zip",
  3391. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/a8aec1b2981ab66882a01cce36a49b6317dc3560",
  3392. "reference": "a8aec1b2981ab66882a01cce36a49b6317dc3560",
  3393. "shasum": ""
  3394. },
  3395. "require": {
  3396. "dnoegel/php-xdg-base-dir": "0.1.*",
  3397. "ext-json": "*",
  3398. "ext-tokenizer": "*",
  3399. "nikic/php-parser": "~4.0|~3.0|~2.0|~1.3",
  3400. "php": "^8.0 || ^7.0 || ^5.5.9",
  3401. "symfony/console": "~5.0|~4.0|~3.0|^2.4.2|~2.3.10",
  3402. "symfony/var-dumper": "~5.0|~4.0|~3.0|~2.7"
  3403. },
  3404. "require-dev": {
  3405. "bamarni/composer-bin-plugin": "^1.2",
  3406. "hoa/console": "3.17.*"
  3407. },
  3408. "suggest": {
  3409. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  3410. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  3411. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.",
  3412. "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history.",
  3413. "hoa/console": "A pure PHP readline implementation. You'll want this if your PHP install doesn't already support readline or libedit."
  3414. },
  3415. "bin": [
  3416. "bin/psysh"
  3417. ],
  3418. "type": "library",
  3419. "extra": {
  3420. "branch-alias": {
  3421. "dev-master": "0.10.x-dev"
  3422. }
  3423. },
  3424. "autoload": {
  3425. "files": [
  3426. "src/functions.php"
  3427. ],
  3428. "psr-4": {
  3429. "Psy\\": "src/"
  3430. }
  3431. },
  3432. "notification-url": "https://packagist.org/downloads/",
  3433. "license": [
  3434. "MIT"
  3435. ],
  3436. "authors": [
  3437. {
  3438. "name": "Justin Hileman",
  3439. "email": "justin@justinhileman.info",
  3440. "homepage": "http://justinhileman.com"
  3441. }
  3442. ],
  3443. "description": "An interactive shell for modern PHP.",
  3444. "homepage": "http://psysh.org",
  3445. "keywords": [
  3446. "REPL",
  3447. "console",
  3448. "interactive",
  3449. "shell"
  3450. ],
  3451. "time": "2020-05-03T19:32:03+00:00"
  3452. },
  3453. {
  3454. "name": "ralouphie/getallheaders",
  3455. "version": "3.0.3",
  3456. "source": {
  3457. "type": "git",
  3458. "url": "https://github.com/ralouphie/getallheaders.git",
  3459. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  3460. },
  3461. "dist": {
  3462. "type": "zip",
  3463. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  3464. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  3465. "shasum": ""
  3466. },
  3467. "require": {
  3468. "php": ">=5.6"
  3469. },
  3470. "require-dev": {
  3471. "php-coveralls/php-coveralls": "^2.1",
  3472. "phpunit/phpunit": "^5 || ^6.5"
  3473. },
  3474. "type": "library",
  3475. "autoload": {
  3476. "files": [
  3477. "src/getallheaders.php"
  3478. ]
  3479. },
  3480. "notification-url": "https://packagist.org/downloads/",
  3481. "license": [
  3482. "MIT"
  3483. ],
  3484. "authors": [
  3485. {
  3486. "name": "Ralph Khattar",
  3487. "email": "ralph.khattar@gmail.com"
  3488. }
  3489. ],
  3490. "description": "A polyfill for getallheaders.",
  3491. "time": "2019-03-08T08:55:37+00:00"
  3492. },
  3493. {
  3494. "name": "ramsey/collection",
  3495. "version": "1.1.1",
  3496. "source": {
  3497. "type": "git",
  3498. "url": "https://github.com/ramsey/collection.git",
  3499. "reference": "24d93aefb2cd786b7edd9f45b554aea20b28b9b1"
  3500. },
  3501. "dist": {
  3502. "type": "zip",
  3503. "url": "https://api.github.com/repos/ramsey/collection/zipball/24d93aefb2cd786b7edd9f45b554aea20b28b9b1",
  3504. "reference": "24d93aefb2cd786b7edd9f45b554aea20b28b9b1",
  3505. "shasum": ""
  3506. },
  3507. "require": {
  3508. "php": "^7.2 || ^8"
  3509. },
  3510. "require-dev": {
  3511. "captainhook/captainhook": "^5.3",
  3512. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  3513. "ergebnis/composer-normalize": "^2.6",
  3514. "fzaninotto/faker": "^1.5",
  3515. "hamcrest/hamcrest-php": "^2",
  3516. "jangregor/phpstan-prophecy": "^0.6",
  3517. "mockery/mockery": "^1.3",
  3518. "phpstan/extension-installer": "^1",
  3519. "phpstan/phpstan": "^0.12.32",
  3520. "phpstan/phpstan-mockery": "^0.12.5",
  3521. "phpstan/phpstan-phpunit": "^0.12.11",
  3522. "phpunit/phpunit": "^8.5",
  3523. "psy/psysh": "^0.10.4",
  3524. "slevomat/coding-standard": "^6.3",
  3525. "squizlabs/php_codesniffer": "^3.5",
  3526. "vimeo/psalm": "^3.12.2"
  3527. },
  3528. "type": "library",
  3529. "autoload": {
  3530. "psr-4": {
  3531. "Ramsey\\Collection\\": "src/"
  3532. }
  3533. },
  3534. "notification-url": "https://packagist.org/downloads/",
  3535. "license": [
  3536. "MIT"
  3537. ],
  3538. "authors": [
  3539. {
  3540. "name": "Ben Ramsey",
  3541. "email": "ben@benramsey.com",
  3542. "homepage": "https://benramsey.com"
  3543. }
  3544. ],
  3545. "description": "A PHP 7.2+ library for representing and manipulating collections.",
  3546. "keywords": [
  3547. "array",
  3548. "collection",
  3549. "hash",
  3550. "map",
  3551. "queue",
  3552. "set"
  3553. ],
  3554. "support": {
  3555. "issues": "https://github.com/ramsey/collection/issues",
  3556. "source": "https://github.com/ramsey/collection/tree/1.1.1"
  3557. },
  3558. "funding": [
  3559. {
  3560. "url": "https://github.com/ramsey",
  3561. "type": "github"
  3562. }
  3563. ],
  3564. "time": "2020-09-10T20:58:17+00:00"
  3565. },
  3566. {
  3567. "name": "ramsey/uuid",
  3568. "version": "4.1.1",
  3569. "source": {
  3570. "type": "git",
  3571. "url": "https://github.com/ramsey/uuid.git",
  3572. "reference": "cd4032040a750077205918c86049aa0f43d22947"
  3573. },
  3574. "dist": {
  3575. "type": "zip",
  3576. "url": "https://api.github.com/repos/ramsey/uuid/zipball/cd4032040a750077205918c86049aa0f43d22947",
  3577. "reference": "cd4032040a750077205918c86049aa0f43d22947",
  3578. "shasum": ""
  3579. },
  3580. "require": {
  3581. "brick/math": "^0.8 || ^0.9",
  3582. "ext-json": "*",
  3583. "php": "^7.2 || ^8",
  3584. "ramsey/collection": "^1.0",
  3585. "symfony/polyfill-ctype": "^1.8"
  3586. },
  3587. "replace": {
  3588. "rhumsaa/uuid": "self.version"
  3589. },
  3590. "require-dev": {
  3591. "codeception/aspect-mock": "^3",
  3592. "dealerdirect/phpcodesniffer-composer-installer": "^0.6.2 || ^0.7.0",
  3593. "doctrine/annotations": "^1.8",
  3594. "goaop/framework": "^2",
  3595. "mockery/mockery": "^1.3",
  3596. "moontoast/math": "^1.1",
  3597. "paragonie/random-lib": "^2",
  3598. "php-mock/php-mock-mockery": "^1.3",
  3599. "php-mock/php-mock-phpunit": "^2.5",
  3600. "php-parallel-lint/php-parallel-lint": "^1.1",
  3601. "phpbench/phpbench": "^0.17.1",
  3602. "phpstan/extension-installer": "^1.0",
  3603. "phpstan/phpstan": "^0.12",
  3604. "phpstan/phpstan-mockery": "^0.12",
  3605. "phpstan/phpstan-phpunit": "^0.12",
  3606. "phpunit/phpunit": "^8.5",
  3607. "psy/psysh": "^0.10.0",
  3608. "slevomat/coding-standard": "^6.0",
  3609. "squizlabs/php_codesniffer": "^3.5",
  3610. "vimeo/psalm": "3.9.4"
  3611. },
  3612. "suggest": {
  3613. "ext-bcmath": "Enables faster math with arbitrary-precision integers using BCMath.",
  3614. "ext-ctype": "Enables faster processing of character classification using ctype functions.",
  3615. "ext-gmp": "Enables faster math with arbitrary-precision integers using GMP.",
  3616. "ext-uuid": "Enables the use of PeclUuidTimeGenerator and PeclUuidRandomGenerator.",
  3617. "paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
  3618. "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type."
  3619. },
  3620. "type": "library",
  3621. "extra": {
  3622. "branch-alias": {
  3623. "dev-master": "4.x-dev"
  3624. }
  3625. },
  3626. "autoload": {
  3627. "psr-4": {
  3628. "Ramsey\\Uuid\\": "src/"
  3629. },
  3630. "files": [
  3631. "src/functions.php"
  3632. ]
  3633. },
  3634. "notification-url": "https://packagist.org/downloads/",
  3635. "license": [
  3636. "MIT"
  3637. ],
  3638. "description": "A PHP library for generating and working with universally unique identifiers (UUIDs).",
  3639. "homepage": "https://github.com/ramsey/uuid",
  3640. "keywords": [
  3641. "guid",
  3642. "identifier",
  3643. "uuid"
  3644. ],
  3645. "funding": [
  3646. {
  3647. "url": "https://github.com/ramsey",
  3648. "type": "github"
  3649. }
  3650. ],
  3651. "time": "2020-08-18T17:17:46+00:00"
  3652. },
  3653. {
  3654. "name": "rap2hpoutre/laravel-log-viewer",
  3655. "version": "v1.7.0",
  3656. "source": {
  3657. "type": "git",
  3658. "url": "https://github.com/rap2hpoutre/laravel-log-viewer.git",
  3659. "reference": "27392d29234b6ff38a456454558f4bcc40cc837a"
  3660. },
  3661. "dist": {
  3662. "type": "zip",
  3663. "url": "https://api.github.com/repos/rap2hpoutre/laravel-log-viewer/zipball/27392d29234b6ff38a456454558f4bcc40cc837a",
  3664. "reference": "27392d29234b6ff38a456454558f4bcc40cc837a",
  3665. "shasum": ""
  3666. },
  3667. "require": {
  3668. "illuminate/support": "4.2.*|5.*|^6.0|^7.0|^8.0",
  3669. "php": ">=5.4.0"
  3670. },
  3671. "require-dev": {
  3672. "orchestra/testbench": "3.7.*",
  3673. "phpunit/phpunit": "^7"
  3674. },
  3675. "type": "laravel-package",
  3676. "extra": {
  3677. "laravel": {
  3678. "providers": [
  3679. "Rap2hpoutre\\LaravelLogViewer\\LaravelLogViewerServiceProvider"
  3680. ]
  3681. }
  3682. },
  3683. "autoload": {
  3684. "classmap": [
  3685. "src/controllers"
  3686. ],
  3687. "psr-0": {
  3688. "Rap2hpoutre\\LaravelLogViewer\\": "src/"
  3689. }
  3690. },
  3691. "notification-url": "https://packagist.org/downloads/",
  3692. "license": [
  3693. "MIT"
  3694. ],
  3695. "authors": [
  3696. {
  3697. "name": "rap2hpoutre",
  3698. "email": "raphaelht@gmail.com"
  3699. }
  3700. ],
  3701. "description": "A Laravel log reader",
  3702. "keywords": [
  3703. "laravel",
  3704. "log",
  3705. "log-reader",
  3706. "log-viewer",
  3707. "logging",
  3708. "lumen"
  3709. ],
  3710. "support": {
  3711. "issues": "https://github.com/rap2hpoutre/laravel-log-viewer/issues",
  3712. "source": "https://github.com/rap2hpoutre/laravel-log-viewer/tree/master"
  3713. },
  3714. "time": "2020-09-08T12:21:27+00:00"
  3715. },
  3716. {
  3717. "name": "riverslei/payment",
  3718. "version": "v5.1.0",
  3719. "source": {
  3720. "type": "git",
  3721. "url": "https://github.com/helei112g/payment.git",
  3722. "reference": "77f671b68b0285a6af77dc7c5afa36eabcae35aa"
  3723. },
  3724. "dist": {
  3725. "type": "zip",
  3726. "url": "https://api.github.com/repos/helei112g/payment/zipball/77f671b68b0285a6af77dc7c5afa36eabcae35aa",
  3727. "reference": "77f671b68b0285a6af77dc7c5afa36eabcae35aa",
  3728. "shasum": ""
  3729. },
  3730. "require": {
  3731. "ext-bcmath": "*",
  3732. "ext-json": "*",
  3733. "ext-mbstring": "*",
  3734. "ext-openssl": "*",
  3735. "ext-simplexml": "*",
  3736. "ext-xml": "*",
  3737. "guzzlehttp/guzzle": "~6.0",
  3738. "php": ">=7.0"
  3739. },
  3740. "require-dev": {
  3741. "codeception/codeception": "*"
  3742. },
  3743. "type": "library",
  3744. "autoload": {
  3745. "psr-4": {
  3746. "Payment\\": "src/"
  3747. }
  3748. },
  3749. "notification-url": "https://packagist.org/downloads/",
  3750. "license": [
  3751. "MIT"
  3752. ],
  3753. "authors": [
  3754. {
  3755. "name": "Leo",
  3756. "email": "dayugog@gmail.com",
  3757. "homepage": "https://dayutalk.cn"
  3758. }
  3759. ],
  3760. "description": "支付宝支付、微信支付、招商一网通支付php SDK。方便快速接入,最完整的开源支付 php sdk",
  3761. "homepage": "http://helei112g.github.io/payment",
  3762. "keywords": [
  3763. "alipay",
  3764. "weixin",
  3765. "一网通",
  3766. "微信支付",
  3767. "招商一网通",
  3768. "支付宝支付",
  3769. "集成支付接口SDK"
  3770. ],
  3771. "time": "2020-05-04T03:07:17+00:00"
  3772. },
  3773. {
  3774. "name": "simplesoftwareio/simple-qrcode",
  3775. "version": "3.0.0",
  3776. "source": {
  3777. "type": "git",
  3778. "url": "https://github.com/SimpleSoftwareIO/simple-qrcode.git",
  3779. "reference": "151dd397426d9a6c0507c96e61ddd2ca1290ce1e"
  3780. },
  3781. "dist": {
  3782. "type": "zip",
  3783. "url": "https://api.github.com/repos/SimpleSoftwareIO/simple-qrcode/zipball/151dd397426d9a6c0507c96e61ddd2ca1290ce1e",
  3784. "reference": "151dd397426d9a6c0507c96e61ddd2ca1290ce1e",
  3785. "shasum": ""
  3786. },
  3787. "require": {
  3788. "bacon/bacon-qr-code": "2.0.0",
  3789. "ext-gd": "*",
  3790. "php": ">=7.2"
  3791. },
  3792. "require-dev": {
  3793. "mockery/mockery": "~1",
  3794. "phpunit/phpunit": "~9"
  3795. },
  3796. "suggest": {
  3797. "ext-imagick": "Allows the generation of PNG QrCodes.",
  3798. "illuminate/support": "Allows for use within Laravel."
  3799. },
  3800. "type": "library",
  3801. "extra": {
  3802. "laravel": {
  3803. "providers": [
  3804. "SimpleSoftwareIO\\QrCode\\ServiceProvider"
  3805. ],
  3806. "aliases": {
  3807. "QrCode": "SimpleSoftwareIO\\QrCode\\Facade"
  3808. }
  3809. }
  3810. },
  3811. "autoload": {
  3812. "psr-4": {
  3813. "SimpleSoftwareIO\\QrCode\\": "src"
  3814. }
  3815. },
  3816. "notification-url": "https://packagist.org/downloads/",
  3817. "license": [
  3818. "MIT"
  3819. ],
  3820. "authors": [
  3821. {
  3822. "name": "Simple Software LLC",
  3823. "email": "support@simplesoftware.io"
  3824. }
  3825. ],
  3826. "description": "Simple QrCode is a QR code generator made for Laravel.",
  3827. "homepage": "http://www.simplesoftware.io",
  3828. "keywords": [
  3829. "Simple",
  3830. "generator",
  3831. "laravel",
  3832. "qrcode",
  3833. "wrapper"
  3834. ],
  3835. "time": "2020-06-02T20:41:21+00:00"
  3836. },
  3837. {
  3838. "name": "spatie/laravel-permission",
  3839. "version": "3.16.0",
  3840. "source": {
  3841. "type": "git",
  3842. "url": "https://github.com/spatie/laravel-permission.git",
  3843. "reference": "c5082ee84e0d128896b4a6864a8502d8c5f1df08"
  3844. },
  3845. "dist": {
  3846. "type": "zip",
  3847. "url": "https://api.github.com/repos/spatie/laravel-permission/zipball/c5082ee84e0d128896b4a6864a8502d8c5f1df08",
  3848. "reference": "c5082ee84e0d128896b4a6864a8502d8c5f1df08",
  3849. "shasum": ""
  3850. },
  3851. "require": {
  3852. "illuminate/auth": "^5.8|^6.0|^7.0|^8.0",
  3853. "illuminate/container": "^5.8|^6.0|^7.0|^8.0",
  3854. "illuminate/contracts": "^5.8|^6.0|^7.0|^8.0",
  3855. "illuminate/database": "^5.8|^6.0|^7.0|^8.0",
  3856. "php": "^7.2.5"
  3857. },
  3858. "require-dev": {
  3859. "orchestra/testbench": "^3.8|^4.0|^5.0|^6.0",
  3860. "phpunit/phpunit": "^8.0|^9.0",
  3861. "predis/predis": "^1.1"
  3862. },
  3863. "type": "library",
  3864. "extra": {
  3865. "laravel": {
  3866. "providers": [
  3867. "Spatie\\Permission\\PermissionServiceProvider"
  3868. ]
  3869. }
  3870. },
  3871. "autoload": {
  3872. "psr-4": {
  3873. "Spatie\\Permission\\": "src"
  3874. },
  3875. "files": [
  3876. "src/helpers.php"
  3877. ]
  3878. },
  3879. "notification-url": "https://packagist.org/downloads/",
  3880. "license": [
  3881. "MIT"
  3882. ],
  3883. "authors": [
  3884. {
  3885. "name": "Freek Van der Herten",
  3886. "email": "freek@spatie.be",
  3887. "homepage": "https://spatie.be",
  3888. "role": "Developer"
  3889. }
  3890. ],
  3891. "description": "Permission handling for Laravel 5.8 and up",
  3892. "homepage": "https://github.com/spatie/laravel-permission",
  3893. "keywords": [
  3894. "acl",
  3895. "laravel",
  3896. "permission",
  3897. "permissions",
  3898. "rbac",
  3899. "roles",
  3900. "security",
  3901. "spatie"
  3902. ],
  3903. "funding": [
  3904. {
  3905. "url": "https://spatie.be/open-source/support-us",
  3906. "type": "custom"
  3907. }
  3908. ],
  3909. "time": "2020-08-18T17:14:06+00:00"
  3910. },
  3911. {
  3912. "name": "srmklive/paypal",
  3913. "version": "1.8.0",
  3914. "source": {
  3915. "type": "git",
  3916. "url": "https://github.com/srmklive/laravel-paypal.git",
  3917. "reference": "0c2ae237577f62396d474674cb40f82825a41ffb"
  3918. },
  3919. "dist": {
  3920. "type": "zip",
  3921. "url": "https://api.github.com/repos/srmklive/laravel-paypal/zipball/0c2ae237577f62396d474674cb40f82825a41ffb",
  3922. "reference": "0c2ae237577f62396d474674cb40f82825a41ffb",
  3923. "shasum": ""
  3924. },
  3925. "require": {
  3926. "guzzlehttp/guzzle": "~6.0|~7.0",
  3927. "illuminate/support": "~5.1|~5.2|~5.3|~5.4|~5.5|~5.6|~5.7|~5.8|~6.0|~7.0|~8.0",
  3928. "nesbot/carbon": "~1.0|~2.0"
  3929. },
  3930. "type": "library",
  3931. "extra": {
  3932. "laravel": {
  3933. "providers": [
  3934. "Srmklive\\PayPal\\Providers\\PayPalServiceProvider"
  3935. ],
  3936. "aliases": {
  3937. "PayPal": "Srmklive\\PayPal\\Facades\\PayPal"
  3938. }
  3939. }
  3940. },
  3941. "autoload": {
  3942. "psr-4": {
  3943. "Srmklive\\PayPal\\": "src/"
  3944. }
  3945. },
  3946. "notification-url": "https://packagist.org/downloads/",
  3947. "license": [
  3948. "MIT"
  3949. ],
  3950. "authors": [
  3951. {
  3952. "name": "Raza Mehdi",
  3953. "email": "srmk@outlook.com"
  3954. }
  3955. ],
  3956. "description": "Laravel plugin For Processing Payments Through Paypal Express Checkout. Can Be Used Independently With Other Applications.",
  3957. "keywords": [
  3958. "http",
  3959. "laravel paypal",
  3960. "paypal",
  3961. "rest",
  3962. "web service"
  3963. ],
  3964. "time": "2020-09-03T07:50:08+00:00"
  3965. },
  3966. {
  3967. "name": "swiftmailer/swiftmailer",
  3968. "version": "v6.2.3",
  3969. "source": {
  3970. "type": "git",
  3971. "url": "https://github.com/swiftmailer/swiftmailer.git",
  3972. "reference": "149cfdf118b169f7840bbe3ef0d4bc795d1780c9"
  3973. },
  3974. "dist": {
  3975. "type": "zip",
  3976. "url": "https://api.github.com/repos/swiftmailer/swiftmailer/zipball/149cfdf118b169f7840bbe3ef0d4bc795d1780c9",
  3977. "reference": "149cfdf118b169f7840bbe3ef0d4bc795d1780c9",
  3978. "shasum": ""
  3979. },
  3980. "require": {
  3981. "egulias/email-validator": "~2.0",
  3982. "php": ">=7.0.0",
  3983. "symfony/polyfill-iconv": "^1.0",
  3984. "symfony/polyfill-intl-idn": "^1.10",
  3985. "symfony/polyfill-mbstring": "^1.0"
  3986. },
  3987. "require-dev": {
  3988. "mockery/mockery": "~0.9.1",
  3989. "symfony/phpunit-bridge": "^3.4.19|^4.1.8"
  3990. },
  3991. "suggest": {
  3992. "ext-intl": "Needed to support internationalized email addresses",
  3993. "true/punycode": "Needed to support internationalized email addresses, if ext-intl is not installed"
  3994. },
  3995. "type": "library",
  3996. "extra": {
  3997. "branch-alias": {
  3998. "dev-master": "6.2-dev"
  3999. }
  4000. },
  4001. "autoload": {
  4002. "files": [
  4003. "lib/swift_required.php"
  4004. ]
  4005. },
  4006. "notification-url": "https://packagist.org/downloads/",
  4007. "license": [
  4008. "MIT"
  4009. ],
  4010. "authors": [
  4011. {
  4012. "name": "Chris Corbyn"
  4013. },
  4014. {
  4015. "name": "Fabien Potencier",
  4016. "email": "fabien@symfony.com"
  4017. }
  4018. ],
  4019. "description": "Swiftmailer, free feature-rich PHP mailer",
  4020. "homepage": "https://swiftmailer.symfony.com",
  4021. "keywords": [
  4022. "email",
  4023. "mail",
  4024. "mailer"
  4025. ],
  4026. "time": "2019-11-12T09:31:26+00:00"
  4027. },
  4028. {
  4029. "name": "symfony/console",
  4030. "version": "v5.1.5",
  4031. "source": {
  4032. "type": "git",
  4033. "url": "https://github.com/symfony/console.git",
  4034. "reference": "186f395b256065ba9b890c0a4e48a91d598fa2cf"
  4035. },
  4036. "dist": {
  4037. "type": "zip",
  4038. "url": "https://api.github.com/repos/symfony/console/zipball/186f395b256065ba9b890c0a4e48a91d598fa2cf",
  4039. "reference": "186f395b256065ba9b890c0a4e48a91d598fa2cf",
  4040. "shasum": ""
  4041. },
  4042. "require": {
  4043. "php": ">=7.2.5",
  4044. "symfony/polyfill-mbstring": "~1.0",
  4045. "symfony/polyfill-php73": "^1.8",
  4046. "symfony/polyfill-php80": "^1.15",
  4047. "symfony/service-contracts": "^1.1|^2",
  4048. "symfony/string": "^5.1"
  4049. },
  4050. "conflict": {
  4051. "symfony/dependency-injection": "<4.4",
  4052. "symfony/dotenv": "<5.1",
  4053. "symfony/event-dispatcher": "<4.4",
  4054. "symfony/lock": "<4.4",
  4055. "symfony/process": "<4.4"
  4056. },
  4057. "provide": {
  4058. "psr/log-implementation": "1.0"
  4059. },
  4060. "require-dev": {
  4061. "psr/log": "~1.0",
  4062. "symfony/config": "^4.4|^5.0",
  4063. "symfony/dependency-injection": "^4.4|^5.0",
  4064. "symfony/event-dispatcher": "^4.4|^5.0",
  4065. "symfony/lock": "^4.4|^5.0",
  4066. "symfony/process": "^4.4|^5.0",
  4067. "symfony/var-dumper": "^4.4|^5.0"
  4068. },
  4069. "suggest": {
  4070. "psr/log": "For using the console logger",
  4071. "symfony/event-dispatcher": "",
  4072. "symfony/lock": "",
  4073. "symfony/process": ""
  4074. },
  4075. "type": "library",
  4076. "extra": {
  4077. "branch-alias": {
  4078. "dev-master": "5.1-dev"
  4079. }
  4080. },
  4081. "autoload": {
  4082. "psr-4": {
  4083. "Symfony\\Component\\Console\\": ""
  4084. },
  4085. "exclude-from-classmap": [
  4086. "/Tests/"
  4087. ]
  4088. },
  4089. "notification-url": "https://packagist.org/downloads/",
  4090. "license": [
  4091. "MIT"
  4092. ],
  4093. "authors": [
  4094. {
  4095. "name": "Fabien Potencier",
  4096. "email": "fabien@symfony.com"
  4097. },
  4098. {
  4099. "name": "Symfony Community",
  4100. "homepage": "https://symfony.com/contributors"
  4101. }
  4102. ],
  4103. "description": "Symfony Console Component",
  4104. "homepage": "https://symfony.com",
  4105. "funding": [
  4106. {
  4107. "url": "https://symfony.com/sponsor",
  4108. "type": "custom"
  4109. },
  4110. {
  4111. "url": "https://github.com/fabpot",
  4112. "type": "github"
  4113. },
  4114. {
  4115. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4116. "type": "tidelift"
  4117. }
  4118. ],
  4119. "time": "2020-09-02T07:07:40+00:00"
  4120. },
  4121. {
  4122. "name": "symfony/css-selector",
  4123. "version": "v5.1.5",
  4124. "source": {
  4125. "type": "git",
  4126. "url": "https://github.com/symfony/css-selector.git",
  4127. "reference": "e544e24472d4c97b2d11ade7caacd446727c6bf9"
  4128. },
  4129. "dist": {
  4130. "type": "zip",
  4131. "url": "https://api.github.com/repos/symfony/css-selector/zipball/e544e24472d4c97b2d11ade7caacd446727c6bf9",
  4132. "reference": "e544e24472d4c97b2d11ade7caacd446727c6bf9",
  4133. "shasum": ""
  4134. },
  4135. "require": {
  4136. "php": ">=7.2.5"
  4137. },
  4138. "type": "library",
  4139. "extra": {
  4140. "branch-alias": {
  4141. "dev-master": "5.1-dev"
  4142. }
  4143. },
  4144. "autoload": {
  4145. "psr-4": {
  4146. "Symfony\\Component\\CssSelector\\": ""
  4147. },
  4148. "exclude-from-classmap": [
  4149. "/Tests/"
  4150. ]
  4151. },
  4152. "notification-url": "https://packagist.org/downloads/",
  4153. "license": [
  4154. "MIT"
  4155. ],
  4156. "authors": [
  4157. {
  4158. "name": "Fabien Potencier",
  4159. "email": "fabien@symfony.com"
  4160. },
  4161. {
  4162. "name": "Jean-François Simon",
  4163. "email": "jeanfrancois.simon@sensiolabs.com"
  4164. },
  4165. {
  4166. "name": "Symfony Community",
  4167. "homepage": "https://symfony.com/contributors"
  4168. }
  4169. ],
  4170. "description": "Symfony CssSelector Component",
  4171. "homepage": "https://symfony.com",
  4172. "funding": [
  4173. {
  4174. "url": "https://symfony.com/sponsor",
  4175. "type": "custom"
  4176. },
  4177. {
  4178. "url": "https://github.com/fabpot",
  4179. "type": "github"
  4180. },
  4181. {
  4182. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4183. "type": "tidelift"
  4184. }
  4185. ],
  4186. "time": "2020-05-20T17:43:50+00:00"
  4187. },
  4188. {
  4189. "name": "symfony/deprecation-contracts",
  4190. "version": "v2.2.0",
  4191. "source": {
  4192. "type": "git",
  4193. "url": "https://github.com/symfony/deprecation-contracts.git",
  4194. "reference": "5fa56b4074d1ae755beb55617ddafe6f5d78f665"
  4195. },
  4196. "dist": {
  4197. "type": "zip",
  4198. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/5fa56b4074d1ae755beb55617ddafe6f5d78f665",
  4199. "reference": "5fa56b4074d1ae755beb55617ddafe6f5d78f665",
  4200. "shasum": ""
  4201. },
  4202. "require": {
  4203. "php": ">=7.1"
  4204. },
  4205. "type": "library",
  4206. "extra": {
  4207. "branch-alias": {
  4208. "dev-master": "2.2-dev"
  4209. },
  4210. "thanks": {
  4211. "name": "symfony/contracts",
  4212. "url": "https://github.com/symfony/contracts"
  4213. }
  4214. },
  4215. "autoload": {
  4216. "files": [
  4217. "function.php"
  4218. ]
  4219. },
  4220. "notification-url": "https://packagist.org/downloads/",
  4221. "license": [
  4222. "MIT"
  4223. ],
  4224. "authors": [
  4225. {
  4226. "name": "Nicolas Grekas",
  4227. "email": "p@tchwork.com"
  4228. },
  4229. {
  4230. "name": "Symfony Community",
  4231. "homepage": "https://symfony.com/contributors"
  4232. }
  4233. ],
  4234. "description": "A generic function and convention to trigger deprecation notices",
  4235. "homepage": "https://symfony.com",
  4236. "support": {
  4237. "source": "https://github.com/symfony/deprecation-contracts/tree/master"
  4238. },
  4239. "funding": [
  4240. {
  4241. "url": "https://symfony.com/sponsor",
  4242. "type": "custom"
  4243. },
  4244. {
  4245. "url": "https://github.com/fabpot",
  4246. "type": "github"
  4247. },
  4248. {
  4249. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4250. "type": "tidelift"
  4251. }
  4252. ],
  4253. "time": "2020-09-07T11:33:47+00:00"
  4254. },
  4255. {
  4256. "name": "symfony/error-handler",
  4257. "version": "v5.1.5",
  4258. "source": {
  4259. "type": "git",
  4260. "url": "https://github.com/symfony/error-handler.git",
  4261. "reference": "525636d4b84e06c6ca72d96b6856b5b169416e6a"
  4262. },
  4263. "dist": {
  4264. "type": "zip",
  4265. "url": "https://api.github.com/repos/symfony/error-handler/zipball/525636d4b84e06c6ca72d96b6856b5b169416e6a",
  4266. "reference": "525636d4b84e06c6ca72d96b6856b5b169416e6a",
  4267. "shasum": ""
  4268. },
  4269. "require": {
  4270. "php": ">=7.2.5",
  4271. "psr/log": "^1.0",
  4272. "symfony/polyfill-php80": "^1.15",
  4273. "symfony/var-dumper": "^4.4|^5.0"
  4274. },
  4275. "require-dev": {
  4276. "symfony/deprecation-contracts": "^2.1",
  4277. "symfony/http-kernel": "^4.4|^5.0",
  4278. "symfony/serializer": "^4.4|^5.0"
  4279. },
  4280. "type": "library",
  4281. "extra": {
  4282. "branch-alias": {
  4283. "dev-master": "5.1-dev"
  4284. }
  4285. },
  4286. "autoload": {
  4287. "psr-4": {
  4288. "Symfony\\Component\\ErrorHandler\\": ""
  4289. },
  4290. "exclude-from-classmap": [
  4291. "/Tests/"
  4292. ]
  4293. },
  4294. "notification-url": "https://packagist.org/downloads/",
  4295. "license": [
  4296. "MIT"
  4297. ],
  4298. "authors": [
  4299. {
  4300. "name": "Fabien Potencier",
  4301. "email": "fabien@symfony.com"
  4302. },
  4303. {
  4304. "name": "Symfony Community",
  4305. "homepage": "https://symfony.com/contributors"
  4306. }
  4307. ],
  4308. "description": "Symfony ErrorHandler Component",
  4309. "homepage": "https://symfony.com",
  4310. "funding": [
  4311. {
  4312. "url": "https://symfony.com/sponsor",
  4313. "type": "custom"
  4314. },
  4315. {
  4316. "url": "https://github.com/fabpot",
  4317. "type": "github"
  4318. },
  4319. {
  4320. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4321. "type": "tidelift"
  4322. }
  4323. ],
  4324. "time": "2020-08-17T10:01:29+00:00"
  4325. },
  4326. {
  4327. "name": "symfony/event-dispatcher",
  4328. "version": "v5.1.5",
  4329. "source": {
  4330. "type": "git",
  4331. "url": "https://github.com/symfony/event-dispatcher.git",
  4332. "reference": "94871fc0a69c3c5da57764187724cdce0755899c"
  4333. },
  4334. "dist": {
  4335. "type": "zip",
  4336. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/94871fc0a69c3c5da57764187724cdce0755899c",
  4337. "reference": "94871fc0a69c3c5da57764187724cdce0755899c",
  4338. "shasum": ""
  4339. },
  4340. "require": {
  4341. "php": ">=7.2.5",
  4342. "symfony/deprecation-contracts": "^2.1",
  4343. "symfony/event-dispatcher-contracts": "^2",
  4344. "symfony/polyfill-php80": "^1.15"
  4345. },
  4346. "conflict": {
  4347. "symfony/dependency-injection": "<4.4"
  4348. },
  4349. "provide": {
  4350. "psr/event-dispatcher-implementation": "1.0",
  4351. "symfony/event-dispatcher-implementation": "2.0"
  4352. },
  4353. "require-dev": {
  4354. "psr/log": "~1.0",
  4355. "symfony/config": "^4.4|^5.0",
  4356. "symfony/dependency-injection": "^4.4|^5.0",
  4357. "symfony/expression-language": "^4.4|^5.0",
  4358. "symfony/http-foundation": "^4.4|^5.0",
  4359. "symfony/service-contracts": "^1.1|^2",
  4360. "symfony/stopwatch": "^4.4|^5.0"
  4361. },
  4362. "suggest": {
  4363. "symfony/dependency-injection": "",
  4364. "symfony/http-kernel": ""
  4365. },
  4366. "type": "library",
  4367. "extra": {
  4368. "branch-alias": {
  4369. "dev-master": "5.1-dev"
  4370. }
  4371. },
  4372. "autoload": {
  4373. "psr-4": {
  4374. "Symfony\\Component\\EventDispatcher\\": ""
  4375. },
  4376. "exclude-from-classmap": [
  4377. "/Tests/"
  4378. ]
  4379. },
  4380. "notification-url": "https://packagist.org/downloads/",
  4381. "license": [
  4382. "MIT"
  4383. ],
  4384. "authors": [
  4385. {
  4386. "name": "Fabien Potencier",
  4387. "email": "fabien@symfony.com"
  4388. },
  4389. {
  4390. "name": "Symfony Community",
  4391. "homepage": "https://symfony.com/contributors"
  4392. }
  4393. ],
  4394. "description": "Symfony EventDispatcher Component",
  4395. "homepage": "https://symfony.com",
  4396. "funding": [
  4397. {
  4398. "url": "https://symfony.com/sponsor",
  4399. "type": "custom"
  4400. },
  4401. {
  4402. "url": "https://github.com/fabpot",
  4403. "type": "github"
  4404. },
  4405. {
  4406. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4407. "type": "tidelift"
  4408. }
  4409. ],
  4410. "time": "2020-08-13T14:19:42+00:00"
  4411. },
  4412. {
  4413. "name": "symfony/event-dispatcher-contracts",
  4414. "version": "v2.2.0",
  4415. "source": {
  4416. "type": "git",
  4417. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  4418. "reference": "0ba7d54483095a198fa51781bc608d17e84dffa2"
  4419. },
  4420. "dist": {
  4421. "type": "zip",
  4422. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/0ba7d54483095a198fa51781bc608d17e84dffa2",
  4423. "reference": "0ba7d54483095a198fa51781bc608d17e84dffa2",
  4424. "shasum": ""
  4425. },
  4426. "require": {
  4427. "php": ">=7.2.5",
  4428. "psr/event-dispatcher": "^1"
  4429. },
  4430. "suggest": {
  4431. "symfony/event-dispatcher-implementation": ""
  4432. },
  4433. "type": "library",
  4434. "extra": {
  4435. "branch-alias": {
  4436. "dev-master": "2.2-dev"
  4437. },
  4438. "thanks": {
  4439. "name": "symfony/contracts",
  4440. "url": "https://github.com/symfony/contracts"
  4441. }
  4442. },
  4443. "autoload": {
  4444. "psr-4": {
  4445. "Symfony\\Contracts\\EventDispatcher\\": ""
  4446. }
  4447. },
  4448. "notification-url": "https://packagist.org/downloads/",
  4449. "license": [
  4450. "MIT"
  4451. ],
  4452. "authors": [
  4453. {
  4454. "name": "Nicolas Grekas",
  4455. "email": "p@tchwork.com"
  4456. },
  4457. {
  4458. "name": "Symfony Community",
  4459. "homepage": "https://symfony.com/contributors"
  4460. }
  4461. ],
  4462. "description": "Generic abstractions related to dispatching event",
  4463. "homepage": "https://symfony.com",
  4464. "keywords": [
  4465. "abstractions",
  4466. "contracts",
  4467. "decoupling",
  4468. "interfaces",
  4469. "interoperability",
  4470. "standards"
  4471. ],
  4472. "support": {
  4473. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v2.2.0"
  4474. },
  4475. "funding": [
  4476. {
  4477. "url": "https://symfony.com/sponsor",
  4478. "type": "custom"
  4479. },
  4480. {
  4481. "url": "https://github.com/fabpot",
  4482. "type": "github"
  4483. },
  4484. {
  4485. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4486. "type": "tidelift"
  4487. }
  4488. ],
  4489. "time": "2020-09-07T11:33:47+00:00"
  4490. },
  4491. {
  4492. "name": "symfony/finder",
  4493. "version": "v5.1.5",
  4494. "source": {
  4495. "type": "git",
  4496. "url": "https://github.com/symfony/finder.git",
  4497. "reference": "2b765f0cf6612b3636e738c0689b29aa63088d5d"
  4498. },
  4499. "dist": {
  4500. "type": "zip",
  4501. "url": "https://api.github.com/repos/symfony/finder/zipball/2b765f0cf6612b3636e738c0689b29aa63088d5d",
  4502. "reference": "2b765f0cf6612b3636e738c0689b29aa63088d5d",
  4503. "shasum": ""
  4504. },
  4505. "require": {
  4506. "php": ">=7.2.5"
  4507. },
  4508. "type": "library",
  4509. "extra": {
  4510. "branch-alias": {
  4511. "dev-master": "5.1-dev"
  4512. }
  4513. },
  4514. "autoload": {
  4515. "psr-4": {
  4516. "Symfony\\Component\\Finder\\": ""
  4517. },
  4518. "exclude-from-classmap": [
  4519. "/Tests/"
  4520. ]
  4521. },
  4522. "notification-url": "https://packagist.org/downloads/",
  4523. "license": [
  4524. "MIT"
  4525. ],
  4526. "authors": [
  4527. {
  4528. "name": "Fabien Potencier",
  4529. "email": "fabien@symfony.com"
  4530. },
  4531. {
  4532. "name": "Symfony Community",
  4533. "homepage": "https://symfony.com/contributors"
  4534. }
  4535. ],
  4536. "description": "Symfony Finder Component",
  4537. "homepage": "https://symfony.com",
  4538. "funding": [
  4539. {
  4540. "url": "https://symfony.com/sponsor",
  4541. "type": "custom"
  4542. },
  4543. {
  4544. "url": "https://github.com/fabpot",
  4545. "type": "github"
  4546. },
  4547. {
  4548. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4549. "type": "tidelift"
  4550. }
  4551. ],
  4552. "time": "2020-08-17T10:01:29+00:00"
  4553. },
  4554. {
  4555. "name": "symfony/http-foundation",
  4556. "version": "v5.1.5",
  4557. "source": {
  4558. "type": "git",
  4559. "url": "https://github.com/symfony/http-foundation.git",
  4560. "reference": "41a4647f12870e9d41d9a7d72ff0614a27208558"
  4561. },
  4562. "dist": {
  4563. "type": "zip",
  4564. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/41a4647f12870e9d41d9a7d72ff0614a27208558",
  4565. "reference": "41a4647f12870e9d41d9a7d72ff0614a27208558",
  4566. "shasum": ""
  4567. },
  4568. "require": {
  4569. "php": ">=7.2.5",
  4570. "symfony/deprecation-contracts": "^2.1",
  4571. "symfony/polyfill-mbstring": "~1.1",
  4572. "symfony/polyfill-php80": "^1.15"
  4573. },
  4574. "require-dev": {
  4575. "predis/predis": "~1.0",
  4576. "symfony/cache": "^4.4|^5.0",
  4577. "symfony/expression-language": "^4.4|^5.0",
  4578. "symfony/mime": "^4.4|^5.0"
  4579. },
  4580. "suggest": {
  4581. "symfony/mime": "To use the file extension guesser"
  4582. },
  4583. "type": "library",
  4584. "extra": {
  4585. "branch-alias": {
  4586. "dev-master": "5.1-dev"
  4587. }
  4588. },
  4589. "autoload": {
  4590. "psr-4": {
  4591. "Symfony\\Component\\HttpFoundation\\": ""
  4592. },
  4593. "exclude-from-classmap": [
  4594. "/Tests/"
  4595. ]
  4596. },
  4597. "notification-url": "https://packagist.org/downloads/",
  4598. "license": [
  4599. "MIT"
  4600. ],
  4601. "authors": [
  4602. {
  4603. "name": "Fabien Potencier",
  4604. "email": "fabien@symfony.com"
  4605. },
  4606. {
  4607. "name": "Symfony Community",
  4608. "homepage": "https://symfony.com/contributors"
  4609. }
  4610. ],
  4611. "description": "Symfony HttpFoundation Component",
  4612. "homepage": "https://symfony.com",
  4613. "funding": [
  4614. {
  4615. "url": "https://symfony.com/sponsor",
  4616. "type": "custom"
  4617. },
  4618. {
  4619. "url": "https://github.com/fabpot",
  4620. "type": "github"
  4621. },
  4622. {
  4623. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4624. "type": "tidelift"
  4625. }
  4626. ],
  4627. "time": "2020-08-17T07:48:54+00:00"
  4628. },
  4629. {
  4630. "name": "symfony/http-kernel",
  4631. "version": "v5.1.5",
  4632. "source": {
  4633. "type": "git",
  4634. "url": "https://github.com/symfony/http-kernel.git",
  4635. "reference": "3e32676e6cb5d2081c91a56783471ff8a7f7110b"
  4636. },
  4637. "dist": {
  4638. "type": "zip",
  4639. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/3e32676e6cb5d2081c91a56783471ff8a7f7110b",
  4640. "reference": "3e32676e6cb5d2081c91a56783471ff8a7f7110b",
  4641. "shasum": ""
  4642. },
  4643. "require": {
  4644. "php": ">=7.2.5",
  4645. "psr/log": "~1.0",
  4646. "symfony/deprecation-contracts": "^2.1",
  4647. "symfony/error-handler": "^4.4|^5.0",
  4648. "symfony/event-dispatcher": "^5.0",
  4649. "symfony/http-foundation": "^4.4|^5.0",
  4650. "symfony/polyfill-ctype": "^1.8",
  4651. "symfony/polyfill-php73": "^1.9",
  4652. "symfony/polyfill-php80": "^1.15"
  4653. },
  4654. "conflict": {
  4655. "symfony/browser-kit": "<4.4",
  4656. "symfony/cache": "<5.0",
  4657. "symfony/config": "<5.0",
  4658. "symfony/console": "<4.4",
  4659. "symfony/dependency-injection": "<4.4",
  4660. "symfony/doctrine-bridge": "<5.0",
  4661. "symfony/form": "<5.0",
  4662. "symfony/http-client": "<5.0",
  4663. "symfony/mailer": "<5.0",
  4664. "symfony/messenger": "<5.0",
  4665. "symfony/translation": "<5.0",
  4666. "symfony/twig-bridge": "<5.0",
  4667. "symfony/validator": "<5.0",
  4668. "twig/twig": "<2.4"
  4669. },
  4670. "provide": {
  4671. "psr/log-implementation": "1.0"
  4672. },
  4673. "require-dev": {
  4674. "psr/cache": "~1.0",
  4675. "symfony/browser-kit": "^4.4|^5.0",
  4676. "symfony/config": "^5.0",
  4677. "symfony/console": "^4.4|^5.0",
  4678. "symfony/css-selector": "^4.4|^5.0",
  4679. "symfony/dependency-injection": "^4.4|^5.0",
  4680. "symfony/dom-crawler": "^4.4|^5.0",
  4681. "symfony/expression-language": "^4.4|^5.0",
  4682. "symfony/finder": "^4.4|^5.0",
  4683. "symfony/process": "^4.4|^5.0",
  4684. "symfony/routing": "^4.4|^5.0",
  4685. "symfony/stopwatch": "^4.4|^5.0",
  4686. "symfony/translation": "^4.4|^5.0",
  4687. "symfony/translation-contracts": "^1.1|^2",
  4688. "twig/twig": "^2.4|^3.0"
  4689. },
  4690. "suggest": {
  4691. "symfony/browser-kit": "",
  4692. "symfony/config": "",
  4693. "symfony/console": "",
  4694. "symfony/dependency-injection": ""
  4695. },
  4696. "type": "library",
  4697. "extra": {
  4698. "branch-alias": {
  4699. "dev-master": "5.1-dev"
  4700. }
  4701. },
  4702. "autoload": {
  4703. "psr-4": {
  4704. "Symfony\\Component\\HttpKernel\\": ""
  4705. },
  4706. "exclude-from-classmap": [
  4707. "/Tests/"
  4708. ]
  4709. },
  4710. "notification-url": "https://packagist.org/downloads/",
  4711. "license": [
  4712. "MIT"
  4713. ],
  4714. "authors": [
  4715. {
  4716. "name": "Fabien Potencier",
  4717. "email": "fabien@symfony.com"
  4718. },
  4719. {
  4720. "name": "Symfony Community",
  4721. "homepage": "https://symfony.com/contributors"
  4722. }
  4723. ],
  4724. "description": "Symfony HttpKernel Component",
  4725. "homepage": "https://symfony.com",
  4726. "funding": [
  4727. {
  4728. "url": "https://symfony.com/sponsor",
  4729. "type": "custom"
  4730. },
  4731. {
  4732. "url": "https://github.com/fabpot",
  4733. "type": "github"
  4734. },
  4735. {
  4736. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4737. "type": "tidelift"
  4738. }
  4739. ],
  4740. "time": "2020-09-02T08:15:18+00:00"
  4741. },
  4742. {
  4743. "name": "symfony/mime",
  4744. "version": "v5.1.5",
  4745. "source": {
  4746. "type": "git",
  4747. "url": "https://github.com/symfony/mime.git",
  4748. "reference": "89a2c9b4cb7b5aa516cf55f5194c384f444c81dc"
  4749. },
  4750. "dist": {
  4751. "type": "zip",
  4752. "url": "https://api.github.com/repos/symfony/mime/zipball/89a2c9b4cb7b5aa516cf55f5194c384f444c81dc",
  4753. "reference": "89a2c9b4cb7b5aa516cf55f5194c384f444c81dc",
  4754. "shasum": ""
  4755. },
  4756. "require": {
  4757. "php": ">=7.2.5",
  4758. "symfony/polyfill-intl-idn": "^1.10",
  4759. "symfony/polyfill-mbstring": "^1.0",
  4760. "symfony/polyfill-php80": "^1.15"
  4761. },
  4762. "conflict": {
  4763. "symfony/mailer": "<4.4"
  4764. },
  4765. "require-dev": {
  4766. "egulias/email-validator": "^2.1.10",
  4767. "symfony/dependency-injection": "^4.4|^5.0"
  4768. },
  4769. "type": "library",
  4770. "extra": {
  4771. "branch-alias": {
  4772. "dev-master": "5.1-dev"
  4773. }
  4774. },
  4775. "autoload": {
  4776. "psr-4": {
  4777. "Symfony\\Component\\Mime\\": ""
  4778. },
  4779. "exclude-from-classmap": [
  4780. "/Tests/"
  4781. ]
  4782. },
  4783. "notification-url": "https://packagist.org/downloads/",
  4784. "license": [
  4785. "MIT"
  4786. ],
  4787. "authors": [
  4788. {
  4789. "name": "Fabien Potencier",
  4790. "email": "fabien@symfony.com"
  4791. },
  4792. {
  4793. "name": "Symfony Community",
  4794. "homepage": "https://symfony.com/contributors"
  4795. }
  4796. ],
  4797. "description": "A library to manipulate MIME messages",
  4798. "homepage": "https://symfony.com",
  4799. "keywords": [
  4800. "mime",
  4801. "mime-type"
  4802. ],
  4803. "funding": [
  4804. {
  4805. "url": "https://symfony.com/sponsor",
  4806. "type": "custom"
  4807. },
  4808. {
  4809. "url": "https://github.com/fabpot",
  4810. "type": "github"
  4811. },
  4812. {
  4813. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4814. "type": "tidelift"
  4815. }
  4816. ],
  4817. "time": "2020-08-17T10:01:29+00:00"
  4818. },
  4819. {
  4820. "name": "symfony/polyfill-ctype",
  4821. "version": "v1.18.1",
  4822. "source": {
  4823. "type": "git",
  4824. "url": "https://github.com/symfony/polyfill-ctype.git",
  4825. "reference": "1c302646f6efc070cd46856e600e5e0684d6b454"
  4826. },
  4827. "dist": {
  4828. "type": "zip",
  4829. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/1c302646f6efc070cd46856e600e5e0684d6b454",
  4830. "reference": "1c302646f6efc070cd46856e600e5e0684d6b454",
  4831. "shasum": ""
  4832. },
  4833. "require": {
  4834. "php": ">=5.3.3"
  4835. },
  4836. "suggest": {
  4837. "ext-ctype": "For best performance"
  4838. },
  4839. "type": "library",
  4840. "extra": {
  4841. "branch-alias": {
  4842. "dev-master": "1.18-dev"
  4843. },
  4844. "thanks": {
  4845. "name": "symfony/polyfill",
  4846. "url": "https://github.com/symfony/polyfill"
  4847. }
  4848. },
  4849. "autoload": {
  4850. "psr-4": {
  4851. "Symfony\\Polyfill\\Ctype\\": ""
  4852. },
  4853. "files": [
  4854. "bootstrap.php"
  4855. ]
  4856. },
  4857. "notification-url": "https://packagist.org/downloads/",
  4858. "license": [
  4859. "MIT"
  4860. ],
  4861. "authors": [
  4862. {
  4863. "name": "Gert de Pagter",
  4864. "email": "BackEndTea@gmail.com"
  4865. },
  4866. {
  4867. "name": "Symfony Community",
  4868. "homepage": "https://symfony.com/contributors"
  4869. }
  4870. ],
  4871. "description": "Symfony polyfill for ctype functions",
  4872. "homepage": "https://symfony.com",
  4873. "keywords": [
  4874. "compatibility",
  4875. "ctype",
  4876. "polyfill",
  4877. "portable"
  4878. ],
  4879. "funding": [
  4880. {
  4881. "url": "https://symfony.com/sponsor",
  4882. "type": "custom"
  4883. },
  4884. {
  4885. "url": "https://github.com/fabpot",
  4886. "type": "github"
  4887. },
  4888. {
  4889. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4890. "type": "tidelift"
  4891. }
  4892. ],
  4893. "time": "2020-07-14T12:35:20+00:00"
  4894. },
  4895. {
  4896. "name": "symfony/polyfill-iconv",
  4897. "version": "v1.18.1",
  4898. "source": {
  4899. "type": "git",
  4900. "url": "https://github.com/symfony/polyfill-iconv.git",
  4901. "reference": "6c2f78eb8f5ab8eaea98f6d414a5915f2e0fce36"
  4902. },
  4903. "dist": {
  4904. "type": "zip",
  4905. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/6c2f78eb8f5ab8eaea98f6d414a5915f2e0fce36",
  4906. "reference": "6c2f78eb8f5ab8eaea98f6d414a5915f2e0fce36",
  4907. "shasum": ""
  4908. },
  4909. "require": {
  4910. "php": ">=5.3.3"
  4911. },
  4912. "suggest": {
  4913. "ext-iconv": "For best performance"
  4914. },
  4915. "type": "library",
  4916. "extra": {
  4917. "branch-alias": {
  4918. "dev-master": "1.18-dev"
  4919. },
  4920. "thanks": {
  4921. "name": "symfony/polyfill",
  4922. "url": "https://github.com/symfony/polyfill"
  4923. }
  4924. },
  4925. "autoload": {
  4926. "psr-4": {
  4927. "Symfony\\Polyfill\\Iconv\\": ""
  4928. },
  4929. "files": [
  4930. "bootstrap.php"
  4931. ]
  4932. },
  4933. "notification-url": "https://packagist.org/downloads/",
  4934. "license": [
  4935. "MIT"
  4936. ],
  4937. "authors": [
  4938. {
  4939. "name": "Nicolas Grekas",
  4940. "email": "p@tchwork.com"
  4941. },
  4942. {
  4943. "name": "Symfony Community",
  4944. "homepage": "https://symfony.com/contributors"
  4945. }
  4946. ],
  4947. "description": "Symfony polyfill for the Iconv extension",
  4948. "homepage": "https://symfony.com",
  4949. "keywords": [
  4950. "compatibility",
  4951. "iconv",
  4952. "polyfill",
  4953. "portable",
  4954. "shim"
  4955. ],
  4956. "funding": [
  4957. {
  4958. "url": "https://symfony.com/sponsor",
  4959. "type": "custom"
  4960. },
  4961. {
  4962. "url": "https://github.com/fabpot",
  4963. "type": "github"
  4964. },
  4965. {
  4966. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4967. "type": "tidelift"
  4968. }
  4969. ],
  4970. "time": "2020-07-14T12:35:20+00:00"
  4971. },
  4972. {
  4973. "name": "symfony/polyfill-intl-grapheme",
  4974. "version": "v1.18.1",
  4975. "source": {
  4976. "type": "git",
  4977. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  4978. "reference": "b740103edbdcc39602239ee8860f0f45a8eb9aa5"
  4979. },
  4980. "dist": {
  4981. "type": "zip",
  4982. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/b740103edbdcc39602239ee8860f0f45a8eb9aa5",
  4983. "reference": "b740103edbdcc39602239ee8860f0f45a8eb9aa5",
  4984. "shasum": ""
  4985. },
  4986. "require": {
  4987. "php": ">=5.3.3"
  4988. },
  4989. "suggest": {
  4990. "ext-intl": "For best performance"
  4991. },
  4992. "type": "library",
  4993. "extra": {
  4994. "branch-alias": {
  4995. "dev-master": "1.18-dev"
  4996. },
  4997. "thanks": {
  4998. "name": "symfony/polyfill",
  4999. "url": "https://github.com/symfony/polyfill"
  5000. }
  5001. },
  5002. "autoload": {
  5003. "psr-4": {
  5004. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  5005. },
  5006. "files": [
  5007. "bootstrap.php"
  5008. ]
  5009. },
  5010. "notification-url": "https://packagist.org/downloads/",
  5011. "license": [
  5012. "MIT"
  5013. ],
  5014. "authors": [
  5015. {
  5016. "name": "Nicolas Grekas",
  5017. "email": "p@tchwork.com"
  5018. },
  5019. {
  5020. "name": "Symfony Community",
  5021. "homepage": "https://symfony.com/contributors"
  5022. }
  5023. ],
  5024. "description": "Symfony polyfill for intl's grapheme_* functions",
  5025. "homepage": "https://symfony.com",
  5026. "keywords": [
  5027. "compatibility",
  5028. "grapheme",
  5029. "intl",
  5030. "polyfill",
  5031. "portable",
  5032. "shim"
  5033. ],
  5034. "funding": [
  5035. {
  5036. "url": "https://symfony.com/sponsor",
  5037. "type": "custom"
  5038. },
  5039. {
  5040. "url": "https://github.com/fabpot",
  5041. "type": "github"
  5042. },
  5043. {
  5044. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5045. "type": "tidelift"
  5046. }
  5047. ],
  5048. "time": "2020-07-14T12:35:20+00:00"
  5049. },
  5050. {
  5051. "name": "symfony/polyfill-intl-idn",
  5052. "version": "v1.18.1",
  5053. "source": {
  5054. "type": "git",
  5055. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  5056. "reference": "5dcab1bc7146cf8c1beaa4502a3d9be344334251"
  5057. },
  5058. "dist": {
  5059. "type": "zip",
  5060. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/5dcab1bc7146cf8c1beaa4502a3d9be344334251",
  5061. "reference": "5dcab1bc7146cf8c1beaa4502a3d9be344334251",
  5062. "shasum": ""
  5063. },
  5064. "require": {
  5065. "php": ">=5.3.3",
  5066. "symfony/polyfill-intl-normalizer": "^1.10",
  5067. "symfony/polyfill-php70": "^1.10",
  5068. "symfony/polyfill-php72": "^1.10"
  5069. },
  5070. "suggest": {
  5071. "ext-intl": "For best performance"
  5072. },
  5073. "type": "library",
  5074. "extra": {
  5075. "branch-alias": {
  5076. "dev-master": "1.18-dev"
  5077. },
  5078. "thanks": {
  5079. "name": "symfony/polyfill",
  5080. "url": "https://github.com/symfony/polyfill"
  5081. }
  5082. },
  5083. "autoload": {
  5084. "psr-4": {
  5085. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  5086. },
  5087. "files": [
  5088. "bootstrap.php"
  5089. ]
  5090. },
  5091. "notification-url": "https://packagist.org/downloads/",
  5092. "license": [
  5093. "MIT"
  5094. ],
  5095. "authors": [
  5096. {
  5097. "name": "Laurent Bassin",
  5098. "email": "laurent@bassin.info"
  5099. },
  5100. {
  5101. "name": "Trevor Rowbotham",
  5102. "email": "trevor.rowbotham@pm.me"
  5103. },
  5104. {
  5105. "name": "Symfony Community",
  5106. "homepage": "https://symfony.com/contributors"
  5107. }
  5108. ],
  5109. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  5110. "homepage": "https://symfony.com",
  5111. "keywords": [
  5112. "compatibility",
  5113. "idn",
  5114. "intl",
  5115. "polyfill",
  5116. "portable",
  5117. "shim"
  5118. ],
  5119. "funding": [
  5120. {
  5121. "url": "https://symfony.com/sponsor",
  5122. "type": "custom"
  5123. },
  5124. {
  5125. "url": "https://github.com/fabpot",
  5126. "type": "github"
  5127. },
  5128. {
  5129. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5130. "type": "tidelift"
  5131. }
  5132. ],
  5133. "time": "2020-08-04T06:02:08+00:00"
  5134. },
  5135. {
  5136. "name": "symfony/polyfill-intl-normalizer",
  5137. "version": "v1.18.1",
  5138. "source": {
  5139. "type": "git",
  5140. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  5141. "reference": "37078a8dd4a2a1e9ab0231af7c6cb671b2ed5a7e"
  5142. },
  5143. "dist": {
  5144. "type": "zip",
  5145. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/37078a8dd4a2a1e9ab0231af7c6cb671b2ed5a7e",
  5146. "reference": "37078a8dd4a2a1e9ab0231af7c6cb671b2ed5a7e",
  5147. "shasum": ""
  5148. },
  5149. "require": {
  5150. "php": ">=5.3.3"
  5151. },
  5152. "suggest": {
  5153. "ext-intl": "For best performance"
  5154. },
  5155. "type": "library",
  5156. "extra": {
  5157. "branch-alias": {
  5158. "dev-master": "1.18-dev"
  5159. },
  5160. "thanks": {
  5161. "name": "symfony/polyfill",
  5162. "url": "https://github.com/symfony/polyfill"
  5163. }
  5164. },
  5165. "autoload": {
  5166. "psr-4": {
  5167. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  5168. },
  5169. "files": [
  5170. "bootstrap.php"
  5171. ],
  5172. "classmap": [
  5173. "Resources/stubs"
  5174. ]
  5175. },
  5176. "notification-url": "https://packagist.org/downloads/",
  5177. "license": [
  5178. "MIT"
  5179. ],
  5180. "authors": [
  5181. {
  5182. "name": "Nicolas Grekas",
  5183. "email": "p@tchwork.com"
  5184. },
  5185. {
  5186. "name": "Symfony Community",
  5187. "homepage": "https://symfony.com/contributors"
  5188. }
  5189. ],
  5190. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  5191. "homepage": "https://symfony.com",
  5192. "keywords": [
  5193. "compatibility",
  5194. "intl",
  5195. "normalizer",
  5196. "polyfill",
  5197. "portable",
  5198. "shim"
  5199. ],
  5200. "funding": [
  5201. {
  5202. "url": "https://symfony.com/sponsor",
  5203. "type": "custom"
  5204. },
  5205. {
  5206. "url": "https://github.com/fabpot",
  5207. "type": "github"
  5208. },
  5209. {
  5210. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5211. "type": "tidelift"
  5212. }
  5213. ],
  5214. "time": "2020-07-14T12:35:20+00:00"
  5215. },
  5216. {
  5217. "name": "symfony/polyfill-mbstring",
  5218. "version": "v1.18.1",
  5219. "source": {
  5220. "type": "git",
  5221. "url": "https://github.com/symfony/polyfill-mbstring.git",
  5222. "reference": "a6977d63bf9a0ad4c65cd352709e230876f9904a"
  5223. },
  5224. "dist": {
  5225. "type": "zip",
  5226. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/a6977d63bf9a0ad4c65cd352709e230876f9904a",
  5227. "reference": "a6977d63bf9a0ad4c65cd352709e230876f9904a",
  5228. "shasum": ""
  5229. },
  5230. "require": {
  5231. "php": ">=5.3.3"
  5232. },
  5233. "suggest": {
  5234. "ext-mbstring": "For best performance"
  5235. },
  5236. "type": "library",
  5237. "extra": {
  5238. "branch-alias": {
  5239. "dev-master": "1.18-dev"
  5240. },
  5241. "thanks": {
  5242. "name": "symfony/polyfill",
  5243. "url": "https://github.com/symfony/polyfill"
  5244. }
  5245. },
  5246. "autoload": {
  5247. "psr-4": {
  5248. "Symfony\\Polyfill\\Mbstring\\": ""
  5249. },
  5250. "files": [
  5251. "bootstrap.php"
  5252. ]
  5253. },
  5254. "notification-url": "https://packagist.org/downloads/",
  5255. "license": [
  5256. "MIT"
  5257. ],
  5258. "authors": [
  5259. {
  5260. "name": "Nicolas Grekas",
  5261. "email": "p@tchwork.com"
  5262. },
  5263. {
  5264. "name": "Symfony Community",
  5265. "homepage": "https://symfony.com/contributors"
  5266. }
  5267. ],
  5268. "description": "Symfony polyfill for the Mbstring extension",
  5269. "homepage": "https://symfony.com",
  5270. "keywords": [
  5271. "compatibility",
  5272. "mbstring",
  5273. "polyfill",
  5274. "portable",
  5275. "shim"
  5276. ],
  5277. "funding": [
  5278. {
  5279. "url": "https://symfony.com/sponsor",
  5280. "type": "custom"
  5281. },
  5282. {
  5283. "url": "https://github.com/fabpot",
  5284. "type": "github"
  5285. },
  5286. {
  5287. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5288. "type": "tidelift"
  5289. }
  5290. ],
  5291. "time": "2020-07-14T12:35:20+00:00"
  5292. },
  5293. {
  5294. "name": "symfony/polyfill-php70",
  5295. "version": "v1.18.1",
  5296. "source": {
  5297. "type": "git",
  5298. "url": "https://github.com/symfony/polyfill-php70.git",
  5299. "reference": "0dd93f2c578bdc9c72697eaa5f1dd25644e618d3"
  5300. },
  5301. "dist": {
  5302. "type": "zip",
  5303. "url": "https://api.github.com/repos/symfony/polyfill-php70/zipball/0dd93f2c578bdc9c72697eaa5f1dd25644e618d3",
  5304. "reference": "0dd93f2c578bdc9c72697eaa5f1dd25644e618d3",
  5305. "shasum": ""
  5306. },
  5307. "require": {
  5308. "paragonie/random_compat": "~1.0|~2.0|~9.99",
  5309. "php": ">=5.3.3"
  5310. },
  5311. "type": "library",
  5312. "extra": {
  5313. "branch-alias": {
  5314. "dev-master": "1.18-dev"
  5315. },
  5316. "thanks": {
  5317. "name": "symfony/polyfill",
  5318. "url": "https://github.com/symfony/polyfill"
  5319. }
  5320. },
  5321. "autoload": {
  5322. "psr-4": {
  5323. "Symfony\\Polyfill\\Php70\\": ""
  5324. },
  5325. "files": [
  5326. "bootstrap.php"
  5327. ],
  5328. "classmap": [
  5329. "Resources/stubs"
  5330. ]
  5331. },
  5332. "notification-url": "https://packagist.org/downloads/",
  5333. "license": [
  5334. "MIT"
  5335. ],
  5336. "authors": [
  5337. {
  5338. "name": "Nicolas Grekas",
  5339. "email": "p@tchwork.com"
  5340. },
  5341. {
  5342. "name": "Symfony Community",
  5343. "homepage": "https://symfony.com/contributors"
  5344. }
  5345. ],
  5346. "description": "Symfony polyfill backporting some PHP 7.0+ features to lower PHP versions",
  5347. "homepage": "https://symfony.com",
  5348. "keywords": [
  5349. "compatibility",
  5350. "polyfill",
  5351. "portable",
  5352. "shim"
  5353. ],
  5354. "funding": [
  5355. {
  5356. "url": "https://symfony.com/sponsor",
  5357. "type": "custom"
  5358. },
  5359. {
  5360. "url": "https://github.com/fabpot",
  5361. "type": "github"
  5362. },
  5363. {
  5364. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5365. "type": "tidelift"
  5366. }
  5367. ],
  5368. "time": "2020-07-14T12:35:20+00:00"
  5369. },
  5370. {
  5371. "name": "symfony/polyfill-php72",
  5372. "version": "v1.18.1",
  5373. "source": {
  5374. "type": "git",
  5375. "url": "https://github.com/symfony/polyfill-php72.git",
  5376. "reference": "639447d008615574653fb3bc60d1986d7172eaae"
  5377. },
  5378. "dist": {
  5379. "type": "zip",
  5380. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/639447d008615574653fb3bc60d1986d7172eaae",
  5381. "reference": "639447d008615574653fb3bc60d1986d7172eaae",
  5382. "shasum": ""
  5383. },
  5384. "require": {
  5385. "php": ">=5.3.3"
  5386. },
  5387. "type": "library",
  5388. "extra": {
  5389. "branch-alias": {
  5390. "dev-master": "1.18-dev"
  5391. },
  5392. "thanks": {
  5393. "name": "symfony/polyfill",
  5394. "url": "https://github.com/symfony/polyfill"
  5395. }
  5396. },
  5397. "autoload": {
  5398. "psr-4": {
  5399. "Symfony\\Polyfill\\Php72\\": ""
  5400. },
  5401. "files": [
  5402. "bootstrap.php"
  5403. ]
  5404. },
  5405. "notification-url": "https://packagist.org/downloads/",
  5406. "license": [
  5407. "MIT"
  5408. ],
  5409. "authors": [
  5410. {
  5411. "name": "Nicolas Grekas",
  5412. "email": "p@tchwork.com"
  5413. },
  5414. {
  5415. "name": "Symfony Community",
  5416. "homepage": "https://symfony.com/contributors"
  5417. }
  5418. ],
  5419. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  5420. "homepage": "https://symfony.com",
  5421. "keywords": [
  5422. "compatibility",
  5423. "polyfill",
  5424. "portable",
  5425. "shim"
  5426. ],
  5427. "funding": [
  5428. {
  5429. "url": "https://symfony.com/sponsor",
  5430. "type": "custom"
  5431. },
  5432. {
  5433. "url": "https://github.com/fabpot",
  5434. "type": "github"
  5435. },
  5436. {
  5437. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5438. "type": "tidelift"
  5439. }
  5440. ],
  5441. "time": "2020-07-14T12:35:20+00:00"
  5442. },
  5443. {
  5444. "name": "symfony/polyfill-php73",
  5445. "version": "v1.18.1",
  5446. "source": {
  5447. "type": "git",
  5448. "url": "https://github.com/symfony/polyfill-php73.git",
  5449. "reference": "fffa1a52a023e782cdcc221d781fe1ec8f87fcca"
  5450. },
  5451. "dist": {
  5452. "type": "zip",
  5453. "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/fffa1a52a023e782cdcc221d781fe1ec8f87fcca",
  5454. "reference": "fffa1a52a023e782cdcc221d781fe1ec8f87fcca",
  5455. "shasum": ""
  5456. },
  5457. "require": {
  5458. "php": ">=5.3.3"
  5459. },
  5460. "type": "library",
  5461. "extra": {
  5462. "branch-alias": {
  5463. "dev-master": "1.18-dev"
  5464. },
  5465. "thanks": {
  5466. "name": "symfony/polyfill",
  5467. "url": "https://github.com/symfony/polyfill"
  5468. }
  5469. },
  5470. "autoload": {
  5471. "psr-4": {
  5472. "Symfony\\Polyfill\\Php73\\": ""
  5473. },
  5474. "files": [
  5475. "bootstrap.php"
  5476. ],
  5477. "classmap": [
  5478. "Resources/stubs"
  5479. ]
  5480. },
  5481. "notification-url": "https://packagist.org/downloads/",
  5482. "license": [
  5483. "MIT"
  5484. ],
  5485. "authors": [
  5486. {
  5487. "name": "Nicolas Grekas",
  5488. "email": "p@tchwork.com"
  5489. },
  5490. {
  5491. "name": "Symfony Community",
  5492. "homepage": "https://symfony.com/contributors"
  5493. }
  5494. ],
  5495. "description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions",
  5496. "homepage": "https://symfony.com",
  5497. "keywords": [
  5498. "compatibility",
  5499. "polyfill",
  5500. "portable",
  5501. "shim"
  5502. ],
  5503. "funding": [
  5504. {
  5505. "url": "https://symfony.com/sponsor",
  5506. "type": "custom"
  5507. },
  5508. {
  5509. "url": "https://github.com/fabpot",
  5510. "type": "github"
  5511. },
  5512. {
  5513. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5514. "type": "tidelift"
  5515. }
  5516. ],
  5517. "time": "2020-07-14T12:35:20+00:00"
  5518. },
  5519. {
  5520. "name": "symfony/polyfill-php80",
  5521. "version": "v1.18.1",
  5522. "source": {
  5523. "type": "git",
  5524. "url": "https://github.com/symfony/polyfill-php80.git",
  5525. "reference": "d87d5766cbf48d72388a9f6b85f280c8ad51f981"
  5526. },
  5527. "dist": {
  5528. "type": "zip",
  5529. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/d87d5766cbf48d72388a9f6b85f280c8ad51f981",
  5530. "reference": "d87d5766cbf48d72388a9f6b85f280c8ad51f981",
  5531. "shasum": ""
  5532. },
  5533. "require": {
  5534. "php": ">=7.0.8"
  5535. },
  5536. "type": "library",
  5537. "extra": {
  5538. "branch-alias": {
  5539. "dev-master": "1.18-dev"
  5540. },
  5541. "thanks": {
  5542. "name": "symfony/polyfill",
  5543. "url": "https://github.com/symfony/polyfill"
  5544. }
  5545. },
  5546. "autoload": {
  5547. "psr-4": {
  5548. "Symfony\\Polyfill\\Php80\\": ""
  5549. },
  5550. "files": [
  5551. "bootstrap.php"
  5552. ],
  5553. "classmap": [
  5554. "Resources/stubs"
  5555. ]
  5556. },
  5557. "notification-url": "https://packagist.org/downloads/",
  5558. "license": [
  5559. "MIT"
  5560. ],
  5561. "authors": [
  5562. {
  5563. "name": "Ion Bazan",
  5564. "email": "ion.bazan@gmail.com"
  5565. },
  5566. {
  5567. "name": "Nicolas Grekas",
  5568. "email": "p@tchwork.com"
  5569. },
  5570. {
  5571. "name": "Symfony Community",
  5572. "homepage": "https://symfony.com/contributors"
  5573. }
  5574. ],
  5575. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  5576. "homepage": "https://symfony.com",
  5577. "keywords": [
  5578. "compatibility",
  5579. "polyfill",
  5580. "portable",
  5581. "shim"
  5582. ],
  5583. "funding": [
  5584. {
  5585. "url": "https://symfony.com/sponsor",
  5586. "type": "custom"
  5587. },
  5588. {
  5589. "url": "https://github.com/fabpot",
  5590. "type": "github"
  5591. },
  5592. {
  5593. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5594. "type": "tidelift"
  5595. }
  5596. ],
  5597. "time": "2020-07-14T12:35:20+00:00"
  5598. },
  5599. {
  5600. "name": "symfony/process",
  5601. "version": "v5.1.5",
  5602. "source": {
  5603. "type": "git",
  5604. "url": "https://github.com/symfony/process.git",
  5605. "reference": "1864216226af21eb76d9477f691e7cbf198e0402"
  5606. },
  5607. "dist": {
  5608. "type": "zip",
  5609. "url": "https://api.github.com/repos/symfony/process/zipball/1864216226af21eb76d9477f691e7cbf198e0402",
  5610. "reference": "1864216226af21eb76d9477f691e7cbf198e0402",
  5611. "shasum": ""
  5612. },
  5613. "require": {
  5614. "php": ">=7.2.5",
  5615. "symfony/polyfill-php80": "^1.15"
  5616. },
  5617. "type": "library",
  5618. "extra": {
  5619. "branch-alias": {
  5620. "dev-master": "5.1-dev"
  5621. }
  5622. },
  5623. "autoload": {
  5624. "psr-4": {
  5625. "Symfony\\Component\\Process\\": ""
  5626. },
  5627. "exclude-from-classmap": [
  5628. "/Tests/"
  5629. ]
  5630. },
  5631. "notification-url": "https://packagist.org/downloads/",
  5632. "license": [
  5633. "MIT"
  5634. ],
  5635. "authors": [
  5636. {
  5637. "name": "Fabien Potencier",
  5638. "email": "fabien@symfony.com"
  5639. },
  5640. {
  5641. "name": "Symfony Community",
  5642. "homepage": "https://symfony.com/contributors"
  5643. }
  5644. ],
  5645. "description": "Symfony Process Component",
  5646. "homepage": "https://symfony.com",
  5647. "funding": [
  5648. {
  5649. "url": "https://symfony.com/sponsor",
  5650. "type": "custom"
  5651. },
  5652. {
  5653. "url": "https://github.com/fabpot",
  5654. "type": "github"
  5655. },
  5656. {
  5657. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5658. "type": "tidelift"
  5659. }
  5660. ],
  5661. "time": "2020-07-23T08:36:24+00:00"
  5662. },
  5663. {
  5664. "name": "symfony/routing",
  5665. "version": "v5.1.5",
  5666. "source": {
  5667. "type": "git",
  5668. "url": "https://github.com/symfony/routing.git",
  5669. "reference": "47b0218344cb6af25c93ca8ee1137fafbee5005d"
  5670. },
  5671. "dist": {
  5672. "type": "zip",
  5673. "url": "https://api.github.com/repos/symfony/routing/zipball/47b0218344cb6af25c93ca8ee1137fafbee5005d",
  5674. "reference": "47b0218344cb6af25c93ca8ee1137fafbee5005d",
  5675. "shasum": ""
  5676. },
  5677. "require": {
  5678. "php": ">=7.2.5",
  5679. "symfony/deprecation-contracts": "^2.1",
  5680. "symfony/polyfill-php80": "^1.15"
  5681. },
  5682. "conflict": {
  5683. "symfony/config": "<5.0",
  5684. "symfony/dependency-injection": "<4.4",
  5685. "symfony/yaml": "<4.4"
  5686. },
  5687. "require-dev": {
  5688. "doctrine/annotations": "~1.2",
  5689. "psr/log": "~1.0",
  5690. "symfony/config": "^5.0",
  5691. "symfony/dependency-injection": "^4.4|^5.0",
  5692. "symfony/expression-language": "^4.4|^5.0",
  5693. "symfony/http-foundation": "^4.4|^5.0",
  5694. "symfony/yaml": "^4.4|^5.0"
  5695. },
  5696. "suggest": {
  5697. "doctrine/annotations": "For using the annotation loader",
  5698. "symfony/config": "For using the all-in-one router or any loader",
  5699. "symfony/expression-language": "For using expression matching",
  5700. "symfony/http-foundation": "For using a Symfony Request object",
  5701. "symfony/yaml": "For using the YAML loader"
  5702. },
  5703. "type": "library",
  5704. "extra": {
  5705. "branch-alias": {
  5706. "dev-master": "5.1-dev"
  5707. }
  5708. },
  5709. "autoload": {
  5710. "psr-4": {
  5711. "Symfony\\Component\\Routing\\": ""
  5712. },
  5713. "exclude-from-classmap": [
  5714. "/Tests/"
  5715. ]
  5716. },
  5717. "notification-url": "https://packagist.org/downloads/",
  5718. "license": [
  5719. "MIT"
  5720. ],
  5721. "authors": [
  5722. {
  5723. "name": "Fabien Potencier",
  5724. "email": "fabien@symfony.com"
  5725. },
  5726. {
  5727. "name": "Symfony Community",
  5728. "homepage": "https://symfony.com/contributors"
  5729. }
  5730. ],
  5731. "description": "Symfony Routing Component",
  5732. "homepage": "https://symfony.com",
  5733. "keywords": [
  5734. "router",
  5735. "routing",
  5736. "uri",
  5737. "url"
  5738. ],
  5739. "funding": [
  5740. {
  5741. "url": "https://symfony.com/sponsor",
  5742. "type": "custom"
  5743. },
  5744. {
  5745. "url": "https://github.com/fabpot",
  5746. "type": "github"
  5747. },
  5748. {
  5749. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5750. "type": "tidelift"
  5751. }
  5752. ],
  5753. "time": "2020-08-10T08:03:57+00:00"
  5754. },
  5755. {
  5756. "name": "symfony/service-contracts",
  5757. "version": "v2.2.0",
  5758. "source": {
  5759. "type": "git",
  5760. "url": "https://github.com/symfony/service-contracts.git",
  5761. "reference": "d15da7ba4957ffb8f1747218be9e1a121fd298a1"
  5762. },
  5763. "dist": {
  5764. "type": "zip",
  5765. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/d15da7ba4957ffb8f1747218be9e1a121fd298a1",
  5766. "reference": "d15da7ba4957ffb8f1747218be9e1a121fd298a1",
  5767. "shasum": ""
  5768. },
  5769. "require": {
  5770. "php": ">=7.2.5",
  5771. "psr/container": "^1.0"
  5772. },
  5773. "suggest": {
  5774. "symfony/service-implementation": ""
  5775. },
  5776. "type": "library",
  5777. "extra": {
  5778. "branch-alias": {
  5779. "dev-master": "2.2-dev"
  5780. },
  5781. "thanks": {
  5782. "name": "symfony/contracts",
  5783. "url": "https://github.com/symfony/contracts"
  5784. }
  5785. },
  5786. "autoload": {
  5787. "psr-4": {
  5788. "Symfony\\Contracts\\Service\\": ""
  5789. }
  5790. },
  5791. "notification-url": "https://packagist.org/downloads/",
  5792. "license": [
  5793. "MIT"
  5794. ],
  5795. "authors": [
  5796. {
  5797. "name": "Nicolas Grekas",
  5798. "email": "p@tchwork.com"
  5799. },
  5800. {
  5801. "name": "Symfony Community",
  5802. "homepage": "https://symfony.com/contributors"
  5803. }
  5804. ],
  5805. "description": "Generic abstractions related to writing services",
  5806. "homepage": "https://symfony.com",
  5807. "keywords": [
  5808. "abstractions",
  5809. "contracts",
  5810. "decoupling",
  5811. "interfaces",
  5812. "interoperability",
  5813. "standards"
  5814. ],
  5815. "support": {
  5816. "source": "https://github.com/symfony/service-contracts/tree/master"
  5817. },
  5818. "funding": [
  5819. {
  5820. "url": "https://symfony.com/sponsor",
  5821. "type": "custom"
  5822. },
  5823. {
  5824. "url": "https://github.com/fabpot",
  5825. "type": "github"
  5826. },
  5827. {
  5828. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5829. "type": "tidelift"
  5830. }
  5831. ],
  5832. "time": "2020-09-07T11:33:47+00:00"
  5833. },
  5834. {
  5835. "name": "symfony/string",
  5836. "version": "v5.1.5",
  5837. "source": {
  5838. "type": "git",
  5839. "url": "https://github.com/symfony/string.git",
  5840. "reference": "0de4cc1e18bb596226c06a82e2e7e9bc6001a63a"
  5841. },
  5842. "dist": {
  5843. "type": "zip",
  5844. "url": "https://api.github.com/repos/symfony/string/zipball/0de4cc1e18bb596226c06a82e2e7e9bc6001a63a",
  5845. "reference": "0de4cc1e18bb596226c06a82e2e7e9bc6001a63a",
  5846. "shasum": ""
  5847. },
  5848. "require": {
  5849. "php": ">=7.2.5",
  5850. "symfony/polyfill-ctype": "~1.8",
  5851. "symfony/polyfill-intl-grapheme": "~1.0",
  5852. "symfony/polyfill-intl-normalizer": "~1.0",
  5853. "symfony/polyfill-mbstring": "~1.0",
  5854. "symfony/polyfill-php80": "~1.15"
  5855. },
  5856. "require-dev": {
  5857. "symfony/error-handler": "^4.4|^5.0",
  5858. "symfony/http-client": "^4.4|^5.0",
  5859. "symfony/translation-contracts": "^1.1|^2",
  5860. "symfony/var-exporter": "^4.4|^5.0"
  5861. },
  5862. "type": "library",
  5863. "extra": {
  5864. "branch-alias": {
  5865. "dev-master": "5.1-dev"
  5866. }
  5867. },
  5868. "autoload": {
  5869. "psr-4": {
  5870. "Symfony\\Component\\String\\": ""
  5871. },
  5872. "files": [
  5873. "Resources/functions.php"
  5874. ],
  5875. "exclude-from-classmap": [
  5876. "/Tests/"
  5877. ]
  5878. },
  5879. "notification-url": "https://packagist.org/downloads/",
  5880. "license": [
  5881. "MIT"
  5882. ],
  5883. "authors": [
  5884. {
  5885. "name": "Nicolas Grekas",
  5886. "email": "p@tchwork.com"
  5887. },
  5888. {
  5889. "name": "Symfony Community",
  5890. "homepage": "https://symfony.com/contributors"
  5891. }
  5892. ],
  5893. "description": "Symfony String component",
  5894. "homepage": "https://symfony.com",
  5895. "keywords": [
  5896. "grapheme",
  5897. "i18n",
  5898. "string",
  5899. "unicode",
  5900. "utf-8",
  5901. "utf8"
  5902. ],
  5903. "funding": [
  5904. {
  5905. "url": "https://symfony.com/sponsor",
  5906. "type": "custom"
  5907. },
  5908. {
  5909. "url": "https://github.com/fabpot",
  5910. "type": "github"
  5911. },
  5912. {
  5913. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5914. "type": "tidelift"
  5915. }
  5916. ],
  5917. "time": "2020-08-17T07:48:54+00:00"
  5918. },
  5919. {
  5920. "name": "symfony/translation",
  5921. "version": "v5.1.5",
  5922. "source": {
  5923. "type": "git",
  5924. "url": "https://github.com/symfony/translation.git",
  5925. "reference": "917b02cdc5f33e0309b8e9d33ee1480b20687413"
  5926. },
  5927. "dist": {
  5928. "type": "zip",
  5929. "url": "https://api.github.com/repos/symfony/translation/zipball/917b02cdc5f33e0309b8e9d33ee1480b20687413",
  5930. "reference": "917b02cdc5f33e0309b8e9d33ee1480b20687413",
  5931. "shasum": ""
  5932. },
  5933. "require": {
  5934. "php": ">=7.2.5",
  5935. "symfony/polyfill-mbstring": "~1.0",
  5936. "symfony/polyfill-php80": "^1.15",
  5937. "symfony/translation-contracts": "^2"
  5938. },
  5939. "conflict": {
  5940. "symfony/config": "<4.4",
  5941. "symfony/dependency-injection": "<5.0",
  5942. "symfony/http-kernel": "<5.0",
  5943. "symfony/twig-bundle": "<5.0",
  5944. "symfony/yaml": "<4.4"
  5945. },
  5946. "provide": {
  5947. "symfony/translation-implementation": "2.0"
  5948. },
  5949. "require-dev": {
  5950. "psr/log": "~1.0",
  5951. "symfony/config": "^4.4|^5.0",
  5952. "symfony/console": "^4.4|^5.0",
  5953. "symfony/dependency-injection": "^5.0",
  5954. "symfony/finder": "^4.4|^5.0",
  5955. "symfony/http-kernel": "^5.0",
  5956. "symfony/intl": "^4.4|^5.0",
  5957. "symfony/service-contracts": "^1.1.2|^2",
  5958. "symfony/yaml": "^4.4|^5.0"
  5959. },
  5960. "suggest": {
  5961. "psr/log-implementation": "To use logging capability in translator",
  5962. "symfony/config": "",
  5963. "symfony/yaml": ""
  5964. },
  5965. "type": "library",
  5966. "extra": {
  5967. "branch-alias": {
  5968. "dev-master": "5.1-dev"
  5969. }
  5970. },
  5971. "autoload": {
  5972. "psr-4": {
  5973. "Symfony\\Component\\Translation\\": ""
  5974. },
  5975. "exclude-from-classmap": [
  5976. "/Tests/"
  5977. ]
  5978. },
  5979. "notification-url": "https://packagist.org/downloads/",
  5980. "license": [
  5981. "MIT"
  5982. ],
  5983. "authors": [
  5984. {
  5985. "name": "Fabien Potencier",
  5986. "email": "fabien@symfony.com"
  5987. },
  5988. {
  5989. "name": "Symfony Community",
  5990. "homepage": "https://symfony.com/contributors"
  5991. }
  5992. ],
  5993. "description": "Symfony Translation Component",
  5994. "homepage": "https://symfony.com",
  5995. "funding": [
  5996. {
  5997. "url": "https://symfony.com/sponsor",
  5998. "type": "custom"
  5999. },
  6000. {
  6001. "url": "https://github.com/fabpot",
  6002. "type": "github"
  6003. },
  6004. {
  6005. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6006. "type": "tidelift"
  6007. }
  6008. ],
  6009. "time": "2020-08-17T10:01:29+00:00"
  6010. },
  6011. {
  6012. "name": "symfony/translation-contracts",
  6013. "version": "v2.2.0",
  6014. "source": {
  6015. "type": "git",
  6016. "url": "https://github.com/symfony/translation-contracts.git",
  6017. "reference": "77ce1c3627c9f39643acd9af086631f842c50c4d"
  6018. },
  6019. "dist": {
  6020. "type": "zip",
  6021. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/77ce1c3627c9f39643acd9af086631f842c50c4d",
  6022. "reference": "77ce1c3627c9f39643acd9af086631f842c50c4d",
  6023. "shasum": ""
  6024. },
  6025. "require": {
  6026. "php": ">=7.2.5"
  6027. },
  6028. "suggest": {
  6029. "symfony/translation-implementation": ""
  6030. },
  6031. "type": "library",
  6032. "extra": {
  6033. "branch-alias": {
  6034. "dev-master": "2.2-dev"
  6035. },
  6036. "thanks": {
  6037. "name": "symfony/contracts",
  6038. "url": "https://github.com/symfony/contracts"
  6039. }
  6040. },
  6041. "autoload": {
  6042. "psr-4": {
  6043. "Symfony\\Contracts\\Translation\\": ""
  6044. }
  6045. },
  6046. "notification-url": "https://packagist.org/downloads/",
  6047. "license": [
  6048. "MIT"
  6049. ],
  6050. "authors": [
  6051. {
  6052. "name": "Nicolas Grekas",
  6053. "email": "p@tchwork.com"
  6054. },
  6055. {
  6056. "name": "Symfony Community",
  6057. "homepage": "https://symfony.com/contributors"
  6058. }
  6059. ],
  6060. "description": "Generic abstractions related to translation",
  6061. "homepage": "https://symfony.com",
  6062. "keywords": [
  6063. "abstractions",
  6064. "contracts",
  6065. "decoupling",
  6066. "interfaces",
  6067. "interoperability",
  6068. "standards"
  6069. ],
  6070. "support": {
  6071. "source": "https://github.com/symfony/translation-contracts/tree/master"
  6072. },
  6073. "funding": [
  6074. {
  6075. "url": "https://symfony.com/sponsor",
  6076. "type": "custom"
  6077. },
  6078. {
  6079. "url": "https://github.com/fabpot",
  6080. "type": "github"
  6081. },
  6082. {
  6083. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6084. "type": "tidelift"
  6085. }
  6086. ],
  6087. "time": "2020-09-07T11:33:47+00:00"
  6088. },
  6089. {
  6090. "name": "symfony/var-dumper",
  6091. "version": "v5.1.5",
  6092. "source": {
  6093. "type": "git",
  6094. "url": "https://github.com/symfony/var-dumper.git",
  6095. "reference": "b43a3905262bcf97b2510f0621f859ca4f5287be"
  6096. },
  6097. "dist": {
  6098. "type": "zip",
  6099. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/b43a3905262bcf97b2510f0621f859ca4f5287be",
  6100. "reference": "b43a3905262bcf97b2510f0621f859ca4f5287be",
  6101. "shasum": ""
  6102. },
  6103. "require": {
  6104. "php": ">=7.2.5",
  6105. "symfony/polyfill-mbstring": "~1.0",
  6106. "symfony/polyfill-php80": "^1.15"
  6107. },
  6108. "conflict": {
  6109. "phpunit/phpunit": "<5.4.3",
  6110. "symfony/console": "<4.4"
  6111. },
  6112. "require-dev": {
  6113. "ext-iconv": "*",
  6114. "symfony/console": "^4.4|^5.0",
  6115. "symfony/process": "^4.4|^5.0",
  6116. "twig/twig": "^2.4|^3.0"
  6117. },
  6118. "suggest": {
  6119. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  6120. "ext-intl": "To show region name in time zone dump",
  6121. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  6122. },
  6123. "bin": [
  6124. "Resources/bin/var-dump-server"
  6125. ],
  6126. "type": "library",
  6127. "extra": {
  6128. "branch-alias": {
  6129. "dev-master": "5.1-dev"
  6130. }
  6131. },
  6132. "autoload": {
  6133. "files": [
  6134. "Resources/functions/dump.php"
  6135. ],
  6136. "psr-4": {
  6137. "Symfony\\Component\\VarDumper\\": ""
  6138. },
  6139. "exclude-from-classmap": [
  6140. "/Tests/"
  6141. ]
  6142. },
  6143. "notification-url": "https://packagist.org/downloads/",
  6144. "license": [
  6145. "MIT"
  6146. ],
  6147. "authors": [
  6148. {
  6149. "name": "Nicolas Grekas",
  6150. "email": "p@tchwork.com"
  6151. },
  6152. {
  6153. "name": "Symfony Community",
  6154. "homepage": "https://symfony.com/contributors"
  6155. }
  6156. ],
  6157. "description": "Symfony mechanism for exploring and dumping PHP variables",
  6158. "homepage": "https://symfony.com",
  6159. "keywords": [
  6160. "debug",
  6161. "dump"
  6162. ],
  6163. "funding": [
  6164. {
  6165. "url": "https://symfony.com/sponsor",
  6166. "type": "custom"
  6167. },
  6168. {
  6169. "url": "https://github.com/fabpot",
  6170. "type": "github"
  6171. },
  6172. {
  6173. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6174. "type": "tidelift"
  6175. }
  6176. ],
  6177. "time": "2020-08-17T07:42:30+00:00"
  6178. },
  6179. {
  6180. "name": "tijsverkoyen/css-to-inline-styles",
  6181. "version": "2.2.3",
  6182. "source": {
  6183. "type": "git",
  6184. "url": "https://github.com/tijsverkoyen/CssToInlineStyles.git",
  6185. "reference": "b43b05cf43c1b6d849478965062b6ef73e223bb5"
  6186. },
  6187. "dist": {
  6188. "type": "zip",
  6189. "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/b43b05cf43c1b6d849478965062b6ef73e223bb5",
  6190. "reference": "b43b05cf43c1b6d849478965062b6ef73e223bb5",
  6191. "shasum": ""
  6192. },
  6193. "require": {
  6194. "ext-dom": "*",
  6195. "ext-libxml": "*",
  6196. "php": "^5.5 || ^7.0 || ^8.0",
  6197. "symfony/css-selector": "^2.7 || ^3.0 || ^4.0 || ^5.0"
  6198. },
  6199. "require-dev": {
  6200. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0 || ^7.5"
  6201. },
  6202. "type": "library",
  6203. "extra": {
  6204. "branch-alias": {
  6205. "dev-master": "2.2.x-dev"
  6206. }
  6207. },
  6208. "autoload": {
  6209. "psr-4": {
  6210. "TijsVerkoyen\\CssToInlineStyles\\": "src"
  6211. }
  6212. },
  6213. "notification-url": "https://packagist.org/downloads/",
  6214. "license": [
  6215. "BSD-3-Clause"
  6216. ],
  6217. "authors": [
  6218. {
  6219. "name": "Tijs Verkoyen",
  6220. "email": "css_to_inline_styles@verkoyen.eu",
  6221. "role": "Developer"
  6222. }
  6223. ],
  6224. "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.",
  6225. "homepage": "https://github.com/tijsverkoyen/CssToInlineStyles",
  6226. "time": "2020-07-13T06:12:54+00:00"
  6227. },
  6228. {
  6229. "name": "vlucas/phpdotenv",
  6230. "version": "v4.1.8",
  6231. "source": {
  6232. "type": "git",
  6233. "url": "https://github.com/vlucas/phpdotenv.git",
  6234. "reference": "572af79d913627a9d70374d27a6f5d689a35de32"
  6235. },
  6236. "dist": {
  6237. "type": "zip",
  6238. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/572af79d913627a9d70374d27a6f5d689a35de32",
  6239. "reference": "572af79d913627a9d70374d27a6f5d689a35de32",
  6240. "shasum": ""
  6241. },
  6242. "require": {
  6243. "php": "^5.5.9 || ^7.0 || ^8.0",
  6244. "phpoption/phpoption": "^1.7.3",
  6245. "symfony/polyfill-ctype": "^1.17"
  6246. },
  6247. "require-dev": {
  6248. "bamarni/composer-bin-plugin": "^1.4.1",
  6249. "ext-filter": "*",
  6250. "ext-pcre": "*",
  6251. "phpunit/phpunit": "^4.8.35 || ^5.7.27 || ^6.5.6 || ^7.0"
  6252. },
  6253. "suggest": {
  6254. "ext-filter": "Required to use the boolean validator.",
  6255. "ext-pcre": "Required to use most of the library."
  6256. },
  6257. "type": "library",
  6258. "extra": {
  6259. "branch-alias": {
  6260. "dev-master": "4.1-dev"
  6261. }
  6262. },
  6263. "autoload": {
  6264. "psr-4": {
  6265. "Dotenv\\": "src/"
  6266. }
  6267. },
  6268. "notification-url": "https://packagist.org/downloads/",
  6269. "license": [
  6270. "BSD-3-Clause"
  6271. ],
  6272. "authors": [
  6273. {
  6274. "name": "Graham Campbell",
  6275. "email": "graham@alt-three.com",
  6276. "homepage": "https://gjcampbell.co.uk/"
  6277. },
  6278. {
  6279. "name": "Vance Lucas",
  6280. "email": "vance@vancelucas.com",
  6281. "homepage": "https://vancelucas.com/"
  6282. }
  6283. ],
  6284. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  6285. "keywords": [
  6286. "dotenv",
  6287. "env",
  6288. "environment"
  6289. ],
  6290. "funding": [
  6291. {
  6292. "url": "https://github.com/GrahamCampbell",
  6293. "type": "github"
  6294. },
  6295. {
  6296. "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
  6297. "type": "tidelift"
  6298. }
  6299. ],
  6300. "time": "2020-07-14T19:22:52+00:00"
  6301. },
  6302. {
  6303. "name": "voku/portable-ascii",
  6304. "version": "1.5.3",
  6305. "source": {
  6306. "type": "git",
  6307. "url": "https://github.com/voku/portable-ascii.git",
  6308. "reference": "25bcbf01678930251fd572891447d9e318a6e2b8"
  6309. },
  6310. "dist": {
  6311. "type": "zip",
  6312. "url": "https://api.github.com/repos/voku/portable-ascii/zipball/25bcbf01678930251fd572891447d9e318a6e2b8",
  6313. "reference": "25bcbf01678930251fd572891447d9e318a6e2b8",
  6314. "shasum": ""
  6315. },
  6316. "require": {
  6317. "php": ">=7.0.0"
  6318. },
  6319. "require-dev": {
  6320. "phpunit/phpunit": "~6.0 || ~7.0"
  6321. },
  6322. "suggest": {
  6323. "ext-intl": "Use Intl for transliterator_transliterate() support"
  6324. },
  6325. "type": "library",
  6326. "autoload": {
  6327. "psr-4": {
  6328. "voku\\": "src/voku/"
  6329. }
  6330. },
  6331. "notification-url": "https://packagist.org/downloads/",
  6332. "license": [
  6333. "MIT"
  6334. ],
  6335. "authors": [
  6336. {
  6337. "name": "Lars Moelleken",
  6338. "homepage": "http://www.moelleken.org/"
  6339. }
  6340. ],
  6341. "description": "Portable ASCII library - performance optimized (ascii) string functions for php.",
  6342. "homepage": "https://github.com/voku/portable-ascii",
  6343. "keywords": [
  6344. "ascii",
  6345. "clean",
  6346. "php"
  6347. ],
  6348. "funding": [
  6349. {
  6350. "url": "https://www.paypal.me/moelleken",
  6351. "type": "custom"
  6352. },
  6353. {
  6354. "url": "https://github.com/voku",
  6355. "type": "github"
  6356. },
  6357. {
  6358. "url": "https://opencollective.com/portable-ascii",
  6359. "type": "open_collective"
  6360. },
  6361. {
  6362. "url": "https://www.patreon.com/voku",
  6363. "type": "patreon"
  6364. },
  6365. {
  6366. "url": "https://tidelift.com/funding/github/packagist/voku/portable-ascii",
  6367. "type": "tidelift"
  6368. }
  6369. ],
  6370. "time": "2020-07-22T23:32:04+00:00"
  6371. },
  6372. {
  6373. "name": "xhat/payjs",
  6374. "version": "1.5.0",
  6375. "source": {
  6376. "type": "git",
  6377. "url": "https://github.com/xhat/payjs.git",
  6378. "reference": "d15b678f7fb70fc70bafa82c5a7896fceebad364"
  6379. },
  6380. "dist": {
  6381. "type": "zip",
  6382. "url": "https://api.github.com/repos/xhat/payjs/zipball/d15b678f7fb70fc70bafa82c5a7896fceebad364",
  6383. "reference": "d15b678f7fb70fc70bafa82c5a7896fceebad364",
  6384. "shasum": ""
  6385. },
  6386. "type": "library",
  6387. "autoload": {
  6388. "psr-4": {
  6389. "Xhat\\Payjs\\": "src/"
  6390. }
  6391. },
  6392. "notification-url": "https://packagist.org/downloads/",
  6393. "license": [
  6394. "MIT"
  6395. ],
  6396. "authors": [
  6397. {
  6398. "name": "andy",
  6399. "email": "andy@popfeng.com"
  6400. }
  6401. ],
  6402. "description": "本项目是基于 PAYJS 的 API 开发的 Composer Package,可直接用于生产环境 https://payjs.cn",
  6403. "support": {
  6404. "issues": "https://github.com/xhat/payjs/issues",
  6405. "source": "https://github.com/xhat/payjs/tree/1.5.0"
  6406. },
  6407. "funding": [
  6408. {
  6409. "url": "https://payjs.cn/sponsor/dajjxz",
  6410. "type": "custom"
  6411. }
  6412. ],
  6413. "time": "2020-09-11T06:02:42+00:00"
  6414. },
  6415. {
  6416. "name": "zbrettonye/geetest",
  6417. "version": "v1.1.0",
  6418. "source": {
  6419. "type": "git",
  6420. "url": "https://github.com/ZBrettonYe/geetest.git",
  6421. "reference": "98339e279526b6c693d8a66edbe3ebf05e800a91"
  6422. },
  6423. "dist": {
  6424. "type": "zip",
  6425. "url": "https://api.github.com/repos/ZBrettonYe/geetest/zipball/98339e279526b6c693d8a66edbe3ebf05e800a91",
  6426. "reference": "98339e279526b6c693d8a66edbe3ebf05e800a91",
  6427. "shasum": ""
  6428. },
  6429. "require": {
  6430. "illuminate/routing": "^5.5 || ^6 || ^7",
  6431. "illuminate/support": "^5.5 || ^6 || ^7",
  6432. "php": "^7.3"
  6433. },
  6434. "require-dev": {
  6435. "mockery/mockery": "^1.4",
  6436. "phpunit/phpunit": "^9.0"
  6437. },
  6438. "type": "library",
  6439. "extra": {
  6440. "laravel": {
  6441. "providers": [
  6442. "ZBrettonYe\\Geetest\\GeetestServiceProvider"
  6443. ],
  6444. "aliases": {
  6445. "Geetest": "ZBrettonYe\\Geetest\\Geetest"
  6446. }
  6447. }
  6448. },
  6449. "autoload": {
  6450. "psr-4": {
  6451. "ZBrettonYe\\Geetest\\": "src/"
  6452. }
  6453. },
  6454. "notification-url": "https://packagist.org/downloads/",
  6455. "license": [
  6456. "MIT"
  6457. ],
  6458. "authors": [
  6459. {
  6460. "name": "zbrettonye",
  6461. "email": "monkeyblacktech97@gmail.com"
  6462. }
  6463. ],
  6464. "description": "Geetest Package for Laravel",
  6465. "keywords": [
  6466. "geetest",
  6467. "laravel"
  6468. ],
  6469. "time": "2020-09-03T04:24:48+00:00"
  6470. },
  6471. {
  6472. "name": "zbrettonye/hcaptcha",
  6473. "version": "v1.0",
  6474. "source": {
  6475. "type": "git",
  6476. "url": "https://github.com/ZBrettonYe/hcaptcha.git",
  6477. "reference": "eef47bd522c927a8abe5d3ec0fd8ad47723799fa"
  6478. },
  6479. "dist": {
  6480. "type": "zip",
  6481. "url": "https://api.github.com/repos/ZBrettonYe/hcaptcha/zipball/eef47bd522c927a8abe5d3ec0fd8ad47723799fa",
  6482. "reference": "eef47bd522c927a8abe5d3ec0fd8ad47723799fa",
  6483. "shasum": ""
  6484. },
  6485. "require": {
  6486. "guzzlehttp/guzzle": "^6.2|^7.0",
  6487. "illuminate/support": "^5.5 || ^6 || ^7",
  6488. "php": ">=5.5.5"
  6489. },
  6490. "require-dev": {
  6491. "phpunit/phpunit": "~4.8"
  6492. },
  6493. "type": "library",
  6494. "extra": {
  6495. "laravel": {
  6496. "providers": [
  6497. "ZBrettonYe\\HCaptcha\\HCaptchaServiceProvider"
  6498. ],
  6499. "aliases": {
  6500. "HCaptcha": "ZBrettonYe\\HCaptcha\\Facades\\HCaptcha"
  6501. }
  6502. }
  6503. },
  6504. "autoload": {
  6505. "psr-4": {
  6506. "ZBrettonYe\\HCaptcha\\": "src/"
  6507. }
  6508. },
  6509. "notification-url": "https://packagist.org/downloads/",
  6510. "license": [
  6511. "MIT"
  6512. ],
  6513. "authors": [
  6514. {
  6515. "name": "zbrettonye",
  6516. "email": "monkeyblacktech97@gmail.com"
  6517. }
  6518. ],
  6519. "description": "hCaptcha For Laravel5~7",
  6520. "keywords": [
  6521. "captcha",
  6522. "hcaptcha",
  6523. "laravel"
  6524. ],
  6525. "time": "2020-09-03T05:00:52+00:00"
  6526. },
  6527. {
  6528. "name": "zbrettonye/no-captcha",
  6529. "version": "v1.0.4",
  6530. "source": {
  6531. "type": "git",
  6532. "url": "https://github.com/ZBrettonYe/no-captcha.git",
  6533. "reference": "b3753565cacf0fb80fb6472ddfbbd3fc576d0ef3"
  6534. },
  6535. "dist": {
  6536. "type": "zip",
  6537. "url": "https://api.github.com/repos/ZBrettonYe/no-captcha/zipball/b3753565cacf0fb80fb6472ddfbbd3fc576d0ef3",
  6538. "reference": "b3753565cacf0fb80fb6472ddfbbd3fc576d0ef3",
  6539. "shasum": ""
  6540. },
  6541. "require": {
  6542. "guzzlehttp/guzzle": "^6.2|^7.0",
  6543. "illuminate/support": "^5.0|^6.0|^7.0",
  6544. "php": ">=5.5.5"
  6545. },
  6546. "require-dev": {
  6547. "phpunit/phpunit": "~4.8"
  6548. },
  6549. "type": "library",
  6550. "extra": {
  6551. "laravel": {
  6552. "providers": [
  6553. "ZBrettonYe\\NoCaptcha\\NoCaptchaServiceProvider"
  6554. ],
  6555. "aliases": {
  6556. "NoCaptcha": "ZBrettonYe\\NoCaptcha\\Facades\\NoCaptcha"
  6557. }
  6558. }
  6559. },
  6560. "autoload": {
  6561. "psr-4": {
  6562. "ZBrettonYe\\NoCaptcha\\": "src/"
  6563. }
  6564. },
  6565. "notification-url": "https://packagist.org/downloads/",
  6566. "license": [
  6567. "MIT"
  6568. ],
  6569. "authors": [
  6570. {
  6571. "name": "zbrettonye",
  6572. "email": "monkeyblacktech97@gmail.com"
  6573. }
  6574. ],
  6575. "description": "No CAPTCHA reCAPTCHA For Laravel.",
  6576. "keywords": [
  6577. "captcha",
  6578. "laravel",
  6579. "laravel4",
  6580. "laravel5",
  6581. "laravel6",
  6582. "no-captcha",
  6583. "recaptcha"
  6584. ],
  6585. "time": "2020-09-03T04:37:04+00:00"
  6586. },
  6587. {
  6588. "name": "zoujingli/ip2region",
  6589. "version": "v1.0.8",
  6590. "source": {
  6591. "type": "git",
  6592. "url": "https://github.com/zoujingli/ip2region.git",
  6593. "reference": "d6be3ab9da1a1ab7e3cd51c4aa634a34de358ce6"
  6594. },
  6595. "dist": {
  6596. "type": "zip",
  6597. "url": "https://api.github.com/repos/zoujingli/ip2region/zipball/d6be3ab9da1a1ab7e3cd51c4aa634a34de358ce6",
  6598. "reference": "d6be3ab9da1a1ab7e3cd51c4aa634a34de358ce6",
  6599. "shasum": ""
  6600. },
  6601. "require": {
  6602. "php": ">=5.3"
  6603. },
  6604. "type": "library",
  6605. "autoload": {
  6606. "classmap": [
  6607. "Ip2Region.php"
  6608. ]
  6609. },
  6610. "notification-url": "https://packagist.org/downloads/",
  6611. "license": [
  6612. "Apache-2.0"
  6613. ],
  6614. "authors": [
  6615. {
  6616. "name": "Anyon",
  6617. "email": "zoujingli@qq.com",
  6618. "homepage": "http://ctolog.com"
  6619. }
  6620. ],
  6621. "description": "Ip2Region for PHP",
  6622. "homepage": "https://github.com/zoujingli/Ip2Region",
  6623. "keywords": [
  6624. "Ip2Region"
  6625. ],
  6626. "time": "2020-07-06T05:33:26+00:00"
  6627. }
  6628. ],
  6629. "packages-dev": [
  6630. {
  6631. "name": "barryvdh/laravel-debugbar",
  6632. "version": "v3.5.1",
  6633. "source": {
  6634. "type": "git",
  6635. "url": "https://github.com/barryvdh/laravel-debugbar.git",
  6636. "reference": "233c10688f4c1a6e66ed2ef123038b1363d1bedc"
  6637. },
  6638. "dist": {
  6639. "type": "zip",
  6640. "url": "https://api.github.com/repos/barryvdh/laravel-debugbar/zipball/233c10688f4c1a6e66ed2ef123038b1363d1bedc",
  6641. "reference": "233c10688f4c1a6e66ed2ef123038b1363d1bedc",
  6642. "shasum": ""
  6643. },
  6644. "require": {
  6645. "illuminate/routing": "^6|^7|^8",
  6646. "illuminate/session": "^6|^7|^8",
  6647. "illuminate/support": "^6|^7|^8",
  6648. "maximebf/debugbar": "^1.16.3",
  6649. "php": ">=7.2",
  6650. "symfony/debug": "^4.3|^5",
  6651. "symfony/finder": "^4.3|^5"
  6652. },
  6653. "require-dev": {
  6654. "orchestra/testbench-dusk": "^4|^5|^6",
  6655. "phpunit/phpunit": "^8.5|^9.0",
  6656. "squizlabs/php_codesniffer": "^3.5"
  6657. },
  6658. "type": "library",
  6659. "extra": {
  6660. "branch-alias": {
  6661. "dev-master": "3.5-dev"
  6662. },
  6663. "laravel": {
  6664. "providers": [
  6665. "Barryvdh\\Debugbar\\ServiceProvider"
  6666. ],
  6667. "aliases": {
  6668. "Debugbar": "Barryvdh\\Debugbar\\Facade"
  6669. }
  6670. }
  6671. },
  6672. "autoload": {
  6673. "psr-4": {
  6674. "Barryvdh\\Debugbar\\": "src/"
  6675. },
  6676. "files": [
  6677. "src/helpers.php"
  6678. ]
  6679. },
  6680. "notification-url": "https://packagist.org/downloads/",
  6681. "license": [
  6682. "MIT"
  6683. ],
  6684. "authors": [
  6685. {
  6686. "name": "Barry vd. Heuvel",
  6687. "email": "barryvdh@gmail.com"
  6688. }
  6689. ],
  6690. "description": "PHP Debugbar integration for Laravel",
  6691. "keywords": [
  6692. "debug",
  6693. "debugbar",
  6694. "laravel",
  6695. "profiler",
  6696. "webprofiler"
  6697. ],
  6698. "funding": [
  6699. {
  6700. "url": "https://github.com/barryvdh",
  6701. "type": "github"
  6702. }
  6703. ],
  6704. "time": "2020-09-07T19:32:39+00:00"
  6705. },
  6706. {
  6707. "name": "barryvdh/laravel-ide-helper",
  6708. "version": "v2.8.1",
  6709. "source": {
  6710. "type": "git",
  6711. "url": "https://github.com/barryvdh/laravel-ide-helper.git",
  6712. "reference": "affa55122f83575888d4ebf1728992686e8223de"
  6713. },
  6714. "dist": {
  6715. "type": "zip",
  6716. "url": "https://api.github.com/repos/barryvdh/laravel-ide-helper/zipball/affa55122f83575888d4ebf1728992686e8223de",
  6717. "reference": "affa55122f83575888d4ebf1728992686e8223de",
  6718. "shasum": ""
  6719. },
  6720. "require": {
  6721. "barryvdh/reflection-docblock": "^2.0.6",
  6722. "composer/composer": "^1.6 || ^2.0@dev",
  6723. "doctrine/dbal": "~2.3",
  6724. "ext-json": "*",
  6725. "illuminate/console": "^6 || ^7 || ^8",
  6726. "illuminate/filesystem": "^6 || ^7 || ^8",
  6727. "illuminate/support": "^6 || ^7 || ^8",
  6728. "php": ">=7.2",
  6729. "phpdocumentor/type-resolver": "^1.1.0"
  6730. },
  6731. "require-dev": {
  6732. "friendsofphp/php-cs-fixer": "^2",
  6733. "illuminate/config": "^6 || ^7 || ^8",
  6734. "illuminate/view": "^6 || ^7 || ^8",
  6735. "mockery/mockery": "^1.3",
  6736. "orchestra/testbench": "^4 || ^5 || ^6",
  6737. "phpunit/phpunit": "^8.5 || ^9",
  6738. "spatie/phpunit-snapshot-assertions": "^1.4 || ^2.2 || ^3",
  6739. "vimeo/psalm": "^3.12"
  6740. },
  6741. "type": "library",
  6742. "extra": {
  6743. "branch-alias": {
  6744. "dev-master": "2.8-dev"
  6745. },
  6746. "laravel": {
  6747. "providers": [
  6748. "Barryvdh\\LaravelIdeHelper\\IdeHelperServiceProvider"
  6749. ]
  6750. }
  6751. },
  6752. "autoload": {
  6753. "psr-4": {
  6754. "Barryvdh\\LaravelIdeHelper\\": "src"
  6755. }
  6756. },
  6757. "notification-url": "https://packagist.org/downloads/",
  6758. "license": [
  6759. "MIT"
  6760. ],
  6761. "authors": [
  6762. {
  6763. "name": "Barry vd. Heuvel",
  6764. "email": "barryvdh@gmail.com"
  6765. }
  6766. ],
  6767. "description": "Laravel IDE Helper, generates correct PHPDocs for all Facade classes, to improve auto-completion.",
  6768. "keywords": [
  6769. "autocomplete",
  6770. "codeintel",
  6771. "helper",
  6772. "ide",
  6773. "laravel",
  6774. "netbeans",
  6775. "phpdoc",
  6776. "phpstorm",
  6777. "sublime"
  6778. ],
  6779. "funding": [
  6780. {
  6781. "url": "https://github.com/barryvdh",
  6782. "type": "github"
  6783. }
  6784. ],
  6785. "time": "2020-09-07T07:36:37+00:00"
  6786. },
  6787. {
  6788. "name": "barryvdh/reflection-docblock",
  6789. "version": "v2.0.6",
  6790. "source": {
  6791. "type": "git",
  6792. "url": "https://github.com/barryvdh/ReflectionDocBlock.git",
  6793. "reference": "6b69015d83d3daf9004a71a89f26e27d27ef6a16"
  6794. },
  6795. "dist": {
  6796. "type": "zip",
  6797. "url": "https://api.github.com/repos/barryvdh/ReflectionDocBlock/zipball/6b69015d83d3daf9004a71a89f26e27d27ef6a16",
  6798. "reference": "6b69015d83d3daf9004a71a89f26e27d27ef6a16",
  6799. "shasum": ""
  6800. },
  6801. "require": {
  6802. "php": ">=5.3.3"
  6803. },
  6804. "require-dev": {
  6805. "phpunit/phpunit": "~4.0,<4.5"
  6806. },
  6807. "suggest": {
  6808. "dflydev/markdown": "~1.0",
  6809. "erusev/parsedown": "~1.0"
  6810. },
  6811. "type": "library",
  6812. "extra": {
  6813. "branch-alias": {
  6814. "dev-master": "2.0.x-dev"
  6815. }
  6816. },
  6817. "autoload": {
  6818. "psr-0": {
  6819. "Barryvdh": [
  6820. "src/"
  6821. ]
  6822. }
  6823. },
  6824. "notification-url": "https://packagist.org/downloads/",
  6825. "license": [
  6826. "MIT"
  6827. ],
  6828. "authors": [
  6829. {
  6830. "name": "Mike van Riel",
  6831. "email": "mike.vanriel@naenius.com"
  6832. }
  6833. ],
  6834. "time": "2018-12-13T10:34:14+00:00"
  6835. },
  6836. {
  6837. "name": "composer/composer",
  6838. "version": "1.10.13",
  6839. "source": {
  6840. "type": "git",
  6841. "url": "https://github.com/composer/composer.git",
  6842. "reference": "47c841ba3b2d3fc0b4b13282cf029ea18b66d78b"
  6843. },
  6844. "dist": {
  6845. "type": "zip",
  6846. "url": "https://api.github.com/repos/composer/composer/zipball/47c841ba3b2d3fc0b4b13282cf029ea18b66d78b",
  6847. "reference": "47c841ba3b2d3fc0b4b13282cf029ea18b66d78b",
  6848. "shasum": ""
  6849. },
  6850. "require": {
  6851. "composer/ca-bundle": "^1.0",
  6852. "composer/semver": "^1.0",
  6853. "composer/spdx-licenses": "^1.2",
  6854. "composer/xdebug-handler": "^1.1",
  6855. "justinrainbow/json-schema": "^5.2.10",
  6856. "php": "^5.3.2 || ^7.0",
  6857. "psr/log": "^1.0",
  6858. "seld/jsonlint": "^1.4",
  6859. "seld/phar-utils": "^1.0",
  6860. "symfony/console": "^2.7 || ^3.0 || ^4.0 || ^5.0",
  6861. "symfony/filesystem": "^2.7 || ^3.0 || ^4.0 || ^5.0",
  6862. "symfony/finder": "^2.7 || ^3.0 || ^4.0 || ^5.0",
  6863. "symfony/process": "^2.7 || ^3.0 || ^4.0 || ^5.0"
  6864. },
  6865. "conflict": {
  6866. "symfony/console": "2.8.38"
  6867. },
  6868. "require-dev": {
  6869. "phpspec/prophecy": "^1.10",
  6870. "symfony/phpunit-bridge": "^4.2"
  6871. },
  6872. "suggest": {
  6873. "ext-openssl": "Enabling the openssl extension allows you to access https URLs for repositories and packages",
  6874. "ext-zip": "Enabling the zip extension allows you to unzip archives",
  6875. "ext-zlib": "Allow gzip compression of HTTP requests"
  6876. },
  6877. "bin": [
  6878. "bin/composer"
  6879. ],
  6880. "type": "library",
  6881. "extra": {
  6882. "branch-alias": {
  6883. "dev-master": "1.10-dev"
  6884. }
  6885. },
  6886. "autoload": {
  6887. "psr-4": {
  6888. "Composer\\": "src/Composer"
  6889. }
  6890. },
  6891. "notification-url": "https://packagist.org/downloads/",
  6892. "license": [
  6893. "MIT"
  6894. ],
  6895. "authors": [
  6896. {
  6897. "name": "Nils Adermann",
  6898. "email": "naderman@naderman.de",
  6899. "homepage": "http://www.naderman.de"
  6900. },
  6901. {
  6902. "name": "Jordi Boggiano",
  6903. "email": "j.boggiano@seld.be",
  6904. "homepage": "http://seld.be"
  6905. }
  6906. ],
  6907. "description": "Composer helps you declare, manage and install dependencies of PHP projects. It ensures you have the right stack everywhere.",
  6908. "homepage": "https://getcomposer.org/",
  6909. "keywords": [
  6910. "autoload",
  6911. "dependency",
  6912. "package"
  6913. ],
  6914. "support": {
  6915. "irc": "irc://irc.freenode.org/composer",
  6916. "issues": "https://github.com/composer/composer/issues",
  6917. "source": "https://github.com/composer/composer/tree/1.10.13"
  6918. },
  6919. "funding": [
  6920. {
  6921. "url": "https://packagist.com",
  6922. "type": "custom"
  6923. },
  6924. {
  6925. "url": "https://github.com/composer",
  6926. "type": "github"
  6927. },
  6928. {
  6929. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  6930. "type": "tidelift"
  6931. }
  6932. ],
  6933. "time": "2020-09-09T09:46:34+00:00"
  6934. },
  6935. {
  6936. "name": "composer/semver",
  6937. "version": "1.7.0",
  6938. "source": {
  6939. "type": "git",
  6940. "url": "https://github.com/composer/semver.git",
  6941. "reference": "114f819054a2ea7db03287f5efb757e2af6e4079"
  6942. },
  6943. "dist": {
  6944. "type": "zip",
  6945. "url": "https://api.github.com/repos/composer/semver/zipball/114f819054a2ea7db03287f5efb757e2af6e4079",
  6946. "reference": "114f819054a2ea7db03287f5efb757e2af6e4079",
  6947. "shasum": ""
  6948. },
  6949. "require": {
  6950. "php": "^5.3.2 || ^7.0"
  6951. },
  6952. "require-dev": {
  6953. "phpunit/phpunit": "^4.5 || ^5.0.5"
  6954. },
  6955. "type": "library",
  6956. "extra": {
  6957. "branch-alias": {
  6958. "dev-master": "1.x-dev"
  6959. }
  6960. },
  6961. "autoload": {
  6962. "psr-4": {
  6963. "Composer\\Semver\\": "src"
  6964. }
  6965. },
  6966. "notification-url": "https://packagist.org/downloads/",
  6967. "license": [
  6968. "MIT"
  6969. ],
  6970. "authors": [
  6971. {
  6972. "name": "Nils Adermann",
  6973. "email": "naderman@naderman.de",
  6974. "homepage": "http://www.naderman.de"
  6975. },
  6976. {
  6977. "name": "Jordi Boggiano",
  6978. "email": "j.boggiano@seld.be",
  6979. "homepage": "http://seld.be"
  6980. },
  6981. {
  6982. "name": "Rob Bast",
  6983. "email": "rob.bast@gmail.com",
  6984. "homepage": "http://robbast.nl"
  6985. }
  6986. ],
  6987. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  6988. "keywords": [
  6989. "semantic",
  6990. "semver",
  6991. "validation",
  6992. "versioning"
  6993. ],
  6994. "support": {
  6995. "irc": "irc://irc.freenode.org/composer",
  6996. "issues": "https://github.com/composer/semver/issues",
  6997. "source": "https://github.com/composer/semver/tree/1.7.0"
  6998. },
  6999. "funding": [
  7000. {
  7001. "url": "https://packagist.com",
  7002. "type": "custom"
  7003. },
  7004. {
  7005. "url": "https://github.com/composer",
  7006. "type": "github"
  7007. },
  7008. {
  7009. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  7010. "type": "tidelift"
  7011. }
  7012. ],
  7013. "time": "2020-09-09T09:34:06+00:00"
  7014. },
  7015. {
  7016. "name": "composer/spdx-licenses",
  7017. "version": "1.5.4",
  7018. "source": {
  7019. "type": "git",
  7020. "url": "https://github.com/composer/spdx-licenses.git",
  7021. "reference": "6946f785871e2314c60b4524851f3702ea4f2223"
  7022. },
  7023. "dist": {
  7024. "type": "zip",
  7025. "url": "https://api.github.com/repos/composer/spdx-licenses/zipball/6946f785871e2314c60b4524851f3702ea4f2223",
  7026. "reference": "6946f785871e2314c60b4524851f3702ea4f2223",
  7027. "shasum": ""
  7028. },
  7029. "require": {
  7030. "php": "^5.3.2 || ^7.0 || ^8.0"
  7031. },
  7032. "require-dev": {
  7033. "phpunit/phpunit": "^4.8.35 || ^5.7 || 6.5 - 7"
  7034. },
  7035. "type": "library",
  7036. "extra": {
  7037. "branch-alias": {
  7038. "dev-master": "1.x-dev"
  7039. }
  7040. },
  7041. "autoload": {
  7042. "psr-4": {
  7043. "Composer\\Spdx\\": "src"
  7044. }
  7045. },
  7046. "notification-url": "https://packagist.org/downloads/",
  7047. "license": [
  7048. "MIT"
  7049. ],
  7050. "authors": [
  7051. {
  7052. "name": "Nils Adermann",
  7053. "email": "naderman@naderman.de",
  7054. "homepage": "http://www.naderman.de"
  7055. },
  7056. {
  7057. "name": "Jordi Boggiano",
  7058. "email": "j.boggiano@seld.be",
  7059. "homepage": "http://seld.be"
  7060. },
  7061. {
  7062. "name": "Rob Bast",
  7063. "email": "rob.bast@gmail.com",
  7064. "homepage": "http://robbast.nl"
  7065. }
  7066. ],
  7067. "description": "SPDX licenses list and validation library.",
  7068. "keywords": [
  7069. "license",
  7070. "spdx",
  7071. "validator"
  7072. ],
  7073. "funding": [
  7074. {
  7075. "url": "https://packagist.com",
  7076. "type": "custom"
  7077. },
  7078. {
  7079. "url": "https://github.com/composer",
  7080. "type": "github"
  7081. },
  7082. {
  7083. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  7084. "type": "tidelift"
  7085. }
  7086. ],
  7087. "time": "2020-07-15T15:35:07+00:00"
  7088. },
  7089. {
  7090. "name": "composer/xdebug-handler",
  7091. "version": "1.4.3",
  7092. "source": {
  7093. "type": "git",
  7094. "url": "https://github.com/composer/xdebug-handler.git",
  7095. "reference": "ebd27a9866ae8254e873866f795491f02418c5a5"
  7096. },
  7097. "dist": {
  7098. "type": "zip",
  7099. "url": "https://api.github.com/repos/composer/xdebug-handler/zipball/ebd27a9866ae8254e873866f795491f02418c5a5",
  7100. "reference": "ebd27a9866ae8254e873866f795491f02418c5a5",
  7101. "shasum": ""
  7102. },
  7103. "require": {
  7104. "php": "^5.3.2 || ^7.0 || ^8.0",
  7105. "psr/log": "^1.0"
  7106. },
  7107. "require-dev": {
  7108. "phpunit/phpunit": "^4.8.35 || ^5.7 || 6.5 - 8"
  7109. },
  7110. "type": "library",
  7111. "autoload": {
  7112. "psr-4": {
  7113. "Composer\\XdebugHandler\\": "src"
  7114. }
  7115. },
  7116. "notification-url": "https://packagist.org/downloads/",
  7117. "license": [
  7118. "MIT"
  7119. ],
  7120. "authors": [
  7121. {
  7122. "name": "John Stevenson",
  7123. "email": "john-stevenson@blueyonder.co.uk"
  7124. }
  7125. ],
  7126. "description": "Restarts a process without Xdebug.",
  7127. "keywords": [
  7128. "Xdebug",
  7129. "performance"
  7130. ],
  7131. "funding": [
  7132. {
  7133. "url": "https://packagist.com",
  7134. "type": "custom"
  7135. },
  7136. {
  7137. "url": "https://github.com/composer",
  7138. "type": "github"
  7139. },
  7140. {
  7141. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  7142. "type": "tidelift"
  7143. }
  7144. ],
  7145. "time": "2020-08-19T10:27:58+00:00"
  7146. },
  7147. {
  7148. "name": "doctrine/cache",
  7149. "version": "1.10.2",
  7150. "source": {
  7151. "type": "git",
  7152. "url": "https://github.com/doctrine/cache.git",
  7153. "reference": "13e3381b25847283a91948d04640543941309727"
  7154. },
  7155. "dist": {
  7156. "type": "zip",
  7157. "url": "https://api.github.com/repos/doctrine/cache/zipball/13e3381b25847283a91948d04640543941309727",
  7158. "reference": "13e3381b25847283a91948d04640543941309727",
  7159. "shasum": ""
  7160. },
  7161. "require": {
  7162. "php": "~7.1 || ^8.0"
  7163. },
  7164. "conflict": {
  7165. "doctrine/common": ">2.2,<2.4"
  7166. },
  7167. "require-dev": {
  7168. "alcaeus/mongo-php-adapter": "^1.1",
  7169. "doctrine/coding-standard": "^6.0",
  7170. "mongodb/mongodb": "^1.1",
  7171. "phpunit/phpunit": "^7.0",
  7172. "predis/predis": "~1.0"
  7173. },
  7174. "suggest": {
  7175. "alcaeus/mongo-php-adapter": "Required to use legacy MongoDB driver"
  7176. },
  7177. "type": "library",
  7178. "extra": {
  7179. "branch-alias": {
  7180. "dev-master": "1.9.x-dev"
  7181. }
  7182. },
  7183. "autoload": {
  7184. "psr-4": {
  7185. "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache"
  7186. }
  7187. },
  7188. "notification-url": "https://packagist.org/downloads/",
  7189. "license": [
  7190. "MIT"
  7191. ],
  7192. "authors": [
  7193. {
  7194. "name": "Guilherme Blanco",
  7195. "email": "guilhermeblanco@gmail.com"
  7196. },
  7197. {
  7198. "name": "Roman Borschel",
  7199. "email": "roman@code-factory.org"
  7200. },
  7201. {
  7202. "name": "Benjamin Eberlei",
  7203. "email": "kontakt@beberlei.de"
  7204. },
  7205. {
  7206. "name": "Jonathan Wage",
  7207. "email": "jonwage@gmail.com"
  7208. },
  7209. {
  7210. "name": "Johannes Schmitt",
  7211. "email": "schmittjoh@gmail.com"
  7212. }
  7213. ],
  7214. "description": "PHP Doctrine Cache library is a popular cache implementation that supports many different drivers such as redis, memcache, apc, mongodb and others.",
  7215. "homepage": "https://www.doctrine-project.org/projects/cache.html",
  7216. "keywords": [
  7217. "abstraction",
  7218. "apcu",
  7219. "cache",
  7220. "caching",
  7221. "couchdb",
  7222. "memcached",
  7223. "php",
  7224. "redis",
  7225. "xcache"
  7226. ],
  7227. "funding": [
  7228. {
  7229. "url": "https://www.doctrine-project.org/sponsorship.html",
  7230. "type": "custom"
  7231. },
  7232. {
  7233. "url": "https://www.patreon.com/phpdoctrine",
  7234. "type": "patreon"
  7235. },
  7236. {
  7237. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcache",
  7238. "type": "tidelift"
  7239. }
  7240. ],
  7241. "time": "2020-07-07T18:54:01+00:00"
  7242. },
  7243. {
  7244. "name": "doctrine/dbal",
  7245. "version": "2.10.3",
  7246. "source": {
  7247. "type": "git",
  7248. "url": "https://github.com/doctrine/dbal.git",
  7249. "reference": "03ca23afc2ee062f5d3e32426ad37c34a4770dcf"
  7250. },
  7251. "dist": {
  7252. "type": "zip",
  7253. "url": "https://api.github.com/repos/doctrine/dbal/zipball/03ca23afc2ee062f5d3e32426ad37c34a4770dcf",
  7254. "reference": "03ca23afc2ee062f5d3e32426ad37c34a4770dcf",
  7255. "shasum": ""
  7256. },
  7257. "require": {
  7258. "doctrine/cache": "^1.0",
  7259. "doctrine/event-manager": "^1.0",
  7260. "ext-pdo": "*",
  7261. "php": "^7.2"
  7262. },
  7263. "require-dev": {
  7264. "doctrine/coding-standard": "^8.1",
  7265. "jetbrains/phpstorm-stubs": "^2019.1",
  7266. "nikic/php-parser": "^4.4",
  7267. "phpstan/phpstan": "^0.12.40",
  7268. "phpunit/phpunit": "^8.5.5",
  7269. "psalm/plugin-phpunit": "^0.10.0",
  7270. "symfony/console": "^2.0.5|^3.0|^4.0|^5.0",
  7271. "vimeo/psalm": "^3.14.2"
  7272. },
  7273. "suggest": {
  7274. "symfony/console": "For helpful console commands such as SQL execution and import of files."
  7275. },
  7276. "bin": [
  7277. "bin/doctrine-dbal"
  7278. ],
  7279. "type": "library",
  7280. "extra": {
  7281. "branch-alias": {
  7282. "dev-master": "2.10.x-dev",
  7283. "dev-develop": "3.0.x-dev"
  7284. }
  7285. },
  7286. "autoload": {
  7287. "psr-4": {
  7288. "Doctrine\\DBAL\\": "lib/Doctrine/DBAL"
  7289. }
  7290. },
  7291. "notification-url": "https://packagist.org/downloads/",
  7292. "license": [
  7293. "MIT"
  7294. ],
  7295. "authors": [
  7296. {
  7297. "name": "Guilherme Blanco",
  7298. "email": "guilhermeblanco@gmail.com"
  7299. },
  7300. {
  7301. "name": "Roman Borschel",
  7302. "email": "roman@code-factory.org"
  7303. },
  7304. {
  7305. "name": "Benjamin Eberlei",
  7306. "email": "kontakt@beberlei.de"
  7307. },
  7308. {
  7309. "name": "Jonathan Wage",
  7310. "email": "jonwage@gmail.com"
  7311. }
  7312. ],
  7313. "description": "Powerful PHP database abstraction layer (DBAL) with many features for database schema introspection and management.",
  7314. "homepage": "https://www.doctrine-project.org/projects/dbal.html",
  7315. "keywords": [
  7316. "abstraction",
  7317. "database",
  7318. "db2",
  7319. "dbal",
  7320. "mariadb",
  7321. "mssql",
  7322. "mysql",
  7323. "oci8",
  7324. "oracle",
  7325. "pdo",
  7326. "pgsql",
  7327. "postgresql",
  7328. "queryobject",
  7329. "sasql",
  7330. "sql",
  7331. "sqlanywhere",
  7332. "sqlite",
  7333. "sqlserver",
  7334. "sqlsrv"
  7335. ],
  7336. "funding": [
  7337. {
  7338. "url": "https://www.doctrine-project.org/sponsorship.html",
  7339. "type": "custom"
  7340. },
  7341. {
  7342. "url": "https://www.patreon.com/phpdoctrine",
  7343. "type": "patreon"
  7344. },
  7345. {
  7346. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdbal",
  7347. "type": "tidelift"
  7348. }
  7349. ],
  7350. "time": "2020-09-02T01:35:42+00:00"
  7351. },
  7352. {
  7353. "name": "doctrine/event-manager",
  7354. "version": "1.1.1",
  7355. "source": {
  7356. "type": "git",
  7357. "url": "https://github.com/doctrine/event-manager.git",
  7358. "reference": "41370af6a30faa9dc0368c4a6814d596e81aba7f"
  7359. },
  7360. "dist": {
  7361. "type": "zip",
  7362. "url": "https://api.github.com/repos/doctrine/event-manager/zipball/41370af6a30faa9dc0368c4a6814d596e81aba7f",
  7363. "reference": "41370af6a30faa9dc0368c4a6814d596e81aba7f",
  7364. "shasum": ""
  7365. },
  7366. "require": {
  7367. "php": "^7.1 || ^8.0"
  7368. },
  7369. "conflict": {
  7370. "doctrine/common": "<2.9@dev"
  7371. },
  7372. "require-dev": {
  7373. "doctrine/coding-standard": "^6.0",
  7374. "phpunit/phpunit": "^7.0"
  7375. },
  7376. "type": "library",
  7377. "extra": {
  7378. "branch-alias": {
  7379. "dev-master": "1.0.x-dev"
  7380. }
  7381. },
  7382. "autoload": {
  7383. "psr-4": {
  7384. "Doctrine\\Common\\": "lib/Doctrine/Common"
  7385. }
  7386. },
  7387. "notification-url": "https://packagist.org/downloads/",
  7388. "license": [
  7389. "MIT"
  7390. ],
  7391. "authors": [
  7392. {
  7393. "name": "Guilherme Blanco",
  7394. "email": "guilhermeblanco@gmail.com"
  7395. },
  7396. {
  7397. "name": "Roman Borschel",
  7398. "email": "roman@code-factory.org"
  7399. },
  7400. {
  7401. "name": "Benjamin Eberlei",
  7402. "email": "kontakt@beberlei.de"
  7403. },
  7404. {
  7405. "name": "Jonathan Wage",
  7406. "email": "jonwage@gmail.com"
  7407. },
  7408. {
  7409. "name": "Johannes Schmitt",
  7410. "email": "schmittjoh@gmail.com"
  7411. },
  7412. {
  7413. "name": "Marco Pivetta",
  7414. "email": "ocramius@gmail.com"
  7415. }
  7416. ],
  7417. "description": "The Doctrine Event Manager is a simple PHP event system that was built to be used with the various Doctrine projects.",
  7418. "homepage": "https://www.doctrine-project.org/projects/event-manager.html",
  7419. "keywords": [
  7420. "event",
  7421. "event dispatcher",
  7422. "event manager",
  7423. "event system",
  7424. "events"
  7425. ],
  7426. "funding": [
  7427. {
  7428. "url": "https://www.doctrine-project.org/sponsorship.html",
  7429. "type": "custom"
  7430. },
  7431. {
  7432. "url": "https://www.patreon.com/phpdoctrine",
  7433. "type": "patreon"
  7434. },
  7435. {
  7436. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fevent-manager",
  7437. "type": "tidelift"
  7438. }
  7439. ],
  7440. "time": "2020-05-29T18:28:51+00:00"
  7441. },
  7442. {
  7443. "name": "doctrine/instantiator",
  7444. "version": "1.3.1",
  7445. "source": {
  7446. "type": "git",
  7447. "url": "https://github.com/doctrine/instantiator.git",
  7448. "reference": "f350df0268e904597e3bd9c4685c53e0e333feea"
  7449. },
  7450. "dist": {
  7451. "type": "zip",
  7452. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/f350df0268e904597e3bd9c4685c53e0e333feea",
  7453. "reference": "f350df0268e904597e3bd9c4685c53e0e333feea",
  7454. "shasum": ""
  7455. },
  7456. "require": {
  7457. "php": "^7.1 || ^8.0"
  7458. },
  7459. "require-dev": {
  7460. "doctrine/coding-standard": "^6.0",
  7461. "ext-pdo": "*",
  7462. "ext-phar": "*",
  7463. "phpbench/phpbench": "^0.13",
  7464. "phpstan/phpstan-phpunit": "^0.11",
  7465. "phpstan/phpstan-shim": "^0.11",
  7466. "phpunit/phpunit": "^7.0"
  7467. },
  7468. "type": "library",
  7469. "extra": {
  7470. "branch-alias": {
  7471. "dev-master": "1.2.x-dev"
  7472. }
  7473. },
  7474. "autoload": {
  7475. "psr-4": {
  7476. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  7477. }
  7478. },
  7479. "notification-url": "https://packagist.org/downloads/",
  7480. "license": [
  7481. "MIT"
  7482. ],
  7483. "authors": [
  7484. {
  7485. "name": "Marco Pivetta",
  7486. "email": "ocramius@gmail.com",
  7487. "homepage": "http://ocramius.github.com/"
  7488. }
  7489. ],
  7490. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  7491. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  7492. "keywords": [
  7493. "constructor",
  7494. "instantiate"
  7495. ],
  7496. "funding": [
  7497. {
  7498. "url": "https://www.doctrine-project.org/sponsorship.html",
  7499. "type": "custom"
  7500. },
  7501. {
  7502. "url": "https://www.patreon.com/phpdoctrine",
  7503. "type": "patreon"
  7504. },
  7505. {
  7506. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
  7507. "type": "tidelift"
  7508. }
  7509. ],
  7510. "time": "2020-05-29T17:27:14+00:00"
  7511. },
  7512. {
  7513. "name": "facade/flare-client-php",
  7514. "version": "1.3.5",
  7515. "source": {
  7516. "type": "git",
  7517. "url": "https://github.com/facade/flare-client-php.git",
  7518. "reference": "25907a113bfc212a38d458ae365bfb902b4e7fb8"
  7519. },
  7520. "dist": {
  7521. "type": "zip",
  7522. "url": "https://api.github.com/repos/facade/flare-client-php/zipball/25907a113bfc212a38d458ae365bfb902b4e7fb8",
  7523. "reference": "25907a113bfc212a38d458ae365bfb902b4e7fb8",
  7524. "shasum": ""
  7525. },
  7526. "require": {
  7527. "facade/ignition-contracts": "~1.0",
  7528. "illuminate/pipeline": "^5.5|^6.0|^7.0|^8.0",
  7529. "php": "^7.1",
  7530. "symfony/http-foundation": "^3.3|^4.1|^5.0",
  7531. "symfony/mime": "^3.4|^4.0|^5.1",
  7532. "symfony/var-dumper": "^3.4|^4.0|^5.0"
  7533. },
  7534. "require-dev": {
  7535. "friendsofphp/php-cs-fixer": "^2.14",
  7536. "larapack/dd": "^1.1",
  7537. "phpunit/phpunit": "^7.5.16",
  7538. "spatie/phpunit-snapshot-assertions": "^2.0"
  7539. },
  7540. "type": "library",
  7541. "extra": {
  7542. "branch-alias": {
  7543. "dev-master": "1.0-dev"
  7544. }
  7545. },
  7546. "autoload": {
  7547. "psr-4": {
  7548. "Facade\\FlareClient\\": "src"
  7549. },
  7550. "files": [
  7551. "src/helpers.php"
  7552. ]
  7553. },
  7554. "notification-url": "https://packagist.org/downloads/",
  7555. "license": [
  7556. "MIT"
  7557. ],
  7558. "description": "Send PHP errors to Flare",
  7559. "homepage": "https://github.com/facade/flare-client-php",
  7560. "keywords": [
  7561. "exception",
  7562. "facade",
  7563. "flare",
  7564. "reporting"
  7565. ],
  7566. "funding": [
  7567. {
  7568. "url": "https://github.com/spatie",
  7569. "type": "github"
  7570. }
  7571. ],
  7572. "time": "2020-08-26T18:06:23+00:00"
  7573. },
  7574. {
  7575. "name": "facade/ignition",
  7576. "version": "2.3.7",
  7577. "source": {
  7578. "type": "git",
  7579. "url": "https://github.com/facade/ignition.git",
  7580. "reference": "b364db8860a63c1fb58b72b9718863c21df08762"
  7581. },
  7582. "dist": {
  7583. "type": "zip",
  7584. "url": "https://api.github.com/repos/facade/ignition/zipball/b364db8860a63c1fb58b72b9718863c21df08762",
  7585. "reference": "b364db8860a63c1fb58b72b9718863c21df08762",
  7586. "shasum": ""
  7587. },
  7588. "require": {
  7589. "ext-json": "*",
  7590. "ext-mbstring": "*",
  7591. "facade/flare-client-php": "^1.0",
  7592. "facade/ignition-contracts": "^1.0",
  7593. "filp/whoops": "^2.4",
  7594. "illuminate/support": "^7.0|^8.0",
  7595. "monolog/monolog": "^2.0",
  7596. "php": "^7.2.5",
  7597. "scrivo/highlight.php": "^9.15",
  7598. "symfony/console": "^5.0",
  7599. "symfony/var-dumper": "^5.0"
  7600. },
  7601. "require-dev": {
  7602. "friendsofphp/php-cs-fixer": "^2.14",
  7603. "mockery/mockery": "^1.3",
  7604. "orchestra/testbench": "^5.0|^6.0",
  7605. "psalm/plugin-laravel": "^1.2"
  7606. },
  7607. "suggest": {
  7608. "laravel/telescope": "^3.1"
  7609. },
  7610. "type": "library",
  7611. "extra": {
  7612. "branch-alias": {
  7613. "dev-master": "2.x-dev"
  7614. },
  7615. "laravel": {
  7616. "providers": [
  7617. "Facade\\Ignition\\IgnitionServiceProvider"
  7618. ],
  7619. "aliases": {
  7620. "Flare": "Facade\\Ignition\\Facades\\Flare"
  7621. }
  7622. }
  7623. },
  7624. "autoload": {
  7625. "psr-4": {
  7626. "Facade\\Ignition\\": "src"
  7627. },
  7628. "files": [
  7629. "src/helpers.php"
  7630. ]
  7631. },
  7632. "notification-url": "https://packagist.org/downloads/",
  7633. "license": [
  7634. "MIT"
  7635. ],
  7636. "description": "A beautiful error page for Laravel applications.",
  7637. "homepage": "https://github.com/facade/ignition",
  7638. "keywords": [
  7639. "error",
  7640. "flare",
  7641. "laravel",
  7642. "page"
  7643. ],
  7644. "support": {
  7645. "docs": "https://flareapp.io/docs/ignition-for-laravel/introduction",
  7646. "forum": "https://twitter.com/flareappio",
  7647. "issues": "https://github.com/facade/ignition/issues",
  7648. "source": "https://github.com/facade/ignition"
  7649. },
  7650. "time": "2020-09-06T19:26:27+00:00"
  7651. },
  7652. {
  7653. "name": "facade/ignition-contracts",
  7654. "version": "1.0.1",
  7655. "source": {
  7656. "type": "git",
  7657. "url": "https://github.com/facade/ignition-contracts.git",
  7658. "reference": "aeab1ce8b68b188a43e81758e750151ad7da796b"
  7659. },
  7660. "dist": {
  7661. "type": "zip",
  7662. "url": "https://api.github.com/repos/facade/ignition-contracts/zipball/aeab1ce8b68b188a43e81758e750151ad7da796b",
  7663. "reference": "aeab1ce8b68b188a43e81758e750151ad7da796b",
  7664. "shasum": ""
  7665. },
  7666. "require": {
  7667. "php": "^7.1"
  7668. },
  7669. "require-dev": {
  7670. "friendsofphp/php-cs-fixer": "^2.14",
  7671. "phpunit/phpunit": "^7.5|^8.0",
  7672. "vimeo/psalm": "^3.12"
  7673. },
  7674. "type": "library",
  7675. "autoload": {
  7676. "psr-4": {
  7677. "Facade\\IgnitionContracts\\": "src"
  7678. }
  7679. },
  7680. "notification-url": "https://packagist.org/downloads/",
  7681. "license": [
  7682. "MIT"
  7683. ],
  7684. "authors": [
  7685. {
  7686. "name": "Freek Van der Herten",
  7687. "email": "freek@spatie.be",
  7688. "homepage": "https://flareapp.io",
  7689. "role": "Developer"
  7690. }
  7691. ],
  7692. "description": "Solution contracts for Ignition",
  7693. "homepage": "https://github.com/facade/ignition-contracts",
  7694. "keywords": [
  7695. "contracts",
  7696. "flare",
  7697. "ignition"
  7698. ],
  7699. "time": "2020-07-14T10:10:28+00:00"
  7700. },
  7701. {
  7702. "name": "filp/whoops",
  7703. "version": "2.7.3",
  7704. "source": {
  7705. "type": "git",
  7706. "url": "https://github.com/filp/whoops.git",
  7707. "reference": "5d5fe9bb3d656b514d455645b3addc5f7ba7714d"
  7708. },
  7709. "dist": {
  7710. "type": "zip",
  7711. "url": "https://api.github.com/repos/filp/whoops/zipball/5d5fe9bb3d656b514d455645b3addc5f7ba7714d",
  7712. "reference": "5d5fe9bb3d656b514d455645b3addc5f7ba7714d",
  7713. "shasum": ""
  7714. },
  7715. "require": {
  7716. "php": "^5.5.9 || ^7.0",
  7717. "psr/log": "^1.0.1"
  7718. },
  7719. "require-dev": {
  7720. "mockery/mockery": "^0.9 || ^1.0",
  7721. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0",
  7722. "symfony/var-dumper": "^2.6 || ^3.0 || ^4.0 || ^5.0"
  7723. },
  7724. "suggest": {
  7725. "symfony/var-dumper": "Pretty print complex values better with var-dumper available",
  7726. "whoops/soap": "Formats errors as SOAP responses"
  7727. },
  7728. "type": "library",
  7729. "extra": {
  7730. "branch-alias": {
  7731. "dev-master": "2.6-dev"
  7732. }
  7733. },
  7734. "autoload": {
  7735. "psr-4": {
  7736. "Whoops\\": "src/Whoops/"
  7737. }
  7738. },
  7739. "notification-url": "https://packagist.org/downloads/",
  7740. "license": [
  7741. "MIT"
  7742. ],
  7743. "authors": [
  7744. {
  7745. "name": "Filipe Dobreira",
  7746. "homepage": "https://github.com/filp",
  7747. "role": "Developer"
  7748. }
  7749. ],
  7750. "description": "php error handling for cool kids",
  7751. "homepage": "https://filp.github.io/whoops/",
  7752. "keywords": [
  7753. "error",
  7754. "exception",
  7755. "handling",
  7756. "library",
  7757. "throwable",
  7758. "whoops"
  7759. ],
  7760. "time": "2020-06-14T09:00:00+00:00"
  7761. },
  7762. {
  7763. "name": "fzaninotto/faker",
  7764. "version": "v1.9.1",
  7765. "source": {
  7766. "type": "git",
  7767. "url": "https://github.com/fzaninotto/Faker.git",
  7768. "reference": "fc10d778e4b84d5bd315dad194661e091d307c6f"
  7769. },
  7770. "dist": {
  7771. "type": "zip",
  7772. "url": "https://api.github.com/repos/fzaninotto/Faker/zipball/fc10d778e4b84d5bd315dad194661e091d307c6f",
  7773. "reference": "fc10d778e4b84d5bd315dad194661e091d307c6f",
  7774. "shasum": ""
  7775. },
  7776. "require": {
  7777. "php": "^5.3.3 || ^7.0"
  7778. },
  7779. "require-dev": {
  7780. "ext-intl": "*",
  7781. "phpunit/phpunit": "^4.8.35 || ^5.7",
  7782. "squizlabs/php_codesniffer": "^2.9.2"
  7783. },
  7784. "type": "library",
  7785. "extra": {
  7786. "branch-alias": {
  7787. "dev-master": "1.9-dev"
  7788. }
  7789. },
  7790. "autoload": {
  7791. "psr-4": {
  7792. "Faker\\": "src/Faker/"
  7793. }
  7794. },
  7795. "notification-url": "https://packagist.org/downloads/",
  7796. "license": [
  7797. "MIT"
  7798. ],
  7799. "authors": [
  7800. {
  7801. "name": "François Zaninotto"
  7802. }
  7803. ],
  7804. "description": "Faker is a PHP library that generates fake data for you.",
  7805. "keywords": [
  7806. "data",
  7807. "faker",
  7808. "fixtures"
  7809. ],
  7810. "time": "2019-12-12T13:22:17+00:00"
  7811. },
  7812. {
  7813. "name": "hamcrest/hamcrest-php",
  7814. "version": "v2.0.1",
  7815. "source": {
  7816. "type": "git",
  7817. "url": "https://github.com/hamcrest/hamcrest-php.git",
  7818. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3"
  7819. },
  7820. "dist": {
  7821. "type": "zip",
  7822. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  7823. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  7824. "shasum": ""
  7825. },
  7826. "require": {
  7827. "php": "^5.3|^7.0|^8.0"
  7828. },
  7829. "replace": {
  7830. "cordoval/hamcrest-php": "*",
  7831. "davedevelopment/hamcrest-php": "*",
  7832. "kodova/hamcrest-php": "*"
  7833. },
  7834. "require-dev": {
  7835. "phpunit/php-file-iterator": "^1.4 || ^2.0",
  7836. "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0"
  7837. },
  7838. "type": "library",
  7839. "extra": {
  7840. "branch-alias": {
  7841. "dev-master": "2.1-dev"
  7842. }
  7843. },
  7844. "autoload": {
  7845. "classmap": [
  7846. "hamcrest"
  7847. ]
  7848. },
  7849. "notification-url": "https://packagist.org/downloads/",
  7850. "license": [
  7851. "BSD-3-Clause"
  7852. ],
  7853. "description": "This is the PHP port of Hamcrest Matchers",
  7854. "keywords": [
  7855. "test"
  7856. ],
  7857. "time": "2020-07-09T08:09:16+00:00"
  7858. },
  7859. {
  7860. "name": "justinrainbow/json-schema",
  7861. "version": "5.2.10",
  7862. "source": {
  7863. "type": "git",
  7864. "url": "https://github.com/justinrainbow/json-schema.git",
  7865. "reference": "2ba9c8c862ecd5510ed16c6340aa9f6eadb4f31b"
  7866. },
  7867. "dist": {
  7868. "type": "zip",
  7869. "url": "https://api.github.com/repos/justinrainbow/json-schema/zipball/2ba9c8c862ecd5510ed16c6340aa9f6eadb4f31b",
  7870. "reference": "2ba9c8c862ecd5510ed16c6340aa9f6eadb4f31b",
  7871. "shasum": ""
  7872. },
  7873. "require": {
  7874. "php": ">=5.3.3"
  7875. },
  7876. "require-dev": {
  7877. "friendsofphp/php-cs-fixer": "~2.2.20||~2.15.1",
  7878. "json-schema/json-schema-test-suite": "1.2.0",
  7879. "phpunit/phpunit": "^4.8.35"
  7880. },
  7881. "bin": [
  7882. "bin/validate-json"
  7883. ],
  7884. "type": "library",
  7885. "extra": {
  7886. "branch-alias": {
  7887. "dev-master": "5.0.x-dev"
  7888. }
  7889. },
  7890. "autoload": {
  7891. "psr-4": {
  7892. "JsonSchema\\": "src/JsonSchema/"
  7893. }
  7894. },
  7895. "notification-url": "https://packagist.org/downloads/",
  7896. "license": [
  7897. "MIT"
  7898. ],
  7899. "authors": [
  7900. {
  7901. "name": "Bruno Prieto Reis",
  7902. "email": "bruno.p.reis@gmail.com"
  7903. },
  7904. {
  7905. "name": "Justin Rainbow",
  7906. "email": "justin.rainbow@gmail.com"
  7907. },
  7908. {
  7909. "name": "Igor Wiedler",
  7910. "email": "igor@wiedler.ch"
  7911. },
  7912. {
  7913. "name": "Robert Schönthal",
  7914. "email": "seroscho@googlemail.com"
  7915. }
  7916. ],
  7917. "description": "A library to validate a json schema.",
  7918. "homepage": "https://github.com/justinrainbow/json-schema",
  7919. "keywords": [
  7920. "json",
  7921. "schema"
  7922. ],
  7923. "time": "2020-05-27T16:41:55+00:00"
  7924. },
  7925. {
  7926. "name": "laravel/telescope",
  7927. "version": "v3.5.1",
  7928. "source": {
  7929. "type": "git",
  7930. "url": "https://github.com/laravel/telescope.git",
  7931. "reference": "a8d2e1106ba655006fde47a0b7ed53851c6398f5"
  7932. },
  7933. "dist": {
  7934. "type": "zip",
  7935. "url": "https://api.github.com/repos/laravel/telescope/zipball/a8d2e1106ba655006fde47a0b7ed53851c6398f5",
  7936. "reference": "a8d2e1106ba655006fde47a0b7ed53851c6398f5",
  7937. "shasum": ""
  7938. },
  7939. "require": {
  7940. "ext-json": "*",
  7941. "laravel/framework": "^6.0|^7.0",
  7942. "moontoast/math": "^1.1",
  7943. "php": "^7.2",
  7944. "symfony/var-dumper": "^4.4|^5.0"
  7945. },
  7946. "require-dev": {
  7947. "ext-gd": "*",
  7948. "orchestra/testbench": "^4.0|^5.0"
  7949. },
  7950. "type": "library",
  7951. "extra": {
  7952. "branch-alias": {
  7953. "dev-master": "3.x-dev"
  7954. },
  7955. "laravel": {
  7956. "providers": [
  7957. "Laravel\\Telescope\\TelescopeServiceProvider"
  7958. ]
  7959. }
  7960. },
  7961. "autoload": {
  7962. "psr-4": {
  7963. "Laravel\\Telescope\\": "src/"
  7964. }
  7965. },
  7966. "notification-url": "https://packagist.org/downloads/",
  7967. "license": [
  7968. "MIT"
  7969. ],
  7970. "authors": [
  7971. {
  7972. "name": "Taylor Otwell",
  7973. "email": "taylor@laravel.com"
  7974. },
  7975. {
  7976. "name": "Mohamed Said",
  7977. "email": "mohamed@laravel.com"
  7978. }
  7979. ],
  7980. "description": "An elegant debug assistant for the Laravel framework.",
  7981. "keywords": [
  7982. "debugging",
  7983. "laravel",
  7984. "monitoring"
  7985. ],
  7986. "time": "2020-07-28T19:12:33+00:00"
  7987. },
  7988. {
  7989. "name": "maximebf/debugbar",
  7990. "version": "v1.16.3",
  7991. "source": {
  7992. "type": "git",
  7993. "url": "https://github.com/maximebf/php-debugbar.git",
  7994. "reference": "1a1605b8e9bacb34cc0c6278206d699772e1d372"
  7995. },
  7996. "dist": {
  7997. "type": "zip",
  7998. "url": "https://api.github.com/repos/maximebf/php-debugbar/zipball/1a1605b8e9bacb34cc0c6278206d699772e1d372",
  7999. "reference": "1a1605b8e9bacb34cc0c6278206d699772e1d372",
  8000. "shasum": ""
  8001. },
  8002. "require": {
  8003. "php": "^7.1",
  8004. "psr/log": "^1.0",
  8005. "symfony/var-dumper": "^2.6|^3|^4|^5"
  8006. },
  8007. "require-dev": {
  8008. "phpunit/phpunit": "^5"
  8009. },
  8010. "suggest": {
  8011. "kriswallsmith/assetic": "The best way to manage assets",
  8012. "monolog/monolog": "Log using Monolog",
  8013. "predis/predis": "Redis storage"
  8014. },
  8015. "type": "library",
  8016. "extra": {
  8017. "branch-alias": {
  8018. "dev-master": "1.16-dev"
  8019. }
  8020. },
  8021. "autoload": {
  8022. "psr-4": {
  8023. "DebugBar\\": "src/DebugBar/"
  8024. }
  8025. },
  8026. "notification-url": "https://packagist.org/downloads/",
  8027. "license": [
  8028. "MIT"
  8029. ],
  8030. "authors": [
  8031. {
  8032. "name": "Maxime Bouroumeau-Fuseau",
  8033. "email": "maxime.bouroumeau@gmail.com",
  8034. "homepage": "http://maximebf.com"
  8035. },
  8036. {
  8037. "name": "Barry vd. Heuvel",
  8038. "email": "barryvdh@gmail.com"
  8039. }
  8040. ],
  8041. "description": "Debug bar in the browser for php application",
  8042. "homepage": "https://github.com/maximebf/php-debugbar",
  8043. "keywords": [
  8044. "debug",
  8045. "debugbar"
  8046. ],
  8047. "time": "2020-05-06T07:06:27+00:00"
  8048. },
  8049. {
  8050. "name": "mockery/mockery",
  8051. "version": "1.4.2",
  8052. "source": {
  8053. "type": "git",
  8054. "url": "https://github.com/mockery/mockery.git",
  8055. "reference": "20cab678faed06fac225193be281ea0fddb43b93"
  8056. },
  8057. "dist": {
  8058. "type": "zip",
  8059. "url": "https://api.github.com/repos/mockery/mockery/zipball/20cab678faed06fac225193be281ea0fddb43b93",
  8060. "reference": "20cab678faed06fac225193be281ea0fddb43b93",
  8061. "shasum": ""
  8062. },
  8063. "require": {
  8064. "hamcrest/hamcrest-php": "^2.0.1",
  8065. "lib-pcre": ">=7.0",
  8066. "php": "^7.3 || ^8.0"
  8067. },
  8068. "conflict": {
  8069. "phpunit/phpunit": "<8.0"
  8070. },
  8071. "require-dev": {
  8072. "phpunit/phpunit": "^8.5 || ^9.3"
  8073. },
  8074. "type": "library",
  8075. "extra": {
  8076. "branch-alias": {
  8077. "dev-master": "1.4.x-dev"
  8078. }
  8079. },
  8080. "autoload": {
  8081. "psr-0": {
  8082. "Mockery": "library/"
  8083. }
  8084. },
  8085. "notification-url": "https://packagist.org/downloads/",
  8086. "license": [
  8087. "BSD-3-Clause"
  8088. ],
  8089. "authors": [
  8090. {
  8091. "name": "Pádraic Brady",
  8092. "email": "padraic.brady@gmail.com",
  8093. "homepage": "http://blog.astrumfutura.com"
  8094. },
  8095. {
  8096. "name": "Dave Marshall",
  8097. "email": "dave.marshall@atstsolutions.co.uk",
  8098. "homepage": "http://davedevelopment.co.uk"
  8099. }
  8100. ],
  8101. "description": "Mockery is a simple yet flexible PHP mock object framework",
  8102. "homepage": "https://github.com/mockery/mockery",
  8103. "keywords": [
  8104. "BDD",
  8105. "TDD",
  8106. "library",
  8107. "mock",
  8108. "mock objects",
  8109. "mockery",
  8110. "stub",
  8111. "test",
  8112. "test double",
  8113. "testing"
  8114. ],
  8115. "time": "2020-08-11T18:10:13+00:00"
  8116. },
  8117. {
  8118. "name": "moontoast/math",
  8119. "version": "1.2.1",
  8120. "source": {
  8121. "type": "git",
  8122. "url": "https://github.com/ramsey/moontoast-math.git",
  8123. "reference": "5f47d34c87767dbcc08b30377a9827df71de91fa"
  8124. },
  8125. "dist": {
  8126. "type": "zip",
  8127. "url": "https://api.github.com/repos/ramsey/moontoast-math/zipball/5f47d34c87767dbcc08b30377a9827df71de91fa",
  8128. "reference": "5f47d34c87767dbcc08b30377a9827df71de91fa",
  8129. "shasum": ""
  8130. },
  8131. "require": {
  8132. "php": ">=5.3.3",
  8133. "phpseclib/bcmath_compat": ">=1.0.3"
  8134. },
  8135. "require-dev": {
  8136. "jakub-onderka/php-parallel-lint": "^0.9.0",
  8137. "phpunit/phpunit": "^4.8 || ^5.5 || ^6.5 || ^7.0",
  8138. "satooshi/php-coveralls": "^0.6.1",
  8139. "squizlabs/php_codesniffer": "^2.3"
  8140. },
  8141. "type": "library",
  8142. "autoload": {
  8143. "psr-4": {
  8144. "Moontoast\\Math\\": "src/Moontoast/Math",
  8145. "Moontoast\\Math\\Exception\\": "src/Moontoast/Math/Exception"
  8146. }
  8147. },
  8148. "notification-url": "https://packagist.org/downloads/",
  8149. "license": [
  8150. "Apache-2.0"
  8151. ],
  8152. "authors": [
  8153. {
  8154. "name": "Ben Ramsey",
  8155. "email": "ben@benramsey.com",
  8156. "homepage": "https://benramsey.com"
  8157. }
  8158. ],
  8159. "description": "A mathematics library, providing functionality for large numbers",
  8160. "homepage": "https://github.com/ramsey/moontoast-math",
  8161. "keywords": [
  8162. "bcmath",
  8163. "math"
  8164. ],
  8165. "abandoned": "brick/math",
  8166. "time": "2020-01-05T04:49:34+00:00"
  8167. },
  8168. {
  8169. "name": "myclabs/deep-copy",
  8170. "version": "1.10.1",
  8171. "source": {
  8172. "type": "git",
  8173. "url": "https://github.com/myclabs/DeepCopy.git",
  8174. "reference": "969b211f9a51aa1f6c01d1d2aef56d3bd91598e5"
  8175. },
  8176. "dist": {
  8177. "type": "zip",
  8178. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/969b211f9a51aa1f6c01d1d2aef56d3bd91598e5",
  8179. "reference": "969b211f9a51aa1f6c01d1d2aef56d3bd91598e5",
  8180. "shasum": ""
  8181. },
  8182. "require": {
  8183. "php": "^7.1 || ^8.0"
  8184. },
  8185. "replace": {
  8186. "myclabs/deep-copy": "self.version"
  8187. },
  8188. "require-dev": {
  8189. "doctrine/collections": "^1.0",
  8190. "doctrine/common": "^2.6",
  8191. "phpunit/phpunit": "^7.1"
  8192. },
  8193. "type": "library",
  8194. "autoload": {
  8195. "psr-4": {
  8196. "DeepCopy\\": "src/DeepCopy/"
  8197. },
  8198. "files": [
  8199. "src/DeepCopy/deep_copy.php"
  8200. ]
  8201. },
  8202. "notification-url": "https://packagist.org/downloads/",
  8203. "license": [
  8204. "MIT"
  8205. ],
  8206. "description": "Create deep copies (clones) of your objects",
  8207. "keywords": [
  8208. "clone",
  8209. "copy",
  8210. "duplicate",
  8211. "object",
  8212. "object graph"
  8213. ],
  8214. "funding": [
  8215. {
  8216. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  8217. "type": "tidelift"
  8218. }
  8219. ],
  8220. "time": "2020-06-29T13:22:24+00:00"
  8221. },
  8222. {
  8223. "name": "nunomaduro/collision",
  8224. "version": "v4.2.0",
  8225. "source": {
  8226. "type": "git",
  8227. "url": "https://github.com/nunomaduro/collision.git",
  8228. "reference": "d50490417eded97be300a92cd7df7badc37a9018"
  8229. },
  8230. "dist": {
  8231. "type": "zip",
  8232. "url": "https://api.github.com/repos/nunomaduro/collision/zipball/d50490417eded97be300a92cd7df7badc37a9018",
  8233. "reference": "d50490417eded97be300a92cd7df7badc37a9018",
  8234. "shasum": ""
  8235. },
  8236. "require": {
  8237. "facade/ignition-contracts": "^1.0",
  8238. "filp/whoops": "^2.4",
  8239. "php": "^7.2.5",
  8240. "symfony/console": "^5.0"
  8241. },
  8242. "require-dev": {
  8243. "facade/ignition": "^2.0",
  8244. "fideloper/proxy": "^4.2",
  8245. "friendsofphp/php-cs-fixer": "^2.16",
  8246. "fruitcake/laravel-cors": "^1.0",
  8247. "laravel/framework": "^7.0",
  8248. "laravel/tinker": "^2.0",
  8249. "nunomaduro/larastan": "^0.5",
  8250. "orchestra/testbench": "^5.0",
  8251. "phpstan/phpstan": "^0.12.3",
  8252. "phpunit/phpunit": "^8.5.1 || ^9.0"
  8253. },
  8254. "type": "library",
  8255. "extra": {
  8256. "laravel": {
  8257. "providers": [
  8258. "NunoMaduro\\Collision\\Adapters\\Laravel\\CollisionServiceProvider"
  8259. ]
  8260. }
  8261. },
  8262. "autoload": {
  8263. "psr-4": {
  8264. "NunoMaduro\\Collision\\": "src/"
  8265. }
  8266. },
  8267. "notification-url": "https://packagist.org/downloads/",
  8268. "license": [
  8269. "MIT"
  8270. ],
  8271. "authors": [
  8272. {
  8273. "name": "Nuno Maduro",
  8274. "email": "enunomaduro@gmail.com"
  8275. }
  8276. ],
  8277. "description": "Cli error handling for console/command-line PHP applications.",
  8278. "keywords": [
  8279. "artisan",
  8280. "cli",
  8281. "command-line",
  8282. "console",
  8283. "error",
  8284. "handling",
  8285. "laravel",
  8286. "laravel-zero",
  8287. "php",
  8288. "symfony"
  8289. ],
  8290. "funding": [
  8291. {
  8292. "url": "https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=66BYDWAT92N6L",
  8293. "type": "custom"
  8294. },
  8295. {
  8296. "url": "https://github.com/nunomaduro",
  8297. "type": "github"
  8298. },
  8299. {
  8300. "url": "https://www.patreon.com/nunomaduro",
  8301. "type": "patreon"
  8302. }
  8303. ],
  8304. "time": "2020-04-04T19:56:08+00:00"
  8305. },
  8306. {
  8307. "name": "phar-io/manifest",
  8308. "version": "1.0.3",
  8309. "source": {
  8310. "type": "git",
  8311. "url": "https://github.com/phar-io/manifest.git",
  8312. "reference": "7761fcacf03b4d4f16e7ccb606d4879ca431fcf4"
  8313. },
  8314. "dist": {
  8315. "type": "zip",
  8316. "url": "https://api.github.com/repos/phar-io/manifest/zipball/7761fcacf03b4d4f16e7ccb606d4879ca431fcf4",
  8317. "reference": "7761fcacf03b4d4f16e7ccb606d4879ca431fcf4",
  8318. "shasum": ""
  8319. },
  8320. "require": {
  8321. "ext-dom": "*",
  8322. "ext-phar": "*",
  8323. "phar-io/version": "^2.0",
  8324. "php": "^5.6 || ^7.0"
  8325. },
  8326. "type": "library",
  8327. "extra": {
  8328. "branch-alias": {
  8329. "dev-master": "1.0.x-dev"
  8330. }
  8331. },
  8332. "autoload": {
  8333. "classmap": [
  8334. "src/"
  8335. ]
  8336. },
  8337. "notification-url": "https://packagist.org/downloads/",
  8338. "license": [
  8339. "BSD-3-Clause"
  8340. ],
  8341. "authors": [
  8342. {
  8343. "name": "Arne Blankerts",
  8344. "email": "arne@blankerts.de",
  8345. "role": "Developer"
  8346. },
  8347. {
  8348. "name": "Sebastian Heuer",
  8349. "email": "sebastian@phpeople.de",
  8350. "role": "Developer"
  8351. },
  8352. {
  8353. "name": "Sebastian Bergmann",
  8354. "email": "sebastian@phpunit.de",
  8355. "role": "Developer"
  8356. }
  8357. ],
  8358. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  8359. "time": "2018-07-08T19:23:20+00:00"
  8360. },
  8361. {
  8362. "name": "phar-io/version",
  8363. "version": "2.0.1",
  8364. "source": {
  8365. "type": "git",
  8366. "url": "https://github.com/phar-io/version.git",
  8367. "reference": "45a2ec53a73c70ce41d55cedef9063630abaf1b6"
  8368. },
  8369. "dist": {
  8370. "type": "zip",
  8371. "url": "https://api.github.com/repos/phar-io/version/zipball/45a2ec53a73c70ce41d55cedef9063630abaf1b6",
  8372. "reference": "45a2ec53a73c70ce41d55cedef9063630abaf1b6",
  8373. "shasum": ""
  8374. },
  8375. "require": {
  8376. "php": "^5.6 || ^7.0"
  8377. },
  8378. "type": "library",
  8379. "autoload": {
  8380. "classmap": [
  8381. "src/"
  8382. ]
  8383. },
  8384. "notification-url": "https://packagist.org/downloads/",
  8385. "license": [
  8386. "BSD-3-Clause"
  8387. ],
  8388. "authors": [
  8389. {
  8390. "name": "Arne Blankerts",
  8391. "email": "arne@blankerts.de",
  8392. "role": "Developer"
  8393. },
  8394. {
  8395. "name": "Sebastian Heuer",
  8396. "email": "sebastian@phpeople.de",
  8397. "role": "Developer"
  8398. },
  8399. {
  8400. "name": "Sebastian Bergmann",
  8401. "email": "sebastian@phpunit.de",
  8402. "role": "Developer"
  8403. }
  8404. ],
  8405. "description": "Library for handling version information and constraints",
  8406. "time": "2018-07-08T19:19:57+00:00"
  8407. },
  8408. {
  8409. "name": "phpdocumentor/reflection-common",
  8410. "version": "2.2.0",
  8411. "source": {
  8412. "type": "git",
  8413. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  8414. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b"
  8415. },
  8416. "dist": {
  8417. "type": "zip",
  8418. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  8419. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  8420. "shasum": ""
  8421. },
  8422. "require": {
  8423. "php": "^7.2 || ^8.0"
  8424. },
  8425. "type": "library",
  8426. "extra": {
  8427. "branch-alias": {
  8428. "dev-2.x": "2.x-dev"
  8429. }
  8430. },
  8431. "autoload": {
  8432. "psr-4": {
  8433. "phpDocumentor\\Reflection\\": "src/"
  8434. }
  8435. },
  8436. "notification-url": "https://packagist.org/downloads/",
  8437. "license": [
  8438. "MIT"
  8439. ],
  8440. "authors": [
  8441. {
  8442. "name": "Jaap van Otterdijk",
  8443. "email": "opensource@ijaap.nl"
  8444. }
  8445. ],
  8446. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  8447. "homepage": "http://www.phpdoc.org",
  8448. "keywords": [
  8449. "FQSEN",
  8450. "phpDocumentor",
  8451. "phpdoc",
  8452. "reflection",
  8453. "static analysis"
  8454. ],
  8455. "time": "2020-06-27T09:03:43+00:00"
  8456. },
  8457. {
  8458. "name": "phpdocumentor/reflection-docblock",
  8459. "version": "5.2.1",
  8460. "source": {
  8461. "type": "git",
  8462. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  8463. "reference": "d870572532cd70bc3fab58f2e23ad423c8404c44"
  8464. },
  8465. "dist": {
  8466. "type": "zip",
  8467. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/d870572532cd70bc3fab58f2e23ad423c8404c44",
  8468. "reference": "d870572532cd70bc3fab58f2e23ad423c8404c44",
  8469. "shasum": ""
  8470. },
  8471. "require": {
  8472. "ext-filter": "*",
  8473. "php": "^7.2 || ^8.0",
  8474. "phpdocumentor/reflection-common": "^2.2",
  8475. "phpdocumentor/type-resolver": "^1.3",
  8476. "webmozart/assert": "^1.9.1"
  8477. },
  8478. "require-dev": {
  8479. "mockery/mockery": "~1.3.2"
  8480. },
  8481. "type": "library",
  8482. "extra": {
  8483. "branch-alias": {
  8484. "dev-master": "5.x-dev"
  8485. }
  8486. },
  8487. "autoload": {
  8488. "psr-4": {
  8489. "phpDocumentor\\Reflection\\": "src"
  8490. }
  8491. },
  8492. "notification-url": "https://packagist.org/downloads/",
  8493. "license": [
  8494. "MIT"
  8495. ],
  8496. "authors": [
  8497. {
  8498. "name": "Mike van Riel",
  8499. "email": "me@mikevanriel.com"
  8500. },
  8501. {
  8502. "name": "Jaap van Otterdijk",
  8503. "email": "account@ijaap.nl"
  8504. }
  8505. ],
  8506. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  8507. "time": "2020-08-15T11:14:08+00:00"
  8508. },
  8509. {
  8510. "name": "phpdocumentor/type-resolver",
  8511. "version": "1.3.0",
  8512. "source": {
  8513. "type": "git",
  8514. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  8515. "reference": "e878a14a65245fbe78f8080eba03b47c3b705651"
  8516. },
  8517. "dist": {
  8518. "type": "zip",
  8519. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/e878a14a65245fbe78f8080eba03b47c3b705651",
  8520. "reference": "e878a14a65245fbe78f8080eba03b47c3b705651",
  8521. "shasum": ""
  8522. },
  8523. "require": {
  8524. "php": "^7.2 || ^8.0",
  8525. "phpdocumentor/reflection-common": "^2.0"
  8526. },
  8527. "require-dev": {
  8528. "ext-tokenizer": "*"
  8529. },
  8530. "type": "library",
  8531. "extra": {
  8532. "branch-alias": {
  8533. "dev-1.x": "1.x-dev"
  8534. }
  8535. },
  8536. "autoload": {
  8537. "psr-4": {
  8538. "phpDocumentor\\Reflection\\": "src"
  8539. }
  8540. },
  8541. "notification-url": "https://packagist.org/downloads/",
  8542. "license": [
  8543. "MIT"
  8544. ],
  8545. "authors": [
  8546. {
  8547. "name": "Mike van Riel",
  8548. "email": "me@mikevanriel.com"
  8549. }
  8550. ],
  8551. "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names",
  8552. "time": "2020-06-27T10:12:23+00:00"
  8553. },
  8554. {
  8555. "name": "phpseclib/bcmath_compat",
  8556. "version": "1.0.5",
  8557. "source": {
  8558. "type": "git",
  8559. "url": "https://github.com/phpseclib/bcmath_compat.git",
  8560. "reference": "89cbb63742a32730b7187773a60b6b12b9db4479"
  8561. },
  8562. "dist": {
  8563. "type": "zip",
  8564. "url": "https://api.github.com/repos/phpseclib/bcmath_compat/zipball/89cbb63742a32730b7187773a60b6b12b9db4479",
  8565. "reference": "89cbb63742a32730b7187773a60b6b12b9db4479",
  8566. "shasum": ""
  8567. },
  8568. "require": {
  8569. "phpseclib/phpseclib": ">=2.0.19"
  8570. },
  8571. "provide": {
  8572. "ext-bcmath": "7.3.5"
  8573. },
  8574. "require-dev": {
  8575. "phpunit/phpunit": "^4.8.35|^5.7|^6.0",
  8576. "squizlabs/php_codesniffer": "^3.0"
  8577. },
  8578. "suggest": {
  8579. "ext-gmp": "Will enable faster math operations"
  8580. },
  8581. "type": "library",
  8582. "autoload": {
  8583. "files": [
  8584. "lib/bcmath.php"
  8585. ],
  8586. "psr-4": {
  8587. "bcmath_compat\\": "src"
  8588. }
  8589. },
  8590. "notification-url": "https://packagist.org/downloads/",
  8591. "license": [
  8592. "MIT"
  8593. ],
  8594. "authors": [
  8595. {
  8596. "name": "Jim Wigginton",
  8597. "email": "terrafrost@php.net",
  8598. "homepage": "http://phpseclib.sourceforge.net"
  8599. }
  8600. ],
  8601. "description": "PHP 5.x/7.x polyfill for bcmath extension",
  8602. "keywords": [
  8603. "BigInteger",
  8604. "bcmath",
  8605. "bigdecimal",
  8606. "math",
  8607. "polyfill"
  8608. ],
  8609. "time": "2020-04-26T16:34:33+00:00"
  8610. },
  8611. {
  8612. "name": "phpseclib/phpseclib",
  8613. "version": "2.0.29",
  8614. "source": {
  8615. "type": "git",
  8616. "url": "https://github.com/phpseclib/phpseclib.git",
  8617. "reference": "497856a8d997f640b4a516062f84228a772a48a8"
  8618. },
  8619. "dist": {
  8620. "type": "zip",
  8621. "url": "https://api.github.com/repos/phpseclib/phpseclib/zipball/497856a8d997f640b4a516062f84228a772a48a8",
  8622. "reference": "497856a8d997f640b4a516062f84228a772a48a8",
  8623. "shasum": ""
  8624. },
  8625. "require": {
  8626. "php": ">=5.3.3"
  8627. },
  8628. "require-dev": {
  8629. "phing/phing": "~2.7",
  8630. "phpunit/phpunit": "^4.8.35|^5.7|^6.0",
  8631. "squizlabs/php_codesniffer": "~2.0"
  8632. },
  8633. "suggest": {
  8634. "ext-gmp": "Install the GMP (GNU Multiple Precision) extension in order to speed up arbitrary precision integer arithmetic operations.",
  8635. "ext-libsodium": "SSH2/SFTP can make use of some algorithms provided by the libsodium-php extension.",
  8636. "ext-mcrypt": "Install the Mcrypt extension in order to speed up a few other cryptographic operations.",
  8637. "ext-openssl": "Install the OpenSSL extension in order to speed up a wide variety of cryptographic operations."
  8638. },
  8639. "type": "library",
  8640. "autoload": {
  8641. "files": [
  8642. "phpseclib/bootstrap.php"
  8643. ],
  8644. "psr-4": {
  8645. "phpseclib\\": "phpseclib/"
  8646. }
  8647. },
  8648. "notification-url": "https://packagist.org/downloads/",
  8649. "license": [
  8650. "MIT"
  8651. ],
  8652. "authors": [
  8653. {
  8654. "name": "Jim Wigginton",
  8655. "email": "terrafrost@php.net",
  8656. "role": "Lead Developer"
  8657. },
  8658. {
  8659. "name": "Patrick Monnerat",
  8660. "email": "pm@datasphere.ch",
  8661. "role": "Developer"
  8662. },
  8663. {
  8664. "name": "Andreas Fischer",
  8665. "email": "bantu@phpbb.com",
  8666. "role": "Developer"
  8667. },
  8668. {
  8669. "name": "Hans-Jürgen Petrich",
  8670. "email": "petrich@tronic-media.com",
  8671. "role": "Developer"
  8672. },
  8673. {
  8674. "name": "Graham Campbell",
  8675. "email": "graham@alt-three.com",
  8676. "role": "Developer"
  8677. }
  8678. ],
  8679. "description": "PHP Secure Communications Library - Pure-PHP implementations of RSA, AES, SSH2, SFTP, X.509 etc.",
  8680. "homepage": "http://phpseclib.sourceforge.net",
  8681. "keywords": [
  8682. "BigInteger",
  8683. "aes",
  8684. "asn.1",
  8685. "asn1",
  8686. "blowfish",
  8687. "crypto",
  8688. "cryptography",
  8689. "encryption",
  8690. "rsa",
  8691. "security",
  8692. "sftp",
  8693. "signature",
  8694. "signing",
  8695. "ssh",
  8696. "twofish",
  8697. "x.509",
  8698. "x509"
  8699. ],
  8700. "support": {
  8701. "issues": "https://github.com/phpseclib/phpseclib/issues",
  8702. "source": "https://github.com/phpseclib/phpseclib/tree/2.0"
  8703. },
  8704. "funding": [
  8705. {
  8706. "url": "https://github.com/terrafrost",
  8707. "type": "github"
  8708. },
  8709. {
  8710. "url": "https://www.patreon.com/phpseclib",
  8711. "type": "patreon"
  8712. },
  8713. {
  8714. "url": "https://tidelift.com/funding/github/packagist/phpseclib/phpseclib",
  8715. "type": "tidelift"
  8716. }
  8717. ],
  8718. "time": "2020-09-08T04:24:43+00:00"
  8719. },
  8720. {
  8721. "name": "phpspec/prophecy",
  8722. "version": "1.11.1",
  8723. "source": {
  8724. "type": "git",
  8725. "url": "https://github.com/phpspec/prophecy.git",
  8726. "reference": "b20034be5efcdab4fb60ca3a29cba2949aead160"
  8727. },
  8728. "dist": {
  8729. "type": "zip",
  8730. "url": "https://api.github.com/repos/phpspec/prophecy/zipball/b20034be5efcdab4fb60ca3a29cba2949aead160",
  8731. "reference": "b20034be5efcdab4fb60ca3a29cba2949aead160",
  8732. "shasum": ""
  8733. },
  8734. "require": {
  8735. "doctrine/instantiator": "^1.2",
  8736. "php": "^7.2",
  8737. "phpdocumentor/reflection-docblock": "^5.0",
  8738. "sebastian/comparator": "^3.0 || ^4.0",
  8739. "sebastian/recursion-context": "^3.0 || ^4.0"
  8740. },
  8741. "require-dev": {
  8742. "phpspec/phpspec": "^6.0",
  8743. "phpunit/phpunit": "^8.0"
  8744. },
  8745. "type": "library",
  8746. "extra": {
  8747. "branch-alias": {
  8748. "dev-master": "1.11.x-dev"
  8749. }
  8750. },
  8751. "autoload": {
  8752. "psr-4": {
  8753. "Prophecy\\": "src/Prophecy"
  8754. }
  8755. },
  8756. "notification-url": "https://packagist.org/downloads/",
  8757. "license": [
  8758. "MIT"
  8759. ],
  8760. "authors": [
  8761. {
  8762. "name": "Konstantin Kudryashov",
  8763. "email": "ever.zet@gmail.com",
  8764. "homepage": "http://everzet.com"
  8765. },
  8766. {
  8767. "name": "Marcello Duarte",
  8768. "email": "marcello.duarte@gmail.com"
  8769. }
  8770. ],
  8771. "description": "Highly opinionated mocking framework for PHP 5.3+",
  8772. "homepage": "https://github.com/phpspec/prophecy",
  8773. "keywords": [
  8774. "Double",
  8775. "Dummy",
  8776. "fake",
  8777. "mock",
  8778. "spy",
  8779. "stub"
  8780. ],
  8781. "time": "2020-07-08T12:44:21+00:00"
  8782. },
  8783. {
  8784. "name": "phpunit/php-code-coverage",
  8785. "version": "7.0.10",
  8786. "source": {
  8787. "type": "git",
  8788. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  8789. "reference": "f1884187926fbb755a9aaf0b3836ad3165b478bf"
  8790. },
  8791. "dist": {
  8792. "type": "zip",
  8793. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/f1884187926fbb755a9aaf0b3836ad3165b478bf",
  8794. "reference": "f1884187926fbb755a9aaf0b3836ad3165b478bf",
  8795. "shasum": ""
  8796. },
  8797. "require": {
  8798. "ext-dom": "*",
  8799. "ext-xmlwriter": "*",
  8800. "php": "^7.2",
  8801. "phpunit/php-file-iterator": "^2.0.2",
  8802. "phpunit/php-text-template": "^1.2.1",
  8803. "phpunit/php-token-stream": "^3.1.1",
  8804. "sebastian/code-unit-reverse-lookup": "^1.0.1",
  8805. "sebastian/environment": "^4.2.2",
  8806. "sebastian/version": "^2.0.1",
  8807. "theseer/tokenizer": "^1.1.3"
  8808. },
  8809. "require-dev": {
  8810. "phpunit/phpunit": "^8.2.2"
  8811. },
  8812. "suggest": {
  8813. "ext-xdebug": "^2.7.2"
  8814. },
  8815. "type": "library",
  8816. "extra": {
  8817. "branch-alias": {
  8818. "dev-master": "7.0-dev"
  8819. }
  8820. },
  8821. "autoload": {
  8822. "classmap": [
  8823. "src/"
  8824. ]
  8825. },
  8826. "notification-url": "https://packagist.org/downloads/",
  8827. "license": [
  8828. "BSD-3-Clause"
  8829. ],
  8830. "authors": [
  8831. {
  8832. "name": "Sebastian Bergmann",
  8833. "email": "sebastian@phpunit.de",
  8834. "role": "lead"
  8835. }
  8836. ],
  8837. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  8838. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  8839. "keywords": [
  8840. "coverage",
  8841. "testing",
  8842. "xunit"
  8843. ],
  8844. "time": "2019-11-20T13:55:58+00:00"
  8845. },
  8846. {
  8847. "name": "phpunit/php-file-iterator",
  8848. "version": "2.0.2",
  8849. "source": {
  8850. "type": "git",
  8851. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  8852. "reference": "050bedf145a257b1ff02746c31894800e5122946"
  8853. },
  8854. "dist": {
  8855. "type": "zip",
  8856. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/050bedf145a257b1ff02746c31894800e5122946",
  8857. "reference": "050bedf145a257b1ff02746c31894800e5122946",
  8858. "shasum": ""
  8859. },
  8860. "require": {
  8861. "php": "^7.1"
  8862. },
  8863. "require-dev": {
  8864. "phpunit/phpunit": "^7.1"
  8865. },
  8866. "type": "library",
  8867. "extra": {
  8868. "branch-alias": {
  8869. "dev-master": "2.0.x-dev"
  8870. }
  8871. },
  8872. "autoload": {
  8873. "classmap": [
  8874. "src/"
  8875. ]
  8876. },
  8877. "notification-url": "https://packagist.org/downloads/",
  8878. "license": [
  8879. "BSD-3-Clause"
  8880. ],
  8881. "authors": [
  8882. {
  8883. "name": "Sebastian Bergmann",
  8884. "email": "sebastian@phpunit.de",
  8885. "role": "lead"
  8886. }
  8887. ],
  8888. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  8889. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  8890. "keywords": [
  8891. "filesystem",
  8892. "iterator"
  8893. ],
  8894. "time": "2018-09-13T20:33:42+00:00"
  8895. },
  8896. {
  8897. "name": "phpunit/php-text-template",
  8898. "version": "1.2.1",
  8899. "source": {
  8900. "type": "git",
  8901. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  8902. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686"
  8903. },
  8904. "dist": {
  8905. "type": "zip",
  8906. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  8907. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  8908. "shasum": ""
  8909. },
  8910. "require": {
  8911. "php": ">=5.3.3"
  8912. },
  8913. "type": "library",
  8914. "autoload": {
  8915. "classmap": [
  8916. "src/"
  8917. ]
  8918. },
  8919. "notification-url": "https://packagist.org/downloads/",
  8920. "license": [
  8921. "BSD-3-Clause"
  8922. ],
  8923. "authors": [
  8924. {
  8925. "name": "Sebastian Bergmann",
  8926. "email": "sebastian@phpunit.de",
  8927. "role": "lead"
  8928. }
  8929. ],
  8930. "description": "Simple template engine.",
  8931. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  8932. "keywords": [
  8933. "template"
  8934. ],
  8935. "time": "2015-06-21T13:50:34+00:00"
  8936. },
  8937. {
  8938. "name": "phpunit/php-timer",
  8939. "version": "2.1.2",
  8940. "source": {
  8941. "type": "git",
  8942. "url": "https://github.com/sebastianbergmann/php-timer.git",
  8943. "reference": "1038454804406b0b5f5f520358e78c1c2f71501e"
  8944. },
  8945. "dist": {
  8946. "type": "zip",
  8947. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/1038454804406b0b5f5f520358e78c1c2f71501e",
  8948. "reference": "1038454804406b0b5f5f520358e78c1c2f71501e",
  8949. "shasum": ""
  8950. },
  8951. "require": {
  8952. "php": "^7.1"
  8953. },
  8954. "require-dev": {
  8955. "phpunit/phpunit": "^7.0"
  8956. },
  8957. "type": "library",
  8958. "extra": {
  8959. "branch-alias": {
  8960. "dev-master": "2.1-dev"
  8961. }
  8962. },
  8963. "autoload": {
  8964. "classmap": [
  8965. "src/"
  8966. ]
  8967. },
  8968. "notification-url": "https://packagist.org/downloads/",
  8969. "license": [
  8970. "BSD-3-Clause"
  8971. ],
  8972. "authors": [
  8973. {
  8974. "name": "Sebastian Bergmann",
  8975. "email": "sebastian@phpunit.de",
  8976. "role": "lead"
  8977. }
  8978. ],
  8979. "description": "Utility class for timing",
  8980. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  8981. "keywords": [
  8982. "timer"
  8983. ],
  8984. "time": "2019-06-07T04:22:29+00:00"
  8985. },
  8986. {
  8987. "name": "phpunit/php-token-stream",
  8988. "version": "3.1.1",
  8989. "source": {
  8990. "type": "git",
  8991. "url": "https://github.com/sebastianbergmann/php-token-stream.git",
  8992. "reference": "995192df77f63a59e47f025390d2d1fdf8f425ff"
  8993. },
  8994. "dist": {
  8995. "type": "zip",
  8996. "url": "https://api.github.com/repos/sebastianbergmann/php-token-stream/zipball/995192df77f63a59e47f025390d2d1fdf8f425ff",
  8997. "reference": "995192df77f63a59e47f025390d2d1fdf8f425ff",
  8998. "shasum": ""
  8999. },
  9000. "require": {
  9001. "ext-tokenizer": "*",
  9002. "php": "^7.1"
  9003. },
  9004. "require-dev": {
  9005. "phpunit/phpunit": "^7.0"
  9006. },
  9007. "type": "library",
  9008. "extra": {
  9009. "branch-alias": {
  9010. "dev-master": "3.1-dev"
  9011. }
  9012. },
  9013. "autoload": {
  9014. "classmap": [
  9015. "src/"
  9016. ]
  9017. },
  9018. "notification-url": "https://packagist.org/downloads/",
  9019. "license": [
  9020. "BSD-3-Clause"
  9021. ],
  9022. "authors": [
  9023. {
  9024. "name": "Sebastian Bergmann",
  9025. "email": "sebastian@phpunit.de"
  9026. }
  9027. ],
  9028. "description": "Wrapper around PHP's tokenizer extension.",
  9029. "homepage": "https://github.com/sebastianbergmann/php-token-stream/",
  9030. "keywords": [
  9031. "tokenizer"
  9032. ],
  9033. "abandoned": true,
  9034. "time": "2019-09-17T06:23:10+00:00"
  9035. },
  9036. {
  9037. "name": "phpunit/phpunit",
  9038. "version": "8.5.8",
  9039. "source": {
  9040. "type": "git",
  9041. "url": "https://github.com/sebastianbergmann/phpunit.git",
  9042. "reference": "34c18baa6a44f1d1fbf0338907139e9dce95b997"
  9043. },
  9044. "dist": {
  9045. "type": "zip",
  9046. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/34c18baa6a44f1d1fbf0338907139e9dce95b997",
  9047. "reference": "34c18baa6a44f1d1fbf0338907139e9dce95b997",
  9048. "shasum": ""
  9049. },
  9050. "require": {
  9051. "doctrine/instantiator": "^1.2.0",
  9052. "ext-dom": "*",
  9053. "ext-json": "*",
  9054. "ext-libxml": "*",
  9055. "ext-mbstring": "*",
  9056. "ext-xml": "*",
  9057. "ext-xmlwriter": "*",
  9058. "myclabs/deep-copy": "^1.9.1",
  9059. "phar-io/manifest": "^1.0.3",
  9060. "phar-io/version": "^2.0.1",
  9061. "php": "^7.2",
  9062. "phpspec/prophecy": "^1.8.1",
  9063. "phpunit/php-code-coverage": "^7.0.7",
  9064. "phpunit/php-file-iterator": "^2.0.2",
  9065. "phpunit/php-text-template": "^1.2.1",
  9066. "phpunit/php-timer": "^2.1.2",
  9067. "sebastian/comparator": "^3.0.2",
  9068. "sebastian/diff": "^3.0.2",
  9069. "sebastian/environment": "^4.2.2",
  9070. "sebastian/exporter": "^3.1.1",
  9071. "sebastian/global-state": "^3.0.0",
  9072. "sebastian/object-enumerator": "^3.0.3",
  9073. "sebastian/resource-operations": "^2.0.1",
  9074. "sebastian/type": "^1.1.3",
  9075. "sebastian/version": "^2.0.1"
  9076. },
  9077. "require-dev": {
  9078. "ext-pdo": "*"
  9079. },
  9080. "suggest": {
  9081. "ext-soap": "*",
  9082. "ext-xdebug": "*",
  9083. "phpunit/php-invoker": "^2.0.0"
  9084. },
  9085. "bin": [
  9086. "phpunit"
  9087. ],
  9088. "type": "library",
  9089. "extra": {
  9090. "branch-alias": {
  9091. "dev-master": "8.5-dev"
  9092. }
  9093. },
  9094. "autoload": {
  9095. "classmap": [
  9096. "src/"
  9097. ]
  9098. },
  9099. "notification-url": "https://packagist.org/downloads/",
  9100. "license": [
  9101. "BSD-3-Clause"
  9102. ],
  9103. "authors": [
  9104. {
  9105. "name": "Sebastian Bergmann",
  9106. "email": "sebastian@phpunit.de",
  9107. "role": "lead"
  9108. }
  9109. ],
  9110. "description": "The PHP Unit Testing framework.",
  9111. "homepage": "https://phpunit.de/",
  9112. "keywords": [
  9113. "phpunit",
  9114. "testing",
  9115. "xunit"
  9116. ],
  9117. "funding": [
  9118. {
  9119. "url": "https://phpunit.de/donate.html",
  9120. "type": "custom"
  9121. },
  9122. {
  9123. "url": "https://github.com/sebastianbergmann",
  9124. "type": "github"
  9125. }
  9126. ],
  9127. "time": "2020-06-22T07:06:58+00:00"
  9128. },
  9129. {
  9130. "name": "scrivo/highlight.php",
  9131. "version": "v9.18.1.2",
  9132. "source": {
  9133. "type": "git",
  9134. "url": "https://github.com/scrivo/highlight.php.git",
  9135. "reference": "efb6e445494a9458aa59b0af5edfa4bdcc6809d9"
  9136. },
  9137. "dist": {
  9138. "type": "zip",
  9139. "url": "https://api.github.com/repos/scrivo/highlight.php/zipball/efb6e445494a9458aa59b0af5edfa4bdcc6809d9",
  9140. "reference": "efb6e445494a9458aa59b0af5edfa4bdcc6809d9",
  9141. "shasum": ""
  9142. },
  9143. "require": {
  9144. "ext-json": "*",
  9145. "ext-mbstring": "*",
  9146. "php": ">=5.4"
  9147. },
  9148. "require-dev": {
  9149. "phpunit/phpunit": "^4.8|^5.7",
  9150. "sabberworm/php-css-parser": "^8.3",
  9151. "symfony/finder": "^2.8|^3.4",
  9152. "symfony/var-dumper": "^2.8|^3.4"
  9153. },
  9154. "suggest": {
  9155. "ext-dom": "Needed to make use of the features in the utilities namespace"
  9156. },
  9157. "type": "library",
  9158. "autoload": {
  9159. "psr-0": {
  9160. "Highlight\\": "",
  9161. "HighlightUtilities\\": ""
  9162. },
  9163. "files": [
  9164. "HighlightUtilities/functions.php"
  9165. ]
  9166. },
  9167. "notification-url": "https://packagist.org/downloads/",
  9168. "license": [
  9169. "BSD-3-Clause"
  9170. ],
  9171. "authors": [
  9172. {
  9173. "name": "Geert Bergman",
  9174. "homepage": "http://www.scrivo.org/",
  9175. "role": "Project Author"
  9176. },
  9177. {
  9178. "name": "Vladimir Jimenez",
  9179. "homepage": "https://allejo.io",
  9180. "role": "Maintainer"
  9181. },
  9182. {
  9183. "name": "Martin Folkers",
  9184. "homepage": "https://twobrain.io",
  9185. "role": "Contributor"
  9186. }
  9187. ],
  9188. "description": "Server side syntax highlighter that supports 185 languages. It's a PHP port of highlight.js",
  9189. "keywords": [
  9190. "code",
  9191. "highlight",
  9192. "highlight.js",
  9193. "highlight.php",
  9194. "syntax"
  9195. ],
  9196. "funding": [
  9197. {
  9198. "url": "https://github.com/allejo",
  9199. "type": "github"
  9200. }
  9201. ],
  9202. "time": "2020-08-27T03:24:44+00:00"
  9203. },
  9204. {
  9205. "name": "sebastian/code-unit-reverse-lookup",
  9206. "version": "1.0.1",
  9207. "source": {
  9208. "type": "git",
  9209. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  9210. "reference": "4419fcdb5eabb9caa61a27c7a1db532a6b55dd18"
  9211. },
  9212. "dist": {
  9213. "type": "zip",
  9214. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/4419fcdb5eabb9caa61a27c7a1db532a6b55dd18",
  9215. "reference": "4419fcdb5eabb9caa61a27c7a1db532a6b55dd18",
  9216. "shasum": ""
  9217. },
  9218. "require": {
  9219. "php": "^5.6 || ^7.0"
  9220. },
  9221. "require-dev": {
  9222. "phpunit/phpunit": "^5.7 || ^6.0"
  9223. },
  9224. "type": "library",
  9225. "extra": {
  9226. "branch-alias": {
  9227. "dev-master": "1.0.x-dev"
  9228. }
  9229. },
  9230. "autoload": {
  9231. "classmap": [
  9232. "src/"
  9233. ]
  9234. },
  9235. "notification-url": "https://packagist.org/downloads/",
  9236. "license": [
  9237. "BSD-3-Clause"
  9238. ],
  9239. "authors": [
  9240. {
  9241. "name": "Sebastian Bergmann",
  9242. "email": "sebastian@phpunit.de"
  9243. }
  9244. ],
  9245. "description": "Looks up which function or method a line of code belongs to",
  9246. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  9247. "time": "2017-03-04T06:30:41+00:00"
  9248. },
  9249. {
  9250. "name": "sebastian/comparator",
  9251. "version": "3.0.2",
  9252. "source": {
  9253. "type": "git",
  9254. "url": "https://github.com/sebastianbergmann/comparator.git",
  9255. "reference": "5de4fc177adf9bce8df98d8d141a7559d7ccf6da"
  9256. },
  9257. "dist": {
  9258. "type": "zip",
  9259. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/5de4fc177adf9bce8df98d8d141a7559d7ccf6da",
  9260. "reference": "5de4fc177adf9bce8df98d8d141a7559d7ccf6da",
  9261. "shasum": ""
  9262. },
  9263. "require": {
  9264. "php": "^7.1",
  9265. "sebastian/diff": "^3.0",
  9266. "sebastian/exporter": "^3.1"
  9267. },
  9268. "require-dev": {
  9269. "phpunit/phpunit": "^7.1"
  9270. },
  9271. "type": "library",
  9272. "extra": {
  9273. "branch-alias": {
  9274. "dev-master": "3.0-dev"
  9275. }
  9276. },
  9277. "autoload": {
  9278. "classmap": [
  9279. "src/"
  9280. ]
  9281. },
  9282. "notification-url": "https://packagist.org/downloads/",
  9283. "license": [
  9284. "BSD-3-Clause"
  9285. ],
  9286. "authors": [
  9287. {
  9288. "name": "Jeff Welch",
  9289. "email": "whatthejeff@gmail.com"
  9290. },
  9291. {
  9292. "name": "Volker Dusch",
  9293. "email": "github@wallbash.com"
  9294. },
  9295. {
  9296. "name": "Bernhard Schussek",
  9297. "email": "bschussek@2bepublished.at"
  9298. },
  9299. {
  9300. "name": "Sebastian Bergmann",
  9301. "email": "sebastian@phpunit.de"
  9302. }
  9303. ],
  9304. "description": "Provides the functionality to compare PHP values for equality",
  9305. "homepage": "https://github.com/sebastianbergmann/comparator",
  9306. "keywords": [
  9307. "comparator",
  9308. "compare",
  9309. "equality"
  9310. ],
  9311. "time": "2018-07-12T15:12:46+00:00"
  9312. },
  9313. {
  9314. "name": "sebastian/diff",
  9315. "version": "3.0.2",
  9316. "source": {
  9317. "type": "git",
  9318. "url": "https://github.com/sebastianbergmann/diff.git",
  9319. "reference": "720fcc7e9b5cf384ea68d9d930d480907a0c1a29"
  9320. },
  9321. "dist": {
  9322. "type": "zip",
  9323. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/720fcc7e9b5cf384ea68d9d930d480907a0c1a29",
  9324. "reference": "720fcc7e9b5cf384ea68d9d930d480907a0c1a29",
  9325. "shasum": ""
  9326. },
  9327. "require": {
  9328. "php": "^7.1"
  9329. },
  9330. "require-dev": {
  9331. "phpunit/phpunit": "^7.5 || ^8.0",
  9332. "symfony/process": "^2 || ^3.3 || ^4"
  9333. },
  9334. "type": "library",
  9335. "extra": {
  9336. "branch-alias": {
  9337. "dev-master": "3.0-dev"
  9338. }
  9339. },
  9340. "autoload": {
  9341. "classmap": [
  9342. "src/"
  9343. ]
  9344. },
  9345. "notification-url": "https://packagist.org/downloads/",
  9346. "license": [
  9347. "BSD-3-Clause"
  9348. ],
  9349. "authors": [
  9350. {
  9351. "name": "Kore Nordmann",
  9352. "email": "mail@kore-nordmann.de"
  9353. },
  9354. {
  9355. "name": "Sebastian Bergmann",
  9356. "email": "sebastian@phpunit.de"
  9357. }
  9358. ],
  9359. "description": "Diff implementation",
  9360. "homepage": "https://github.com/sebastianbergmann/diff",
  9361. "keywords": [
  9362. "diff",
  9363. "udiff",
  9364. "unidiff",
  9365. "unified diff"
  9366. ],
  9367. "time": "2019-02-04T06:01:07+00:00"
  9368. },
  9369. {
  9370. "name": "sebastian/environment",
  9371. "version": "4.2.3",
  9372. "source": {
  9373. "type": "git",
  9374. "url": "https://github.com/sebastianbergmann/environment.git",
  9375. "reference": "464c90d7bdf5ad4e8a6aea15c091fec0603d4368"
  9376. },
  9377. "dist": {
  9378. "type": "zip",
  9379. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/464c90d7bdf5ad4e8a6aea15c091fec0603d4368",
  9380. "reference": "464c90d7bdf5ad4e8a6aea15c091fec0603d4368",
  9381. "shasum": ""
  9382. },
  9383. "require": {
  9384. "php": "^7.1"
  9385. },
  9386. "require-dev": {
  9387. "phpunit/phpunit": "^7.5"
  9388. },
  9389. "suggest": {
  9390. "ext-posix": "*"
  9391. },
  9392. "type": "library",
  9393. "extra": {
  9394. "branch-alias": {
  9395. "dev-master": "4.2-dev"
  9396. }
  9397. },
  9398. "autoload": {
  9399. "classmap": [
  9400. "src/"
  9401. ]
  9402. },
  9403. "notification-url": "https://packagist.org/downloads/",
  9404. "license": [
  9405. "BSD-3-Clause"
  9406. ],
  9407. "authors": [
  9408. {
  9409. "name": "Sebastian Bergmann",
  9410. "email": "sebastian@phpunit.de"
  9411. }
  9412. ],
  9413. "description": "Provides functionality to handle HHVM/PHP environments",
  9414. "homepage": "http://www.github.com/sebastianbergmann/environment",
  9415. "keywords": [
  9416. "Xdebug",
  9417. "environment",
  9418. "hhvm"
  9419. ],
  9420. "time": "2019-11-20T08:46:58+00:00"
  9421. },
  9422. {
  9423. "name": "sebastian/exporter",
  9424. "version": "3.1.2",
  9425. "source": {
  9426. "type": "git",
  9427. "url": "https://github.com/sebastianbergmann/exporter.git",
  9428. "reference": "68609e1261d215ea5b21b7987539cbfbe156ec3e"
  9429. },
  9430. "dist": {
  9431. "type": "zip",
  9432. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/68609e1261d215ea5b21b7987539cbfbe156ec3e",
  9433. "reference": "68609e1261d215ea5b21b7987539cbfbe156ec3e",
  9434. "shasum": ""
  9435. },
  9436. "require": {
  9437. "php": "^7.0",
  9438. "sebastian/recursion-context": "^3.0"
  9439. },
  9440. "require-dev": {
  9441. "ext-mbstring": "*",
  9442. "phpunit/phpunit": "^6.0"
  9443. },
  9444. "type": "library",
  9445. "extra": {
  9446. "branch-alias": {
  9447. "dev-master": "3.1.x-dev"
  9448. }
  9449. },
  9450. "autoload": {
  9451. "classmap": [
  9452. "src/"
  9453. ]
  9454. },
  9455. "notification-url": "https://packagist.org/downloads/",
  9456. "license": [
  9457. "BSD-3-Clause"
  9458. ],
  9459. "authors": [
  9460. {
  9461. "name": "Sebastian Bergmann",
  9462. "email": "sebastian@phpunit.de"
  9463. },
  9464. {
  9465. "name": "Jeff Welch",
  9466. "email": "whatthejeff@gmail.com"
  9467. },
  9468. {
  9469. "name": "Volker Dusch",
  9470. "email": "github@wallbash.com"
  9471. },
  9472. {
  9473. "name": "Adam Harvey",
  9474. "email": "aharvey@php.net"
  9475. },
  9476. {
  9477. "name": "Bernhard Schussek",
  9478. "email": "bschussek@gmail.com"
  9479. }
  9480. ],
  9481. "description": "Provides the functionality to export PHP variables for visualization",
  9482. "homepage": "http://www.github.com/sebastianbergmann/exporter",
  9483. "keywords": [
  9484. "export",
  9485. "exporter"
  9486. ],
  9487. "time": "2019-09-14T09:02:43+00:00"
  9488. },
  9489. {
  9490. "name": "sebastian/global-state",
  9491. "version": "3.0.0",
  9492. "source": {
  9493. "type": "git",
  9494. "url": "https://github.com/sebastianbergmann/global-state.git",
  9495. "reference": "edf8a461cf1d4005f19fb0b6b8b95a9f7fa0adc4"
  9496. },
  9497. "dist": {
  9498. "type": "zip",
  9499. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/edf8a461cf1d4005f19fb0b6b8b95a9f7fa0adc4",
  9500. "reference": "edf8a461cf1d4005f19fb0b6b8b95a9f7fa0adc4",
  9501. "shasum": ""
  9502. },
  9503. "require": {
  9504. "php": "^7.2",
  9505. "sebastian/object-reflector": "^1.1.1",
  9506. "sebastian/recursion-context": "^3.0"
  9507. },
  9508. "require-dev": {
  9509. "ext-dom": "*",
  9510. "phpunit/phpunit": "^8.0"
  9511. },
  9512. "suggest": {
  9513. "ext-uopz": "*"
  9514. },
  9515. "type": "library",
  9516. "extra": {
  9517. "branch-alias": {
  9518. "dev-master": "3.0-dev"
  9519. }
  9520. },
  9521. "autoload": {
  9522. "classmap": [
  9523. "src/"
  9524. ]
  9525. },
  9526. "notification-url": "https://packagist.org/downloads/",
  9527. "license": [
  9528. "BSD-3-Clause"
  9529. ],
  9530. "authors": [
  9531. {
  9532. "name": "Sebastian Bergmann",
  9533. "email": "sebastian@phpunit.de"
  9534. }
  9535. ],
  9536. "description": "Snapshotting of global state",
  9537. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  9538. "keywords": [
  9539. "global state"
  9540. ],
  9541. "time": "2019-02-01T05:30:01+00:00"
  9542. },
  9543. {
  9544. "name": "sebastian/object-enumerator",
  9545. "version": "3.0.3",
  9546. "source": {
  9547. "type": "git",
  9548. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  9549. "reference": "7cfd9e65d11ffb5af41198476395774d4c8a84c5"
  9550. },
  9551. "dist": {
  9552. "type": "zip",
  9553. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/7cfd9e65d11ffb5af41198476395774d4c8a84c5",
  9554. "reference": "7cfd9e65d11ffb5af41198476395774d4c8a84c5",
  9555. "shasum": ""
  9556. },
  9557. "require": {
  9558. "php": "^7.0",
  9559. "sebastian/object-reflector": "^1.1.1",
  9560. "sebastian/recursion-context": "^3.0"
  9561. },
  9562. "require-dev": {
  9563. "phpunit/phpunit": "^6.0"
  9564. },
  9565. "type": "library",
  9566. "extra": {
  9567. "branch-alias": {
  9568. "dev-master": "3.0.x-dev"
  9569. }
  9570. },
  9571. "autoload": {
  9572. "classmap": [
  9573. "src/"
  9574. ]
  9575. },
  9576. "notification-url": "https://packagist.org/downloads/",
  9577. "license": [
  9578. "BSD-3-Clause"
  9579. ],
  9580. "authors": [
  9581. {
  9582. "name": "Sebastian Bergmann",
  9583. "email": "sebastian@phpunit.de"
  9584. }
  9585. ],
  9586. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  9587. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  9588. "time": "2017-08-03T12:35:26+00:00"
  9589. },
  9590. {
  9591. "name": "sebastian/object-reflector",
  9592. "version": "1.1.1",
  9593. "source": {
  9594. "type": "git",
  9595. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  9596. "reference": "773f97c67f28de00d397be301821b06708fca0be"
  9597. },
  9598. "dist": {
  9599. "type": "zip",
  9600. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/773f97c67f28de00d397be301821b06708fca0be",
  9601. "reference": "773f97c67f28de00d397be301821b06708fca0be",
  9602. "shasum": ""
  9603. },
  9604. "require": {
  9605. "php": "^7.0"
  9606. },
  9607. "require-dev": {
  9608. "phpunit/phpunit": "^6.0"
  9609. },
  9610. "type": "library",
  9611. "extra": {
  9612. "branch-alias": {
  9613. "dev-master": "1.1-dev"
  9614. }
  9615. },
  9616. "autoload": {
  9617. "classmap": [
  9618. "src/"
  9619. ]
  9620. },
  9621. "notification-url": "https://packagist.org/downloads/",
  9622. "license": [
  9623. "BSD-3-Clause"
  9624. ],
  9625. "authors": [
  9626. {
  9627. "name": "Sebastian Bergmann",
  9628. "email": "sebastian@phpunit.de"
  9629. }
  9630. ],
  9631. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  9632. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  9633. "time": "2017-03-29T09:07:27+00:00"
  9634. },
  9635. {
  9636. "name": "sebastian/recursion-context",
  9637. "version": "3.0.0",
  9638. "source": {
  9639. "type": "git",
  9640. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  9641. "reference": "5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8"
  9642. },
  9643. "dist": {
  9644. "type": "zip",
  9645. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8",
  9646. "reference": "5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8",
  9647. "shasum": ""
  9648. },
  9649. "require": {
  9650. "php": "^7.0"
  9651. },
  9652. "require-dev": {
  9653. "phpunit/phpunit": "^6.0"
  9654. },
  9655. "type": "library",
  9656. "extra": {
  9657. "branch-alias": {
  9658. "dev-master": "3.0.x-dev"
  9659. }
  9660. },
  9661. "autoload": {
  9662. "classmap": [
  9663. "src/"
  9664. ]
  9665. },
  9666. "notification-url": "https://packagist.org/downloads/",
  9667. "license": [
  9668. "BSD-3-Clause"
  9669. ],
  9670. "authors": [
  9671. {
  9672. "name": "Jeff Welch",
  9673. "email": "whatthejeff@gmail.com"
  9674. },
  9675. {
  9676. "name": "Sebastian Bergmann",
  9677. "email": "sebastian@phpunit.de"
  9678. },
  9679. {
  9680. "name": "Adam Harvey",
  9681. "email": "aharvey@php.net"
  9682. }
  9683. ],
  9684. "description": "Provides functionality to recursively process PHP variables",
  9685. "homepage": "http://www.github.com/sebastianbergmann/recursion-context",
  9686. "time": "2017-03-03T06:23:57+00:00"
  9687. },
  9688. {
  9689. "name": "sebastian/resource-operations",
  9690. "version": "2.0.1",
  9691. "source": {
  9692. "type": "git",
  9693. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  9694. "reference": "4d7a795d35b889bf80a0cc04e08d77cedfa917a9"
  9695. },
  9696. "dist": {
  9697. "type": "zip",
  9698. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/4d7a795d35b889bf80a0cc04e08d77cedfa917a9",
  9699. "reference": "4d7a795d35b889bf80a0cc04e08d77cedfa917a9",
  9700. "shasum": ""
  9701. },
  9702. "require": {
  9703. "php": "^7.1"
  9704. },
  9705. "type": "library",
  9706. "extra": {
  9707. "branch-alias": {
  9708. "dev-master": "2.0-dev"
  9709. }
  9710. },
  9711. "autoload": {
  9712. "classmap": [
  9713. "src/"
  9714. ]
  9715. },
  9716. "notification-url": "https://packagist.org/downloads/",
  9717. "license": [
  9718. "BSD-3-Clause"
  9719. ],
  9720. "authors": [
  9721. {
  9722. "name": "Sebastian Bergmann",
  9723. "email": "sebastian@phpunit.de"
  9724. }
  9725. ],
  9726. "description": "Provides a list of PHP built-in functions that operate on resources",
  9727. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  9728. "time": "2018-10-04T04:07:39+00:00"
  9729. },
  9730. {
  9731. "name": "sebastian/type",
  9732. "version": "1.1.3",
  9733. "source": {
  9734. "type": "git",
  9735. "url": "https://github.com/sebastianbergmann/type.git",
  9736. "reference": "3aaaa15fa71d27650d62a948be022fe3b48541a3"
  9737. },
  9738. "dist": {
  9739. "type": "zip",
  9740. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/3aaaa15fa71d27650d62a948be022fe3b48541a3",
  9741. "reference": "3aaaa15fa71d27650d62a948be022fe3b48541a3",
  9742. "shasum": ""
  9743. },
  9744. "require": {
  9745. "php": "^7.2"
  9746. },
  9747. "require-dev": {
  9748. "phpunit/phpunit": "^8.2"
  9749. },
  9750. "type": "library",
  9751. "extra": {
  9752. "branch-alias": {
  9753. "dev-master": "1.1-dev"
  9754. }
  9755. },
  9756. "autoload": {
  9757. "classmap": [
  9758. "src/"
  9759. ]
  9760. },
  9761. "notification-url": "https://packagist.org/downloads/",
  9762. "license": [
  9763. "BSD-3-Clause"
  9764. ],
  9765. "authors": [
  9766. {
  9767. "name": "Sebastian Bergmann",
  9768. "email": "sebastian@phpunit.de",
  9769. "role": "lead"
  9770. }
  9771. ],
  9772. "description": "Collection of value objects that represent the types of the PHP type system",
  9773. "homepage": "https://github.com/sebastianbergmann/type",
  9774. "time": "2019-07-02T08:10:15+00:00"
  9775. },
  9776. {
  9777. "name": "sebastian/version",
  9778. "version": "2.0.1",
  9779. "source": {
  9780. "type": "git",
  9781. "url": "https://github.com/sebastianbergmann/version.git",
  9782. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019"
  9783. },
  9784. "dist": {
  9785. "type": "zip",
  9786. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/99732be0ddb3361e16ad77b68ba41efc8e979019",
  9787. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019",
  9788. "shasum": ""
  9789. },
  9790. "require": {
  9791. "php": ">=5.6"
  9792. },
  9793. "type": "library",
  9794. "extra": {
  9795. "branch-alias": {
  9796. "dev-master": "2.0.x-dev"
  9797. }
  9798. },
  9799. "autoload": {
  9800. "classmap": [
  9801. "src/"
  9802. ]
  9803. },
  9804. "notification-url": "https://packagist.org/downloads/",
  9805. "license": [
  9806. "BSD-3-Clause"
  9807. ],
  9808. "authors": [
  9809. {
  9810. "name": "Sebastian Bergmann",
  9811. "email": "sebastian@phpunit.de",
  9812. "role": "lead"
  9813. }
  9814. ],
  9815. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  9816. "homepage": "https://github.com/sebastianbergmann/version",
  9817. "time": "2016-10-03T07:35:21+00:00"
  9818. },
  9819. {
  9820. "name": "seld/jsonlint",
  9821. "version": "1.8.2",
  9822. "source": {
  9823. "type": "git",
  9824. "url": "https://github.com/Seldaek/jsonlint.git",
  9825. "reference": "590cfec960b77fd55e39b7d9246659e95dd6d337"
  9826. },
  9827. "dist": {
  9828. "type": "zip",
  9829. "url": "https://api.github.com/repos/Seldaek/jsonlint/zipball/590cfec960b77fd55e39b7d9246659e95dd6d337",
  9830. "reference": "590cfec960b77fd55e39b7d9246659e95dd6d337",
  9831. "shasum": ""
  9832. },
  9833. "require": {
  9834. "php": "^5.3 || ^7.0 || ^8.0"
  9835. },
  9836. "require-dev": {
  9837. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0"
  9838. },
  9839. "bin": [
  9840. "bin/jsonlint"
  9841. ],
  9842. "type": "library",
  9843. "autoload": {
  9844. "psr-4": {
  9845. "Seld\\JsonLint\\": "src/Seld/JsonLint/"
  9846. }
  9847. },
  9848. "notification-url": "https://packagist.org/downloads/",
  9849. "license": [
  9850. "MIT"
  9851. ],
  9852. "authors": [
  9853. {
  9854. "name": "Jordi Boggiano",
  9855. "email": "j.boggiano@seld.be",
  9856. "homepage": "http://seld.be"
  9857. }
  9858. ],
  9859. "description": "JSON Linter",
  9860. "keywords": [
  9861. "json",
  9862. "linter",
  9863. "parser",
  9864. "validator"
  9865. ],
  9866. "funding": [
  9867. {
  9868. "url": "https://github.com/Seldaek",
  9869. "type": "github"
  9870. },
  9871. {
  9872. "url": "https://tidelift.com/funding/github/packagist/seld/jsonlint",
  9873. "type": "tidelift"
  9874. }
  9875. ],
  9876. "time": "2020-08-25T06:56:57+00:00"
  9877. },
  9878. {
  9879. "name": "seld/phar-utils",
  9880. "version": "1.1.1",
  9881. "source": {
  9882. "type": "git",
  9883. "url": "https://github.com/Seldaek/phar-utils.git",
  9884. "reference": "8674b1d84ffb47cc59a101f5d5a3b61e87d23796"
  9885. },
  9886. "dist": {
  9887. "type": "zip",
  9888. "url": "https://api.github.com/repos/Seldaek/phar-utils/zipball/8674b1d84ffb47cc59a101f5d5a3b61e87d23796",
  9889. "reference": "8674b1d84ffb47cc59a101f5d5a3b61e87d23796",
  9890. "shasum": ""
  9891. },
  9892. "require": {
  9893. "php": ">=5.3"
  9894. },
  9895. "type": "library",
  9896. "extra": {
  9897. "branch-alias": {
  9898. "dev-master": "1.x-dev"
  9899. }
  9900. },
  9901. "autoload": {
  9902. "psr-4": {
  9903. "Seld\\PharUtils\\": "src/"
  9904. }
  9905. },
  9906. "notification-url": "https://packagist.org/downloads/",
  9907. "license": [
  9908. "MIT"
  9909. ],
  9910. "authors": [
  9911. {
  9912. "name": "Jordi Boggiano",
  9913. "email": "j.boggiano@seld.be"
  9914. }
  9915. ],
  9916. "description": "PHAR file format utilities, for when PHP phars you up",
  9917. "keywords": [
  9918. "phar"
  9919. ],
  9920. "time": "2020-07-07T18:42:57+00:00"
  9921. },
  9922. {
  9923. "name": "symfony/debug",
  9924. "version": "v4.4.13",
  9925. "source": {
  9926. "type": "git",
  9927. "url": "https://github.com/symfony/debug.git",
  9928. "reference": "aeb73aca16a8f1fe958230fe44e6cf4c84cbb85e"
  9929. },
  9930. "dist": {
  9931. "type": "zip",
  9932. "url": "https://api.github.com/repos/symfony/debug/zipball/aeb73aca16a8f1fe958230fe44e6cf4c84cbb85e",
  9933. "reference": "aeb73aca16a8f1fe958230fe44e6cf4c84cbb85e",
  9934. "shasum": ""
  9935. },
  9936. "require": {
  9937. "php": ">=7.1.3",
  9938. "psr/log": "~1.0",
  9939. "symfony/polyfill-php80": "^1.15"
  9940. },
  9941. "conflict": {
  9942. "symfony/http-kernel": "<3.4"
  9943. },
  9944. "require-dev": {
  9945. "symfony/http-kernel": "^3.4|^4.0|^5.0"
  9946. },
  9947. "type": "library",
  9948. "extra": {
  9949. "branch-alias": {
  9950. "dev-master": "4.4-dev"
  9951. }
  9952. },
  9953. "autoload": {
  9954. "psr-4": {
  9955. "Symfony\\Component\\Debug\\": ""
  9956. },
  9957. "exclude-from-classmap": [
  9958. "/Tests/"
  9959. ]
  9960. },
  9961. "notification-url": "https://packagist.org/downloads/",
  9962. "license": [
  9963. "MIT"
  9964. ],
  9965. "authors": [
  9966. {
  9967. "name": "Fabien Potencier",
  9968. "email": "fabien@symfony.com"
  9969. },
  9970. {
  9971. "name": "Symfony Community",
  9972. "homepage": "https://symfony.com/contributors"
  9973. }
  9974. ],
  9975. "description": "Symfony Debug Component",
  9976. "homepage": "https://symfony.com",
  9977. "funding": [
  9978. {
  9979. "url": "https://symfony.com/sponsor",
  9980. "type": "custom"
  9981. },
  9982. {
  9983. "url": "https://github.com/fabpot",
  9984. "type": "github"
  9985. },
  9986. {
  9987. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9988. "type": "tidelift"
  9989. }
  9990. ],
  9991. "time": "2020-08-10T07:47:39+00:00"
  9992. },
  9993. {
  9994. "name": "symfony/filesystem",
  9995. "version": "v5.1.5",
  9996. "source": {
  9997. "type": "git",
  9998. "url": "https://github.com/symfony/filesystem.git",
  9999. "reference": "f7b9ed6142a34252d219801d9767dedbd711da1a"
  10000. },
  10001. "dist": {
  10002. "type": "zip",
  10003. "url": "https://api.github.com/repos/symfony/filesystem/zipball/f7b9ed6142a34252d219801d9767dedbd711da1a",
  10004. "reference": "f7b9ed6142a34252d219801d9767dedbd711da1a",
  10005. "shasum": ""
  10006. },
  10007. "require": {
  10008. "php": ">=7.2.5",
  10009. "symfony/polyfill-ctype": "~1.8"
  10010. },
  10011. "type": "library",
  10012. "extra": {
  10013. "branch-alias": {
  10014. "dev-master": "5.1-dev"
  10015. }
  10016. },
  10017. "autoload": {
  10018. "psr-4": {
  10019. "Symfony\\Component\\Filesystem\\": ""
  10020. },
  10021. "exclude-from-classmap": [
  10022. "/Tests/"
  10023. ]
  10024. },
  10025. "notification-url": "https://packagist.org/downloads/",
  10026. "license": [
  10027. "MIT"
  10028. ],
  10029. "authors": [
  10030. {
  10031. "name": "Fabien Potencier",
  10032. "email": "fabien@symfony.com"
  10033. },
  10034. {
  10035. "name": "Symfony Community",
  10036. "homepage": "https://symfony.com/contributors"
  10037. }
  10038. ],
  10039. "description": "Symfony Filesystem Component",
  10040. "homepage": "https://symfony.com",
  10041. "funding": [
  10042. {
  10043. "url": "https://symfony.com/sponsor",
  10044. "type": "custom"
  10045. },
  10046. {
  10047. "url": "https://github.com/fabpot",
  10048. "type": "github"
  10049. },
  10050. {
  10051. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10052. "type": "tidelift"
  10053. }
  10054. ],
  10055. "time": "2020-08-21T17:19:47+00:00"
  10056. },
  10057. {
  10058. "name": "theseer/tokenizer",
  10059. "version": "1.2.0",
  10060. "source": {
  10061. "type": "git",
  10062. "url": "https://github.com/theseer/tokenizer.git",
  10063. "reference": "75a63c33a8577608444246075ea0af0d052e452a"
  10064. },
  10065. "dist": {
  10066. "type": "zip",
  10067. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/75a63c33a8577608444246075ea0af0d052e452a",
  10068. "reference": "75a63c33a8577608444246075ea0af0d052e452a",
  10069. "shasum": ""
  10070. },
  10071. "require": {
  10072. "ext-dom": "*",
  10073. "ext-tokenizer": "*",
  10074. "ext-xmlwriter": "*",
  10075. "php": "^7.2 || ^8.0"
  10076. },
  10077. "type": "library",
  10078. "autoload": {
  10079. "classmap": [
  10080. "src/"
  10081. ]
  10082. },
  10083. "notification-url": "https://packagist.org/downloads/",
  10084. "license": [
  10085. "BSD-3-Clause"
  10086. ],
  10087. "authors": [
  10088. {
  10089. "name": "Arne Blankerts",
  10090. "email": "arne@blankerts.de",
  10091. "role": "Developer"
  10092. }
  10093. ],
  10094. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  10095. "funding": [
  10096. {
  10097. "url": "https://github.com/theseer",
  10098. "type": "github"
  10099. }
  10100. ],
  10101. "time": "2020-07-12T23:59:07+00:00"
  10102. },
  10103. {
  10104. "name": "webmozart/assert",
  10105. "version": "1.9.1",
  10106. "source": {
  10107. "type": "git",
  10108. "url": "https://github.com/webmozart/assert.git",
  10109. "reference": "bafc69caeb4d49c39fd0779086c03a3738cbb389"
  10110. },
  10111. "dist": {
  10112. "type": "zip",
  10113. "url": "https://api.github.com/repos/webmozart/assert/zipball/bafc69caeb4d49c39fd0779086c03a3738cbb389",
  10114. "reference": "bafc69caeb4d49c39fd0779086c03a3738cbb389",
  10115. "shasum": ""
  10116. },
  10117. "require": {
  10118. "php": "^5.3.3 || ^7.0 || ^8.0",
  10119. "symfony/polyfill-ctype": "^1.8"
  10120. },
  10121. "conflict": {
  10122. "phpstan/phpstan": "<0.12.20",
  10123. "vimeo/psalm": "<3.9.1"
  10124. },
  10125. "require-dev": {
  10126. "phpunit/phpunit": "^4.8.36 || ^7.5.13"
  10127. },
  10128. "type": "library",
  10129. "autoload": {
  10130. "psr-4": {
  10131. "Webmozart\\Assert\\": "src/"
  10132. }
  10133. },
  10134. "notification-url": "https://packagist.org/downloads/",
  10135. "license": [
  10136. "MIT"
  10137. ],
  10138. "authors": [
  10139. {
  10140. "name": "Bernhard Schussek",
  10141. "email": "bschussek@gmail.com"
  10142. }
  10143. ],
  10144. "description": "Assertions to validate method input/output with nice error messages.",
  10145. "keywords": [
  10146. "assert",
  10147. "check",
  10148. "validate"
  10149. ],
  10150. "time": "2020-07-08T17:02:28+00:00"
  10151. }
  10152. ],
  10153. "aliases": [],
  10154. "minimum-stability": "dev",
  10155. "stability-flags": [],
  10156. "prefer-stable": true,
  10157. "prefer-lowest": false,
  10158. "platform": {
  10159. "php": "^7.2.5",
  10160. "ext-json": "*",
  10161. "ext-openssl": "*"
  10162. },
  10163. "platform-dev": [],
  10164. "plugin-api-version": "1.1.0"
  10165. }