composer.lock 370 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273
  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": "76b0d7cb73b2202fd42202e58a737252",
  8. "packages": [
  9. {
  10. "name": "bacon/bacon-qr-code",
  11. "version": "2.0.3",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/Bacon/BaconQrCode.git",
  15. "reference": "3e9d791b67d0a2912922b7b7c7312f4b37af41e4"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/Bacon/BaconQrCode/zipball/3e9d791b67d0a2912922b7b7c7312f4b37af41e4",
  20. "reference": "3e9d791b67d0a2912922b7b7c7312f4b37af41e4",
  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. "dasprid/enum": "^1.0.3",
  31. "ext-iconv": "*",
  32. "php": "^7.1 || ^8.0"
  33. },
  34. "require-dev": {
  35. "phly/keep-a-changelog": "^1.4",
  36. "phpunit/phpunit": "^7 | ^8 | ^9",
  37. "squizlabs/php_codesniffer": "^3.4"
  38. },
  39. "suggest": {
  40. "ext-imagick": "to generate QR code images"
  41. },
  42. "type": "library",
  43. "autoload": {
  44. "psr-4": {
  45. "BaconQrCode\\": "src/"
  46. }
  47. },
  48. "notification-url": "https://packagist.org/downloads/",
  49. "license": [
  50. "BSD-2-Clause"
  51. ],
  52. "authors": [
  53. {
  54. "name": "Ben Scholzen 'DASPRiD'",
  55. "email": "mail@dasprids.de",
  56. "homepage": "https://dasprids.de/",
  57. "role": "Developer"
  58. }
  59. ],
  60. "description": "BaconQrCode is a QR code generator for PHP.",
  61. "homepage": "https://github.com/Bacon/BaconQrCode",
  62. "support": {
  63. "issues": "https://github.com/Bacon/BaconQrCode/issues",
  64. "source": "https://github.com/Bacon/BaconQrCode/tree/2.0.3"
  65. },
  66. "time": "2020-10-30T02:02:47+00:00"
  67. },
  68. {
  69. "name": "brick/math",
  70. "version": "0.9.2",
  71. "source": {
  72. "type": "git",
  73. "url": "https://github.com/brick/math.git",
  74. "reference": "dff976c2f3487d42c1db75a3b180e2b9f0e72ce0"
  75. },
  76. "dist": {
  77. "type": "zip",
  78. "url": "https://api.github.com/repos/brick/math/zipball/dff976c2f3487d42c1db75a3b180e2b9f0e72ce0",
  79. "reference": "dff976c2f3487d42c1db75a3b180e2b9f0e72ce0",
  80. "shasum": "",
  81. "mirrors": [
  82. {
  83. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  84. "preferred": true
  85. }
  86. ]
  87. },
  88. "require": {
  89. "ext-json": "*",
  90. "php": "^7.1 || ^8.0"
  91. },
  92. "require-dev": {
  93. "php-coveralls/php-coveralls": "^2.2",
  94. "phpunit/phpunit": "^7.5.15 || ^8.5 || ^9.0",
  95. "vimeo/psalm": "4.3.2"
  96. },
  97. "type": "library",
  98. "autoload": {
  99. "psr-4": {
  100. "Brick\\Math\\": "src/"
  101. }
  102. },
  103. "notification-url": "https://packagist.org/downloads/",
  104. "license": [
  105. "MIT"
  106. ],
  107. "description": "Arbitrary-precision arithmetic library",
  108. "keywords": [
  109. "Arbitrary-precision",
  110. "BigInteger",
  111. "BigRational",
  112. "arithmetic",
  113. "bigdecimal",
  114. "bignum",
  115. "brick",
  116. "math"
  117. ],
  118. "support": {
  119. "issues": "https://github.com/brick/math/issues",
  120. "source": "https://github.com/brick/math/tree/0.9.2"
  121. },
  122. "funding": [
  123. {
  124. "url": "https://tidelift.com/funding/github/packagist/brick/math",
  125. "type": "tidelift"
  126. }
  127. ],
  128. "time": "2021-01-20T22:51:39+00:00"
  129. },
  130. {
  131. "name": "cakephp/chronos",
  132. "version": "2.1.2",
  133. "source": {
  134. "type": "git",
  135. "url": "https://github.com/cakephp/chronos.git",
  136. "reference": "1d187c71587c97520c00491f626e0f255144953e"
  137. },
  138. "dist": {
  139. "type": "zip",
  140. "url": "https://api.github.com/repos/cakephp/chronos/zipball/1d187c71587c97520c00491f626e0f255144953e",
  141. "reference": "1d187c71587c97520c00491f626e0f255144953e",
  142. "shasum": "",
  143. "mirrors": [
  144. {
  145. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  146. "preferred": true
  147. }
  148. ]
  149. },
  150. "require": {
  151. "php": ">=7.2"
  152. },
  153. "require-dev": {
  154. "cakephp/cakephp-codesniffer": "^4.0",
  155. "phpunit/phpunit": "^8.0 || ^9.0"
  156. },
  157. "type": "library",
  158. "autoload": {
  159. "psr-4": {
  160. "Cake\\Chronos\\": "src/"
  161. },
  162. "files": [
  163. "src/carbon_compat.php"
  164. ]
  165. },
  166. "notification-url": "https://packagist.org/downloads/",
  167. "license": [
  168. "MIT"
  169. ],
  170. "authors": [
  171. {
  172. "name": "Brian Nesbitt",
  173. "email": "brian@nesbot.com",
  174. "homepage": "http://nesbot.com"
  175. },
  176. {
  177. "name": "The CakePHP Team",
  178. "homepage": "http://cakephp.org"
  179. }
  180. ],
  181. "description": "A simple API extension for DateTime.",
  182. "homepage": "http://cakephp.org",
  183. "keywords": [
  184. "date",
  185. "datetime",
  186. "time"
  187. ],
  188. "support": {
  189. "irc": "irc://irc.freenode.org/cakephp",
  190. "issues": "https://github.com/cakephp/chronos/issues",
  191. "source": "https://github.com/cakephp/chronos"
  192. },
  193. "time": "2021-04-07T01:06:46+00:00"
  194. },
  195. {
  196. "name": "dasprid/enum",
  197. "version": "1.0.3",
  198. "source": {
  199. "type": "git",
  200. "url": "https://github.com/DASPRiD/Enum.git",
  201. "reference": "5abf82f213618696dda8e3bf6f64dd042d8542b2"
  202. },
  203. "dist": {
  204. "type": "zip",
  205. "url": "https://api.github.com/repos/DASPRiD/Enum/zipball/5abf82f213618696dda8e3bf6f64dd042d8542b2",
  206. "reference": "5abf82f213618696dda8e3bf6f64dd042d8542b2",
  207. "shasum": "",
  208. "mirrors": [
  209. {
  210. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  211. "preferred": true
  212. }
  213. ]
  214. },
  215. "require-dev": {
  216. "phpunit/phpunit": "^7 | ^8 | ^9",
  217. "squizlabs/php_codesniffer": "^3.4"
  218. },
  219. "type": "library",
  220. "autoload": {
  221. "psr-4": {
  222. "DASPRiD\\Enum\\": "src/"
  223. }
  224. },
  225. "notification-url": "https://packagist.org/downloads/",
  226. "license": [
  227. "BSD-2-Clause"
  228. ],
  229. "authors": [
  230. {
  231. "name": "Ben Scholzen 'DASPRiD'",
  232. "email": "mail@dasprids.de",
  233. "homepage": "https://dasprids.de/",
  234. "role": "Developer"
  235. }
  236. ],
  237. "description": "PHP 7.1 enum implementation",
  238. "keywords": [
  239. "enum",
  240. "map"
  241. ],
  242. "support": {
  243. "issues": "https://github.com/DASPRiD/Enum/issues",
  244. "source": "https://github.com/DASPRiD/Enum/tree/1.0.3"
  245. },
  246. "time": "2020-10-02T16:03:48+00:00"
  247. },
  248. {
  249. "name": "doctrine/cache",
  250. "version": "1.11.0",
  251. "source": {
  252. "type": "git",
  253. "url": "https://github.com/doctrine/cache.git",
  254. "reference": "a9c1b59eba5a08ca2770a76eddb88922f504e8e0"
  255. },
  256. "dist": {
  257. "type": "zip",
  258. "url": "https://api.github.com/repos/doctrine/cache/zipball/a9c1b59eba5a08ca2770a76eddb88922f504e8e0",
  259. "reference": "a9c1b59eba5a08ca2770a76eddb88922f504e8e0",
  260. "shasum": "",
  261. "mirrors": [
  262. {
  263. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  264. "preferred": true
  265. }
  266. ]
  267. },
  268. "require": {
  269. "php": "~7.1 || ^8.0"
  270. },
  271. "conflict": {
  272. "doctrine/common": ">2.2,<2.4",
  273. "psr/cache": ">=3"
  274. },
  275. "require-dev": {
  276. "alcaeus/mongo-php-adapter": "^1.1",
  277. "cache/integration-tests": "dev-master",
  278. "doctrine/coding-standard": "^8.0",
  279. "mongodb/mongodb": "^1.1",
  280. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0",
  281. "predis/predis": "~1.0",
  282. "psr/cache": "^1.0 || ^2.0",
  283. "symfony/cache": "^4.4 || ^5.2"
  284. },
  285. "suggest": {
  286. "alcaeus/mongo-php-adapter": "Required to use legacy MongoDB driver"
  287. },
  288. "type": "library",
  289. "autoload": {
  290. "psr-4": {
  291. "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache"
  292. }
  293. },
  294. "notification-url": "https://packagist.org/downloads/",
  295. "license": [
  296. "MIT"
  297. ],
  298. "authors": [
  299. {
  300. "name": "Guilherme Blanco",
  301. "email": "guilhermeblanco@gmail.com"
  302. },
  303. {
  304. "name": "Roman Borschel",
  305. "email": "roman@code-factory.org"
  306. },
  307. {
  308. "name": "Benjamin Eberlei",
  309. "email": "kontakt@beberlei.de"
  310. },
  311. {
  312. "name": "Jonathan Wage",
  313. "email": "jonwage@gmail.com"
  314. },
  315. {
  316. "name": "Johannes Schmitt",
  317. "email": "schmittjoh@gmail.com"
  318. }
  319. ],
  320. "description": "PHP Doctrine Cache library is a popular cache implementation that supports many different drivers such as redis, memcache, apc, mongodb and others.",
  321. "homepage": "https://www.doctrine-project.org/projects/cache.html",
  322. "keywords": [
  323. "abstraction",
  324. "apcu",
  325. "cache",
  326. "caching",
  327. "couchdb",
  328. "memcached",
  329. "php",
  330. "redis",
  331. "xcache"
  332. ],
  333. "support": {
  334. "issues": "https://github.com/doctrine/cache/issues",
  335. "source": "https://github.com/doctrine/cache/tree/1.11.0"
  336. },
  337. "funding": [
  338. {
  339. "url": "https://www.doctrine-project.org/sponsorship.html",
  340. "type": "custom"
  341. },
  342. {
  343. "url": "https://www.patreon.com/phpdoctrine",
  344. "type": "patreon"
  345. },
  346. {
  347. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcache",
  348. "type": "tidelift"
  349. }
  350. ],
  351. "time": "2021-04-13T14:46:17+00:00"
  352. },
  353. {
  354. "name": "doctrine/dbal",
  355. "version": "2.13.1",
  356. "source": {
  357. "type": "git",
  358. "url": "https://github.com/doctrine/dbal.git",
  359. "reference": "c800380457948e65bbd30ba92cc17cda108bf8c9"
  360. },
  361. "dist": {
  362. "type": "zip",
  363. "url": "https://api.github.com/repos/doctrine/dbal/zipball/c800380457948e65bbd30ba92cc17cda108bf8c9",
  364. "reference": "c800380457948e65bbd30ba92cc17cda108bf8c9",
  365. "shasum": "",
  366. "mirrors": [
  367. {
  368. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  369. "preferred": true
  370. }
  371. ]
  372. },
  373. "require": {
  374. "doctrine/cache": "^1.0",
  375. "doctrine/deprecations": "^0.5.3",
  376. "doctrine/event-manager": "^1.0",
  377. "ext-pdo": "*",
  378. "php": "^7.1 || ^8"
  379. },
  380. "require-dev": {
  381. "doctrine/coding-standard": "8.2.0",
  382. "jetbrains/phpstorm-stubs": "2020.2",
  383. "phpstan/phpstan": "0.12.81",
  384. "phpunit/phpunit": "^7.5.20|^8.5|9.5.0",
  385. "squizlabs/php_codesniffer": "3.6.0",
  386. "symfony/console": "^2.0.5|^3.0|^4.0|^5.0",
  387. "vimeo/psalm": "4.6.4"
  388. },
  389. "suggest": {
  390. "symfony/console": "For helpful console commands such as SQL execution and import of files."
  391. },
  392. "bin": [
  393. "bin/doctrine-dbal"
  394. ],
  395. "type": "library",
  396. "autoload": {
  397. "psr-4": {
  398. "Doctrine\\DBAL\\": "lib/Doctrine/DBAL"
  399. }
  400. },
  401. "notification-url": "https://packagist.org/downloads/",
  402. "license": [
  403. "MIT"
  404. ],
  405. "authors": [
  406. {
  407. "name": "Guilherme Blanco",
  408. "email": "guilhermeblanco@gmail.com"
  409. },
  410. {
  411. "name": "Roman Borschel",
  412. "email": "roman@code-factory.org"
  413. },
  414. {
  415. "name": "Benjamin Eberlei",
  416. "email": "kontakt@beberlei.de"
  417. },
  418. {
  419. "name": "Jonathan Wage",
  420. "email": "jonwage@gmail.com"
  421. }
  422. ],
  423. "description": "Powerful PHP database abstraction layer (DBAL) with many features for database schema introspection and management.",
  424. "homepage": "https://www.doctrine-project.org/projects/dbal.html",
  425. "keywords": [
  426. "abstraction",
  427. "database",
  428. "db2",
  429. "dbal",
  430. "mariadb",
  431. "mssql",
  432. "mysql",
  433. "oci8",
  434. "oracle",
  435. "pdo",
  436. "pgsql",
  437. "postgresql",
  438. "queryobject",
  439. "sasql",
  440. "sql",
  441. "sqlanywhere",
  442. "sqlite",
  443. "sqlserver",
  444. "sqlsrv"
  445. ],
  446. "support": {
  447. "issues": "https://github.com/doctrine/dbal/issues",
  448. "source": "https://github.com/doctrine/dbal/tree/2.13.1"
  449. },
  450. "funding": [
  451. {
  452. "url": "https://www.doctrine-project.org/sponsorship.html",
  453. "type": "custom"
  454. },
  455. {
  456. "url": "https://www.patreon.com/phpdoctrine",
  457. "type": "patreon"
  458. },
  459. {
  460. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdbal",
  461. "type": "tidelift"
  462. }
  463. ],
  464. "time": "2021-04-17T17:30:19+00:00"
  465. },
  466. {
  467. "name": "doctrine/deprecations",
  468. "version": "v0.5.3",
  469. "source": {
  470. "type": "git",
  471. "url": "https://github.com/doctrine/deprecations.git",
  472. "reference": "9504165960a1f83cc1480e2be1dd0a0478561314"
  473. },
  474. "dist": {
  475. "type": "zip",
  476. "url": "https://api.github.com/repos/doctrine/deprecations/zipball/9504165960a1f83cc1480e2be1dd0a0478561314",
  477. "reference": "9504165960a1f83cc1480e2be1dd0a0478561314",
  478. "shasum": "",
  479. "mirrors": [
  480. {
  481. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  482. "preferred": true
  483. }
  484. ]
  485. },
  486. "require": {
  487. "php": "^7.1|^8.0"
  488. },
  489. "require-dev": {
  490. "doctrine/coding-standard": "^6.0|^7.0|^8.0",
  491. "phpunit/phpunit": "^7.0|^8.0|^9.0",
  492. "psr/log": "^1.0"
  493. },
  494. "suggest": {
  495. "psr/log": "Allows logging deprecations via PSR-3 logger implementation"
  496. },
  497. "type": "library",
  498. "autoload": {
  499. "psr-4": {
  500. "Doctrine\\Deprecations\\": "lib/Doctrine/Deprecations"
  501. }
  502. },
  503. "notification-url": "https://packagist.org/downloads/",
  504. "license": [
  505. "MIT"
  506. ],
  507. "description": "A small layer on top of trigger_error(E_USER_DEPRECATED) or PSR-3 logging with options to disable all deprecations or selectively for packages.",
  508. "homepage": "https://www.doctrine-project.org/",
  509. "support": {
  510. "issues": "https://github.com/doctrine/deprecations/issues",
  511. "source": "https://github.com/doctrine/deprecations/tree/v0.5.3"
  512. },
  513. "time": "2021-03-21T12:59:47+00:00"
  514. },
  515. {
  516. "name": "doctrine/event-manager",
  517. "version": "1.1.1",
  518. "source": {
  519. "type": "git",
  520. "url": "https://github.com/doctrine/event-manager.git",
  521. "reference": "41370af6a30faa9dc0368c4a6814d596e81aba7f"
  522. },
  523. "dist": {
  524. "type": "zip",
  525. "url": "https://api.github.com/repos/doctrine/event-manager/zipball/41370af6a30faa9dc0368c4a6814d596e81aba7f",
  526. "reference": "41370af6a30faa9dc0368c4a6814d596e81aba7f",
  527. "shasum": "",
  528. "mirrors": [
  529. {
  530. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  531. "preferred": true
  532. }
  533. ]
  534. },
  535. "require": {
  536. "php": "^7.1 || ^8.0"
  537. },
  538. "conflict": {
  539. "doctrine/common": "<2.9@dev"
  540. },
  541. "require-dev": {
  542. "doctrine/coding-standard": "^6.0",
  543. "phpunit/phpunit": "^7.0"
  544. },
  545. "type": "library",
  546. "extra": {
  547. "branch-alias": {
  548. "dev-master": "1.0.x-dev"
  549. }
  550. },
  551. "autoload": {
  552. "psr-4": {
  553. "Doctrine\\Common\\": "lib/Doctrine/Common"
  554. }
  555. },
  556. "notification-url": "https://packagist.org/downloads/",
  557. "license": [
  558. "MIT"
  559. ],
  560. "authors": [
  561. {
  562. "name": "Guilherme Blanco",
  563. "email": "guilhermeblanco@gmail.com"
  564. },
  565. {
  566. "name": "Roman Borschel",
  567. "email": "roman@code-factory.org"
  568. },
  569. {
  570. "name": "Benjamin Eberlei",
  571. "email": "kontakt@beberlei.de"
  572. },
  573. {
  574. "name": "Jonathan Wage",
  575. "email": "jonwage@gmail.com"
  576. },
  577. {
  578. "name": "Johannes Schmitt",
  579. "email": "schmittjoh@gmail.com"
  580. },
  581. {
  582. "name": "Marco Pivetta",
  583. "email": "ocramius@gmail.com"
  584. }
  585. ],
  586. "description": "The Doctrine Event Manager is a simple PHP event system that was built to be used with the various Doctrine projects.",
  587. "homepage": "https://www.doctrine-project.org/projects/event-manager.html",
  588. "keywords": [
  589. "event",
  590. "event dispatcher",
  591. "event manager",
  592. "event system",
  593. "events"
  594. ],
  595. "support": {
  596. "issues": "https://github.com/doctrine/event-manager/issues",
  597. "source": "https://github.com/doctrine/event-manager/tree/1.1.x"
  598. },
  599. "funding": [
  600. {
  601. "url": "https://www.doctrine-project.org/sponsorship.html",
  602. "type": "custom"
  603. },
  604. {
  605. "url": "https://www.patreon.com/phpdoctrine",
  606. "type": "patreon"
  607. },
  608. {
  609. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fevent-manager",
  610. "type": "tidelift"
  611. }
  612. ],
  613. "time": "2020-05-29T18:28:51+00:00"
  614. },
  615. {
  616. "name": "doctrine/inflector",
  617. "version": "2.0.3",
  618. "source": {
  619. "type": "git",
  620. "url": "https://github.com/doctrine/inflector.git",
  621. "reference": "9cf661f4eb38f7c881cac67c75ea9b00bf97b210"
  622. },
  623. "dist": {
  624. "type": "zip",
  625. "url": "https://api.github.com/repos/doctrine/inflector/zipball/9cf661f4eb38f7c881cac67c75ea9b00bf97b210",
  626. "reference": "9cf661f4eb38f7c881cac67c75ea9b00bf97b210",
  627. "shasum": "",
  628. "mirrors": [
  629. {
  630. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  631. "preferred": true
  632. }
  633. ]
  634. },
  635. "require": {
  636. "php": "^7.2 || ^8.0"
  637. },
  638. "require-dev": {
  639. "doctrine/coding-standard": "^7.0",
  640. "phpstan/phpstan": "^0.11",
  641. "phpstan/phpstan-phpunit": "^0.11",
  642. "phpstan/phpstan-strict-rules": "^0.11",
  643. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0"
  644. },
  645. "type": "library",
  646. "extra": {
  647. "branch-alias": {
  648. "dev-master": "2.0.x-dev"
  649. }
  650. },
  651. "autoload": {
  652. "psr-4": {
  653. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  654. }
  655. },
  656. "notification-url": "https://packagist.org/downloads/",
  657. "license": [
  658. "MIT"
  659. ],
  660. "authors": [
  661. {
  662. "name": "Guilherme Blanco",
  663. "email": "guilhermeblanco@gmail.com"
  664. },
  665. {
  666. "name": "Roman Borschel",
  667. "email": "roman@code-factory.org"
  668. },
  669. {
  670. "name": "Benjamin Eberlei",
  671. "email": "kontakt@beberlei.de"
  672. },
  673. {
  674. "name": "Jonathan Wage",
  675. "email": "jonwage@gmail.com"
  676. },
  677. {
  678. "name": "Johannes Schmitt",
  679. "email": "schmittjoh@gmail.com"
  680. }
  681. ],
  682. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  683. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  684. "keywords": [
  685. "inflection",
  686. "inflector",
  687. "lowercase",
  688. "manipulation",
  689. "php",
  690. "plural",
  691. "singular",
  692. "strings",
  693. "uppercase",
  694. "words"
  695. ],
  696. "support": {
  697. "issues": "https://github.com/doctrine/inflector/issues",
  698. "source": "https://github.com/doctrine/inflector/tree/2.0.x"
  699. },
  700. "funding": [
  701. {
  702. "url": "https://www.doctrine-project.org/sponsorship.html",
  703. "type": "custom"
  704. },
  705. {
  706. "url": "https://www.patreon.com/phpdoctrine",
  707. "type": "patreon"
  708. },
  709. {
  710. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  711. "type": "tidelift"
  712. }
  713. ],
  714. "time": "2020-05-29T15:13:26+00:00"
  715. },
  716. {
  717. "name": "doctrine/lexer",
  718. "version": "1.2.1",
  719. "source": {
  720. "type": "git",
  721. "url": "https://github.com/doctrine/lexer.git",
  722. "reference": "e864bbf5904cb8f5bb334f99209b48018522f042"
  723. },
  724. "dist": {
  725. "type": "zip",
  726. "url": "https://api.github.com/repos/doctrine/lexer/zipball/e864bbf5904cb8f5bb334f99209b48018522f042",
  727. "reference": "e864bbf5904cb8f5bb334f99209b48018522f042",
  728. "shasum": "",
  729. "mirrors": [
  730. {
  731. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  732. "preferred": true
  733. }
  734. ]
  735. },
  736. "require": {
  737. "php": "^7.2 || ^8.0"
  738. },
  739. "require-dev": {
  740. "doctrine/coding-standard": "^6.0",
  741. "phpstan/phpstan": "^0.11.8",
  742. "phpunit/phpunit": "^8.2"
  743. },
  744. "type": "library",
  745. "extra": {
  746. "branch-alias": {
  747. "dev-master": "1.2.x-dev"
  748. }
  749. },
  750. "autoload": {
  751. "psr-4": {
  752. "Doctrine\\Common\\Lexer\\": "lib/Doctrine/Common/Lexer"
  753. }
  754. },
  755. "notification-url": "https://packagist.org/downloads/",
  756. "license": [
  757. "MIT"
  758. ],
  759. "authors": [
  760. {
  761. "name": "Guilherme Blanco",
  762. "email": "guilhermeblanco@gmail.com"
  763. },
  764. {
  765. "name": "Roman Borschel",
  766. "email": "roman@code-factory.org"
  767. },
  768. {
  769. "name": "Johannes Schmitt",
  770. "email": "schmittjoh@gmail.com"
  771. }
  772. ],
  773. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  774. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  775. "keywords": [
  776. "annotations",
  777. "docblock",
  778. "lexer",
  779. "parser",
  780. "php"
  781. ],
  782. "support": {
  783. "issues": "https://github.com/doctrine/lexer/issues",
  784. "source": "https://github.com/doctrine/lexer/tree/1.2.1"
  785. },
  786. "funding": [
  787. {
  788. "url": "https://www.doctrine-project.org/sponsorship.html",
  789. "type": "custom"
  790. },
  791. {
  792. "url": "https://www.patreon.com/phpdoctrine",
  793. "type": "patreon"
  794. },
  795. {
  796. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  797. "type": "tidelift"
  798. }
  799. ],
  800. "time": "2020-05-25T17:44:05+00:00"
  801. },
  802. {
  803. "name": "dragonmantank/cron-expression",
  804. "version": "v2.3.1",
  805. "source": {
  806. "type": "git",
  807. "url": "https://github.com/dragonmantank/cron-expression.git",
  808. "reference": "65b2d8ee1f10915efb3b55597da3404f096acba2"
  809. },
  810. "dist": {
  811. "type": "zip",
  812. "url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/65b2d8ee1f10915efb3b55597da3404f096acba2",
  813. "reference": "65b2d8ee1f10915efb3b55597da3404f096acba2",
  814. "shasum": "",
  815. "mirrors": [
  816. {
  817. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  818. "preferred": true
  819. }
  820. ]
  821. },
  822. "require": {
  823. "php": "^7.0|^8.0"
  824. },
  825. "require-dev": {
  826. "phpunit/phpunit": "^6.4|^7.0|^8.0|^9.0"
  827. },
  828. "type": "library",
  829. "extra": {
  830. "branch-alias": {
  831. "dev-master": "2.3-dev"
  832. }
  833. },
  834. "autoload": {
  835. "psr-4": {
  836. "Cron\\": "src/Cron/"
  837. }
  838. },
  839. "notification-url": "https://packagist.org/downloads/",
  840. "license": [
  841. "MIT"
  842. ],
  843. "authors": [
  844. {
  845. "name": "Michael Dowling",
  846. "email": "mtdowling@gmail.com",
  847. "homepage": "https://github.com/mtdowling"
  848. },
  849. {
  850. "name": "Chris Tankersley",
  851. "email": "chris@ctankersley.com",
  852. "homepage": "https://github.com/dragonmantank"
  853. }
  854. ],
  855. "description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due",
  856. "keywords": [
  857. "cron",
  858. "schedule"
  859. ],
  860. "support": {
  861. "issues": "https://github.com/dragonmantank/cron-expression/issues",
  862. "source": "https://github.com/dragonmantank/cron-expression/tree/v2.3.1"
  863. },
  864. "funding": [
  865. {
  866. "url": "https://github.com/dragonmantank",
  867. "type": "github"
  868. }
  869. ],
  870. "time": "2020-10-13T00:52:37+00:00"
  871. },
  872. {
  873. "name": "egulias/email-validator",
  874. "version": "2.1.25",
  875. "source": {
  876. "type": "git",
  877. "url": "https://github.com/egulias/EmailValidator.git",
  878. "reference": "0dbf5d78455d4d6a41d186da50adc1122ec066f4"
  879. },
  880. "dist": {
  881. "type": "zip",
  882. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/0dbf5d78455d4d6a41d186da50adc1122ec066f4",
  883. "reference": "0dbf5d78455d4d6a41d186da50adc1122ec066f4",
  884. "shasum": "",
  885. "mirrors": [
  886. {
  887. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  888. "preferred": true
  889. }
  890. ]
  891. },
  892. "require": {
  893. "doctrine/lexer": "^1.0.1",
  894. "php": ">=5.5",
  895. "symfony/polyfill-intl-idn": "^1.10"
  896. },
  897. "require-dev": {
  898. "dominicsayers/isemail": "^3.0.7",
  899. "phpunit/phpunit": "^4.8.36|^7.5.15",
  900. "satooshi/php-coveralls": "^1.0.1"
  901. },
  902. "suggest": {
  903. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  904. },
  905. "type": "library",
  906. "extra": {
  907. "branch-alias": {
  908. "dev-master": "2.1.x-dev"
  909. }
  910. },
  911. "autoload": {
  912. "psr-4": {
  913. "Egulias\\EmailValidator\\": "src"
  914. }
  915. },
  916. "notification-url": "https://packagist.org/downloads/",
  917. "license": [
  918. "MIT"
  919. ],
  920. "authors": [
  921. {
  922. "name": "Eduardo Gulias Davis"
  923. }
  924. ],
  925. "description": "A library for validating emails against several RFCs",
  926. "homepage": "https://github.com/egulias/EmailValidator",
  927. "keywords": [
  928. "email",
  929. "emailvalidation",
  930. "emailvalidator",
  931. "validation",
  932. "validator"
  933. ],
  934. "support": {
  935. "issues": "https://github.com/egulias/EmailValidator/issues",
  936. "source": "https://github.com/egulias/EmailValidator/tree/2.1.25"
  937. },
  938. "funding": [
  939. {
  940. "url": "https://github.com/egulias",
  941. "type": "github"
  942. }
  943. ],
  944. "time": "2020-12-29T14:50:06+00:00"
  945. },
  946. {
  947. "name": "endroid/qr-code",
  948. "version": "3.9.7",
  949. "source": {
  950. "type": "git",
  951. "url": "https://github.com/endroid/qr-code.git",
  952. "reference": "94563d7b3105288e6ac53a67ae720e3669fac1f6"
  953. },
  954. "dist": {
  955. "type": "zip",
  956. "url": "https://api.github.com/repos/endroid/qr-code/zipball/94563d7b3105288e6ac53a67ae720e3669fac1f6",
  957. "reference": "94563d7b3105288e6ac53a67ae720e3669fac1f6",
  958. "shasum": "",
  959. "mirrors": [
  960. {
  961. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  962. "preferred": true
  963. }
  964. ]
  965. },
  966. "require": {
  967. "bacon/bacon-qr-code": "^2.0",
  968. "khanamiryan/qrcode-detector-decoder": "^1.0.5",
  969. "myclabs/php-enum": "^1.5",
  970. "php": "^7.3||^8.0",
  971. "symfony/options-resolver": "^3.4||^4.4||^5.0",
  972. "symfony/property-access": "^3.4||^4.4||^5.0"
  973. },
  974. "require-dev": {
  975. "endroid/quality": "^1.5.2",
  976. "setasign/fpdf": "^1.8"
  977. },
  978. "suggest": {
  979. "ext-gd": "Required for generating PNG images",
  980. "roave/security-advisories": "Avoids installation of package versions with vulnerabilities",
  981. "setasign/fpdf": "Required to use the FPDF writer.",
  982. "symfony/security-checker": "Checks your composer.lock for vulnerabilities"
  983. },
  984. "type": "library",
  985. "extra": {
  986. "branch-alias": {
  987. "dev-master": "3.x-dev"
  988. }
  989. },
  990. "autoload": {
  991. "psr-4": {
  992. "Endroid\\QrCode\\": "src/"
  993. }
  994. },
  995. "notification-url": "https://packagist.org/downloads/",
  996. "license": [
  997. "MIT"
  998. ],
  999. "authors": [
  1000. {
  1001. "name": "Jeroen van den Enden",
  1002. "email": "info@endroid.nl"
  1003. }
  1004. ],
  1005. "description": "Endroid QR Code",
  1006. "homepage": "https://github.com/endroid/qr-code",
  1007. "keywords": [
  1008. "bundle",
  1009. "code",
  1010. "endroid",
  1011. "php",
  1012. "qr",
  1013. "qrcode"
  1014. ],
  1015. "support": {
  1016. "issues": "https://github.com/endroid/qr-code/issues",
  1017. "source": "https://github.com/endroid/qr-code/tree/3.9.7"
  1018. },
  1019. "funding": [
  1020. {
  1021. "url": "https://github.com/endroid",
  1022. "type": "github"
  1023. }
  1024. ],
  1025. "time": "2021-04-20T19:10:54+00:00"
  1026. },
  1027. {
  1028. "name": "ezyang/htmlpurifier",
  1029. "version": "v4.13.0",
  1030. "source": {
  1031. "type": "git",
  1032. "url": "https://github.com/ezyang/htmlpurifier.git",
  1033. "reference": "08e27c97e4c6ed02f37c5b2b20488046c8d90d75"
  1034. },
  1035. "dist": {
  1036. "type": "zip",
  1037. "url": "https://api.github.com/repos/ezyang/htmlpurifier/zipball/08e27c97e4c6ed02f37c5b2b20488046c8d90d75",
  1038. "reference": "08e27c97e4c6ed02f37c5b2b20488046c8d90d75",
  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. "php": ">=5.2"
  1049. },
  1050. "require-dev": {
  1051. "simpletest/simpletest": "dev-master#72de02a7b80c6bb8864ef9bf66d41d2f58f826bd"
  1052. },
  1053. "type": "library",
  1054. "autoload": {
  1055. "psr-0": {
  1056. "HTMLPurifier": "library/"
  1057. },
  1058. "files": [
  1059. "library/HTMLPurifier.composer.php"
  1060. ],
  1061. "exclude-from-classmap": [
  1062. "/library/HTMLPurifier/Language/"
  1063. ]
  1064. },
  1065. "notification-url": "https://packagist.org/downloads/",
  1066. "license": [
  1067. "LGPL-2.1-or-later"
  1068. ],
  1069. "authors": [
  1070. {
  1071. "name": "Edward Z. Yang",
  1072. "email": "admin@htmlpurifier.org",
  1073. "homepage": "http://ezyang.com"
  1074. }
  1075. ],
  1076. "description": "Standards compliant HTML filter written in PHP",
  1077. "homepage": "http://htmlpurifier.org/",
  1078. "keywords": [
  1079. "html"
  1080. ],
  1081. "support": {
  1082. "issues": "https://github.com/ezyang/htmlpurifier/issues",
  1083. "source": "https://github.com/ezyang/htmlpurifier/tree/master"
  1084. },
  1085. "time": "2020-06-29T00:56:53+00:00"
  1086. },
  1087. {
  1088. "name": "facade/flare-client-php",
  1089. "version": "1.7.0",
  1090. "source": {
  1091. "type": "git",
  1092. "url": "https://github.com/facade/flare-client-php.git",
  1093. "reference": "6bf380035890cb0a09b9628c491ae3866b858522"
  1094. },
  1095. "dist": {
  1096. "type": "zip",
  1097. "url": "https://api.github.com/repos/facade/flare-client-php/zipball/6bf380035890cb0a09b9628c491ae3866b858522",
  1098. "reference": "6bf380035890cb0a09b9628c491ae3866b858522",
  1099. "shasum": "",
  1100. "mirrors": [
  1101. {
  1102. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1103. "preferred": true
  1104. }
  1105. ]
  1106. },
  1107. "require": {
  1108. "facade/ignition-contracts": "~1.0",
  1109. "illuminate/pipeline": "^5.5|^6.0|^7.0|^8.0",
  1110. "php": "^7.1|^8.0",
  1111. "symfony/http-foundation": "^3.3|^4.1|^5.0",
  1112. "symfony/mime": "^3.4|^4.0|^5.1",
  1113. "symfony/var-dumper": "^3.4|^4.0|^5.0"
  1114. },
  1115. "require-dev": {
  1116. "friendsofphp/php-cs-fixer": "^2.14",
  1117. "phpunit/phpunit": "^7.5.16",
  1118. "spatie/phpunit-snapshot-assertions": "^2.0"
  1119. },
  1120. "type": "library",
  1121. "extra": {
  1122. "branch-alias": {
  1123. "dev-master": "1.0-dev"
  1124. }
  1125. },
  1126. "autoload": {
  1127. "psr-4": {
  1128. "Facade\\FlareClient\\": "src"
  1129. },
  1130. "files": [
  1131. "src/helpers.php"
  1132. ]
  1133. },
  1134. "notification-url": "https://packagist.org/downloads/",
  1135. "license": [
  1136. "MIT"
  1137. ],
  1138. "description": "Send PHP errors to Flare",
  1139. "homepage": "https://github.com/facade/flare-client-php",
  1140. "keywords": [
  1141. "exception",
  1142. "facade",
  1143. "flare",
  1144. "reporting"
  1145. ],
  1146. "support": {
  1147. "issues": "https://github.com/facade/flare-client-php/issues",
  1148. "source": "https://github.com/facade/flare-client-php/tree/1.7.0"
  1149. },
  1150. "funding": [
  1151. {
  1152. "url": "https://github.com/spatie",
  1153. "type": "github"
  1154. }
  1155. ],
  1156. "time": "2021-04-12T09:30:36+00:00"
  1157. },
  1158. {
  1159. "name": "facade/ignition",
  1160. "version": "2.8.3",
  1161. "source": {
  1162. "type": "git",
  1163. "url": "https://github.com/facade/ignition.git",
  1164. "reference": "a8201d51aae83addceaef9344592a3b068b5d64d"
  1165. },
  1166. "dist": {
  1167. "type": "zip",
  1168. "url": "https://api.github.com/repos/facade/ignition/zipball/a8201d51aae83addceaef9344592a3b068b5d64d",
  1169. "reference": "a8201d51aae83addceaef9344592a3b068b5d64d",
  1170. "shasum": "",
  1171. "mirrors": [
  1172. {
  1173. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1174. "preferred": true
  1175. }
  1176. ]
  1177. },
  1178. "require": {
  1179. "ext-json": "*",
  1180. "ext-mbstring": "*",
  1181. "facade/flare-client-php": "^1.6",
  1182. "facade/ignition-contracts": "^1.0.2",
  1183. "filp/whoops": "^2.4",
  1184. "illuminate/support": "^7.0|^8.0",
  1185. "monolog/monolog": "^2.0",
  1186. "php": "^7.2.5|^8.0",
  1187. "symfony/console": "^5.0",
  1188. "symfony/var-dumper": "^5.0"
  1189. },
  1190. "require-dev": {
  1191. "friendsofphp/php-cs-fixer": "^2.14",
  1192. "mockery/mockery": "^1.3",
  1193. "orchestra/testbench": "^5.0|^6.0",
  1194. "psalm/plugin-laravel": "^1.2"
  1195. },
  1196. "suggest": {
  1197. "laravel/telescope": "^3.1"
  1198. },
  1199. "type": "library",
  1200. "extra": {
  1201. "branch-alias": {
  1202. "dev-master": "2.x-dev"
  1203. },
  1204. "laravel": {
  1205. "providers": [
  1206. "Facade\\Ignition\\IgnitionServiceProvider"
  1207. ],
  1208. "aliases": {
  1209. "Flare": "Facade\\Ignition\\Facades\\Flare"
  1210. }
  1211. }
  1212. },
  1213. "autoload": {
  1214. "psr-4": {
  1215. "Facade\\Ignition\\": "src"
  1216. },
  1217. "files": [
  1218. "src/helpers.php"
  1219. ]
  1220. },
  1221. "notification-url": "https://packagist.org/downloads/",
  1222. "license": [
  1223. "MIT"
  1224. ],
  1225. "description": "A beautiful error page for Laravel applications.",
  1226. "homepage": "https://github.com/facade/ignition",
  1227. "keywords": [
  1228. "error",
  1229. "flare",
  1230. "laravel",
  1231. "page"
  1232. ],
  1233. "support": {
  1234. "docs": "https://flareapp.io/docs/ignition-for-laravel/introduction",
  1235. "forum": "https://twitter.com/flareappio",
  1236. "issues": "https://github.com/facade/ignition/issues",
  1237. "source": "https://github.com/facade/ignition"
  1238. },
  1239. "time": "2021-04-09T20:45:59+00:00"
  1240. },
  1241. {
  1242. "name": "facade/ignition-contracts",
  1243. "version": "1.0.2",
  1244. "source": {
  1245. "type": "git",
  1246. "url": "https://github.com/facade/ignition-contracts.git",
  1247. "reference": "3c921a1cdba35b68a7f0ccffc6dffc1995b18267"
  1248. },
  1249. "dist": {
  1250. "type": "zip",
  1251. "url": "https://api.github.com/repos/facade/ignition-contracts/zipball/3c921a1cdba35b68a7f0ccffc6dffc1995b18267",
  1252. "reference": "3c921a1cdba35b68a7f0ccffc6dffc1995b18267",
  1253. "shasum": "",
  1254. "mirrors": [
  1255. {
  1256. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1257. "preferred": true
  1258. }
  1259. ]
  1260. },
  1261. "require": {
  1262. "php": "^7.3|^8.0"
  1263. },
  1264. "require-dev": {
  1265. "friendsofphp/php-cs-fixer": "^v2.15.8",
  1266. "phpunit/phpunit": "^9.3.11",
  1267. "vimeo/psalm": "^3.17.1"
  1268. },
  1269. "type": "library",
  1270. "autoload": {
  1271. "psr-4": {
  1272. "Facade\\IgnitionContracts\\": "src"
  1273. }
  1274. },
  1275. "notification-url": "https://packagist.org/downloads/",
  1276. "license": [
  1277. "MIT"
  1278. ],
  1279. "authors": [
  1280. {
  1281. "name": "Freek Van der Herten",
  1282. "email": "freek@spatie.be",
  1283. "homepage": "https://flareapp.io",
  1284. "role": "Developer"
  1285. }
  1286. ],
  1287. "description": "Solution contracts for Ignition",
  1288. "homepage": "https://github.com/facade/ignition-contracts",
  1289. "keywords": [
  1290. "contracts",
  1291. "flare",
  1292. "ignition"
  1293. ],
  1294. "support": {
  1295. "issues": "https://github.com/facade/ignition-contracts/issues",
  1296. "source": "https://github.com/facade/ignition-contracts/tree/1.0.2"
  1297. },
  1298. "time": "2020-10-16T08:27:54+00:00"
  1299. },
  1300. {
  1301. "name": "fideloper/proxy",
  1302. "version": "4.4.1",
  1303. "source": {
  1304. "type": "git",
  1305. "url": "https://github.com/fideloper/TrustedProxy.git",
  1306. "reference": "c073b2bd04d1c90e04dc1b787662b558dd65ade0"
  1307. },
  1308. "dist": {
  1309. "type": "zip",
  1310. "url": "https://api.github.com/repos/fideloper/TrustedProxy/zipball/c073b2bd04d1c90e04dc1b787662b558dd65ade0",
  1311. "reference": "c073b2bd04d1c90e04dc1b787662b558dd65ade0",
  1312. "shasum": "",
  1313. "mirrors": [
  1314. {
  1315. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1316. "preferred": true
  1317. }
  1318. ]
  1319. },
  1320. "require": {
  1321. "illuminate/contracts": "^5.0|^6.0|^7.0|^8.0|^9.0",
  1322. "php": ">=5.4.0"
  1323. },
  1324. "require-dev": {
  1325. "illuminate/http": "^5.0|^6.0|^7.0|^8.0|^9.0",
  1326. "mockery/mockery": "^1.0",
  1327. "phpunit/phpunit": "^6.0"
  1328. },
  1329. "type": "library",
  1330. "extra": {
  1331. "laravel": {
  1332. "providers": [
  1333. "Fideloper\\Proxy\\TrustedProxyServiceProvider"
  1334. ]
  1335. }
  1336. },
  1337. "autoload": {
  1338. "psr-4": {
  1339. "Fideloper\\Proxy\\": "src/"
  1340. }
  1341. },
  1342. "notification-url": "https://packagist.org/downloads/",
  1343. "license": [
  1344. "MIT"
  1345. ],
  1346. "authors": [
  1347. {
  1348. "name": "Chris Fidao",
  1349. "email": "fideloper@gmail.com"
  1350. }
  1351. ],
  1352. "description": "Set trusted proxies for Laravel",
  1353. "keywords": [
  1354. "load balancing",
  1355. "proxy",
  1356. "trusted proxy"
  1357. ],
  1358. "support": {
  1359. "issues": "https://github.com/fideloper/TrustedProxy/issues",
  1360. "source": "https://github.com/fideloper/TrustedProxy/tree/4.4.1"
  1361. },
  1362. "time": "2020-10-22T13:48:01+00:00"
  1363. },
  1364. {
  1365. "name": "filp/whoops",
  1366. "version": "2.12.0",
  1367. "source": {
  1368. "type": "git",
  1369. "url": "https://github.com/filp/whoops.git",
  1370. "reference": "d501fd2658d55491a2295ff600ae5978eaad7403"
  1371. },
  1372. "dist": {
  1373. "type": "zip",
  1374. "url": "https://api.github.com/repos/filp/whoops/zipball/d501fd2658d55491a2295ff600ae5978eaad7403",
  1375. "reference": "d501fd2658d55491a2295ff600ae5978eaad7403",
  1376. "shasum": "",
  1377. "mirrors": [
  1378. {
  1379. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1380. "preferred": true
  1381. }
  1382. ]
  1383. },
  1384. "require": {
  1385. "php": "^5.5.9 || ^7.0 || ^8.0",
  1386. "psr/log": "^1.0.1"
  1387. },
  1388. "require-dev": {
  1389. "mockery/mockery": "^0.9 || ^1.0",
  1390. "phpunit/phpunit": "^4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.3",
  1391. "symfony/var-dumper": "^2.6 || ^3.0 || ^4.0 || ^5.0"
  1392. },
  1393. "suggest": {
  1394. "symfony/var-dumper": "Pretty print complex values better with var-dumper available",
  1395. "whoops/soap": "Formats errors as SOAP responses"
  1396. },
  1397. "type": "library",
  1398. "extra": {
  1399. "branch-alias": {
  1400. "dev-master": "2.7-dev"
  1401. }
  1402. },
  1403. "autoload": {
  1404. "psr-4": {
  1405. "Whoops\\": "src/Whoops/"
  1406. }
  1407. },
  1408. "notification-url": "https://packagist.org/downloads/",
  1409. "license": [
  1410. "MIT"
  1411. ],
  1412. "authors": [
  1413. {
  1414. "name": "Filipe Dobreira",
  1415. "homepage": "https://github.com/filp",
  1416. "role": "Developer"
  1417. }
  1418. ],
  1419. "description": "php error handling for cool kids",
  1420. "homepage": "https://filp.github.io/whoops/",
  1421. "keywords": [
  1422. "error",
  1423. "exception",
  1424. "handling",
  1425. "library",
  1426. "throwable",
  1427. "whoops"
  1428. ],
  1429. "support": {
  1430. "issues": "https://github.com/filp/whoops/issues",
  1431. "source": "https://github.com/filp/whoops/tree/2.12.0"
  1432. },
  1433. "funding": [
  1434. {
  1435. "url": "https://github.com/denis-sokolov",
  1436. "type": "github"
  1437. }
  1438. ],
  1439. "time": "2021-03-30T12:00:00+00:00"
  1440. },
  1441. {
  1442. "name": "firebase/php-jwt",
  1443. "version": "v5.2.1",
  1444. "source": {
  1445. "type": "git",
  1446. "url": "https://github.com/firebase/php-jwt.git",
  1447. "reference": "f42c9110abe98dd6cfe9053c49bc86acc70b2d23"
  1448. },
  1449. "dist": {
  1450. "type": "zip",
  1451. "url": "https://api.github.com/repos/firebase/php-jwt/zipball/f42c9110abe98dd6cfe9053c49bc86acc70b2d23",
  1452. "reference": "f42c9110abe98dd6cfe9053c49bc86acc70b2d23",
  1453. "shasum": "",
  1454. "mirrors": [
  1455. {
  1456. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1457. "preferred": true
  1458. }
  1459. ]
  1460. },
  1461. "require": {
  1462. "php": ">=5.3.0"
  1463. },
  1464. "require-dev": {
  1465. "phpunit/phpunit": ">=4.8 <=9"
  1466. },
  1467. "type": "library",
  1468. "autoload": {
  1469. "psr-4": {
  1470. "Firebase\\JWT\\": "src"
  1471. }
  1472. },
  1473. "notification-url": "https://packagist.org/downloads/",
  1474. "license": [
  1475. "BSD-3-Clause"
  1476. ],
  1477. "authors": [
  1478. {
  1479. "name": "Neuman Vong",
  1480. "email": "neuman+pear@twilio.com",
  1481. "role": "Developer"
  1482. },
  1483. {
  1484. "name": "Anant Narayanan",
  1485. "email": "anant@php.net",
  1486. "role": "Developer"
  1487. }
  1488. ],
  1489. "description": "A simple library to encode and decode JSON Web Tokens (JWT) in PHP. Should conform to the current spec.",
  1490. "homepage": "https://github.com/firebase/php-jwt",
  1491. "keywords": [
  1492. "jwt",
  1493. "php"
  1494. ],
  1495. "support": {
  1496. "issues": "https://github.com/firebase/php-jwt/issues",
  1497. "source": "https://github.com/firebase/php-jwt/tree/v5.2.1"
  1498. },
  1499. "time": "2021-02-12T00:02:00+00:00"
  1500. },
  1501. {
  1502. "name": "guzzlehttp/guzzle",
  1503. "version": "6.5.5",
  1504. "source": {
  1505. "type": "git",
  1506. "url": "https://github.com/guzzle/guzzle.git",
  1507. "reference": "9d4290de1cfd701f38099ef7e183b64b4b7b0c5e"
  1508. },
  1509. "dist": {
  1510. "type": "zip",
  1511. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/9d4290de1cfd701f38099ef7e183b64b4b7b0c5e",
  1512. "reference": "9d4290de1cfd701f38099ef7e183b64b4b7b0c5e",
  1513. "shasum": "",
  1514. "mirrors": [
  1515. {
  1516. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1517. "preferred": true
  1518. }
  1519. ]
  1520. },
  1521. "require": {
  1522. "ext-json": "*",
  1523. "guzzlehttp/promises": "^1.0",
  1524. "guzzlehttp/psr7": "^1.6.1",
  1525. "php": ">=5.5",
  1526. "symfony/polyfill-intl-idn": "^1.17.0"
  1527. },
  1528. "require-dev": {
  1529. "ext-curl": "*",
  1530. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.4 || ^7.0",
  1531. "psr/log": "^1.1"
  1532. },
  1533. "suggest": {
  1534. "psr/log": "Required for using the Log middleware"
  1535. },
  1536. "type": "library",
  1537. "extra": {
  1538. "branch-alias": {
  1539. "dev-master": "6.5-dev"
  1540. }
  1541. },
  1542. "autoload": {
  1543. "psr-4": {
  1544. "GuzzleHttp\\": "src/"
  1545. },
  1546. "files": [
  1547. "src/functions_include.php"
  1548. ]
  1549. },
  1550. "notification-url": "https://packagist.org/downloads/",
  1551. "license": [
  1552. "MIT"
  1553. ],
  1554. "authors": [
  1555. {
  1556. "name": "Michael Dowling",
  1557. "email": "mtdowling@gmail.com",
  1558. "homepage": "https://github.com/mtdowling"
  1559. }
  1560. ],
  1561. "description": "Guzzle is a PHP HTTP client library",
  1562. "homepage": "http://guzzlephp.org/",
  1563. "keywords": [
  1564. "client",
  1565. "curl",
  1566. "framework",
  1567. "http",
  1568. "http client",
  1569. "rest",
  1570. "web service"
  1571. ],
  1572. "support": {
  1573. "issues": "https://github.com/guzzle/guzzle/issues",
  1574. "source": "https://github.com/guzzle/guzzle/tree/6.5"
  1575. },
  1576. "time": "2020-06-16T21:01:06+00:00"
  1577. },
  1578. {
  1579. "name": "guzzlehttp/promises",
  1580. "version": "1.4.1",
  1581. "source": {
  1582. "type": "git",
  1583. "url": "https://github.com/guzzle/promises.git",
  1584. "reference": "8e7d04f1f6450fef59366c399cfad4b9383aa30d"
  1585. },
  1586. "dist": {
  1587. "type": "zip",
  1588. "url": "https://api.github.com/repos/guzzle/promises/zipball/8e7d04f1f6450fef59366c399cfad4b9383aa30d",
  1589. "reference": "8e7d04f1f6450fef59366c399cfad4b9383aa30d",
  1590. "shasum": "",
  1591. "mirrors": [
  1592. {
  1593. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1594. "preferred": true
  1595. }
  1596. ]
  1597. },
  1598. "require": {
  1599. "php": ">=5.5"
  1600. },
  1601. "require-dev": {
  1602. "symfony/phpunit-bridge": "^4.4 || ^5.1"
  1603. },
  1604. "type": "library",
  1605. "extra": {
  1606. "branch-alias": {
  1607. "dev-master": "1.4-dev"
  1608. }
  1609. },
  1610. "autoload": {
  1611. "psr-4": {
  1612. "GuzzleHttp\\Promise\\": "src/"
  1613. },
  1614. "files": [
  1615. "src/functions_include.php"
  1616. ]
  1617. },
  1618. "notification-url": "https://packagist.org/downloads/",
  1619. "license": [
  1620. "MIT"
  1621. ],
  1622. "authors": [
  1623. {
  1624. "name": "Michael Dowling",
  1625. "email": "mtdowling@gmail.com",
  1626. "homepage": "https://github.com/mtdowling"
  1627. }
  1628. ],
  1629. "description": "Guzzle promises library",
  1630. "keywords": [
  1631. "promise"
  1632. ],
  1633. "support": {
  1634. "issues": "https://github.com/guzzle/promises/issues",
  1635. "source": "https://github.com/guzzle/promises/tree/1.4.1"
  1636. },
  1637. "time": "2021-03-07T09:25:29+00:00"
  1638. },
  1639. {
  1640. "name": "guzzlehttp/psr7",
  1641. "version": "1.8.1",
  1642. "source": {
  1643. "type": "git",
  1644. "url": "https://github.com/guzzle/psr7.git",
  1645. "reference": "35ea11d335fd638b5882ff1725228b3d35496ab1"
  1646. },
  1647. "dist": {
  1648. "type": "zip",
  1649. "url": "https://api.github.com/repos/guzzle/psr7/zipball/35ea11d335fd638b5882ff1725228b3d35496ab1",
  1650. "reference": "35ea11d335fd638b5882ff1725228b3d35496ab1",
  1651. "shasum": "",
  1652. "mirrors": [
  1653. {
  1654. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1655. "preferred": true
  1656. }
  1657. ]
  1658. },
  1659. "require": {
  1660. "php": ">=5.4.0",
  1661. "psr/http-message": "~1.0",
  1662. "ralouphie/getallheaders": "^2.0.5 || ^3.0.0"
  1663. },
  1664. "provide": {
  1665. "psr/http-message-implementation": "1.0"
  1666. },
  1667. "require-dev": {
  1668. "ext-zlib": "*",
  1669. "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.10"
  1670. },
  1671. "suggest": {
  1672. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  1673. },
  1674. "type": "library",
  1675. "extra": {
  1676. "branch-alias": {
  1677. "dev-master": "1.7-dev"
  1678. }
  1679. },
  1680. "autoload": {
  1681. "psr-4": {
  1682. "GuzzleHttp\\Psr7\\": "src/"
  1683. },
  1684. "files": [
  1685. "src/functions_include.php"
  1686. ]
  1687. },
  1688. "notification-url": "https://packagist.org/downloads/",
  1689. "license": [
  1690. "MIT"
  1691. ],
  1692. "authors": [
  1693. {
  1694. "name": "Michael Dowling",
  1695. "email": "mtdowling@gmail.com",
  1696. "homepage": "https://github.com/mtdowling"
  1697. },
  1698. {
  1699. "name": "Tobias Schultze",
  1700. "homepage": "https://github.com/Tobion"
  1701. }
  1702. ],
  1703. "description": "PSR-7 message implementation that also provides common utility methods",
  1704. "keywords": [
  1705. "http",
  1706. "message",
  1707. "psr-7",
  1708. "request",
  1709. "response",
  1710. "stream",
  1711. "uri",
  1712. "url"
  1713. ],
  1714. "support": {
  1715. "issues": "https://github.com/guzzle/psr7/issues",
  1716. "source": "https://github.com/guzzle/psr7/tree/1.8.1"
  1717. },
  1718. "time": "2021-03-21T16:25:00+00:00"
  1719. },
  1720. {
  1721. "name": "intervention/image",
  1722. "version": "2.5.1",
  1723. "source": {
  1724. "type": "git",
  1725. "url": "https://github.com/Intervention/image.git",
  1726. "reference": "abbf18d5ab8367f96b3205ca3c89fb2fa598c69e"
  1727. },
  1728. "dist": {
  1729. "type": "zip",
  1730. "url": "https://api.github.com/repos/Intervention/image/zipball/abbf18d5ab8367f96b3205ca3c89fb2fa598c69e",
  1731. "reference": "abbf18d5ab8367f96b3205ca3c89fb2fa598c69e",
  1732. "shasum": "",
  1733. "mirrors": [
  1734. {
  1735. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1736. "preferred": true
  1737. }
  1738. ]
  1739. },
  1740. "require": {
  1741. "ext-fileinfo": "*",
  1742. "guzzlehttp/psr7": "~1.1",
  1743. "php": ">=5.4.0"
  1744. },
  1745. "require-dev": {
  1746. "mockery/mockery": "~0.9.2",
  1747. "phpunit/phpunit": "^4.8 || ^5.7"
  1748. },
  1749. "suggest": {
  1750. "ext-gd": "to use GD library based image processing.",
  1751. "ext-imagick": "to use Imagick based image processing.",
  1752. "intervention/imagecache": "Caching extension for the Intervention Image library"
  1753. },
  1754. "type": "library",
  1755. "extra": {
  1756. "branch-alias": {
  1757. "dev-master": "2.4-dev"
  1758. },
  1759. "laravel": {
  1760. "providers": [
  1761. "Intervention\\Image\\ImageServiceProvider"
  1762. ],
  1763. "aliases": {
  1764. "Image": "Intervention\\Image\\Facades\\Image"
  1765. }
  1766. }
  1767. },
  1768. "autoload": {
  1769. "psr-4": {
  1770. "Intervention\\Image\\": "src/Intervention/Image"
  1771. }
  1772. },
  1773. "notification-url": "https://packagist.org/downloads/",
  1774. "license": [
  1775. "MIT"
  1776. ],
  1777. "authors": [
  1778. {
  1779. "name": "Oliver Vogel",
  1780. "email": "oliver@olivervogel.com",
  1781. "homepage": "http://olivervogel.com/"
  1782. }
  1783. ],
  1784. "description": "Image handling and manipulation library with support for Laravel integration",
  1785. "homepage": "http://image.intervention.io/",
  1786. "keywords": [
  1787. "gd",
  1788. "image",
  1789. "imagick",
  1790. "laravel",
  1791. "thumbnail",
  1792. "watermark"
  1793. ],
  1794. "support": {
  1795. "issues": "https://github.com/Intervention/image/issues",
  1796. "source": "https://github.com/Intervention/image/tree/master"
  1797. },
  1798. "time": "2019-11-02T09:15:47+00:00"
  1799. },
  1800. {
  1801. "name": "khanamiryan/qrcode-detector-decoder",
  1802. "version": "1.0.5",
  1803. "source": {
  1804. "type": "git",
  1805. "url": "https://github.com/khanamiryan/php-qrcode-detector-decoder.git",
  1806. "reference": "6c8c23003a87ecd7458807cd49372b1fb590d1f5"
  1807. },
  1808. "dist": {
  1809. "type": "zip",
  1810. "url": "https://api.github.com/repos/khanamiryan/php-qrcode-detector-decoder/zipball/6c8c23003a87ecd7458807cd49372b1fb590d1f5",
  1811. "reference": "6c8c23003a87ecd7458807cd49372b1fb590d1f5",
  1812. "shasum": "",
  1813. "mirrors": [
  1814. {
  1815. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1816. "preferred": true
  1817. }
  1818. ]
  1819. },
  1820. "require": {
  1821. "php": ">=5.6"
  1822. },
  1823. "require-dev": {
  1824. "phpunit/phpunit": "^5.7 | ^7.5 | ^8.0 | ^9.0"
  1825. },
  1826. "type": "library",
  1827. "autoload": {
  1828. "psr-4": {
  1829. "Zxing\\": "lib/"
  1830. },
  1831. "files": [
  1832. "lib/Common/customFunctions.php"
  1833. ]
  1834. },
  1835. "notification-url": "https://packagist.org/downloads/",
  1836. "license": [
  1837. "MIT"
  1838. ],
  1839. "authors": [
  1840. {
  1841. "name": "Ashot Khanamiryan",
  1842. "email": "a.khanamiryan@gmail.com",
  1843. "homepage": "https://github.com/khanamiryan",
  1844. "role": "Developer"
  1845. }
  1846. ],
  1847. "description": "QR code decoder / reader",
  1848. "homepage": "https://github.com/khanamiryan/php-qrcode-detector-decoder/",
  1849. "keywords": [
  1850. "barcode",
  1851. "qr",
  1852. "zxing"
  1853. ],
  1854. "support": {
  1855. "issues": "https://github.com/khanamiryan/php-qrcode-detector-decoder/issues",
  1856. "source": "https://github.com/khanamiryan/php-qrcode-detector-decoder/tree/1.0.5"
  1857. },
  1858. "time": "2021-04-20T18:34:35+00:00"
  1859. },
  1860. {
  1861. "name": "kitetail/zttp",
  1862. "version": "v0.6.0",
  1863. "source": {
  1864. "type": "git",
  1865. "url": "https://github.com/kitetail/zttp.git",
  1866. "reference": "92662d7f9025b4c9a0b8a585e31810461fcca435"
  1867. },
  1868. "dist": {
  1869. "type": "zip",
  1870. "url": "https://api.github.com/repos/kitetail/zttp/zipball/92662d7f9025b4c9a0b8a585e31810461fcca435",
  1871. "reference": "92662d7f9025b4c9a0b8a585e31810461fcca435",
  1872. "shasum": "",
  1873. "mirrors": [
  1874. {
  1875. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1876. "preferred": true
  1877. }
  1878. ]
  1879. },
  1880. "require": {
  1881. "guzzlehttp/guzzle": "^6.0",
  1882. "php": ">=7.0",
  1883. "tightenco/collect": "^5.4"
  1884. },
  1885. "require-dev": {
  1886. "laravel/lumen-framework": "5.5.*",
  1887. "phpunit/phpunit": "^6.0"
  1888. },
  1889. "type": "library",
  1890. "autoload": {
  1891. "files": [
  1892. "src/Zttp.php"
  1893. ]
  1894. },
  1895. "notification-url": "https://packagist.org/downloads/",
  1896. "license": [
  1897. "MIT"
  1898. ],
  1899. "authors": [
  1900. {
  1901. "name": "Adam Wathan",
  1902. "email": "adam.wathan@gmail.com"
  1903. }
  1904. ],
  1905. "description": "A developer-experience focused HTTP client, optimized for most common use cases.",
  1906. "keywords": [
  1907. "Guzzle",
  1908. "http"
  1909. ],
  1910. "support": {
  1911. "issues": "https://github.com/kitetail/zttp/issues",
  1912. "source": "https://github.com/kitetail/zttp/tree/master"
  1913. },
  1914. "time": "2019-06-10T12:18:52+00:00"
  1915. },
  1916. {
  1917. "name": "laravel/framework",
  1918. "version": "v7.30.4",
  1919. "source": {
  1920. "type": "git",
  1921. "url": "https://github.com/laravel/framework.git",
  1922. "reference": "9dd38140dc2924daa1a020a3d7a45f9ceff03df3"
  1923. },
  1924. "dist": {
  1925. "type": "zip",
  1926. "url": "https://api.github.com/repos/laravel/framework/zipball/9dd38140dc2924daa1a020a3d7a45f9ceff03df3",
  1927. "reference": "9dd38140dc2924daa1a020a3d7a45f9ceff03df3",
  1928. "shasum": "",
  1929. "mirrors": [
  1930. {
  1931. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1932. "preferred": true
  1933. }
  1934. ]
  1935. },
  1936. "require": {
  1937. "doctrine/inflector": "^1.4|^2.0",
  1938. "dragonmantank/cron-expression": "^2.3.1",
  1939. "egulias/email-validator": "^2.1.10",
  1940. "ext-json": "*",
  1941. "ext-mbstring": "*",
  1942. "ext-openssl": "*",
  1943. "league/commonmark": "^1.3",
  1944. "league/flysystem": "^1.1",
  1945. "monolog/monolog": "^2.0",
  1946. "nesbot/carbon": "^2.31",
  1947. "opis/closure": "^3.6",
  1948. "php": "^7.2.5|^8.0",
  1949. "psr/container": "^1.0",
  1950. "psr/simple-cache": "^1.0",
  1951. "ramsey/uuid": "^3.7|^4.0",
  1952. "swiftmailer/swiftmailer": "^6.0",
  1953. "symfony/console": "^5.0",
  1954. "symfony/error-handler": "^5.0",
  1955. "symfony/finder": "^5.0",
  1956. "symfony/http-foundation": "^5.0",
  1957. "symfony/http-kernel": "^5.0",
  1958. "symfony/mime": "^5.0",
  1959. "symfony/polyfill-php73": "^1.17",
  1960. "symfony/process": "^5.0",
  1961. "symfony/routing": "^5.0",
  1962. "symfony/var-dumper": "^5.0",
  1963. "tijsverkoyen/css-to-inline-styles": "^2.2.2",
  1964. "vlucas/phpdotenv": "^4.0",
  1965. "voku/portable-ascii": "^1.4.8"
  1966. },
  1967. "conflict": {
  1968. "tightenco/collect": "<5.5.33"
  1969. },
  1970. "provide": {
  1971. "psr/container-implementation": "1.0"
  1972. },
  1973. "replace": {
  1974. "illuminate/auth": "self.version",
  1975. "illuminate/broadcasting": "self.version",
  1976. "illuminate/bus": "self.version",
  1977. "illuminate/cache": "self.version",
  1978. "illuminate/config": "self.version",
  1979. "illuminate/console": "self.version",
  1980. "illuminate/container": "self.version",
  1981. "illuminate/contracts": "self.version",
  1982. "illuminate/cookie": "self.version",
  1983. "illuminate/database": "self.version",
  1984. "illuminate/encryption": "self.version",
  1985. "illuminate/events": "self.version",
  1986. "illuminate/filesystem": "self.version",
  1987. "illuminate/hashing": "self.version",
  1988. "illuminate/http": "self.version",
  1989. "illuminate/log": "self.version",
  1990. "illuminate/mail": "self.version",
  1991. "illuminate/notifications": "self.version",
  1992. "illuminate/pagination": "self.version",
  1993. "illuminate/pipeline": "self.version",
  1994. "illuminate/queue": "self.version",
  1995. "illuminate/redis": "self.version",
  1996. "illuminate/routing": "self.version",
  1997. "illuminate/session": "self.version",
  1998. "illuminate/support": "self.version",
  1999. "illuminate/testing": "self.version",
  2000. "illuminate/translation": "self.version",
  2001. "illuminate/validation": "self.version",
  2002. "illuminate/view": "self.version"
  2003. },
  2004. "require-dev": {
  2005. "aws/aws-sdk-php": "^3.155",
  2006. "doctrine/dbal": "^2.6",
  2007. "filp/whoops": "^2.8",
  2008. "guzzlehttp/guzzle": "^6.3.1|^7.0.1",
  2009. "league/flysystem-cached-adapter": "^1.0",
  2010. "mockery/mockery": "~1.3.3|^1.4.2",
  2011. "moontoast/math": "^1.1",
  2012. "orchestra/testbench-core": "^5.8",
  2013. "pda/pheanstalk": "^4.0",
  2014. "phpunit/phpunit": "^8.4|^9.3.3",
  2015. "predis/predis": "^1.1.1",
  2016. "symfony/cache": "^5.0"
  2017. },
  2018. "suggest": {
  2019. "aws/aws-sdk-php": "Required to use the SQS queue driver, DynamoDb failed job storage and SES mail driver (^3.155).",
  2020. "doctrine/dbal": "Required to rename columns and drop SQLite columns (^2.6).",
  2021. "ext-ftp": "Required to use the Flysystem FTP driver.",
  2022. "ext-gd": "Required to use Illuminate\\Http\\Testing\\FileFactory::image().",
  2023. "ext-memcached": "Required to use the memcache cache driver.",
  2024. "ext-pcntl": "Required to use all features of the queue worker.",
  2025. "ext-posix": "Required to use all features of the queue worker.",
  2026. "ext-redis": "Required to use the Redis cache and queue drivers (^4.0|^5.0).",
  2027. "fakerphp/faker": "Required to use the eloquent factory builder (^1.9.1).",
  2028. "filp/whoops": "Required for friendly error pages in development (^2.8).",
  2029. "guzzlehttp/guzzle": "Required to use the HTTP Client, Mailgun mail driver and the ping methods on schedules (^6.3.1|^7.0.1).",
  2030. "laravel/tinker": "Required to use the tinker console command (^2.0).",
  2031. "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (^1.0).",
  2032. "league/flysystem-cached-adapter": "Required to use the Flysystem cache (^1.0).",
  2033. "league/flysystem-sftp": "Required to use the Flysystem SFTP driver (^1.0).",
  2034. "mockery/mockery": "Required to use mocking (~1.3.3|^1.4.2).",
  2035. "moontoast/math": "Required to use ordered UUIDs (^1.1).",
  2036. "nyholm/psr7": "Required to use PSR-7 bridging features (^1.2).",
  2037. "pda/pheanstalk": "Required to use the beanstalk queue driver (^4.0).",
  2038. "phpunit/phpunit": "Required to use assertions and run tests (^8.4|^9.3.3).",
  2039. "predis/predis": "Required to use the predis connector (^1.1.2).",
  2040. "psr/http-message": "Required to allow Storage::put to accept a StreamInterface (^1.0).",
  2041. "pusher/pusher-php-server": "Required to use the Pusher broadcast driver (^4.0).",
  2042. "symfony/cache": "Required to PSR-6 cache bridge (^5.0).",
  2043. "symfony/filesystem": "Required to create relative storage directory symbolic links (^5.0).",
  2044. "symfony/psr-http-message-bridge": "Required to use PSR-7 bridging features (^2.0).",
  2045. "wildbit/swiftmailer-postmark": "Required to use Postmark mail driver (^3.0)."
  2046. },
  2047. "type": "library",
  2048. "extra": {
  2049. "branch-alias": {
  2050. "dev-master": "7.x-dev"
  2051. }
  2052. },
  2053. "autoload": {
  2054. "files": [
  2055. "src/Illuminate/Foundation/helpers.php",
  2056. "src/Illuminate/Support/helpers.php"
  2057. ],
  2058. "psr-4": {
  2059. "Illuminate\\": "src/Illuminate/"
  2060. }
  2061. },
  2062. "notification-url": "https://packagist.org/downloads/",
  2063. "license": [
  2064. "MIT"
  2065. ],
  2066. "authors": [
  2067. {
  2068. "name": "Taylor Otwell",
  2069. "email": "taylor@laravel.com"
  2070. }
  2071. ],
  2072. "description": "The Laravel Framework.",
  2073. "homepage": "https://laravel.com",
  2074. "keywords": [
  2075. "framework",
  2076. "laravel"
  2077. ],
  2078. "support": {
  2079. "issues": "https://github.com/laravel/framework/issues",
  2080. "source": "https://github.com/laravel/framework"
  2081. },
  2082. "time": "2021-01-21T14:10:48+00:00"
  2083. },
  2084. {
  2085. "name": "laravel/horizon",
  2086. "version": "v4.3.5",
  2087. "source": {
  2088. "type": "git",
  2089. "url": "https://github.com/laravel/horizon.git",
  2090. "reference": "b3fba0daaaaf5e84197b06dd25f3b27bb7301171"
  2091. },
  2092. "dist": {
  2093. "type": "zip",
  2094. "url": "https://api.github.com/repos/laravel/horizon/zipball/b3fba0daaaaf5e84197b06dd25f3b27bb7301171",
  2095. "reference": "b3fba0daaaaf5e84197b06dd25f3b27bb7301171",
  2096. "shasum": "",
  2097. "mirrors": [
  2098. {
  2099. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2100. "preferred": true
  2101. }
  2102. ]
  2103. },
  2104. "require": {
  2105. "cakephp/chronos": "^2.0",
  2106. "ext-json": "*",
  2107. "ext-pcntl": "*",
  2108. "ext-posix": "*",
  2109. "illuminate/contracts": "^7.0",
  2110. "illuminate/queue": "^7.0",
  2111. "illuminate/support": "^7.0",
  2112. "php": "^7.2",
  2113. "ramsey/uuid": "^3.5|^4.0",
  2114. "symfony/error-handler": "^5.0",
  2115. "symfony/process": "^5.0"
  2116. },
  2117. "require-dev": {
  2118. "mockery/mockery": "^1.0",
  2119. "orchestra/testbench": "^5.0",
  2120. "phpunit/phpunit": "^8.0",
  2121. "predis/predis": "^1.1"
  2122. },
  2123. "suggest": {
  2124. "ext-redis": "Required to use the Redis PHP driver.",
  2125. "predis/predis": "Required when not using the Redis PHP driver (^1.1)."
  2126. },
  2127. "type": "library",
  2128. "extra": {
  2129. "branch-alias": {
  2130. "dev-master": "4.x-dev"
  2131. },
  2132. "laravel": {
  2133. "providers": [
  2134. "Laravel\\Horizon\\HorizonServiceProvider"
  2135. ],
  2136. "aliases": {
  2137. "Horizon": "Laravel\\Horizon\\Horizon"
  2138. }
  2139. }
  2140. },
  2141. "autoload": {
  2142. "psr-4": {
  2143. "Laravel\\Horizon\\": "src/"
  2144. }
  2145. },
  2146. "notification-url": "https://packagist.org/downloads/",
  2147. "license": [
  2148. "MIT"
  2149. ],
  2150. "authors": [
  2151. {
  2152. "name": "Taylor Otwell",
  2153. "email": "taylor@laravel.com"
  2154. }
  2155. ],
  2156. "description": "Dashboard and code-driven configuration for Laravel queues.",
  2157. "keywords": [
  2158. "laravel",
  2159. "queue"
  2160. ],
  2161. "support": {
  2162. "issues": "https://github.com/laravel/horizon/issues",
  2163. "source": "https://github.com/laravel/horizon/tree/4.x"
  2164. },
  2165. "time": "2020-09-08T13:19:23+00:00"
  2166. },
  2167. {
  2168. "name": "laravel/tinker",
  2169. "version": "v2.6.1",
  2170. "source": {
  2171. "type": "git",
  2172. "url": "https://github.com/laravel/tinker.git",
  2173. "reference": "04ad32c1a3328081097a181875733fa51f402083"
  2174. },
  2175. "dist": {
  2176. "type": "zip",
  2177. "url": "https://api.github.com/repos/laravel/tinker/zipball/04ad32c1a3328081097a181875733fa51f402083",
  2178. "reference": "04ad32c1a3328081097a181875733fa51f402083",
  2179. "shasum": "",
  2180. "mirrors": [
  2181. {
  2182. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2183. "preferred": true
  2184. }
  2185. ]
  2186. },
  2187. "require": {
  2188. "illuminate/console": "^6.0|^7.0|^8.0",
  2189. "illuminate/contracts": "^6.0|^7.0|^8.0",
  2190. "illuminate/support": "^6.0|^7.0|^8.0",
  2191. "php": "^7.2.5|^8.0",
  2192. "psy/psysh": "^0.10.4",
  2193. "symfony/var-dumper": "^4.3.4|^5.0"
  2194. },
  2195. "require-dev": {
  2196. "mockery/mockery": "~1.3.3|^1.4.2",
  2197. "phpunit/phpunit": "^8.5.8|^9.3.3"
  2198. },
  2199. "suggest": {
  2200. "illuminate/database": "The Illuminate Database package (^6.0|^7.0|^8.0)."
  2201. },
  2202. "type": "library",
  2203. "extra": {
  2204. "branch-alias": {
  2205. "dev-master": "2.x-dev"
  2206. },
  2207. "laravel": {
  2208. "providers": [
  2209. "Laravel\\Tinker\\TinkerServiceProvider"
  2210. ]
  2211. }
  2212. },
  2213. "autoload": {
  2214. "psr-4": {
  2215. "Laravel\\Tinker\\": "src/"
  2216. }
  2217. },
  2218. "notification-url": "https://packagist.org/downloads/",
  2219. "license": [
  2220. "MIT"
  2221. ],
  2222. "authors": [
  2223. {
  2224. "name": "Taylor Otwell",
  2225. "email": "taylor@laravel.com"
  2226. }
  2227. ],
  2228. "description": "Powerful REPL for the Laravel framework.",
  2229. "keywords": [
  2230. "REPL",
  2231. "Tinker",
  2232. "laravel",
  2233. "psysh"
  2234. ],
  2235. "support": {
  2236. "issues": "https://github.com/laravel/tinker/issues",
  2237. "source": "https://github.com/laravel/tinker/tree/v2.6.1"
  2238. },
  2239. "time": "2021-03-02T16:53:12+00:00"
  2240. },
  2241. {
  2242. "name": "laravel/ui",
  2243. "version": "v2.5.0",
  2244. "source": {
  2245. "type": "git",
  2246. "url": "https://github.com/laravel/ui.git",
  2247. "reference": "d01a705763c243b07be795e9d1bb47f89260f73d"
  2248. },
  2249. "dist": {
  2250. "type": "zip",
  2251. "url": "https://api.github.com/repos/laravel/ui/zipball/d01a705763c243b07be795e9d1bb47f89260f73d",
  2252. "reference": "d01a705763c243b07be795e9d1bb47f89260f73d",
  2253. "shasum": "",
  2254. "mirrors": [
  2255. {
  2256. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2257. "preferred": true
  2258. }
  2259. ]
  2260. },
  2261. "require": {
  2262. "illuminate/console": "^7.0",
  2263. "illuminate/filesystem": "^7.0",
  2264. "illuminate/support": "^7.0",
  2265. "php": "^7.2.5|^8.0"
  2266. },
  2267. "type": "library",
  2268. "extra": {
  2269. "laravel": {
  2270. "providers": [
  2271. "Laravel\\Ui\\UiServiceProvider"
  2272. ]
  2273. }
  2274. },
  2275. "autoload": {
  2276. "psr-4": {
  2277. "Laravel\\Ui\\": "src/",
  2278. "Illuminate\\Foundation\\Auth\\": "auth-backend/"
  2279. }
  2280. },
  2281. "notification-url": "https://packagist.org/downloads/",
  2282. "license": [
  2283. "MIT"
  2284. ],
  2285. "authors": [
  2286. {
  2287. "name": "Taylor Otwell",
  2288. "email": "taylor@laravel.com"
  2289. }
  2290. ],
  2291. "description": "Laravel UI utilities and presets.",
  2292. "keywords": [
  2293. "laravel",
  2294. "ui"
  2295. ],
  2296. "support": {
  2297. "issues": "https://github.com/laravel/ui/issues",
  2298. "source": "https://github.com/laravel/ui/tree/v2.5.0"
  2299. },
  2300. "time": "2020-11-03T19:45:19+00:00"
  2301. },
  2302. {
  2303. "name": "league/commonmark",
  2304. "version": "1.5.8",
  2305. "source": {
  2306. "type": "git",
  2307. "url": "https://github.com/thephpleague/commonmark.git",
  2308. "reference": "08fa59b8e4e34ea8a773d55139ae9ac0e0aecbaf"
  2309. },
  2310. "dist": {
  2311. "type": "zip",
  2312. "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/08fa59b8e4e34ea8a773d55139ae9ac0e0aecbaf",
  2313. "reference": "08fa59b8e4e34ea8a773d55139ae9ac0e0aecbaf",
  2314. "shasum": "",
  2315. "mirrors": [
  2316. {
  2317. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2318. "preferred": true
  2319. }
  2320. ]
  2321. },
  2322. "require": {
  2323. "ext-mbstring": "*",
  2324. "php": "^7.1 || ^8.0"
  2325. },
  2326. "conflict": {
  2327. "scrutinizer/ocular": "1.7.*"
  2328. },
  2329. "require-dev": {
  2330. "cebe/markdown": "~1.0",
  2331. "commonmark/commonmark.js": "0.29.2",
  2332. "erusev/parsedown": "~1.0",
  2333. "ext-json": "*",
  2334. "github/gfm": "0.29.0",
  2335. "michelf/php-markdown": "~1.4",
  2336. "mikehaertl/php-shellcommand": "^1.4",
  2337. "phpstan/phpstan": "^0.12",
  2338. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.2",
  2339. "scrutinizer/ocular": "^1.5",
  2340. "symfony/finder": "^4.2"
  2341. },
  2342. "bin": [
  2343. "bin/commonmark"
  2344. ],
  2345. "type": "library",
  2346. "autoload": {
  2347. "psr-4": {
  2348. "League\\CommonMark\\": "src"
  2349. }
  2350. },
  2351. "notification-url": "https://packagist.org/downloads/",
  2352. "license": [
  2353. "BSD-3-Clause"
  2354. ],
  2355. "authors": [
  2356. {
  2357. "name": "Colin O'Dell",
  2358. "email": "colinodell@gmail.com",
  2359. "homepage": "https://www.colinodell.com",
  2360. "role": "Lead Developer"
  2361. }
  2362. ],
  2363. "description": "Highly-extensible PHP Markdown parser which fully supports the CommonMark spec and Github-Flavored Markdown (GFM)",
  2364. "homepage": "https://commonmark.thephpleague.com",
  2365. "keywords": [
  2366. "commonmark",
  2367. "flavored",
  2368. "gfm",
  2369. "github",
  2370. "github-flavored",
  2371. "markdown",
  2372. "md",
  2373. "parser"
  2374. ],
  2375. "support": {
  2376. "docs": "https://commonmark.thephpleague.com/",
  2377. "issues": "https://github.com/thephpleague/commonmark/issues",
  2378. "rss": "https://github.com/thephpleague/commonmark/releases.atom",
  2379. "source": "https://github.com/thephpleague/commonmark"
  2380. },
  2381. "funding": [
  2382. {
  2383. "url": "https://enjoy.gitstore.app/repositories/thephpleague/commonmark",
  2384. "type": "custom"
  2385. },
  2386. {
  2387. "url": "https://www.colinodell.com/sponsor",
  2388. "type": "custom"
  2389. },
  2390. {
  2391. "url": "https://www.paypal.me/colinpodell/10.00",
  2392. "type": "custom"
  2393. },
  2394. {
  2395. "url": "https://github.com/colinodell",
  2396. "type": "github"
  2397. },
  2398. {
  2399. "url": "https://www.patreon.com/colinodell",
  2400. "type": "patreon"
  2401. },
  2402. {
  2403. "url": "https://tidelift.com/funding/github/packagist/league/commonmark",
  2404. "type": "tidelift"
  2405. }
  2406. ],
  2407. "time": "2021-03-28T18:51:39+00:00"
  2408. },
  2409. {
  2410. "name": "league/flysystem",
  2411. "version": "1.1.3",
  2412. "source": {
  2413. "type": "git",
  2414. "url": "https://github.com/thephpleague/flysystem.git",
  2415. "reference": "9be3b16c877d477357c015cec057548cf9b2a14a"
  2416. },
  2417. "dist": {
  2418. "type": "zip",
  2419. "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/9be3b16c877d477357c015cec057548cf9b2a14a",
  2420. "reference": "9be3b16c877d477357c015cec057548cf9b2a14a",
  2421. "shasum": "",
  2422. "mirrors": [
  2423. {
  2424. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2425. "preferred": true
  2426. }
  2427. ]
  2428. },
  2429. "require": {
  2430. "ext-fileinfo": "*",
  2431. "league/mime-type-detection": "^1.3",
  2432. "php": "^7.2.5 || ^8.0"
  2433. },
  2434. "conflict": {
  2435. "league/flysystem-sftp": "<1.0.6"
  2436. },
  2437. "require-dev": {
  2438. "phpspec/prophecy": "^1.11.1",
  2439. "phpunit/phpunit": "^8.5.8"
  2440. },
  2441. "suggest": {
  2442. "ext-fileinfo": "Required for MimeType",
  2443. "ext-ftp": "Allows you to use FTP server storage",
  2444. "ext-openssl": "Allows you to use FTPS server storage",
  2445. "league/flysystem-aws-s3-v2": "Allows you to use S3 storage with AWS SDK v2",
  2446. "league/flysystem-aws-s3-v3": "Allows you to use S3 storage with AWS SDK v3",
  2447. "league/flysystem-azure": "Allows you to use Windows Azure Blob storage",
  2448. "league/flysystem-cached-adapter": "Flysystem adapter decorator for metadata caching",
  2449. "league/flysystem-eventable-filesystem": "Allows you to use EventableFilesystem",
  2450. "league/flysystem-rackspace": "Allows you to use Rackspace Cloud Files",
  2451. "league/flysystem-sftp": "Allows you to use SFTP server storage via phpseclib",
  2452. "league/flysystem-webdav": "Allows you to use WebDAV storage",
  2453. "league/flysystem-ziparchive": "Allows you to use ZipArchive adapter",
  2454. "spatie/flysystem-dropbox": "Allows you to use Dropbox storage",
  2455. "srmklive/flysystem-dropbox-v2": "Allows you to use Dropbox storage for PHP 5 applications"
  2456. },
  2457. "type": "library",
  2458. "extra": {
  2459. "branch-alias": {
  2460. "dev-master": "1.1-dev"
  2461. }
  2462. },
  2463. "autoload": {
  2464. "psr-4": {
  2465. "League\\Flysystem\\": "src/"
  2466. }
  2467. },
  2468. "notification-url": "https://packagist.org/downloads/",
  2469. "license": [
  2470. "MIT"
  2471. ],
  2472. "authors": [
  2473. {
  2474. "name": "Frank de Jonge",
  2475. "email": "info@frenky.net"
  2476. }
  2477. ],
  2478. "description": "Filesystem abstraction: Many filesystems, one API.",
  2479. "keywords": [
  2480. "Cloud Files",
  2481. "WebDAV",
  2482. "abstraction",
  2483. "aws",
  2484. "cloud",
  2485. "copy.com",
  2486. "dropbox",
  2487. "file systems",
  2488. "files",
  2489. "filesystem",
  2490. "filesystems",
  2491. "ftp",
  2492. "rackspace",
  2493. "remote",
  2494. "s3",
  2495. "sftp",
  2496. "storage"
  2497. ],
  2498. "support": {
  2499. "issues": "https://github.com/thephpleague/flysystem/issues",
  2500. "source": "https://github.com/thephpleague/flysystem/tree/1.x"
  2501. },
  2502. "funding": [
  2503. {
  2504. "url": "https://offset.earth/frankdejonge",
  2505. "type": "other"
  2506. }
  2507. ],
  2508. "time": "2020-08-23T07:39:11+00:00"
  2509. },
  2510. {
  2511. "name": "league/mime-type-detection",
  2512. "version": "1.7.0",
  2513. "source": {
  2514. "type": "git",
  2515. "url": "https://github.com/thephpleague/mime-type-detection.git",
  2516. "reference": "3b9dff8aaf7323590c1d2e443db701eb1f9aa0d3"
  2517. },
  2518. "dist": {
  2519. "type": "zip",
  2520. "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/3b9dff8aaf7323590c1d2e443db701eb1f9aa0d3",
  2521. "reference": "3b9dff8aaf7323590c1d2e443db701eb1f9aa0d3",
  2522. "shasum": "",
  2523. "mirrors": [
  2524. {
  2525. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2526. "preferred": true
  2527. }
  2528. ]
  2529. },
  2530. "require": {
  2531. "ext-fileinfo": "*",
  2532. "php": "^7.2 || ^8.0"
  2533. },
  2534. "require-dev": {
  2535. "friendsofphp/php-cs-fixer": "^2.18",
  2536. "phpstan/phpstan": "^0.12.68",
  2537. "phpunit/phpunit": "^8.5.8 || ^9.3"
  2538. },
  2539. "type": "library",
  2540. "autoload": {
  2541. "psr-4": {
  2542. "League\\MimeTypeDetection\\": "src"
  2543. }
  2544. },
  2545. "notification-url": "https://packagist.org/downloads/",
  2546. "license": [
  2547. "MIT"
  2548. ],
  2549. "authors": [
  2550. {
  2551. "name": "Frank de Jonge",
  2552. "email": "info@frankdejonge.nl"
  2553. }
  2554. ],
  2555. "description": "Mime-type detection for Flysystem",
  2556. "support": {
  2557. "issues": "https://github.com/thephpleague/mime-type-detection/issues",
  2558. "source": "https://github.com/thephpleague/mime-type-detection/tree/1.7.0"
  2559. },
  2560. "funding": [
  2561. {
  2562. "url": "https://github.com/frankdejonge",
  2563. "type": "github"
  2564. },
  2565. {
  2566. "url": "https://tidelift.com/funding/github/packagist/league/flysystem",
  2567. "type": "tidelift"
  2568. }
  2569. ],
  2570. "time": "2021-01-18T20:58:21+00:00"
  2571. },
  2572. {
  2573. "name": "maatwebsite/excel",
  2574. "version": "3.1.30",
  2575. "source": {
  2576. "type": "git",
  2577. "url": "https://github.com/Maatwebsite/Laravel-Excel.git",
  2578. "reference": "aa5d2e4d25c5c8218ea0a15103da95f5f8728953"
  2579. },
  2580. "dist": {
  2581. "type": "zip",
  2582. "url": "https://api.github.com/repos/Maatwebsite/Laravel-Excel/zipball/aa5d2e4d25c5c8218ea0a15103da95f5f8728953",
  2583. "reference": "aa5d2e4d25c5c8218ea0a15103da95f5f8728953",
  2584. "shasum": "",
  2585. "mirrors": [
  2586. {
  2587. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2588. "preferred": true
  2589. }
  2590. ]
  2591. },
  2592. "require": {
  2593. "ext-json": "*",
  2594. "illuminate/support": "5.8.*|^6.0|^7.0|^8.0",
  2595. "php": "^7.0|^8.0",
  2596. "phpoffice/phpspreadsheet": "1.16.*"
  2597. },
  2598. "require-dev": {
  2599. "orchestra/testbench": "^6.0",
  2600. "predis/predis": "^1.1"
  2601. },
  2602. "type": "library",
  2603. "extra": {
  2604. "laravel": {
  2605. "providers": [
  2606. "Maatwebsite\\Excel\\ExcelServiceProvider"
  2607. ],
  2608. "aliases": {
  2609. "Excel": "Maatwebsite\\Excel\\Facades\\Excel"
  2610. }
  2611. }
  2612. },
  2613. "autoload": {
  2614. "psr-4": {
  2615. "Maatwebsite\\Excel\\": "src/"
  2616. }
  2617. },
  2618. "notification-url": "https://packagist.org/downloads/",
  2619. "license": [
  2620. "MIT"
  2621. ],
  2622. "authors": [
  2623. {
  2624. "name": "Patrick Brouwers",
  2625. "email": "patrick@maatwebsite.nl"
  2626. }
  2627. ],
  2628. "description": "Supercharged Excel exports and imports in Laravel",
  2629. "keywords": [
  2630. "PHPExcel",
  2631. "batch",
  2632. "csv",
  2633. "excel",
  2634. "export",
  2635. "import",
  2636. "laravel",
  2637. "php",
  2638. "phpspreadsheet"
  2639. ],
  2640. "support": {
  2641. "issues": "https://github.com/Maatwebsite/Laravel-Excel/issues",
  2642. "source": "https://github.com/Maatwebsite/Laravel-Excel/tree/3.1.30"
  2643. },
  2644. "funding": [
  2645. {
  2646. "url": "https://laravel-excel.com/commercial-support",
  2647. "type": "custom"
  2648. },
  2649. {
  2650. "url": "https://github.com/patrickbrouwers",
  2651. "type": "github"
  2652. }
  2653. ],
  2654. "time": "2021-04-06T17:17:02+00:00"
  2655. },
  2656. {
  2657. "name": "maennchen/zipstream-php",
  2658. "version": "2.1.0",
  2659. "source": {
  2660. "type": "git",
  2661. "url": "https://github.com/maennchen/ZipStream-PHP.git",
  2662. "reference": "c4c5803cc1f93df3d2448478ef79394a5981cc58"
  2663. },
  2664. "dist": {
  2665. "type": "zip",
  2666. "url": "https://api.github.com/repos/maennchen/ZipStream-PHP/zipball/c4c5803cc1f93df3d2448478ef79394a5981cc58",
  2667. "reference": "c4c5803cc1f93df3d2448478ef79394a5981cc58",
  2668. "shasum": "",
  2669. "mirrors": [
  2670. {
  2671. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2672. "preferred": true
  2673. }
  2674. ]
  2675. },
  2676. "require": {
  2677. "myclabs/php-enum": "^1.5",
  2678. "php": ">= 7.1",
  2679. "psr/http-message": "^1.0",
  2680. "symfony/polyfill-mbstring": "^1.0"
  2681. },
  2682. "require-dev": {
  2683. "ext-zip": "*",
  2684. "guzzlehttp/guzzle": ">= 6.3",
  2685. "mikey179/vfsstream": "^1.6",
  2686. "phpunit/phpunit": ">= 7.5"
  2687. },
  2688. "type": "library",
  2689. "autoload": {
  2690. "psr-4": {
  2691. "ZipStream\\": "src/"
  2692. }
  2693. },
  2694. "notification-url": "https://packagist.org/downloads/",
  2695. "license": [
  2696. "MIT"
  2697. ],
  2698. "authors": [
  2699. {
  2700. "name": "Paul Duncan",
  2701. "email": "pabs@pablotron.org"
  2702. },
  2703. {
  2704. "name": "Jonatan Männchen",
  2705. "email": "jonatan@maennchen.ch"
  2706. },
  2707. {
  2708. "name": "Jesse Donat",
  2709. "email": "donatj@gmail.com"
  2710. },
  2711. {
  2712. "name": "András Kolesár",
  2713. "email": "kolesar@kolesar.hu"
  2714. }
  2715. ],
  2716. "description": "ZipStream is a library for dynamically streaming dynamic zip files from PHP without writing to the disk at all on the server.",
  2717. "keywords": [
  2718. "stream",
  2719. "zip"
  2720. ],
  2721. "support": {
  2722. "issues": "https://github.com/maennchen/ZipStream-PHP/issues",
  2723. "source": "https://github.com/maennchen/ZipStream-PHP/tree/master"
  2724. },
  2725. "funding": [
  2726. {
  2727. "url": "https://opencollective.com/zipstream",
  2728. "type": "open_collective"
  2729. }
  2730. ],
  2731. "time": "2020-05-30T13:11:16+00:00"
  2732. },
  2733. {
  2734. "name": "markbaker/complex",
  2735. "version": "2.0.0",
  2736. "source": {
  2737. "type": "git",
  2738. "url": "https://github.com/MarkBaker/PHPComplex.git",
  2739. "reference": "9999f1432fae467bc93c53f357105b4c31bb994c"
  2740. },
  2741. "dist": {
  2742. "type": "zip",
  2743. "url": "https://api.github.com/repos/MarkBaker/PHPComplex/zipball/9999f1432fae467bc93c53f357105b4c31bb994c",
  2744. "reference": "9999f1432fae467bc93c53f357105b4c31bb994c",
  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": "^7.2 || ^8.0"
  2755. },
  2756. "require-dev": {
  2757. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  2758. "phpcompatibility/php-compatibility": "^9.0",
  2759. "phpdocumentor/phpdocumentor": "2.*",
  2760. "phploc/phploc": "^4.0",
  2761. "phpmd/phpmd": "2.*",
  2762. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.3",
  2763. "sebastian/phpcpd": "^4.0",
  2764. "squizlabs/php_codesniffer": "^3.4"
  2765. },
  2766. "type": "library",
  2767. "autoload": {
  2768. "psr-4": {
  2769. "Complex\\": "classes/src/"
  2770. },
  2771. "files": [
  2772. "classes/src/functions/abs.php",
  2773. "classes/src/functions/acos.php",
  2774. "classes/src/functions/acosh.php",
  2775. "classes/src/functions/acot.php",
  2776. "classes/src/functions/acoth.php",
  2777. "classes/src/functions/acsc.php",
  2778. "classes/src/functions/acsch.php",
  2779. "classes/src/functions/argument.php",
  2780. "classes/src/functions/asec.php",
  2781. "classes/src/functions/asech.php",
  2782. "classes/src/functions/asin.php",
  2783. "classes/src/functions/asinh.php",
  2784. "classes/src/functions/atan.php",
  2785. "classes/src/functions/atanh.php",
  2786. "classes/src/functions/conjugate.php",
  2787. "classes/src/functions/cos.php",
  2788. "classes/src/functions/cosh.php",
  2789. "classes/src/functions/cot.php",
  2790. "classes/src/functions/coth.php",
  2791. "classes/src/functions/csc.php",
  2792. "classes/src/functions/csch.php",
  2793. "classes/src/functions/exp.php",
  2794. "classes/src/functions/inverse.php",
  2795. "classes/src/functions/ln.php",
  2796. "classes/src/functions/log2.php",
  2797. "classes/src/functions/log10.php",
  2798. "classes/src/functions/negative.php",
  2799. "classes/src/functions/pow.php",
  2800. "classes/src/functions/rho.php",
  2801. "classes/src/functions/sec.php",
  2802. "classes/src/functions/sech.php",
  2803. "classes/src/functions/sin.php",
  2804. "classes/src/functions/sinh.php",
  2805. "classes/src/functions/sqrt.php",
  2806. "classes/src/functions/tan.php",
  2807. "classes/src/functions/tanh.php",
  2808. "classes/src/functions/theta.php",
  2809. "classes/src/operations/add.php",
  2810. "classes/src/operations/subtract.php",
  2811. "classes/src/operations/multiply.php",
  2812. "classes/src/operations/divideby.php",
  2813. "classes/src/operations/divideinto.php"
  2814. ]
  2815. },
  2816. "notification-url": "https://packagist.org/downloads/",
  2817. "license": [
  2818. "MIT"
  2819. ],
  2820. "authors": [
  2821. {
  2822. "name": "Mark Baker",
  2823. "email": "mark@lange.demon.co.uk"
  2824. }
  2825. ],
  2826. "description": "PHP Class for working with complex numbers",
  2827. "homepage": "https://github.com/MarkBaker/PHPComplex",
  2828. "keywords": [
  2829. "complex",
  2830. "mathematics"
  2831. ],
  2832. "support": {
  2833. "issues": "https://github.com/MarkBaker/PHPComplex/issues",
  2834. "source": "https://github.com/MarkBaker/PHPComplex/tree/PHP8"
  2835. },
  2836. "time": "2020-08-26T10:42:07+00:00"
  2837. },
  2838. {
  2839. "name": "markbaker/matrix",
  2840. "version": "2.1.2",
  2841. "source": {
  2842. "type": "git",
  2843. "url": "https://github.com/MarkBaker/PHPMatrix.git",
  2844. "reference": "361c0f545c3172ee26c3d596a0aa03f0cef65e6a"
  2845. },
  2846. "dist": {
  2847. "type": "zip",
  2848. "url": "https://api.github.com/repos/MarkBaker/PHPMatrix/zipball/361c0f545c3172ee26c3d596a0aa03f0cef65e6a",
  2849. "reference": "361c0f545c3172ee26c3d596a0aa03f0cef65e6a",
  2850. "shasum": "",
  2851. "mirrors": [
  2852. {
  2853. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2854. "preferred": true
  2855. }
  2856. ]
  2857. },
  2858. "require": {
  2859. "php": "^7.1 || ^8.0"
  2860. },
  2861. "require-dev": {
  2862. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  2863. "phpcompatibility/php-compatibility": "^9.0",
  2864. "phpdocumentor/phpdocumentor": "2.*",
  2865. "phploc/phploc": "^4.0",
  2866. "phpmd/phpmd": "2.*",
  2867. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.3",
  2868. "sebastian/phpcpd": "^4.0",
  2869. "squizlabs/php_codesniffer": "^3.4"
  2870. },
  2871. "type": "library",
  2872. "autoload": {
  2873. "psr-4": {
  2874. "Matrix\\": "classes/src/"
  2875. },
  2876. "files": [
  2877. "classes/src/Functions/adjoint.php",
  2878. "classes/src/Functions/antidiagonal.php",
  2879. "classes/src/Functions/cofactors.php",
  2880. "classes/src/Functions/determinant.php",
  2881. "classes/src/Functions/diagonal.php",
  2882. "classes/src/Functions/identity.php",
  2883. "classes/src/Functions/inverse.php",
  2884. "classes/src/Functions/minors.php",
  2885. "classes/src/Functions/trace.php",
  2886. "classes/src/Functions/transpose.php",
  2887. "classes/src/Operations/add.php",
  2888. "classes/src/Operations/directsum.php",
  2889. "classes/src/Operations/subtract.php",
  2890. "classes/src/Operations/multiply.php",
  2891. "classes/src/Operations/divideby.php",
  2892. "classes/src/Operations/divideinto.php"
  2893. ]
  2894. },
  2895. "notification-url": "https://packagist.org/downloads/",
  2896. "license": [
  2897. "MIT"
  2898. ],
  2899. "authors": [
  2900. {
  2901. "name": "Mark Baker",
  2902. "email": "mark@demon-angel.eu"
  2903. }
  2904. ],
  2905. "description": "PHP Class for working with matrices",
  2906. "homepage": "https://github.com/MarkBaker/PHPMatrix",
  2907. "keywords": [
  2908. "mathematics",
  2909. "matrix",
  2910. "vector"
  2911. ],
  2912. "support": {
  2913. "issues": "https://github.com/MarkBaker/PHPMatrix/issues",
  2914. "source": "https://github.com/MarkBaker/PHPMatrix/tree/2.1.2"
  2915. },
  2916. "time": "2021-01-23T16:37:31+00:00"
  2917. },
  2918. {
  2919. "name": "monolog/monolog",
  2920. "version": "2.2.0",
  2921. "source": {
  2922. "type": "git",
  2923. "url": "https://github.com/Seldaek/monolog.git",
  2924. "reference": "1cb1cde8e8dd0f70cc0fe51354a59acad9302084"
  2925. },
  2926. "dist": {
  2927. "type": "zip",
  2928. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/1cb1cde8e8dd0f70cc0fe51354a59acad9302084",
  2929. "reference": "1cb1cde8e8dd0f70cc0fe51354a59acad9302084",
  2930. "shasum": "",
  2931. "mirrors": [
  2932. {
  2933. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2934. "preferred": true
  2935. }
  2936. ]
  2937. },
  2938. "require": {
  2939. "php": ">=7.2",
  2940. "psr/log": "^1.0.1"
  2941. },
  2942. "provide": {
  2943. "psr/log-implementation": "1.0.0"
  2944. },
  2945. "require-dev": {
  2946. "aws/aws-sdk-php": "^2.4.9 || ^3.0",
  2947. "doctrine/couchdb": "~1.0@dev",
  2948. "elasticsearch/elasticsearch": "^7",
  2949. "graylog2/gelf-php": "^1.4.2",
  2950. "mongodb/mongodb": "^1.8",
  2951. "php-amqplib/php-amqplib": "~2.4",
  2952. "php-console/php-console": "^3.1.3",
  2953. "phpspec/prophecy": "^1.6.1",
  2954. "phpstan/phpstan": "^0.12.59",
  2955. "phpunit/phpunit": "^8.5",
  2956. "predis/predis": "^1.1",
  2957. "rollbar/rollbar": "^1.3",
  2958. "ruflin/elastica": ">=0.90 <7.0.1",
  2959. "swiftmailer/swiftmailer": "^5.3|^6.0"
  2960. },
  2961. "suggest": {
  2962. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  2963. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  2964. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  2965. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  2966. "ext-mbstring": "Allow to work properly with unicode symbols",
  2967. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  2968. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  2969. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  2970. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  2971. "php-console/php-console": "Allow sending log messages to Google Chrome",
  2972. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  2973. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  2974. },
  2975. "type": "library",
  2976. "extra": {
  2977. "branch-alias": {
  2978. "dev-main": "2.x-dev"
  2979. }
  2980. },
  2981. "autoload": {
  2982. "psr-4": {
  2983. "Monolog\\": "src/Monolog"
  2984. }
  2985. },
  2986. "notification-url": "https://packagist.org/downloads/",
  2987. "license": [
  2988. "MIT"
  2989. ],
  2990. "authors": [
  2991. {
  2992. "name": "Jordi Boggiano",
  2993. "email": "j.boggiano@seld.be",
  2994. "homepage": "https://seld.be"
  2995. }
  2996. ],
  2997. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  2998. "homepage": "https://github.com/Seldaek/monolog",
  2999. "keywords": [
  3000. "log",
  3001. "logging",
  3002. "psr-3"
  3003. ],
  3004. "support": {
  3005. "issues": "https://github.com/Seldaek/monolog/issues",
  3006. "source": "https://github.com/Seldaek/monolog/tree/2.2.0"
  3007. },
  3008. "funding": [
  3009. {
  3010. "url": "https://github.com/Seldaek",
  3011. "type": "github"
  3012. },
  3013. {
  3014. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  3015. "type": "tidelift"
  3016. }
  3017. ],
  3018. "time": "2020-12-14T13:15:25+00:00"
  3019. },
  3020. {
  3021. "name": "myclabs/php-enum",
  3022. "version": "1.8.0",
  3023. "source": {
  3024. "type": "git",
  3025. "url": "https://github.com/myclabs/php-enum.git",
  3026. "reference": "46cf3d8498b095bd33727b13fd5707263af99421"
  3027. },
  3028. "dist": {
  3029. "type": "zip",
  3030. "url": "https://api.github.com/repos/myclabs/php-enum/zipball/46cf3d8498b095bd33727b13fd5707263af99421",
  3031. "reference": "46cf3d8498b095bd33727b13fd5707263af99421",
  3032. "shasum": "",
  3033. "mirrors": [
  3034. {
  3035. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3036. "preferred": true
  3037. }
  3038. ]
  3039. },
  3040. "require": {
  3041. "ext-json": "*",
  3042. "php": "^7.3 || ^8.0"
  3043. },
  3044. "require-dev": {
  3045. "phpunit/phpunit": "^9.5",
  3046. "squizlabs/php_codesniffer": "1.*",
  3047. "vimeo/psalm": "^4.5.1"
  3048. },
  3049. "type": "library",
  3050. "autoload": {
  3051. "psr-4": {
  3052. "MyCLabs\\Enum\\": "src/"
  3053. }
  3054. },
  3055. "notification-url": "https://packagist.org/downloads/",
  3056. "license": [
  3057. "MIT"
  3058. ],
  3059. "authors": [
  3060. {
  3061. "name": "PHP Enum contributors",
  3062. "homepage": "https://github.com/myclabs/php-enum/graphs/contributors"
  3063. }
  3064. ],
  3065. "description": "PHP Enum implementation",
  3066. "homepage": "http://github.com/myclabs/php-enum",
  3067. "keywords": [
  3068. "enum"
  3069. ],
  3070. "support": {
  3071. "issues": "https://github.com/myclabs/php-enum/issues",
  3072. "source": "https://github.com/myclabs/php-enum/tree/1.8.0"
  3073. },
  3074. "funding": [
  3075. {
  3076. "url": "https://github.com/mnapoli",
  3077. "type": "github"
  3078. },
  3079. {
  3080. "url": "https://tidelift.com/funding/github/packagist/myclabs/php-enum",
  3081. "type": "tidelift"
  3082. }
  3083. ],
  3084. "time": "2021-02-15T16:11:48+00:00"
  3085. },
  3086. {
  3087. "name": "nesbot/carbon",
  3088. "version": "2.46.0",
  3089. "source": {
  3090. "type": "git",
  3091. "url": "https://github.com/briannesbitt/Carbon.git",
  3092. "reference": "2fd2c4a77d58a4e95234c8a61c5df1f157a91bf4"
  3093. },
  3094. "dist": {
  3095. "type": "zip",
  3096. "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/2fd2c4a77d58a4e95234c8a61c5df1f157a91bf4",
  3097. "reference": "2fd2c4a77d58a4e95234c8a61c5df1f157a91bf4",
  3098. "shasum": "",
  3099. "mirrors": [
  3100. {
  3101. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3102. "preferred": true
  3103. }
  3104. ]
  3105. },
  3106. "require": {
  3107. "ext-json": "*",
  3108. "php": "^7.1.8 || ^8.0",
  3109. "symfony/polyfill-mbstring": "^1.0",
  3110. "symfony/translation": "^3.4 || ^4.0 || ^5.0"
  3111. },
  3112. "require-dev": {
  3113. "doctrine/orm": "^2.7",
  3114. "friendsofphp/php-cs-fixer": "^2.14 || ^3.0",
  3115. "kylekatarnls/multi-tester": "^2.0",
  3116. "phpmd/phpmd": "^2.9",
  3117. "phpstan/extension-installer": "^1.0",
  3118. "phpstan/phpstan": "^0.12.54",
  3119. "phpunit/phpunit": "^7.5.20 || ^8.5.14",
  3120. "squizlabs/php_codesniffer": "^3.4"
  3121. },
  3122. "bin": [
  3123. "bin/carbon"
  3124. ],
  3125. "type": "library",
  3126. "extra": {
  3127. "branch-alias": {
  3128. "dev-master": "2.x-dev",
  3129. "dev-3.x": "3.x-dev"
  3130. },
  3131. "laravel": {
  3132. "providers": [
  3133. "Carbon\\Laravel\\ServiceProvider"
  3134. ]
  3135. },
  3136. "phpstan": {
  3137. "includes": [
  3138. "extension.neon"
  3139. ]
  3140. }
  3141. },
  3142. "autoload": {
  3143. "psr-4": {
  3144. "Carbon\\": "src/Carbon/"
  3145. }
  3146. },
  3147. "notification-url": "https://packagist.org/downloads/",
  3148. "license": [
  3149. "MIT"
  3150. ],
  3151. "authors": [
  3152. {
  3153. "name": "Brian Nesbitt",
  3154. "email": "brian@nesbot.com",
  3155. "homepage": "http://nesbot.com"
  3156. },
  3157. {
  3158. "name": "kylekatarnls",
  3159. "homepage": "http://github.com/kylekatarnls"
  3160. }
  3161. ],
  3162. "description": "An API extension for DateTime that supports 281 different languages.",
  3163. "homepage": "http://carbon.nesbot.com",
  3164. "keywords": [
  3165. "date",
  3166. "datetime",
  3167. "time"
  3168. ],
  3169. "support": {
  3170. "issues": "https://github.com/briannesbitt/Carbon/issues",
  3171. "source": "https://github.com/briannesbitt/Carbon"
  3172. },
  3173. "funding": [
  3174. {
  3175. "url": "https://opencollective.com/Carbon",
  3176. "type": "open_collective"
  3177. },
  3178. {
  3179. "url": "https://tidelift.com/funding/github/packagist/nesbot/carbon",
  3180. "type": "tidelift"
  3181. }
  3182. ],
  3183. "time": "2021-02-24T17:30:44+00:00"
  3184. },
  3185. {
  3186. "name": "nikic/php-parser",
  3187. "version": "v4.10.4",
  3188. "source": {
  3189. "type": "git",
  3190. "url": "https://github.com/nikic/PHP-Parser.git",
  3191. "reference": "c6d052fc58cb876152f89f532b95a8d7907e7f0e"
  3192. },
  3193. "dist": {
  3194. "type": "zip",
  3195. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/c6d052fc58cb876152f89f532b95a8d7907e7f0e",
  3196. "reference": "c6d052fc58cb876152f89f532b95a8d7907e7f0e",
  3197. "shasum": "",
  3198. "mirrors": [
  3199. {
  3200. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3201. "preferred": true
  3202. }
  3203. ]
  3204. },
  3205. "require": {
  3206. "ext-tokenizer": "*",
  3207. "php": ">=7.0"
  3208. },
  3209. "require-dev": {
  3210. "ircmaxell/php-yacc": "^0.0.7",
  3211. "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0"
  3212. },
  3213. "bin": [
  3214. "bin/php-parse"
  3215. ],
  3216. "type": "library",
  3217. "extra": {
  3218. "branch-alias": {
  3219. "dev-master": "4.9-dev"
  3220. }
  3221. },
  3222. "autoload": {
  3223. "psr-4": {
  3224. "PhpParser\\": "lib/PhpParser"
  3225. }
  3226. },
  3227. "notification-url": "https://packagist.org/downloads/",
  3228. "license": [
  3229. "BSD-3-Clause"
  3230. ],
  3231. "authors": [
  3232. {
  3233. "name": "Nikita Popov"
  3234. }
  3235. ],
  3236. "description": "A PHP parser written in PHP",
  3237. "keywords": [
  3238. "parser",
  3239. "php"
  3240. ],
  3241. "support": {
  3242. "issues": "https://github.com/nikic/PHP-Parser/issues",
  3243. "source": "https://github.com/nikic/PHP-Parser/tree/v4.10.4"
  3244. },
  3245. "time": "2020-12-20T10:01:03+00:00"
  3246. },
  3247. {
  3248. "name": "opis/closure",
  3249. "version": "3.6.2",
  3250. "source": {
  3251. "type": "git",
  3252. "url": "https://github.com/opis/closure.git",
  3253. "reference": "06e2ebd25f2869e54a306dda991f7db58066f7f6"
  3254. },
  3255. "dist": {
  3256. "type": "zip",
  3257. "url": "https://api.github.com/repos/opis/closure/zipball/06e2ebd25f2869e54a306dda991f7db58066f7f6",
  3258. "reference": "06e2ebd25f2869e54a306dda991f7db58066f7f6",
  3259. "shasum": "",
  3260. "mirrors": [
  3261. {
  3262. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3263. "preferred": true
  3264. }
  3265. ]
  3266. },
  3267. "require": {
  3268. "php": "^5.4 || ^7.0 || ^8.0"
  3269. },
  3270. "require-dev": {
  3271. "jeremeamia/superclosure": "^2.0",
  3272. "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.0"
  3273. },
  3274. "type": "library",
  3275. "extra": {
  3276. "branch-alias": {
  3277. "dev-master": "3.6.x-dev"
  3278. }
  3279. },
  3280. "autoload": {
  3281. "psr-4": {
  3282. "Opis\\Closure\\": "src/"
  3283. },
  3284. "files": [
  3285. "functions.php"
  3286. ]
  3287. },
  3288. "notification-url": "https://packagist.org/downloads/",
  3289. "license": [
  3290. "MIT"
  3291. ],
  3292. "authors": [
  3293. {
  3294. "name": "Marius Sarca",
  3295. "email": "marius.sarca@gmail.com"
  3296. },
  3297. {
  3298. "name": "Sorin Sarca",
  3299. "email": "sarca_sorin@hotmail.com"
  3300. }
  3301. ],
  3302. "description": "A library that can be used to serialize closures (anonymous functions) and arbitrary objects.",
  3303. "homepage": "https://opis.io/closure",
  3304. "keywords": [
  3305. "anonymous functions",
  3306. "closure",
  3307. "function",
  3308. "serializable",
  3309. "serialization",
  3310. "serialize"
  3311. ],
  3312. "support": {
  3313. "issues": "https://github.com/opis/closure/issues",
  3314. "source": "https://github.com/opis/closure/tree/3.6.2"
  3315. },
  3316. "time": "2021-04-09T13:42:10+00:00"
  3317. },
  3318. {
  3319. "name": "overtrue/laravel-pinyin",
  3320. "version": "4.0.0",
  3321. "source": {
  3322. "type": "git",
  3323. "url": "https://github.com/overtrue/laravel-pinyin.git",
  3324. "reference": "c0b15aa49eac08bff80122010b91a0b3fe0f1e21"
  3325. },
  3326. "dist": {
  3327. "type": "zip",
  3328. "url": "https://api.github.com/repos/overtrue/laravel-pinyin/zipball/c0b15aa49eac08bff80122010b91a0b3fe0f1e21",
  3329. "reference": "c0b15aa49eac08bff80122010b91a0b3fe0f1e21",
  3330. "shasum": "",
  3331. "mirrors": [
  3332. {
  3333. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3334. "preferred": true
  3335. }
  3336. ]
  3337. },
  3338. "require": {
  3339. "overtrue/pinyin": "~4.0"
  3340. },
  3341. "type": "library",
  3342. "extra": {
  3343. "laravel": {
  3344. "providers": [
  3345. "Overtrue\\LaravelPinyin\\ServiceProvider"
  3346. ],
  3347. "aliases": {
  3348. "Pinyin": "Overtrue\\LaravelPinyin\\Facades\\Pinyin"
  3349. }
  3350. }
  3351. },
  3352. "autoload": {
  3353. "psr-4": {
  3354. "Overtrue\\LaravelPinyin\\": "src/"
  3355. },
  3356. "files": [
  3357. "src/helpers.php"
  3358. ]
  3359. },
  3360. "notification-url": "https://packagist.org/downloads/",
  3361. "license": [
  3362. "MIT"
  3363. ],
  3364. "authors": [
  3365. {
  3366. "name": "overtrue",
  3367. "email": "anzhengchao@gmail.com"
  3368. }
  3369. ],
  3370. "description": "Chinese to Pinyin translator.",
  3371. "keywords": [
  3372. "Chinese",
  3373. "Pinyin",
  3374. "laravel",
  3375. "overtrue"
  3376. ],
  3377. "support": {
  3378. "issues": "https://github.com/overtrue/laravel-pinyin/issues",
  3379. "source": "https://github.com/overtrue/laravel-pinyin/tree/master"
  3380. },
  3381. "time": "2018-10-10T09:02:46+00:00"
  3382. },
  3383. {
  3384. "name": "overtrue/pinyin",
  3385. "version": "4.0.7",
  3386. "source": {
  3387. "type": "git",
  3388. "url": "https://github.com/overtrue/pinyin.git",
  3389. "reference": "083de406907d42df2e0feaaeb83f1a3c2e0095eb"
  3390. },
  3391. "dist": {
  3392. "type": "zip",
  3393. "url": "https://api.github.com/repos/overtrue/pinyin/zipball/083de406907d42df2e0feaaeb83f1a3c2e0095eb",
  3394. "reference": "083de406907d42df2e0feaaeb83f1a3c2e0095eb",
  3395. "shasum": "",
  3396. "mirrors": [
  3397. {
  3398. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3399. "preferred": true
  3400. }
  3401. ]
  3402. },
  3403. "require": {
  3404. "php": ">=7.1"
  3405. },
  3406. "require-dev": {
  3407. "brainmaestro/composer-git-hooks": "^2.7",
  3408. "friendsofphp/php-cs-fixer": "^2.16",
  3409. "phpunit/phpunit": "~8.0"
  3410. },
  3411. "type": "library",
  3412. "extra": {
  3413. "hooks": {
  3414. "pre-commit": [
  3415. "composer test",
  3416. "composer fix-style"
  3417. ],
  3418. "pre-push": [
  3419. "composer test",
  3420. "composer check-style"
  3421. ]
  3422. }
  3423. },
  3424. "autoload": {
  3425. "psr-4": {
  3426. "Overtrue\\Pinyin\\": "src/"
  3427. },
  3428. "files": [
  3429. "src/const.php"
  3430. ]
  3431. },
  3432. "notification-url": "https://packagist.org/downloads/",
  3433. "license": [
  3434. "MIT"
  3435. ],
  3436. "authors": [
  3437. {
  3438. "name": "overtrue",
  3439. "email": "anzhengchao@gmail.com",
  3440. "homepage": "http://github.com/overtrue"
  3441. }
  3442. ],
  3443. "description": "Chinese to pinyin translator.",
  3444. "homepage": "https://github.com/overtrue/pinyin",
  3445. "keywords": [
  3446. "Chinese",
  3447. "Pinyin",
  3448. "cn2pinyin"
  3449. ],
  3450. "support": {
  3451. "issues": "https://github.com/overtrue/pinyin/issues",
  3452. "source": "https://github.com/overtrue/pinyin/tree/4.0.7"
  3453. },
  3454. "funding": [
  3455. {
  3456. "url": "https://www.patreon.com/overtrue",
  3457. "type": "patreon"
  3458. }
  3459. ],
  3460. "time": "2021-04-16T11:13:48+00:00"
  3461. },
  3462. {
  3463. "name": "paragonie/random_compat",
  3464. "version": "v9.99.100",
  3465. "source": {
  3466. "type": "git",
  3467. "url": "https://github.com/paragonie/random_compat.git",
  3468. "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a"
  3469. },
  3470. "dist": {
  3471. "type": "zip",
  3472. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/996434e5492cb4c3edcb9168db6fbb1359ef965a",
  3473. "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a",
  3474. "shasum": "",
  3475. "mirrors": [
  3476. {
  3477. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3478. "preferred": true
  3479. }
  3480. ]
  3481. },
  3482. "require": {
  3483. "php": ">= 7"
  3484. },
  3485. "require-dev": {
  3486. "phpunit/phpunit": "4.*|5.*",
  3487. "vimeo/psalm": "^1"
  3488. },
  3489. "suggest": {
  3490. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  3491. },
  3492. "type": "library",
  3493. "notification-url": "https://packagist.org/downloads/",
  3494. "license": [
  3495. "MIT"
  3496. ],
  3497. "authors": [
  3498. {
  3499. "name": "Paragon Initiative Enterprises",
  3500. "email": "security@paragonie.com",
  3501. "homepage": "https://paragonie.com"
  3502. }
  3503. ],
  3504. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  3505. "keywords": [
  3506. "csprng",
  3507. "polyfill",
  3508. "pseudorandom",
  3509. "random"
  3510. ],
  3511. "support": {
  3512. "email": "info@paragonie.com",
  3513. "issues": "https://github.com/paragonie/random_compat/issues",
  3514. "source": "https://github.com/paragonie/random_compat"
  3515. },
  3516. "time": "2020-10-15T08:29:30+00:00"
  3517. },
  3518. {
  3519. "name": "paragonie/sodium_compat",
  3520. "version": "v1.15.4",
  3521. "source": {
  3522. "type": "git",
  3523. "url": "https://github.com/paragonie/sodium_compat.git",
  3524. "reference": "8a93bfe047c7f699f819459de8ddda144cd636a4"
  3525. },
  3526. "dist": {
  3527. "type": "zip",
  3528. "url": "https://api.github.com/repos/paragonie/sodium_compat/zipball/8a93bfe047c7f699f819459de8ddda144cd636a4",
  3529. "reference": "8a93bfe047c7f699f819459de8ddda144cd636a4",
  3530. "shasum": "",
  3531. "mirrors": [
  3532. {
  3533. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3534. "preferred": true
  3535. }
  3536. ]
  3537. },
  3538. "require": {
  3539. "paragonie/random_compat": ">=1",
  3540. "php": "^5.2.4|^5.3|^5.4|^5.5|^5.6|^7|^8"
  3541. },
  3542. "require-dev": {
  3543. "phpunit/phpunit": "^3|^4|^5|^6|^7|^8|^9"
  3544. },
  3545. "suggest": {
  3546. "ext-libsodium": "PHP < 7.0: Better performance, password hashing (Argon2i), secure memory management (memzero), and better security.",
  3547. "ext-sodium": "PHP >= 7.0: Better performance, password hashing (Argon2i), secure memory management (memzero), and better security."
  3548. },
  3549. "type": "library",
  3550. "autoload": {
  3551. "files": [
  3552. "autoload.php"
  3553. ]
  3554. },
  3555. "notification-url": "https://packagist.org/downloads/",
  3556. "license": [
  3557. "ISC"
  3558. ],
  3559. "authors": [
  3560. {
  3561. "name": "Paragon Initiative Enterprises",
  3562. "email": "security@paragonie.com"
  3563. },
  3564. {
  3565. "name": "Frank Denis",
  3566. "email": "jedisct1@pureftpd.org"
  3567. }
  3568. ],
  3569. "description": "Pure PHP implementation of libsodium; uses the PHP extension if it exists",
  3570. "keywords": [
  3571. "Authentication",
  3572. "BLAKE2b",
  3573. "ChaCha20",
  3574. "ChaCha20-Poly1305",
  3575. "Chapoly",
  3576. "Curve25519",
  3577. "Ed25519",
  3578. "EdDSA",
  3579. "Edwards-curve Digital Signature Algorithm",
  3580. "Elliptic Curve Diffie-Hellman",
  3581. "Poly1305",
  3582. "Pure-PHP cryptography",
  3583. "RFC 7748",
  3584. "RFC 8032",
  3585. "Salpoly",
  3586. "Salsa20",
  3587. "X25519",
  3588. "XChaCha20-Poly1305",
  3589. "XSalsa20-Poly1305",
  3590. "Xchacha20",
  3591. "Xsalsa20",
  3592. "aead",
  3593. "cryptography",
  3594. "ecdh",
  3595. "elliptic curve",
  3596. "elliptic curve cryptography",
  3597. "encryption",
  3598. "libsodium",
  3599. "php",
  3600. "public-key cryptography",
  3601. "secret-key cryptography",
  3602. "side-channel resistant"
  3603. ],
  3604. "support": {
  3605. "issues": "https://github.com/paragonie/sodium_compat/issues",
  3606. "source": "https://github.com/paragonie/sodium_compat/tree/v1.15.4"
  3607. },
  3608. "time": "2021-04-17T09:00:05+00:00"
  3609. },
  3610. {
  3611. "name": "phpoffice/phpspreadsheet",
  3612. "version": "1.16.0",
  3613. "source": {
  3614. "type": "git",
  3615. "url": "https://github.com/PHPOffice/PhpSpreadsheet.git",
  3616. "reference": "76d4323b85129d0c368149c831a07a3e258b2b50"
  3617. },
  3618. "dist": {
  3619. "type": "zip",
  3620. "url": "https://api.github.com/repos/PHPOffice/PhpSpreadsheet/zipball/76d4323b85129d0c368149c831a07a3e258b2b50",
  3621. "reference": "76d4323b85129d0c368149c831a07a3e258b2b50",
  3622. "shasum": "",
  3623. "mirrors": [
  3624. {
  3625. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3626. "preferred": true
  3627. }
  3628. ]
  3629. },
  3630. "require": {
  3631. "ext-ctype": "*",
  3632. "ext-dom": "*",
  3633. "ext-fileinfo": "*",
  3634. "ext-gd": "*",
  3635. "ext-iconv": "*",
  3636. "ext-libxml": "*",
  3637. "ext-mbstring": "*",
  3638. "ext-simplexml": "*",
  3639. "ext-xml": "*",
  3640. "ext-xmlreader": "*",
  3641. "ext-xmlwriter": "*",
  3642. "ext-zip": "*",
  3643. "ext-zlib": "*",
  3644. "ezyang/htmlpurifier": "^4.13",
  3645. "maennchen/zipstream-php": "^2.1",
  3646. "markbaker/complex": "^1.5||^2.0",
  3647. "markbaker/matrix": "^1.2||^2.0",
  3648. "php": "^7.2||^8.0",
  3649. "psr/http-client": "^1.0",
  3650. "psr/http-factory": "^1.0",
  3651. "psr/simple-cache": "^1.0"
  3652. },
  3653. "require-dev": {
  3654. "dompdf/dompdf": "^0.8.5",
  3655. "friendsofphp/php-cs-fixer": "^2.16",
  3656. "jpgraph/jpgraph": "^4.0",
  3657. "mpdf/mpdf": "^8.0",
  3658. "phpcompatibility/php-compatibility": "^9.3",
  3659. "phpunit/phpunit": "^8.5||^9.3",
  3660. "squizlabs/php_codesniffer": "^3.5",
  3661. "tecnickcom/tcpdf": "^6.3"
  3662. },
  3663. "suggest": {
  3664. "dompdf/dompdf": "Option for rendering PDF with PDF Writer (doesn't yet support PHP8)",
  3665. "jpgraph/jpgraph": "Option for rendering charts, or including charts with PDF or HTML Writers",
  3666. "mpdf/mpdf": "Option for rendering PDF with PDF Writer",
  3667. "tecnickcom/tcpdf": "Option for rendering PDF with PDF Writer (doesn't yet support PHP8)"
  3668. },
  3669. "type": "library",
  3670. "autoload": {
  3671. "psr-4": {
  3672. "PhpOffice\\PhpSpreadsheet\\": "src/PhpSpreadsheet"
  3673. }
  3674. },
  3675. "notification-url": "https://packagist.org/downloads/",
  3676. "license": [
  3677. "MIT"
  3678. ],
  3679. "authors": [
  3680. {
  3681. "name": "Maarten Balliauw",
  3682. "homepage": "https://blog.maartenballiauw.be"
  3683. },
  3684. {
  3685. "name": "Mark Baker",
  3686. "homepage": "https://markbakeruk.net"
  3687. },
  3688. {
  3689. "name": "Franck Lefevre",
  3690. "homepage": "https://rootslabs.net"
  3691. },
  3692. {
  3693. "name": "Erik Tilt"
  3694. },
  3695. {
  3696. "name": "Adrien Crivelli"
  3697. }
  3698. ],
  3699. "description": "PHPSpreadsheet - Read, Create and Write Spreadsheet documents in PHP - Spreadsheet engine",
  3700. "homepage": "https://github.com/PHPOffice/PhpSpreadsheet",
  3701. "keywords": [
  3702. "OpenXML",
  3703. "excel",
  3704. "gnumeric",
  3705. "ods",
  3706. "php",
  3707. "spreadsheet",
  3708. "xls",
  3709. "xlsx"
  3710. ],
  3711. "support": {
  3712. "issues": "https://github.com/PHPOffice/PhpSpreadsheet/issues",
  3713. "source": "https://github.com/PHPOffice/PhpSpreadsheet/tree/1.16.0"
  3714. },
  3715. "time": "2020-12-31T18:03:49+00:00"
  3716. },
  3717. {
  3718. "name": "phpoption/phpoption",
  3719. "version": "1.7.5",
  3720. "source": {
  3721. "type": "git",
  3722. "url": "https://github.com/schmittjoh/php-option.git",
  3723. "reference": "994ecccd8f3283ecf5ac33254543eb0ac946d525"
  3724. },
  3725. "dist": {
  3726. "type": "zip",
  3727. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/994ecccd8f3283ecf5ac33254543eb0ac946d525",
  3728. "reference": "994ecccd8f3283ecf5ac33254543eb0ac946d525",
  3729. "shasum": "",
  3730. "mirrors": [
  3731. {
  3732. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3733. "preferred": true
  3734. }
  3735. ]
  3736. },
  3737. "require": {
  3738. "php": "^5.5.9 || ^7.0 || ^8.0"
  3739. },
  3740. "require-dev": {
  3741. "bamarni/composer-bin-plugin": "^1.4.1",
  3742. "phpunit/phpunit": "^4.8.35 || ^5.7.27 || ^6.5.6 || ^7.0 || ^8.0 || ^9.0"
  3743. },
  3744. "type": "library",
  3745. "extra": {
  3746. "branch-alias": {
  3747. "dev-master": "1.7-dev"
  3748. }
  3749. },
  3750. "autoload": {
  3751. "psr-4": {
  3752. "PhpOption\\": "src/PhpOption/"
  3753. }
  3754. },
  3755. "notification-url": "https://packagist.org/downloads/",
  3756. "license": [
  3757. "Apache-2.0"
  3758. ],
  3759. "authors": [
  3760. {
  3761. "name": "Johannes M. Schmitt",
  3762. "email": "schmittjoh@gmail.com"
  3763. },
  3764. {
  3765. "name": "Graham Campbell",
  3766. "email": "graham@alt-three.com"
  3767. }
  3768. ],
  3769. "description": "Option Type for PHP",
  3770. "keywords": [
  3771. "language",
  3772. "option",
  3773. "php",
  3774. "type"
  3775. ],
  3776. "support": {
  3777. "issues": "https://github.com/schmittjoh/php-option/issues",
  3778. "source": "https://github.com/schmittjoh/php-option/tree/1.7.5"
  3779. },
  3780. "funding": [
  3781. {
  3782. "url": "https://github.com/GrahamCampbell",
  3783. "type": "github"
  3784. },
  3785. {
  3786. "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption",
  3787. "type": "tidelift"
  3788. }
  3789. ],
  3790. "time": "2020-07-20T17:29:33+00:00"
  3791. },
  3792. {
  3793. "name": "predis/predis",
  3794. "version": "v1.1.7",
  3795. "source": {
  3796. "type": "git",
  3797. "url": "https://github.com/predis/predis.git",
  3798. "reference": "b240daa106d4e02f0c5b7079b41e31ddf66fddf8"
  3799. },
  3800. "dist": {
  3801. "type": "zip",
  3802. "url": "https://api.github.com/repos/predis/predis/zipball/b240daa106d4e02f0c5b7079b41e31ddf66fddf8",
  3803. "reference": "b240daa106d4e02f0c5b7079b41e31ddf66fddf8",
  3804. "shasum": "",
  3805. "mirrors": [
  3806. {
  3807. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3808. "preferred": true
  3809. }
  3810. ]
  3811. },
  3812. "require": {
  3813. "php": ">=5.3.9"
  3814. },
  3815. "require-dev": {
  3816. "phpunit/phpunit": "~4.8"
  3817. },
  3818. "suggest": {
  3819. "ext-curl": "Allows access to Webdis when paired with phpiredis",
  3820. "ext-phpiredis": "Allows faster serialization and deserialization of the Redis protocol"
  3821. },
  3822. "type": "library",
  3823. "autoload": {
  3824. "psr-4": {
  3825. "Predis\\": "src/"
  3826. }
  3827. },
  3828. "notification-url": "https://packagist.org/downloads/",
  3829. "license": [
  3830. "MIT"
  3831. ],
  3832. "authors": [
  3833. {
  3834. "name": "Daniele Alessandri",
  3835. "email": "suppakilla@gmail.com",
  3836. "homepage": "http://clorophilla.net",
  3837. "role": "Creator & Maintainer"
  3838. },
  3839. {
  3840. "name": "Till Krüss",
  3841. "homepage": "https://till.im",
  3842. "role": "Maintainer"
  3843. }
  3844. ],
  3845. "description": "Flexible and feature-complete Redis client for PHP and HHVM",
  3846. "homepage": "http://github.com/predis/predis",
  3847. "keywords": [
  3848. "nosql",
  3849. "predis",
  3850. "redis"
  3851. ],
  3852. "support": {
  3853. "issues": "https://github.com/predis/predis/issues",
  3854. "source": "https://github.com/predis/predis/tree/v1.1.7"
  3855. },
  3856. "funding": [
  3857. {
  3858. "url": "https://github.com/sponsors/tillkruss",
  3859. "type": "github"
  3860. }
  3861. ],
  3862. "time": "2021-04-04T19:34:46+00:00"
  3863. },
  3864. {
  3865. "name": "psr/container",
  3866. "version": "1.1.1",
  3867. "source": {
  3868. "type": "git",
  3869. "url": "https://github.com/php-fig/container.git",
  3870. "reference": "8622567409010282b7aeebe4bb841fe98b58dcaf"
  3871. },
  3872. "dist": {
  3873. "type": "zip",
  3874. "url": "https://api.github.com/repos/php-fig/container/zipball/8622567409010282b7aeebe4bb841fe98b58dcaf",
  3875. "reference": "8622567409010282b7aeebe4bb841fe98b58dcaf",
  3876. "shasum": "",
  3877. "mirrors": [
  3878. {
  3879. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3880. "preferred": true
  3881. }
  3882. ]
  3883. },
  3884. "require": {
  3885. "php": ">=7.2.0"
  3886. },
  3887. "type": "library",
  3888. "autoload": {
  3889. "psr-4": {
  3890. "Psr\\Container\\": "src/"
  3891. }
  3892. },
  3893. "notification-url": "https://packagist.org/downloads/",
  3894. "license": [
  3895. "MIT"
  3896. ],
  3897. "authors": [
  3898. {
  3899. "name": "PHP-FIG",
  3900. "homepage": "https://www.php-fig.org/"
  3901. }
  3902. ],
  3903. "description": "Common Container Interface (PHP FIG PSR-11)",
  3904. "homepage": "https://github.com/php-fig/container",
  3905. "keywords": [
  3906. "PSR-11",
  3907. "container",
  3908. "container-interface",
  3909. "container-interop",
  3910. "psr"
  3911. ],
  3912. "support": {
  3913. "issues": "https://github.com/php-fig/container/issues",
  3914. "source": "https://github.com/php-fig/container/tree/1.1.1"
  3915. },
  3916. "time": "2021-03-05T17:36:06+00:00"
  3917. },
  3918. {
  3919. "name": "psr/event-dispatcher",
  3920. "version": "1.0.0",
  3921. "source": {
  3922. "type": "git",
  3923. "url": "https://github.com/php-fig/event-dispatcher.git",
  3924. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  3925. },
  3926. "dist": {
  3927. "type": "zip",
  3928. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  3929. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  3930. "shasum": "",
  3931. "mirrors": [
  3932. {
  3933. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3934. "preferred": true
  3935. }
  3936. ]
  3937. },
  3938. "require": {
  3939. "php": ">=7.2.0"
  3940. },
  3941. "type": "library",
  3942. "extra": {
  3943. "branch-alias": {
  3944. "dev-master": "1.0.x-dev"
  3945. }
  3946. },
  3947. "autoload": {
  3948. "psr-4": {
  3949. "Psr\\EventDispatcher\\": "src/"
  3950. }
  3951. },
  3952. "notification-url": "https://packagist.org/downloads/",
  3953. "license": [
  3954. "MIT"
  3955. ],
  3956. "authors": [
  3957. {
  3958. "name": "PHP-FIG",
  3959. "homepage": "http://www.php-fig.org/"
  3960. }
  3961. ],
  3962. "description": "Standard interfaces for event handling.",
  3963. "keywords": [
  3964. "events",
  3965. "psr",
  3966. "psr-14"
  3967. ],
  3968. "support": {
  3969. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  3970. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  3971. },
  3972. "time": "2019-01-08T18:20:26+00:00"
  3973. },
  3974. {
  3975. "name": "psr/http-client",
  3976. "version": "1.0.1",
  3977. "source": {
  3978. "type": "git",
  3979. "url": "https://github.com/php-fig/http-client.git",
  3980. "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621"
  3981. },
  3982. "dist": {
  3983. "type": "zip",
  3984. "url": "https://api.github.com/repos/php-fig/http-client/zipball/2dfb5f6c5eff0e91e20e913f8c5452ed95b86621",
  3985. "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621",
  3986. "shasum": "",
  3987. "mirrors": [
  3988. {
  3989. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3990. "preferred": true
  3991. }
  3992. ]
  3993. },
  3994. "require": {
  3995. "php": "^7.0 || ^8.0",
  3996. "psr/http-message": "^1.0"
  3997. },
  3998. "type": "library",
  3999. "extra": {
  4000. "branch-alias": {
  4001. "dev-master": "1.0.x-dev"
  4002. }
  4003. },
  4004. "autoload": {
  4005. "psr-4": {
  4006. "Psr\\Http\\Client\\": "src/"
  4007. }
  4008. },
  4009. "notification-url": "https://packagist.org/downloads/",
  4010. "license": [
  4011. "MIT"
  4012. ],
  4013. "authors": [
  4014. {
  4015. "name": "PHP-FIG",
  4016. "homepage": "http://www.php-fig.org/"
  4017. }
  4018. ],
  4019. "description": "Common interface for HTTP clients",
  4020. "homepage": "https://github.com/php-fig/http-client",
  4021. "keywords": [
  4022. "http",
  4023. "http-client",
  4024. "psr",
  4025. "psr-18"
  4026. ],
  4027. "support": {
  4028. "source": "https://github.com/php-fig/http-client/tree/master"
  4029. },
  4030. "time": "2020-06-29T06:28:15+00:00"
  4031. },
  4032. {
  4033. "name": "psr/http-factory",
  4034. "version": "1.0.1",
  4035. "source": {
  4036. "type": "git",
  4037. "url": "https://github.com/php-fig/http-factory.git",
  4038. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be"
  4039. },
  4040. "dist": {
  4041. "type": "zip",
  4042. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  4043. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  4044. "shasum": "",
  4045. "mirrors": [
  4046. {
  4047. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4048. "preferred": true
  4049. }
  4050. ]
  4051. },
  4052. "require": {
  4053. "php": ">=7.0.0",
  4054. "psr/http-message": "^1.0"
  4055. },
  4056. "type": "library",
  4057. "extra": {
  4058. "branch-alias": {
  4059. "dev-master": "1.0.x-dev"
  4060. }
  4061. },
  4062. "autoload": {
  4063. "psr-4": {
  4064. "Psr\\Http\\Message\\": "src/"
  4065. }
  4066. },
  4067. "notification-url": "https://packagist.org/downloads/",
  4068. "license": [
  4069. "MIT"
  4070. ],
  4071. "authors": [
  4072. {
  4073. "name": "PHP-FIG",
  4074. "homepage": "http://www.php-fig.org/"
  4075. }
  4076. ],
  4077. "description": "Common interfaces for PSR-7 HTTP message factories",
  4078. "keywords": [
  4079. "factory",
  4080. "http",
  4081. "message",
  4082. "psr",
  4083. "psr-17",
  4084. "psr-7",
  4085. "request",
  4086. "response"
  4087. ],
  4088. "support": {
  4089. "source": "https://github.com/php-fig/http-factory/tree/master"
  4090. },
  4091. "time": "2019-04-30T12:38:16+00:00"
  4092. },
  4093. {
  4094. "name": "psr/http-message",
  4095. "version": "1.0.1",
  4096. "source": {
  4097. "type": "git",
  4098. "url": "https://github.com/php-fig/http-message.git",
  4099. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  4100. },
  4101. "dist": {
  4102. "type": "zip",
  4103. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  4104. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  4105. "shasum": "",
  4106. "mirrors": [
  4107. {
  4108. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4109. "preferred": true
  4110. }
  4111. ]
  4112. },
  4113. "require": {
  4114. "php": ">=5.3.0"
  4115. },
  4116. "type": "library",
  4117. "extra": {
  4118. "branch-alias": {
  4119. "dev-master": "1.0.x-dev"
  4120. }
  4121. },
  4122. "autoload": {
  4123. "psr-4": {
  4124. "Psr\\Http\\Message\\": "src/"
  4125. }
  4126. },
  4127. "notification-url": "https://packagist.org/downloads/",
  4128. "license": [
  4129. "MIT"
  4130. ],
  4131. "authors": [
  4132. {
  4133. "name": "PHP-FIG",
  4134. "homepage": "http://www.php-fig.org/"
  4135. }
  4136. ],
  4137. "description": "Common interface for HTTP messages",
  4138. "homepage": "https://github.com/php-fig/http-message",
  4139. "keywords": [
  4140. "http",
  4141. "http-message",
  4142. "psr",
  4143. "psr-7",
  4144. "request",
  4145. "response"
  4146. ],
  4147. "support": {
  4148. "source": "https://github.com/php-fig/http-message/tree/master"
  4149. },
  4150. "time": "2016-08-06T14:39:51+00:00"
  4151. },
  4152. {
  4153. "name": "psr/log",
  4154. "version": "1.1.3",
  4155. "source": {
  4156. "type": "git",
  4157. "url": "https://github.com/php-fig/log.git",
  4158. "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc"
  4159. },
  4160. "dist": {
  4161. "type": "zip",
  4162. "url": "https://api.github.com/repos/php-fig/log/zipball/0f73288fd15629204f9d42b7055f72dacbe811fc",
  4163. "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc",
  4164. "shasum": "",
  4165. "mirrors": [
  4166. {
  4167. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4168. "preferred": true
  4169. }
  4170. ]
  4171. },
  4172. "require": {
  4173. "php": ">=5.3.0"
  4174. },
  4175. "type": "library",
  4176. "extra": {
  4177. "branch-alias": {
  4178. "dev-master": "1.1.x-dev"
  4179. }
  4180. },
  4181. "autoload": {
  4182. "psr-4": {
  4183. "Psr\\Log\\": "Psr/Log/"
  4184. }
  4185. },
  4186. "notification-url": "https://packagist.org/downloads/",
  4187. "license": [
  4188. "MIT"
  4189. ],
  4190. "authors": [
  4191. {
  4192. "name": "PHP-FIG",
  4193. "homepage": "http://www.php-fig.org/"
  4194. }
  4195. ],
  4196. "description": "Common interface for logging libraries",
  4197. "homepage": "https://github.com/php-fig/log",
  4198. "keywords": [
  4199. "log",
  4200. "psr",
  4201. "psr-3"
  4202. ],
  4203. "support": {
  4204. "source": "https://github.com/php-fig/log/tree/1.1.3"
  4205. },
  4206. "time": "2020-03-23T09:12:05+00:00"
  4207. },
  4208. {
  4209. "name": "psr/simple-cache",
  4210. "version": "1.0.1",
  4211. "source": {
  4212. "type": "git",
  4213. "url": "https://github.com/php-fig/simple-cache.git",
  4214. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b"
  4215. },
  4216. "dist": {
  4217. "type": "zip",
  4218. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  4219. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  4220. "shasum": "",
  4221. "mirrors": [
  4222. {
  4223. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4224. "preferred": true
  4225. }
  4226. ]
  4227. },
  4228. "require": {
  4229. "php": ">=5.3.0"
  4230. },
  4231. "type": "library",
  4232. "extra": {
  4233. "branch-alias": {
  4234. "dev-master": "1.0.x-dev"
  4235. }
  4236. },
  4237. "autoload": {
  4238. "psr-4": {
  4239. "Psr\\SimpleCache\\": "src/"
  4240. }
  4241. },
  4242. "notification-url": "https://packagist.org/downloads/",
  4243. "license": [
  4244. "MIT"
  4245. ],
  4246. "authors": [
  4247. {
  4248. "name": "PHP-FIG",
  4249. "homepage": "http://www.php-fig.org/"
  4250. }
  4251. ],
  4252. "description": "Common interfaces for simple caching",
  4253. "keywords": [
  4254. "cache",
  4255. "caching",
  4256. "psr",
  4257. "psr-16",
  4258. "simple-cache"
  4259. ],
  4260. "support": {
  4261. "source": "https://github.com/php-fig/simple-cache/tree/master"
  4262. },
  4263. "time": "2017-10-23T01:57:42+00:00"
  4264. },
  4265. {
  4266. "name": "psy/psysh",
  4267. "version": "v0.10.8",
  4268. "source": {
  4269. "type": "git",
  4270. "url": "https://github.com/bobthecow/psysh.git",
  4271. "reference": "e4573f47750dd6c92dca5aee543fa77513cbd8d3"
  4272. },
  4273. "dist": {
  4274. "type": "zip",
  4275. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/e4573f47750dd6c92dca5aee543fa77513cbd8d3",
  4276. "reference": "e4573f47750dd6c92dca5aee543fa77513cbd8d3",
  4277. "shasum": "",
  4278. "mirrors": [
  4279. {
  4280. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4281. "preferred": true
  4282. }
  4283. ]
  4284. },
  4285. "require": {
  4286. "ext-json": "*",
  4287. "ext-tokenizer": "*",
  4288. "nikic/php-parser": "~4.0|~3.0|~2.0|~1.3",
  4289. "php": "^8.0 || ^7.0 || ^5.5.9",
  4290. "symfony/console": "~5.0|~4.0|~3.0|^2.4.2|~2.3.10",
  4291. "symfony/var-dumper": "~5.0|~4.0|~3.0|~2.7"
  4292. },
  4293. "require-dev": {
  4294. "bamarni/composer-bin-plugin": "^1.2",
  4295. "hoa/console": "3.17.*"
  4296. },
  4297. "suggest": {
  4298. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  4299. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  4300. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.",
  4301. "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history.",
  4302. "hoa/console": "A pure PHP readline implementation. You'll want this if your PHP install doesn't already support readline or libedit."
  4303. },
  4304. "bin": [
  4305. "bin/psysh"
  4306. ],
  4307. "type": "library",
  4308. "extra": {
  4309. "branch-alias": {
  4310. "dev-main": "0.10.x-dev"
  4311. }
  4312. },
  4313. "autoload": {
  4314. "files": [
  4315. "src/functions.php"
  4316. ],
  4317. "psr-4": {
  4318. "Psy\\": "src/"
  4319. }
  4320. },
  4321. "notification-url": "https://packagist.org/downloads/",
  4322. "license": [
  4323. "MIT"
  4324. ],
  4325. "authors": [
  4326. {
  4327. "name": "Justin Hileman",
  4328. "email": "justin@justinhileman.info",
  4329. "homepage": "http://justinhileman.com"
  4330. }
  4331. ],
  4332. "description": "An interactive shell for modern PHP.",
  4333. "homepage": "http://psysh.org",
  4334. "keywords": [
  4335. "REPL",
  4336. "console",
  4337. "interactive",
  4338. "shell"
  4339. ],
  4340. "support": {
  4341. "issues": "https://github.com/bobthecow/psysh/issues",
  4342. "source": "https://github.com/bobthecow/psysh/tree/v0.10.8"
  4343. },
  4344. "time": "2021-04-10T16:23:39+00:00"
  4345. },
  4346. {
  4347. "name": "pusher/pusher-php-server",
  4348. "version": "v4.1.5",
  4349. "source": {
  4350. "type": "git",
  4351. "url": "https://github.com/pusher/pusher-http-php.git",
  4352. "reference": "251f22602320c1b1aff84798fe74f3f7ee0504a9"
  4353. },
  4354. "dist": {
  4355. "type": "zip",
  4356. "url": "https://api.github.com/repos/pusher/pusher-http-php/zipball/251f22602320c1b1aff84798fe74f3f7ee0504a9",
  4357. "reference": "251f22602320c1b1aff84798fe74f3f7ee0504a9",
  4358. "shasum": "",
  4359. "mirrors": [
  4360. {
  4361. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4362. "preferred": true
  4363. }
  4364. ]
  4365. },
  4366. "require": {
  4367. "ext-curl": "*",
  4368. "paragonie/sodium_compat": "^1.6",
  4369. "php": "^7.1|^8.0",
  4370. "psr/log": "^1.0"
  4371. },
  4372. "require-dev": {
  4373. "phpunit/phpunit": "^7.2|^8.5|^9.3"
  4374. },
  4375. "type": "library",
  4376. "extra": {
  4377. "branch-alias": {
  4378. "dev-master": "3.4-dev"
  4379. }
  4380. },
  4381. "autoload": {
  4382. "psr-4": {
  4383. "Pusher\\": "src/"
  4384. }
  4385. },
  4386. "notification-url": "https://packagist.org/downloads/",
  4387. "license": [
  4388. "MIT"
  4389. ],
  4390. "description": "Library for interacting with the Pusher REST API",
  4391. "keywords": [
  4392. "events",
  4393. "messaging",
  4394. "php-pusher-server",
  4395. "publish",
  4396. "push",
  4397. "pusher",
  4398. "real time",
  4399. "real-time",
  4400. "realtime",
  4401. "rest",
  4402. "trigger"
  4403. ],
  4404. "support": {
  4405. "issues": "https://github.com/pusher/pusher-http-php/issues",
  4406. "source": "https://github.com/pusher/pusher-http-php/tree/v4.1.5"
  4407. },
  4408. "time": "2020-12-09T09:38:19+00:00"
  4409. },
  4410. {
  4411. "name": "ralouphie/getallheaders",
  4412. "version": "3.0.3",
  4413. "source": {
  4414. "type": "git",
  4415. "url": "https://github.com/ralouphie/getallheaders.git",
  4416. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  4417. },
  4418. "dist": {
  4419. "type": "zip",
  4420. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  4421. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  4422. "shasum": "",
  4423. "mirrors": [
  4424. {
  4425. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4426. "preferred": true
  4427. }
  4428. ]
  4429. },
  4430. "require": {
  4431. "php": ">=5.6"
  4432. },
  4433. "require-dev": {
  4434. "php-coveralls/php-coveralls": "^2.1",
  4435. "phpunit/phpunit": "^5 || ^6.5"
  4436. },
  4437. "type": "library",
  4438. "autoload": {
  4439. "files": [
  4440. "src/getallheaders.php"
  4441. ]
  4442. },
  4443. "notification-url": "https://packagist.org/downloads/",
  4444. "license": [
  4445. "MIT"
  4446. ],
  4447. "authors": [
  4448. {
  4449. "name": "Ralph Khattar",
  4450. "email": "ralph.khattar@gmail.com"
  4451. }
  4452. ],
  4453. "description": "A polyfill for getallheaders.",
  4454. "support": {
  4455. "issues": "https://github.com/ralouphie/getallheaders/issues",
  4456. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  4457. },
  4458. "time": "2019-03-08T08:55:37+00:00"
  4459. },
  4460. {
  4461. "name": "ramsey/collection",
  4462. "version": "1.1.3",
  4463. "source": {
  4464. "type": "git",
  4465. "url": "https://github.com/ramsey/collection.git",
  4466. "reference": "28a5c4ab2f5111db6a60b2b4ec84057e0f43b9c1"
  4467. },
  4468. "dist": {
  4469. "type": "zip",
  4470. "url": "https://api.github.com/repos/ramsey/collection/zipball/28a5c4ab2f5111db6a60b2b4ec84057e0f43b9c1",
  4471. "reference": "28a5c4ab2f5111db6a60b2b4ec84057e0f43b9c1",
  4472. "shasum": "",
  4473. "mirrors": [
  4474. {
  4475. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4476. "preferred": true
  4477. }
  4478. ]
  4479. },
  4480. "require": {
  4481. "php": "^7.2 || ^8"
  4482. },
  4483. "require-dev": {
  4484. "captainhook/captainhook": "^5.3",
  4485. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  4486. "ergebnis/composer-normalize": "^2.6",
  4487. "fakerphp/faker": "^1.5",
  4488. "hamcrest/hamcrest-php": "^2",
  4489. "jangregor/phpstan-prophecy": "^0.8",
  4490. "mockery/mockery": "^1.3",
  4491. "phpstan/extension-installer": "^1",
  4492. "phpstan/phpstan": "^0.12.32",
  4493. "phpstan/phpstan-mockery": "^0.12.5",
  4494. "phpstan/phpstan-phpunit": "^0.12.11",
  4495. "phpunit/phpunit": "^8.5 || ^9",
  4496. "psy/psysh": "^0.10.4",
  4497. "slevomat/coding-standard": "^6.3",
  4498. "squizlabs/php_codesniffer": "^3.5",
  4499. "vimeo/psalm": "^4.4"
  4500. },
  4501. "type": "library",
  4502. "autoload": {
  4503. "psr-4": {
  4504. "Ramsey\\Collection\\": "src/"
  4505. }
  4506. },
  4507. "notification-url": "https://packagist.org/downloads/",
  4508. "license": [
  4509. "MIT"
  4510. ],
  4511. "authors": [
  4512. {
  4513. "name": "Ben Ramsey",
  4514. "email": "ben@benramsey.com",
  4515. "homepage": "https://benramsey.com"
  4516. }
  4517. ],
  4518. "description": "A PHP 7.2+ library for representing and manipulating collections.",
  4519. "keywords": [
  4520. "array",
  4521. "collection",
  4522. "hash",
  4523. "map",
  4524. "queue",
  4525. "set"
  4526. ],
  4527. "support": {
  4528. "issues": "https://github.com/ramsey/collection/issues",
  4529. "source": "https://github.com/ramsey/collection/tree/1.1.3"
  4530. },
  4531. "funding": [
  4532. {
  4533. "url": "https://github.com/ramsey",
  4534. "type": "github"
  4535. },
  4536. {
  4537. "url": "https://tidelift.com/funding/github/packagist/ramsey/collection",
  4538. "type": "tidelift"
  4539. }
  4540. ],
  4541. "time": "2021-01-21T17:40:04+00:00"
  4542. },
  4543. {
  4544. "name": "ramsey/uuid",
  4545. "version": "4.1.1",
  4546. "source": {
  4547. "type": "git",
  4548. "url": "https://github.com/ramsey/uuid.git",
  4549. "reference": "cd4032040a750077205918c86049aa0f43d22947"
  4550. },
  4551. "dist": {
  4552. "type": "zip",
  4553. "url": "https://api.github.com/repos/ramsey/uuid/zipball/cd4032040a750077205918c86049aa0f43d22947",
  4554. "reference": "cd4032040a750077205918c86049aa0f43d22947",
  4555. "shasum": "",
  4556. "mirrors": [
  4557. {
  4558. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4559. "preferred": true
  4560. }
  4561. ]
  4562. },
  4563. "require": {
  4564. "brick/math": "^0.8 || ^0.9",
  4565. "ext-json": "*",
  4566. "php": "^7.2 || ^8",
  4567. "ramsey/collection": "^1.0",
  4568. "symfony/polyfill-ctype": "^1.8"
  4569. },
  4570. "replace": {
  4571. "rhumsaa/uuid": "self.version"
  4572. },
  4573. "require-dev": {
  4574. "codeception/aspect-mock": "^3",
  4575. "dealerdirect/phpcodesniffer-composer-installer": "^0.6.2 || ^0.7.0",
  4576. "doctrine/annotations": "^1.8",
  4577. "goaop/framework": "^2",
  4578. "mockery/mockery": "^1.3",
  4579. "moontoast/math": "^1.1",
  4580. "paragonie/random-lib": "^2",
  4581. "php-mock/php-mock-mockery": "^1.3",
  4582. "php-mock/php-mock-phpunit": "^2.5",
  4583. "php-parallel-lint/php-parallel-lint": "^1.1",
  4584. "phpbench/phpbench": "^0.17.1",
  4585. "phpstan/extension-installer": "^1.0",
  4586. "phpstan/phpstan": "^0.12",
  4587. "phpstan/phpstan-mockery": "^0.12",
  4588. "phpstan/phpstan-phpunit": "^0.12",
  4589. "phpunit/phpunit": "^8.5",
  4590. "psy/psysh": "^0.10.0",
  4591. "slevomat/coding-standard": "^6.0",
  4592. "squizlabs/php_codesniffer": "^3.5",
  4593. "vimeo/psalm": "3.9.4"
  4594. },
  4595. "suggest": {
  4596. "ext-bcmath": "Enables faster math with arbitrary-precision integers using BCMath.",
  4597. "ext-ctype": "Enables faster processing of character classification using ctype functions.",
  4598. "ext-gmp": "Enables faster math with arbitrary-precision integers using GMP.",
  4599. "ext-uuid": "Enables the use of PeclUuidTimeGenerator and PeclUuidRandomGenerator.",
  4600. "paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
  4601. "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type."
  4602. },
  4603. "type": "library",
  4604. "extra": {
  4605. "branch-alias": {
  4606. "dev-master": "4.x-dev"
  4607. }
  4608. },
  4609. "autoload": {
  4610. "psr-4": {
  4611. "Ramsey\\Uuid\\": "src/"
  4612. },
  4613. "files": [
  4614. "src/functions.php"
  4615. ]
  4616. },
  4617. "notification-url": "https://packagist.org/downloads/",
  4618. "license": [
  4619. "MIT"
  4620. ],
  4621. "description": "A PHP library for generating and working with universally unique identifiers (UUIDs).",
  4622. "homepage": "https://github.com/ramsey/uuid",
  4623. "keywords": [
  4624. "guid",
  4625. "identifier",
  4626. "uuid"
  4627. ],
  4628. "support": {
  4629. "issues": "https://github.com/ramsey/uuid/issues",
  4630. "rss": "https://github.com/ramsey/uuid/releases.atom",
  4631. "source": "https://github.com/ramsey/uuid"
  4632. },
  4633. "funding": [
  4634. {
  4635. "url": "https://github.com/ramsey",
  4636. "type": "github"
  4637. }
  4638. ],
  4639. "time": "2020-08-18T17:17:46+00:00"
  4640. },
  4641. {
  4642. "name": "swiftmailer/swiftmailer",
  4643. "version": "v6.2.7",
  4644. "source": {
  4645. "type": "git",
  4646. "url": "https://github.com/swiftmailer/swiftmailer.git",
  4647. "reference": "15f7faf8508e04471f666633addacf54c0ab5933"
  4648. },
  4649. "dist": {
  4650. "type": "zip",
  4651. "url": "https://api.github.com/repos/swiftmailer/swiftmailer/zipball/15f7faf8508e04471f666633addacf54c0ab5933",
  4652. "reference": "15f7faf8508e04471f666633addacf54c0ab5933",
  4653. "shasum": "",
  4654. "mirrors": [
  4655. {
  4656. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4657. "preferred": true
  4658. }
  4659. ]
  4660. },
  4661. "require": {
  4662. "egulias/email-validator": "^2.0|^3.1",
  4663. "php": ">=7.0.0",
  4664. "symfony/polyfill-iconv": "^1.0",
  4665. "symfony/polyfill-intl-idn": "^1.10",
  4666. "symfony/polyfill-mbstring": "^1.0"
  4667. },
  4668. "require-dev": {
  4669. "mockery/mockery": "^1.0",
  4670. "symfony/phpunit-bridge": "^4.4|^5.0"
  4671. },
  4672. "suggest": {
  4673. "ext-intl": "Needed to support internationalized email addresses"
  4674. },
  4675. "type": "library",
  4676. "extra": {
  4677. "branch-alias": {
  4678. "dev-master": "6.2-dev"
  4679. }
  4680. },
  4681. "autoload": {
  4682. "files": [
  4683. "lib/swift_required.php"
  4684. ]
  4685. },
  4686. "notification-url": "https://packagist.org/downloads/",
  4687. "license": [
  4688. "MIT"
  4689. ],
  4690. "authors": [
  4691. {
  4692. "name": "Chris Corbyn"
  4693. },
  4694. {
  4695. "name": "Fabien Potencier",
  4696. "email": "fabien@symfony.com"
  4697. }
  4698. ],
  4699. "description": "Swiftmailer, free feature-rich PHP mailer",
  4700. "homepage": "https://swiftmailer.symfony.com",
  4701. "keywords": [
  4702. "email",
  4703. "mail",
  4704. "mailer"
  4705. ],
  4706. "support": {
  4707. "issues": "https://github.com/swiftmailer/swiftmailer/issues",
  4708. "source": "https://github.com/swiftmailer/swiftmailer/tree/v6.2.7"
  4709. },
  4710. "funding": [
  4711. {
  4712. "url": "https://github.com/fabpot",
  4713. "type": "github"
  4714. },
  4715. {
  4716. "url": "https://tidelift.com/funding/github/packagist/swiftmailer/swiftmailer",
  4717. "type": "tidelift"
  4718. }
  4719. ],
  4720. "time": "2021-03-09T12:30:35+00:00"
  4721. },
  4722. {
  4723. "name": "symfony/console",
  4724. "version": "v5.2.6",
  4725. "source": {
  4726. "type": "git",
  4727. "url": "https://github.com/symfony/console.git",
  4728. "reference": "35f039df40a3b335ebf310f244cb242b3a83ac8d"
  4729. },
  4730. "dist": {
  4731. "type": "zip",
  4732. "url": "https://api.github.com/repos/symfony/console/zipball/35f039df40a3b335ebf310f244cb242b3a83ac8d",
  4733. "reference": "35f039df40a3b335ebf310f244cb242b3a83ac8d",
  4734. "shasum": "",
  4735. "mirrors": [
  4736. {
  4737. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4738. "preferred": true
  4739. }
  4740. ]
  4741. },
  4742. "require": {
  4743. "php": ">=7.2.5",
  4744. "symfony/polyfill-mbstring": "~1.0",
  4745. "symfony/polyfill-php73": "^1.8",
  4746. "symfony/polyfill-php80": "^1.15",
  4747. "symfony/service-contracts": "^1.1|^2",
  4748. "symfony/string": "^5.1"
  4749. },
  4750. "conflict": {
  4751. "symfony/dependency-injection": "<4.4",
  4752. "symfony/dotenv": "<5.1",
  4753. "symfony/event-dispatcher": "<4.4",
  4754. "symfony/lock": "<4.4",
  4755. "symfony/process": "<4.4"
  4756. },
  4757. "provide": {
  4758. "psr/log-implementation": "1.0"
  4759. },
  4760. "require-dev": {
  4761. "psr/log": "~1.0",
  4762. "symfony/config": "^4.4|^5.0",
  4763. "symfony/dependency-injection": "^4.4|^5.0",
  4764. "symfony/event-dispatcher": "^4.4|^5.0",
  4765. "symfony/lock": "^4.4|^5.0",
  4766. "symfony/process": "^4.4|^5.0",
  4767. "symfony/var-dumper": "^4.4|^5.0"
  4768. },
  4769. "suggest": {
  4770. "psr/log": "For using the console logger",
  4771. "symfony/event-dispatcher": "",
  4772. "symfony/lock": "",
  4773. "symfony/process": ""
  4774. },
  4775. "type": "library",
  4776. "autoload": {
  4777. "psr-4": {
  4778. "Symfony\\Component\\Console\\": ""
  4779. },
  4780. "exclude-from-classmap": [
  4781. "/Tests/"
  4782. ]
  4783. },
  4784. "notification-url": "https://packagist.org/downloads/",
  4785. "license": [
  4786. "MIT"
  4787. ],
  4788. "authors": [
  4789. {
  4790. "name": "Fabien Potencier",
  4791. "email": "fabien@symfony.com"
  4792. },
  4793. {
  4794. "name": "Symfony Community",
  4795. "homepage": "https://symfony.com/contributors"
  4796. }
  4797. ],
  4798. "description": "Eases the creation of beautiful and testable command line interfaces",
  4799. "homepage": "https://symfony.com",
  4800. "keywords": [
  4801. "cli",
  4802. "command line",
  4803. "console",
  4804. "terminal"
  4805. ],
  4806. "support": {
  4807. "source": "https://github.com/symfony/console/tree/v5.2.6"
  4808. },
  4809. "funding": [
  4810. {
  4811. "url": "https://symfony.com/sponsor",
  4812. "type": "custom"
  4813. },
  4814. {
  4815. "url": "https://github.com/fabpot",
  4816. "type": "github"
  4817. },
  4818. {
  4819. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4820. "type": "tidelift"
  4821. }
  4822. ],
  4823. "time": "2021-03-28T09:42:18+00:00"
  4824. },
  4825. {
  4826. "name": "symfony/css-selector",
  4827. "version": "v5.2.4",
  4828. "source": {
  4829. "type": "git",
  4830. "url": "https://github.com/symfony/css-selector.git",
  4831. "reference": "f65f217b3314504a1ec99c2d6ef69016bb13490f"
  4832. },
  4833. "dist": {
  4834. "type": "zip",
  4835. "url": "https://api.github.com/repos/symfony/css-selector/zipball/f65f217b3314504a1ec99c2d6ef69016bb13490f",
  4836. "reference": "f65f217b3314504a1ec99c2d6ef69016bb13490f",
  4837. "shasum": "",
  4838. "mirrors": [
  4839. {
  4840. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4841. "preferred": true
  4842. }
  4843. ]
  4844. },
  4845. "require": {
  4846. "php": ">=7.2.5"
  4847. },
  4848. "type": "library",
  4849. "autoload": {
  4850. "psr-4": {
  4851. "Symfony\\Component\\CssSelector\\": ""
  4852. },
  4853. "exclude-from-classmap": [
  4854. "/Tests/"
  4855. ]
  4856. },
  4857. "notification-url": "https://packagist.org/downloads/",
  4858. "license": [
  4859. "MIT"
  4860. ],
  4861. "authors": [
  4862. {
  4863. "name": "Fabien Potencier",
  4864. "email": "fabien@symfony.com"
  4865. },
  4866. {
  4867. "name": "Jean-François Simon",
  4868. "email": "jeanfrancois.simon@sensiolabs.com"
  4869. },
  4870. {
  4871. "name": "Symfony Community",
  4872. "homepage": "https://symfony.com/contributors"
  4873. }
  4874. ],
  4875. "description": "Converts CSS selectors to XPath expressions",
  4876. "homepage": "https://symfony.com",
  4877. "support": {
  4878. "source": "https://github.com/symfony/css-selector/tree/v5.2.4"
  4879. },
  4880. "funding": [
  4881. {
  4882. "url": "https://symfony.com/sponsor",
  4883. "type": "custom"
  4884. },
  4885. {
  4886. "url": "https://github.com/fabpot",
  4887. "type": "github"
  4888. },
  4889. {
  4890. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4891. "type": "tidelift"
  4892. }
  4893. ],
  4894. "time": "2021-01-27T10:01:46+00:00"
  4895. },
  4896. {
  4897. "name": "symfony/deprecation-contracts",
  4898. "version": "v2.4.0",
  4899. "source": {
  4900. "type": "git",
  4901. "url": "https://github.com/symfony/deprecation-contracts.git",
  4902. "reference": "5f38c8804a9e97d23e0c8d63341088cd8a22d627"
  4903. },
  4904. "dist": {
  4905. "type": "zip",
  4906. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/5f38c8804a9e97d23e0c8d63341088cd8a22d627",
  4907. "reference": "5f38c8804a9e97d23e0c8d63341088cd8a22d627",
  4908. "shasum": "",
  4909. "mirrors": [
  4910. {
  4911. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4912. "preferred": true
  4913. }
  4914. ]
  4915. },
  4916. "require": {
  4917. "php": ">=7.1"
  4918. },
  4919. "type": "library",
  4920. "extra": {
  4921. "branch-alias": {
  4922. "dev-main": "2.4-dev"
  4923. },
  4924. "thanks": {
  4925. "name": "symfony/contracts",
  4926. "url": "https://github.com/symfony/contracts"
  4927. }
  4928. },
  4929. "autoload": {
  4930. "files": [
  4931. "function.php"
  4932. ]
  4933. },
  4934. "notification-url": "https://packagist.org/downloads/",
  4935. "license": [
  4936. "MIT"
  4937. ],
  4938. "authors": [
  4939. {
  4940. "name": "Nicolas Grekas",
  4941. "email": "p@tchwork.com"
  4942. },
  4943. {
  4944. "name": "Symfony Community",
  4945. "homepage": "https://symfony.com/contributors"
  4946. }
  4947. ],
  4948. "description": "A generic function and convention to trigger deprecation notices",
  4949. "homepage": "https://symfony.com",
  4950. "support": {
  4951. "source": "https://github.com/symfony/deprecation-contracts/tree/v2.4.0"
  4952. },
  4953. "funding": [
  4954. {
  4955. "url": "https://symfony.com/sponsor",
  4956. "type": "custom"
  4957. },
  4958. {
  4959. "url": "https://github.com/fabpot",
  4960. "type": "github"
  4961. },
  4962. {
  4963. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4964. "type": "tidelift"
  4965. }
  4966. ],
  4967. "time": "2021-03-23T23:28:01+00:00"
  4968. },
  4969. {
  4970. "name": "symfony/error-handler",
  4971. "version": "v5.2.6",
  4972. "source": {
  4973. "type": "git",
  4974. "url": "https://github.com/symfony/error-handler.git",
  4975. "reference": "bdb7fb4188da7f4211e4b88350ba0dfdad002b03"
  4976. },
  4977. "dist": {
  4978. "type": "zip",
  4979. "url": "https://api.github.com/repos/symfony/error-handler/zipball/bdb7fb4188da7f4211e4b88350ba0dfdad002b03",
  4980. "reference": "bdb7fb4188da7f4211e4b88350ba0dfdad002b03",
  4981. "shasum": "",
  4982. "mirrors": [
  4983. {
  4984. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4985. "preferred": true
  4986. }
  4987. ]
  4988. },
  4989. "require": {
  4990. "php": ">=7.2.5",
  4991. "psr/log": "^1.0",
  4992. "symfony/polyfill-php80": "^1.15",
  4993. "symfony/var-dumper": "^4.4|^5.0"
  4994. },
  4995. "require-dev": {
  4996. "symfony/deprecation-contracts": "^2.1",
  4997. "symfony/http-kernel": "^4.4|^5.0",
  4998. "symfony/serializer": "^4.4|^5.0"
  4999. },
  5000. "type": "library",
  5001. "autoload": {
  5002. "psr-4": {
  5003. "Symfony\\Component\\ErrorHandler\\": ""
  5004. },
  5005. "exclude-from-classmap": [
  5006. "/Tests/"
  5007. ]
  5008. },
  5009. "notification-url": "https://packagist.org/downloads/",
  5010. "license": [
  5011. "MIT"
  5012. ],
  5013. "authors": [
  5014. {
  5015. "name": "Fabien Potencier",
  5016. "email": "fabien@symfony.com"
  5017. },
  5018. {
  5019. "name": "Symfony Community",
  5020. "homepage": "https://symfony.com/contributors"
  5021. }
  5022. ],
  5023. "description": "Provides tools to manage errors and ease debugging PHP code",
  5024. "homepage": "https://symfony.com",
  5025. "support": {
  5026. "source": "https://github.com/symfony/error-handler/tree/v5.2.6"
  5027. },
  5028. "funding": [
  5029. {
  5030. "url": "https://symfony.com/sponsor",
  5031. "type": "custom"
  5032. },
  5033. {
  5034. "url": "https://github.com/fabpot",
  5035. "type": "github"
  5036. },
  5037. {
  5038. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5039. "type": "tidelift"
  5040. }
  5041. ],
  5042. "time": "2021-03-16T09:07:47+00:00"
  5043. },
  5044. {
  5045. "name": "symfony/event-dispatcher",
  5046. "version": "v5.2.4",
  5047. "source": {
  5048. "type": "git",
  5049. "url": "https://github.com/symfony/event-dispatcher.git",
  5050. "reference": "d08d6ec121a425897951900ab692b612a61d6240"
  5051. },
  5052. "dist": {
  5053. "type": "zip",
  5054. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/d08d6ec121a425897951900ab692b612a61d6240",
  5055. "reference": "d08d6ec121a425897951900ab692b612a61d6240",
  5056. "shasum": "",
  5057. "mirrors": [
  5058. {
  5059. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5060. "preferred": true
  5061. }
  5062. ]
  5063. },
  5064. "require": {
  5065. "php": ">=7.2.5",
  5066. "symfony/deprecation-contracts": "^2.1",
  5067. "symfony/event-dispatcher-contracts": "^2",
  5068. "symfony/polyfill-php80": "^1.15"
  5069. },
  5070. "conflict": {
  5071. "symfony/dependency-injection": "<4.4"
  5072. },
  5073. "provide": {
  5074. "psr/event-dispatcher-implementation": "1.0",
  5075. "symfony/event-dispatcher-implementation": "2.0"
  5076. },
  5077. "require-dev": {
  5078. "psr/log": "~1.0",
  5079. "symfony/config": "^4.4|^5.0",
  5080. "symfony/dependency-injection": "^4.4|^5.0",
  5081. "symfony/error-handler": "^4.4|^5.0",
  5082. "symfony/expression-language": "^4.4|^5.0",
  5083. "symfony/http-foundation": "^4.4|^5.0",
  5084. "symfony/service-contracts": "^1.1|^2",
  5085. "symfony/stopwatch": "^4.4|^5.0"
  5086. },
  5087. "suggest": {
  5088. "symfony/dependency-injection": "",
  5089. "symfony/http-kernel": ""
  5090. },
  5091. "type": "library",
  5092. "autoload": {
  5093. "psr-4": {
  5094. "Symfony\\Component\\EventDispatcher\\": ""
  5095. },
  5096. "exclude-from-classmap": [
  5097. "/Tests/"
  5098. ]
  5099. },
  5100. "notification-url": "https://packagist.org/downloads/",
  5101. "license": [
  5102. "MIT"
  5103. ],
  5104. "authors": [
  5105. {
  5106. "name": "Fabien Potencier",
  5107. "email": "fabien@symfony.com"
  5108. },
  5109. {
  5110. "name": "Symfony Community",
  5111. "homepage": "https://symfony.com/contributors"
  5112. }
  5113. ],
  5114. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  5115. "homepage": "https://symfony.com",
  5116. "support": {
  5117. "source": "https://github.com/symfony/event-dispatcher/tree/v5.2.4"
  5118. },
  5119. "funding": [
  5120. {
  5121. "url": "https://symfony.com/sponsor",
  5122. "type": "custom"
  5123. },
  5124. {
  5125. "url": "https://github.com/fabpot",
  5126. "type": "github"
  5127. },
  5128. {
  5129. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5130. "type": "tidelift"
  5131. }
  5132. ],
  5133. "time": "2021-02-18T17:12:37+00:00"
  5134. },
  5135. {
  5136. "name": "symfony/event-dispatcher-contracts",
  5137. "version": "v2.4.0",
  5138. "source": {
  5139. "type": "git",
  5140. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  5141. "reference": "69fee1ad2332a7cbab3aca13591953da9cdb7a11"
  5142. },
  5143. "dist": {
  5144. "type": "zip",
  5145. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/69fee1ad2332a7cbab3aca13591953da9cdb7a11",
  5146. "reference": "69fee1ad2332a7cbab3aca13591953da9cdb7a11",
  5147. "shasum": "",
  5148. "mirrors": [
  5149. {
  5150. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5151. "preferred": true
  5152. }
  5153. ]
  5154. },
  5155. "require": {
  5156. "php": ">=7.2.5",
  5157. "psr/event-dispatcher": "^1"
  5158. },
  5159. "suggest": {
  5160. "symfony/event-dispatcher-implementation": ""
  5161. },
  5162. "type": "library",
  5163. "extra": {
  5164. "branch-alias": {
  5165. "dev-main": "2.4-dev"
  5166. },
  5167. "thanks": {
  5168. "name": "symfony/contracts",
  5169. "url": "https://github.com/symfony/contracts"
  5170. }
  5171. },
  5172. "autoload": {
  5173. "psr-4": {
  5174. "Symfony\\Contracts\\EventDispatcher\\": ""
  5175. }
  5176. },
  5177. "notification-url": "https://packagist.org/downloads/",
  5178. "license": [
  5179. "MIT"
  5180. ],
  5181. "authors": [
  5182. {
  5183. "name": "Nicolas Grekas",
  5184. "email": "p@tchwork.com"
  5185. },
  5186. {
  5187. "name": "Symfony Community",
  5188. "homepage": "https://symfony.com/contributors"
  5189. }
  5190. ],
  5191. "description": "Generic abstractions related to dispatching event",
  5192. "homepage": "https://symfony.com",
  5193. "keywords": [
  5194. "abstractions",
  5195. "contracts",
  5196. "decoupling",
  5197. "interfaces",
  5198. "interoperability",
  5199. "standards"
  5200. ],
  5201. "support": {
  5202. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v2.4.0"
  5203. },
  5204. "funding": [
  5205. {
  5206. "url": "https://symfony.com/sponsor",
  5207. "type": "custom"
  5208. },
  5209. {
  5210. "url": "https://github.com/fabpot",
  5211. "type": "github"
  5212. },
  5213. {
  5214. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5215. "type": "tidelift"
  5216. }
  5217. ],
  5218. "time": "2021-03-23T23:28:01+00:00"
  5219. },
  5220. {
  5221. "name": "symfony/finder",
  5222. "version": "v5.2.4",
  5223. "source": {
  5224. "type": "git",
  5225. "url": "https://github.com/symfony/finder.git",
  5226. "reference": "0d639a0943822626290d169965804f79400e6a04"
  5227. },
  5228. "dist": {
  5229. "type": "zip",
  5230. "url": "https://api.github.com/repos/symfony/finder/zipball/0d639a0943822626290d169965804f79400e6a04",
  5231. "reference": "0d639a0943822626290d169965804f79400e6a04",
  5232. "shasum": "",
  5233. "mirrors": [
  5234. {
  5235. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5236. "preferred": true
  5237. }
  5238. ]
  5239. },
  5240. "require": {
  5241. "php": ">=7.2.5"
  5242. },
  5243. "type": "library",
  5244. "autoload": {
  5245. "psr-4": {
  5246. "Symfony\\Component\\Finder\\": ""
  5247. },
  5248. "exclude-from-classmap": [
  5249. "/Tests/"
  5250. ]
  5251. },
  5252. "notification-url": "https://packagist.org/downloads/",
  5253. "license": [
  5254. "MIT"
  5255. ],
  5256. "authors": [
  5257. {
  5258. "name": "Fabien Potencier",
  5259. "email": "fabien@symfony.com"
  5260. },
  5261. {
  5262. "name": "Symfony Community",
  5263. "homepage": "https://symfony.com/contributors"
  5264. }
  5265. ],
  5266. "description": "Finds files and directories via an intuitive fluent interface",
  5267. "homepage": "https://symfony.com",
  5268. "support": {
  5269. "source": "https://github.com/symfony/finder/tree/v5.2.4"
  5270. },
  5271. "funding": [
  5272. {
  5273. "url": "https://symfony.com/sponsor",
  5274. "type": "custom"
  5275. },
  5276. {
  5277. "url": "https://github.com/fabpot",
  5278. "type": "github"
  5279. },
  5280. {
  5281. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5282. "type": "tidelift"
  5283. }
  5284. ],
  5285. "time": "2021-02-15T18:55:04+00:00"
  5286. },
  5287. {
  5288. "name": "symfony/http-client-contracts",
  5289. "version": "v2.4.0",
  5290. "source": {
  5291. "type": "git",
  5292. "url": "https://github.com/symfony/http-client-contracts.git",
  5293. "reference": "7e82f6084d7cae521a75ef2cb5c9457bbda785f4"
  5294. },
  5295. "dist": {
  5296. "type": "zip",
  5297. "url": "https://api.github.com/repos/symfony/http-client-contracts/zipball/7e82f6084d7cae521a75ef2cb5c9457bbda785f4",
  5298. "reference": "7e82f6084d7cae521a75ef2cb5c9457bbda785f4",
  5299. "shasum": "",
  5300. "mirrors": [
  5301. {
  5302. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5303. "preferred": true
  5304. }
  5305. ]
  5306. },
  5307. "require": {
  5308. "php": ">=7.2.5"
  5309. },
  5310. "suggest": {
  5311. "symfony/http-client-implementation": ""
  5312. },
  5313. "type": "library",
  5314. "extra": {
  5315. "branch-alias": {
  5316. "dev-main": "2.4-dev"
  5317. },
  5318. "thanks": {
  5319. "name": "symfony/contracts",
  5320. "url": "https://github.com/symfony/contracts"
  5321. }
  5322. },
  5323. "autoload": {
  5324. "psr-4": {
  5325. "Symfony\\Contracts\\HttpClient\\": ""
  5326. }
  5327. },
  5328. "notification-url": "https://packagist.org/downloads/",
  5329. "license": [
  5330. "MIT"
  5331. ],
  5332. "authors": [
  5333. {
  5334. "name": "Nicolas Grekas",
  5335. "email": "p@tchwork.com"
  5336. },
  5337. {
  5338. "name": "Symfony Community",
  5339. "homepage": "https://symfony.com/contributors"
  5340. }
  5341. ],
  5342. "description": "Generic abstractions related to HTTP clients",
  5343. "homepage": "https://symfony.com",
  5344. "keywords": [
  5345. "abstractions",
  5346. "contracts",
  5347. "decoupling",
  5348. "interfaces",
  5349. "interoperability",
  5350. "standards"
  5351. ],
  5352. "support": {
  5353. "source": "https://github.com/symfony/http-client-contracts/tree/v2.4.0"
  5354. },
  5355. "funding": [
  5356. {
  5357. "url": "https://symfony.com/sponsor",
  5358. "type": "custom"
  5359. },
  5360. {
  5361. "url": "https://github.com/fabpot",
  5362. "type": "github"
  5363. },
  5364. {
  5365. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5366. "type": "tidelift"
  5367. }
  5368. ],
  5369. "time": "2021-04-11T23:07:08+00:00"
  5370. },
  5371. {
  5372. "name": "symfony/http-foundation",
  5373. "version": "v5.2.4",
  5374. "source": {
  5375. "type": "git",
  5376. "url": "https://github.com/symfony/http-foundation.git",
  5377. "reference": "54499baea7f7418bce7b5ec92770fd0799e8e9bf"
  5378. },
  5379. "dist": {
  5380. "type": "zip",
  5381. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/54499baea7f7418bce7b5ec92770fd0799e8e9bf",
  5382. "reference": "54499baea7f7418bce7b5ec92770fd0799e8e9bf",
  5383. "shasum": "",
  5384. "mirrors": [
  5385. {
  5386. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5387. "preferred": true
  5388. }
  5389. ]
  5390. },
  5391. "require": {
  5392. "php": ">=7.2.5",
  5393. "symfony/deprecation-contracts": "^2.1",
  5394. "symfony/polyfill-mbstring": "~1.1",
  5395. "symfony/polyfill-php80": "^1.15"
  5396. },
  5397. "require-dev": {
  5398. "predis/predis": "~1.0",
  5399. "symfony/cache": "^4.4|^5.0",
  5400. "symfony/expression-language": "^4.4|^5.0",
  5401. "symfony/mime": "^4.4|^5.0"
  5402. },
  5403. "suggest": {
  5404. "symfony/mime": "To use the file extension guesser"
  5405. },
  5406. "type": "library",
  5407. "autoload": {
  5408. "psr-4": {
  5409. "Symfony\\Component\\HttpFoundation\\": ""
  5410. },
  5411. "exclude-from-classmap": [
  5412. "/Tests/"
  5413. ]
  5414. },
  5415. "notification-url": "https://packagist.org/downloads/",
  5416. "license": [
  5417. "MIT"
  5418. ],
  5419. "authors": [
  5420. {
  5421. "name": "Fabien Potencier",
  5422. "email": "fabien@symfony.com"
  5423. },
  5424. {
  5425. "name": "Symfony Community",
  5426. "homepage": "https://symfony.com/contributors"
  5427. }
  5428. ],
  5429. "description": "Defines an object-oriented layer for the HTTP specification",
  5430. "homepage": "https://symfony.com",
  5431. "support": {
  5432. "source": "https://github.com/symfony/http-foundation/tree/v5.2.4"
  5433. },
  5434. "funding": [
  5435. {
  5436. "url": "https://symfony.com/sponsor",
  5437. "type": "custom"
  5438. },
  5439. {
  5440. "url": "https://github.com/fabpot",
  5441. "type": "github"
  5442. },
  5443. {
  5444. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5445. "type": "tidelift"
  5446. }
  5447. ],
  5448. "time": "2021-02-25T17:16:57+00:00"
  5449. },
  5450. {
  5451. "name": "symfony/http-kernel",
  5452. "version": "v5.2.6",
  5453. "source": {
  5454. "type": "git",
  5455. "url": "https://github.com/symfony/http-kernel.git",
  5456. "reference": "f34de4c61ca46df73857f7f36b9a3805bdd7e3b2"
  5457. },
  5458. "dist": {
  5459. "type": "zip",
  5460. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/f34de4c61ca46df73857f7f36b9a3805bdd7e3b2",
  5461. "reference": "f34de4c61ca46df73857f7f36b9a3805bdd7e3b2",
  5462. "shasum": "",
  5463. "mirrors": [
  5464. {
  5465. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5466. "preferred": true
  5467. }
  5468. ]
  5469. },
  5470. "require": {
  5471. "php": ">=7.2.5",
  5472. "psr/log": "~1.0",
  5473. "symfony/deprecation-contracts": "^2.1",
  5474. "symfony/error-handler": "^4.4|^5.0",
  5475. "symfony/event-dispatcher": "^5.0",
  5476. "symfony/http-client-contracts": "^1.1|^2",
  5477. "symfony/http-foundation": "^4.4|^5.0",
  5478. "symfony/polyfill-ctype": "^1.8",
  5479. "symfony/polyfill-php73": "^1.9",
  5480. "symfony/polyfill-php80": "^1.15"
  5481. },
  5482. "conflict": {
  5483. "symfony/browser-kit": "<4.4",
  5484. "symfony/cache": "<5.0",
  5485. "symfony/config": "<5.0",
  5486. "symfony/console": "<4.4",
  5487. "symfony/dependency-injection": "<5.1.8",
  5488. "symfony/doctrine-bridge": "<5.0",
  5489. "symfony/form": "<5.0",
  5490. "symfony/http-client": "<5.0",
  5491. "symfony/mailer": "<5.0",
  5492. "symfony/messenger": "<5.0",
  5493. "symfony/translation": "<5.0",
  5494. "symfony/twig-bridge": "<5.0",
  5495. "symfony/validator": "<5.0",
  5496. "twig/twig": "<2.13"
  5497. },
  5498. "provide": {
  5499. "psr/log-implementation": "1.0"
  5500. },
  5501. "require-dev": {
  5502. "psr/cache": "^1.0|^2.0|^3.0",
  5503. "symfony/browser-kit": "^4.4|^5.0",
  5504. "symfony/config": "^5.0",
  5505. "symfony/console": "^4.4|^5.0",
  5506. "symfony/css-selector": "^4.4|^5.0",
  5507. "symfony/dependency-injection": "^5.1.8",
  5508. "symfony/dom-crawler": "^4.4|^5.0",
  5509. "symfony/expression-language": "^4.4|^5.0",
  5510. "symfony/finder": "^4.4|^5.0",
  5511. "symfony/process": "^4.4|^5.0",
  5512. "symfony/routing": "^4.4|^5.0",
  5513. "symfony/stopwatch": "^4.4|^5.0",
  5514. "symfony/translation": "^4.4|^5.0",
  5515. "symfony/translation-contracts": "^1.1|^2",
  5516. "twig/twig": "^2.13|^3.0.4"
  5517. },
  5518. "suggest": {
  5519. "symfony/browser-kit": "",
  5520. "symfony/config": "",
  5521. "symfony/console": "",
  5522. "symfony/dependency-injection": ""
  5523. },
  5524. "type": "library",
  5525. "autoload": {
  5526. "psr-4": {
  5527. "Symfony\\Component\\HttpKernel\\": ""
  5528. },
  5529. "exclude-from-classmap": [
  5530. "/Tests/"
  5531. ]
  5532. },
  5533. "notification-url": "https://packagist.org/downloads/",
  5534. "license": [
  5535. "MIT"
  5536. ],
  5537. "authors": [
  5538. {
  5539. "name": "Fabien Potencier",
  5540. "email": "fabien@symfony.com"
  5541. },
  5542. {
  5543. "name": "Symfony Community",
  5544. "homepage": "https://symfony.com/contributors"
  5545. }
  5546. ],
  5547. "description": "Provides a structured process for converting a Request into a Response",
  5548. "homepage": "https://symfony.com",
  5549. "support": {
  5550. "source": "https://github.com/symfony/http-kernel/tree/v5.2.6"
  5551. },
  5552. "funding": [
  5553. {
  5554. "url": "https://symfony.com/sponsor",
  5555. "type": "custom"
  5556. },
  5557. {
  5558. "url": "https://github.com/fabpot",
  5559. "type": "github"
  5560. },
  5561. {
  5562. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5563. "type": "tidelift"
  5564. }
  5565. ],
  5566. "time": "2021-03-29T05:16:58+00:00"
  5567. },
  5568. {
  5569. "name": "symfony/mime",
  5570. "version": "v5.2.6",
  5571. "source": {
  5572. "type": "git",
  5573. "url": "https://github.com/symfony/mime.git",
  5574. "reference": "1b2092244374cbe48ae733673f2ca0818b37197b"
  5575. },
  5576. "dist": {
  5577. "type": "zip",
  5578. "url": "https://api.github.com/repos/symfony/mime/zipball/1b2092244374cbe48ae733673f2ca0818b37197b",
  5579. "reference": "1b2092244374cbe48ae733673f2ca0818b37197b",
  5580. "shasum": "",
  5581. "mirrors": [
  5582. {
  5583. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5584. "preferred": true
  5585. }
  5586. ]
  5587. },
  5588. "require": {
  5589. "php": ">=7.2.5",
  5590. "symfony/deprecation-contracts": "^2.1",
  5591. "symfony/polyfill-intl-idn": "^1.10",
  5592. "symfony/polyfill-mbstring": "^1.0",
  5593. "symfony/polyfill-php80": "^1.15"
  5594. },
  5595. "conflict": {
  5596. "egulias/email-validator": "~3.0.0",
  5597. "phpdocumentor/reflection-docblock": "<3.2.2",
  5598. "phpdocumentor/type-resolver": "<1.4.0",
  5599. "symfony/mailer": "<4.4"
  5600. },
  5601. "require-dev": {
  5602. "egulias/email-validator": "^2.1.10|^3.1",
  5603. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  5604. "symfony/dependency-injection": "^4.4|^5.0",
  5605. "symfony/property-access": "^4.4|^5.1",
  5606. "symfony/property-info": "^4.4|^5.1",
  5607. "symfony/serializer": "^5.2"
  5608. },
  5609. "type": "library",
  5610. "autoload": {
  5611. "psr-4": {
  5612. "Symfony\\Component\\Mime\\": ""
  5613. },
  5614. "exclude-from-classmap": [
  5615. "/Tests/"
  5616. ]
  5617. },
  5618. "notification-url": "https://packagist.org/downloads/",
  5619. "license": [
  5620. "MIT"
  5621. ],
  5622. "authors": [
  5623. {
  5624. "name": "Fabien Potencier",
  5625. "email": "fabien@symfony.com"
  5626. },
  5627. {
  5628. "name": "Symfony Community",
  5629. "homepage": "https://symfony.com/contributors"
  5630. }
  5631. ],
  5632. "description": "Allows manipulating MIME messages",
  5633. "homepage": "https://symfony.com",
  5634. "keywords": [
  5635. "mime",
  5636. "mime-type"
  5637. ],
  5638. "support": {
  5639. "source": "https://github.com/symfony/mime/tree/v5.2.6"
  5640. },
  5641. "funding": [
  5642. {
  5643. "url": "https://symfony.com/sponsor",
  5644. "type": "custom"
  5645. },
  5646. {
  5647. "url": "https://github.com/fabpot",
  5648. "type": "github"
  5649. },
  5650. {
  5651. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5652. "type": "tidelift"
  5653. }
  5654. ],
  5655. "time": "2021-03-12T13:18:39+00:00"
  5656. },
  5657. {
  5658. "name": "symfony/options-resolver",
  5659. "version": "v5.2.4",
  5660. "source": {
  5661. "type": "git",
  5662. "url": "https://github.com/symfony/options-resolver.git",
  5663. "reference": "5d0f633f9bbfcf7ec642a2b5037268e61b0a62ce"
  5664. },
  5665. "dist": {
  5666. "type": "zip",
  5667. "url": "https://api.github.com/repos/symfony/options-resolver/zipball/5d0f633f9bbfcf7ec642a2b5037268e61b0a62ce",
  5668. "reference": "5d0f633f9bbfcf7ec642a2b5037268e61b0a62ce",
  5669. "shasum": "",
  5670. "mirrors": [
  5671. {
  5672. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5673. "preferred": true
  5674. }
  5675. ]
  5676. },
  5677. "require": {
  5678. "php": ">=7.2.5",
  5679. "symfony/deprecation-contracts": "^2.1",
  5680. "symfony/polyfill-php73": "~1.0",
  5681. "symfony/polyfill-php80": "^1.15"
  5682. },
  5683. "type": "library",
  5684. "autoload": {
  5685. "psr-4": {
  5686. "Symfony\\Component\\OptionsResolver\\": ""
  5687. },
  5688. "exclude-from-classmap": [
  5689. "/Tests/"
  5690. ]
  5691. },
  5692. "notification-url": "https://packagist.org/downloads/",
  5693. "license": [
  5694. "MIT"
  5695. ],
  5696. "authors": [
  5697. {
  5698. "name": "Fabien Potencier",
  5699. "email": "fabien@symfony.com"
  5700. },
  5701. {
  5702. "name": "Symfony Community",
  5703. "homepage": "https://symfony.com/contributors"
  5704. }
  5705. ],
  5706. "description": "Provides an improved replacement for the array_replace PHP function",
  5707. "homepage": "https://symfony.com",
  5708. "keywords": [
  5709. "config",
  5710. "configuration",
  5711. "options"
  5712. ],
  5713. "support": {
  5714. "source": "https://github.com/symfony/options-resolver/tree/v5.2.4"
  5715. },
  5716. "funding": [
  5717. {
  5718. "url": "https://symfony.com/sponsor",
  5719. "type": "custom"
  5720. },
  5721. {
  5722. "url": "https://github.com/fabpot",
  5723. "type": "github"
  5724. },
  5725. {
  5726. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5727. "type": "tidelift"
  5728. }
  5729. ],
  5730. "time": "2021-01-27T12:56:27+00:00"
  5731. },
  5732. {
  5733. "name": "symfony/polyfill-ctype",
  5734. "version": "v1.22.1",
  5735. "source": {
  5736. "type": "git",
  5737. "url": "https://github.com/symfony/polyfill-ctype.git",
  5738. "reference": "c6c942b1ac76c82448322025e084cadc56048b4e"
  5739. },
  5740. "dist": {
  5741. "type": "zip",
  5742. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/c6c942b1ac76c82448322025e084cadc56048b4e",
  5743. "reference": "c6c942b1ac76c82448322025e084cadc56048b4e",
  5744. "shasum": "",
  5745. "mirrors": [
  5746. {
  5747. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5748. "preferred": true
  5749. }
  5750. ]
  5751. },
  5752. "require": {
  5753. "php": ">=7.1"
  5754. },
  5755. "suggest": {
  5756. "ext-ctype": "For best performance"
  5757. },
  5758. "type": "library",
  5759. "extra": {
  5760. "branch-alias": {
  5761. "dev-main": "1.22-dev"
  5762. },
  5763. "thanks": {
  5764. "name": "symfony/polyfill",
  5765. "url": "https://github.com/symfony/polyfill"
  5766. }
  5767. },
  5768. "autoload": {
  5769. "psr-4": {
  5770. "Symfony\\Polyfill\\Ctype\\": ""
  5771. },
  5772. "files": [
  5773. "bootstrap.php"
  5774. ]
  5775. },
  5776. "notification-url": "https://packagist.org/downloads/",
  5777. "license": [
  5778. "MIT"
  5779. ],
  5780. "authors": [
  5781. {
  5782. "name": "Gert de Pagter",
  5783. "email": "BackEndTea@gmail.com"
  5784. },
  5785. {
  5786. "name": "Symfony Community",
  5787. "homepage": "https://symfony.com/contributors"
  5788. }
  5789. ],
  5790. "description": "Symfony polyfill for ctype functions",
  5791. "homepage": "https://symfony.com",
  5792. "keywords": [
  5793. "compatibility",
  5794. "ctype",
  5795. "polyfill",
  5796. "portable"
  5797. ],
  5798. "support": {
  5799. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.22.1"
  5800. },
  5801. "funding": [
  5802. {
  5803. "url": "https://symfony.com/sponsor",
  5804. "type": "custom"
  5805. },
  5806. {
  5807. "url": "https://github.com/fabpot",
  5808. "type": "github"
  5809. },
  5810. {
  5811. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5812. "type": "tidelift"
  5813. }
  5814. ],
  5815. "time": "2021-01-07T16:49:33+00:00"
  5816. },
  5817. {
  5818. "name": "symfony/polyfill-iconv",
  5819. "version": "v1.22.1",
  5820. "source": {
  5821. "type": "git",
  5822. "url": "https://github.com/symfony/polyfill-iconv.git",
  5823. "reference": "06fb361659649bcfd6a208a0f1fcaf4e827ad342"
  5824. },
  5825. "dist": {
  5826. "type": "zip",
  5827. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/06fb361659649bcfd6a208a0f1fcaf4e827ad342",
  5828. "reference": "06fb361659649bcfd6a208a0f1fcaf4e827ad342",
  5829. "shasum": "",
  5830. "mirrors": [
  5831. {
  5832. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5833. "preferred": true
  5834. }
  5835. ]
  5836. },
  5837. "require": {
  5838. "php": ">=7.1"
  5839. },
  5840. "suggest": {
  5841. "ext-iconv": "For best performance"
  5842. },
  5843. "type": "library",
  5844. "extra": {
  5845. "branch-alias": {
  5846. "dev-main": "1.22-dev"
  5847. },
  5848. "thanks": {
  5849. "name": "symfony/polyfill",
  5850. "url": "https://github.com/symfony/polyfill"
  5851. }
  5852. },
  5853. "autoload": {
  5854. "psr-4": {
  5855. "Symfony\\Polyfill\\Iconv\\": ""
  5856. },
  5857. "files": [
  5858. "bootstrap.php"
  5859. ]
  5860. },
  5861. "notification-url": "https://packagist.org/downloads/",
  5862. "license": [
  5863. "MIT"
  5864. ],
  5865. "authors": [
  5866. {
  5867. "name": "Nicolas Grekas",
  5868. "email": "p@tchwork.com"
  5869. },
  5870. {
  5871. "name": "Symfony Community",
  5872. "homepage": "https://symfony.com/contributors"
  5873. }
  5874. ],
  5875. "description": "Symfony polyfill for the Iconv extension",
  5876. "homepage": "https://symfony.com",
  5877. "keywords": [
  5878. "compatibility",
  5879. "iconv",
  5880. "polyfill",
  5881. "portable",
  5882. "shim"
  5883. ],
  5884. "support": {
  5885. "source": "https://github.com/symfony/polyfill-iconv/tree/v1.22.1"
  5886. },
  5887. "funding": [
  5888. {
  5889. "url": "https://symfony.com/sponsor",
  5890. "type": "custom"
  5891. },
  5892. {
  5893. "url": "https://github.com/fabpot",
  5894. "type": "github"
  5895. },
  5896. {
  5897. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5898. "type": "tidelift"
  5899. }
  5900. ],
  5901. "time": "2021-01-22T09:19:47+00:00"
  5902. },
  5903. {
  5904. "name": "symfony/polyfill-intl-grapheme",
  5905. "version": "v1.22.1",
  5906. "source": {
  5907. "type": "git",
  5908. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  5909. "reference": "5601e09b69f26c1828b13b6bb87cb07cddba3170"
  5910. },
  5911. "dist": {
  5912. "type": "zip",
  5913. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/5601e09b69f26c1828b13b6bb87cb07cddba3170",
  5914. "reference": "5601e09b69f26c1828b13b6bb87cb07cddba3170",
  5915. "shasum": "",
  5916. "mirrors": [
  5917. {
  5918. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5919. "preferred": true
  5920. }
  5921. ]
  5922. },
  5923. "require": {
  5924. "php": ">=7.1"
  5925. },
  5926. "suggest": {
  5927. "ext-intl": "For best performance"
  5928. },
  5929. "type": "library",
  5930. "extra": {
  5931. "branch-alias": {
  5932. "dev-main": "1.22-dev"
  5933. },
  5934. "thanks": {
  5935. "name": "symfony/polyfill",
  5936. "url": "https://github.com/symfony/polyfill"
  5937. }
  5938. },
  5939. "autoload": {
  5940. "psr-4": {
  5941. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  5942. },
  5943. "files": [
  5944. "bootstrap.php"
  5945. ]
  5946. },
  5947. "notification-url": "https://packagist.org/downloads/",
  5948. "license": [
  5949. "MIT"
  5950. ],
  5951. "authors": [
  5952. {
  5953. "name": "Nicolas Grekas",
  5954. "email": "p@tchwork.com"
  5955. },
  5956. {
  5957. "name": "Symfony Community",
  5958. "homepage": "https://symfony.com/contributors"
  5959. }
  5960. ],
  5961. "description": "Symfony polyfill for intl's grapheme_* functions",
  5962. "homepage": "https://symfony.com",
  5963. "keywords": [
  5964. "compatibility",
  5965. "grapheme",
  5966. "intl",
  5967. "polyfill",
  5968. "portable",
  5969. "shim"
  5970. ],
  5971. "support": {
  5972. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.22.1"
  5973. },
  5974. "funding": [
  5975. {
  5976. "url": "https://symfony.com/sponsor",
  5977. "type": "custom"
  5978. },
  5979. {
  5980. "url": "https://github.com/fabpot",
  5981. "type": "github"
  5982. },
  5983. {
  5984. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5985. "type": "tidelift"
  5986. }
  5987. ],
  5988. "time": "2021-01-22T09:19:47+00:00"
  5989. },
  5990. {
  5991. "name": "symfony/polyfill-intl-idn",
  5992. "version": "v1.22.1",
  5993. "source": {
  5994. "type": "git",
  5995. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  5996. "reference": "2d63434d922daf7da8dd863e7907e67ee3031483"
  5997. },
  5998. "dist": {
  5999. "type": "zip",
  6000. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/2d63434d922daf7da8dd863e7907e67ee3031483",
  6001. "reference": "2d63434d922daf7da8dd863e7907e67ee3031483",
  6002. "shasum": "",
  6003. "mirrors": [
  6004. {
  6005. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6006. "preferred": true
  6007. }
  6008. ]
  6009. },
  6010. "require": {
  6011. "php": ">=7.1",
  6012. "symfony/polyfill-intl-normalizer": "^1.10",
  6013. "symfony/polyfill-php72": "^1.10"
  6014. },
  6015. "suggest": {
  6016. "ext-intl": "For best performance"
  6017. },
  6018. "type": "library",
  6019. "extra": {
  6020. "branch-alias": {
  6021. "dev-main": "1.22-dev"
  6022. },
  6023. "thanks": {
  6024. "name": "symfony/polyfill",
  6025. "url": "https://github.com/symfony/polyfill"
  6026. }
  6027. },
  6028. "autoload": {
  6029. "psr-4": {
  6030. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  6031. },
  6032. "files": [
  6033. "bootstrap.php"
  6034. ]
  6035. },
  6036. "notification-url": "https://packagist.org/downloads/",
  6037. "license": [
  6038. "MIT"
  6039. ],
  6040. "authors": [
  6041. {
  6042. "name": "Laurent Bassin",
  6043. "email": "laurent@bassin.info"
  6044. },
  6045. {
  6046. "name": "Trevor Rowbotham",
  6047. "email": "trevor.rowbotham@pm.me"
  6048. },
  6049. {
  6050. "name": "Symfony Community",
  6051. "homepage": "https://symfony.com/contributors"
  6052. }
  6053. ],
  6054. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  6055. "homepage": "https://symfony.com",
  6056. "keywords": [
  6057. "compatibility",
  6058. "idn",
  6059. "intl",
  6060. "polyfill",
  6061. "portable",
  6062. "shim"
  6063. ],
  6064. "support": {
  6065. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.22.1"
  6066. },
  6067. "funding": [
  6068. {
  6069. "url": "https://symfony.com/sponsor",
  6070. "type": "custom"
  6071. },
  6072. {
  6073. "url": "https://github.com/fabpot",
  6074. "type": "github"
  6075. },
  6076. {
  6077. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6078. "type": "tidelift"
  6079. }
  6080. ],
  6081. "time": "2021-01-22T09:19:47+00:00"
  6082. },
  6083. {
  6084. "name": "symfony/polyfill-intl-normalizer",
  6085. "version": "v1.22.1",
  6086. "source": {
  6087. "type": "git",
  6088. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  6089. "reference": "43a0283138253ed1d48d352ab6d0bdb3f809f248"
  6090. },
  6091. "dist": {
  6092. "type": "zip",
  6093. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/43a0283138253ed1d48d352ab6d0bdb3f809f248",
  6094. "reference": "43a0283138253ed1d48d352ab6d0bdb3f809f248",
  6095. "shasum": "",
  6096. "mirrors": [
  6097. {
  6098. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6099. "preferred": true
  6100. }
  6101. ]
  6102. },
  6103. "require": {
  6104. "php": ">=7.1"
  6105. },
  6106. "suggest": {
  6107. "ext-intl": "For best performance"
  6108. },
  6109. "type": "library",
  6110. "extra": {
  6111. "branch-alias": {
  6112. "dev-main": "1.22-dev"
  6113. },
  6114. "thanks": {
  6115. "name": "symfony/polyfill",
  6116. "url": "https://github.com/symfony/polyfill"
  6117. }
  6118. },
  6119. "autoload": {
  6120. "psr-4": {
  6121. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  6122. },
  6123. "files": [
  6124. "bootstrap.php"
  6125. ],
  6126. "classmap": [
  6127. "Resources/stubs"
  6128. ]
  6129. },
  6130. "notification-url": "https://packagist.org/downloads/",
  6131. "license": [
  6132. "MIT"
  6133. ],
  6134. "authors": [
  6135. {
  6136. "name": "Nicolas Grekas",
  6137. "email": "p@tchwork.com"
  6138. },
  6139. {
  6140. "name": "Symfony Community",
  6141. "homepage": "https://symfony.com/contributors"
  6142. }
  6143. ],
  6144. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  6145. "homepage": "https://symfony.com",
  6146. "keywords": [
  6147. "compatibility",
  6148. "intl",
  6149. "normalizer",
  6150. "polyfill",
  6151. "portable",
  6152. "shim"
  6153. ],
  6154. "support": {
  6155. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.22.1"
  6156. },
  6157. "funding": [
  6158. {
  6159. "url": "https://symfony.com/sponsor",
  6160. "type": "custom"
  6161. },
  6162. {
  6163. "url": "https://github.com/fabpot",
  6164. "type": "github"
  6165. },
  6166. {
  6167. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6168. "type": "tidelift"
  6169. }
  6170. ],
  6171. "time": "2021-01-22T09:19:47+00:00"
  6172. },
  6173. {
  6174. "name": "symfony/polyfill-mbstring",
  6175. "version": "v1.22.1",
  6176. "source": {
  6177. "type": "git",
  6178. "url": "https://github.com/symfony/polyfill-mbstring.git",
  6179. "reference": "5232de97ee3b75b0360528dae24e73db49566ab1"
  6180. },
  6181. "dist": {
  6182. "type": "zip",
  6183. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/5232de97ee3b75b0360528dae24e73db49566ab1",
  6184. "reference": "5232de97ee3b75b0360528dae24e73db49566ab1",
  6185. "shasum": "",
  6186. "mirrors": [
  6187. {
  6188. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6189. "preferred": true
  6190. }
  6191. ]
  6192. },
  6193. "require": {
  6194. "php": ">=7.1"
  6195. },
  6196. "suggest": {
  6197. "ext-mbstring": "For best performance"
  6198. },
  6199. "type": "library",
  6200. "extra": {
  6201. "branch-alias": {
  6202. "dev-main": "1.22-dev"
  6203. },
  6204. "thanks": {
  6205. "name": "symfony/polyfill",
  6206. "url": "https://github.com/symfony/polyfill"
  6207. }
  6208. },
  6209. "autoload": {
  6210. "psr-4": {
  6211. "Symfony\\Polyfill\\Mbstring\\": ""
  6212. },
  6213. "files": [
  6214. "bootstrap.php"
  6215. ]
  6216. },
  6217. "notification-url": "https://packagist.org/downloads/",
  6218. "license": [
  6219. "MIT"
  6220. ],
  6221. "authors": [
  6222. {
  6223. "name": "Nicolas Grekas",
  6224. "email": "p@tchwork.com"
  6225. },
  6226. {
  6227. "name": "Symfony Community",
  6228. "homepage": "https://symfony.com/contributors"
  6229. }
  6230. ],
  6231. "description": "Symfony polyfill for the Mbstring extension",
  6232. "homepage": "https://symfony.com",
  6233. "keywords": [
  6234. "compatibility",
  6235. "mbstring",
  6236. "polyfill",
  6237. "portable",
  6238. "shim"
  6239. ],
  6240. "support": {
  6241. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.22.1"
  6242. },
  6243. "funding": [
  6244. {
  6245. "url": "https://symfony.com/sponsor",
  6246. "type": "custom"
  6247. },
  6248. {
  6249. "url": "https://github.com/fabpot",
  6250. "type": "github"
  6251. },
  6252. {
  6253. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6254. "type": "tidelift"
  6255. }
  6256. ],
  6257. "time": "2021-01-22T09:19:47+00:00"
  6258. },
  6259. {
  6260. "name": "symfony/polyfill-php72",
  6261. "version": "v1.22.1",
  6262. "source": {
  6263. "type": "git",
  6264. "url": "https://github.com/symfony/polyfill-php72.git",
  6265. "reference": "cc6e6f9b39fe8075b3dabfbaf5b5f645ae1340c9"
  6266. },
  6267. "dist": {
  6268. "type": "zip",
  6269. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/cc6e6f9b39fe8075b3dabfbaf5b5f645ae1340c9",
  6270. "reference": "cc6e6f9b39fe8075b3dabfbaf5b5f645ae1340c9",
  6271. "shasum": "",
  6272. "mirrors": [
  6273. {
  6274. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6275. "preferred": true
  6276. }
  6277. ]
  6278. },
  6279. "require": {
  6280. "php": ">=7.1"
  6281. },
  6282. "type": "library",
  6283. "extra": {
  6284. "branch-alias": {
  6285. "dev-main": "1.22-dev"
  6286. },
  6287. "thanks": {
  6288. "name": "symfony/polyfill",
  6289. "url": "https://github.com/symfony/polyfill"
  6290. }
  6291. },
  6292. "autoload": {
  6293. "psr-4": {
  6294. "Symfony\\Polyfill\\Php72\\": ""
  6295. },
  6296. "files": [
  6297. "bootstrap.php"
  6298. ]
  6299. },
  6300. "notification-url": "https://packagist.org/downloads/",
  6301. "license": [
  6302. "MIT"
  6303. ],
  6304. "authors": [
  6305. {
  6306. "name": "Nicolas Grekas",
  6307. "email": "p@tchwork.com"
  6308. },
  6309. {
  6310. "name": "Symfony Community",
  6311. "homepage": "https://symfony.com/contributors"
  6312. }
  6313. ],
  6314. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  6315. "homepage": "https://symfony.com",
  6316. "keywords": [
  6317. "compatibility",
  6318. "polyfill",
  6319. "portable",
  6320. "shim"
  6321. ],
  6322. "support": {
  6323. "source": "https://github.com/symfony/polyfill-php72/tree/v1.22.1"
  6324. },
  6325. "funding": [
  6326. {
  6327. "url": "https://symfony.com/sponsor",
  6328. "type": "custom"
  6329. },
  6330. {
  6331. "url": "https://github.com/fabpot",
  6332. "type": "github"
  6333. },
  6334. {
  6335. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6336. "type": "tidelift"
  6337. }
  6338. ],
  6339. "time": "2021-01-07T16:49:33+00:00"
  6340. },
  6341. {
  6342. "name": "symfony/polyfill-php73",
  6343. "version": "v1.22.1",
  6344. "source": {
  6345. "type": "git",
  6346. "url": "https://github.com/symfony/polyfill-php73.git",
  6347. "reference": "a678b42e92f86eca04b7fa4c0f6f19d097fb69e2"
  6348. },
  6349. "dist": {
  6350. "type": "zip",
  6351. "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/a678b42e92f86eca04b7fa4c0f6f19d097fb69e2",
  6352. "reference": "a678b42e92f86eca04b7fa4c0f6f19d097fb69e2",
  6353. "shasum": "",
  6354. "mirrors": [
  6355. {
  6356. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6357. "preferred": true
  6358. }
  6359. ]
  6360. },
  6361. "require": {
  6362. "php": ">=7.1"
  6363. },
  6364. "type": "library",
  6365. "extra": {
  6366. "branch-alias": {
  6367. "dev-main": "1.22-dev"
  6368. },
  6369. "thanks": {
  6370. "name": "symfony/polyfill",
  6371. "url": "https://github.com/symfony/polyfill"
  6372. }
  6373. },
  6374. "autoload": {
  6375. "psr-4": {
  6376. "Symfony\\Polyfill\\Php73\\": ""
  6377. },
  6378. "files": [
  6379. "bootstrap.php"
  6380. ],
  6381. "classmap": [
  6382. "Resources/stubs"
  6383. ]
  6384. },
  6385. "notification-url": "https://packagist.org/downloads/",
  6386. "license": [
  6387. "MIT"
  6388. ],
  6389. "authors": [
  6390. {
  6391. "name": "Nicolas Grekas",
  6392. "email": "p@tchwork.com"
  6393. },
  6394. {
  6395. "name": "Symfony Community",
  6396. "homepage": "https://symfony.com/contributors"
  6397. }
  6398. ],
  6399. "description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions",
  6400. "homepage": "https://symfony.com",
  6401. "keywords": [
  6402. "compatibility",
  6403. "polyfill",
  6404. "portable",
  6405. "shim"
  6406. ],
  6407. "support": {
  6408. "source": "https://github.com/symfony/polyfill-php73/tree/v1.22.1"
  6409. },
  6410. "funding": [
  6411. {
  6412. "url": "https://symfony.com/sponsor",
  6413. "type": "custom"
  6414. },
  6415. {
  6416. "url": "https://github.com/fabpot",
  6417. "type": "github"
  6418. },
  6419. {
  6420. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6421. "type": "tidelift"
  6422. }
  6423. ],
  6424. "time": "2021-01-07T16:49:33+00:00"
  6425. },
  6426. {
  6427. "name": "symfony/polyfill-php80",
  6428. "version": "v1.22.1",
  6429. "source": {
  6430. "type": "git",
  6431. "url": "https://github.com/symfony/polyfill-php80.git",
  6432. "reference": "dc3063ba22c2a1fd2f45ed856374d79114998f91"
  6433. },
  6434. "dist": {
  6435. "type": "zip",
  6436. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/dc3063ba22c2a1fd2f45ed856374d79114998f91",
  6437. "reference": "dc3063ba22c2a1fd2f45ed856374d79114998f91",
  6438. "shasum": "",
  6439. "mirrors": [
  6440. {
  6441. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6442. "preferred": true
  6443. }
  6444. ]
  6445. },
  6446. "require": {
  6447. "php": ">=7.1"
  6448. },
  6449. "type": "library",
  6450. "extra": {
  6451. "branch-alias": {
  6452. "dev-main": "1.22-dev"
  6453. },
  6454. "thanks": {
  6455. "name": "symfony/polyfill",
  6456. "url": "https://github.com/symfony/polyfill"
  6457. }
  6458. },
  6459. "autoload": {
  6460. "psr-4": {
  6461. "Symfony\\Polyfill\\Php80\\": ""
  6462. },
  6463. "files": [
  6464. "bootstrap.php"
  6465. ],
  6466. "classmap": [
  6467. "Resources/stubs"
  6468. ]
  6469. },
  6470. "notification-url": "https://packagist.org/downloads/",
  6471. "license": [
  6472. "MIT"
  6473. ],
  6474. "authors": [
  6475. {
  6476. "name": "Ion Bazan",
  6477. "email": "ion.bazan@gmail.com"
  6478. },
  6479. {
  6480. "name": "Nicolas Grekas",
  6481. "email": "p@tchwork.com"
  6482. },
  6483. {
  6484. "name": "Symfony Community",
  6485. "homepage": "https://symfony.com/contributors"
  6486. }
  6487. ],
  6488. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  6489. "homepage": "https://symfony.com",
  6490. "keywords": [
  6491. "compatibility",
  6492. "polyfill",
  6493. "portable",
  6494. "shim"
  6495. ],
  6496. "support": {
  6497. "source": "https://github.com/symfony/polyfill-php80/tree/v1.22.1"
  6498. },
  6499. "funding": [
  6500. {
  6501. "url": "https://symfony.com/sponsor",
  6502. "type": "custom"
  6503. },
  6504. {
  6505. "url": "https://github.com/fabpot",
  6506. "type": "github"
  6507. },
  6508. {
  6509. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6510. "type": "tidelift"
  6511. }
  6512. ],
  6513. "time": "2021-01-07T16:49:33+00:00"
  6514. },
  6515. {
  6516. "name": "symfony/process",
  6517. "version": "v5.2.4",
  6518. "source": {
  6519. "type": "git",
  6520. "url": "https://github.com/symfony/process.git",
  6521. "reference": "313a38f09c77fbcdc1d223e57d368cea76a2fd2f"
  6522. },
  6523. "dist": {
  6524. "type": "zip",
  6525. "url": "https://api.github.com/repos/symfony/process/zipball/313a38f09c77fbcdc1d223e57d368cea76a2fd2f",
  6526. "reference": "313a38f09c77fbcdc1d223e57d368cea76a2fd2f",
  6527. "shasum": "",
  6528. "mirrors": [
  6529. {
  6530. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6531. "preferred": true
  6532. }
  6533. ]
  6534. },
  6535. "require": {
  6536. "php": ">=7.2.5",
  6537. "symfony/polyfill-php80": "^1.15"
  6538. },
  6539. "type": "library",
  6540. "autoload": {
  6541. "psr-4": {
  6542. "Symfony\\Component\\Process\\": ""
  6543. },
  6544. "exclude-from-classmap": [
  6545. "/Tests/"
  6546. ]
  6547. },
  6548. "notification-url": "https://packagist.org/downloads/",
  6549. "license": [
  6550. "MIT"
  6551. ],
  6552. "authors": [
  6553. {
  6554. "name": "Fabien Potencier",
  6555. "email": "fabien@symfony.com"
  6556. },
  6557. {
  6558. "name": "Symfony Community",
  6559. "homepage": "https://symfony.com/contributors"
  6560. }
  6561. ],
  6562. "description": "Executes commands in sub-processes",
  6563. "homepage": "https://symfony.com",
  6564. "support": {
  6565. "source": "https://github.com/symfony/process/tree/v5.2.4"
  6566. },
  6567. "funding": [
  6568. {
  6569. "url": "https://symfony.com/sponsor",
  6570. "type": "custom"
  6571. },
  6572. {
  6573. "url": "https://github.com/fabpot",
  6574. "type": "github"
  6575. },
  6576. {
  6577. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6578. "type": "tidelift"
  6579. }
  6580. ],
  6581. "time": "2021-01-27T10:15:41+00:00"
  6582. },
  6583. {
  6584. "name": "symfony/property-access",
  6585. "version": "v5.2.4",
  6586. "source": {
  6587. "type": "git",
  6588. "url": "https://github.com/symfony/property-access.git",
  6589. "reference": "3af8ed262bd3217512a13b023981fe68f36ad5f3"
  6590. },
  6591. "dist": {
  6592. "type": "zip",
  6593. "url": "https://api.github.com/repos/symfony/property-access/zipball/3af8ed262bd3217512a13b023981fe68f36ad5f3",
  6594. "reference": "3af8ed262bd3217512a13b023981fe68f36ad5f3",
  6595. "shasum": "",
  6596. "mirrors": [
  6597. {
  6598. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6599. "preferred": true
  6600. }
  6601. ]
  6602. },
  6603. "require": {
  6604. "php": ">=7.2.5",
  6605. "symfony/deprecation-contracts": "^2.1",
  6606. "symfony/polyfill-php80": "^1.15",
  6607. "symfony/property-info": "^5.2"
  6608. },
  6609. "require-dev": {
  6610. "symfony/cache": "^4.4|^5.0"
  6611. },
  6612. "suggest": {
  6613. "psr/cache-implementation": "To cache access methods."
  6614. },
  6615. "type": "library",
  6616. "autoload": {
  6617. "psr-4": {
  6618. "Symfony\\Component\\PropertyAccess\\": ""
  6619. },
  6620. "exclude-from-classmap": [
  6621. "/Tests/"
  6622. ]
  6623. },
  6624. "notification-url": "https://packagist.org/downloads/",
  6625. "license": [
  6626. "MIT"
  6627. ],
  6628. "authors": [
  6629. {
  6630. "name": "Fabien Potencier",
  6631. "email": "fabien@symfony.com"
  6632. },
  6633. {
  6634. "name": "Symfony Community",
  6635. "homepage": "https://symfony.com/contributors"
  6636. }
  6637. ],
  6638. "description": "Provides functions to read and write from/to an object or array using a simple string notation",
  6639. "homepage": "https://symfony.com",
  6640. "keywords": [
  6641. "access",
  6642. "array",
  6643. "extraction",
  6644. "index",
  6645. "injection",
  6646. "object",
  6647. "property",
  6648. "property path",
  6649. "reflection"
  6650. ],
  6651. "support": {
  6652. "source": "https://github.com/symfony/property-access/tree/v5.2.4"
  6653. },
  6654. "funding": [
  6655. {
  6656. "url": "https://symfony.com/sponsor",
  6657. "type": "custom"
  6658. },
  6659. {
  6660. "url": "https://github.com/fabpot",
  6661. "type": "github"
  6662. },
  6663. {
  6664. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6665. "type": "tidelift"
  6666. }
  6667. ],
  6668. "time": "2021-01-27T10:15:41+00:00"
  6669. },
  6670. {
  6671. "name": "symfony/property-info",
  6672. "version": "v5.2.4",
  6673. "source": {
  6674. "type": "git",
  6675. "url": "https://github.com/symfony/property-info.git",
  6676. "reference": "7185bbc74e6f49c3f1b5936b4d9e4ca133921189"
  6677. },
  6678. "dist": {
  6679. "type": "zip",
  6680. "url": "https://api.github.com/repos/symfony/property-info/zipball/7185bbc74e6f49c3f1b5936b4d9e4ca133921189",
  6681. "reference": "7185bbc74e6f49c3f1b5936b4d9e4ca133921189",
  6682. "shasum": "",
  6683. "mirrors": [
  6684. {
  6685. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6686. "preferred": true
  6687. }
  6688. ]
  6689. },
  6690. "require": {
  6691. "php": ">=7.2.5",
  6692. "symfony/deprecation-contracts": "^2.1",
  6693. "symfony/polyfill-php80": "^1.15",
  6694. "symfony/string": "^5.1"
  6695. },
  6696. "conflict": {
  6697. "phpdocumentor/reflection-docblock": "<3.2.2",
  6698. "phpdocumentor/type-resolver": "<1.4.0",
  6699. "symfony/dependency-injection": "<4.4"
  6700. },
  6701. "require-dev": {
  6702. "doctrine/annotations": "^1.10.4",
  6703. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  6704. "symfony/cache": "^4.4|^5.0",
  6705. "symfony/dependency-injection": "^4.4|^5.0",
  6706. "symfony/serializer": "^4.4|^5.0"
  6707. },
  6708. "suggest": {
  6709. "phpdocumentor/reflection-docblock": "To use the PHPDoc",
  6710. "psr/cache-implementation": "To cache results",
  6711. "symfony/doctrine-bridge": "To use Doctrine metadata",
  6712. "symfony/serializer": "To use Serializer metadata"
  6713. },
  6714. "type": "library",
  6715. "autoload": {
  6716. "psr-4": {
  6717. "Symfony\\Component\\PropertyInfo\\": ""
  6718. },
  6719. "exclude-from-classmap": [
  6720. "/Tests/"
  6721. ]
  6722. },
  6723. "notification-url": "https://packagist.org/downloads/",
  6724. "license": [
  6725. "MIT"
  6726. ],
  6727. "authors": [
  6728. {
  6729. "name": "Kévin Dunglas",
  6730. "email": "dunglas@gmail.com"
  6731. },
  6732. {
  6733. "name": "Symfony Community",
  6734. "homepage": "https://symfony.com/contributors"
  6735. }
  6736. ],
  6737. "description": "Extracts information about PHP class' properties using metadata of popular sources",
  6738. "homepage": "https://symfony.com",
  6739. "keywords": [
  6740. "doctrine",
  6741. "phpdoc",
  6742. "property",
  6743. "symfony",
  6744. "type",
  6745. "validator"
  6746. ],
  6747. "support": {
  6748. "source": "https://github.com/symfony/property-info/tree/v5.2.4"
  6749. },
  6750. "funding": [
  6751. {
  6752. "url": "https://symfony.com/sponsor",
  6753. "type": "custom"
  6754. },
  6755. {
  6756. "url": "https://github.com/fabpot",
  6757. "type": "github"
  6758. },
  6759. {
  6760. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6761. "type": "tidelift"
  6762. }
  6763. ],
  6764. "time": "2021-02-17T15:24:54+00:00"
  6765. },
  6766. {
  6767. "name": "symfony/routing",
  6768. "version": "v5.2.6",
  6769. "source": {
  6770. "type": "git",
  6771. "url": "https://github.com/symfony/routing.git",
  6772. "reference": "31fba555f178afd04d54fd26953501b2c3f0c6e6"
  6773. },
  6774. "dist": {
  6775. "type": "zip",
  6776. "url": "https://api.github.com/repos/symfony/routing/zipball/31fba555f178afd04d54fd26953501b2c3f0c6e6",
  6777. "reference": "31fba555f178afd04d54fd26953501b2c3f0c6e6",
  6778. "shasum": "",
  6779. "mirrors": [
  6780. {
  6781. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6782. "preferred": true
  6783. }
  6784. ]
  6785. },
  6786. "require": {
  6787. "php": ">=7.2.5",
  6788. "symfony/deprecation-contracts": "^2.1",
  6789. "symfony/polyfill-php80": "^1.15"
  6790. },
  6791. "conflict": {
  6792. "symfony/config": "<5.0",
  6793. "symfony/dependency-injection": "<4.4",
  6794. "symfony/yaml": "<4.4"
  6795. },
  6796. "require-dev": {
  6797. "doctrine/annotations": "^1.10.4",
  6798. "psr/log": "~1.0",
  6799. "symfony/config": "^5.0",
  6800. "symfony/dependency-injection": "^4.4|^5.0",
  6801. "symfony/expression-language": "^4.4|^5.0",
  6802. "symfony/http-foundation": "^4.4|^5.0",
  6803. "symfony/yaml": "^4.4|^5.0"
  6804. },
  6805. "suggest": {
  6806. "doctrine/annotations": "For using the annotation loader",
  6807. "symfony/config": "For using the all-in-one router or any loader",
  6808. "symfony/expression-language": "For using expression matching",
  6809. "symfony/http-foundation": "For using a Symfony Request object",
  6810. "symfony/yaml": "For using the YAML loader"
  6811. },
  6812. "type": "library",
  6813. "autoload": {
  6814. "psr-4": {
  6815. "Symfony\\Component\\Routing\\": ""
  6816. },
  6817. "exclude-from-classmap": [
  6818. "/Tests/"
  6819. ]
  6820. },
  6821. "notification-url": "https://packagist.org/downloads/",
  6822. "license": [
  6823. "MIT"
  6824. ],
  6825. "authors": [
  6826. {
  6827. "name": "Fabien Potencier",
  6828. "email": "fabien@symfony.com"
  6829. },
  6830. {
  6831. "name": "Symfony Community",
  6832. "homepage": "https://symfony.com/contributors"
  6833. }
  6834. ],
  6835. "description": "Maps an HTTP request to a set of configuration variables",
  6836. "homepage": "https://symfony.com",
  6837. "keywords": [
  6838. "router",
  6839. "routing",
  6840. "uri",
  6841. "url"
  6842. ],
  6843. "support": {
  6844. "source": "https://github.com/symfony/routing/tree/v5.2.6"
  6845. },
  6846. "funding": [
  6847. {
  6848. "url": "https://symfony.com/sponsor",
  6849. "type": "custom"
  6850. },
  6851. {
  6852. "url": "https://github.com/fabpot",
  6853. "type": "github"
  6854. },
  6855. {
  6856. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6857. "type": "tidelift"
  6858. }
  6859. ],
  6860. "time": "2021-03-14T13:53:33+00:00"
  6861. },
  6862. {
  6863. "name": "symfony/service-contracts",
  6864. "version": "v2.4.0",
  6865. "source": {
  6866. "type": "git",
  6867. "url": "https://github.com/symfony/service-contracts.git",
  6868. "reference": "f040a30e04b57fbcc9c6cbcf4dbaa96bd318b9bb"
  6869. },
  6870. "dist": {
  6871. "type": "zip",
  6872. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/f040a30e04b57fbcc9c6cbcf4dbaa96bd318b9bb",
  6873. "reference": "f040a30e04b57fbcc9c6cbcf4dbaa96bd318b9bb",
  6874. "shasum": "",
  6875. "mirrors": [
  6876. {
  6877. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6878. "preferred": true
  6879. }
  6880. ]
  6881. },
  6882. "require": {
  6883. "php": ">=7.2.5",
  6884. "psr/container": "^1.1"
  6885. },
  6886. "suggest": {
  6887. "symfony/service-implementation": ""
  6888. },
  6889. "type": "library",
  6890. "extra": {
  6891. "branch-alias": {
  6892. "dev-main": "2.4-dev"
  6893. },
  6894. "thanks": {
  6895. "name": "symfony/contracts",
  6896. "url": "https://github.com/symfony/contracts"
  6897. }
  6898. },
  6899. "autoload": {
  6900. "psr-4": {
  6901. "Symfony\\Contracts\\Service\\": ""
  6902. }
  6903. },
  6904. "notification-url": "https://packagist.org/downloads/",
  6905. "license": [
  6906. "MIT"
  6907. ],
  6908. "authors": [
  6909. {
  6910. "name": "Nicolas Grekas",
  6911. "email": "p@tchwork.com"
  6912. },
  6913. {
  6914. "name": "Symfony Community",
  6915. "homepage": "https://symfony.com/contributors"
  6916. }
  6917. ],
  6918. "description": "Generic abstractions related to writing services",
  6919. "homepage": "https://symfony.com",
  6920. "keywords": [
  6921. "abstractions",
  6922. "contracts",
  6923. "decoupling",
  6924. "interfaces",
  6925. "interoperability",
  6926. "standards"
  6927. ],
  6928. "support": {
  6929. "source": "https://github.com/symfony/service-contracts/tree/v2.4.0"
  6930. },
  6931. "funding": [
  6932. {
  6933. "url": "https://symfony.com/sponsor",
  6934. "type": "custom"
  6935. },
  6936. {
  6937. "url": "https://github.com/fabpot",
  6938. "type": "github"
  6939. },
  6940. {
  6941. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6942. "type": "tidelift"
  6943. }
  6944. ],
  6945. "time": "2021-04-01T10:43:52+00:00"
  6946. },
  6947. {
  6948. "name": "symfony/string",
  6949. "version": "v5.2.6",
  6950. "source": {
  6951. "type": "git",
  6952. "url": "https://github.com/symfony/string.git",
  6953. "reference": "ad0bd91bce2054103f5eaa18ebeba8d3bc2a0572"
  6954. },
  6955. "dist": {
  6956. "type": "zip",
  6957. "url": "https://api.github.com/repos/symfony/string/zipball/ad0bd91bce2054103f5eaa18ebeba8d3bc2a0572",
  6958. "reference": "ad0bd91bce2054103f5eaa18ebeba8d3bc2a0572",
  6959. "shasum": "",
  6960. "mirrors": [
  6961. {
  6962. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6963. "preferred": true
  6964. }
  6965. ]
  6966. },
  6967. "require": {
  6968. "php": ">=7.2.5",
  6969. "symfony/polyfill-ctype": "~1.8",
  6970. "symfony/polyfill-intl-grapheme": "~1.0",
  6971. "symfony/polyfill-intl-normalizer": "~1.0",
  6972. "symfony/polyfill-mbstring": "~1.0",
  6973. "symfony/polyfill-php80": "~1.15"
  6974. },
  6975. "require-dev": {
  6976. "symfony/error-handler": "^4.4|^5.0",
  6977. "symfony/http-client": "^4.4|^5.0",
  6978. "symfony/translation-contracts": "^1.1|^2",
  6979. "symfony/var-exporter": "^4.4|^5.0"
  6980. },
  6981. "type": "library",
  6982. "autoload": {
  6983. "psr-4": {
  6984. "Symfony\\Component\\String\\": ""
  6985. },
  6986. "files": [
  6987. "Resources/functions.php"
  6988. ],
  6989. "exclude-from-classmap": [
  6990. "/Tests/"
  6991. ]
  6992. },
  6993. "notification-url": "https://packagist.org/downloads/",
  6994. "license": [
  6995. "MIT"
  6996. ],
  6997. "authors": [
  6998. {
  6999. "name": "Nicolas Grekas",
  7000. "email": "p@tchwork.com"
  7001. },
  7002. {
  7003. "name": "Symfony Community",
  7004. "homepage": "https://symfony.com/contributors"
  7005. }
  7006. ],
  7007. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  7008. "homepage": "https://symfony.com",
  7009. "keywords": [
  7010. "grapheme",
  7011. "i18n",
  7012. "string",
  7013. "unicode",
  7014. "utf-8",
  7015. "utf8"
  7016. ],
  7017. "support": {
  7018. "source": "https://github.com/symfony/string/tree/v5.2.6"
  7019. },
  7020. "funding": [
  7021. {
  7022. "url": "https://symfony.com/sponsor",
  7023. "type": "custom"
  7024. },
  7025. {
  7026. "url": "https://github.com/fabpot",
  7027. "type": "github"
  7028. },
  7029. {
  7030. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7031. "type": "tidelift"
  7032. }
  7033. ],
  7034. "time": "2021-03-17T17:12:15+00:00"
  7035. },
  7036. {
  7037. "name": "symfony/translation",
  7038. "version": "v5.2.6",
  7039. "source": {
  7040. "type": "git",
  7041. "url": "https://github.com/symfony/translation.git",
  7042. "reference": "2cc7f45d96db9adfcf89adf4401d9dfed509f4e1"
  7043. },
  7044. "dist": {
  7045. "type": "zip",
  7046. "url": "https://api.github.com/repos/symfony/translation/zipball/2cc7f45d96db9adfcf89adf4401d9dfed509f4e1",
  7047. "reference": "2cc7f45d96db9adfcf89adf4401d9dfed509f4e1",
  7048. "shasum": "",
  7049. "mirrors": [
  7050. {
  7051. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7052. "preferred": true
  7053. }
  7054. ]
  7055. },
  7056. "require": {
  7057. "php": ">=7.2.5",
  7058. "symfony/polyfill-mbstring": "~1.0",
  7059. "symfony/polyfill-php80": "^1.15",
  7060. "symfony/translation-contracts": "^2.3"
  7061. },
  7062. "conflict": {
  7063. "symfony/config": "<4.4",
  7064. "symfony/dependency-injection": "<5.0",
  7065. "symfony/http-kernel": "<5.0",
  7066. "symfony/twig-bundle": "<5.0",
  7067. "symfony/yaml": "<4.4"
  7068. },
  7069. "provide": {
  7070. "symfony/translation-implementation": "2.3"
  7071. },
  7072. "require-dev": {
  7073. "psr/log": "~1.0",
  7074. "symfony/config": "^4.4|^5.0",
  7075. "symfony/console": "^4.4|^5.0",
  7076. "symfony/dependency-injection": "^5.0",
  7077. "symfony/finder": "^4.4|^5.0",
  7078. "symfony/http-kernel": "^5.0",
  7079. "symfony/intl": "^4.4|^5.0",
  7080. "symfony/service-contracts": "^1.1.2|^2",
  7081. "symfony/yaml": "^4.4|^5.0"
  7082. },
  7083. "suggest": {
  7084. "psr/log-implementation": "To use logging capability in translator",
  7085. "symfony/config": "",
  7086. "symfony/yaml": ""
  7087. },
  7088. "type": "library",
  7089. "autoload": {
  7090. "files": [
  7091. "Resources/functions.php"
  7092. ],
  7093. "psr-4": {
  7094. "Symfony\\Component\\Translation\\": ""
  7095. },
  7096. "exclude-from-classmap": [
  7097. "/Tests/"
  7098. ]
  7099. },
  7100. "notification-url": "https://packagist.org/downloads/",
  7101. "license": [
  7102. "MIT"
  7103. ],
  7104. "authors": [
  7105. {
  7106. "name": "Fabien Potencier",
  7107. "email": "fabien@symfony.com"
  7108. },
  7109. {
  7110. "name": "Symfony Community",
  7111. "homepage": "https://symfony.com/contributors"
  7112. }
  7113. ],
  7114. "description": "Provides tools to internationalize your application",
  7115. "homepage": "https://symfony.com",
  7116. "support": {
  7117. "source": "https://github.com/symfony/translation/tree/v5.2.6"
  7118. },
  7119. "funding": [
  7120. {
  7121. "url": "https://symfony.com/sponsor",
  7122. "type": "custom"
  7123. },
  7124. {
  7125. "url": "https://github.com/fabpot",
  7126. "type": "github"
  7127. },
  7128. {
  7129. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7130. "type": "tidelift"
  7131. }
  7132. ],
  7133. "time": "2021-03-23T19:33:48+00:00"
  7134. },
  7135. {
  7136. "name": "symfony/translation-contracts",
  7137. "version": "v2.4.0",
  7138. "source": {
  7139. "type": "git",
  7140. "url": "https://github.com/symfony/translation-contracts.git",
  7141. "reference": "95c812666f3e91db75385749fe219c5e494c7f95"
  7142. },
  7143. "dist": {
  7144. "type": "zip",
  7145. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/95c812666f3e91db75385749fe219c5e494c7f95",
  7146. "reference": "95c812666f3e91db75385749fe219c5e494c7f95",
  7147. "shasum": "",
  7148. "mirrors": [
  7149. {
  7150. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7151. "preferred": true
  7152. }
  7153. ]
  7154. },
  7155. "require": {
  7156. "php": ">=7.2.5"
  7157. },
  7158. "suggest": {
  7159. "symfony/translation-implementation": ""
  7160. },
  7161. "type": "library",
  7162. "extra": {
  7163. "branch-alias": {
  7164. "dev-main": "2.4-dev"
  7165. },
  7166. "thanks": {
  7167. "name": "symfony/contracts",
  7168. "url": "https://github.com/symfony/contracts"
  7169. }
  7170. },
  7171. "autoload": {
  7172. "psr-4": {
  7173. "Symfony\\Contracts\\Translation\\": ""
  7174. }
  7175. },
  7176. "notification-url": "https://packagist.org/downloads/",
  7177. "license": [
  7178. "MIT"
  7179. ],
  7180. "authors": [
  7181. {
  7182. "name": "Nicolas Grekas",
  7183. "email": "p@tchwork.com"
  7184. },
  7185. {
  7186. "name": "Symfony Community",
  7187. "homepage": "https://symfony.com/contributors"
  7188. }
  7189. ],
  7190. "description": "Generic abstractions related to translation",
  7191. "homepage": "https://symfony.com",
  7192. "keywords": [
  7193. "abstractions",
  7194. "contracts",
  7195. "decoupling",
  7196. "interfaces",
  7197. "interoperability",
  7198. "standards"
  7199. ],
  7200. "support": {
  7201. "source": "https://github.com/symfony/translation-contracts/tree/v2.4.0"
  7202. },
  7203. "funding": [
  7204. {
  7205. "url": "https://symfony.com/sponsor",
  7206. "type": "custom"
  7207. },
  7208. {
  7209. "url": "https://github.com/fabpot",
  7210. "type": "github"
  7211. },
  7212. {
  7213. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7214. "type": "tidelift"
  7215. }
  7216. ],
  7217. "time": "2021-03-23T23:28:01+00:00"
  7218. },
  7219. {
  7220. "name": "symfony/var-dumper",
  7221. "version": "v5.2.6",
  7222. "source": {
  7223. "type": "git",
  7224. "url": "https://github.com/symfony/var-dumper.git",
  7225. "reference": "89412a68ea2e675b4e44f260a5666729f77f668e"
  7226. },
  7227. "dist": {
  7228. "type": "zip",
  7229. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/89412a68ea2e675b4e44f260a5666729f77f668e",
  7230. "reference": "89412a68ea2e675b4e44f260a5666729f77f668e",
  7231. "shasum": "",
  7232. "mirrors": [
  7233. {
  7234. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7235. "preferred": true
  7236. }
  7237. ]
  7238. },
  7239. "require": {
  7240. "php": ">=7.2.5",
  7241. "symfony/polyfill-mbstring": "~1.0",
  7242. "symfony/polyfill-php80": "^1.15"
  7243. },
  7244. "conflict": {
  7245. "phpunit/phpunit": "<5.4.3",
  7246. "symfony/console": "<4.4"
  7247. },
  7248. "require-dev": {
  7249. "ext-iconv": "*",
  7250. "symfony/console": "^4.4|^5.0",
  7251. "symfony/process": "^4.4|^5.0",
  7252. "twig/twig": "^2.13|^3.0.4"
  7253. },
  7254. "suggest": {
  7255. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  7256. "ext-intl": "To show region name in time zone dump",
  7257. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  7258. },
  7259. "bin": [
  7260. "Resources/bin/var-dump-server"
  7261. ],
  7262. "type": "library",
  7263. "autoload": {
  7264. "files": [
  7265. "Resources/functions/dump.php"
  7266. ],
  7267. "psr-4": {
  7268. "Symfony\\Component\\VarDumper\\": ""
  7269. },
  7270. "exclude-from-classmap": [
  7271. "/Tests/"
  7272. ]
  7273. },
  7274. "notification-url": "https://packagist.org/downloads/",
  7275. "license": [
  7276. "MIT"
  7277. ],
  7278. "authors": [
  7279. {
  7280. "name": "Nicolas Grekas",
  7281. "email": "p@tchwork.com"
  7282. },
  7283. {
  7284. "name": "Symfony Community",
  7285. "homepage": "https://symfony.com/contributors"
  7286. }
  7287. ],
  7288. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  7289. "homepage": "https://symfony.com",
  7290. "keywords": [
  7291. "debug",
  7292. "dump"
  7293. ],
  7294. "support": {
  7295. "source": "https://github.com/symfony/var-dumper/tree/v5.2.6"
  7296. },
  7297. "funding": [
  7298. {
  7299. "url": "https://symfony.com/sponsor",
  7300. "type": "custom"
  7301. },
  7302. {
  7303. "url": "https://github.com/fabpot",
  7304. "type": "github"
  7305. },
  7306. {
  7307. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7308. "type": "tidelift"
  7309. }
  7310. ],
  7311. "time": "2021-03-28T09:42:18+00:00"
  7312. },
  7313. {
  7314. "name": "te7a-houdini/laravel-trix",
  7315. "version": "2.0.4",
  7316. "source": {
  7317. "type": "git",
  7318. "url": "https://github.com/amaelftah/laravel-trix.git",
  7319. "reference": "2295ae96aad8b7c427647c84e814c33926eaf074"
  7320. },
  7321. "dist": {
  7322. "type": "zip",
  7323. "url": "https://api.github.com/repos/amaelftah/laravel-trix/zipball/2295ae96aad8b7c427647c84e814c33926eaf074",
  7324. "reference": "2295ae96aad8b7c427647c84e814c33926eaf074",
  7325. "shasum": "",
  7326. "mirrors": [
  7327. {
  7328. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7329. "preferred": true
  7330. }
  7331. ]
  7332. },
  7333. "require": {
  7334. "laravel/framework": "~5.8.0|~6.0|~7.0|~8.0",
  7335. "php": "^7.1"
  7336. },
  7337. "require-dev": {
  7338. "orchestra/testbench": "^3.5|~4.0|~5.0|~6.0"
  7339. },
  7340. "type": "library",
  7341. "extra": {
  7342. "laravel": {
  7343. "providers": [
  7344. "Te7aHoudini\\LaravelTrix\\LaravelTrixServiceProvider"
  7345. ]
  7346. }
  7347. },
  7348. "autoload": {
  7349. "psr-4": {
  7350. "Te7aHoudini\\LaravelTrix\\": "src"
  7351. }
  7352. },
  7353. "notification-url": "https://packagist.org/downloads/",
  7354. "license": [
  7355. "MIT"
  7356. ],
  7357. "authors": [
  7358. {
  7359. "name": "Ahmed Abd El Ftah",
  7360. "email": "ahmedabdelftah95165@gmail.com",
  7361. "role": "Developer"
  7362. }
  7363. ],
  7364. "description": "trix editor for laravel inspired by ActionText for rails",
  7365. "homepage": "https://github.com/te7ahoudini/laravel-trix",
  7366. "keywords": [
  7367. "laravel-trix",
  7368. "te7a-houdini"
  7369. ],
  7370. "support": {
  7371. "issues": "https://github.com/amaelftah/laravel-trix/issues",
  7372. "source": "https://github.com/amaelftah/laravel-trix/tree/2.0.4"
  7373. },
  7374. "time": "2020-11-12T10:48:06+00:00"
  7375. },
  7376. {
  7377. "name": "tightenco/collect",
  7378. "version": "v5.6.33",
  7379. "source": {
  7380. "type": "git",
  7381. "url": "https://github.com/tighten/collect.git",
  7382. "reference": "d7381736dca44ac17d0805a25191b094e5a22446"
  7383. },
  7384. "dist": {
  7385. "type": "zip",
  7386. "url": "https://api.github.com/repos/tighten/collect/zipball/d7381736dca44ac17d0805a25191b094e5a22446",
  7387. "reference": "d7381736dca44ac17d0805a25191b094e5a22446",
  7388. "shasum": "",
  7389. "mirrors": [
  7390. {
  7391. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7392. "preferred": true
  7393. }
  7394. ]
  7395. },
  7396. "require": {
  7397. "php": ">=7.1.3",
  7398. "symfony/var-dumper": ">=3.1.10"
  7399. },
  7400. "require-dev": {
  7401. "mockery/mockery": "~1.0",
  7402. "nesbot/carbon": "~1.20",
  7403. "phpunit/phpunit": "~7.0"
  7404. },
  7405. "type": "library",
  7406. "autoload": {
  7407. "files": [
  7408. "src/Collect/Support/helpers.php",
  7409. "src/Collect/Support/alias.php"
  7410. ],
  7411. "psr-4": {
  7412. "Tightenco\\Collect\\": "src/Collect"
  7413. }
  7414. },
  7415. "notification-url": "https://packagist.org/downloads/",
  7416. "license": [
  7417. "MIT"
  7418. ],
  7419. "authors": [
  7420. {
  7421. "name": "Taylor Otwell",
  7422. "email": "taylorotwell@gmail.com"
  7423. }
  7424. ],
  7425. "description": "Collect - Illuminate Collections as a separate package.",
  7426. "keywords": [
  7427. "collection",
  7428. "laravel"
  7429. ],
  7430. "support": {
  7431. "issues": "https://github.com/tighten/collect/issues",
  7432. "source": "https://github.com/tighten/collect/tree/v5.6.33"
  7433. },
  7434. "time": "2018-08-09T16:56:26+00:00"
  7435. },
  7436. {
  7437. "name": "tijsverkoyen/css-to-inline-styles",
  7438. "version": "2.2.3",
  7439. "source": {
  7440. "type": "git",
  7441. "url": "https://github.com/tijsverkoyen/CssToInlineStyles.git",
  7442. "reference": "b43b05cf43c1b6d849478965062b6ef73e223bb5"
  7443. },
  7444. "dist": {
  7445. "type": "zip",
  7446. "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/b43b05cf43c1b6d849478965062b6ef73e223bb5",
  7447. "reference": "b43b05cf43c1b6d849478965062b6ef73e223bb5",
  7448. "shasum": "",
  7449. "mirrors": [
  7450. {
  7451. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7452. "preferred": true
  7453. }
  7454. ]
  7455. },
  7456. "require": {
  7457. "ext-dom": "*",
  7458. "ext-libxml": "*",
  7459. "php": "^5.5 || ^7.0 || ^8.0",
  7460. "symfony/css-selector": "^2.7 || ^3.0 || ^4.0 || ^5.0"
  7461. },
  7462. "require-dev": {
  7463. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0 || ^7.5"
  7464. },
  7465. "type": "library",
  7466. "extra": {
  7467. "branch-alias": {
  7468. "dev-master": "2.2.x-dev"
  7469. }
  7470. },
  7471. "autoload": {
  7472. "psr-4": {
  7473. "TijsVerkoyen\\CssToInlineStyles\\": "src"
  7474. }
  7475. },
  7476. "notification-url": "https://packagist.org/downloads/",
  7477. "license": [
  7478. "BSD-3-Clause"
  7479. ],
  7480. "authors": [
  7481. {
  7482. "name": "Tijs Verkoyen",
  7483. "email": "css_to_inline_styles@verkoyen.eu",
  7484. "role": "Developer"
  7485. }
  7486. ],
  7487. "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.",
  7488. "homepage": "https://github.com/tijsverkoyen/CssToInlineStyles",
  7489. "support": {
  7490. "issues": "https://github.com/tijsverkoyen/CssToInlineStyles/issues",
  7491. "source": "https://github.com/tijsverkoyen/CssToInlineStyles/tree/2.2.3"
  7492. },
  7493. "time": "2020-07-13T06:12:54+00:00"
  7494. },
  7495. {
  7496. "name": "vlucas/phpdotenv",
  7497. "version": "v4.2.0",
  7498. "source": {
  7499. "type": "git",
  7500. "url": "https://github.com/vlucas/phpdotenv.git",
  7501. "reference": "da64796370fc4eb03cc277088f6fede9fde88482"
  7502. },
  7503. "dist": {
  7504. "type": "zip",
  7505. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/da64796370fc4eb03cc277088f6fede9fde88482",
  7506. "reference": "da64796370fc4eb03cc277088f6fede9fde88482",
  7507. "shasum": "",
  7508. "mirrors": [
  7509. {
  7510. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7511. "preferred": true
  7512. }
  7513. ]
  7514. },
  7515. "require": {
  7516. "php": "^5.5.9 || ^7.0 || ^8.0",
  7517. "phpoption/phpoption": "^1.7.3",
  7518. "symfony/polyfill-ctype": "^1.17"
  7519. },
  7520. "require-dev": {
  7521. "bamarni/composer-bin-plugin": "^1.4.1",
  7522. "ext-filter": "*",
  7523. "ext-pcre": "*",
  7524. "phpunit/phpunit": "^4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20"
  7525. },
  7526. "suggest": {
  7527. "ext-filter": "Required to use the boolean validator.",
  7528. "ext-pcre": "Required to use most of the library."
  7529. },
  7530. "type": "library",
  7531. "extra": {
  7532. "branch-alias": {
  7533. "dev-master": "4.1-dev"
  7534. }
  7535. },
  7536. "autoload": {
  7537. "psr-4": {
  7538. "Dotenv\\": "src/"
  7539. }
  7540. },
  7541. "notification-url": "https://packagist.org/downloads/",
  7542. "license": [
  7543. "BSD-3-Clause"
  7544. ],
  7545. "authors": [
  7546. {
  7547. "name": "Graham Campbell",
  7548. "email": "graham@alt-three.com",
  7549. "homepage": "https://gjcampbell.co.uk/"
  7550. },
  7551. {
  7552. "name": "Vance Lucas",
  7553. "email": "vance@vancelucas.com",
  7554. "homepage": "https://vancelucas.com/"
  7555. }
  7556. ],
  7557. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  7558. "keywords": [
  7559. "dotenv",
  7560. "env",
  7561. "environment"
  7562. ],
  7563. "support": {
  7564. "issues": "https://github.com/vlucas/phpdotenv/issues",
  7565. "source": "https://github.com/vlucas/phpdotenv/tree/v4.2.0"
  7566. },
  7567. "funding": [
  7568. {
  7569. "url": "https://github.com/GrahamCampbell",
  7570. "type": "github"
  7571. },
  7572. {
  7573. "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
  7574. "type": "tidelift"
  7575. }
  7576. ],
  7577. "time": "2021-01-20T15:11:48+00:00"
  7578. },
  7579. {
  7580. "name": "voku/portable-ascii",
  7581. "version": "1.5.6",
  7582. "source": {
  7583. "type": "git",
  7584. "url": "https://github.com/voku/portable-ascii.git",
  7585. "reference": "80953678b19901e5165c56752d087fc11526017c"
  7586. },
  7587. "dist": {
  7588. "type": "zip",
  7589. "url": "https://api.github.com/repos/voku/portable-ascii/zipball/80953678b19901e5165c56752d087fc11526017c",
  7590. "reference": "80953678b19901e5165c56752d087fc11526017c",
  7591. "shasum": "",
  7592. "mirrors": [
  7593. {
  7594. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7595. "preferred": true
  7596. }
  7597. ]
  7598. },
  7599. "require": {
  7600. "php": ">=7.0.0"
  7601. },
  7602. "require-dev": {
  7603. "phpunit/phpunit": "~6.0 || ~7.0 || ~9.0"
  7604. },
  7605. "suggest": {
  7606. "ext-intl": "Use Intl for transliterator_transliterate() support"
  7607. },
  7608. "type": "library",
  7609. "autoload": {
  7610. "psr-4": {
  7611. "voku\\": "src/voku/"
  7612. }
  7613. },
  7614. "notification-url": "https://packagist.org/downloads/",
  7615. "license": [
  7616. "MIT"
  7617. ],
  7618. "authors": [
  7619. {
  7620. "name": "Lars Moelleken",
  7621. "homepage": "http://www.moelleken.org/"
  7622. }
  7623. ],
  7624. "description": "Portable ASCII library - performance optimized (ascii) string functions for php.",
  7625. "homepage": "https://github.com/voku/portable-ascii",
  7626. "keywords": [
  7627. "ascii",
  7628. "clean",
  7629. "php"
  7630. ],
  7631. "support": {
  7632. "issues": "https://github.com/voku/portable-ascii/issues",
  7633. "source": "https://github.com/voku/portable-ascii/tree/1.5.6"
  7634. },
  7635. "funding": [
  7636. {
  7637. "url": "https://www.paypal.me/moelleken",
  7638. "type": "custom"
  7639. },
  7640. {
  7641. "url": "https://github.com/voku",
  7642. "type": "github"
  7643. },
  7644. {
  7645. "url": "https://opencollective.com/portable-ascii",
  7646. "type": "open_collective"
  7647. },
  7648. {
  7649. "url": "https://www.patreon.com/voku",
  7650. "type": "patreon"
  7651. },
  7652. {
  7653. "url": "https://tidelift.com/funding/github/packagist/voku/portable-ascii",
  7654. "type": "tidelift"
  7655. }
  7656. ],
  7657. "time": "2020-11-12T00:07:28+00:00"
  7658. },
  7659. {
  7660. "name": "yajra/laravel-oci8",
  7661. "version": "v7.0.0",
  7662. "source": {
  7663. "type": "git",
  7664. "url": "https://github.com/yajra/laravel-oci8.git",
  7665. "reference": "0d0db3c21a15438ee4bd610f6a0c585cb45fd974"
  7666. },
  7667. "dist": {
  7668. "type": "zip",
  7669. "url": "https://api.github.com/repos/yajra/laravel-oci8/zipball/0d0db3c21a15438ee4bd610f6a0c585cb45fd974",
  7670. "reference": "0d0db3c21a15438ee4bd610f6a0c585cb45fd974",
  7671. "shasum": "",
  7672. "mirrors": [
  7673. {
  7674. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7675. "preferred": true
  7676. }
  7677. ]
  7678. },
  7679. "require": {
  7680. "ext-oci8": ">=2.0.0",
  7681. "ext-pdo": "*",
  7682. "illuminate/database": "^7",
  7683. "illuminate/support": "^7",
  7684. "php": "^7.2.5",
  7685. "yajra/laravel-pdo-via-oci8": "^2"
  7686. },
  7687. "require-dev": {
  7688. "mockery/mockery": "^1.3.1",
  7689. "phpunit/phpunit": "^8.4|^9.0",
  7690. "scrutinizer/ocular": "~1.1"
  7691. },
  7692. "type": "library",
  7693. "extra": {
  7694. "branch-alias": {
  7695. "dev-master": "7.x-dev"
  7696. },
  7697. "laravel": {
  7698. "providers": [
  7699. "Yajra\\Oci8\\Oci8ServiceProvider"
  7700. ]
  7701. }
  7702. },
  7703. "autoload": {
  7704. "files": [
  7705. "src/helper.php"
  7706. ],
  7707. "psr-4": {
  7708. "Yajra\\": "src/"
  7709. }
  7710. },
  7711. "notification-url": "https://packagist.org/downloads/",
  7712. "license": [
  7713. "MIT"
  7714. ],
  7715. "authors": [
  7716. {
  7717. "name": "Arjay Angeles",
  7718. "email": "aqangeles@gmail.com"
  7719. }
  7720. ],
  7721. "description": "Oracle DB driver for Laravel 4|5|6|7 via OCI8",
  7722. "keywords": [
  7723. "laravel",
  7724. "oci8",
  7725. "oracle",
  7726. "pdo_oci"
  7727. ],
  7728. "support": {
  7729. "issues": "https://github.com/yajra/laravel-oci8/issues",
  7730. "source": "https://github.com/yajra/laravel-oci8/tree/v7.0.0"
  7731. },
  7732. "funding": [
  7733. {
  7734. "url": "https://www.paypal.me/yajra",
  7735. "type": "custom"
  7736. },
  7737. {
  7738. "url": "https://www.patreon.com/yajra",
  7739. "type": "patreon"
  7740. }
  7741. ],
  7742. "time": "2020-03-04T02:15:19+00:00"
  7743. },
  7744. {
  7745. "name": "yajra/laravel-pdo-via-oci8",
  7746. "version": "v2.2.0",
  7747. "source": {
  7748. "type": "git",
  7749. "url": "https://github.com/yajra/pdo-via-oci8.git",
  7750. "reference": "93610843b7abe975413288bcc4adb347edefb4b8"
  7751. },
  7752. "dist": {
  7753. "type": "zip",
  7754. "url": "https://api.github.com/repos/yajra/pdo-via-oci8/zipball/93610843b7abe975413288bcc4adb347edefb4b8",
  7755. "reference": "93610843b7abe975413288bcc4adb347edefb4b8",
  7756. "shasum": "",
  7757. "mirrors": [
  7758. {
  7759. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7760. "preferred": true
  7761. }
  7762. ]
  7763. },
  7764. "require-dev": {
  7765. "phpunit/phpunit": "^6.4"
  7766. },
  7767. "type": "library",
  7768. "extra": {
  7769. "branch-alias": {
  7770. "dev-master": "2.0-dev"
  7771. }
  7772. },
  7773. "autoload": {
  7774. "psr-4": {
  7775. "Yajra\\": "src/"
  7776. }
  7777. },
  7778. "notification-url": "https://packagist.org/downloads/",
  7779. "license": [
  7780. "MIT"
  7781. ],
  7782. "authors": [
  7783. {
  7784. "name": "Arjay Angeles",
  7785. "email": "aqangeles@gmail.com"
  7786. }
  7787. ],
  7788. "description": "PDO userspace driver proxying calls to PHP OCI8 driver",
  7789. "support": {
  7790. "issues": "https://github.com/yajra/pdo-via-oci8/issues",
  7791. "source": "https://github.com/yajra/pdo-via-oci8/tree/v2.2.0"
  7792. },
  7793. "time": "2020-12-11T12:29:18+00:00"
  7794. }
  7795. ],
  7796. "packages-dev": [
  7797. {
  7798. "name": "barryvdh/laravel-debugbar",
  7799. "version": "v3.5.5",
  7800. "source": {
  7801. "type": "git",
  7802. "url": "https://github.com/barryvdh/laravel-debugbar.git",
  7803. "reference": "6420113d90bb746423fa70b9940e9e7c26ebc121"
  7804. },
  7805. "dist": {
  7806. "type": "zip",
  7807. "url": "https://api.github.com/repos/barryvdh/laravel-debugbar/zipball/6420113d90bb746423fa70b9940e9e7c26ebc121",
  7808. "reference": "6420113d90bb746423fa70b9940e9e7c26ebc121",
  7809. "shasum": "",
  7810. "mirrors": [
  7811. {
  7812. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7813. "preferred": true
  7814. }
  7815. ]
  7816. },
  7817. "require": {
  7818. "illuminate/routing": "^6|^7|^8",
  7819. "illuminate/session": "^6|^7|^8",
  7820. "illuminate/support": "^6|^7|^8",
  7821. "maximebf/debugbar": "^1.16.3",
  7822. "php": ">=7.2",
  7823. "symfony/debug": "^4.3|^5",
  7824. "symfony/finder": "^4.3|^5"
  7825. },
  7826. "require-dev": {
  7827. "mockery/mockery": "^1.3.3",
  7828. "orchestra/testbench-dusk": "^4|^5|^6",
  7829. "phpunit/phpunit": "^8.5|^9.0",
  7830. "squizlabs/php_codesniffer": "^3.5"
  7831. },
  7832. "type": "library",
  7833. "extra": {
  7834. "branch-alias": {
  7835. "dev-master": "3.5-dev"
  7836. },
  7837. "laravel": {
  7838. "providers": [
  7839. "Barryvdh\\Debugbar\\ServiceProvider"
  7840. ],
  7841. "aliases": {
  7842. "Debugbar": "Barryvdh\\Debugbar\\Facade"
  7843. }
  7844. }
  7845. },
  7846. "autoload": {
  7847. "psr-4": {
  7848. "Barryvdh\\Debugbar\\": "src/"
  7849. },
  7850. "files": [
  7851. "src/helpers.php"
  7852. ]
  7853. },
  7854. "notification-url": "https://packagist.org/downloads/",
  7855. "license": [
  7856. "MIT"
  7857. ],
  7858. "authors": [
  7859. {
  7860. "name": "Barry vd. Heuvel",
  7861. "email": "barryvdh@gmail.com"
  7862. }
  7863. ],
  7864. "description": "PHP Debugbar integration for Laravel",
  7865. "keywords": [
  7866. "debug",
  7867. "debugbar",
  7868. "laravel",
  7869. "profiler",
  7870. "webprofiler"
  7871. ],
  7872. "support": {
  7873. "issues": "https://github.com/barryvdh/laravel-debugbar/issues",
  7874. "source": "https://github.com/barryvdh/laravel-debugbar/tree/v3.5.5"
  7875. },
  7876. "funding": [
  7877. {
  7878. "url": "https://github.com/barryvdh",
  7879. "type": "github"
  7880. }
  7881. ],
  7882. "time": "2021-04-07T11:19:20+00:00"
  7883. },
  7884. {
  7885. "name": "beyondcode/laravel-dump-server",
  7886. "version": "1.7.0",
  7887. "source": {
  7888. "type": "git",
  7889. "url": "https://github.com/beyondcode/laravel-dump-server.git",
  7890. "reference": "e27c7b942ab62f6ac7168359393d328ec5215b89"
  7891. },
  7892. "dist": {
  7893. "type": "zip",
  7894. "url": "https://api.github.com/repos/beyondcode/laravel-dump-server/zipball/e27c7b942ab62f6ac7168359393d328ec5215b89",
  7895. "reference": "e27c7b942ab62f6ac7168359393d328ec5215b89",
  7896. "shasum": "",
  7897. "mirrors": [
  7898. {
  7899. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7900. "preferred": true
  7901. }
  7902. ]
  7903. },
  7904. "require": {
  7905. "illuminate/console": "5.6.*|5.7.*|5.8.*|^6.0|^7.0|^8.0",
  7906. "illuminate/http": "5.6.*|5.7.*|5.8.*|^6.0|^7.0|^8.0",
  7907. "illuminate/support": "5.6.*|5.7.*|5.8.*|^6.0|^7.0|^8.0",
  7908. "php": ">=7.2.5",
  7909. "symfony/var-dumper": "^5.0"
  7910. },
  7911. "require-dev": {
  7912. "larapack/dd": "^1.0",
  7913. "phpunit/phpunit": "^7.0|^9.3"
  7914. },
  7915. "type": "library",
  7916. "extra": {
  7917. "laravel": {
  7918. "providers": [
  7919. "BeyondCode\\DumpServer\\DumpServerServiceProvider"
  7920. ]
  7921. }
  7922. },
  7923. "autoload": {
  7924. "psr-4": {
  7925. "BeyondCode\\DumpServer\\": "src"
  7926. },
  7927. "files": [
  7928. "helpers.php"
  7929. ]
  7930. },
  7931. "notification-url": "https://packagist.org/downloads/",
  7932. "license": [
  7933. "MIT"
  7934. ],
  7935. "authors": [
  7936. {
  7937. "name": "Marcel Pociot",
  7938. "email": "marcel@beyondco.de",
  7939. "homepage": "https://beyondco.de",
  7940. "role": "Developer"
  7941. }
  7942. ],
  7943. "description": "Symfony Var-Dump Server for Laravel",
  7944. "homepage": "https://github.com/beyondcode/laravel-dump-server",
  7945. "keywords": [
  7946. "beyondcode",
  7947. "laravel-dump-server"
  7948. ],
  7949. "support": {
  7950. "issues": "https://github.com/beyondcode/laravel-dump-server/issues",
  7951. "source": "https://github.com/beyondcode/laravel-dump-server/tree/1.7.0"
  7952. },
  7953. "time": "2020-12-15T10:57:43+00:00"
  7954. },
  7955. {
  7956. "name": "doctrine/instantiator",
  7957. "version": "1.4.0",
  7958. "source": {
  7959. "type": "git",
  7960. "url": "https://github.com/doctrine/instantiator.git",
  7961. "reference": "d56bf6102915de5702778fe20f2de3b2fe570b5b"
  7962. },
  7963. "dist": {
  7964. "type": "zip",
  7965. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/d56bf6102915de5702778fe20f2de3b2fe570b5b",
  7966. "reference": "d56bf6102915de5702778fe20f2de3b2fe570b5b",
  7967. "shasum": "",
  7968. "mirrors": [
  7969. {
  7970. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7971. "preferred": true
  7972. }
  7973. ]
  7974. },
  7975. "require": {
  7976. "php": "^7.1 || ^8.0"
  7977. },
  7978. "require-dev": {
  7979. "doctrine/coding-standard": "^8.0",
  7980. "ext-pdo": "*",
  7981. "ext-phar": "*",
  7982. "phpbench/phpbench": "^0.13 || 1.0.0-alpha2",
  7983. "phpstan/phpstan": "^0.12",
  7984. "phpstan/phpstan-phpunit": "^0.12",
  7985. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0"
  7986. },
  7987. "type": "library",
  7988. "autoload": {
  7989. "psr-4": {
  7990. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  7991. }
  7992. },
  7993. "notification-url": "https://packagist.org/downloads/",
  7994. "license": [
  7995. "MIT"
  7996. ],
  7997. "authors": [
  7998. {
  7999. "name": "Marco Pivetta",
  8000. "email": "ocramius@gmail.com",
  8001. "homepage": "https://ocramius.github.io/"
  8002. }
  8003. ],
  8004. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  8005. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  8006. "keywords": [
  8007. "constructor",
  8008. "instantiate"
  8009. ],
  8010. "support": {
  8011. "issues": "https://github.com/doctrine/instantiator/issues",
  8012. "source": "https://github.com/doctrine/instantiator/tree/1.4.0"
  8013. },
  8014. "funding": [
  8015. {
  8016. "url": "https://www.doctrine-project.org/sponsorship.html",
  8017. "type": "custom"
  8018. },
  8019. {
  8020. "url": "https://www.patreon.com/phpdoctrine",
  8021. "type": "patreon"
  8022. },
  8023. {
  8024. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
  8025. "type": "tidelift"
  8026. }
  8027. ],
  8028. "time": "2020-11-10T18:47:58+00:00"
  8029. },
  8030. {
  8031. "name": "fzaninotto/faker",
  8032. "version": "v1.9.2",
  8033. "source": {
  8034. "type": "git",
  8035. "url": "https://github.com/fzaninotto/Faker.git",
  8036. "reference": "848d8125239d7dbf8ab25cb7f054f1a630e68c2e"
  8037. },
  8038. "dist": {
  8039. "type": "zip",
  8040. "url": "https://api.github.com/repos/fzaninotto/Faker/zipball/848d8125239d7dbf8ab25cb7f054f1a630e68c2e",
  8041. "reference": "848d8125239d7dbf8ab25cb7f054f1a630e68c2e",
  8042. "shasum": "",
  8043. "mirrors": [
  8044. {
  8045. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8046. "preferred": true
  8047. }
  8048. ]
  8049. },
  8050. "require": {
  8051. "php": "^5.3.3 || ^7.0"
  8052. },
  8053. "require-dev": {
  8054. "ext-intl": "*",
  8055. "phpunit/phpunit": "^4.8.35 || ^5.7",
  8056. "squizlabs/php_codesniffer": "^2.9.2"
  8057. },
  8058. "type": "library",
  8059. "extra": {
  8060. "branch-alias": {
  8061. "dev-master": "1.9-dev"
  8062. }
  8063. },
  8064. "autoload": {
  8065. "psr-4": {
  8066. "Faker\\": "src/Faker/"
  8067. }
  8068. },
  8069. "notification-url": "https://packagist.org/downloads/",
  8070. "license": [
  8071. "MIT"
  8072. ],
  8073. "authors": [
  8074. {
  8075. "name": "François Zaninotto"
  8076. }
  8077. ],
  8078. "description": "Faker is a PHP library that generates fake data for you.",
  8079. "keywords": [
  8080. "data",
  8081. "faker",
  8082. "fixtures"
  8083. ],
  8084. "support": {
  8085. "issues": "https://github.com/fzaninotto/Faker/issues",
  8086. "source": "https://github.com/fzaninotto/Faker/tree/v1.9.2"
  8087. },
  8088. "abandoned": true,
  8089. "time": "2020-12-11T09:56:16+00:00"
  8090. },
  8091. {
  8092. "name": "hamcrest/hamcrest-php",
  8093. "version": "v2.0.1",
  8094. "source": {
  8095. "type": "git",
  8096. "url": "https://github.com/hamcrest/hamcrest-php.git",
  8097. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3"
  8098. },
  8099. "dist": {
  8100. "type": "zip",
  8101. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  8102. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  8103. "shasum": "",
  8104. "mirrors": [
  8105. {
  8106. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8107. "preferred": true
  8108. }
  8109. ]
  8110. },
  8111. "require": {
  8112. "php": "^5.3|^7.0|^8.0"
  8113. },
  8114. "replace": {
  8115. "cordoval/hamcrest-php": "*",
  8116. "davedevelopment/hamcrest-php": "*",
  8117. "kodova/hamcrest-php": "*"
  8118. },
  8119. "require-dev": {
  8120. "phpunit/php-file-iterator": "^1.4 || ^2.0",
  8121. "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0"
  8122. },
  8123. "type": "library",
  8124. "extra": {
  8125. "branch-alias": {
  8126. "dev-master": "2.1-dev"
  8127. }
  8128. },
  8129. "autoload": {
  8130. "classmap": [
  8131. "hamcrest"
  8132. ]
  8133. },
  8134. "notification-url": "https://packagist.org/downloads/",
  8135. "license": [
  8136. "BSD-3-Clause"
  8137. ],
  8138. "description": "This is the PHP port of Hamcrest Matchers",
  8139. "keywords": [
  8140. "test"
  8141. ],
  8142. "support": {
  8143. "issues": "https://github.com/hamcrest/hamcrest-php/issues",
  8144. "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.0.1"
  8145. },
  8146. "time": "2020-07-09T08:09:16+00:00"
  8147. },
  8148. {
  8149. "name": "maximebf/debugbar",
  8150. "version": "v1.16.5",
  8151. "source": {
  8152. "type": "git",
  8153. "url": "https://github.com/maximebf/php-debugbar.git",
  8154. "reference": "6d51ee9e94cff14412783785e79a4e7ef97b9d62"
  8155. },
  8156. "dist": {
  8157. "type": "zip",
  8158. "url": "https://api.github.com/repos/maximebf/php-debugbar/zipball/6d51ee9e94cff14412783785e79a4e7ef97b9d62",
  8159. "reference": "6d51ee9e94cff14412783785e79a4e7ef97b9d62",
  8160. "shasum": "",
  8161. "mirrors": [
  8162. {
  8163. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8164. "preferred": true
  8165. }
  8166. ]
  8167. },
  8168. "require": {
  8169. "php": "^7.1|^8",
  8170. "psr/log": "^1.0",
  8171. "symfony/var-dumper": "^2.6|^3|^4|^5"
  8172. },
  8173. "require-dev": {
  8174. "phpunit/phpunit": "^7.5.20 || ^9.4.2"
  8175. },
  8176. "suggest": {
  8177. "kriswallsmith/assetic": "The best way to manage assets",
  8178. "monolog/monolog": "Log using Monolog",
  8179. "predis/predis": "Redis storage"
  8180. },
  8181. "type": "library",
  8182. "extra": {
  8183. "branch-alias": {
  8184. "dev-master": "1.16-dev"
  8185. }
  8186. },
  8187. "autoload": {
  8188. "psr-4": {
  8189. "DebugBar\\": "src/DebugBar/"
  8190. }
  8191. },
  8192. "notification-url": "https://packagist.org/downloads/",
  8193. "license": [
  8194. "MIT"
  8195. ],
  8196. "authors": [
  8197. {
  8198. "name": "Maxime Bouroumeau-Fuseau",
  8199. "email": "maxime.bouroumeau@gmail.com",
  8200. "homepage": "http://maximebf.com"
  8201. },
  8202. {
  8203. "name": "Barry vd. Heuvel",
  8204. "email": "barryvdh@gmail.com"
  8205. }
  8206. ],
  8207. "description": "Debug bar in the browser for php application",
  8208. "homepage": "https://github.com/maximebf/php-debugbar",
  8209. "keywords": [
  8210. "debug",
  8211. "debugbar"
  8212. ],
  8213. "support": {
  8214. "issues": "https://github.com/maximebf/php-debugbar/issues",
  8215. "source": "https://github.com/maximebf/php-debugbar/tree/v1.16.5"
  8216. },
  8217. "time": "2020-12-07T11:07:24+00:00"
  8218. },
  8219. {
  8220. "name": "mockery/mockery",
  8221. "version": "1.4.3",
  8222. "source": {
  8223. "type": "git",
  8224. "url": "https://github.com/mockery/mockery.git",
  8225. "reference": "d1339f64479af1bee0e82a0413813fe5345a54ea"
  8226. },
  8227. "dist": {
  8228. "type": "zip",
  8229. "url": "https://api.github.com/repos/mockery/mockery/zipball/d1339f64479af1bee0e82a0413813fe5345a54ea",
  8230. "reference": "d1339f64479af1bee0e82a0413813fe5345a54ea",
  8231. "shasum": "",
  8232. "mirrors": [
  8233. {
  8234. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8235. "preferred": true
  8236. }
  8237. ]
  8238. },
  8239. "require": {
  8240. "hamcrest/hamcrest-php": "^2.0.1",
  8241. "lib-pcre": ">=7.0",
  8242. "php": "^7.3 || ^8.0"
  8243. },
  8244. "conflict": {
  8245. "phpunit/phpunit": "<8.0"
  8246. },
  8247. "require-dev": {
  8248. "phpunit/phpunit": "^8.5 || ^9.3"
  8249. },
  8250. "type": "library",
  8251. "extra": {
  8252. "branch-alias": {
  8253. "dev-master": "1.4.x-dev"
  8254. }
  8255. },
  8256. "autoload": {
  8257. "psr-0": {
  8258. "Mockery": "library/"
  8259. }
  8260. },
  8261. "notification-url": "https://packagist.org/downloads/",
  8262. "license": [
  8263. "BSD-3-Clause"
  8264. ],
  8265. "authors": [
  8266. {
  8267. "name": "Pádraic Brady",
  8268. "email": "padraic.brady@gmail.com",
  8269. "homepage": "http://blog.astrumfutura.com"
  8270. },
  8271. {
  8272. "name": "Dave Marshall",
  8273. "email": "dave.marshall@atstsolutions.co.uk",
  8274. "homepage": "http://davedevelopment.co.uk"
  8275. }
  8276. ],
  8277. "description": "Mockery is a simple yet flexible PHP mock object framework",
  8278. "homepage": "https://github.com/mockery/mockery",
  8279. "keywords": [
  8280. "BDD",
  8281. "TDD",
  8282. "library",
  8283. "mock",
  8284. "mock objects",
  8285. "mockery",
  8286. "stub",
  8287. "test",
  8288. "test double",
  8289. "testing"
  8290. ],
  8291. "support": {
  8292. "issues": "https://github.com/mockery/mockery/issues",
  8293. "source": "https://github.com/mockery/mockery/tree/1.4.3"
  8294. },
  8295. "time": "2021-02-24T09:51:49+00:00"
  8296. },
  8297. {
  8298. "name": "myclabs/deep-copy",
  8299. "version": "1.10.2",
  8300. "source": {
  8301. "type": "git",
  8302. "url": "https://github.com/myclabs/DeepCopy.git",
  8303. "reference": "776f831124e9c62e1a2c601ecc52e776d8bb7220"
  8304. },
  8305. "dist": {
  8306. "type": "zip",
  8307. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/776f831124e9c62e1a2c601ecc52e776d8bb7220",
  8308. "reference": "776f831124e9c62e1a2c601ecc52e776d8bb7220",
  8309. "shasum": "",
  8310. "mirrors": [
  8311. {
  8312. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8313. "preferred": true
  8314. }
  8315. ]
  8316. },
  8317. "require": {
  8318. "php": "^7.1 || ^8.0"
  8319. },
  8320. "replace": {
  8321. "myclabs/deep-copy": "self.version"
  8322. },
  8323. "require-dev": {
  8324. "doctrine/collections": "^1.0",
  8325. "doctrine/common": "^2.6",
  8326. "phpunit/phpunit": "^7.1"
  8327. },
  8328. "type": "library",
  8329. "autoload": {
  8330. "psr-4": {
  8331. "DeepCopy\\": "src/DeepCopy/"
  8332. },
  8333. "files": [
  8334. "src/DeepCopy/deep_copy.php"
  8335. ]
  8336. },
  8337. "notification-url": "https://packagist.org/downloads/",
  8338. "license": [
  8339. "MIT"
  8340. ],
  8341. "description": "Create deep copies (clones) of your objects",
  8342. "keywords": [
  8343. "clone",
  8344. "copy",
  8345. "duplicate",
  8346. "object",
  8347. "object graph"
  8348. ],
  8349. "support": {
  8350. "issues": "https://github.com/myclabs/DeepCopy/issues",
  8351. "source": "https://github.com/myclabs/DeepCopy/tree/1.10.2"
  8352. },
  8353. "funding": [
  8354. {
  8355. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  8356. "type": "tidelift"
  8357. }
  8358. ],
  8359. "time": "2020-11-13T09:40:50+00:00"
  8360. },
  8361. {
  8362. "name": "nunomaduro/collision",
  8363. "version": "v4.3.0",
  8364. "source": {
  8365. "type": "git",
  8366. "url": "https://github.com/nunomaduro/collision.git",
  8367. "reference": "7c125dc2463f3e144ddc7e05e63077109508c94e"
  8368. },
  8369. "dist": {
  8370. "type": "zip",
  8371. "url": "https://api.github.com/repos/nunomaduro/collision/zipball/7c125dc2463f3e144ddc7e05e63077109508c94e",
  8372. "reference": "7c125dc2463f3e144ddc7e05e63077109508c94e",
  8373. "shasum": "",
  8374. "mirrors": [
  8375. {
  8376. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8377. "preferred": true
  8378. }
  8379. ]
  8380. },
  8381. "require": {
  8382. "facade/ignition-contracts": "^1.0",
  8383. "filp/whoops": "^2.4",
  8384. "php": "^7.2.5 || ^8.0",
  8385. "symfony/console": "^5.0"
  8386. },
  8387. "require-dev": {
  8388. "facade/ignition": "^2.0",
  8389. "fideloper/proxy": "^4.2",
  8390. "friendsofphp/php-cs-fixer": "^2.16",
  8391. "fruitcake/laravel-cors": "^1.0",
  8392. "laravel/framework": "^7.0",
  8393. "laravel/tinker": "^2.0",
  8394. "nunomaduro/larastan": "^0.6",
  8395. "orchestra/testbench": "^5.0",
  8396. "phpstan/phpstan": "^0.12.3",
  8397. "phpunit/phpunit": "^8.5.1 || ^9.0"
  8398. },
  8399. "type": "library",
  8400. "extra": {
  8401. "laravel": {
  8402. "providers": [
  8403. "NunoMaduro\\Collision\\Adapters\\Laravel\\CollisionServiceProvider"
  8404. ]
  8405. }
  8406. },
  8407. "autoload": {
  8408. "psr-4": {
  8409. "NunoMaduro\\Collision\\": "src/"
  8410. }
  8411. },
  8412. "notification-url": "https://packagist.org/downloads/",
  8413. "license": [
  8414. "MIT"
  8415. ],
  8416. "authors": [
  8417. {
  8418. "name": "Nuno Maduro",
  8419. "email": "enunomaduro@gmail.com"
  8420. }
  8421. ],
  8422. "description": "Cli error handling for console/command-line PHP applications.",
  8423. "keywords": [
  8424. "artisan",
  8425. "cli",
  8426. "command-line",
  8427. "console",
  8428. "error",
  8429. "handling",
  8430. "laravel",
  8431. "laravel-zero",
  8432. "php",
  8433. "symfony"
  8434. ],
  8435. "support": {
  8436. "issues": "https://github.com/nunomaduro/collision/issues",
  8437. "source": "https://github.com/nunomaduro/collision"
  8438. },
  8439. "funding": [
  8440. {
  8441. "url": "https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=66BYDWAT92N6L",
  8442. "type": "custom"
  8443. },
  8444. {
  8445. "url": "https://github.com/nunomaduro",
  8446. "type": "github"
  8447. },
  8448. {
  8449. "url": "https://www.patreon.com/nunomaduro",
  8450. "type": "patreon"
  8451. }
  8452. ],
  8453. "time": "2020-10-29T15:12:23+00:00"
  8454. },
  8455. {
  8456. "name": "phar-io/manifest",
  8457. "version": "2.0.1",
  8458. "source": {
  8459. "type": "git",
  8460. "url": "https://github.com/phar-io/manifest.git",
  8461. "reference": "85265efd3af7ba3ca4b2a2c34dbfc5788dd29133"
  8462. },
  8463. "dist": {
  8464. "type": "zip",
  8465. "url": "https://api.github.com/repos/phar-io/manifest/zipball/85265efd3af7ba3ca4b2a2c34dbfc5788dd29133",
  8466. "reference": "85265efd3af7ba3ca4b2a2c34dbfc5788dd29133",
  8467. "shasum": "",
  8468. "mirrors": [
  8469. {
  8470. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8471. "preferred": true
  8472. }
  8473. ]
  8474. },
  8475. "require": {
  8476. "ext-dom": "*",
  8477. "ext-phar": "*",
  8478. "ext-xmlwriter": "*",
  8479. "phar-io/version": "^3.0.1",
  8480. "php": "^7.2 || ^8.0"
  8481. },
  8482. "type": "library",
  8483. "extra": {
  8484. "branch-alias": {
  8485. "dev-master": "2.0.x-dev"
  8486. }
  8487. },
  8488. "autoload": {
  8489. "classmap": [
  8490. "src/"
  8491. ]
  8492. },
  8493. "notification-url": "https://packagist.org/downloads/",
  8494. "license": [
  8495. "BSD-3-Clause"
  8496. ],
  8497. "authors": [
  8498. {
  8499. "name": "Arne Blankerts",
  8500. "email": "arne@blankerts.de",
  8501. "role": "Developer"
  8502. },
  8503. {
  8504. "name": "Sebastian Heuer",
  8505. "email": "sebastian@phpeople.de",
  8506. "role": "Developer"
  8507. },
  8508. {
  8509. "name": "Sebastian Bergmann",
  8510. "email": "sebastian@phpunit.de",
  8511. "role": "Developer"
  8512. }
  8513. ],
  8514. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  8515. "support": {
  8516. "issues": "https://github.com/phar-io/manifest/issues",
  8517. "source": "https://github.com/phar-io/manifest/tree/master"
  8518. },
  8519. "time": "2020-06-27T14:33:11+00:00"
  8520. },
  8521. {
  8522. "name": "phar-io/version",
  8523. "version": "3.1.0",
  8524. "source": {
  8525. "type": "git",
  8526. "url": "https://github.com/phar-io/version.git",
  8527. "reference": "bae7c545bef187884426f042434e561ab1ddb182"
  8528. },
  8529. "dist": {
  8530. "type": "zip",
  8531. "url": "https://api.github.com/repos/phar-io/version/zipball/bae7c545bef187884426f042434e561ab1ddb182",
  8532. "reference": "bae7c545bef187884426f042434e561ab1ddb182",
  8533. "shasum": "",
  8534. "mirrors": [
  8535. {
  8536. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8537. "preferred": true
  8538. }
  8539. ]
  8540. },
  8541. "require": {
  8542. "php": "^7.2 || ^8.0"
  8543. },
  8544. "type": "library",
  8545. "autoload": {
  8546. "classmap": [
  8547. "src/"
  8548. ]
  8549. },
  8550. "notification-url": "https://packagist.org/downloads/",
  8551. "license": [
  8552. "BSD-3-Clause"
  8553. ],
  8554. "authors": [
  8555. {
  8556. "name": "Arne Blankerts",
  8557. "email": "arne@blankerts.de",
  8558. "role": "Developer"
  8559. },
  8560. {
  8561. "name": "Sebastian Heuer",
  8562. "email": "sebastian@phpeople.de",
  8563. "role": "Developer"
  8564. },
  8565. {
  8566. "name": "Sebastian Bergmann",
  8567. "email": "sebastian@phpunit.de",
  8568. "role": "Developer"
  8569. }
  8570. ],
  8571. "description": "Library for handling version information and constraints",
  8572. "support": {
  8573. "issues": "https://github.com/phar-io/version/issues",
  8574. "source": "https://github.com/phar-io/version/tree/3.1.0"
  8575. },
  8576. "time": "2021-02-23T14:00:09+00:00"
  8577. },
  8578. {
  8579. "name": "phpdocumentor/reflection-common",
  8580. "version": "2.2.0",
  8581. "source": {
  8582. "type": "git",
  8583. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  8584. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b"
  8585. },
  8586. "dist": {
  8587. "type": "zip",
  8588. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  8589. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  8590. "shasum": "",
  8591. "mirrors": [
  8592. {
  8593. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8594. "preferred": true
  8595. }
  8596. ]
  8597. },
  8598. "require": {
  8599. "php": "^7.2 || ^8.0"
  8600. },
  8601. "type": "library",
  8602. "extra": {
  8603. "branch-alias": {
  8604. "dev-2.x": "2.x-dev"
  8605. }
  8606. },
  8607. "autoload": {
  8608. "psr-4": {
  8609. "phpDocumentor\\Reflection\\": "src/"
  8610. }
  8611. },
  8612. "notification-url": "https://packagist.org/downloads/",
  8613. "license": [
  8614. "MIT"
  8615. ],
  8616. "authors": [
  8617. {
  8618. "name": "Jaap van Otterdijk",
  8619. "email": "opensource@ijaap.nl"
  8620. }
  8621. ],
  8622. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  8623. "homepage": "http://www.phpdoc.org",
  8624. "keywords": [
  8625. "FQSEN",
  8626. "phpDocumentor",
  8627. "phpdoc",
  8628. "reflection",
  8629. "static analysis"
  8630. ],
  8631. "support": {
  8632. "issues": "https://github.com/phpDocumentor/ReflectionCommon/issues",
  8633. "source": "https://github.com/phpDocumentor/ReflectionCommon/tree/2.x"
  8634. },
  8635. "time": "2020-06-27T09:03:43+00:00"
  8636. },
  8637. {
  8638. "name": "phpdocumentor/reflection-docblock",
  8639. "version": "5.2.2",
  8640. "source": {
  8641. "type": "git",
  8642. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  8643. "reference": "069a785b2141f5bcf49f3e353548dc1cce6df556"
  8644. },
  8645. "dist": {
  8646. "type": "zip",
  8647. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/069a785b2141f5bcf49f3e353548dc1cce6df556",
  8648. "reference": "069a785b2141f5bcf49f3e353548dc1cce6df556",
  8649. "shasum": "",
  8650. "mirrors": [
  8651. {
  8652. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8653. "preferred": true
  8654. }
  8655. ]
  8656. },
  8657. "require": {
  8658. "ext-filter": "*",
  8659. "php": "^7.2 || ^8.0",
  8660. "phpdocumentor/reflection-common": "^2.2",
  8661. "phpdocumentor/type-resolver": "^1.3",
  8662. "webmozart/assert": "^1.9.1"
  8663. },
  8664. "require-dev": {
  8665. "mockery/mockery": "~1.3.2"
  8666. },
  8667. "type": "library",
  8668. "extra": {
  8669. "branch-alias": {
  8670. "dev-master": "5.x-dev"
  8671. }
  8672. },
  8673. "autoload": {
  8674. "psr-4": {
  8675. "phpDocumentor\\Reflection\\": "src"
  8676. }
  8677. },
  8678. "notification-url": "https://packagist.org/downloads/",
  8679. "license": [
  8680. "MIT"
  8681. ],
  8682. "authors": [
  8683. {
  8684. "name": "Mike van Riel",
  8685. "email": "me@mikevanriel.com"
  8686. },
  8687. {
  8688. "name": "Jaap van Otterdijk",
  8689. "email": "account@ijaap.nl"
  8690. }
  8691. ],
  8692. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  8693. "support": {
  8694. "issues": "https://github.com/phpDocumentor/ReflectionDocBlock/issues",
  8695. "source": "https://github.com/phpDocumentor/ReflectionDocBlock/tree/master"
  8696. },
  8697. "time": "2020-09-03T19:13:55+00:00"
  8698. },
  8699. {
  8700. "name": "phpdocumentor/type-resolver",
  8701. "version": "1.4.0",
  8702. "source": {
  8703. "type": "git",
  8704. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  8705. "reference": "6a467b8989322d92aa1c8bf2bebcc6e5c2ba55c0"
  8706. },
  8707. "dist": {
  8708. "type": "zip",
  8709. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/6a467b8989322d92aa1c8bf2bebcc6e5c2ba55c0",
  8710. "reference": "6a467b8989322d92aa1c8bf2bebcc6e5c2ba55c0",
  8711. "shasum": "",
  8712. "mirrors": [
  8713. {
  8714. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8715. "preferred": true
  8716. }
  8717. ]
  8718. },
  8719. "require": {
  8720. "php": "^7.2 || ^8.0",
  8721. "phpdocumentor/reflection-common": "^2.0"
  8722. },
  8723. "require-dev": {
  8724. "ext-tokenizer": "*"
  8725. },
  8726. "type": "library",
  8727. "extra": {
  8728. "branch-alias": {
  8729. "dev-1.x": "1.x-dev"
  8730. }
  8731. },
  8732. "autoload": {
  8733. "psr-4": {
  8734. "phpDocumentor\\Reflection\\": "src"
  8735. }
  8736. },
  8737. "notification-url": "https://packagist.org/downloads/",
  8738. "license": [
  8739. "MIT"
  8740. ],
  8741. "authors": [
  8742. {
  8743. "name": "Mike van Riel",
  8744. "email": "me@mikevanriel.com"
  8745. }
  8746. ],
  8747. "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names",
  8748. "support": {
  8749. "issues": "https://github.com/phpDocumentor/TypeResolver/issues",
  8750. "source": "https://github.com/phpDocumentor/TypeResolver/tree/1.4.0"
  8751. },
  8752. "time": "2020-09-17T18:55:26+00:00"
  8753. },
  8754. {
  8755. "name": "phpspec/prophecy",
  8756. "version": "1.13.0",
  8757. "source": {
  8758. "type": "git",
  8759. "url": "https://github.com/phpspec/prophecy.git",
  8760. "reference": "be1996ed8adc35c3fd795488a653f4b518be70ea"
  8761. },
  8762. "dist": {
  8763. "type": "zip",
  8764. "url": "https://api.github.com/repos/phpspec/prophecy/zipball/be1996ed8adc35c3fd795488a653f4b518be70ea",
  8765. "reference": "be1996ed8adc35c3fd795488a653f4b518be70ea",
  8766. "shasum": "",
  8767. "mirrors": [
  8768. {
  8769. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8770. "preferred": true
  8771. }
  8772. ]
  8773. },
  8774. "require": {
  8775. "doctrine/instantiator": "^1.2",
  8776. "php": "^7.2 || ~8.0, <8.1",
  8777. "phpdocumentor/reflection-docblock": "^5.2",
  8778. "sebastian/comparator": "^3.0 || ^4.0",
  8779. "sebastian/recursion-context": "^3.0 || ^4.0"
  8780. },
  8781. "require-dev": {
  8782. "phpspec/phpspec": "^6.0",
  8783. "phpunit/phpunit": "^8.0 || ^9.0"
  8784. },
  8785. "type": "library",
  8786. "extra": {
  8787. "branch-alias": {
  8788. "dev-master": "1.11.x-dev"
  8789. }
  8790. },
  8791. "autoload": {
  8792. "psr-4": {
  8793. "Prophecy\\": "src/Prophecy"
  8794. }
  8795. },
  8796. "notification-url": "https://packagist.org/downloads/",
  8797. "license": [
  8798. "MIT"
  8799. ],
  8800. "authors": [
  8801. {
  8802. "name": "Konstantin Kudryashov",
  8803. "email": "ever.zet@gmail.com",
  8804. "homepage": "http://everzet.com"
  8805. },
  8806. {
  8807. "name": "Marcello Duarte",
  8808. "email": "marcello.duarte@gmail.com"
  8809. }
  8810. ],
  8811. "description": "Highly opinionated mocking framework for PHP 5.3+",
  8812. "homepage": "https://github.com/phpspec/prophecy",
  8813. "keywords": [
  8814. "Double",
  8815. "Dummy",
  8816. "fake",
  8817. "mock",
  8818. "spy",
  8819. "stub"
  8820. ],
  8821. "support": {
  8822. "issues": "https://github.com/phpspec/prophecy/issues",
  8823. "source": "https://github.com/phpspec/prophecy/tree/1.13.0"
  8824. },
  8825. "time": "2021-03-17T13:42:18+00:00"
  8826. },
  8827. {
  8828. "name": "phpunit/php-code-coverage",
  8829. "version": "7.0.14",
  8830. "source": {
  8831. "type": "git",
  8832. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  8833. "reference": "bb7c9a210c72e4709cdde67f8b7362f672f2225c"
  8834. },
  8835. "dist": {
  8836. "type": "zip",
  8837. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/bb7c9a210c72e4709cdde67f8b7362f672f2225c",
  8838. "reference": "bb7c9a210c72e4709cdde67f8b7362f672f2225c",
  8839. "shasum": "",
  8840. "mirrors": [
  8841. {
  8842. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8843. "preferred": true
  8844. }
  8845. ]
  8846. },
  8847. "require": {
  8848. "ext-dom": "*",
  8849. "ext-xmlwriter": "*",
  8850. "php": ">=7.2",
  8851. "phpunit/php-file-iterator": "^2.0.2",
  8852. "phpunit/php-text-template": "^1.2.1",
  8853. "phpunit/php-token-stream": "^3.1.1 || ^4.0",
  8854. "sebastian/code-unit-reverse-lookup": "^1.0.1",
  8855. "sebastian/environment": "^4.2.2",
  8856. "sebastian/version": "^2.0.1",
  8857. "theseer/tokenizer": "^1.1.3"
  8858. },
  8859. "require-dev": {
  8860. "phpunit/phpunit": "^8.2.2"
  8861. },
  8862. "suggest": {
  8863. "ext-xdebug": "^2.7.2"
  8864. },
  8865. "type": "library",
  8866. "extra": {
  8867. "branch-alias": {
  8868. "dev-master": "7.0-dev"
  8869. }
  8870. },
  8871. "autoload": {
  8872. "classmap": [
  8873. "src/"
  8874. ]
  8875. },
  8876. "notification-url": "https://packagist.org/downloads/",
  8877. "license": [
  8878. "BSD-3-Clause"
  8879. ],
  8880. "authors": [
  8881. {
  8882. "name": "Sebastian Bergmann",
  8883. "email": "sebastian@phpunit.de",
  8884. "role": "lead"
  8885. }
  8886. ],
  8887. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  8888. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  8889. "keywords": [
  8890. "coverage",
  8891. "testing",
  8892. "xunit"
  8893. ],
  8894. "support": {
  8895. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  8896. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/7.0.14"
  8897. },
  8898. "funding": [
  8899. {
  8900. "url": "https://github.com/sebastianbergmann",
  8901. "type": "github"
  8902. }
  8903. ],
  8904. "time": "2020-12-02T13:39:03+00:00"
  8905. },
  8906. {
  8907. "name": "phpunit/php-file-iterator",
  8908. "version": "2.0.3",
  8909. "source": {
  8910. "type": "git",
  8911. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  8912. "reference": "4b49fb70f067272b659ef0174ff9ca40fdaa6357"
  8913. },
  8914. "dist": {
  8915. "type": "zip",
  8916. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/4b49fb70f067272b659ef0174ff9ca40fdaa6357",
  8917. "reference": "4b49fb70f067272b659ef0174ff9ca40fdaa6357",
  8918. "shasum": "",
  8919. "mirrors": [
  8920. {
  8921. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8922. "preferred": true
  8923. }
  8924. ]
  8925. },
  8926. "require": {
  8927. "php": ">=7.1"
  8928. },
  8929. "require-dev": {
  8930. "phpunit/phpunit": "^8.5"
  8931. },
  8932. "type": "library",
  8933. "extra": {
  8934. "branch-alias": {
  8935. "dev-master": "2.0.x-dev"
  8936. }
  8937. },
  8938. "autoload": {
  8939. "classmap": [
  8940. "src/"
  8941. ]
  8942. },
  8943. "notification-url": "https://packagist.org/downloads/",
  8944. "license": [
  8945. "BSD-3-Clause"
  8946. ],
  8947. "authors": [
  8948. {
  8949. "name": "Sebastian Bergmann",
  8950. "email": "sebastian@phpunit.de",
  8951. "role": "lead"
  8952. }
  8953. ],
  8954. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  8955. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  8956. "keywords": [
  8957. "filesystem",
  8958. "iterator"
  8959. ],
  8960. "support": {
  8961. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  8962. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/2.0.3"
  8963. },
  8964. "funding": [
  8965. {
  8966. "url": "https://github.com/sebastianbergmann",
  8967. "type": "github"
  8968. }
  8969. ],
  8970. "time": "2020-11-30T08:25:21+00:00"
  8971. },
  8972. {
  8973. "name": "phpunit/php-text-template",
  8974. "version": "1.2.1",
  8975. "source": {
  8976. "type": "git",
  8977. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  8978. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686"
  8979. },
  8980. "dist": {
  8981. "type": "zip",
  8982. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  8983. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  8984. "shasum": "",
  8985. "mirrors": [
  8986. {
  8987. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8988. "preferred": true
  8989. }
  8990. ]
  8991. },
  8992. "require": {
  8993. "php": ">=5.3.3"
  8994. },
  8995. "type": "library",
  8996. "autoload": {
  8997. "classmap": [
  8998. "src/"
  8999. ]
  9000. },
  9001. "notification-url": "https://packagist.org/downloads/",
  9002. "license": [
  9003. "BSD-3-Clause"
  9004. ],
  9005. "authors": [
  9006. {
  9007. "name": "Sebastian Bergmann",
  9008. "email": "sebastian@phpunit.de",
  9009. "role": "lead"
  9010. }
  9011. ],
  9012. "description": "Simple template engine.",
  9013. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  9014. "keywords": [
  9015. "template"
  9016. ],
  9017. "support": {
  9018. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  9019. "source": "https://github.com/sebastianbergmann/php-text-template/tree/1.2.1"
  9020. },
  9021. "time": "2015-06-21T13:50:34+00:00"
  9022. },
  9023. {
  9024. "name": "phpunit/php-timer",
  9025. "version": "2.1.3",
  9026. "source": {
  9027. "type": "git",
  9028. "url": "https://github.com/sebastianbergmann/php-timer.git",
  9029. "reference": "2454ae1765516d20c4ffe103d85a58a9a3bd5662"
  9030. },
  9031. "dist": {
  9032. "type": "zip",
  9033. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/2454ae1765516d20c4ffe103d85a58a9a3bd5662",
  9034. "reference": "2454ae1765516d20c4ffe103d85a58a9a3bd5662",
  9035. "shasum": "",
  9036. "mirrors": [
  9037. {
  9038. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9039. "preferred": true
  9040. }
  9041. ]
  9042. },
  9043. "require": {
  9044. "php": ">=7.1"
  9045. },
  9046. "require-dev": {
  9047. "phpunit/phpunit": "^8.5"
  9048. },
  9049. "type": "library",
  9050. "extra": {
  9051. "branch-alias": {
  9052. "dev-master": "2.1-dev"
  9053. }
  9054. },
  9055. "autoload": {
  9056. "classmap": [
  9057. "src/"
  9058. ]
  9059. },
  9060. "notification-url": "https://packagist.org/downloads/",
  9061. "license": [
  9062. "BSD-3-Clause"
  9063. ],
  9064. "authors": [
  9065. {
  9066. "name": "Sebastian Bergmann",
  9067. "email": "sebastian@phpunit.de",
  9068. "role": "lead"
  9069. }
  9070. ],
  9071. "description": "Utility class for timing",
  9072. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  9073. "keywords": [
  9074. "timer"
  9075. ],
  9076. "support": {
  9077. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  9078. "source": "https://github.com/sebastianbergmann/php-timer/tree/2.1.3"
  9079. },
  9080. "funding": [
  9081. {
  9082. "url": "https://github.com/sebastianbergmann",
  9083. "type": "github"
  9084. }
  9085. ],
  9086. "time": "2020-11-30T08:20:02+00:00"
  9087. },
  9088. {
  9089. "name": "phpunit/php-token-stream",
  9090. "version": "4.0.4",
  9091. "source": {
  9092. "type": "git",
  9093. "url": "https://github.com/sebastianbergmann/php-token-stream.git",
  9094. "reference": "a853a0e183b9db7eed023d7933a858fa1c8d25a3"
  9095. },
  9096. "dist": {
  9097. "type": "zip",
  9098. "url": "https://api.github.com/repos/sebastianbergmann/php-token-stream/zipball/a853a0e183b9db7eed023d7933a858fa1c8d25a3",
  9099. "reference": "a853a0e183b9db7eed023d7933a858fa1c8d25a3",
  9100. "shasum": "",
  9101. "mirrors": [
  9102. {
  9103. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9104. "preferred": true
  9105. }
  9106. ]
  9107. },
  9108. "require": {
  9109. "ext-tokenizer": "*",
  9110. "php": "^7.3 || ^8.0"
  9111. },
  9112. "require-dev": {
  9113. "phpunit/phpunit": "^9.0"
  9114. },
  9115. "type": "library",
  9116. "extra": {
  9117. "branch-alias": {
  9118. "dev-master": "4.0-dev"
  9119. }
  9120. },
  9121. "autoload": {
  9122. "classmap": [
  9123. "src/"
  9124. ]
  9125. },
  9126. "notification-url": "https://packagist.org/downloads/",
  9127. "license": [
  9128. "BSD-3-Clause"
  9129. ],
  9130. "authors": [
  9131. {
  9132. "name": "Sebastian Bergmann",
  9133. "email": "sebastian@phpunit.de"
  9134. }
  9135. ],
  9136. "description": "Wrapper around PHP's tokenizer extension.",
  9137. "homepage": "https://github.com/sebastianbergmann/php-token-stream/",
  9138. "keywords": [
  9139. "tokenizer"
  9140. ],
  9141. "support": {
  9142. "issues": "https://github.com/sebastianbergmann/php-token-stream/issues",
  9143. "source": "https://github.com/sebastianbergmann/php-token-stream/tree/master"
  9144. },
  9145. "funding": [
  9146. {
  9147. "url": "https://github.com/sebastianbergmann",
  9148. "type": "github"
  9149. }
  9150. ],
  9151. "abandoned": true,
  9152. "time": "2020-08-04T08:28:15+00:00"
  9153. },
  9154. {
  9155. "name": "phpunit/phpunit",
  9156. "version": "8.5.15",
  9157. "source": {
  9158. "type": "git",
  9159. "url": "https://github.com/sebastianbergmann/phpunit.git",
  9160. "reference": "038d4196d8e8cb405cd5e82cedfe413ad6eef9ef"
  9161. },
  9162. "dist": {
  9163. "type": "zip",
  9164. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/038d4196d8e8cb405cd5e82cedfe413ad6eef9ef",
  9165. "reference": "038d4196d8e8cb405cd5e82cedfe413ad6eef9ef",
  9166. "shasum": "",
  9167. "mirrors": [
  9168. {
  9169. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9170. "preferred": true
  9171. }
  9172. ]
  9173. },
  9174. "require": {
  9175. "doctrine/instantiator": "^1.3.1",
  9176. "ext-dom": "*",
  9177. "ext-json": "*",
  9178. "ext-libxml": "*",
  9179. "ext-mbstring": "*",
  9180. "ext-xml": "*",
  9181. "ext-xmlwriter": "*",
  9182. "myclabs/deep-copy": "^1.10.0",
  9183. "phar-io/manifest": "^2.0.1",
  9184. "phar-io/version": "^3.0.2",
  9185. "php": ">=7.2",
  9186. "phpspec/prophecy": "^1.10.3",
  9187. "phpunit/php-code-coverage": "^7.0.12",
  9188. "phpunit/php-file-iterator": "^2.0.2",
  9189. "phpunit/php-text-template": "^1.2.1",
  9190. "phpunit/php-timer": "^2.1.2",
  9191. "sebastian/comparator": "^3.0.2",
  9192. "sebastian/diff": "^3.0.2",
  9193. "sebastian/environment": "^4.2.3",
  9194. "sebastian/exporter": "^3.1.2",
  9195. "sebastian/global-state": "^3.0.0",
  9196. "sebastian/object-enumerator": "^3.0.3",
  9197. "sebastian/resource-operations": "^2.0.1",
  9198. "sebastian/type": "^1.1.3",
  9199. "sebastian/version": "^2.0.1"
  9200. },
  9201. "require-dev": {
  9202. "ext-pdo": "*"
  9203. },
  9204. "suggest": {
  9205. "ext-soap": "*",
  9206. "ext-xdebug": "*",
  9207. "phpunit/php-invoker": "^2.0.0"
  9208. },
  9209. "bin": [
  9210. "phpunit"
  9211. ],
  9212. "type": "library",
  9213. "extra": {
  9214. "branch-alias": {
  9215. "dev-master": "8.5-dev"
  9216. }
  9217. },
  9218. "autoload": {
  9219. "classmap": [
  9220. "src/"
  9221. ]
  9222. },
  9223. "notification-url": "https://packagist.org/downloads/",
  9224. "license": [
  9225. "BSD-3-Clause"
  9226. ],
  9227. "authors": [
  9228. {
  9229. "name": "Sebastian Bergmann",
  9230. "email": "sebastian@phpunit.de",
  9231. "role": "lead"
  9232. }
  9233. ],
  9234. "description": "The PHP Unit Testing framework.",
  9235. "homepage": "https://phpunit.de/",
  9236. "keywords": [
  9237. "phpunit",
  9238. "testing",
  9239. "xunit"
  9240. ],
  9241. "support": {
  9242. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  9243. "source": "https://github.com/sebastianbergmann/phpunit/tree/8.5.15"
  9244. },
  9245. "funding": [
  9246. {
  9247. "url": "https://phpunit.de/donate.html",
  9248. "type": "custom"
  9249. },
  9250. {
  9251. "url": "https://github.com/sebastianbergmann",
  9252. "type": "github"
  9253. }
  9254. ],
  9255. "time": "2021-03-17T07:27:54+00:00"
  9256. },
  9257. {
  9258. "name": "sebastian/code-unit-reverse-lookup",
  9259. "version": "1.0.2",
  9260. "source": {
  9261. "type": "git",
  9262. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  9263. "reference": "1de8cd5c010cb153fcd68b8d0f64606f523f7619"
  9264. },
  9265. "dist": {
  9266. "type": "zip",
  9267. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/1de8cd5c010cb153fcd68b8d0f64606f523f7619",
  9268. "reference": "1de8cd5c010cb153fcd68b8d0f64606f523f7619",
  9269. "shasum": "",
  9270. "mirrors": [
  9271. {
  9272. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9273. "preferred": true
  9274. }
  9275. ]
  9276. },
  9277. "require": {
  9278. "php": ">=5.6"
  9279. },
  9280. "require-dev": {
  9281. "phpunit/phpunit": "^8.5"
  9282. },
  9283. "type": "library",
  9284. "extra": {
  9285. "branch-alias": {
  9286. "dev-master": "1.0.x-dev"
  9287. }
  9288. },
  9289. "autoload": {
  9290. "classmap": [
  9291. "src/"
  9292. ]
  9293. },
  9294. "notification-url": "https://packagist.org/downloads/",
  9295. "license": [
  9296. "BSD-3-Clause"
  9297. ],
  9298. "authors": [
  9299. {
  9300. "name": "Sebastian Bergmann",
  9301. "email": "sebastian@phpunit.de"
  9302. }
  9303. ],
  9304. "description": "Looks up which function or method a line of code belongs to",
  9305. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  9306. "support": {
  9307. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  9308. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/1.0.2"
  9309. },
  9310. "funding": [
  9311. {
  9312. "url": "https://github.com/sebastianbergmann",
  9313. "type": "github"
  9314. }
  9315. ],
  9316. "time": "2020-11-30T08:15:22+00:00"
  9317. },
  9318. {
  9319. "name": "sebastian/comparator",
  9320. "version": "3.0.3",
  9321. "source": {
  9322. "type": "git",
  9323. "url": "https://github.com/sebastianbergmann/comparator.git",
  9324. "reference": "1071dfcef776a57013124ff35e1fc41ccd294758"
  9325. },
  9326. "dist": {
  9327. "type": "zip",
  9328. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/1071dfcef776a57013124ff35e1fc41ccd294758",
  9329. "reference": "1071dfcef776a57013124ff35e1fc41ccd294758",
  9330. "shasum": "",
  9331. "mirrors": [
  9332. {
  9333. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9334. "preferred": true
  9335. }
  9336. ]
  9337. },
  9338. "require": {
  9339. "php": ">=7.1",
  9340. "sebastian/diff": "^3.0",
  9341. "sebastian/exporter": "^3.1"
  9342. },
  9343. "require-dev": {
  9344. "phpunit/phpunit": "^8.5"
  9345. },
  9346. "type": "library",
  9347. "extra": {
  9348. "branch-alias": {
  9349. "dev-master": "3.0-dev"
  9350. }
  9351. },
  9352. "autoload": {
  9353. "classmap": [
  9354. "src/"
  9355. ]
  9356. },
  9357. "notification-url": "https://packagist.org/downloads/",
  9358. "license": [
  9359. "BSD-3-Clause"
  9360. ],
  9361. "authors": [
  9362. {
  9363. "name": "Sebastian Bergmann",
  9364. "email": "sebastian@phpunit.de"
  9365. },
  9366. {
  9367. "name": "Jeff Welch",
  9368. "email": "whatthejeff@gmail.com"
  9369. },
  9370. {
  9371. "name": "Volker Dusch",
  9372. "email": "github@wallbash.com"
  9373. },
  9374. {
  9375. "name": "Bernhard Schussek",
  9376. "email": "bschussek@2bepublished.at"
  9377. }
  9378. ],
  9379. "description": "Provides the functionality to compare PHP values for equality",
  9380. "homepage": "https://github.com/sebastianbergmann/comparator",
  9381. "keywords": [
  9382. "comparator",
  9383. "compare",
  9384. "equality"
  9385. ],
  9386. "support": {
  9387. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  9388. "source": "https://github.com/sebastianbergmann/comparator/tree/3.0.3"
  9389. },
  9390. "funding": [
  9391. {
  9392. "url": "https://github.com/sebastianbergmann",
  9393. "type": "github"
  9394. }
  9395. ],
  9396. "time": "2020-11-30T08:04:30+00:00"
  9397. },
  9398. {
  9399. "name": "sebastian/diff",
  9400. "version": "3.0.3",
  9401. "source": {
  9402. "type": "git",
  9403. "url": "https://github.com/sebastianbergmann/diff.git",
  9404. "reference": "14f72dd46eaf2f2293cbe79c93cc0bc43161a211"
  9405. },
  9406. "dist": {
  9407. "type": "zip",
  9408. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/14f72dd46eaf2f2293cbe79c93cc0bc43161a211",
  9409. "reference": "14f72dd46eaf2f2293cbe79c93cc0bc43161a211",
  9410. "shasum": "",
  9411. "mirrors": [
  9412. {
  9413. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9414. "preferred": true
  9415. }
  9416. ]
  9417. },
  9418. "require": {
  9419. "php": ">=7.1"
  9420. },
  9421. "require-dev": {
  9422. "phpunit/phpunit": "^7.5 || ^8.0",
  9423. "symfony/process": "^2 || ^3.3 || ^4"
  9424. },
  9425. "type": "library",
  9426. "extra": {
  9427. "branch-alias": {
  9428. "dev-master": "3.0-dev"
  9429. }
  9430. },
  9431. "autoload": {
  9432. "classmap": [
  9433. "src/"
  9434. ]
  9435. },
  9436. "notification-url": "https://packagist.org/downloads/",
  9437. "license": [
  9438. "BSD-3-Clause"
  9439. ],
  9440. "authors": [
  9441. {
  9442. "name": "Sebastian Bergmann",
  9443. "email": "sebastian@phpunit.de"
  9444. },
  9445. {
  9446. "name": "Kore Nordmann",
  9447. "email": "mail@kore-nordmann.de"
  9448. }
  9449. ],
  9450. "description": "Diff implementation",
  9451. "homepage": "https://github.com/sebastianbergmann/diff",
  9452. "keywords": [
  9453. "diff",
  9454. "udiff",
  9455. "unidiff",
  9456. "unified diff"
  9457. ],
  9458. "support": {
  9459. "issues": "https://github.com/sebastianbergmann/diff/issues",
  9460. "source": "https://github.com/sebastianbergmann/diff/tree/3.0.3"
  9461. },
  9462. "funding": [
  9463. {
  9464. "url": "https://github.com/sebastianbergmann",
  9465. "type": "github"
  9466. }
  9467. ],
  9468. "time": "2020-11-30T07:59:04+00:00"
  9469. },
  9470. {
  9471. "name": "sebastian/environment",
  9472. "version": "4.2.4",
  9473. "source": {
  9474. "type": "git",
  9475. "url": "https://github.com/sebastianbergmann/environment.git",
  9476. "reference": "d47bbbad83711771f167c72d4e3f25f7fcc1f8b0"
  9477. },
  9478. "dist": {
  9479. "type": "zip",
  9480. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/d47bbbad83711771f167c72d4e3f25f7fcc1f8b0",
  9481. "reference": "d47bbbad83711771f167c72d4e3f25f7fcc1f8b0",
  9482. "shasum": "",
  9483. "mirrors": [
  9484. {
  9485. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9486. "preferred": true
  9487. }
  9488. ]
  9489. },
  9490. "require": {
  9491. "php": ">=7.1"
  9492. },
  9493. "require-dev": {
  9494. "phpunit/phpunit": "^7.5"
  9495. },
  9496. "suggest": {
  9497. "ext-posix": "*"
  9498. },
  9499. "type": "library",
  9500. "extra": {
  9501. "branch-alias": {
  9502. "dev-master": "4.2-dev"
  9503. }
  9504. },
  9505. "autoload": {
  9506. "classmap": [
  9507. "src/"
  9508. ]
  9509. },
  9510. "notification-url": "https://packagist.org/downloads/",
  9511. "license": [
  9512. "BSD-3-Clause"
  9513. ],
  9514. "authors": [
  9515. {
  9516. "name": "Sebastian Bergmann",
  9517. "email": "sebastian@phpunit.de"
  9518. }
  9519. ],
  9520. "description": "Provides functionality to handle HHVM/PHP environments",
  9521. "homepage": "http://www.github.com/sebastianbergmann/environment",
  9522. "keywords": [
  9523. "Xdebug",
  9524. "environment",
  9525. "hhvm"
  9526. ],
  9527. "support": {
  9528. "issues": "https://github.com/sebastianbergmann/environment/issues",
  9529. "source": "https://github.com/sebastianbergmann/environment/tree/4.2.4"
  9530. },
  9531. "funding": [
  9532. {
  9533. "url": "https://github.com/sebastianbergmann",
  9534. "type": "github"
  9535. }
  9536. ],
  9537. "time": "2020-11-30T07:53:42+00:00"
  9538. },
  9539. {
  9540. "name": "sebastian/exporter",
  9541. "version": "3.1.3",
  9542. "source": {
  9543. "type": "git",
  9544. "url": "https://github.com/sebastianbergmann/exporter.git",
  9545. "reference": "6b853149eab67d4da22291d36f5b0631c0fd856e"
  9546. },
  9547. "dist": {
  9548. "type": "zip",
  9549. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/6b853149eab67d4da22291d36f5b0631c0fd856e",
  9550. "reference": "6b853149eab67d4da22291d36f5b0631c0fd856e",
  9551. "shasum": "",
  9552. "mirrors": [
  9553. {
  9554. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9555. "preferred": true
  9556. }
  9557. ]
  9558. },
  9559. "require": {
  9560. "php": ">=7.0",
  9561. "sebastian/recursion-context": "^3.0"
  9562. },
  9563. "require-dev": {
  9564. "ext-mbstring": "*",
  9565. "phpunit/phpunit": "^6.0"
  9566. },
  9567. "type": "library",
  9568. "extra": {
  9569. "branch-alias": {
  9570. "dev-master": "3.1.x-dev"
  9571. }
  9572. },
  9573. "autoload": {
  9574. "classmap": [
  9575. "src/"
  9576. ]
  9577. },
  9578. "notification-url": "https://packagist.org/downloads/",
  9579. "license": [
  9580. "BSD-3-Clause"
  9581. ],
  9582. "authors": [
  9583. {
  9584. "name": "Sebastian Bergmann",
  9585. "email": "sebastian@phpunit.de"
  9586. },
  9587. {
  9588. "name": "Jeff Welch",
  9589. "email": "whatthejeff@gmail.com"
  9590. },
  9591. {
  9592. "name": "Volker Dusch",
  9593. "email": "github@wallbash.com"
  9594. },
  9595. {
  9596. "name": "Adam Harvey",
  9597. "email": "aharvey@php.net"
  9598. },
  9599. {
  9600. "name": "Bernhard Schussek",
  9601. "email": "bschussek@gmail.com"
  9602. }
  9603. ],
  9604. "description": "Provides the functionality to export PHP variables for visualization",
  9605. "homepage": "http://www.github.com/sebastianbergmann/exporter",
  9606. "keywords": [
  9607. "export",
  9608. "exporter"
  9609. ],
  9610. "support": {
  9611. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  9612. "source": "https://github.com/sebastianbergmann/exporter/tree/3.1.3"
  9613. },
  9614. "funding": [
  9615. {
  9616. "url": "https://github.com/sebastianbergmann",
  9617. "type": "github"
  9618. }
  9619. ],
  9620. "time": "2020-11-30T07:47:53+00:00"
  9621. },
  9622. {
  9623. "name": "sebastian/global-state",
  9624. "version": "3.0.1",
  9625. "source": {
  9626. "type": "git",
  9627. "url": "https://github.com/sebastianbergmann/global-state.git",
  9628. "reference": "474fb9edb7ab891665d3bfc6317f42a0a150454b"
  9629. },
  9630. "dist": {
  9631. "type": "zip",
  9632. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/474fb9edb7ab891665d3bfc6317f42a0a150454b",
  9633. "reference": "474fb9edb7ab891665d3bfc6317f42a0a150454b",
  9634. "shasum": "",
  9635. "mirrors": [
  9636. {
  9637. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9638. "preferred": true
  9639. }
  9640. ]
  9641. },
  9642. "require": {
  9643. "php": ">=7.2",
  9644. "sebastian/object-reflector": "^1.1.1",
  9645. "sebastian/recursion-context": "^3.0"
  9646. },
  9647. "require-dev": {
  9648. "ext-dom": "*",
  9649. "phpunit/phpunit": "^8.0"
  9650. },
  9651. "suggest": {
  9652. "ext-uopz": "*"
  9653. },
  9654. "type": "library",
  9655. "extra": {
  9656. "branch-alias": {
  9657. "dev-master": "3.0-dev"
  9658. }
  9659. },
  9660. "autoload": {
  9661. "classmap": [
  9662. "src/"
  9663. ]
  9664. },
  9665. "notification-url": "https://packagist.org/downloads/",
  9666. "license": [
  9667. "BSD-3-Clause"
  9668. ],
  9669. "authors": [
  9670. {
  9671. "name": "Sebastian Bergmann",
  9672. "email": "sebastian@phpunit.de"
  9673. }
  9674. ],
  9675. "description": "Snapshotting of global state",
  9676. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  9677. "keywords": [
  9678. "global state"
  9679. ],
  9680. "support": {
  9681. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  9682. "source": "https://github.com/sebastianbergmann/global-state/tree/3.0.1"
  9683. },
  9684. "funding": [
  9685. {
  9686. "url": "https://github.com/sebastianbergmann",
  9687. "type": "github"
  9688. }
  9689. ],
  9690. "time": "2020-11-30T07:43:24+00:00"
  9691. },
  9692. {
  9693. "name": "sebastian/object-enumerator",
  9694. "version": "3.0.4",
  9695. "source": {
  9696. "type": "git",
  9697. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  9698. "reference": "e67f6d32ebd0c749cf9d1dbd9f226c727043cdf2"
  9699. },
  9700. "dist": {
  9701. "type": "zip",
  9702. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/e67f6d32ebd0c749cf9d1dbd9f226c727043cdf2",
  9703. "reference": "e67f6d32ebd0c749cf9d1dbd9f226c727043cdf2",
  9704. "shasum": "",
  9705. "mirrors": [
  9706. {
  9707. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9708. "preferred": true
  9709. }
  9710. ]
  9711. },
  9712. "require": {
  9713. "php": ">=7.0",
  9714. "sebastian/object-reflector": "^1.1.1",
  9715. "sebastian/recursion-context": "^3.0"
  9716. },
  9717. "require-dev": {
  9718. "phpunit/phpunit": "^6.0"
  9719. },
  9720. "type": "library",
  9721. "extra": {
  9722. "branch-alias": {
  9723. "dev-master": "3.0.x-dev"
  9724. }
  9725. },
  9726. "autoload": {
  9727. "classmap": [
  9728. "src/"
  9729. ]
  9730. },
  9731. "notification-url": "https://packagist.org/downloads/",
  9732. "license": [
  9733. "BSD-3-Clause"
  9734. ],
  9735. "authors": [
  9736. {
  9737. "name": "Sebastian Bergmann",
  9738. "email": "sebastian@phpunit.de"
  9739. }
  9740. ],
  9741. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  9742. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  9743. "support": {
  9744. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  9745. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/3.0.4"
  9746. },
  9747. "funding": [
  9748. {
  9749. "url": "https://github.com/sebastianbergmann",
  9750. "type": "github"
  9751. }
  9752. ],
  9753. "time": "2020-11-30T07:40:27+00:00"
  9754. },
  9755. {
  9756. "name": "sebastian/object-reflector",
  9757. "version": "1.1.2",
  9758. "source": {
  9759. "type": "git",
  9760. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  9761. "reference": "9b8772b9cbd456ab45d4a598d2dd1a1bced6363d"
  9762. },
  9763. "dist": {
  9764. "type": "zip",
  9765. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/9b8772b9cbd456ab45d4a598d2dd1a1bced6363d",
  9766. "reference": "9b8772b9cbd456ab45d4a598d2dd1a1bced6363d",
  9767. "shasum": "",
  9768. "mirrors": [
  9769. {
  9770. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9771. "preferred": true
  9772. }
  9773. ]
  9774. },
  9775. "require": {
  9776. "php": ">=7.0"
  9777. },
  9778. "require-dev": {
  9779. "phpunit/phpunit": "^6.0"
  9780. },
  9781. "type": "library",
  9782. "extra": {
  9783. "branch-alias": {
  9784. "dev-master": "1.1-dev"
  9785. }
  9786. },
  9787. "autoload": {
  9788. "classmap": [
  9789. "src/"
  9790. ]
  9791. },
  9792. "notification-url": "https://packagist.org/downloads/",
  9793. "license": [
  9794. "BSD-3-Clause"
  9795. ],
  9796. "authors": [
  9797. {
  9798. "name": "Sebastian Bergmann",
  9799. "email": "sebastian@phpunit.de"
  9800. }
  9801. ],
  9802. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  9803. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  9804. "support": {
  9805. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  9806. "source": "https://github.com/sebastianbergmann/object-reflector/tree/1.1.2"
  9807. },
  9808. "funding": [
  9809. {
  9810. "url": "https://github.com/sebastianbergmann",
  9811. "type": "github"
  9812. }
  9813. ],
  9814. "time": "2020-11-30T07:37:18+00:00"
  9815. },
  9816. {
  9817. "name": "sebastian/recursion-context",
  9818. "version": "3.0.1",
  9819. "source": {
  9820. "type": "git",
  9821. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  9822. "reference": "367dcba38d6e1977be014dc4b22f47a484dac7fb"
  9823. },
  9824. "dist": {
  9825. "type": "zip",
  9826. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/367dcba38d6e1977be014dc4b22f47a484dac7fb",
  9827. "reference": "367dcba38d6e1977be014dc4b22f47a484dac7fb",
  9828. "shasum": "",
  9829. "mirrors": [
  9830. {
  9831. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9832. "preferred": true
  9833. }
  9834. ]
  9835. },
  9836. "require": {
  9837. "php": ">=7.0"
  9838. },
  9839. "require-dev": {
  9840. "phpunit/phpunit": "^6.0"
  9841. },
  9842. "type": "library",
  9843. "extra": {
  9844. "branch-alias": {
  9845. "dev-master": "3.0.x-dev"
  9846. }
  9847. },
  9848. "autoload": {
  9849. "classmap": [
  9850. "src/"
  9851. ]
  9852. },
  9853. "notification-url": "https://packagist.org/downloads/",
  9854. "license": [
  9855. "BSD-3-Clause"
  9856. ],
  9857. "authors": [
  9858. {
  9859. "name": "Sebastian Bergmann",
  9860. "email": "sebastian@phpunit.de"
  9861. },
  9862. {
  9863. "name": "Jeff Welch",
  9864. "email": "whatthejeff@gmail.com"
  9865. },
  9866. {
  9867. "name": "Adam Harvey",
  9868. "email": "aharvey@php.net"
  9869. }
  9870. ],
  9871. "description": "Provides functionality to recursively process PHP variables",
  9872. "homepage": "http://www.github.com/sebastianbergmann/recursion-context",
  9873. "support": {
  9874. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  9875. "source": "https://github.com/sebastianbergmann/recursion-context/tree/3.0.1"
  9876. },
  9877. "funding": [
  9878. {
  9879. "url": "https://github.com/sebastianbergmann",
  9880. "type": "github"
  9881. }
  9882. ],
  9883. "time": "2020-11-30T07:34:24+00:00"
  9884. },
  9885. {
  9886. "name": "sebastian/resource-operations",
  9887. "version": "2.0.2",
  9888. "source": {
  9889. "type": "git",
  9890. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  9891. "reference": "31d35ca87926450c44eae7e2611d45a7a65ea8b3"
  9892. },
  9893. "dist": {
  9894. "type": "zip",
  9895. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/31d35ca87926450c44eae7e2611d45a7a65ea8b3",
  9896. "reference": "31d35ca87926450c44eae7e2611d45a7a65ea8b3",
  9897. "shasum": "",
  9898. "mirrors": [
  9899. {
  9900. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9901. "preferred": true
  9902. }
  9903. ]
  9904. },
  9905. "require": {
  9906. "php": ">=7.1"
  9907. },
  9908. "type": "library",
  9909. "extra": {
  9910. "branch-alias": {
  9911. "dev-master": "2.0-dev"
  9912. }
  9913. },
  9914. "autoload": {
  9915. "classmap": [
  9916. "src/"
  9917. ]
  9918. },
  9919. "notification-url": "https://packagist.org/downloads/",
  9920. "license": [
  9921. "BSD-3-Clause"
  9922. ],
  9923. "authors": [
  9924. {
  9925. "name": "Sebastian Bergmann",
  9926. "email": "sebastian@phpunit.de"
  9927. }
  9928. ],
  9929. "description": "Provides a list of PHP built-in functions that operate on resources",
  9930. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  9931. "support": {
  9932. "issues": "https://github.com/sebastianbergmann/resource-operations/issues",
  9933. "source": "https://github.com/sebastianbergmann/resource-operations/tree/2.0.2"
  9934. },
  9935. "funding": [
  9936. {
  9937. "url": "https://github.com/sebastianbergmann",
  9938. "type": "github"
  9939. }
  9940. ],
  9941. "time": "2020-11-30T07:30:19+00:00"
  9942. },
  9943. {
  9944. "name": "sebastian/type",
  9945. "version": "1.1.4",
  9946. "source": {
  9947. "type": "git",
  9948. "url": "https://github.com/sebastianbergmann/type.git",
  9949. "reference": "0150cfbc4495ed2df3872fb31b26781e4e077eb4"
  9950. },
  9951. "dist": {
  9952. "type": "zip",
  9953. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/0150cfbc4495ed2df3872fb31b26781e4e077eb4",
  9954. "reference": "0150cfbc4495ed2df3872fb31b26781e4e077eb4",
  9955. "shasum": "",
  9956. "mirrors": [
  9957. {
  9958. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9959. "preferred": true
  9960. }
  9961. ]
  9962. },
  9963. "require": {
  9964. "php": ">=7.2"
  9965. },
  9966. "require-dev": {
  9967. "phpunit/phpunit": "^8.2"
  9968. },
  9969. "type": "library",
  9970. "extra": {
  9971. "branch-alias": {
  9972. "dev-master": "1.1-dev"
  9973. }
  9974. },
  9975. "autoload": {
  9976. "classmap": [
  9977. "src/"
  9978. ]
  9979. },
  9980. "notification-url": "https://packagist.org/downloads/",
  9981. "license": [
  9982. "BSD-3-Clause"
  9983. ],
  9984. "authors": [
  9985. {
  9986. "name": "Sebastian Bergmann",
  9987. "email": "sebastian@phpunit.de",
  9988. "role": "lead"
  9989. }
  9990. ],
  9991. "description": "Collection of value objects that represent the types of the PHP type system",
  9992. "homepage": "https://github.com/sebastianbergmann/type",
  9993. "support": {
  9994. "issues": "https://github.com/sebastianbergmann/type/issues",
  9995. "source": "https://github.com/sebastianbergmann/type/tree/1.1.4"
  9996. },
  9997. "funding": [
  9998. {
  9999. "url": "https://github.com/sebastianbergmann",
  10000. "type": "github"
  10001. }
  10002. ],
  10003. "time": "2020-11-30T07:25:11+00:00"
  10004. },
  10005. {
  10006. "name": "sebastian/version",
  10007. "version": "2.0.1",
  10008. "source": {
  10009. "type": "git",
  10010. "url": "https://github.com/sebastianbergmann/version.git",
  10011. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019"
  10012. },
  10013. "dist": {
  10014. "type": "zip",
  10015. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/99732be0ddb3361e16ad77b68ba41efc8e979019",
  10016. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019",
  10017. "shasum": "",
  10018. "mirrors": [
  10019. {
  10020. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10021. "preferred": true
  10022. }
  10023. ]
  10024. },
  10025. "require": {
  10026. "php": ">=5.6"
  10027. },
  10028. "type": "library",
  10029. "extra": {
  10030. "branch-alias": {
  10031. "dev-master": "2.0.x-dev"
  10032. }
  10033. },
  10034. "autoload": {
  10035. "classmap": [
  10036. "src/"
  10037. ]
  10038. },
  10039. "notification-url": "https://packagist.org/downloads/",
  10040. "license": [
  10041. "BSD-3-Clause"
  10042. ],
  10043. "authors": [
  10044. {
  10045. "name": "Sebastian Bergmann",
  10046. "email": "sebastian@phpunit.de",
  10047. "role": "lead"
  10048. }
  10049. ],
  10050. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  10051. "homepage": "https://github.com/sebastianbergmann/version",
  10052. "support": {
  10053. "issues": "https://github.com/sebastianbergmann/version/issues",
  10054. "source": "https://github.com/sebastianbergmann/version/tree/master"
  10055. },
  10056. "time": "2016-10-03T07:35:21+00:00"
  10057. },
  10058. {
  10059. "name": "symfony/debug",
  10060. "version": "v4.4.20",
  10061. "source": {
  10062. "type": "git",
  10063. "url": "https://github.com/symfony/debug.git",
  10064. "reference": "157bbec4fd773bae53c5483c50951a5530a2cc16"
  10065. },
  10066. "dist": {
  10067. "type": "zip",
  10068. "url": "https://api.github.com/repos/symfony/debug/zipball/157bbec4fd773bae53c5483c50951a5530a2cc16",
  10069. "reference": "157bbec4fd773bae53c5483c50951a5530a2cc16",
  10070. "shasum": "",
  10071. "mirrors": [
  10072. {
  10073. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10074. "preferred": true
  10075. }
  10076. ]
  10077. },
  10078. "require": {
  10079. "php": ">=7.1.3",
  10080. "psr/log": "~1.0",
  10081. "symfony/polyfill-php80": "^1.15"
  10082. },
  10083. "conflict": {
  10084. "symfony/http-kernel": "<3.4"
  10085. },
  10086. "require-dev": {
  10087. "symfony/http-kernel": "^3.4|^4.0|^5.0"
  10088. },
  10089. "type": "library",
  10090. "autoload": {
  10091. "psr-4": {
  10092. "Symfony\\Component\\Debug\\": ""
  10093. },
  10094. "exclude-from-classmap": [
  10095. "/Tests/"
  10096. ]
  10097. },
  10098. "notification-url": "https://packagist.org/downloads/",
  10099. "license": [
  10100. "MIT"
  10101. ],
  10102. "authors": [
  10103. {
  10104. "name": "Fabien Potencier",
  10105. "email": "fabien@symfony.com"
  10106. },
  10107. {
  10108. "name": "Symfony Community",
  10109. "homepage": "https://symfony.com/contributors"
  10110. }
  10111. ],
  10112. "description": "Provides tools to ease debugging PHP code",
  10113. "homepage": "https://symfony.com",
  10114. "support": {
  10115. "source": "https://github.com/symfony/debug/tree/v4.4.20"
  10116. },
  10117. "funding": [
  10118. {
  10119. "url": "https://symfony.com/sponsor",
  10120. "type": "custom"
  10121. },
  10122. {
  10123. "url": "https://github.com/fabpot",
  10124. "type": "github"
  10125. },
  10126. {
  10127. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10128. "type": "tidelift"
  10129. }
  10130. ],
  10131. "time": "2021-01-28T16:54:48+00:00"
  10132. },
  10133. {
  10134. "name": "theseer/tokenizer",
  10135. "version": "1.2.0",
  10136. "source": {
  10137. "type": "git",
  10138. "url": "https://github.com/theseer/tokenizer.git",
  10139. "reference": "75a63c33a8577608444246075ea0af0d052e452a"
  10140. },
  10141. "dist": {
  10142. "type": "zip",
  10143. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/75a63c33a8577608444246075ea0af0d052e452a",
  10144. "reference": "75a63c33a8577608444246075ea0af0d052e452a",
  10145. "shasum": "",
  10146. "mirrors": [
  10147. {
  10148. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10149. "preferred": true
  10150. }
  10151. ]
  10152. },
  10153. "require": {
  10154. "ext-dom": "*",
  10155. "ext-tokenizer": "*",
  10156. "ext-xmlwriter": "*",
  10157. "php": "^7.2 || ^8.0"
  10158. },
  10159. "type": "library",
  10160. "autoload": {
  10161. "classmap": [
  10162. "src/"
  10163. ]
  10164. },
  10165. "notification-url": "https://packagist.org/downloads/",
  10166. "license": [
  10167. "BSD-3-Clause"
  10168. ],
  10169. "authors": [
  10170. {
  10171. "name": "Arne Blankerts",
  10172. "email": "arne@blankerts.de",
  10173. "role": "Developer"
  10174. }
  10175. ],
  10176. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  10177. "support": {
  10178. "issues": "https://github.com/theseer/tokenizer/issues",
  10179. "source": "https://github.com/theseer/tokenizer/tree/master"
  10180. },
  10181. "funding": [
  10182. {
  10183. "url": "https://github.com/theseer",
  10184. "type": "github"
  10185. }
  10186. ],
  10187. "time": "2020-07-12T23:59:07+00:00"
  10188. },
  10189. {
  10190. "name": "webmozart/assert",
  10191. "version": "1.10.0",
  10192. "source": {
  10193. "type": "git",
  10194. "url": "https://github.com/webmozarts/assert.git",
  10195. "reference": "6964c76c7804814a842473e0c8fd15bab0f18e25"
  10196. },
  10197. "dist": {
  10198. "type": "zip",
  10199. "url": "https://api.github.com/repos/webmozarts/assert/zipball/6964c76c7804814a842473e0c8fd15bab0f18e25",
  10200. "reference": "6964c76c7804814a842473e0c8fd15bab0f18e25",
  10201. "shasum": "",
  10202. "mirrors": [
  10203. {
  10204. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10205. "preferred": true
  10206. }
  10207. ]
  10208. },
  10209. "require": {
  10210. "php": "^7.2 || ^8.0",
  10211. "symfony/polyfill-ctype": "^1.8"
  10212. },
  10213. "conflict": {
  10214. "phpstan/phpstan": "<0.12.20",
  10215. "vimeo/psalm": "<4.6.1 || 4.6.2"
  10216. },
  10217. "require-dev": {
  10218. "phpunit/phpunit": "^8.5.13"
  10219. },
  10220. "type": "library",
  10221. "extra": {
  10222. "branch-alias": {
  10223. "dev-master": "1.10-dev"
  10224. }
  10225. },
  10226. "autoload": {
  10227. "psr-4": {
  10228. "Webmozart\\Assert\\": "src/"
  10229. }
  10230. },
  10231. "notification-url": "https://packagist.org/downloads/",
  10232. "license": [
  10233. "MIT"
  10234. ],
  10235. "authors": [
  10236. {
  10237. "name": "Bernhard Schussek",
  10238. "email": "bschussek@gmail.com"
  10239. }
  10240. ],
  10241. "description": "Assertions to validate method input/output with nice error messages.",
  10242. "keywords": [
  10243. "assert",
  10244. "check",
  10245. "validate"
  10246. ],
  10247. "support": {
  10248. "issues": "https://github.com/webmozarts/assert/issues",
  10249. "source": "https://github.com/webmozarts/assert/tree/1.10.0"
  10250. },
  10251. "time": "2021-03-09T10:59:23+00:00"
  10252. }
  10253. ],
  10254. "aliases": [],
  10255. "minimum-stability": "dev",
  10256. "stability-flags": [],
  10257. "prefer-stable": true,
  10258. "prefer-lowest": false,
  10259. "platform": {
  10260. "php": "^7.2.14",
  10261. "ext-bcmath": "*",
  10262. "ext-json": "*",
  10263. "ext-mbstring": "*",
  10264. "ext-openssl": "*",
  10265. "ext-pdo": "*"
  10266. },
  10267. "platform-dev": [],
  10268. "platform-overrides": {
  10269. "ext-pcntl": "7.2",
  10270. "ext-posix": "7.2"
  10271. },
  10272. "plugin-api-version": "2.0.0"
  10273. }