composer.lock 292 KB

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