composer.lock 360 KB

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