composer.lock 289 KB

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