composer.lock 320 KB

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