composer.lock 295 KB

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