composer.lock 325 KB

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