composer.lock 287 KB

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