composer.lock 380 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546
  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": "0510ad49be9fdbebf9dc96077271963a",
  8. "packages": [
  9. {
  10. "name": "asm89/stack-cors",
  11. "version": "v2.1.1",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/asm89/stack-cors.git",
  15. "reference": "73e5b88775c64ccc0b84fb60836b30dc9d92ac4a"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/asm89/stack-cors/zipball/73e5b88775c64ccc0b84fb60836b30dc9d92ac4a",
  20. "reference": "73e5b88775c64ccc0b84fb60836b30dc9d92ac4a",
  21. "shasum": "",
  22. "mirrors": [
  23. {
  24. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  25. "preferred": true
  26. }
  27. ]
  28. },
  29. "require": {
  30. "php": "^7.2|^8.0",
  31. "symfony/http-foundation": "^4|^5|^6",
  32. "symfony/http-kernel": "^4|^5|^6"
  33. },
  34. "require-dev": {
  35. "phpunit/phpunit": "^7|^9",
  36. "squizlabs/php_codesniffer": "^3.5"
  37. },
  38. "type": "library",
  39. "extra": {
  40. "branch-alias": {
  41. "dev-master": "2.1-dev"
  42. }
  43. },
  44. "autoload": {
  45. "psr-4": {
  46. "Asm89\\Stack\\": "src/"
  47. }
  48. },
  49. "notification-url": "https://packagist.org/downloads/",
  50. "license": [
  51. "MIT"
  52. ],
  53. "authors": [
  54. {
  55. "name": "Alexander",
  56. "email": "iam.asm89@gmail.com"
  57. }
  58. ],
  59. "description": "Cross-origin resource sharing library and stack middleware",
  60. "homepage": "https://github.com/asm89/stack-cors",
  61. "keywords": [
  62. "cors",
  63. "stack"
  64. ],
  65. "support": {
  66. "issues": "https://github.com/asm89/stack-cors/issues",
  67. "source": "https://github.com/asm89/stack-cors/tree/v2.1.1"
  68. },
  69. "time": "2022-01-18T09:12:03+00:00"
  70. },
  71. {
  72. "name": "barryvdh/laravel-cors",
  73. "version": "v2.2.0",
  74. "source": {
  75. "type": "git",
  76. "url": "https://github.com/fruitcake/laravel-cors.git",
  77. "reference": "783a74f5e3431d7b9805be8afb60fd0a8f743534"
  78. },
  79. "dist": {
  80. "type": "zip",
  81. "url": "https://api.github.com/repos/fruitcake/laravel-cors/zipball/783a74f5e3431d7b9805be8afb60fd0a8f743534",
  82. "reference": "783a74f5e3431d7b9805be8afb60fd0a8f743534",
  83. "shasum": "",
  84. "mirrors": [
  85. {
  86. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  87. "preferred": true
  88. }
  89. ]
  90. },
  91. "require": {
  92. "asm89/stack-cors": "^2.0.1",
  93. "illuminate/contracts": "^6|^7|^8|^9",
  94. "illuminate/support": "^6|^7|^8|^9",
  95. "php": ">=7.2"
  96. },
  97. "require-dev": {
  98. "laravel/framework": "^6|^7.24|^8",
  99. "orchestra/testbench-dusk": "^4|^5|^6|^7",
  100. "phpunit/phpunit": "^6|^7|^8|^9",
  101. "squizlabs/php_codesniffer": "^3.5"
  102. },
  103. "type": "library",
  104. "extra": {
  105. "branch-alias": {
  106. "dev-master": "2.1-dev"
  107. },
  108. "laravel": {
  109. "providers": [
  110. "Fruitcake\\Cors\\CorsServiceProvider"
  111. ]
  112. }
  113. },
  114. "autoload": {
  115. "psr-4": {
  116. "Fruitcake\\Cors\\": "src/"
  117. }
  118. },
  119. "notification-url": "https://packagist.org/downloads/",
  120. "license": [
  121. "MIT"
  122. ],
  123. "authors": [
  124. {
  125. "name": "Fruitcake",
  126. "homepage": "https://fruitcake.nl"
  127. },
  128. {
  129. "name": "Barry vd. Heuvel",
  130. "email": "barryvdh@gmail.com"
  131. }
  132. ],
  133. "description": "Adds CORS (Cross-Origin Resource Sharing) headers support in your Laravel application",
  134. "keywords": [
  135. "api",
  136. "cors",
  137. "crossdomain",
  138. "laravel"
  139. ],
  140. "support": {
  141. "issues": "https://github.com/fruitcake/laravel-cors/issues",
  142. "source": "https://github.com/fruitcake/laravel-cors/tree/v2.2.0"
  143. },
  144. "funding": [
  145. {
  146. "url": "https://fruitcake.nl",
  147. "type": "custom"
  148. },
  149. {
  150. "url": "https://github.com/barryvdh",
  151. "type": "github"
  152. }
  153. ],
  154. "time": "2022-02-23T14:25:13+00:00"
  155. },
  156. {
  157. "name": "barryvdh/laravel-ide-helper",
  158. "version": "v2.8.2",
  159. "source": {
  160. "type": "git",
  161. "url": "https://github.com/barryvdh/laravel-ide-helper.git",
  162. "reference": "5515cabea39b9cf55f98980d0f269dc9d85cfcca"
  163. },
  164. "dist": {
  165. "type": "zip",
  166. "url": "https://api.github.com/repos/barryvdh/laravel-ide-helper/zipball/5515cabea39b9cf55f98980d0f269dc9d85cfcca",
  167. "reference": "5515cabea39b9cf55f98980d0f269dc9d85cfcca",
  168. "shasum": "",
  169. "mirrors": [
  170. {
  171. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  172. "preferred": true
  173. }
  174. ]
  175. },
  176. "require": {
  177. "barryvdh/reflection-docblock": "^2.0.6",
  178. "composer/composer": "^1.6 || ^2",
  179. "doctrine/dbal": "~2.3",
  180. "ext-json": "*",
  181. "illuminate/console": "^6 || ^7 || ^8",
  182. "illuminate/filesystem": "^6 || ^7 || ^8",
  183. "illuminate/support": "^6 || ^7 || ^8",
  184. "php": ">=7.2",
  185. "phpdocumentor/type-resolver": "^1.1.0"
  186. },
  187. "require-dev": {
  188. "ext-pdo_sqlite": "*",
  189. "friendsofphp/php-cs-fixer": "^2",
  190. "illuminate/config": "^6 || ^7 || ^8",
  191. "illuminate/view": "^6 || ^7 || ^8",
  192. "mockery/mockery": "^1.3.3",
  193. "orchestra/testbench": "^4 || ^5 || ^6",
  194. "phpunit/phpunit": "^8.5 || ^9",
  195. "spatie/phpunit-snapshot-assertions": "^1.4 || ^2.2 || ^3 || ^4",
  196. "vimeo/psalm": "^3.12"
  197. },
  198. "type": "library",
  199. "extra": {
  200. "branch-alias": {
  201. "dev-master": "2.8-dev"
  202. },
  203. "laravel": {
  204. "providers": [
  205. "Barryvdh\\LaravelIdeHelper\\IdeHelperServiceProvider"
  206. ]
  207. }
  208. },
  209. "autoload": {
  210. "psr-4": {
  211. "Barryvdh\\LaravelIdeHelper\\": "src"
  212. }
  213. },
  214. "notification-url": "https://packagist.org/downloads/",
  215. "license": [
  216. "MIT"
  217. ],
  218. "authors": [
  219. {
  220. "name": "Barry vd. Heuvel",
  221. "email": "barryvdh@gmail.com"
  222. }
  223. ],
  224. "description": "Laravel IDE Helper, generates correct PHPDocs for all Facade classes, to improve auto-completion.",
  225. "keywords": [
  226. "autocomplete",
  227. "codeintel",
  228. "helper",
  229. "ide",
  230. "laravel",
  231. "netbeans",
  232. "phpdoc",
  233. "phpstorm",
  234. "sublime"
  235. ],
  236. "support": {
  237. "issues": "https://github.com/barryvdh/laravel-ide-helper/issues",
  238. "source": "https://github.com/barryvdh/laravel-ide-helper/tree/v2.8.2"
  239. },
  240. "funding": [
  241. {
  242. "url": "https://github.com/barryvdh",
  243. "type": "github"
  244. }
  245. ],
  246. "time": "2020-12-06T08:55:05+00:00"
  247. },
  248. {
  249. "name": "barryvdh/reflection-docblock",
  250. "version": "v2.0.6",
  251. "source": {
  252. "type": "git",
  253. "url": "https://github.com/barryvdh/ReflectionDocBlock.git",
  254. "reference": "6b69015d83d3daf9004a71a89f26e27d27ef6a16"
  255. },
  256. "dist": {
  257. "type": "zip",
  258. "url": "https://api.github.com/repos/barryvdh/ReflectionDocBlock/zipball/6b69015d83d3daf9004a71a89f26e27d27ef6a16",
  259. "reference": "6b69015d83d3daf9004a71a89f26e27d27ef6a16",
  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": ">=5.3.3"
  270. },
  271. "require-dev": {
  272. "phpunit/phpunit": "~4.0,<4.5"
  273. },
  274. "suggest": {
  275. "dflydev/markdown": "~1.0",
  276. "erusev/parsedown": "~1.0"
  277. },
  278. "type": "library",
  279. "extra": {
  280. "branch-alias": {
  281. "dev-master": "2.0.x-dev"
  282. }
  283. },
  284. "autoload": {
  285. "psr-0": {
  286. "Barryvdh": [
  287. "src/"
  288. ]
  289. }
  290. },
  291. "notification-url": "https://packagist.org/downloads/",
  292. "license": [
  293. "MIT"
  294. ],
  295. "authors": [
  296. {
  297. "name": "Mike van Riel",
  298. "email": "mike.vanriel@naenius.com"
  299. }
  300. ],
  301. "support": {
  302. "source": "https://github.com/barryvdh/ReflectionDocBlock/tree/v2.0.6"
  303. },
  304. "time": "2018-12-13T10:34:14+00:00"
  305. },
  306. {
  307. "name": "composer/ca-bundle",
  308. "version": "1.3.1",
  309. "source": {
  310. "type": "git",
  311. "url": "https://github.com/composer/ca-bundle.git",
  312. "reference": "4c679186f2aca4ab6a0f1b0b9cf9252decb44d0b"
  313. },
  314. "dist": {
  315. "type": "zip",
  316. "url": "https://api.github.com/repos/composer/ca-bundle/zipball/4c679186f2aca4ab6a0f1b0b9cf9252decb44d0b",
  317. "reference": "4c679186f2aca4ab6a0f1b0b9cf9252decb44d0b",
  318. "shasum": "",
  319. "mirrors": [
  320. {
  321. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  322. "preferred": true
  323. }
  324. ]
  325. },
  326. "require": {
  327. "ext-openssl": "*",
  328. "ext-pcre": "*",
  329. "php": "^5.3.2 || ^7.0 || ^8.0"
  330. },
  331. "require-dev": {
  332. "phpstan/phpstan": "^0.12.55",
  333. "psr/log": "^1.0",
  334. "symfony/phpunit-bridge": "^4.2 || ^5",
  335. "symfony/process": "^2.5 || ^3.0 || ^4.0 || ^5.0 || ^6.0"
  336. },
  337. "type": "library",
  338. "extra": {
  339. "branch-alias": {
  340. "dev-main": "1.x-dev"
  341. }
  342. },
  343. "autoload": {
  344. "psr-4": {
  345. "Composer\\CaBundle\\": "src"
  346. }
  347. },
  348. "notification-url": "https://packagist.org/downloads/",
  349. "license": [
  350. "MIT"
  351. ],
  352. "authors": [
  353. {
  354. "name": "Jordi Boggiano",
  355. "email": "j.boggiano@seld.be",
  356. "homepage": "http://seld.be"
  357. }
  358. ],
  359. "description": "Lets you find a path to the system CA bundle, and includes a fallback to the Mozilla CA bundle.",
  360. "keywords": [
  361. "cabundle",
  362. "cacert",
  363. "certificate",
  364. "ssl",
  365. "tls"
  366. ],
  367. "support": {
  368. "irc": "irc://irc.freenode.org/composer",
  369. "issues": "https://github.com/composer/ca-bundle/issues",
  370. "source": "https://github.com/composer/ca-bundle/tree/1.3.1"
  371. },
  372. "funding": [
  373. {
  374. "url": "https://packagist.com",
  375. "type": "custom"
  376. },
  377. {
  378. "url": "https://github.com/composer",
  379. "type": "github"
  380. },
  381. {
  382. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  383. "type": "tidelift"
  384. }
  385. ],
  386. "time": "2021-10-28T20:44:15+00:00"
  387. },
  388. {
  389. "name": "composer/composer",
  390. "version": "2.2.13",
  391. "source": {
  392. "type": "git",
  393. "url": "https://github.com/composer/composer.git",
  394. "reference": "de11c9819ac45659fb0fafb2e704912f9994ed60"
  395. },
  396. "dist": {
  397. "type": "zip",
  398. "url": "https://api.github.com/repos/composer/composer/zipball/de11c9819ac45659fb0fafb2e704912f9994ed60",
  399. "reference": "de11c9819ac45659fb0fafb2e704912f9994ed60",
  400. "shasum": "",
  401. "mirrors": [
  402. {
  403. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  404. "preferred": true
  405. }
  406. ]
  407. },
  408. "require": {
  409. "composer/ca-bundle": "^1.0",
  410. "composer/metadata-minifier": "^1.0",
  411. "composer/pcre": "^1.0",
  412. "composer/semver": "^3.0",
  413. "composer/spdx-licenses": "^1.2",
  414. "composer/xdebug-handler": "^2.0 || ^3.0",
  415. "justinrainbow/json-schema": "^5.2.11",
  416. "php": "^5.3.2 || ^7.0 || ^8.0",
  417. "psr/log": "^1.0 || ^2.0",
  418. "react/promise": "^1.2 || ^2.7",
  419. "seld/jsonlint": "^1.4",
  420. "seld/phar-utils": "^1.0",
  421. "symfony/console": "^2.8.52 || ^3.4.35 || ^4.4 || ^5.0",
  422. "symfony/filesystem": "^2.8.52 || ^3.4.35 || ^4.4 || ^5.0 || ^6.0",
  423. "symfony/finder": "^2.8.52 || ^3.4.35 || ^4.4 || ^5.0 || ^6.0",
  424. "symfony/process": "^2.8.52 || ^3.4.35 || ^4.4 || ^5.0 || ^6.0"
  425. },
  426. "require-dev": {
  427. "phpspec/prophecy": "^1.10",
  428. "symfony/phpunit-bridge": "^4.2 || ^5.0 || ^6.0"
  429. },
  430. "suggest": {
  431. "ext-openssl": "Enabling the openssl extension allows you to access https URLs for repositories and packages",
  432. "ext-zip": "Enabling the zip extension allows you to unzip archives",
  433. "ext-zlib": "Allow gzip compression of HTTP requests"
  434. },
  435. "bin": [
  436. "bin/composer"
  437. ],
  438. "type": "library",
  439. "extra": {
  440. "branch-alias": {
  441. "dev-main": "2.2-dev"
  442. }
  443. },
  444. "autoload": {
  445. "psr-4": {
  446. "Composer\\": "src/Composer"
  447. }
  448. },
  449. "notification-url": "https://packagist.org/downloads/",
  450. "license": [
  451. "MIT"
  452. ],
  453. "authors": [
  454. {
  455. "name": "Nils Adermann",
  456. "email": "naderman@naderman.de",
  457. "homepage": "https://www.naderman.de"
  458. },
  459. {
  460. "name": "Jordi Boggiano",
  461. "email": "j.boggiano@seld.be",
  462. "homepage": "https://seld.be"
  463. }
  464. ],
  465. "description": "Composer helps you declare, manage and install dependencies of PHP projects. It ensures you have the right stack everywhere.",
  466. "homepage": "https://getcomposer.org/",
  467. "keywords": [
  468. "autoload",
  469. "dependency",
  470. "package"
  471. ],
  472. "support": {
  473. "irc": "ircs://irc.libera.chat:6697/composer",
  474. "issues": "https://github.com/composer/composer/issues",
  475. "source": "https://github.com/composer/composer/tree/2.2.13"
  476. },
  477. "funding": [
  478. {
  479. "url": "https://packagist.com",
  480. "type": "custom"
  481. },
  482. {
  483. "url": "https://github.com/composer",
  484. "type": "github"
  485. },
  486. {
  487. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  488. "type": "tidelift"
  489. }
  490. ],
  491. "time": "2022-05-25T19:37:25+00:00"
  492. },
  493. {
  494. "name": "composer/metadata-minifier",
  495. "version": "1.0.0",
  496. "source": {
  497. "type": "git",
  498. "url": "https://github.com/composer/metadata-minifier.git",
  499. "reference": "c549d23829536f0d0e984aaabbf02af91f443207"
  500. },
  501. "dist": {
  502. "type": "zip",
  503. "url": "https://api.github.com/repos/composer/metadata-minifier/zipball/c549d23829536f0d0e984aaabbf02af91f443207",
  504. "reference": "c549d23829536f0d0e984aaabbf02af91f443207",
  505. "shasum": "",
  506. "mirrors": [
  507. {
  508. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  509. "preferred": true
  510. }
  511. ]
  512. },
  513. "require": {
  514. "php": "^5.3.2 || ^7.0 || ^8.0"
  515. },
  516. "require-dev": {
  517. "composer/composer": "^2",
  518. "phpstan/phpstan": "^0.12.55",
  519. "symfony/phpunit-bridge": "^4.2 || ^5"
  520. },
  521. "type": "library",
  522. "extra": {
  523. "branch-alias": {
  524. "dev-main": "1.x-dev"
  525. }
  526. },
  527. "autoload": {
  528. "psr-4": {
  529. "Composer\\MetadataMinifier\\": "src"
  530. }
  531. },
  532. "notification-url": "https://packagist.org/downloads/",
  533. "license": [
  534. "MIT"
  535. ],
  536. "authors": [
  537. {
  538. "name": "Jordi Boggiano",
  539. "email": "j.boggiano@seld.be",
  540. "homepage": "http://seld.be"
  541. }
  542. ],
  543. "description": "Small utility library that handles metadata minification and expansion.",
  544. "keywords": [
  545. "composer",
  546. "compression"
  547. ],
  548. "support": {
  549. "issues": "https://github.com/composer/metadata-minifier/issues",
  550. "source": "https://github.com/composer/metadata-minifier/tree/1.0.0"
  551. },
  552. "funding": [
  553. {
  554. "url": "https://packagist.com",
  555. "type": "custom"
  556. },
  557. {
  558. "url": "https://github.com/composer",
  559. "type": "github"
  560. },
  561. {
  562. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  563. "type": "tidelift"
  564. }
  565. ],
  566. "time": "2021-04-07T13:37:33+00:00"
  567. },
  568. {
  569. "name": "composer/pcre",
  570. "version": "1.0.1",
  571. "source": {
  572. "type": "git",
  573. "url": "https://github.com/composer/pcre.git",
  574. "reference": "67a32d7d6f9f560b726ab25a061b38ff3a80c560"
  575. },
  576. "dist": {
  577. "type": "zip",
  578. "url": "https://api.github.com/repos/composer/pcre/zipball/67a32d7d6f9f560b726ab25a061b38ff3a80c560",
  579. "reference": "67a32d7d6f9f560b726ab25a061b38ff3a80c560",
  580. "shasum": "",
  581. "mirrors": [
  582. {
  583. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  584. "preferred": true
  585. }
  586. ]
  587. },
  588. "require": {
  589. "php": "^5.3.2 || ^7.0 || ^8.0"
  590. },
  591. "require-dev": {
  592. "phpstan/phpstan": "^1.3",
  593. "phpstan/phpstan-strict-rules": "^1.1",
  594. "symfony/phpunit-bridge": "^4.2 || ^5"
  595. },
  596. "type": "library",
  597. "extra": {
  598. "branch-alias": {
  599. "dev-main": "1.x-dev"
  600. }
  601. },
  602. "autoload": {
  603. "psr-4": {
  604. "Composer\\Pcre\\": "src"
  605. }
  606. },
  607. "notification-url": "https://packagist.org/downloads/",
  608. "license": [
  609. "MIT"
  610. ],
  611. "authors": [
  612. {
  613. "name": "Jordi Boggiano",
  614. "email": "j.boggiano@seld.be",
  615. "homepage": "http://seld.be"
  616. }
  617. ],
  618. "description": "PCRE wrapping library that offers type-safe preg_* replacements.",
  619. "keywords": [
  620. "PCRE",
  621. "preg",
  622. "regex",
  623. "regular expression"
  624. ],
  625. "support": {
  626. "issues": "https://github.com/composer/pcre/issues",
  627. "source": "https://github.com/composer/pcre/tree/1.0.1"
  628. },
  629. "funding": [
  630. {
  631. "url": "https://packagist.com",
  632. "type": "custom"
  633. },
  634. {
  635. "url": "https://github.com/composer",
  636. "type": "github"
  637. },
  638. {
  639. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  640. "type": "tidelift"
  641. }
  642. ],
  643. "time": "2022-01-21T20:24:37+00:00"
  644. },
  645. {
  646. "name": "composer/semver",
  647. "version": "3.3.1",
  648. "source": {
  649. "type": "git",
  650. "url": "https://github.com/composer/semver.git",
  651. "reference": "5d8e574bb0e69188786b8ef77d43341222a41a71"
  652. },
  653. "dist": {
  654. "type": "zip",
  655. "url": "https://api.github.com/repos/composer/semver/zipball/5d8e574bb0e69188786b8ef77d43341222a41a71",
  656. "reference": "5d8e574bb0e69188786b8ef77d43341222a41a71",
  657. "shasum": "",
  658. "mirrors": [
  659. {
  660. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  661. "preferred": true
  662. }
  663. ]
  664. },
  665. "require": {
  666. "php": "^5.3.2 || ^7.0 || ^8.0"
  667. },
  668. "require-dev": {
  669. "phpstan/phpstan": "^1.4",
  670. "symfony/phpunit-bridge": "^4.2 || ^5"
  671. },
  672. "type": "library",
  673. "extra": {
  674. "branch-alias": {
  675. "dev-main": "3.x-dev"
  676. }
  677. },
  678. "autoload": {
  679. "psr-4": {
  680. "Composer\\Semver\\": "src"
  681. }
  682. },
  683. "notification-url": "https://packagist.org/downloads/",
  684. "license": [
  685. "MIT"
  686. ],
  687. "authors": [
  688. {
  689. "name": "Nils Adermann",
  690. "email": "naderman@naderman.de",
  691. "homepage": "http://www.naderman.de"
  692. },
  693. {
  694. "name": "Jordi Boggiano",
  695. "email": "j.boggiano@seld.be",
  696. "homepage": "http://seld.be"
  697. },
  698. {
  699. "name": "Rob Bast",
  700. "email": "rob.bast@gmail.com",
  701. "homepage": "http://robbast.nl"
  702. }
  703. ],
  704. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  705. "keywords": [
  706. "semantic",
  707. "semver",
  708. "validation",
  709. "versioning"
  710. ],
  711. "support": {
  712. "irc": "irc://irc.freenode.org/composer",
  713. "issues": "https://github.com/composer/semver/issues",
  714. "source": "https://github.com/composer/semver/tree/3.3.1"
  715. },
  716. "funding": [
  717. {
  718. "url": "https://packagist.com",
  719. "type": "custom"
  720. },
  721. {
  722. "url": "https://github.com/composer",
  723. "type": "github"
  724. },
  725. {
  726. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  727. "type": "tidelift"
  728. }
  729. ],
  730. "time": "2022-03-16T11:22:07+00:00"
  731. },
  732. {
  733. "name": "composer/spdx-licenses",
  734. "version": "1.5.7",
  735. "source": {
  736. "type": "git",
  737. "url": "https://github.com/composer/spdx-licenses.git",
  738. "reference": "c848241796da2abf65837d51dce1fae55a960149"
  739. },
  740. "dist": {
  741. "type": "zip",
  742. "url": "https://api.github.com/repos/composer/spdx-licenses/zipball/c848241796da2abf65837d51dce1fae55a960149",
  743. "reference": "c848241796da2abf65837d51dce1fae55a960149",
  744. "shasum": "",
  745. "mirrors": [
  746. {
  747. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  748. "preferred": true
  749. }
  750. ]
  751. },
  752. "require": {
  753. "php": "^5.3.2 || ^7.0 || ^8.0"
  754. },
  755. "require-dev": {
  756. "phpstan/phpstan": "^0.12.55",
  757. "symfony/phpunit-bridge": "^4.2 || ^5"
  758. },
  759. "type": "library",
  760. "extra": {
  761. "branch-alias": {
  762. "dev-main": "1.x-dev"
  763. }
  764. },
  765. "autoload": {
  766. "psr-4": {
  767. "Composer\\Spdx\\": "src"
  768. }
  769. },
  770. "notification-url": "https://packagist.org/downloads/",
  771. "license": [
  772. "MIT"
  773. ],
  774. "authors": [
  775. {
  776. "name": "Nils Adermann",
  777. "email": "naderman@naderman.de",
  778. "homepage": "http://www.naderman.de"
  779. },
  780. {
  781. "name": "Jordi Boggiano",
  782. "email": "j.boggiano@seld.be",
  783. "homepage": "http://seld.be"
  784. },
  785. {
  786. "name": "Rob Bast",
  787. "email": "rob.bast@gmail.com",
  788. "homepage": "http://robbast.nl"
  789. }
  790. ],
  791. "description": "SPDX licenses list and validation library.",
  792. "keywords": [
  793. "license",
  794. "spdx",
  795. "validator"
  796. ],
  797. "support": {
  798. "irc": "irc://irc.freenode.org/composer",
  799. "issues": "https://github.com/composer/spdx-licenses/issues",
  800. "source": "https://github.com/composer/spdx-licenses/tree/1.5.7"
  801. },
  802. "funding": [
  803. {
  804. "url": "https://packagist.com",
  805. "type": "custom"
  806. },
  807. {
  808. "url": "https://github.com/composer",
  809. "type": "github"
  810. },
  811. {
  812. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  813. "type": "tidelift"
  814. }
  815. ],
  816. "time": "2022-05-23T07:37:50+00:00"
  817. },
  818. {
  819. "name": "composer/xdebug-handler",
  820. "version": "3.0.3",
  821. "source": {
  822. "type": "git",
  823. "url": "https://github.com/composer/xdebug-handler.git",
  824. "reference": "ced299686f41dce890debac69273b47ffe98a40c"
  825. },
  826. "dist": {
  827. "type": "zip",
  828. "url": "https://api.github.com/repos/composer/xdebug-handler/zipball/ced299686f41dce890debac69273b47ffe98a40c",
  829. "reference": "ced299686f41dce890debac69273b47ffe98a40c",
  830. "shasum": "",
  831. "mirrors": [
  832. {
  833. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  834. "preferred": true
  835. }
  836. ]
  837. },
  838. "require": {
  839. "composer/pcre": "^1 || ^2 || ^3",
  840. "php": "^7.2.5 || ^8.0",
  841. "psr/log": "^1 || ^2 || ^3"
  842. },
  843. "require-dev": {
  844. "phpstan/phpstan": "^1.0",
  845. "phpstan/phpstan-strict-rules": "^1.1",
  846. "symfony/phpunit-bridge": "^6.0"
  847. },
  848. "type": "library",
  849. "autoload": {
  850. "psr-4": {
  851. "Composer\\XdebugHandler\\": "src"
  852. }
  853. },
  854. "notification-url": "https://packagist.org/downloads/",
  855. "license": [
  856. "MIT"
  857. ],
  858. "authors": [
  859. {
  860. "name": "John Stevenson",
  861. "email": "john-stevenson@blueyonder.co.uk"
  862. }
  863. ],
  864. "description": "Restarts a process without Xdebug.",
  865. "keywords": [
  866. "Xdebug",
  867. "performance"
  868. ],
  869. "support": {
  870. "irc": "irc://irc.freenode.org/composer",
  871. "issues": "https://github.com/composer/xdebug-handler/issues",
  872. "source": "https://github.com/composer/xdebug-handler/tree/3.0.3"
  873. },
  874. "funding": [
  875. {
  876. "url": "https://packagist.com",
  877. "type": "custom"
  878. },
  879. {
  880. "url": "https://github.com/composer",
  881. "type": "github"
  882. },
  883. {
  884. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  885. "type": "tidelift"
  886. }
  887. ],
  888. "time": "2022-02-25T21:32:43+00:00"
  889. },
  890. {
  891. "name": "dingo/api",
  892. "version": "v2.4.7",
  893. "source": {
  894. "type": "git",
  895. "url": "https://github.com/dingo/api.git",
  896. "reference": "669a5a9f39cf4f499af1b6fcf43c15e364312ad3"
  897. },
  898. "dist": {
  899. "type": "zip",
  900. "url": "https://api.github.com/repos/dingo/api/zipball/669a5a9f39cf4f499af1b6fcf43c15e364312ad3",
  901. "reference": "669a5a9f39cf4f499af1b6fcf43c15e364312ad3",
  902. "shasum": "",
  903. "mirrors": [
  904. {
  905. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  906. "preferred": true
  907. }
  908. ]
  909. },
  910. "require": {
  911. "dingo/blueprint": "^0.3",
  912. "illuminate/routing": "^5.5 || ^6.0",
  913. "illuminate/support": "^5.5 || ^6.0",
  914. "league/fractal": "^0.17",
  915. "php": "^7.1"
  916. },
  917. "require-dev": {
  918. "friendsofphp/php-cs-fixer": "~2",
  919. "illuminate/auth": "^5.5 || ^6.0",
  920. "illuminate/cache": "^5.5 || ^6.0",
  921. "illuminate/console": "^5.5 || ^6.0",
  922. "illuminate/database": "^5.5 || ^6.0",
  923. "illuminate/events": "^5.5 || ^6.0",
  924. "illuminate/filesystem": "^5.5 || ^6.0",
  925. "illuminate/log": "^5.5 || ^6.0",
  926. "illuminate/pagination": "^5.5 || ^6.0",
  927. "laravel/lumen-framework": "^5.5 || ^6.0",
  928. "mockery/mockery": "~1.0",
  929. "phpdocumentor/reflection-docblock": "3.3.2",
  930. "phpunit/phpunit": "^4.8.35 || ^5.4.3 || ^6.5",
  931. "squizlabs/php_codesniffer": "~2.0",
  932. "tymon/jwt-auth": "1.0.*"
  933. },
  934. "suggest": {
  935. "tymon/jwt-auth": "Protect your API with JSON Web Tokens."
  936. },
  937. "type": "library",
  938. "extra": {
  939. "branch-alias": {
  940. "dev-master": "2.0-dev"
  941. },
  942. "laravel": {
  943. "providers": [
  944. "Dingo\\Api\\Provider\\LaravelServiceProvider"
  945. ],
  946. "aliases": {
  947. "API": "Dingo\\Api\\Facade\\API"
  948. }
  949. }
  950. },
  951. "autoload": {
  952. "psr-4": {
  953. "Dingo\\Api\\": "src/"
  954. },
  955. "files": [
  956. "src/helpers.php"
  957. ]
  958. },
  959. "notification-url": "https://packagist.org/downloads/",
  960. "license": [
  961. "BSD-3-Clause"
  962. ],
  963. "authors": [
  964. {
  965. "name": "Jason Lewis",
  966. "email": "jason.lewis1991@gmail.com"
  967. }
  968. ],
  969. "description": "A RESTful API package for the Laravel and Lumen frameworks.",
  970. "keywords": [
  971. "api",
  972. "dingo",
  973. "laravel",
  974. "restful"
  975. ],
  976. "support": {
  977. "issues": "https://github.com/dingo/api/issues",
  978. "source": "https://github.com/dingo/api/tree/v2"
  979. },
  980. "abandoned": "api-ecosystem-for-laravel/dingo-api",
  981. "time": "2020-03-19T01:36:11+00:00"
  982. },
  983. {
  984. "name": "dingo/blueprint",
  985. "version": "v0.3.1",
  986. "source": {
  987. "type": "git",
  988. "url": "https://github.com/dingo/blueprint.git",
  989. "reference": "45bbc59385310de7604e35ea4e27dc1756be9396"
  990. },
  991. "dist": {
  992. "type": "zip",
  993. "url": "https://api.github.com/repos/dingo/blueprint/zipball/45bbc59385310de7604e35ea4e27dc1756be9396",
  994. "reference": "45bbc59385310de7604e35ea4e27dc1756be9396",
  995. "shasum": "",
  996. "mirrors": [
  997. {
  998. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  999. "preferred": true
  1000. }
  1001. ]
  1002. },
  1003. "require": {
  1004. "doctrine/annotations": "~1.2",
  1005. "illuminate/filesystem": "^5.5 || ^6.0",
  1006. "illuminate/support": "^5.5 || ^6.0",
  1007. "php": "^7.1",
  1008. "phpdocumentor/reflection-docblock": "^3.1|^4.1"
  1009. },
  1010. "require-dev": {
  1011. "phpunit/phpunit": "^4.8.35 || ^5.4.3 || ^6.5",
  1012. "squizlabs/php_codesniffer": "~2.0"
  1013. },
  1014. "type": "library",
  1015. "extra": {
  1016. "branch-alias": {
  1017. "dev-master": "0.2-dev"
  1018. }
  1019. },
  1020. "autoload": {
  1021. "psr-4": {
  1022. "Dingo\\Blueprint\\": "src"
  1023. }
  1024. },
  1025. "notification-url": "https://packagist.org/downloads/",
  1026. "license": [
  1027. "BSD-3-Clause"
  1028. ],
  1029. "authors": [
  1030. {
  1031. "name": "Jason Lewis",
  1032. "email": "jason.lewis1991@gmail.com"
  1033. }
  1034. ],
  1035. "description": "API Blueprint documentation generator.",
  1036. "keywords": [
  1037. "api",
  1038. "blueprint",
  1039. "dingo",
  1040. "docs",
  1041. "laravel"
  1042. ],
  1043. "support": {
  1044. "issues": "https://github.com/dingo/blueprint/issues",
  1045. "source": "https://github.com/dingo/blueprint/tree/v3.0.1"
  1046. },
  1047. "time": "2019-10-07T10:14:17+00:00"
  1048. },
  1049. {
  1050. "name": "doctrine/annotations",
  1051. "version": "1.13.2",
  1052. "source": {
  1053. "type": "git",
  1054. "url": "https://github.com/doctrine/annotations.git",
  1055. "reference": "5b668aef16090008790395c02c893b1ba13f7e08"
  1056. },
  1057. "dist": {
  1058. "type": "zip",
  1059. "url": "https://api.github.com/repos/doctrine/annotations/zipball/5b668aef16090008790395c02c893b1ba13f7e08",
  1060. "reference": "5b668aef16090008790395c02c893b1ba13f7e08",
  1061. "shasum": "",
  1062. "mirrors": [
  1063. {
  1064. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1065. "preferred": true
  1066. }
  1067. ]
  1068. },
  1069. "require": {
  1070. "doctrine/lexer": "1.*",
  1071. "ext-tokenizer": "*",
  1072. "php": "^7.1 || ^8.0",
  1073. "psr/cache": "^1 || ^2 || ^3"
  1074. },
  1075. "require-dev": {
  1076. "doctrine/cache": "^1.11 || ^2.0",
  1077. "doctrine/coding-standard": "^6.0 || ^8.1",
  1078. "phpstan/phpstan": "^0.12.20",
  1079. "phpunit/phpunit": "^7.5 || ^8.0 || ^9.1.5",
  1080. "symfony/cache": "^4.4 || ^5.2"
  1081. },
  1082. "type": "library",
  1083. "autoload": {
  1084. "psr-4": {
  1085. "Doctrine\\Common\\Annotations\\": "lib/Doctrine/Common/Annotations"
  1086. }
  1087. },
  1088. "notification-url": "https://packagist.org/downloads/",
  1089. "license": [
  1090. "MIT"
  1091. ],
  1092. "authors": [
  1093. {
  1094. "name": "Guilherme Blanco",
  1095. "email": "guilhermeblanco@gmail.com"
  1096. },
  1097. {
  1098. "name": "Roman Borschel",
  1099. "email": "roman@code-factory.org"
  1100. },
  1101. {
  1102. "name": "Benjamin Eberlei",
  1103. "email": "kontakt@beberlei.de"
  1104. },
  1105. {
  1106. "name": "Jonathan Wage",
  1107. "email": "jonwage@gmail.com"
  1108. },
  1109. {
  1110. "name": "Johannes Schmitt",
  1111. "email": "schmittjoh@gmail.com"
  1112. }
  1113. ],
  1114. "description": "Docblock Annotations Parser",
  1115. "homepage": "https://www.doctrine-project.org/projects/annotations.html",
  1116. "keywords": [
  1117. "annotations",
  1118. "docblock",
  1119. "parser"
  1120. ],
  1121. "support": {
  1122. "issues": "https://github.com/doctrine/annotations/issues",
  1123. "source": "https://github.com/doctrine/annotations/tree/1.13.2"
  1124. },
  1125. "time": "2021-08-05T19:00:23+00:00"
  1126. },
  1127. {
  1128. "name": "doctrine/cache",
  1129. "version": "2.1.1",
  1130. "source": {
  1131. "type": "git",
  1132. "url": "https://github.com/doctrine/cache.git",
  1133. "reference": "331b4d5dbaeab3827976273e9356b3b453c300ce"
  1134. },
  1135. "dist": {
  1136. "type": "zip",
  1137. "url": "https://api.github.com/repos/doctrine/cache/zipball/331b4d5dbaeab3827976273e9356b3b453c300ce",
  1138. "reference": "331b4d5dbaeab3827976273e9356b3b453c300ce",
  1139. "shasum": "",
  1140. "mirrors": [
  1141. {
  1142. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1143. "preferred": true
  1144. }
  1145. ]
  1146. },
  1147. "require": {
  1148. "php": "~7.1 || ^8.0"
  1149. },
  1150. "conflict": {
  1151. "doctrine/common": ">2.2,<2.4"
  1152. },
  1153. "require-dev": {
  1154. "alcaeus/mongo-php-adapter": "^1.1",
  1155. "cache/integration-tests": "dev-master",
  1156. "doctrine/coding-standard": "^8.0",
  1157. "mongodb/mongodb": "^1.1",
  1158. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0",
  1159. "predis/predis": "~1.0",
  1160. "psr/cache": "^1.0 || ^2.0 || ^3.0",
  1161. "symfony/cache": "^4.4 || ^5.2 || ^6.0@dev",
  1162. "symfony/var-exporter": "^4.4 || ^5.2 || ^6.0@dev"
  1163. },
  1164. "suggest": {
  1165. "alcaeus/mongo-php-adapter": "Required to use legacy MongoDB driver"
  1166. },
  1167. "type": "library",
  1168. "autoload": {
  1169. "psr-4": {
  1170. "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache"
  1171. }
  1172. },
  1173. "notification-url": "https://packagist.org/downloads/",
  1174. "license": [
  1175. "MIT"
  1176. ],
  1177. "authors": [
  1178. {
  1179. "name": "Guilherme Blanco",
  1180. "email": "guilhermeblanco@gmail.com"
  1181. },
  1182. {
  1183. "name": "Roman Borschel",
  1184. "email": "roman@code-factory.org"
  1185. },
  1186. {
  1187. "name": "Benjamin Eberlei",
  1188. "email": "kontakt@beberlei.de"
  1189. },
  1190. {
  1191. "name": "Jonathan Wage",
  1192. "email": "jonwage@gmail.com"
  1193. },
  1194. {
  1195. "name": "Johannes Schmitt",
  1196. "email": "schmittjoh@gmail.com"
  1197. }
  1198. ],
  1199. "description": "PHP Doctrine Cache library is a popular cache implementation that supports many different drivers such as redis, memcache, apc, mongodb and others.",
  1200. "homepage": "https://www.doctrine-project.org/projects/cache.html",
  1201. "keywords": [
  1202. "abstraction",
  1203. "apcu",
  1204. "cache",
  1205. "caching",
  1206. "couchdb",
  1207. "memcached",
  1208. "php",
  1209. "redis",
  1210. "xcache"
  1211. ],
  1212. "support": {
  1213. "issues": "https://github.com/doctrine/cache/issues",
  1214. "source": "https://github.com/doctrine/cache/tree/2.1.1"
  1215. },
  1216. "funding": [
  1217. {
  1218. "url": "https://www.doctrine-project.org/sponsorship.html",
  1219. "type": "custom"
  1220. },
  1221. {
  1222. "url": "https://www.patreon.com/phpdoctrine",
  1223. "type": "patreon"
  1224. },
  1225. {
  1226. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcache",
  1227. "type": "tidelift"
  1228. }
  1229. ],
  1230. "time": "2021-07-17T14:49:29+00:00"
  1231. },
  1232. {
  1233. "name": "doctrine/dbal",
  1234. "version": "2.13.8",
  1235. "source": {
  1236. "type": "git",
  1237. "url": "https://github.com/doctrine/dbal.git",
  1238. "reference": "dc9b3c3c8592c935a6e590441f9abc0f9eba335b"
  1239. },
  1240. "dist": {
  1241. "type": "zip",
  1242. "url": "https://api.github.com/repos/doctrine/dbal/zipball/dc9b3c3c8592c935a6e590441f9abc0f9eba335b",
  1243. "reference": "dc9b3c3c8592c935a6e590441f9abc0f9eba335b",
  1244. "shasum": "",
  1245. "mirrors": [
  1246. {
  1247. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1248. "preferred": true
  1249. }
  1250. ]
  1251. },
  1252. "require": {
  1253. "doctrine/cache": "^1.0|^2.0",
  1254. "doctrine/deprecations": "^0.5.3",
  1255. "doctrine/event-manager": "^1.0",
  1256. "ext-pdo": "*",
  1257. "php": "^7.1 || ^8"
  1258. },
  1259. "require-dev": {
  1260. "doctrine/coding-standard": "9.0.0",
  1261. "jetbrains/phpstorm-stubs": "2021.1",
  1262. "phpstan/phpstan": "1.4.6",
  1263. "phpunit/phpunit": "^7.5.20|^8.5|9.5.16",
  1264. "psalm/plugin-phpunit": "0.16.1",
  1265. "squizlabs/php_codesniffer": "3.6.2",
  1266. "symfony/cache": "^4.4",
  1267. "symfony/console": "^2.0.5|^3.0|^4.0|^5.0",
  1268. "vimeo/psalm": "4.22.0"
  1269. },
  1270. "suggest": {
  1271. "symfony/console": "For helpful console commands such as SQL execution and import of files."
  1272. },
  1273. "bin": [
  1274. "bin/doctrine-dbal"
  1275. ],
  1276. "type": "library",
  1277. "autoload": {
  1278. "psr-4": {
  1279. "Doctrine\\DBAL\\": "lib/Doctrine/DBAL"
  1280. }
  1281. },
  1282. "notification-url": "https://packagist.org/downloads/",
  1283. "license": [
  1284. "MIT"
  1285. ],
  1286. "authors": [
  1287. {
  1288. "name": "Guilherme Blanco",
  1289. "email": "guilhermeblanco@gmail.com"
  1290. },
  1291. {
  1292. "name": "Roman Borschel",
  1293. "email": "roman@code-factory.org"
  1294. },
  1295. {
  1296. "name": "Benjamin Eberlei",
  1297. "email": "kontakt@beberlei.de"
  1298. },
  1299. {
  1300. "name": "Jonathan Wage",
  1301. "email": "jonwage@gmail.com"
  1302. }
  1303. ],
  1304. "description": "Powerful PHP database abstraction layer (DBAL) with many features for database schema introspection and management.",
  1305. "homepage": "https://www.doctrine-project.org/projects/dbal.html",
  1306. "keywords": [
  1307. "abstraction",
  1308. "database",
  1309. "db2",
  1310. "dbal",
  1311. "mariadb",
  1312. "mssql",
  1313. "mysql",
  1314. "oci8",
  1315. "oracle",
  1316. "pdo",
  1317. "pgsql",
  1318. "postgresql",
  1319. "queryobject",
  1320. "sasql",
  1321. "sql",
  1322. "sqlanywhere",
  1323. "sqlite",
  1324. "sqlserver",
  1325. "sqlsrv"
  1326. ],
  1327. "support": {
  1328. "issues": "https://github.com/doctrine/dbal/issues",
  1329. "source": "https://github.com/doctrine/dbal/tree/2.13.8"
  1330. },
  1331. "funding": [
  1332. {
  1333. "url": "https://www.doctrine-project.org/sponsorship.html",
  1334. "type": "custom"
  1335. },
  1336. {
  1337. "url": "https://www.patreon.com/phpdoctrine",
  1338. "type": "patreon"
  1339. },
  1340. {
  1341. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdbal",
  1342. "type": "tidelift"
  1343. }
  1344. ],
  1345. "time": "2022-03-09T15:25:46+00:00"
  1346. },
  1347. {
  1348. "name": "doctrine/deprecations",
  1349. "version": "v0.5.3",
  1350. "source": {
  1351. "type": "git",
  1352. "url": "https://github.com/doctrine/deprecations.git",
  1353. "reference": "9504165960a1f83cc1480e2be1dd0a0478561314"
  1354. },
  1355. "dist": {
  1356. "type": "zip",
  1357. "url": "https://api.github.com/repos/doctrine/deprecations/zipball/9504165960a1f83cc1480e2be1dd0a0478561314",
  1358. "reference": "9504165960a1f83cc1480e2be1dd0a0478561314",
  1359. "shasum": "",
  1360. "mirrors": [
  1361. {
  1362. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1363. "preferred": true
  1364. }
  1365. ]
  1366. },
  1367. "require": {
  1368. "php": "^7.1|^8.0"
  1369. },
  1370. "require-dev": {
  1371. "doctrine/coding-standard": "^6.0|^7.0|^8.0",
  1372. "phpunit/phpunit": "^7.0|^8.0|^9.0",
  1373. "psr/log": "^1.0"
  1374. },
  1375. "suggest": {
  1376. "psr/log": "Allows logging deprecations via PSR-3 logger implementation"
  1377. },
  1378. "type": "library",
  1379. "autoload": {
  1380. "psr-4": {
  1381. "Doctrine\\Deprecations\\": "lib/Doctrine/Deprecations"
  1382. }
  1383. },
  1384. "notification-url": "https://packagist.org/downloads/",
  1385. "license": [
  1386. "MIT"
  1387. ],
  1388. "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.",
  1389. "homepage": "https://www.doctrine-project.org/",
  1390. "support": {
  1391. "issues": "https://github.com/doctrine/deprecations/issues",
  1392. "source": "https://github.com/doctrine/deprecations/tree/v0.5.3"
  1393. },
  1394. "time": "2021-03-21T12:59:47+00:00"
  1395. },
  1396. {
  1397. "name": "doctrine/event-manager",
  1398. "version": "1.1.1",
  1399. "source": {
  1400. "type": "git",
  1401. "url": "https://github.com/doctrine/event-manager.git",
  1402. "reference": "41370af6a30faa9dc0368c4a6814d596e81aba7f"
  1403. },
  1404. "dist": {
  1405. "type": "zip",
  1406. "url": "https://api.github.com/repos/doctrine/event-manager/zipball/41370af6a30faa9dc0368c4a6814d596e81aba7f",
  1407. "reference": "41370af6a30faa9dc0368c4a6814d596e81aba7f",
  1408. "shasum": "",
  1409. "mirrors": [
  1410. {
  1411. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1412. "preferred": true
  1413. }
  1414. ]
  1415. },
  1416. "require": {
  1417. "php": "^7.1 || ^8.0"
  1418. },
  1419. "conflict": {
  1420. "doctrine/common": "<2.9@dev"
  1421. },
  1422. "require-dev": {
  1423. "doctrine/coding-standard": "^6.0",
  1424. "phpunit/phpunit": "^7.0"
  1425. },
  1426. "type": "library",
  1427. "extra": {
  1428. "branch-alias": {
  1429. "dev-master": "1.0.x-dev"
  1430. }
  1431. },
  1432. "autoload": {
  1433. "psr-4": {
  1434. "Doctrine\\Common\\": "lib/Doctrine/Common"
  1435. }
  1436. },
  1437. "notification-url": "https://packagist.org/downloads/",
  1438. "license": [
  1439. "MIT"
  1440. ],
  1441. "authors": [
  1442. {
  1443. "name": "Guilherme Blanco",
  1444. "email": "guilhermeblanco@gmail.com"
  1445. },
  1446. {
  1447. "name": "Roman Borschel",
  1448. "email": "roman@code-factory.org"
  1449. },
  1450. {
  1451. "name": "Benjamin Eberlei",
  1452. "email": "kontakt@beberlei.de"
  1453. },
  1454. {
  1455. "name": "Jonathan Wage",
  1456. "email": "jonwage@gmail.com"
  1457. },
  1458. {
  1459. "name": "Johannes Schmitt",
  1460. "email": "schmittjoh@gmail.com"
  1461. },
  1462. {
  1463. "name": "Marco Pivetta",
  1464. "email": "ocramius@gmail.com"
  1465. }
  1466. ],
  1467. "description": "The Doctrine Event Manager is a simple PHP event system that was built to be used with the various Doctrine projects.",
  1468. "homepage": "https://www.doctrine-project.org/projects/event-manager.html",
  1469. "keywords": [
  1470. "event",
  1471. "event dispatcher",
  1472. "event manager",
  1473. "event system",
  1474. "events"
  1475. ],
  1476. "support": {
  1477. "issues": "https://github.com/doctrine/event-manager/issues",
  1478. "source": "https://github.com/doctrine/event-manager/tree/1.1.x"
  1479. },
  1480. "funding": [
  1481. {
  1482. "url": "https://www.doctrine-project.org/sponsorship.html",
  1483. "type": "custom"
  1484. },
  1485. {
  1486. "url": "https://www.patreon.com/phpdoctrine",
  1487. "type": "patreon"
  1488. },
  1489. {
  1490. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fevent-manager",
  1491. "type": "tidelift"
  1492. }
  1493. ],
  1494. "time": "2020-05-29T18:28:51+00:00"
  1495. },
  1496. {
  1497. "name": "doctrine/inflector",
  1498. "version": "2.0.4",
  1499. "source": {
  1500. "type": "git",
  1501. "url": "https://github.com/doctrine/inflector.git",
  1502. "reference": "8b7ff3e4b7de6b2c84da85637b59fd2880ecaa89"
  1503. },
  1504. "dist": {
  1505. "type": "zip",
  1506. "url": "https://api.github.com/repos/doctrine/inflector/zipball/8b7ff3e4b7de6b2c84da85637b59fd2880ecaa89",
  1507. "reference": "8b7ff3e4b7de6b2c84da85637b59fd2880ecaa89",
  1508. "shasum": "",
  1509. "mirrors": [
  1510. {
  1511. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1512. "preferred": true
  1513. }
  1514. ]
  1515. },
  1516. "require": {
  1517. "php": "^7.2 || ^8.0"
  1518. },
  1519. "require-dev": {
  1520. "doctrine/coding-standard": "^8.2",
  1521. "phpstan/phpstan": "^0.12",
  1522. "phpstan/phpstan-phpunit": "^0.12",
  1523. "phpstan/phpstan-strict-rules": "^0.12",
  1524. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0",
  1525. "vimeo/psalm": "^4.10"
  1526. },
  1527. "type": "library",
  1528. "autoload": {
  1529. "psr-4": {
  1530. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  1531. }
  1532. },
  1533. "notification-url": "https://packagist.org/downloads/",
  1534. "license": [
  1535. "MIT"
  1536. ],
  1537. "authors": [
  1538. {
  1539. "name": "Guilherme Blanco",
  1540. "email": "guilhermeblanco@gmail.com"
  1541. },
  1542. {
  1543. "name": "Roman Borschel",
  1544. "email": "roman@code-factory.org"
  1545. },
  1546. {
  1547. "name": "Benjamin Eberlei",
  1548. "email": "kontakt@beberlei.de"
  1549. },
  1550. {
  1551. "name": "Jonathan Wage",
  1552. "email": "jonwage@gmail.com"
  1553. },
  1554. {
  1555. "name": "Johannes Schmitt",
  1556. "email": "schmittjoh@gmail.com"
  1557. }
  1558. ],
  1559. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  1560. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  1561. "keywords": [
  1562. "inflection",
  1563. "inflector",
  1564. "lowercase",
  1565. "manipulation",
  1566. "php",
  1567. "plural",
  1568. "singular",
  1569. "strings",
  1570. "uppercase",
  1571. "words"
  1572. ],
  1573. "support": {
  1574. "issues": "https://github.com/doctrine/inflector/issues",
  1575. "source": "https://github.com/doctrine/inflector/tree/2.0.4"
  1576. },
  1577. "funding": [
  1578. {
  1579. "url": "https://www.doctrine-project.org/sponsorship.html",
  1580. "type": "custom"
  1581. },
  1582. {
  1583. "url": "https://www.patreon.com/phpdoctrine",
  1584. "type": "patreon"
  1585. },
  1586. {
  1587. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  1588. "type": "tidelift"
  1589. }
  1590. ],
  1591. "time": "2021-10-22T20:16:43+00:00"
  1592. },
  1593. {
  1594. "name": "doctrine/lexer",
  1595. "version": "1.2.3",
  1596. "source": {
  1597. "type": "git",
  1598. "url": "https://github.com/doctrine/lexer.git",
  1599. "reference": "c268e882d4dbdd85e36e4ad69e02dc284f89d229"
  1600. },
  1601. "dist": {
  1602. "type": "zip",
  1603. "url": "https://api.github.com/repos/doctrine/lexer/zipball/c268e882d4dbdd85e36e4ad69e02dc284f89d229",
  1604. "reference": "c268e882d4dbdd85e36e4ad69e02dc284f89d229",
  1605. "shasum": "",
  1606. "mirrors": [
  1607. {
  1608. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1609. "preferred": true
  1610. }
  1611. ]
  1612. },
  1613. "require": {
  1614. "php": "^7.1 || ^8.0"
  1615. },
  1616. "require-dev": {
  1617. "doctrine/coding-standard": "^9.0",
  1618. "phpstan/phpstan": "^1.3",
  1619. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  1620. "vimeo/psalm": "^4.11"
  1621. },
  1622. "type": "library",
  1623. "autoload": {
  1624. "psr-4": {
  1625. "Doctrine\\Common\\Lexer\\": "lib/Doctrine/Common/Lexer"
  1626. }
  1627. },
  1628. "notification-url": "https://packagist.org/downloads/",
  1629. "license": [
  1630. "MIT"
  1631. ],
  1632. "authors": [
  1633. {
  1634. "name": "Guilherme Blanco",
  1635. "email": "guilhermeblanco@gmail.com"
  1636. },
  1637. {
  1638. "name": "Roman Borschel",
  1639. "email": "roman@code-factory.org"
  1640. },
  1641. {
  1642. "name": "Johannes Schmitt",
  1643. "email": "schmittjoh@gmail.com"
  1644. }
  1645. ],
  1646. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  1647. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  1648. "keywords": [
  1649. "annotations",
  1650. "docblock",
  1651. "lexer",
  1652. "parser",
  1653. "php"
  1654. ],
  1655. "support": {
  1656. "issues": "https://github.com/doctrine/lexer/issues",
  1657. "source": "https://github.com/doctrine/lexer/tree/1.2.3"
  1658. },
  1659. "funding": [
  1660. {
  1661. "url": "https://www.doctrine-project.org/sponsorship.html",
  1662. "type": "custom"
  1663. },
  1664. {
  1665. "url": "https://www.patreon.com/phpdoctrine",
  1666. "type": "patreon"
  1667. },
  1668. {
  1669. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  1670. "type": "tidelift"
  1671. }
  1672. ],
  1673. "time": "2022-02-28T11:07:21+00:00"
  1674. },
  1675. {
  1676. "name": "dragonmantank/cron-expression",
  1677. "version": "v2.3.1",
  1678. "source": {
  1679. "type": "git",
  1680. "url": "https://github.com/dragonmantank/cron-expression.git",
  1681. "reference": "65b2d8ee1f10915efb3b55597da3404f096acba2"
  1682. },
  1683. "dist": {
  1684. "type": "zip",
  1685. "url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/65b2d8ee1f10915efb3b55597da3404f096acba2",
  1686. "reference": "65b2d8ee1f10915efb3b55597da3404f096acba2",
  1687. "shasum": "",
  1688. "mirrors": [
  1689. {
  1690. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1691. "preferred": true
  1692. }
  1693. ]
  1694. },
  1695. "require": {
  1696. "php": "^7.0|^8.0"
  1697. },
  1698. "require-dev": {
  1699. "phpunit/phpunit": "^6.4|^7.0|^8.0|^9.0"
  1700. },
  1701. "type": "library",
  1702. "extra": {
  1703. "branch-alias": {
  1704. "dev-master": "2.3-dev"
  1705. }
  1706. },
  1707. "autoload": {
  1708. "psr-4": {
  1709. "Cron\\": "src/Cron/"
  1710. }
  1711. },
  1712. "notification-url": "https://packagist.org/downloads/",
  1713. "license": [
  1714. "MIT"
  1715. ],
  1716. "authors": [
  1717. {
  1718. "name": "Michael Dowling",
  1719. "email": "mtdowling@gmail.com",
  1720. "homepage": "https://github.com/mtdowling"
  1721. },
  1722. {
  1723. "name": "Chris Tankersley",
  1724. "email": "chris@ctankersley.com",
  1725. "homepage": "https://github.com/dragonmantank"
  1726. }
  1727. ],
  1728. "description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due",
  1729. "keywords": [
  1730. "cron",
  1731. "schedule"
  1732. ],
  1733. "support": {
  1734. "issues": "https://github.com/dragonmantank/cron-expression/issues",
  1735. "source": "https://github.com/dragonmantank/cron-expression/tree/v2.3.1"
  1736. },
  1737. "funding": [
  1738. {
  1739. "url": "https://github.com/dragonmantank",
  1740. "type": "github"
  1741. }
  1742. ],
  1743. "time": "2020-10-13T00:52:37+00:00"
  1744. },
  1745. {
  1746. "name": "easywechat-composer/easywechat-composer",
  1747. "version": "1.4.1",
  1748. "source": {
  1749. "type": "git",
  1750. "url": "https://github.com/mingyoung/easywechat-composer.git",
  1751. "reference": "3fc6a7ab6d3853c0f4e2922539b56cc37ef361cd"
  1752. },
  1753. "dist": {
  1754. "type": "zip",
  1755. "url": "https://api.github.com/repos/mingyoung/easywechat-composer/zipball/3fc6a7ab6d3853c0f4e2922539b56cc37ef361cd",
  1756. "reference": "3fc6a7ab6d3853c0f4e2922539b56cc37ef361cd",
  1757. "shasum": "",
  1758. "mirrors": [
  1759. {
  1760. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1761. "preferred": true
  1762. }
  1763. ]
  1764. },
  1765. "require": {
  1766. "composer-plugin-api": "^1.0 || ^2.0",
  1767. "php": ">=7.0"
  1768. },
  1769. "require-dev": {
  1770. "composer/composer": "^1.0 || ^2.0",
  1771. "phpunit/phpunit": "^6.5 || ^7.0"
  1772. },
  1773. "type": "composer-plugin",
  1774. "extra": {
  1775. "class": "EasyWeChatComposer\\Plugin"
  1776. },
  1777. "autoload": {
  1778. "psr-4": {
  1779. "EasyWeChatComposer\\": "src/"
  1780. }
  1781. },
  1782. "notification-url": "https://packagist.org/downloads/",
  1783. "license": [
  1784. "MIT"
  1785. ],
  1786. "authors": [
  1787. {
  1788. "name": "张铭阳",
  1789. "email": "mingyoungcheung@gmail.com"
  1790. }
  1791. ],
  1792. "description": "The composer plugin for EasyWeChat",
  1793. "support": {
  1794. "issues": "https://github.com/mingyoung/easywechat-composer/issues",
  1795. "source": "https://github.com/mingyoung/easywechat-composer/tree/1.4.1"
  1796. },
  1797. "time": "2021-07-05T04:03:22+00:00"
  1798. },
  1799. {
  1800. "name": "egulias/email-validator",
  1801. "version": "2.1.25",
  1802. "source": {
  1803. "type": "git",
  1804. "url": "https://github.com/egulias/EmailValidator.git",
  1805. "reference": "0dbf5d78455d4d6a41d186da50adc1122ec066f4"
  1806. },
  1807. "dist": {
  1808. "type": "zip",
  1809. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/0dbf5d78455d4d6a41d186da50adc1122ec066f4",
  1810. "reference": "0dbf5d78455d4d6a41d186da50adc1122ec066f4",
  1811. "shasum": "",
  1812. "mirrors": [
  1813. {
  1814. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1815. "preferred": true
  1816. }
  1817. ]
  1818. },
  1819. "require": {
  1820. "doctrine/lexer": "^1.0.1",
  1821. "php": ">=5.5",
  1822. "symfony/polyfill-intl-idn": "^1.10"
  1823. },
  1824. "require-dev": {
  1825. "dominicsayers/isemail": "^3.0.7",
  1826. "phpunit/phpunit": "^4.8.36|^7.5.15",
  1827. "satooshi/php-coveralls": "^1.0.1"
  1828. },
  1829. "suggest": {
  1830. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  1831. },
  1832. "type": "library",
  1833. "extra": {
  1834. "branch-alias": {
  1835. "dev-master": "2.1.x-dev"
  1836. }
  1837. },
  1838. "autoload": {
  1839. "psr-4": {
  1840. "Egulias\\EmailValidator\\": "src"
  1841. }
  1842. },
  1843. "notification-url": "https://packagist.org/downloads/",
  1844. "license": [
  1845. "MIT"
  1846. ],
  1847. "authors": [
  1848. {
  1849. "name": "Eduardo Gulias Davis"
  1850. }
  1851. ],
  1852. "description": "A library for validating emails against several RFCs",
  1853. "homepage": "https://github.com/egulias/EmailValidator",
  1854. "keywords": [
  1855. "email",
  1856. "emailvalidation",
  1857. "emailvalidator",
  1858. "validation",
  1859. "validator"
  1860. ],
  1861. "support": {
  1862. "issues": "https://github.com/egulias/EmailValidator/issues",
  1863. "source": "https://github.com/egulias/EmailValidator/tree/2.1.25"
  1864. },
  1865. "funding": [
  1866. {
  1867. "url": "https://github.com/egulias",
  1868. "type": "github"
  1869. }
  1870. ],
  1871. "time": "2020-12-29T14:50:06+00:00"
  1872. },
  1873. {
  1874. "name": "fideloper/proxy",
  1875. "version": "4.4.1",
  1876. "source": {
  1877. "type": "git",
  1878. "url": "https://github.com/fideloper/TrustedProxy.git",
  1879. "reference": "c073b2bd04d1c90e04dc1b787662b558dd65ade0"
  1880. },
  1881. "dist": {
  1882. "type": "zip",
  1883. "url": "https://api.github.com/repos/fideloper/TrustedProxy/zipball/c073b2bd04d1c90e04dc1b787662b558dd65ade0",
  1884. "reference": "c073b2bd04d1c90e04dc1b787662b558dd65ade0",
  1885. "shasum": "",
  1886. "mirrors": [
  1887. {
  1888. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1889. "preferred": true
  1890. }
  1891. ]
  1892. },
  1893. "require": {
  1894. "illuminate/contracts": "^5.0|^6.0|^7.0|^8.0|^9.0",
  1895. "php": ">=5.4.0"
  1896. },
  1897. "require-dev": {
  1898. "illuminate/http": "^5.0|^6.0|^7.0|^8.0|^9.0",
  1899. "mockery/mockery": "^1.0",
  1900. "phpunit/phpunit": "^6.0"
  1901. },
  1902. "type": "library",
  1903. "extra": {
  1904. "laravel": {
  1905. "providers": [
  1906. "Fideloper\\Proxy\\TrustedProxyServiceProvider"
  1907. ]
  1908. }
  1909. },
  1910. "autoload": {
  1911. "psr-4": {
  1912. "Fideloper\\Proxy\\": "src/"
  1913. }
  1914. },
  1915. "notification-url": "https://packagist.org/downloads/",
  1916. "license": [
  1917. "MIT"
  1918. ],
  1919. "authors": [
  1920. {
  1921. "name": "Chris Fidao",
  1922. "email": "fideloper@gmail.com"
  1923. }
  1924. ],
  1925. "description": "Set trusted proxies for Laravel",
  1926. "keywords": [
  1927. "load balancing",
  1928. "proxy",
  1929. "trusted proxy"
  1930. ],
  1931. "support": {
  1932. "issues": "https://github.com/fideloper/TrustedProxy/issues",
  1933. "source": "https://github.com/fideloper/TrustedProxy/tree/4.4.1"
  1934. },
  1935. "time": "2020-10-22T13:48:01+00:00"
  1936. },
  1937. {
  1938. "name": "guzzlehttp/guzzle",
  1939. "version": "7.4.4",
  1940. "source": {
  1941. "type": "git",
  1942. "url": "https://github.com/guzzle/guzzle.git",
  1943. "reference": "e3ff079b22820c2029d4c2a87796b6a0b8716ad8"
  1944. },
  1945. "dist": {
  1946. "type": "zip",
  1947. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/e3ff079b22820c2029d4c2a87796b6a0b8716ad8",
  1948. "reference": "e3ff079b22820c2029d4c2a87796b6a0b8716ad8",
  1949. "shasum": "",
  1950. "mirrors": [
  1951. {
  1952. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1953. "preferred": true
  1954. }
  1955. ]
  1956. },
  1957. "require": {
  1958. "ext-json": "*",
  1959. "guzzlehttp/promises": "^1.5",
  1960. "guzzlehttp/psr7": "^1.8.3 || ^2.1",
  1961. "php": "^7.2.5 || ^8.0",
  1962. "psr/http-client": "^1.0",
  1963. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  1964. },
  1965. "provide": {
  1966. "psr/http-client-implementation": "1.0"
  1967. },
  1968. "require-dev": {
  1969. "bamarni/composer-bin-plugin": "^1.4.1",
  1970. "ext-curl": "*",
  1971. "php-http/client-integration-tests": "^3.0",
  1972. "phpunit/phpunit": "^8.5.5 || ^9.3.5",
  1973. "psr/log": "^1.1 || ^2.0 || ^3.0"
  1974. },
  1975. "suggest": {
  1976. "ext-curl": "Required for CURL handler support",
  1977. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  1978. "psr/log": "Required for using the Log middleware"
  1979. },
  1980. "type": "library",
  1981. "extra": {
  1982. "branch-alias": {
  1983. "dev-master": "7.4-dev"
  1984. }
  1985. },
  1986. "autoload": {
  1987. "files": [
  1988. "src/functions_include.php"
  1989. ],
  1990. "psr-4": {
  1991. "GuzzleHttp\\": "src/"
  1992. }
  1993. },
  1994. "notification-url": "https://packagist.org/downloads/",
  1995. "license": [
  1996. "MIT"
  1997. ],
  1998. "authors": [
  1999. {
  2000. "name": "Graham Campbell",
  2001. "email": "hello@gjcampbell.co.uk",
  2002. "homepage": "https://github.com/GrahamCampbell"
  2003. },
  2004. {
  2005. "name": "Michael Dowling",
  2006. "email": "mtdowling@gmail.com",
  2007. "homepage": "https://github.com/mtdowling"
  2008. },
  2009. {
  2010. "name": "Jeremy Lindblom",
  2011. "email": "jeremeamia@gmail.com",
  2012. "homepage": "https://github.com/jeremeamia"
  2013. },
  2014. {
  2015. "name": "George Mponos",
  2016. "email": "gmponos@gmail.com",
  2017. "homepage": "https://github.com/gmponos"
  2018. },
  2019. {
  2020. "name": "Tobias Nyholm",
  2021. "email": "tobias.nyholm@gmail.com",
  2022. "homepage": "https://github.com/Nyholm"
  2023. },
  2024. {
  2025. "name": "Márk Sági-Kazár",
  2026. "email": "mark.sagikazar@gmail.com",
  2027. "homepage": "https://github.com/sagikazarmark"
  2028. },
  2029. {
  2030. "name": "Tobias Schultze",
  2031. "email": "webmaster@tubo-world.de",
  2032. "homepage": "https://github.com/Tobion"
  2033. }
  2034. ],
  2035. "description": "Guzzle is a PHP HTTP client library",
  2036. "keywords": [
  2037. "client",
  2038. "curl",
  2039. "framework",
  2040. "http",
  2041. "http client",
  2042. "psr-18",
  2043. "psr-7",
  2044. "rest",
  2045. "web service"
  2046. ],
  2047. "support": {
  2048. "issues": "https://github.com/guzzle/guzzle/issues",
  2049. "source": "https://github.com/guzzle/guzzle/tree/7.4.4"
  2050. },
  2051. "funding": [
  2052. {
  2053. "url": "https://github.com/GrahamCampbell",
  2054. "type": "github"
  2055. },
  2056. {
  2057. "url": "https://github.com/Nyholm",
  2058. "type": "github"
  2059. },
  2060. {
  2061. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
  2062. "type": "tidelift"
  2063. }
  2064. ],
  2065. "time": "2022-06-09T21:39:15+00:00"
  2066. },
  2067. {
  2068. "name": "guzzlehttp/promises",
  2069. "version": "1.5.1",
  2070. "source": {
  2071. "type": "git",
  2072. "url": "https://github.com/guzzle/promises.git",
  2073. "reference": "fe752aedc9fd8fcca3fe7ad05d419d32998a06da"
  2074. },
  2075. "dist": {
  2076. "type": "zip",
  2077. "url": "https://api.github.com/repos/guzzle/promises/zipball/fe752aedc9fd8fcca3fe7ad05d419d32998a06da",
  2078. "reference": "fe752aedc9fd8fcca3fe7ad05d419d32998a06da",
  2079. "shasum": "",
  2080. "mirrors": [
  2081. {
  2082. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2083. "preferred": true
  2084. }
  2085. ]
  2086. },
  2087. "require": {
  2088. "php": ">=5.5"
  2089. },
  2090. "require-dev": {
  2091. "symfony/phpunit-bridge": "^4.4 || ^5.1"
  2092. },
  2093. "type": "library",
  2094. "extra": {
  2095. "branch-alias": {
  2096. "dev-master": "1.5-dev"
  2097. }
  2098. },
  2099. "autoload": {
  2100. "files": [
  2101. "src/functions_include.php"
  2102. ],
  2103. "psr-4": {
  2104. "GuzzleHttp\\Promise\\": "src/"
  2105. }
  2106. },
  2107. "notification-url": "https://packagist.org/downloads/",
  2108. "license": [
  2109. "MIT"
  2110. ],
  2111. "authors": [
  2112. {
  2113. "name": "Graham Campbell",
  2114. "email": "hello@gjcampbell.co.uk",
  2115. "homepage": "https://github.com/GrahamCampbell"
  2116. },
  2117. {
  2118. "name": "Michael Dowling",
  2119. "email": "mtdowling@gmail.com",
  2120. "homepage": "https://github.com/mtdowling"
  2121. },
  2122. {
  2123. "name": "Tobias Nyholm",
  2124. "email": "tobias.nyholm@gmail.com",
  2125. "homepage": "https://github.com/Nyholm"
  2126. },
  2127. {
  2128. "name": "Tobias Schultze",
  2129. "email": "webmaster@tubo-world.de",
  2130. "homepage": "https://github.com/Tobion"
  2131. }
  2132. ],
  2133. "description": "Guzzle promises library",
  2134. "keywords": [
  2135. "promise"
  2136. ],
  2137. "support": {
  2138. "issues": "https://github.com/guzzle/promises/issues",
  2139. "source": "https://github.com/guzzle/promises/tree/1.5.1"
  2140. },
  2141. "funding": [
  2142. {
  2143. "url": "https://github.com/GrahamCampbell",
  2144. "type": "github"
  2145. },
  2146. {
  2147. "url": "https://github.com/Nyholm",
  2148. "type": "github"
  2149. },
  2150. {
  2151. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  2152. "type": "tidelift"
  2153. }
  2154. ],
  2155. "time": "2021-10-22T20:56:57+00:00"
  2156. },
  2157. {
  2158. "name": "guzzlehttp/psr7",
  2159. "version": "2.3.0",
  2160. "source": {
  2161. "type": "git",
  2162. "url": "https://github.com/guzzle/psr7.git",
  2163. "reference": "83260bb50b8fc753c72d14dc1621a2dac31877ee"
  2164. },
  2165. "dist": {
  2166. "type": "zip",
  2167. "url": "https://api.github.com/repos/guzzle/psr7/zipball/83260bb50b8fc753c72d14dc1621a2dac31877ee",
  2168. "reference": "83260bb50b8fc753c72d14dc1621a2dac31877ee",
  2169. "shasum": "",
  2170. "mirrors": [
  2171. {
  2172. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2173. "preferred": true
  2174. }
  2175. ]
  2176. },
  2177. "require": {
  2178. "php": "^7.2.5 || ^8.0",
  2179. "psr/http-factory": "^1.0",
  2180. "psr/http-message": "^1.0",
  2181. "ralouphie/getallheaders": "^3.0"
  2182. },
  2183. "provide": {
  2184. "psr/http-factory-implementation": "1.0",
  2185. "psr/http-message-implementation": "1.0"
  2186. },
  2187. "require-dev": {
  2188. "bamarni/composer-bin-plugin": "^1.4.1",
  2189. "http-interop/http-factory-tests": "^0.9",
  2190. "phpunit/phpunit": "^8.5.8 || ^9.3.10"
  2191. },
  2192. "suggest": {
  2193. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  2194. },
  2195. "type": "library",
  2196. "extra": {
  2197. "branch-alias": {
  2198. "dev-master": "2.3-dev"
  2199. }
  2200. },
  2201. "autoload": {
  2202. "psr-4": {
  2203. "GuzzleHttp\\Psr7\\": "src/"
  2204. }
  2205. },
  2206. "notification-url": "https://packagist.org/downloads/",
  2207. "license": [
  2208. "MIT"
  2209. ],
  2210. "authors": [
  2211. {
  2212. "name": "Graham Campbell",
  2213. "email": "hello@gjcampbell.co.uk",
  2214. "homepage": "https://github.com/GrahamCampbell"
  2215. },
  2216. {
  2217. "name": "Michael Dowling",
  2218. "email": "mtdowling@gmail.com",
  2219. "homepage": "https://github.com/mtdowling"
  2220. },
  2221. {
  2222. "name": "George Mponos",
  2223. "email": "gmponos@gmail.com",
  2224. "homepage": "https://github.com/gmponos"
  2225. },
  2226. {
  2227. "name": "Tobias Nyholm",
  2228. "email": "tobias.nyholm@gmail.com",
  2229. "homepage": "https://github.com/Nyholm"
  2230. },
  2231. {
  2232. "name": "Márk Sági-Kazár",
  2233. "email": "mark.sagikazar@gmail.com",
  2234. "homepage": "https://github.com/sagikazarmark"
  2235. },
  2236. {
  2237. "name": "Tobias Schultze",
  2238. "email": "webmaster@tubo-world.de",
  2239. "homepage": "https://github.com/Tobion"
  2240. },
  2241. {
  2242. "name": "Márk Sági-Kazár",
  2243. "email": "mark.sagikazar@gmail.com",
  2244. "homepage": "https://sagikazarmark.hu"
  2245. }
  2246. ],
  2247. "description": "PSR-7 message implementation that also provides common utility methods",
  2248. "keywords": [
  2249. "http",
  2250. "message",
  2251. "psr-7",
  2252. "request",
  2253. "response",
  2254. "stream",
  2255. "uri",
  2256. "url"
  2257. ],
  2258. "support": {
  2259. "issues": "https://github.com/guzzle/psr7/issues",
  2260. "source": "https://github.com/guzzle/psr7/tree/2.3.0"
  2261. },
  2262. "funding": [
  2263. {
  2264. "url": "https://github.com/GrahamCampbell",
  2265. "type": "github"
  2266. },
  2267. {
  2268. "url": "https://github.com/Nyholm",
  2269. "type": "github"
  2270. },
  2271. {
  2272. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  2273. "type": "tidelift"
  2274. }
  2275. ],
  2276. "time": "2022-06-09T08:26:02+00:00"
  2277. },
  2278. {
  2279. "name": "justinrainbow/json-schema",
  2280. "version": "5.2.12",
  2281. "source": {
  2282. "type": "git",
  2283. "url": "https://github.com/justinrainbow/json-schema.git",
  2284. "reference": "ad87d5a5ca981228e0e205c2bc7dfb8e24559b60"
  2285. },
  2286. "dist": {
  2287. "type": "zip",
  2288. "url": "https://api.github.com/repos/justinrainbow/json-schema/zipball/ad87d5a5ca981228e0e205c2bc7dfb8e24559b60",
  2289. "reference": "ad87d5a5ca981228e0e205c2bc7dfb8e24559b60",
  2290. "shasum": "",
  2291. "mirrors": [
  2292. {
  2293. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2294. "preferred": true
  2295. }
  2296. ]
  2297. },
  2298. "require": {
  2299. "php": ">=5.3.3"
  2300. },
  2301. "require-dev": {
  2302. "friendsofphp/php-cs-fixer": "~2.2.20||~2.15.1",
  2303. "json-schema/json-schema-test-suite": "1.2.0",
  2304. "phpunit/phpunit": "^4.8.35"
  2305. },
  2306. "bin": [
  2307. "bin/validate-json"
  2308. ],
  2309. "type": "library",
  2310. "extra": {
  2311. "branch-alias": {
  2312. "dev-master": "5.0.x-dev"
  2313. }
  2314. },
  2315. "autoload": {
  2316. "psr-4": {
  2317. "JsonSchema\\": "src/JsonSchema/"
  2318. }
  2319. },
  2320. "notification-url": "https://packagist.org/downloads/",
  2321. "license": [
  2322. "MIT"
  2323. ],
  2324. "authors": [
  2325. {
  2326. "name": "Bruno Prieto Reis",
  2327. "email": "bruno.p.reis@gmail.com"
  2328. },
  2329. {
  2330. "name": "Justin Rainbow",
  2331. "email": "justin.rainbow@gmail.com"
  2332. },
  2333. {
  2334. "name": "Igor Wiedler",
  2335. "email": "igor@wiedler.ch"
  2336. },
  2337. {
  2338. "name": "Robert Schönthal",
  2339. "email": "seroscho@googlemail.com"
  2340. }
  2341. ],
  2342. "description": "A library to validate a json schema.",
  2343. "homepage": "https://github.com/justinrainbow/json-schema",
  2344. "keywords": [
  2345. "json",
  2346. "schema"
  2347. ],
  2348. "support": {
  2349. "issues": "https://github.com/justinrainbow/json-schema/issues",
  2350. "source": "https://github.com/justinrainbow/json-schema/tree/5.2.12"
  2351. },
  2352. "time": "2022-04-13T08:02:27+00:00"
  2353. },
  2354. {
  2355. "name": "khanamiryan/qrcode-detector-decoder",
  2356. "version": "1.0.5.2",
  2357. "source": {
  2358. "type": "git",
  2359. "url": "https://github.com/khanamiryan/php-qrcode-detector-decoder.git",
  2360. "reference": "04fdd58d86a387065f707dc6d3cc304c719910c1"
  2361. },
  2362. "dist": {
  2363. "type": "zip",
  2364. "url": "https://api.github.com/repos/khanamiryan/php-qrcode-detector-decoder/zipball/04fdd58d86a387065f707dc6d3cc304c719910c1",
  2365. "reference": "04fdd58d86a387065f707dc6d3cc304c719910c1",
  2366. "shasum": "",
  2367. "mirrors": [
  2368. {
  2369. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2370. "preferred": true
  2371. }
  2372. ]
  2373. },
  2374. "require": {
  2375. "php": ">=5.6"
  2376. },
  2377. "require-dev": {
  2378. "phpunit/phpunit": "^5.7 | ^7.5 | ^8.0 | ^9.0"
  2379. },
  2380. "type": "library",
  2381. "autoload": {
  2382. "files": [
  2383. "lib/Common/customFunctions.php"
  2384. ],
  2385. "psr-4": {
  2386. "Zxing\\": "lib/"
  2387. }
  2388. },
  2389. "notification-url": "https://packagist.org/downloads/",
  2390. "license": [
  2391. "MIT",
  2392. "Apache-2.0"
  2393. ],
  2394. "authors": [
  2395. {
  2396. "name": "Ashot Khanamiryan",
  2397. "email": "a.khanamiryan@gmail.com",
  2398. "homepage": "https://github.com/khanamiryan",
  2399. "role": "Developer"
  2400. }
  2401. ],
  2402. "description": "QR code decoder / reader",
  2403. "homepage": "https://github.com/khanamiryan/php-qrcode-detector-decoder/",
  2404. "keywords": [
  2405. "barcode",
  2406. "qr",
  2407. "zxing"
  2408. ],
  2409. "support": {
  2410. "issues": "https://github.com/khanamiryan/php-qrcode-detector-decoder/issues",
  2411. "source": "https://github.com/khanamiryan/php-qrcode-detector-decoder/tree/1.0.5.2"
  2412. },
  2413. "time": "2021-07-13T18:46:38+00:00"
  2414. },
  2415. {
  2416. "name": "laravel/framework",
  2417. "version": "v6.20.44",
  2418. "source": {
  2419. "type": "git",
  2420. "url": "https://github.com/laravel/framework.git",
  2421. "reference": "505ebcdeaa9ca56d6d7dbf38ed4f53998c973ed0"
  2422. },
  2423. "dist": {
  2424. "type": "zip",
  2425. "url": "https://api.github.com/repos/laravel/framework/zipball/505ebcdeaa9ca56d6d7dbf38ed4f53998c973ed0",
  2426. "reference": "505ebcdeaa9ca56d6d7dbf38ed4f53998c973ed0",
  2427. "shasum": "",
  2428. "mirrors": [
  2429. {
  2430. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2431. "preferred": true
  2432. }
  2433. ]
  2434. },
  2435. "require": {
  2436. "doctrine/inflector": "^1.4|^2.0",
  2437. "dragonmantank/cron-expression": "^2.3.1",
  2438. "egulias/email-validator": "^2.1.10",
  2439. "ext-json": "*",
  2440. "ext-mbstring": "*",
  2441. "ext-openssl": "*",
  2442. "league/commonmark": "^1.3",
  2443. "league/flysystem": "^1.1",
  2444. "monolog/monolog": "^1.12|^2.0",
  2445. "nesbot/carbon": "^2.31",
  2446. "opis/closure": "^3.6",
  2447. "php": "^7.2.5|^8.0",
  2448. "psr/container": "^1.0",
  2449. "psr/simple-cache": "^1.0",
  2450. "ramsey/uuid": "^3.7",
  2451. "swiftmailer/swiftmailer": "^6.0",
  2452. "symfony/console": "^4.3.4",
  2453. "symfony/debug": "^4.3.4",
  2454. "symfony/finder": "^4.3.4",
  2455. "symfony/http-foundation": "^4.3.4",
  2456. "symfony/http-kernel": "^4.3.4",
  2457. "symfony/polyfill-php73": "^1.17",
  2458. "symfony/process": "^4.3.4",
  2459. "symfony/routing": "^4.3.4",
  2460. "symfony/var-dumper": "^4.3.4",
  2461. "tijsverkoyen/css-to-inline-styles": "^2.2.1",
  2462. "vlucas/phpdotenv": "^3.3"
  2463. },
  2464. "conflict": {
  2465. "tightenco/collect": "<5.5.33"
  2466. },
  2467. "replace": {
  2468. "illuminate/auth": "self.version",
  2469. "illuminate/broadcasting": "self.version",
  2470. "illuminate/bus": "self.version",
  2471. "illuminate/cache": "self.version",
  2472. "illuminate/config": "self.version",
  2473. "illuminate/console": "self.version",
  2474. "illuminate/container": "self.version",
  2475. "illuminate/contracts": "self.version",
  2476. "illuminate/cookie": "self.version",
  2477. "illuminate/database": "self.version",
  2478. "illuminate/encryption": "self.version",
  2479. "illuminate/events": "self.version",
  2480. "illuminate/filesystem": "self.version",
  2481. "illuminate/hashing": "self.version",
  2482. "illuminate/http": "self.version",
  2483. "illuminate/log": "self.version",
  2484. "illuminate/mail": "self.version",
  2485. "illuminate/notifications": "self.version",
  2486. "illuminate/pagination": "self.version",
  2487. "illuminate/pipeline": "self.version",
  2488. "illuminate/queue": "self.version",
  2489. "illuminate/redis": "self.version",
  2490. "illuminate/routing": "self.version",
  2491. "illuminate/session": "self.version",
  2492. "illuminate/support": "self.version",
  2493. "illuminate/translation": "self.version",
  2494. "illuminate/validation": "self.version",
  2495. "illuminate/view": "self.version"
  2496. },
  2497. "require-dev": {
  2498. "aws/aws-sdk-php": "^3.155",
  2499. "doctrine/dbal": "^2.6",
  2500. "filp/whoops": "^2.8",
  2501. "guzzlehttp/guzzle": "^6.3.1|^7.0.1",
  2502. "league/flysystem-cached-adapter": "^1.0",
  2503. "mockery/mockery": "~1.3.3|^1.4.2",
  2504. "moontoast/math": "^1.1",
  2505. "orchestra/testbench-core": "^4.8",
  2506. "pda/pheanstalk": "^4.0",
  2507. "phpunit/phpunit": "^7.5.15|^8.4|^9.3.3",
  2508. "predis/predis": "^1.1.1",
  2509. "symfony/cache": "^4.3.4"
  2510. },
  2511. "suggest": {
  2512. "aws/aws-sdk-php": "Required to use the SQS queue driver, DynamoDb failed job storage and SES mail driver (^3.155).",
  2513. "doctrine/dbal": "Required to rename columns and drop SQLite columns (^2.6).",
  2514. "ext-ftp": "Required to use the Flysystem FTP driver.",
  2515. "ext-gd": "Required to use Illuminate\\Http\\Testing\\FileFactory::image().",
  2516. "ext-memcached": "Required to use the memcache cache driver.",
  2517. "ext-pcntl": "Required to use all features of the queue worker.",
  2518. "ext-posix": "Required to use all features of the queue worker.",
  2519. "ext-redis": "Required to use the Redis cache and queue drivers (^4.0|^5.0).",
  2520. "fakerphp/faker": "Required to use the eloquent factory builder (^1.9.1).",
  2521. "filp/whoops": "Required for friendly error pages in development (^2.8).",
  2522. "guzzlehttp/guzzle": "Required to use the Mailgun mail driver and the ping methods on schedules (^6.3.1|^7.0.1).",
  2523. "laravel/tinker": "Required to use the tinker console command (^2.0).",
  2524. "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (^1.0).",
  2525. "league/flysystem-cached-adapter": "Required to use the Flysystem cache (^1.0).",
  2526. "league/flysystem-sftp": "Required to use the Flysystem SFTP driver (^1.0).",
  2527. "moontoast/math": "Required to use ordered UUIDs (^1.1).",
  2528. "nyholm/psr7": "Required to use PSR-7 bridging features (^1.2).",
  2529. "pda/pheanstalk": "Required to use the beanstalk queue driver (^4.0).",
  2530. "predis/predis": "Required to use the predis connector (^1.1.2).",
  2531. "psr/http-message": "Required to allow Storage::put to accept a StreamInterface (^1.0).",
  2532. "pusher/pusher-php-server": "Required to use the Pusher broadcast driver (^4.0).",
  2533. "symfony/cache": "Required to PSR-6 cache bridge (^4.3.4).",
  2534. "symfony/psr-http-message-bridge": "Required to use PSR-7 bridging features (^1.2).",
  2535. "wildbit/swiftmailer-postmark": "Required to use Postmark mail driver (^3.0)."
  2536. },
  2537. "type": "library",
  2538. "extra": {
  2539. "branch-alias": {
  2540. "dev-master": "6.x-dev"
  2541. }
  2542. },
  2543. "autoload": {
  2544. "files": [
  2545. "src/Illuminate/Foundation/helpers.php",
  2546. "src/Illuminate/Support/helpers.php"
  2547. ],
  2548. "psr-4": {
  2549. "Illuminate\\": "src/Illuminate/"
  2550. }
  2551. },
  2552. "notification-url": "https://packagist.org/downloads/",
  2553. "license": [
  2554. "MIT"
  2555. ],
  2556. "authors": [
  2557. {
  2558. "name": "Taylor Otwell",
  2559. "email": "taylor@laravel.com"
  2560. }
  2561. ],
  2562. "description": "The Laravel Framework.",
  2563. "homepage": "https://laravel.com",
  2564. "keywords": [
  2565. "framework",
  2566. "laravel"
  2567. ],
  2568. "support": {
  2569. "issues": "https://github.com/laravel/framework/issues",
  2570. "source": "https://github.com/laravel/framework"
  2571. },
  2572. "time": "2022-01-12T16:12:12+00:00"
  2573. },
  2574. {
  2575. "name": "laravel/tinker",
  2576. "version": "v2.7.2",
  2577. "source": {
  2578. "type": "git",
  2579. "url": "https://github.com/laravel/tinker.git",
  2580. "reference": "dff39b661e827dae6e092412f976658df82dbac5"
  2581. },
  2582. "dist": {
  2583. "type": "zip",
  2584. "url": "https://api.github.com/repos/laravel/tinker/zipball/dff39b661e827dae6e092412f976658df82dbac5",
  2585. "reference": "dff39b661e827dae6e092412f976658df82dbac5",
  2586. "shasum": "",
  2587. "mirrors": [
  2588. {
  2589. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2590. "preferred": true
  2591. }
  2592. ]
  2593. },
  2594. "require": {
  2595. "illuminate/console": "^6.0|^7.0|^8.0|^9.0",
  2596. "illuminate/contracts": "^6.0|^7.0|^8.0|^9.0",
  2597. "illuminate/support": "^6.0|^7.0|^8.0|^9.0",
  2598. "php": "^7.2.5|^8.0",
  2599. "psy/psysh": "^0.10.4|^0.11.1",
  2600. "symfony/var-dumper": "^4.3.4|^5.0|^6.0"
  2601. },
  2602. "require-dev": {
  2603. "mockery/mockery": "~1.3.3|^1.4.2",
  2604. "phpunit/phpunit": "^8.5.8|^9.3.3"
  2605. },
  2606. "suggest": {
  2607. "illuminate/database": "The Illuminate Database package (^6.0|^7.0|^8.0|^9.0)."
  2608. },
  2609. "type": "library",
  2610. "extra": {
  2611. "branch-alias": {
  2612. "dev-master": "2.x-dev"
  2613. },
  2614. "laravel": {
  2615. "providers": [
  2616. "Laravel\\Tinker\\TinkerServiceProvider"
  2617. ]
  2618. }
  2619. },
  2620. "autoload": {
  2621. "psr-4": {
  2622. "Laravel\\Tinker\\": "src/"
  2623. }
  2624. },
  2625. "notification-url": "https://packagist.org/downloads/",
  2626. "license": [
  2627. "MIT"
  2628. ],
  2629. "authors": [
  2630. {
  2631. "name": "Taylor Otwell",
  2632. "email": "taylor@laravel.com"
  2633. }
  2634. ],
  2635. "description": "Powerful REPL for the Laravel framework.",
  2636. "keywords": [
  2637. "REPL",
  2638. "Tinker",
  2639. "laravel",
  2640. "psysh"
  2641. ],
  2642. "support": {
  2643. "issues": "https://github.com/laravel/tinker/issues",
  2644. "source": "https://github.com/laravel/tinker/tree/v2.7.2"
  2645. },
  2646. "time": "2022-03-23T12:38:24+00:00"
  2647. },
  2648. {
  2649. "name": "lcobucci/jwt",
  2650. "version": "3.3.3",
  2651. "source": {
  2652. "type": "git",
  2653. "url": "https://github.com/lcobucci/jwt.git",
  2654. "reference": "c1123697f6a2ec29162b82f170dd4a491f524773"
  2655. },
  2656. "dist": {
  2657. "type": "zip",
  2658. "url": "https://api.github.com/repos/lcobucci/jwt/zipball/c1123697f6a2ec29162b82f170dd4a491f524773",
  2659. "reference": "c1123697f6a2ec29162b82f170dd4a491f524773",
  2660. "shasum": "",
  2661. "mirrors": [
  2662. {
  2663. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2664. "preferred": true
  2665. }
  2666. ]
  2667. },
  2668. "require": {
  2669. "ext-mbstring": "*",
  2670. "ext-openssl": "*",
  2671. "php": "^5.6 || ^7.0"
  2672. },
  2673. "require-dev": {
  2674. "mikey179/vfsstream": "~1.5",
  2675. "phpmd/phpmd": "~2.2",
  2676. "phpunit/php-invoker": "~1.1",
  2677. "phpunit/phpunit": "^5.7 || ^7.3",
  2678. "squizlabs/php_codesniffer": "~2.3"
  2679. },
  2680. "type": "library",
  2681. "extra": {
  2682. "branch-alias": {
  2683. "dev-master": "3.1-dev"
  2684. }
  2685. },
  2686. "autoload": {
  2687. "psr-4": {
  2688. "Lcobucci\\JWT\\": "src"
  2689. }
  2690. },
  2691. "notification-url": "https://packagist.org/downloads/",
  2692. "license": [
  2693. "BSD-3-Clause"
  2694. ],
  2695. "authors": [
  2696. {
  2697. "name": "Luís Otávio Cobucci Oblonczyk",
  2698. "email": "lcobucci@gmail.com",
  2699. "role": "Developer"
  2700. }
  2701. ],
  2702. "description": "A simple library to work with JSON Web Token and JSON Web Signature",
  2703. "keywords": [
  2704. "JWS",
  2705. "jwt"
  2706. ],
  2707. "support": {
  2708. "issues": "https://github.com/lcobucci/jwt/issues",
  2709. "source": "https://github.com/lcobucci/jwt/tree/3.3.3"
  2710. },
  2711. "funding": [
  2712. {
  2713. "url": "https://github.com/lcobucci",
  2714. "type": "github"
  2715. },
  2716. {
  2717. "url": "https://www.patreon.com/lcobucci",
  2718. "type": "patreon"
  2719. }
  2720. ],
  2721. "time": "2020-08-20T13:22:28+00:00"
  2722. },
  2723. {
  2724. "name": "league/commonmark",
  2725. "version": "1.6.7",
  2726. "source": {
  2727. "type": "git",
  2728. "url": "https://github.com/thephpleague/commonmark.git",
  2729. "reference": "2b8185c13bc9578367a5bf901881d1c1b5bbd09b"
  2730. },
  2731. "dist": {
  2732. "type": "zip",
  2733. "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/2b8185c13bc9578367a5bf901881d1c1b5bbd09b",
  2734. "reference": "2b8185c13bc9578367a5bf901881d1c1b5bbd09b",
  2735. "shasum": "",
  2736. "mirrors": [
  2737. {
  2738. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2739. "preferred": true
  2740. }
  2741. ]
  2742. },
  2743. "require": {
  2744. "ext-mbstring": "*",
  2745. "php": "^7.1 || ^8.0"
  2746. },
  2747. "conflict": {
  2748. "scrutinizer/ocular": "1.7.*"
  2749. },
  2750. "require-dev": {
  2751. "cebe/markdown": "~1.0",
  2752. "commonmark/commonmark.js": "0.29.2",
  2753. "erusev/parsedown": "~1.0",
  2754. "ext-json": "*",
  2755. "github/gfm": "0.29.0",
  2756. "michelf/php-markdown": "~1.4",
  2757. "mikehaertl/php-shellcommand": "^1.4",
  2758. "phpstan/phpstan": "^0.12.90",
  2759. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.2",
  2760. "scrutinizer/ocular": "^1.5",
  2761. "symfony/finder": "^4.2"
  2762. },
  2763. "bin": [
  2764. "bin/commonmark"
  2765. ],
  2766. "type": "library",
  2767. "autoload": {
  2768. "psr-4": {
  2769. "League\\CommonMark\\": "src"
  2770. }
  2771. },
  2772. "notification-url": "https://packagist.org/downloads/",
  2773. "license": [
  2774. "BSD-3-Clause"
  2775. ],
  2776. "authors": [
  2777. {
  2778. "name": "Colin O'Dell",
  2779. "email": "colinodell@gmail.com",
  2780. "homepage": "https://www.colinodell.com",
  2781. "role": "Lead Developer"
  2782. }
  2783. ],
  2784. "description": "Highly-extensible PHP Markdown parser which fully supports the CommonMark spec and Github-Flavored Markdown (GFM)",
  2785. "homepage": "https://commonmark.thephpleague.com",
  2786. "keywords": [
  2787. "commonmark",
  2788. "flavored",
  2789. "gfm",
  2790. "github",
  2791. "github-flavored",
  2792. "markdown",
  2793. "md",
  2794. "parser"
  2795. ],
  2796. "support": {
  2797. "docs": "https://commonmark.thephpleague.com/",
  2798. "issues": "https://github.com/thephpleague/commonmark/issues",
  2799. "rss": "https://github.com/thephpleague/commonmark/releases.atom",
  2800. "source": "https://github.com/thephpleague/commonmark"
  2801. },
  2802. "funding": [
  2803. {
  2804. "url": "https://www.colinodell.com/sponsor",
  2805. "type": "custom"
  2806. },
  2807. {
  2808. "url": "https://www.paypal.me/colinpodell/10.00",
  2809. "type": "custom"
  2810. },
  2811. {
  2812. "url": "https://github.com/colinodell",
  2813. "type": "github"
  2814. },
  2815. {
  2816. "url": "https://tidelift.com/funding/github/packagist/league/commonmark",
  2817. "type": "tidelift"
  2818. }
  2819. ],
  2820. "time": "2022-01-13T17:18:13+00:00"
  2821. },
  2822. {
  2823. "name": "league/flysystem",
  2824. "version": "1.1.9",
  2825. "source": {
  2826. "type": "git",
  2827. "url": "https://github.com/thephpleague/flysystem.git",
  2828. "reference": "094defdb4a7001845300334e7c1ee2335925ef99"
  2829. },
  2830. "dist": {
  2831. "type": "zip",
  2832. "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/094defdb4a7001845300334e7c1ee2335925ef99",
  2833. "reference": "094defdb4a7001845300334e7c1ee2335925ef99",
  2834. "shasum": "",
  2835. "mirrors": [
  2836. {
  2837. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2838. "preferred": true
  2839. }
  2840. ]
  2841. },
  2842. "require": {
  2843. "ext-fileinfo": "*",
  2844. "league/mime-type-detection": "^1.3",
  2845. "php": "^7.2.5 || ^8.0"
  2846. },
  2847. "conflict": {
  2848. "league/flysystem-sftp": "<1.0.6"
  2849. },
  2850. "require-dev": {
  2851. "phpspec/prophecy": "^1.11.1",
  2852. "phpunit/phpunit": "^8.5.8"
  2853. },
  2854. "suggest": {
  2855. "ext-ftp": "Allows you to use FTP server storage",
  2856. "ext-openssl": "Allows you to use FTPS server storage",
  2857. "league/flysystem-aws-s3-v2": "Allows you to use S3 storage with AWS SDK v2",
  2858. "league/flysystem-aws-s3-v3": "Allows you to use S3 storage with AWS SDK v3",
  2859. "league/flysystem-azure": "Allows you to use Windows Azure Blob storage",
  2860. "league/flysystem-cached-adapter": "Flysystem adapter decorator for metadata caching",
  2861. "league/flysystem-eventable-filesystem": "Allows you to use EventableFilesystem",
  2862. "league/flysystem-rackspace": "Allows you to use Rackspace Cloud Files",
  2863. "league/flysystem-sftp": "Allows you to use SFTP server storage via phpseclib",
  2864. "league/flysystem-webdav": "Allows you to use WebDAV storage",
  2865. "league/flysystem-ziparchive": "Allows you to use ZipArchive adapter",
  2866. "spatie/flysystem-dropbox": "Allows you to use Dropbox storage",
  2867. "srmklive/flysystem-dropbox-v2": "Allows you to use Dropbox storage for PHP 5 applications"
  2868. },
  2869. "type": "library",
  2870. "extra": {
  2871. "branch-alias": {
  2872. "dev-master": "1.1-dev"
  2873. }
  2874. },
  2875. "autoload": {
  2876. "psr-4": {
  2877. "League\\Flysystem\\": "src/"
  2878. }
  2879. },
  2880. "notification-url": "https://packagist.org/downloads/",
  2881. "license": [
  2882. "MIT"
  2883. ],
  2884. "authors": [
  2885. {
  2886. "name": "Frank de Jonge",
  2887. "email": "info@frenky.net"
  2888. }
  2889. ],
  2890. "description": "Filesystem abstraction: Many filesystems, one API.",
  2891. "keywords": [
  2892. "Cloud Files",
  2893. "WebDAV",
  2894. "abstraction",
  2895. "aws",
  2896. "cloud",
  2897. "copy.com",
  2898. "dropbox",
  2899. "file systems",
  2900. "files",
  2901. "filesystem",
  2902. "filesystems",
  2903. "ftp",
  2904. "rackspace",
  2905. "remote",
  2906. "s3",
  2907. "sftp",
  2908. "storage"
  2909. ],
  2910. "support": {
  2911. "issues": "https://github.com/thephpleague/flysystem/issues",
  2912. "source": "https://github.com/thephpleague/flysystem/tree/1.1.9"
  2913. },
  2914. "funding": [
  2915. {
  2916. "url": "https://offset.earth/frankdejonge",
  2917. "type": "other"
  2918. }
  2919. ],
  2920. "time": "2021-12-09T09:40:50+00:00"
  2921. },
  2922. {
  2923. "name": "league/fractal",
  2924. "version": "0.17.0",
  2925. "source": {
  2926. "type": "git",
  2927. "url": "https://github.com/thephpleague/fractal.git",
  2928. "reference": "a0b350824f22fc2fdde2500ce9d6851a3f275b0e"
  2929. },
  2930. "dist": {
  2931. "type": "zip",
  2932. "url": "https://api.github.com/repos/thephpleague/fractal/zipball/a0b350824f22fc2fdde2500ce9d6851a3f275b0e",
  2933. "reference": "a0b350824f22fc2fdde2500ce9d6851a3f275b0e",
  2934. "shasum": "",
  2935. "mirrors": [
  2936. {
  2937. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2938. "preferred": true
  2939. }
  2940. ]
  2941. },
  2942. "require": {
  2943. "php": ">=5.4"
  2944. },
  2945. "require-dev": {
  2946. "doctrine/orm": "^2.5",
  2947. "illuminate/contracts": "~5.0",
  2948. "mockery/mockery": "~0.9",
  2949. "pagerfanta/pagerfanta": "~1.0.0",
  2950. "phpunit/phpunit": "~4.0",
  2951. "squizlabs/php_codesniffer": "~1.5",
  2952. "zendframework/zend-paginator": "~2.3"
  2953. },
  2954. "suggest": {
  2955. "illuminate/pagination": "The Illuminate Pagination component.",
  2956. "pagerfanta/pagerfanta": "Pagerfanta Paginator",
  2957. "zendframework/zend-paginator": "Zend Framework Paginator"
  2958. },
  2959. "type": "library",
  2960. "extra": {
  2961. "branch-alias": {
  2962. "dev-master": "0.13-dev"
  2963. }
  2964. },
  2965. "autoload": {
  2966. "psr-4": {
  2967. "League\\Fractal\\": "src"
  2968. }
  2969. },
  2970. "notification-url": "https://packagist.org/downloads/",
  2971. "license": [
  2972. "MIT"
  2973. ],
  2974. "authors": [
  2975. {
  2976. "name": "Phil Sturgeon",
  2977. "email": "me@philsturgeon.uk",
  2978. "homepage": "http://philsturgeon.uk/",
  2979. "role": "Developer"
  2980. }
  2981. ],
  2982. "description": "Handle the output of complex data structures ready for API output.",
  2983. "homepage": "http://fractal.thephpleague.com/",
  2984. "keywords": [
  2985. "api",
  2986. "json",
  2987. "league",
  2988. "rest"
  2989. ],
  2990. "support": {
  2991. "issues": "https://github.com/thephpleague/fractal/issues",
  2992. "source": "https://github.com/thephpleague/fractal/tree/master"
  2993. },
  2994. "time": "2017-06-12T11:04:56+00:00"
  2995. },
  2996. {
  2997. "name": "league/mime-type-detection",
  2998. "version": "1.11.0",
  2999. "source": {
  3000. "type": "git",
  3001. "url": "https://github.com/thephpleague/mime-type-detection.git",
  3002. "reference": "ff6248ea87a9f116e78edd6002e39e5128a0d4dd"
  3003. },
  3004. "dist": {
  3005. "type": "zip",
  3006. "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/ff6248ea87a9f116e78edd6002e39e5128a0d4dd",
  3007. "reference": "ff6248ea87a9f116e78edd6002e39e5128a0d4dd",
  3008. "shasum": "",
  3009. "mirrors": [
  3010. {
  3011. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3012. "preferred": true
  3013. }
  3014. ]
  3015. },
  3016. "require": {
  3017. "ext-fileinfo": "*",
  3018. "php": "^7.2 || ^8.0"
  3019. },
  3020. "require-dev": {
  3021. "friendsofphp/php-cs-fixer": "^3.2",
  3022. "phpstan/phpstan": "^0.12.68",
  3023. "phpunit/phpunit": "^8.5.8 || ^9.3"
  3024. },
  3025. "type": "library",
  3026. "autoload": {
  3027. "psr-4": {
  3028. "League\\MimeTypeDetection\\": "src"
  3029. }
  3030. },
  3031. "notification-url": "https://packagist.org/downloads/",
  3032. "license": [
  3033. "MIT"
  3034. ],
  3035. "authors": [
  3036. {
  3037. "name": "Frank de Jonge",
  3038. "email": "info@frankdejonge.nl"
  3039. }
  3040. ],
  3041. "description": "Mime-type detection for Flysystem",
  3042. "support": {
  3043. "issues": "https://github.com/thephpleague/mime-type-detection/issues",
  3044. "source": "https://github.com/thephpleague/mime-type-detection/tree/1.11.0"
  3045. },
  3046. "funding": [
  3047. {
  3048. "url": "https://github.com/frankdejonge",
  3049. "type": "github"
  3050. },
  3051. {
  3052. "url": "https://tidelift.com/funding/github/packagist/league/flysystem",
  3053. "type": "tidelift"
  3054. }
  3055. ],
  3056. "time": "2022-04-17T13:12:02+00:00"
  3057. },
  3058. {
  3059. "name": "monolog/monolog",
  3060. "version": "2.7.0",
  3061. "source": {
  3062. "type": "git",
  3063. "url": "https://github.com/Seldaek/monolog.git",
  3064. "reference": "5579edf28aee1190a798bfa5be8bc16c563bd524"
  3065. },
  3066. "dist": {
  3067. "type": "zip",
  3068. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/5579edf28aee1190a798bfa5be8bc16c563bd524",
  3069. "reference": "5579edf28aee1190a798bfa5be8bc16c563bd524",
  3070. "shasum": "",
  3071. "mirrors": [
  3072. {
  3073. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3074. "preferred": true
  3075. }
  3076. ]
  3077. },
  3078. "require": {
  3079. "php": ">=7.2",
  3080. "psr/log": "^1.0.1 || ^2.0 || ^3.0"
  3081. },
  3082. "provide": {
  3083. "psr/log-implementation": "1.0.0 || 2.0.0 || 3.0.0"
  3084. },
  3085. "require-dev": {
  3086. "aws/aws-sdk-php": "^2.4.9 || ^3.0",
  3087. "doctrine/couchdb": "~1.0@dev",
  3088. "elasticsearch/elasticsearch": "^7 || ^8",
  3089. "ext-json": "*",
  3090. "graylog2/gelf-php": "^1.4.2",
  3091. "guzzlehttp/guzzle": "^7.4",
  3092. "guzzlehttp/psr7": "^2.2",
  3093. "mongodb/mongodb": "^1.8",
  3094. "php-amqplib/php-amqplib": "~2.4 || ^3",
  3095. "php-console/php-console": "^3.1.3",
  3096. "phpspec/prophecy": "^1.15",
  3097. "phpstan/phpstan": "^0.12.91",
  3098. "phpunit/phpunit": "^8.5.14",
  3099. "predis/predis": "^1.1",
  3100. "rollbar/rollbar": "^1.3 || ^2 || ^3",
  3101. "ruflin/elastica": "^7",
  3102. "swiftmailer/swiftmailer": "^5.3|^6.0",
  3103. "symfony/mailer": "^5.4 || ^6",
  3104. "symfony/mime": "^5.4 || ^6"
  3105. },
  3106. "suggest": {
  3107. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  3108. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  3109. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  3110. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  3111. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  3112. "ext-mbstring": "Allow to work properly with unicode symbols",
  3113. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  3114. "ext-openssl": "Required to send log messages using SSL",
  3115. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  3116. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  3117. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  3118. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  3119. "php-console/php-console": "Allow sending log messages to Google Chrome",
  3120. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  3121. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  3122. },
  3123. "type": "library",
  3124. "extra": {
  3125. "branch-alias": {
  3126. "dev-main": "2.x-dev"
  3127. }
  3128. },
  3129. "autoload": {
  3130. "psr-4": {
  3131. "Monolog\\": "src/Monolog"
  3132. }
  3133. },
  3134. "notification-url": "https://packagist.org/downloads/",
  3135. "license": [
  3136. "MIT"
  3137. ],
  3138. "authors": [
  3139. {
  3140. "name": "Jordi Boggiano",
  3141. "email": "j.boggiano@seld.be",
  3142. "homepage": "https://seld.be"
  3143. }
  3144. ],
  3145. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  3146. "homepage": "https://github.com/Seldaek/monolog",
  3147. "keywords": [
  3148. "log",
  3149. "logging",
  3150. "psr-3"
  3151. ],
  3152. "support": {
  3153. "issues": "https://github.com/Seldaek/monolog/issues",
  3154. "source": "https://github.com/Seldaek/monolog/tree/2.7.0"
  3155. },
  3156. "funding": [
  3157. {
  3158. "url": "https://github.com/Seldaek",
  3159. "type": "github"
  3160. },
  3161. {
  3162. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  3163. "type": "tidelift"
  3164. }
  3165. ],
  3166. "time": "2022-06-09T08:59:12+00:00"
  3167. },
  3168. {
  3169. "name": "namshi/jose",
  3170. "version": "7.2.3",
  3171. "source": {
  3172. "type": "git",
  3173. "url": "https://github.com/namshi/jose.git",
  3174. "reference": "89a24d7eb3040e285dd5925fcad992378b82bcff"
  3175. },
  3176. "dist": {
  3177. "type": "zip",
  3178. "url": "https://api.github.com/repos/namshi/jose/zipball/89a24d7eb3040e285dd5925fcad992378b82bcff",
  3179. "reference": "89a24d7eb3040e285dd5925fcad992378b82bcff",
  3180. "shasum": "",
  3181. "mirrors": [
  3182. {
  3183. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3184. "preferred": true
  3185. }
  3186. ]
  3187. },
  3188. "require": {
  3189. "ext-date": "*",
  3190. "ext-hash": "*",
  3191. "ext-json": "*",
  3192. "ext-pcre": "*",
  3193. "ext-spl": "*",
  3194. "php": ">=5.5",
  3195. "symfony/polyfill-php56": "^1.0"
  3196. },
  3197. "require-dev": {
  3198. "phpseclib/phpseclib": "^2.0",
  3199. "phpunit/phpunit": "^4.5|^5.0",
  3200. "satooshi/php-coveralls": "^1.0"
  3201. },
  3202. "suggest": {
  3203. "ext-openssl": "Allows to use OpenSSL as crypto engine.",
  3204. "phpseclib/phpseclib": "Allows to use Phpseclib as crypto engine, use version ^2.0."
  3205. },
  3206. "type": "library",
  3207. "autoload": {
  3208. "psr-4": {
  3209. "Namshi\\JOSE\\": "src/Namshi/JOSE/"
  3210. }
  3211. },
  3212. "notification-url": "https://packagist.org/downloads/",
  3213. "license": [
  3214. "MIT"
  3215. ],
  3216. "authors": [
  3217. {
  3218. "name": "Alessandro Nadalin",
  3219. "email": "alessandro.nadalin@gmail.com"
  3220. },
  3221. {
  3222. "name": "Alessandro Cinelli (cirpo)",
  3223. "email": "alessandro.cinelli@gmail.com"
  3224. }
  3225. ],
  3226. "description": "JSON Object Signing and Encryption library for PHP.",
  3227. "keywords": [
  3228. "JSON Web Signature",
  3229. "JSON Web Token",
  3230. "JWS",
  3231. "json",
  3232. "jwt",
  3233. "token"
  3234. ],
  3235. "support": {
  3236. "issues": "https://github.com/namshi/jose/issues",
  3237. "source": "https://github.com/namshi/jose/tree/master"
  3238. },
  3239. "time": "2016-12-05T07:27:31+00:00"
  3240. },
  3241. {
  3242. "name": "nesbot/carbon",
  3243. "version": "2.58.0",
  3244. "source": {
  3245. "type": "git",
  3246. "url": "https://github.com/briannesbitt/Carbon.git",
  3247. "reference": "97a34af22bde8d0ac20ab34b29d7bfe360902055"
  3248. },
  3249. "dist": {
  3250. "type": "zip",
  3251. "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/97a34af22bde8d0ac20ab34b29d7bfe360902055",
  3252. "reference": "97a34af22bde8d0ac20ab34b29d7bfe360902055",
  3253. "shasum": "",
  3254. "mirrors": [
  3255. {
  3256. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3257. "preferred": true
  3258. }
  3259. ]
  3260. },
  3261. "require": {
  3262. "ext-json": "*",
  3263. "php": "^7.1.8 || ^8.0",
  3264. "symfony/polyfill-mbstring": "^1.0",
  3265. "symfony/polyfill-php80": "^1.16",
  3266. "symfony/translation": "^3.4 || ^4.0 || ^5.0 || ^6.0"
  3267. },
  3268. "require-dev": {
  3269. "doctrine/dbal": "^2.0 || ^3.0",
  3270. "doctrine/orm": "^2.7",
  3271. "friendsofphp/php-cs-fixer": "^3.0",
  3272. "kylekatarnls/multi-tester": "^2.0",
  3273. "phpmd/phpmd": "^2.9",
  3274. "phpstan/extension-installer": "^1.0",
  3275. "phpstan/phpstan": "^0.12.54 || ^1.0",
  3276. "phpunit/php-file-iterator": "^2.0.5",
  3277. "phpunit/phpunit": "^7.5.20 || ^8.5.23",
  3278. "squizlabs/php_codesniffer": "^3.4"
  3279. },
  3280. "bin": [
  3281. "bin/carbon"
  3282. ],
  3283. "type": "library",
  3284. "extra": {
  3285. "branch-alias": {
  3286. "dev-3.x": "3.x-dev",
  3287. "dev-master": "2.x-dev"
  3288. },
  3289. "laravel": {
  3290. "providers": [
  3291. "Carbon\\Laravel\\ServiceProvider"
  3292. ]
  3293. },
  3294. "phpstan": {
  3295. "includes": [
  3296. "extension.neon"
  3297. ]
  3298. }
  3299. },
  3300. "autoload": {
  3301. "psr-4": {
  3302. "Carbon\\": "src/Carbon/"
  3303. }
  3304. },
  3305. "notification-url": "https://packagist.org/downloads/",
  3306. "license": [
  3307. "MIT"
  3308. ],
  3309. "authors": [
  3310. {
  3311. "name": "Brian Nesbitt",
  3312. "email": "brian@nesbot.com",
  3313. "homepage": "https://markido.com"
  3314. },
  3315. {
  3316. "name": "kylekatarnls",
  3317. "homepage": "https://github.com/kylekatarnls"
  3318. }
  3319. ],
  3320. "description": "An API extension for DateTime that supports 281 different languages.",
  3321. "homepage": "https://carbon.nesbot.com",
  3322. "keywords": [
  3323. "date",
  3324. "datetime",
  3325. "time"
  3326. ],
  3327. "support": {
  3328. "docs": "https://carbon.nesbot.com/docs",
  3329. "issues": "https://github.com/briannesbitt/Carbon/issues",
  3330. "source": "https://github.com/briannesbitt/Carbon"
  3331. },
  3332. "funding": [
  3333. {
  3334. "url": "https://opencollective.com/Carbon",
  3335. "type": "open_collective"
  3336. },
  3337. {
  3338. "url": "https://tidelift.com/funding/github/packagist/nesbot/carbon",
  3339. "type": "tidelift"
  3340. }
  3341. ],
  3342. "time": "2022-04-25T19:31:17+00:00"
  3343. },
  3344. {
  3345. "name": "nikic/php-parser",
  3346. "version": "v4.13.2",
  3347. "source": {
  3348. "type": "git",
  3349. "url": "https://github.com/nikic/PHP-Parser.git",
  3350. "reference": "210577fe3cf7badcc5814d99455df46564f3c077"
  3351. },
  3352. "dist": {
  3353. "type": "zip",
  3354. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/210577fe3cf7badcc5814d99455df46564f3c077",
  3355. "reference": "210577fe3cf7badcc5814d99455df46564f3c077",
  3356. "shasum": "",
  3357. "mirrors": [
  3358. {
  3359. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3360. "preferred": true
  3361. }
  3362. ]
  3363. },
  3364. "require": {
  3365. "ext-tokenizer": "*",
  3366. "php": ">=7.0"
  3367. },
  3368. "require-dev": {
  3369. "ircmaxell/php-yacc": "^0.0.7",
  3370. "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0"
  3371. },
  3372. "bin": [
  3373. "bin/php-parse"
  3374. ],
  3375. "type": "library",
  3376. "extra": {
  3377. "branch-alias": {
  3378. "dev-master": "4.9-dev"
  3379. }
  3380. },
  3381. "autoload": {
  3382. "psr-4": {
  3383. "PhpParser\\": "lib/PhpParser"
  3384. }
  3385. },
  3386. "notification-url": "https://packagist.org/downloads/",
  3387. "license": [
  3388. "BSD-3-Clause"
  3389. ],
  3390. "authors": [
  3391. {
  3392. "name": "Nikita Popov"
  3393. }
  3394. ],
  3395. "description": "A PHP parser written in PHP",
  3396. "keywords": [
  3397. "parser",
  3398. "php"
  3399. ],
  3400. "support": {
  3401. "issues": "https://github.com/nikic/PHP-Parser/issues",
  3402. "source": "https://github.com/nikic/PHP-Parser/tree/v4.13.2"
  3403. },
  3404. "time": "2021-11-30T19:35:32+00:00"
  3405. },
  3406. {
  3407. "name": "opis/closure",
  3408. "version": "3.6.3",
  3409. "source": {
  3410. "type": "git",
  3411. "url": "https://github.com/opis/closure.git",
  3412. "reference": "3d81e4309d2a927abbe66df935f4bb60082805ad"
  3413. },
  3414. "dist": {
  3415. "type": "zip",
  3416. "url": "https://api.github.com/repos/opis/closure/zipball/3d81e4309d2a927abbe66df935f4bb60082805ad",
  3417. "reference": "3d81e4309d2a927abbe66df935f4bb60082805ad",
  3418. "shasum": "",
  3419. "mirrors": [
  3420. {
  3421. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3422. "preferred": true
  3423. }
  3424. ]
  3425. },
  3426. "require": {
  3427. "php": "^5.4 || ^7.0 || ^8.0"
  3428. },
  3429. "require-dev": {
  3430. "jeremeamia/superclosure": "^2.0",
  3431. "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.0"
  3432. },
  3433. "type": "library",
  3434. "extra": {
  3435. "branch-alias": {
  3436. "dev-master": "3.6.x-dev"
  3437. }
  3438. },
  3439. "autoload": {
  3440. "files": [
  3441. "functions.php"
  3442. ],
  3443. "psr-4": {
  3444. "Opis\\Closure\\": "src/"
  3445. }
  3446. },
  3447. "notification-url": "https://packagist.org/downloads/",
  3448. "license": [
  3449. "MIT"
  3450. ],
  3451. "authors": [
  3452. {
  3453. "name": "Marius Sarca",
  3454. "email": "marius.sarca@gmail.com"
  3455. },
  3456. {
  3457. "name": "Sorin Sarca",
  3458. "email": "sarca_sorin@hotmail.com"
  3459. }
  3460. ],
  3461. "description": "A library that can be used to serialize closures (anonymous functions) and arbitrary objects.",
  3462. "homepage": "https://opis.io/closure",
  3463. "keywords": [
  3464. "anonymous functions",
  3465. "closure",
  3466. "function",
  3467. "serializable",
  3468. "serialization",
  3469. "serialize"
  3470. ],
  3471. "support": {
  3472. "issues": "https://github.com/opis/closure/issues",
  3473. "source": "https://github.com/opis/closure/tree/3.6.3"
  3474. },
  3475. "time": "2022-01-27T09:35:39+00:00"
  3476. },
  3477. {
  3478. "name": "overtrue/easy-sms",
  3479. "version": "2.1.1",
  3480. "source": {
  3481. "type": "git",
  3482. "url": "https://github.com/overtrue/easy-sms.git",
  3483. "reference": "4bbbbef4fa192ed23a60bbafc3217bccb6af824f"
  3484. },
  3485. "dist": {
  3486. "type": "zip",
  3487. "url": "https://api.github.com/repos/overtrue/easy-sms/zipball/4bbbbef4fa192ed23a60bbafc3217bccb6af824f",
  3488. "reference": "4bbbbef4fa192ed23a60bbafc3217bccb6af824f",
  3489. "shasum": "",
  3490. "mirrors": [
  3491. {
  3492. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3493. "preferred": true
  3494. }
  3495. ]
  3496. },
  3497. "require": {
  3498. "ext-json": "*",
  3499. "guzzlehttp/guzzle": "^6.2 || ^7.0",
  3500. "php": ">=5.6"
  3501. },
  3502. "require-dev": {
  3503. "brainmaestro/composer-git-hooks": "^2.8",
  3504. "jetbrains/phpstorm-attributes": "^1.0",
  3505. "mockery/mockery": "~1.3.3 || ^1.4.2",
  3506. "phpunit/phpunit": "^5.7 || ^7.5 || ^8.5.19 || ^9.5.8"
  3507. },
  3508. "type": "library",
  3509. "extra": {
  3510. "hooks": {
  3511. "pre-commit": [
  3512. "composer check-style",
  3513. "composer psalm",
  3514. "composer test"
  3515. ],
  3516. "pre-push": [
  3517. "composer check-style"
  3518. ]
  3519. }
  3520. },
  3521. "autoload": {
  3522. "psr-4": {
  3523. "Overtrue\\EasySms\\": "src"
  3524. }
  3525. },
  3526. "notification-url": "https://packagist.org/downloads/",
  3527. "license": [
  3528. "MIT"
  3529. ],
  3530. "authors": [
  3531. {
  3532. "name": "overtrue",
  3533. "email": "i@overtrue.me"
  3534. }
  3535. ],
  3536. "description": "The easiest way to send short message.",
  3537. "support": {
  3538. "issues": "https://github.com/overtrue/easy-sms/issues",
  3539. "source": "https://github.com/overtrue/easy-sms/tree/2.1.1"
  3540. },
  3541. "funding": [
  3542. {
  3543. "url": "https://github.com/overtrue",
  3544. "type": "github"
  3545. }
  3546. ],
  3547. "time": "2022-03-03T01:00:29+00:00"
  3548. },
  3549. {
  3550. "name": "overtrue/laravel-wechat",
  3551. "version": "5.1.0",
  3552. "source": {
  3553. "type": "git",
  3554. "url": "https://github.com/overtrue/laravel-wechat.git",
  3555. "reference": "1bc59aa52cf6bae2f4f388e9f20f7893305f2fe8"
  3556. },
  3557. "dist": {
  3558. "type": "zip",
  3559. "url": "https://api.github.com/repos/overtrue/laravel-wechat/zipball/1bc59aa52cf6bae2f4f388e9f20f7893305f2fe8",
  3560. "reference": "1bc59aa52cf6bae2f4f388e9f20f7893305f2fe8",
  3561. "shasum": "",
  3562. "mirrors": [
  3563. {
  3564. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3565. "preferred": true
  3566. }
  3567. ]
  3568. },
  3569. "require": {
  3570. "illuminate/container": "^5.1 || ^6.0 || ^7.0 || ^8.0",
  3571. "overtrue/wechat": "^4.0"
  3572. },
  3573. "require-dev": {
  3574. "friendsofphp/php-cs-fixer": "^2.16",
  3575. "laravel/framework": "^8.5"
  3576. },
  3577. "type": "library",
  3578. "extra": {
  3579. "laravel": {
  3580. "providers": [
  3581. "Overtrue\\LaravelWeChat\\ServiceProvider"
  3582. ],
  3583. "aliases": {
  3584. "EasyWeChat": "Overtrue\\LaravelWeChat\\Facade"
  3585. }
  3586. }
  3587. },
  3588. "autoload": {
  3589. "psr-4": {
  3590. "Overtrue\\LaravelWeChat\\": "src/"
  3591. }
  3592. },
  3593. "notification-url": "https://packagist.org/downloads/",
  3594. "license": [
  3595. "MIT"
  3596. ],
  3597. "authors": [
  3598. {
  3599. "name": "overtrue",
  3600. "email": "anzhengchao@gmail.com"
  3601. }
  3602. ],
  3603. "description": "微信 SDK for Laravel",
  3604. "keywords": [
  3605. "laravel",
  3606. "sdk",
  3607. "wechat",
  3608. "weixin"
  3609. ],
  3610. "support": {
  3611. "issues": "https://github.com/overtrue/laravel-wechat/issues",
  3612. "source": "https://github.com/overtrue/laravel-wechat/tree/5.1.0"
  3613. },
  3614. "time": "2020-09-27T08:32:30+00:00"
  3615. },
  3616. {
  3617. "name": "overtrue/socialite",
  3618. "version": "2.0.24",
  3619. "source": {
  3620. "type": "git",
  3621. "url": "https://github.com/overtrue/socialite.git",
  3622. "reference": "ee7e7b000ec7d64f2b8aba1f6a2eec5cdf3f8bec"
  3623. },
  3624. "dist": {
  3625. "type": "zip",
  3626. "url": "https://api.github.com/repos/overtrue/socialite/zipball/ee7e7b000ec7d64f2b8aba1f6a2eec5cdf3f8bec",
  3627. "reference": "ee7e7b000ec7d64f2b8aba1f6a2eec5cdf3f8bec",
  3628. "shasum": "",
  3629. "mirrors": [
  3630. {
  3631. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3632. "preferred": true
  3633. }
  3634. ]
  3635. },
  3636. "require": {
  3637. "ext-json": "*",
  3638. "guzzlehttp/guzzle": "^5.0|^6.0|^7.0",
  3639. "php": ">=5.6",
  3640. "symfony/http-foundation": "^2.7|^3.0|^4.0|^5.0"
  3641. },
  3642. "require-dev": {
  3643. "mockery/mockery": "~1.2",
  3644. "phpunit/phpunit": "^6.0|^7.0|^8.0|^9.0"
  3645. },
  3646. "type": "library",
  3647. "autoload": {
  3648. "psr-4": {
  3649. "Overtrue\\Socialite\\": "src/"
  3650. }
  3651. },
  3652. "notification-url": "https://packagist.org/downloads/",
  3653. "license": [
  3654. "MIT"
  3655. ],
  3656. "authors": [
  3657. {
  3658. "name": "overtrue",
  3659. "email": "anzhengchao@gmail.com"
  3660. }
  3661. ],
  3662. "description": "A collection of OAuth 2 packages that extracts from laravel/socialite.",
  3663. "keywords": [
  3664. "login",
  3665. "oauth",
  3666. "qq",
  3667. "social",
  3668. "wechat",
  3669. "weibo"
  3670. ],
  3671. "support": {
  3672. "issues": "https://github.com/overtrue/socialite/issues",
  3673. "source": "https://github.com/overtrue/socialite/tree/2.0.24"
  3674. },
  3675. "funding": [
  3676. {
  3677. "url": "https://www.patreon.com/overtrue",
  3678. "type": "patreon"
  3679. }
  3680. ],
  3681. "time": "2021-05-13T16:04:48+00:00"
  3682. },
  3683. {
  3684. "name": "overtrue/wechat",
  3685. "version": "4.5.0",
  3686. "source": {
  3687. "type": "git",
  3688. "url": "https://github.com/w7corp/easywechat.git",
  3689. "reference": "04a940f97d6812a67bb8d5f2dbaebf9ad78ae776"
  3690. },
  3691. "dist": {
  3692. "type": "zip",
  3693. "url": "https://api.github.com/repos/w7corp/easywechat/zipball/04a940f97d6812a67bb8d5f2dbaebf9ad78ae776",
  3694. "reference": "04a940f97d6812a67bb8d5f2dbaebf9ad78ae776",
  3695. "shasum": "",
  3696. "mirrors": [
  3697. {
  3698. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3699. "preferred": true
  3700. }
  3701. ]
  3702. },
  3703. "require": {
  3704. "easywechat-composer/easywechat-composer": "^1.1",
  3705. "ext-fileinfo": "*",
  3706. "ext-openssl": "*",
  3707. "ext-simplexml": "*",
  3708. "guzzlehttp/guzzle": "^6.2 || ^7.0",
  3709. "monolog/monolog": "^1.22 || ^2.0",
  3710. "overtrue/socialite": "~2.0",
  3711. "php": ">=7.2",
  3712. "pimple/pimple": "^3.0",
  3713. "psr/simple-cache": "^1.0",
  3714. "symfony/cache": "^3.3 || ^4.3 || ^5.0",
  3715. "symfony/event-dispatcher": "^4.3 || ^5.0",
  3716. "symfony/http-foundation": "^2.7 || ^3.0 || ^4.0 || ^5.0",
  3717. "symfony/psr-http-message-bridge": "^0.3 || ^1.0 || ^2.0"
  3718. },
  3719. "require-dev": {
  3720. "friendsofphp/php-cs-fixer": "^2.15",
  3721. "mikey179/vfsstream": "^1.6",
  3722. "mockery/mockery": "^1.2.3",
  3723. "phpstan/phpstan": "^0.12.0",
  3724. "phpunit/phpunit": "^7.5"
  3725. },
  3726. "type": "library",
  3727. "autoload": {
  3728. "files": [
  3729. "src/Kernel/Support/Helpers.php",
  3730. "src/Kernel/Helpers.php"
  3731. ],
  3732. "psr-4": {
  3733. "EasyWeChat\\": "src/"
  3734. }
  3735. },
  3736. "notification-url": "https://packagist.org/downloads/",
  3737. "license": [
  3738. "MIT"
  3739. ],
  3740. "authors": [
  3741. {
  3742. "name": "overtrue",
  3743. "email": "anzhengchao@gmail.com"
  3744. }
  3745. ],
  3746. "description": "微信SDK",
  3747. "keywords": [
  3748. "easywechat",
  3749. "sdk",
  3750. "wechat",
  3751. "weixin",
  3752. "weixin-sdk"
  3753. ],
  3754. "support": {
  3755. "issues": "https://github.com/w7corp/easywechat/issues",
  3756. "source": "https://github.com/w7corp/easywechat/tree/4.5.0"
  3757. },
  3758. "funding": [
  3759. {
  3760. "url": "https://github.com/overtrue",
  3761. "type": "github"
  3762. }
  3763. ],
  3764. "time": "2021-12-27T13:56:47+00:00"
  3765. },
  3766. {
  3767. "name": "paragonie/random_compat",
  3768. "version": "v9.99.100",
  3769. "source": {
  3770. "type": "git",
  3771. "url": "https://github.com/paragonie/random_compat.git",
  3772. "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a"
  3773. },
  3774. "dist": {
  3775. "type": "zip",
  3776. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/996434e5492cb4c3edcb9168db6fbb1359ef965a",
  3777. "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a",
  3778. "shasum": "",
  3779. "mirrors": [
  3780. {
  3781. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3782. "preferred": true
  3783. }
  3784. ]
  3785. },
  3786. "require": {
  3787. "php": ">= 7"
  3788. },
  3789. "require-dev": {
  3790. "phpunit/phpunit": "4.*|5.*",
  3791. "vimeo/psalm": "^1"
  3792. },
  3793. "suggest": {
  3794. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  3795. },
  3796. "type": "library",
  3797. "notification-url": "https://packagist.org/downloads/",
  3798. "license": [
  3799. "MIT"
  3800. ],
  3801. "authors": [
  3802. {
  3803. "name": "Paragon Initiative Enterprises",
  3804. "email": "security@paragonie.com",
  3805. "homepage": "https://paragonie.com"
  3806. }
  3807. ],
  3808. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  3809. "keywords": [
  3810. "csprng",
  3811. "polyfill",
  3812. "pseudorandom",
  3813. "random"
  3814. ],
  3815. "support": {
  3816. "email": "info@paragonie.com",
  3817. "issues": "https://github.com/paragonie/random_compat/issues",
  3818. "source": "https://github.com/paragonie/random_compat"
  3819. },
  3820. "time": "2020-10-15T08:29:30+00:00"
  3821. },
  3822. {
  3823. "name": "phpdocumentor/reflection-common",
  3824. "version": "2.2.0",
  3825. "source": {
  3826. "type": "git",
  3827. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  3828. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b"
  3829. },
  3830. "dist": {
  3831. "type": "zip",
  3832. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  3833. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  3834. "shasum": "",
  3835. "mirrors": [
  3836. {
  3837. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3838. "preferred": true
  3839. }
  3840. ]
  3841. },
  3842. "require": {
  3843. "php": "^7.2 || ^8.0"
  3844. },
  3845. "type": "library",
  3846. "extra": {
  3847. "branch-alias": {
  3848. "dev-2.x": "2.x-dev"
  3849. }
  3850. },
  3851. "autoload": {
  3852. "psr-4": {
  3853. "phpDocumentor\\Reflection\\": "src/"
  3854. }
  3855. },
  3856. "notification-url": "https://packagist.org/downloads/",
  3857. "license": [
  3858. "MIT"
  3859. ],
  3860. "authors": [
  3861. {
  3862. "name": "Jaap van Otterdijk",
  3863. "email": "opensource@ijaap.nl"
  3864. }
  3865. ],
  3866. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  3867. "homepage": "http://www.phpdoc.org",
  3868. "keywords": [
  3869. "FQSEN",
  3870. "phpDocumentor",
  3871. "phpdoc",
  3872. "reflection",
  3873. "static analysis"
  3874. ],
  3875. "support": {
  3876. "issues": "https://github.com/phpDocumentor/ReflectionCommon/issues",
  3877. "source": "https://github.com/phpDocumentor/ReflectionCommon/tree/2.x"
  3878. },
  3879. "time": "2020-06-27T09:03:43+00:00"
  3880. },
  3881. {
  3882. "name": "phpdocumentor/reflection-docblock",
  3883. "version": "4.3.4",
  3884. "source": {
  3885. "type": "git",
  3886. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  3887. "reference": "da3fd972d6bafd628114f7e7e036f45944b62e9c"
  3888. },
  3889. "dist": {
  3890. "type": "zip",
  3891. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/da3fd972d6bafd628114f7e7e036f45944b62e9c",
  3892. "reference": "da3fd972d6bafd628114f7e7e036f45944b62e9c",
  3893. "shasum": "",
  3894. "mirrors": [
  3895. {
  3896. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3897. "preferred": true
  3898. }
  3899. ]
  3900. },
  3901. "require": {
  3902. "php": "^7.0",
  3903. "phpdocumentor/reflection-common": "^1.0.0 || ^2.0.0",
  3904. "phpdocumentor/type-resolver": "~0.4 || ^1.0.0",
  3905. "webmozart/assert": "^1.0"
  3906. },
  3907. "require-dev": {
  3908. "doctrine/instantiator": "^1.0.5",
  3909. "mockery/mockery": "^1.0",
  3910. "phpdocumentor/type-resolver": "0.4.*",
  3911. "phpunit/phpunit": "^6.4"
  3912. },
  3913. "type": "library",
  3914. "extra": {
  3915. "branch-alias": {
  3916. "dev-master": "4.x-dev"
  3917. }
  3918. },
  3919. "autoload": {
  3920. "psr-4": {
  3921. "phpDocumentor\\Reflection\\": [
  3922. "src/"
  3923. ]
  3924. }
  3925. },
  3926. "notification-url": "https://packagist.org/downloads/",
  3927. "license": [
  3928. "MIT"
  3929. ],
  3930. "authors": [
  3931. {
  3932. "name": "Mike van Riel",
  3933. "email": "me@mikevanriel.com"
  3934. }
  3935. ],
  3936. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  3937. "support": {
  3938. "issues": "https://github.com/phpDocumentor/ReflectionDocBlock/issues",
  3939. "source": "https://github.com/phpDocumentor/ReflectionDocBlock/tree/release/4.x"
  3940. },
  3941. "time": "2019-12-28T18:55:12+00:00"
  3942. },
  3943. {
  3944. "name": "phpdocumentor/type-resolver",
  3945. "version": "1.6.1",
  3946. "source": {
  3947. "type": "git",
  3948. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  3949. "reference": "77a32518733312af16a44300404e945338981de3"
  3950. },
  3951. "dist": {
  3952. "type": "zip",
  3953. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/77a32518733312af16a44300404e945338981de3",
  3954. "reference": "77a32518733312af16a44300404e945338981de3",
  3955. "shasum": "",
  3956. "mirrors": [
  3957. {
  3958. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3959. "preferred": true
  3960. }
  3961. ]
  3962. },
  3963. "require": {
  3964. "php": "^7.2 || ^8.0",
  3965. "phpdocumentor/reflection-common": "^2.0"
  3966. },
  3967. "require-dev": {
  3968. "ext-tokenizer": "*",
  3969. "psalm/phar": "^4.8"
  3970. },
  3971. "type": "library",
  3972. "extra": {
  3973. "branch-alias": {
  3974. "dev-1.x": "1.x-dev"
  3975. }
  3976. },
  3977. "autoload": {
  3978. "psr-4": {
  3979. "phpDocumentor\\Reflection\\": "src"
  3980. }
  3981. },
  3982. "notification-url": "https://packagist.org/downloads/",
  3983. "license": [
  3984. "MIT"
  3985. ],
  3986. "authors": [
  3987. {
  3988. "name": "Mike van Riel",
  3989. "email": "me@mikevanriel.com"
  3990. }
  3991. ],
  3992. "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names",
  3993. "support": {
  3994. "issues": "https://github.com/phpDocumentor/TypeResolver/issues",
  3995. "source": "https://github.com/phpDocumentor/TypeResolver/tree/1.6.1"
  3996. },
  3997. "time": "2022-03-15T21:29:03+00:00"
  3998. },
  3999. {
  4000. "name": "phpoption/phpoption",
  4001. "version": "1.8.1",
  4002. "source": {
  4003. "type": "git",
  4004. "url": "https://github.com/schmittjoh/php-option.git",
  4005. "reference": "eab7a0df01fe2344d172bff4cd6dbd3f8b84ad15"
  4006. },
  4007. "dist": {
  4008. "type": "zip",
  4009. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/eab7a0df01fe2344d172bff4cd6dbd3f8b84ad15",
  4010. "reference": "eab7a0df01fe2344d172bff4cd6dbd3f8b84ad15",
  4011. "shasum": "",
  4012. "mirrors": [
  4013. {
  4014. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4015. "preferred": true
  4016. }
  4017. ]
  4018. },
  4019. "require": {
  4020. "php": "^7.0 || ^8.0"
  4021. },
  4022. "require-dev": {
  4023. "bamarni/composer-bin-plugin": "^1.4.1",
  4024. "phpunit/phpunit": "^6.5.14 || ^7.5.20 || ^8.5.19 || ^9.5.8"
  4025. },
  4026. "type": "library",
  4027. "extra": {
  4028. "branch-alias": {
  4029. "dev-master": "1.8-dev"
  4030. }
  4031. },
  4032. "autoload": {
  4033. "psr-4": {
  4034. "PhpOption\\": "src/PhpOption/"
  4035. }
  4036. },
  4037. "notification-url": "https://packagist.org/downloads/",
  4038. "license": [
  4039. "Apache-2.0"
  4040. ],
  4041. "authors": [
  4042. {
  4043. "name": "Johannes M. Schmitt",
  4044. "email": "schmittjoh@gmail.com",
  4045. "homepage": "https://github.com/schmittjoh"
  4046. },
  4047. {
  4048. "name": "Graham Campbell",
  4049. "email": "hello@gjcampbell.co.uk",
  4050. "homepage": "https://github.com/GrahamCampbell"
  4051. }
  4052. ],
  4053. "description": "Option Type for PHP",
  4054. "keywords": [
  4055. "language",
  4056. "option",
  4057. "php",
  4058. "type"
  4059. ],
  4060. "support": {
  4061. "issues": "https://github.com/schmittjoh/php-option/issues",
  4062. "source": "https://github.com/schmittjoh/php-option/tree/1.8.1"
  4063. },
  4064. "funding": [
  4065. {
  4066. "url": "https://github.com/GrahamCampbell",
  4067. "type": "github"
  4068. },
  4069. {
  4070. "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption",
  4071. "type": "tidelift"
  4072. }
  4073. ],
  4074. "time": "2021-12-04T23:24:31+00:00"
  4075. },
  4076. {
  4077. "name": "pimple/pimple",
  4078. "version": "v3.5.0",
  4079. "source": {
  4080. "type": "git",
  4081. "url": "https://github.com/silexphp/Pimple.git",
  4082. "reference": "a94b3a4db7fb774b3d78dad2315ddc07629e1bed"
  4083. },
  4084. "dist": {
  4085. "type": "zip",
  4086. "url": "https://api.github.com/repos/silexphp/Pimple/zipball/a94b3a4db7fb774b3d78dad2315ddc07629e1bed",
  4087. "reference": "a94b3a4db7fb774b3d78dad2315ddc07629e1bed",
  4088. "shasum": "",
  4089. "mirrors": [
  4090. {
  4091. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4092. "preferred": true
  4093. }
  4094. ]
  4095. },
  4096. "require": {
  4097. "php": ">=7.2.5",
  4098. "psr/container": "^1.1 || ^2.0"
  4099. },
  4100. "require-dev": {
  4101. "symfony/phpunit-bridge": "^5.4@dev"
  4102. },
  4103. "type": "library",
  4104. "extra": {
  4105. "branch-alias": {
  4106. "dev-master": "3.4.x-dev"
  4107. }
  4108. },
  4109. "autoload": {
  4110. "psr-0": {
  4111. "Pimple": "src/"
  4112. }
  4113. },
  4114. "notification-url": "https://packagist.org/downloads/",
  4115. "license": [
  4116. "MIT"
  4117. ],
  4118. "authors": [
  4119. {
  4120. "name": "Fabien Potencier",
  4121. "email": "fabien@symfony.com"
  4122. }
  4123. ],
  4124. "description": "Pimple, a simple Dependency Injection Container",
  4125. "homepage": "https://pimple.symfony.com",
  4126. "keywords": [
  4127. "container",
  4128. "dependency injection"
  4129. ],
  4130. "support": {
  4131. "source": "https://github.com/silexphp/Pimple/tree/v3.5.0"
  4132. },
  4133. "time": "2021-10-28T11:13:42+00:00"
  4134. },
  4135. {
  4136. "name": "psr/cache",
  4137. "version": "1.0.1",
  4138. "source": {
  4139. "type": "git",
  4140. "url": "https://github.com/php-fig/cache.git",
  4141. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8"
  4142. },
  4143. "dist": {
  4144. "type": "zip",
  4145. "url": "https://api.github.com/repos/php-fig/cache/zipball/d11b50ad223250cf17b86e38383413f5a6764bf8",
  4146. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8",
  4147. "shasum": "",
  4148. "mirrors": [
  4149. {
  4150. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4151. "preferred": true
  4152. }
  4153. ]
  4154. },
  4155. "require": {
  4156. "php": ">=5.3.0"
  4157. },
  4158. "type": "library",
  4159. "extra": {
  4160. "branch-alias": {
  4161. "dev-master": "1.0.x-dev"
  4162. }
  4163. },
  4164. "autoload": {
  4165. "psr-4": {
  4166. "Psr\\Cache\\": "src/"
  4167. }
  4168. },
  4169. "notification-url": "https://packagist.org/downloads/",
  4170. "license": [
  4171. "MIT"
  4172. ],
  4173. "authors": [
  4174. {
  4175. "name": "PHP-FIG",
  4176. "homepage": "http://www.php-fig.org/"
  4177. }
  4178. ],
  4179. "description": "Common interface for caching libraries",
  4180. "keywords": [
  4181. "cache",
  4182. "psr",
  4183. "psr-6"
  4184. ],
  4185. "support": {
  4186. "source": "https://github.com/php-fig/cache/tree/master"
  4187. },
  4188. "time": "2016-08-06T20:24:11+00:00"
  4189. },
  4190. {
  4191. "name": "psr/container",
  4192. "version": "1.1.2",
  4193. "source": {
  4194. "type": "git",
  4195. "url": "https://github.com/php-fig/container.git",
  4196. "reference": "513e0666f7216c7459170d56df27dfcefe1689ea"
  4197. },
  4198. "dist": {
  4199. "type": "zip",
  4200. "url": "https://api.github.com/repos/php-fig/container/zipball/513e0666f7216c7459170d56df27dfcefe1689ea",
  4201. "reference": "513e0666f7216c7459170d56df27dfcefe1689ea",
  4202. "shasum": "",
  4203. "mirrors": [
  4204. {
  4205. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4206. "preferred": true
  4207. }
  4208. ]
  4209. },
  4210. "require": {
  4211. "php": ">=7.4.0"
  4212. },
  4213. "type": "library",
  4214. "autoload": {
  4215. "psr-4": {
  4216. "Psr\\Container\\": "src/"
  4217. }
  4218. },
  4219. "notification-url": "https://packagist.org/downloads/",
  4220. "license": [
  4221. "MIT"
  4222. ],
  4223. "authors": [
  4224. {
  4225. "name": "PHP-FIG",
  4226. "homepage": "https://www.php-fig.org/"
  4227. }
  4228. ],
  4229. "description": "Common Container Interface (PHP FIG PSR-11)",
  4230. "homepage": "https://github.com/php-fig/container",
  4231. "keywords": [
  4232. "PSR-11",
  4233. "container",
  4234. "container-interface",
  4235. "container-interop",
  4236. "psr"
  4237. ],
  4238. "support": {
  4239. "issues": "https://github.com/php-fig/container/issues",
  4240. "source": "https://github.com/php-fig/container/tree/1.1.2"
  4241. },
  4242. "time": "2021-11-05T16:50:12+00:00"
  4243. },
  4244. {
  4245. "name": "psr/http-client",
  4246. "version": "1.0.1",
  4247. "source": {
  4248. "type": "git",
  4249. "url": "https://github.com/php-fig/http-client.git",
  4250. "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621"
  4251. },
  4252. "dist": {
  4253. "type": "zip",
  4254. "url": "https://api.github.com/repos/php-fig/http-client/zipball/2dfb5f6c5eff0e91e20e913f8c5452ed95b86621",
  4255. "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621",
  4256. "shasum": "",
  4257. "mirrors": [
  4258. {
  4259. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4260. "preferred": true
  4261. }
  4262. ]
  4263. },
  4264. "require": {
  4265. "php": "^7.0 || ^8.0",
  4266. "psr/http-message": "^1.0"
  4267. },
  4268. "type": "library",
  4269. "extra": {
  4270. "branch-alias": {
  4271. "dev-master": "1.0.x-dev"
  4272. }
  4273. },
  4274. "autoload": {
  4275. "psr-4": {
  4276. "Psr\\Http\\Client\\": "src/"
  4277. }
  4278. },
  4279. "notification-url": "https://packagist.org/downloads/",
  4280. "license": [
  4281. "MIT"
  4282. ],
  4283. "authors": [
  4284. {
  4285. "name": "PHP-FIG",
  4286. "homepage": "http://www.php-fig.org/"
  4287. }
  4288. ],
  4289. "description": "Common interface for HTTP clients",
  4290. "homepage": "https://github.com/php-fig/http-client",
  4291. "keywords": [
  4292. "http",
  4293. "http-client",
  4294. "psr",
  4295. "psr-18"
  4296. ],
  4297. "support": {
  4298. "source": "https://github.com/php-fig/http-client/tree/master"
  4299. },
  4300. "time": "2020-06-29T06:28:15+00:00"
  4301. },
  4302. {
  4303. "name": "psr/http-factory",
  4304. "version": "1.0.1",
  4305. "source": {
  4306. "type": "git",
  4307. "url": "https://github.com/php-fig/http-factory.git",
  4308. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be"
  4309. },
  4310. "dist": {
  4311. "type": "zip",
  4312. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  4313. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  4314. "shasum": "",
  4315. "mirrors": [
  4316. {
  4317. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4318. "preferred": true
  4319. }
  4320. ]
  4321. },
  4322. "require": {
  4323. "php": ">=7.0.0",
  4324. "psr/http-message": "^1.0"
  4325. },
  4326. "type": "library",
  4327. "extra": {
  4328. "branch-alias": {
  4329. "dev-master": "1.0.x-dev"
  4330. }
  4331. },
  4332. "autoload": {
  4333. "psr-4": {
  4334. "Psr\\Http\\Message\\": "src/"
  4335. }
  4336. },
  4337. "notification-url": "https://packagist.org/downloads/",
  4338. "license": [
  4339. "MIT"
  4340. ],
  4341. "authors": [
  4342. {
  4343. "name": "PHP-FIG",
  4344. "homepage": "http://www.php-fig.org/"
  4345. }
  4346. ],
  4347. "description": "Common interfaces for PSR-7 HTTP message factories",
  4348. "keywords": [
  4349. "factory",
  4350. "http",
  4351. "message",
  4352. "psr",
  4353. "psr-17",
  4354. "psr-7",
  4355. "request",
  4356. "response"
  4357. ],
  4358. "support": {
  4359. "source": "https://github.com/php-fig/http-factory/tree/master"
  4360. },
  4361. "time": "2019-04-30T12:38:16+00:00"
  4362. },
  4363. {
  4364. "name": "psr/http-message",
  4365. "version": "1.0.1",
  4366. "source": {
  4367. "type": "git",
  4368. "url": "https://github.com/php-fig/http-message.git",
  4369. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  4370. },
  4371. "dist": {
  4372. "type": "zip",
  4373. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  4374. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  4375. "shasum": "",
  4376. "mirrors": [
  4377. {
  4378. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4379. "preferred": true
  4380. }
  4381. ]
  4382. },
  4383. "require": {
  4384. "php": ">=5.3.0"
  4385. },
  4386. "type": "library",
  4387. "extra": {
  4388. "branch-alias": {
  4389. "dev-master": "1.0.x-dev"
  4390. }
  4391. },
  4392. "autoload": {
  4393. "psr-4": {
  4394. "Psr\\Http\\Message\\": "src/"
  4395. }
  4396. },
  4397. "notification-url": "https://packagist.org/downloads/",
  4398. "license": [
  4399. "MIT"
  4400. ],
  4401. "authors": [
  4402. {
  4403. "name": "PHP-FIG",
  4404. "homepage": "http://www.php-fig.org/"
  4405. }
  4406. ],
  4407. "description": "Common interface for HTTP messages",
  4408. "homepage": "https://github.com/php-fig/http-message",
  4409. "keywords": [
  4410. "http",
  4411. "http-message",
  4412. "psr",
  4413. "psr-7",
  4414. "request",
  4415. "response"
  4416. ],
  4417. "support": {
  4418. "source": "https://github.com/php-fig/http-message/tree/master"
  4419. },
  4420. "time": "2016-08-06T14:39:51+00:00"
  4421. },
  4422. {
  4423. "name": "psr/log",
  4424. "version": "1.1.4",
  4425. "source": {
  4426. "type": "git",
  4427. "url": "https://github.com/php-fig/log.git",
  4428. "reference": "d49695b909c3b7628b6289db5479a1c204601f11"
  4429. },
  4430. "dist": {
  4431. "type": "zip",
  4432. "url": "https://api.github.com/repos/php-fig/log/zipball/d49695b909c3b7628b6289db5479a1c204601f11",
  4433. "reference": "d49695b909c3b7628b6289db5479a1c204601f11",
  4434. "shasum": "",
  4435. "mirrors": [
  4436. {
  4437. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4438. "preferred": true
  4439. }
  4440. ]
  4441. },
  4442. "require": {
  4443. "php": ">=5.3.0"
  4444. },
  4445. "type": "library",
  4446. "extra": {
  4447. "branch-alias": {
  4448. "dev-master": "1.1.x-dev"
  4449. }
  4450. },
  4451. "autoload": {
  4452. "psr-4": {
  4453. "Psr\\Log\\": "Psr/Log/"
  4454. }
  4455. },
  4456. "notification-url": "https://packagist.org/downloads/",
  4457. "license": [
  4458. "MIT"
  4459. ],
  4460. "authors": [
  4461. {
  4462. "name": "PHP-FIG",
  4463. "homepage": "https://www.php-fig.org/"
  4464. }
  4465. ],
  4466. "description": "Common interface for logging libraries",
  4467. "homepage": "https://github.com/php-fig/log",
  4468. "keywords": [
  4469. "log",
  4470. "psr",
  4471. "psr-3"
  4472. ],
  4473. "support": {
  4474. "source": "https://github.com/php-fig/log/tree/1.1.4"
  4475. },
  4476. "time": "2021-05-03T11:20:27+00:00"
  4477. },
  4478. {
  4479. "name": "psr/simple-cache",
  4480. "version": "1.0.1",
  4481. "source": {
  4482. "type": "git",
  4483. "url": "https://github.com/php-fig/simple-cache.git",
  4484. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b"
  4485. },
  4486. "dist": {
  4487. "type": "zip",
  4488. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  4489. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  4490. "shasum": "",
  4491. "mirrors": [
  4492. {
  4493. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4494. "preferred": true
  4495. }
  4496. ]
  4497. },
  4498. "require": {
  4499. "php": ">=5.3.0"
  4500. },
  4501. "type": "library",
  4502. "extra": {
  4503. "branch-alias": {
  4504. "dev-master": "1.0.x-dev"
  4505. }
  4506. },
  4507. "autoload": {
  4508. "psr-4": {
  4509. "Psr\\SimpleCache\\": "src/"
  4510. }
  4511. },
  4512. "notification-url": "https://packagist.org/downloads/",
  4513. "license": [
  4514. "MIT"
  4515. ],
  4516. "authors": [
  4517. {
  4518. "name": "PHP-FIG",
  4519. "homepage": "http://www.php-fig.org/"
  4520. }
  4521. ],
  4522. "description": "Common interfaces for simple caching",
  4523. "keywords": [
  4524. "cache",
  4525. "caching",
  4526. "psr",
  4527. "psr-16",
  4528. "simple-cache"
  4529. ],
  4530. "support": {
  4531. "source": "https://github.com/php-fig/simple-cache/tree/master"
  4532. },
  4533. "time": "2017-10-23T01:57:42+00:00"
  4534. },
  4535. {
  4536. "name": "psy/psysh",
  4537. "version": "v0.11.5",
  4538. "source": {
  4539. "type": "git",
  4540. "url": "https://github.com/bobthecow/psysh.git",
  4541. "reference": "c23686f9c48ca202710dbb967df8385a952a2daf"
  4542. },
  4543. "dist": {
  4544. "type": "zip",
  4545. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/c23686f9c48ca202710dbb967df8385a952a2daf",
  4546. "reference": "c23686f9c48ca202710dbb967df8385a952a2daf",
  4547. "shasum": "",
  4548. "mirrors": [
  4549. {
  4550. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4551. "preferred": true
  4552. }
  4553. ]
  4554. },
  4555. "require": {
  4556. "ext-json": "*",
  4557. "ext-tokenizer": "*",
  4558. "nikic/php-parser": "^4.0 || ^3.1",
  4559. "php": "^8.0 || ^7.0.8",
  4560. "symfony/console": "^6.0 || ^5.0 || ^4.0 || ^3.4",
  4561. "symfony/var-dumper": "^6.0 || ^5.0 || ^4.0 || ^3.4"
  4562. },
  4563. "conflict": {
  4564. "symfony/console": "4.4.37 || 5.3.14 || 5.3.15 || 5.4.3 || 5.4.4 || 6.0.3 || 6.0.4"
  4565. },
  4566. "require-dev": {
  4567. "bamarni/composer-bin-plugin": "^1.2"
  4568. },
  4569. "suggest": {
  4570. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  4571. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  4572. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.",
  4573. "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history."
  4574. },
  4575. "bin": [
  4576. "bin/psysh"
  4577. ],
  4578. "type": "library",
  4579. "extra": {
  4580. "branch-alias": {
  4581. "dev-main": "0.11.x-dev"
  4582. }
  4583. },
  4584. "autoload": {
  4585. "files": [
  4586. "src/functions.php"
  4587. ],
  4588. "psr-4": {
  4589. "Psy\\": "src/"
  4590. }
  4591. },
  4592. "notification-url": "https://packagist.org/downloads/",
  4593. "license": [
  4594. "MIT"
  4595. ],
  4596. "authors": [
  4597. {
  4598. "name": "Justin Hileman",
  4599. "email": "justin@justinhileman.info",
  4600. "homepage": "http://justinhileman.com"
  4601. }
  4602. ],
  4603. "description": "An interactive shell for modern PHP.",
  4604. "homepage": "http://psysh.org",
  4605. "keywords": [
  4606. "REPL",
  4607. "console",
  4608. "interactive",
  4609. "shell"
  4610. ],
  4611. "support": {
  4612. "issues": "https://github.com/bobthecow/psysh/issues",
  4613. "source": "https://github.com/bobthecow/psysh/tree/v0.11.5"
  4614. },
  4615. "time": "2022-05-27T18:03:49+00:00"
  4616. },
  4617. {
  4618. "name": "ralouphie/getallheaders",
  4619. "version": "3.0.3",
  4620. "source": {
  4621. "type": "git",
  4622. "url": "https://github.com/ralouphie/getallheaders.git",
  4623. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  4624. },
  4625. "dist": {
  4626. "type": "zip",
  4627. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  4628. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  4629. "shasum": "",
  4630. "mirrors": [
  4631. {
  4632. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4633. "preferred": true
  4634. }
  4635. ]
  4636. },
  4637. "require": {
  4638. "php": ">=5.6"
  4639. },
  4640. "require-dev": {
  4641. "php-coveralls/php-coveralls": "^2.1",
  4642. "phpunit/phpunit": "^5 || ^6.5"
  4643. },
  4644. "type": "library",
  4645. "autoload": {
  4646. "files": [
  4647. "src/getallheaders.php"
  4648. ]
  4649. },
  4650. "notification-url": "https://packagist.org/downloads/",
  4651. "license": [
  4652. "MIT"
  4653. ],
  4654. "authors": [
  4655. {
  4656. "name": "Ralph Khattar",
  4657. "email": "ralph.khattar@gmail.com"
  4658. }
  4659. ],
  4660. "description": "A polyfill for getallheaders.",
  4661. "support": {
  4662. "issues": "https://github.com/ralouphie/getallheaders/issues",
  4663. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  4664. },
  4665. "time": "2019-03-08T08:55:37+00:00"
  4666. },
  4667. {
  4668. "name": "ramsey/uuid",
  4669. "version": "3.9.6",
  4670. "source": {
  4671. "type": "git",
  4672. "url": "https://github.com/ramsey/uuid.git",
  4673. "reference": "ffa80ab953edd85d5b6c004f96181a538aad35a3"
  4674. },
  4675. "dist": {
  4676. "type": "zip",
  4677. "url": "https://api.github.com/repos/ramsey/uuid/zipball/ffa80ab953edd85d5b6c004f96181a538aad35a3",
  4678. "reference": "ffa80ab953edd85d5b6c004f96181a538aad35a3",
  4679. "shasum": "",
  4680. "mirrors": [
  4681. {
  4682. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4683. "preferred": true
  4684. }
  4685. ]
  4686. },
  4687. "require": {
  4688. "ext-json": "*",
  4689. "paragonie/random_compat": "^1 | ^2 | ^9.99.99",
  4690. "php": "^5.4 | ^7.0 | ^8.0",
  4691. "symfony/polyfill-ctype": "^1.8"
  4692. },
  4693. "replace": {
  4694. "rhumsaa/uuid": "self.version"
  4695. },
  4696. "require-dev": {
  4697. "codeception/aspect-mock": "^1 | ^2",
  4698. "doctrine/annotations": "^1.2",
  4699. "goaop/framework": "1.0.0-alpha.2 | ^1 | >=2.1.0 <=2.3.2",
  4700. "mockery/mockery": "^0.9.11 | ^1",
  4701. "moontoast/math": "^1.1",
  4702. "nikic/php-parser": "<=4.5.0",
  4703. "paragonie/random-lib": "^2",
  4704. "php-mock/php-mock-phpunit": "^0.3 | ^1.1 | ^2.6",
  4705. "php-parallel-lint/php-parallel-lint": "^1.3",
  4706. "phpunit/phpunit": ">=4.8.36 <9.0.0 | >=9.3.0",
  4707. "squizlabs/php_codesniffer": "^3.5",
  4708. "yoast/phpunit-polyfills": "^1.0"
  4709. },
  4710. "suggest": {
  4711. "ext-ctype": "Provides support for PHP Ctype functions",
  4712. "ext-libsodium": "Provides the PECL libsodium extension for use with the SodiumRandomGenerator",
  4713. "ext-openssl": "Provides the OpenSSL extension for use with the OpenSslGenerator",
  4714. "ext-uuid": "Provides the PECL UUID extension for use with the PeclUuidTimeGenerator and PeclUuidRandomGenerator",
  4715. "moontoast/math": "Provides support for converting UUID to 128-bit integer (in string form).",
  4716. "paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
  4717. "ramsey/uuid-console": "A console application for generating UUIDs with ramsey/uuid",
  4718. "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type."
  4719. },
  4720. "type": "library",
  4721. "extra": {
  4722. "branch-alias": {
  4723. "dev-master": "3.x-dev"
  4724. }
  4725. },
  4726. "autoload": {
  4727. "files": [
  4728. "src/functions.php"
  4729. ],
  4730. "psr-4": {
  4731. "Ramsey\\Uuid\\": "src/"
  4732. }
  4733. },
  4734. "notification-url": "https://packagist.org/downloads/",
  4735. "license": [
  4736. "MIT"
  4737. ],
  4738. "authors": [
  4739. {
  4740. "name": "Ben Ramsey",
  4741. "email": "ben@benramsey.com",
  4742. "homepage": "https://benramsey.com"
  4743. },
  4744. {
  4745. "name": "Marijn Huizendveld",
  4746. "email": "marijn.huizendveld@gmail.com"
  4747. },
  4748. {
  4749. "name": "Thibaud Fabre",
  4750. "email": "thibaud@aztech.io"
  4751. }
  4752. ],
  4753. "description": "Formerly rhumsaa/uuid. A PHP 5.4+ library for generating RFC 4122 version 1, 3, 4, and 5 universally unique identifiers (UUID).",
  4754. "homepage": "https://github.com/ramsey/uuid",
  4755. "keywords": [
  4756. "guid",
  4757. "identifier",
  4758. "uuid"
  4759. ],
  4760. "support": {
  4761. "issues": "https://github.com/ramsey/uuid/issues",
  4762. "rss": "https://github.com/ramsey/uuid/releases.atom",
  4763. "source": "https://github.com/ramsey/uuid",
  4764. "wiki": "https://github.com/ramsey/uuid/wiki"
  4765. },
  4766. "funding": [
  4767. {
  4768. "url": "https://github.com/ramsey",
  4769. "type": "github"
  4770. },
  4771. {
  4772. "url": "https://tidelift.com/funding/github/packagist/ramsey/uuid",
  4773. "type": "tidelift"
  4774. }
  4775. ],
  4776. "time": "2021-09-25T23:07:42+00:00"
  4777. },
  4778. {
  4779. "name": "react/promise",
  4780. "version": "v2.9.0",
  4781. "source": {
  4782. "type": "git",
  4783. "url": "https://github.com/reactphp/promise.git",
  4784. "reference": "234f8fd1023c9158e2314fa9d7d0e6a83db42910"
  4785. },
  4786. "dist": {
  4787. "type": "zip",
  4788. "url": "https://api.github.com/repos/reactphp/promise/zipball/234f8fd1023c9158e2314fa9d7d0e6a83db42910",
  4789. "reference": "234f8fd1023c9158e2314fa9d7d0e6a83db42910",
  4790. "shasum": "",
  4791. "mirrors": [
  4792. {
  4793. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4794. "preferred": true
  4795. }
  4796. ]
  4797. },
  4798. "require": {
  4799. "php": ">=5.4.0"
  4800. },
  4801. "require-dev": {
  4802. "phpunit/phpunit": "^9.3 || ^5.7 || ^4.8.36"
  4803. },
  4804. "type": "library",
  4805. "autoload": {
  4806. "files": [
  4807. "src/functions_include.php"
  4808. ],
  4809. "psr-4": {
  4810. "React\\Promise\\": "src/"
  4811. }
  4812. },
  4813. "notification-url": "https://packagist.org/downloads/",
  4814. "license": [
  4815. "MIT"
  4816. ],
  4817. "authors": [
  4818. {
  4819. "name": "Jan Sorgalla",
  4820. "email": "jsorgalla@gmail.com",
  4821. "homepage": "https://sorgalla.com/"
  4822. },
  4823. {
  4824. "name": "Christian Lück",
  4825. "email": "christian@clue.engineering",
  4826. "homepage": "https://clue.engineering/"
  4827. },
  4828. {
  4829. "name": "Cees-Jan Kiewiet",
  4830. "email": "reactphp@ceesjankiewiet.nl",
  4831. "homepage": "https://wyrihaximus.net/"
  4832. },
  4833. {
  4834. "name": "Chris Boden",
  4835. "email": "cboden@gmail.com",
  4836. "homepage": "https://cboden.dev/"
  4837. }
  4838. ],
  4839. "description": "A lightweight implementation of CommonJS Promises/A for PHP",
  4840. "keywords": [
  4841. "promise",
  4842. "promises"
  4843. ],
  4844. "support": {
  4845. "issues": "https://github.com/reactphp/promise/issues",
  4846. "source": "https://github.com/reactphp/promise/tree/v2.9.0"
  4847. },
  4848. "funding": [
  4849. {
  4850. "url": "https://github.com/WyriHaximus",
  4851. "type": "github"
  4852. },
  4853. {
  4854. "url": "https://github.com/clue",
  4855. "type": "github"
  4856. }
  4857. ],
  4858. "time": "2022-02-11T10:27:51+00:00"
  4859. },
  4860. {
  4861. "name": "seld/jsonlint",
  4862. "version": "1.9.0",
  4863. "source": {
  4864. "type": "git",
  4865. "url": "https://github.com/Seldaek/jsonlint.git",
  4866. "reference": "4211420d25eba80712bff236a98960ef68b866b7"
  4867. },
  4868. "dist": {
  4869. "type": "zip",
  4870. "url": "https://api.github.com/repos/Seldaek/jsonlint/zipball/4211420d25eba80712bff236a98960ef68b866b7",
  4871. "reference": "4211420d25eba80712bff236a98960ef68b866b7",
  4872. "shasum": "",
  4873. "mirrors": [
  4874. {
  4875. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4876. "preferred": true
  4877. }
  4878. ]
  4879. },
  4880. "require": {
  4881. "php": "^5.3 || ^7.0 || ^8.0"
  4882. },
  4883. "require-dev": {
  4884. "phpstan/phpstan": "^1.5",
  4885. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0 || ^8.5.13"
  4886. },
  4887. "bin": [
  4888. "bin/jsonlint"
  4889. ],
  4890. "type": "library",
  4891. "autoload": {
  4892. "psr-4": {
  4893. "Seld\\JsonLint\\": "src/Seld/JsonLint/"
  4894. }
  4895. },
  4896. "notification-url": "https://packagist.org/downloads/",
  4897. "license": [
  4898. "MIT"
  4899. ],
  4900. "authors": [
  4901. {
  4902. "name": "Jordi Boggiano",
  4903. "email": "j.boggiano@seld.be",
  4904. "homepage": "http://seld.be"
  4905. }
  4906. ],
  4907. "description": "JSON Linter",
  4908. "keywords": [
  4909. "json",
  4910. "linter",
  4911. "parser",
  4912. "validator"
  4913. ],
  4914. "support": {
  4915. "issues": "https://github.com/Seldaek/jsonlint/issues",
  4916. "source": "https://github.com/Seldaek/jsonlint/tree/1.9.0"
  4917. },
  4918. "funding": [
  4919. {
  4920. "url": "https://github.com/Seldaek",
  4921. "type": "github"
  4922. },
  4923. {
  4924. "url": "https://tidelift.com/funding/github/packagist/seld/jsonlint",
  4925. "type": "tidelift"
  4926. }
  4927. ],
  4928. "time": "2022-04-01T13:37:23+00:00"
  4929. },
  4930. {
  4931. "name": "seld/phar-utils",
  4932. "version": "1.2.0",
  4933. "source": {
  4934. "type": "git",
  4935. "url": "https://github.com/Seldaek/phar-utils.git",
  4936. "reference": "9f3452c93ff423469c0d56450431562ca423dcee"
  4937. },
  4938. "dist": {
  4939. "type": "zip",
  4940. "url": "https://api.github.com/repos/Seldaek/phar-utils/zipball/9f3452c93ff423469c0d56450431562ca423dcee",
  4941. "reference": "9f3452c93ff423469c0d56450431562ca423dcee",
  4942. "shasum": "",
  4943. "mirrors": [
  4944. {
  4945. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4946. "preferred": true
  4947. }
  4948. ]
  4949. },
  4950. "require": {
  4951. "php": ">=5.3"
  4952. },
  4953. "type": "library",
  4954. "extra": {
  4955. "branch-alias": {
  4956. "dev-master": "1.x-dev"
  4957. }
  4958. },
  4959. "autoload": {
  4960. "psr-4": {
  4961. "Seld\\PharUtils\\": "src/"
  4962. }
  4963. },
  4964. "notification-url": "https://packagist.org/downloads/",
  4965. "license": [
  4966. "MIT"
  4967. ],
  4968. "authors": [
  4969. {
  4970. "name": "Jordi Boggiano",
  4971. "email": "j.boggiano@seld.be"
  4972. }
  4973. ],
  4974. "description": "PHAR file format utilities, for when PHP phars you up",
  4975. "keywords": [
  4976. "phar"
  4977. ],
  4978. "support": {
  4979. "issues": "https://github.com/Seldaek/phar-utils/issues",
  4980. "source": "https://github.com/Seldaek/phar-utils/tree/1.2.0"
  4981. },
  4982. "time": "2021-12-10T11:20:11+00:00"
  4983. },
  4984. {
  4985. "name": "swiftmailer/swiftmailer",
  4986. "version": "v6.3.0",
  4987. "source": {
  4988. "type": "git",
  4989. "url": "https://github.com/swiftmailer/swiftmailer.git",
  4990. "reference": "8a5d5072dca8f48460fce2f4131fcc495eec654c"
  4991. },
  4992. "dist": {
  4993. "type": "zip",
  4994. "url": "https://api.github.com/repos/swiftmailer/swiftmailer/zipball/8a5d5072dca8f48460fce2f4131fcc495eec654c",
  4995. "reference": "8a5d5072dca8f48460fce2f4131fcc495eec654c",
  4996. "shasum": "",
  4997. "mirrors": [
  4998. {
  4999. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5000. "preferred": true
  5001. }
  5002. ]
  5003. },
  5004. "require": {
  5005. "egulias/email-validator": "^2.0|^3.1",
  5006. "php": ">=7.0.0",
  5007. "symfony/polyfill-iconv": "^1.0",
  5008. "symfony/polyfill-intl-idn": "^1.10",
  5009. "symfony/polyfill-mbstring": "^1.0"
  5010. },
  5011. "require-dev": {
  5012. "mockery/mockery": "^1.0",
  5013. "symfony/phpunit-bridge": "^4.4|^5.4"
  5014. },
  5015. "suggest": {
  5016. "ext-intl": "Needed to support internationalized email addresses"
  5017. },
  5018. "type": "library",
  5019. "extra": {
  5020. "branch-alias": {
  5021. "dev-master": "6.2-dev"
  5022. }
  5023. },
  5024. "autoload": {
  5025. "files": [
  5026. "lib/swift_required.php"
  5027. ]
  5028. },
  5029. "notification-url": "https://packagist.org/downloads/",
  5030. "license": [
  5031. "MIT"
  5032. ],
  5033. "authors": [
  5034. {
  5035. "name": "Chris Corbyn"
  5036. },
  5037. {
  5038. "name": "Fabien Potencier",
  5039. "email": "fabien@symfony.com"
  5040. }
  5041. ],
  5042. "description": "Swiftmailer, free feature-rich PHP mailer",
  5043. "homepage": "https://swiftmailer.symfony.com",
  5044. "keywords": [
  5045. "email",
  5046. "mail",
  5047. "mailer"
  5048. ],
  5049. "support": {
  5050. "issues": "https://github.com/swiftmailer/swiftmailer/issues",
  5051. "source": "https://github.com/swiftmailer/swiftmailer/tree/v6.3.0"
  5052. },
  5053. "funding": [
  5054. {
  5055. "url": "https://github.com/fabpot",
  5056. "type": "github"
  5057. },
  5058. {
  5059. "url": "https://tidelift.com/funding/github/packagist/swiftmailer/swiftmailer",
  5060. "type": "tidelift"
  5061. }
  5062. ],
  5063. "abandoned": "symfony/mailer",
  5064. "time": "2021-10-18T15:26:12+00:00"
  5065. },
  5066. {
  5067. "name": "symfony/cache",
  5068. "version": "v5.4.9",
  5069. "source": {
  5070. "type": "git",
  5071. "url": "https://github.com/symfony/cache.git",
  5072. "reference": "a50b7249bea81ddd6d3b799ce40c5521c2f72f0b"
  5073. },
  5074. "dist": {
  5075. "type": "zip",
  5076. "url": "https://api.github.com/repos/symfony/cache/zipball/a50b7249bea81ddd6d3b799ce40c5521c2f72f0b",
  5077. "reference": "a50b7249bea81ddd6d3b799ce40c5521c2f72f0b",
  5078. "shasum": "",
  5079. "mirrors": [
  5080. {
  5081. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5082. "preferred": true
  5083. }
  5084. ]
  5085. },
  5086. "require": {
  5087. "php": ">=7.2.5",
  5088. "psr/cache": "^1.0|^2.0",
  5089. "psr/log": "^1.1|^2|^3",
  5090. "symfony/cache-contracts": "^1.1.7|^2",
  5091. "symfony/deprecation-contracts": "^2.1|^3",
  5092. "symfony/polyfill-php73": "^1.9",
  5093. "symfony/polyfill-php80": "^1.16",
  5094. "symfony/service-contracts": "^1.1|^2|^3",
  5095. "symfony/var-exporter": "^4.4|^5.0|^6.0"
  5096. },
  5097. "conflict": {
  5098. "doctrine/dbal": "<2.13.1",
  5099. "symfony/dependency-injection": "<4.4",
  5100. "symfony/http-kernel": "<4.4",
  5101. "symfony/var-dumper": "<4.4"
  5102. },
  5103. "provide": {
  5104. "psr/cache-implementation": "1.0|2.0",
  5105. "psr/simple-cache-implementation": "1.0|2.0",
  5106. "symfony/cache-implementation": "1.0|2.0"
  5107. },
  5108. "require-dev": {
  5109. "cache/integration-tests": "dev-master",
  5110. "doctrine/cache": "^1.6|^2.0",
  5111. "doctrine/dbal": "^2.13.1|^3.0",
  5112. "predis/predis": "^1.1",
  5113. "psr/simple-cache": "^1.0|^2.0",
  5114. "symfony/config": "^4.4|^5.0|^6.0",
  5115. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  5116. "symfony/filesystem": "^4.4|^5.0|^6.0",
  5117. "symfony/http-kernel": "^4.4|^5.0|^6.0",
  5118. "symfony/messenger": "^4.4|^5.0|^6.0",
  5119. "symfony/var-dumper": "^4.4|^5.0|^6.0"
  5120. },
  5121. "type": "library",
  5122. "autoload": {
  5123. "psr-4": {
  5124. "Symfony\\Component\\Cache\\": ""
  5125. },
  5126. "exclude-from-classmap": [
  5127. "/Tests/"
  5128. ]
  5129. },
  5130. "notification-url": "https://packagist.org/downloads/",
  5131. "license": [
  5132. "MIT"
  5133. ],
  5134. "authors": [
  5135. {
  5136. "name": "Nicolas Grekas",
  5137. "email": "p@tchwork.com"
  5138. },
  5139. {
  5140. "name": "Symfony Community",
  5141. "homepage": "https://symfony.com/contributors"
  5142. }
  5143. ],
  5144. "description": "Provides an extended PSR-6, PSR-16 (and tags) implementation",
  5145. "homepage": "https://symfony.com",
  5146. "keywords": [
  5147. "caching",
  5148. "psr6"
  5149. ],
  5150. "support": {
  5151. "source": "https://github.com/symfony/cache/tree/v5.4.9"
  5152. },
  5153. "funding": [
  5154. {
  5155. "url": "https://symfony.com/sponsor",
  5156. "type": "custom"
  5157. },
  5158. {
  5159. "url": "https://github.com/fabpot",
  5160. "type": "github"
  5161. },
  5162. {
  5163. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5164. "type": "tidelift"
  5165. }
  5166. ],
  5167. "time": "2022-05-21T10:24:18+00:00"
  5168. },
  5169. {
  5170. "name": "symfony/cache-contracts",
  5171. "version": "v2.5.1",
  5172. "source": {
  5173. "type": "git",
  5174. "url": "https://github.com/symfony/cache-contracts.git",
  5175. "reference": "64be4a7acb83b6f2bf6de9a02cee6dad41277ebc"
  5176. },
  5177. "dist": {
  5178. "type": "zip",
  5179. "url": "https://api.github.com/repos/symfony/cache-contracts/zipball/64be4a7acb83b6f2bf6de9a02cee6dad41277ebc",
  5180. "reference": "64be4a7acb83b6f2bf6de9a02cee6dad41277ebc",
  5181. "shasum": "",
  5182. "mirrors": [
  5183. {
  5184. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5185. "preferred": true
  5186. }
  5187. ]
  5188. },
  5189. "require": {
  5190. "php": ">=7.2.5",
  5191. "psr/cache": "^1.0|^2.0|^3.0"
  5192. },
  5193. "suggest": {
  5194. "symfony/cache-implementation": ""
  5195. },
  5196. "type": "library",
  5197. "extra": {
  5198. "branch-alias": {
  5199. "dev-main": "2.5-dev"
  5200. },
  5201. "thanks": {
  5202. "name": "symfony/contracts",
  5203. "url": "https://github.com/symfony/contracts"
  5204. }
  5205. },
  5206. "autoload": {
  5207. "psr-4": {
  5208. "Symfony\\Contracts\\Cache\\": ""
  5209. }
  5210. },
  5211. "notification-url": "https://packagist.org/downloads/",
  5212. "license": [
  5213. "MIT"
  5214. ],
  5215. "authors": [
  5216. {
  5217. "name": "Nicolas Grekas",
  5218. "email": "p@tchwork.com"
  5219. },
  5220. {
  5221. "name": "Symfony Community",
  5222. "homepage": "https://symfony.com/contributors"
  5223. }
  5224. ],
  5225. "description": "Generic abstractions related to caching",
  5226. "homepage": "https://symfony.com",
  5227. "keywords": [
  5228. "abstractions",
  5229. "contracts",
  5230. "decoupling",
  5231. "interfaces",
  5232. "interoperability",
  5233. "standards"
  5234. ],
  5235. "support": {
  5236. "source": "https://github.com/symfony/cache-contracts/tree/v2.5.1"
  5237. },
  5238. "funding": [
  5239. {
  5240. "url": "https://symfony.com/sponsor",
  5241. "type": "custom"
  5242. },
  5243. {
  5244. "url": "https://github.com/fabpot",
  5245. "type": "github"
  5246. },
  5247. {
  5248. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5249. "type": "tidelift"
  5250. }
  5251. ],
  5252. "time": "2022-01-02T09:53:40+00:00"
  5253. },
  5254. {
  5255. "name": "symfony/console",
  5256. "version": "v4.4.42",
  5257. "source": {
  5258. "type": "git",
  5259. "url": "https://github.com/symfony/console.git",
  5260. "reference": "cce7a9f99e22937a71a16b23afa762558808d587"
  5261. },
  5262. "dist": {
  5263. "type": "zip",
  5264. "url": "https://api.github.com/repos/symfony/console/zipball/cce7a9f99e22937a71a16b23afa762558808d587",
  5265. "reference": "cce7a9f99e22937a71a16b23afa762558808d587",
  5266. "shasum": "",
  5267. "mirrors": [
  5268. {
  5269. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5270. "preferred": true
  5271. }
  5272. ]
  5273. },
  5274. "require": {
  5275. "php": ">=7.1.3",
  5276. "symfony/polyfill-mbstring": "~1.0",
  5277. "symfony/polyfill-php73": "^1.8",
  5278. "symfony/polyfill-php80": "^1.16",
  5279. "symfony/service-contracts": "^1.1|^2"
  5280. },
  5281. "conflict": {
  5282. "psr/log": ">=3",
  5283. "symfony/dependency-injection": "<3.4",
  5284. "symfony/event-dispatcher": "<4.3|>=5",
  5285. "symfony/lock": "<4.4",
  5286. "symfony/process": "<3.3"
  5287. },
  5288. "provide": {
  5289. "psr/log-implementation": "1.0|2.0"
  5290. },
  5291. "require-dev": {
  5292. "psr/log": "^1|^2",
  5293. "symfony/config": "^3.4|^4.0|^5.0",
  5294. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  5295. "symfony/event-dispatcher": "^4.3",
  5296. "symfony/lock": "^4.4|^5.0",
  5297. "symfony/process": "^3.4|^4.0|^5.0",
  5298. "symfony/var-dumper": "^4.3|^5.0"
  5299. },
  5300. "suggest": {
  5301. "psr/log": "For using the console logger",
  5302. "symfony/event-dispatcher": "",
  5303. "symfony/lock": "",
  5304. "symfony/process": ""
  5305. },
  5306. "type": "library",
  5307. "autoload": {
  5308. "psr-4": {
  5309. "Symfony\\Component\\Console\\": ""
  5310. },
  5311. "exclude-from-classmap": [
  5312. "/Tests/"
  5313. ]
  5314. },
  5315. "notification-url": "https://packagist.org/downloads/",
  5316. "license": [
  5317. "MIT"
  5318. ],
  5319. "authors": [
  5320. {
  5321. "name": "Fabien Potencier",
  5322. "email": "fabien@symfony.com"
  5323. },
  5324. {
  5325. "name": "Symfony Community",
  5326. "homepage": "https://symfony.com/contributors"
  5327. }
  5328. ],
  5329. "description": "Eases the creation of beautiful and testable command line interfaces",
  5330. "homepage": "https://symfony.com",
  5331. "support": {
  5332. "source": "https://github.com/symfony/console/tree/v4.4.42"
  5333. },
  5334. "funding": [
  5335. {
  5336. "url": "https://symfony.com/sponsor",
  5337. "type": "custom"
  5338. },
  5339. {
  5340. "url": "https://github.com/fabpot",
  5341. "type": "github"
  5342. },
  5343. {
  5344. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5345. "type": "tidelift"
  5346. }
  5347. ],
  5348. "time": "2022-05-14T12:35:33+00:00"
  5349. },
  5350. {
  5351. "name": "symfony/css-selector",
  5352. "version": "v5.4.3",
  5353. "source": {
  5354. "type": "git",
  5355. "url": "https://github.com/symfony/css-selector.git",
  5356. "reference": "b0a190285cd95cb019237851205b8140ef6e368e"
  5357. },
  5358. "dist": {
  5359. "type": "zip",
  5360. "url": "https://api.github.com/repos/symfony/css-selector/zipball/b0a190285cd95cb019237851205b8140ef6e368e",
  5361. "reference": "b0a190285cd95cb019237851205b8140ef6e368e",
  5362. "shasum": "",
  5363. "mirrors": [
  5364. {
  5365. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5366. "preferred": true
  5367. }
  5368. ]
  5369. },
  5370. "require": {
  5371. "php": ">=7.2.5",
  5372. "symfony/polyfill-php80": "^1.16"
  5373. },
  5374. "type": "library",
  5375. "autoload": {
  5376. "psr-4": {
  5377. "Symfony\\Component\\CssSelector\\": ""
  5378. },
  5379. "exclude-from-classmap": [
  5380. "/Tests/"
  5381. ]
  5382. },
  5383. "notification-url": "https://packagist.org/downloads/",
  5384. "license": [
  5385. "MIT"
  5386. ],
  5387. "authors": [
  5388. {
  5389. "name": "Fabien Potencier",
  5390. "email": "fabien@symfony.com"
  5391. },
  5392. {
  5393. "name": "Jean-François Simon",
  5394. "email": "jeanfrancois.simon@sensiolabs.com"
  5395. },
  5396. {
  5397. "name": "Symfony Community",
  5398. "homepage": "https://symfony.com/contributors"
  5399. }
  5400. ],
  5401. "description": "Converts CSS selectors to XPath expressions",
  5402. "homepage": "https://symfony.com",
  5403. "support": {
  5404. "source": "https://github.com/symfony/css-selector/tree/v5.4.3"
  5405. },
  5406. "funding": [
  5407. {
  5408. "url": "https://symfony.com/sponsor",
  5409. "type": "custom"
  5410. },
  5411. {
  5412. "url": "https://github.com/fabpot",
  5413. "type": "github"
  5414. },
  5415. {
  5416. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5417. "type": "tidelift"
  5418. }
  5419. ],
  5420. "time": "2022-01-02T09:53:40+00:00"
  5421. },
  5422. {
  5423. "name": "symfony/debug",
  5424. "version": "v4.4.41",
  5425. "source": {
  5426. "type": "git",
  5427. "url": "https://github.com/symfony/debug.git",
  5428. "reference": "6637e62480b60817b9a6984154a533e8e64c6bd5"
  5429. },
  5430. "dist": {
  5431. "type": "zip",
  5432. "url": "https://api.github.com/repos/symfony/debug/zipball/6637e62480b60817b9a6984154a533e8e64c6bd5",
  5433. "reference": "6637e62480b60817b9a6984154a533e8e64c6bd5",
  5434. "shasum": "",
  5435. "mirrors": [
  5436. {
  5437. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5438. "preferred": true
  5439. }
  5440. ]
  5441. },
  5442. "require": {
  5443. "php": ">=7.1.3",
  5444. "psr/log": "^1|^2|^3"
  5445. },
  5446. "conflict": {
  5447. "symfony/http-kernel": "<3.4"
  5448. },
  5449. "require-dev": {
  5450. "symfony/http-kernel": "^3.4|^4.0|^5.0"
  5451. },
  5452. "type": "library",
  5453. "autoload": {
  5454. "psr-4": {
  5455. "Symfony\\Component\\Debug\\": ""
  5456. },
  5457. "exclude-from-classmap": [
  5458. "/Tests/"
  5459. ]
  5460. },
  5461. "notification-url": "https://packagist.org/downloads/",
  5462. "license": [
  5463. "MIT"
  5464. ],
  5465. "authors": [
  5466. {
  5467. "name": "Fabien Potencier",
  5468. "email": "fabien@symfony.com"
  5469. },
  5470. {
  5471. "name": "Symfony Community",
  5472. "homepage": "https://symfony.com/contributors"
  5473. }
  5474. ],
  5475. "description": "Provides tools to ease debugging PHP code",
  5476. "homepage": "https://symfony.com",
  5477. "support": {
  5478. "source": "https://github.com/symfony/debug/tree/v4.4.41"
  5479. },
  5480. "funding": [
  5481. {
  5482. "url": "https://symfony.com/sponsor",
  5483. "type": "custom"
  5484. },
  5485. {
  5486. "url": "https://github.com/fabpot",
  5487. "type": "github"
  5488. },
  5489. {
  5490. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5491. "type": "tidelift"
  5492. }
  5493. ],
  5494. "time": "2022-04-12T15:19:55+00:00"
  5495. },
  5496. {
  5497. "name": "symfony/deprecation-contracts",
  5498. "version": "v2.5.1",
  5499. "source": {
  5500. "type": "git",
  5501. "url": "https://github.com/symfony/deprecation-contracts.git",
  5502. "reference": "e8b495ea28c1d97b5e0c121748d6f9b53d075c66"
  5503. },
  5504. "dist": {
  5505. "type": "zip",
  5506. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/e8b495ea28c1d97b5e0c121748d6f9b53d075c66",
  5507. "reference": "e8b495ea28c1d97b5e0c121748d6f9b53d075c66",
  5508. "shasum": "",
  5509. "mirrors": [
  5510. {
  5511. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5512. "preferred": true
  5513. }
  5514. ]
  5515. },
  5516. "require": {
  5517. "php": ">=7.1"
  5518. },
  5519. "type": "library",
  5520. "extra": {
  5521. "branch-alias": {
  5522. "dev-main": "2.5-dev"
  5523. },
  5524. "thanks": {
  5525. "name": "symfony/contracts",
  5526. "url": "https://github.com/symfony/contracts"
  5527. }
  5528. },
  5529. "autoload": {
  5530. "files": [
  5531. "function.php"
  5532. ]
  5533. },
  5534. "notification-url": "https://packagist.org/downloads/",
  5535. "license": [
  5536. "MIT"
  5537. ],
  5538. "authors": [
  5539. {
  5540. "name": "Nicolas Grekas",
  5541. "email": "p@tchwork.com"
  5542. },
  5543. {
  5544. "name": "Symfony Community",
  5545. "homepage": "https://symfony.com/contributors"
  5546. }
  5547. ],
  5548. "description": "A generic function and convention to trigger deprecation notices",
  5549. "homepage": "https://symfony.com",
  5550. "support": {
  5551. "source": "https://github.com/symfony/deprecation-contracts/tree/v2.5.1"
  5552. },
  5553. "funding": [
  5554. {
  5555. "url": "https://symfony.com/sponsor",
  5556. "type": "custom"
  5557. },
  5558. {
  5559. "url": "https://github.com/fabpot",
  5560. "type": "github"
  5561. },
  5562. {
  5563. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5564. "type": "tidelift"
  5565. }
  5566. ],
  5567. "time": "2022-01-02T09:53:40+00:00"
  5568. },
  5569. {
  5570. "name": "symfony/error-handler",
  5571. "version": "v4.4.41",
  5572. "source": {
  5573. "type": "git",
  5574. "url": "https://github.com/symfony/error-handler.git",
  5575. "reference": "529feb0e03133dbd5fd3707200147cc4903206da"
  5576. },
  5577. "dist": {
  5578. "type": "zip",
  5579. "url": "https://api.github.com/repos/symfony/error-handler/zipball/529feb0e03133dbd5fd3707200147cc4903206da",
  5580. "reference": "529feb0e03133dbd5fd3707200147cc4903206da",
  5581. "shasum": "",
  5582. "mirrors": [
  5583. {
  5584. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5585. "preferred": true
  5586. }
  5587. ]
  5588. },
  5589. "require": {
  5590. "php": ">=7.1.3",
  5591. "psr/log": "^1|^2|^3",
  5592. "symfony/debug": "^4.4.5",
  5593. "symfony/var-dumper": "^4.4|^5.0"
  5594. },
  5595. "require-dev": {
  5596. "symfony/http-kernel": "^4.4|^5.0",
  5597. "symfony/serializer": "^4.4|^5.0"
  5598. },
  5599. "type": "library",
  5600. "autoload": {
  5601. "psr-4": {
  5602. "Symfony\\Component\\ErrorHandler\\": ""
  5603. },
  5604. "exclude-from-classmap": [
  5605. "/Tests/"
  5606. ]
  5607. },
  5608. "notification-url": "https://packagist.org/downloads/",
  5609. "license": [
  5610. "MIT"
  5611. ],
  5612. "authors": [
  5613. {
  5614. "name": "Fabien Potencier",
  5615. "email": "fabien@symfony.com"
  5616. },
  5617. {
  5618. "name": "Symfony Community",
  5619. "homepage": "https://symfony.com/contributors"
  5620. }
  5621. ],
  5622. "description": "Provides tools to manage errors and ease debugging PHP code",
  5623. "homepage": "https://symfony.com",
  5624. "support": {
  5625. "source": "https://github.com/symfony/error-handler/tree/v4.4.41"
  5626. },
  5627. "funding": [
  5628. {
  5629. "url": "https://symfony.com/sponsor",
  5630. "type": "custom"
  5631. },
  5632. {
  5633. "url": "https://github.com/fabpot",
  5634. "type": "github"
  5635. },
  5636. {
  5637. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5638. "type": "tidelift"
  5639. }
  5640. ],
  5641. "time": "2022-04-12T15:19:55+00:00"
  5642. },
  5643. {
  5644. "name": "symfony/event-dispatcher",
  5645. "version": "v4.4.42",
  5646. "source": {
  5647. "type": "git",
  5648. "url": "https://github.com/symfony/event-dispatcher.git",
  5649. "reference": "708e761740c16b02c86e3f0c932018a06b895d40"
  5650. },
  5651. "dist": {
  5652. "type": "zip",
  5653. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/708e761740c16b02c86e3f0c932018a06b895d40",
  5654. "reference": "708e761740c16b02c86e3f0c932018a06b895d40",
  5655. "shasum": "",
  5656. "mirrors": [
  5657. {
  5658. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5659. "preferred": true
  5660. }
  5661. ]
  5662. },
  5663. "require": {
  5664. "php": ">=7.1.3",
  5665. "symfony/event-dispatcher-contracts": "^1.1",
  5666. "symfony/polyfill-php80": "^1.16"
  5667. },
  5668. "conflict": {
  5669. "symfony/dependency-injection": "<3.4"
  5670. },
  5671. "provide": {
  5672. "psr/event-dispatcher-implementation": "1.0",
  5673. "symfony/event-dispatcher-implementation": "1.1"
  5674. },
  5675. "require-dev": {
  5676. "psr/log": "^1|^2|^3",
  5677. "symfony/config": "^3.4|^4.0|^5.0",
  5678. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  5679. "symfony/error-handler": "~3.4|~4.4",
  5680. "symfony/expression-language": "^3.4|^4.0|^5.0",
  5681. "symfony/http-foundation": "^3.4|^4.0|^5.0",
  5682. "symfony/service-contracts": "^1.1|^2",
  5683. "symfony/stopwatch": "^3.4|^4.0|^5.0"
  5684. },
  5685. "suggest": {
  5686. "symfony/dependency-injection": "",
  5687. "symfony/http-kernel": ""
  5688. },
  5689. "type": "library",
  5690. "autoload": {
  5691. "psr-4": {
  5692. "Symfony\\Component\\EventDispatcher\\": ""
  5693. },
  5694. "exclude-from-classmap": [
  5695. "/Tests/"
  5696. ]
  5697. },
  5698. "notification-url": "https://packagist.org/downloads/",
  5699. "license": [
  5700. "MIT"
  5701. ],
  5702. "authors": [
  5703. {
  5704. "name": "Fabien Potencier",
  5705. "email": "fabien@symfony.com"
  5706. },
  5707. {
  5708. "name": "Symfony Community",
  5709. "homepage": "https://symfony.com/contributors"
  5710. }
  5711. ],
  5712. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  5713. "homepage": "https://symfony.com",
  5714. "support": {
  5715. "source": "https://github.com/symfony/event-dispatcher/tree/v4.4.42"
  5716. },
  5717. "funding": [
  5718. {
  5719. "url": "https://symfony.com/sponsor",
  5720. "type": "custom"
  5721. },
  5722. {
  5723. "url": "https://github.com/fabpot",
  5724. "type": "github"
  5725. },
  5726. {
  5727. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5728. "type": "tidelift"
  5729. }
  5730. ],
  5731. "time": "2022-05-05T15:33:49+00:00"
  5732. },
  5733. {
  5734. "name": "symfony/event-dispatcher-contracts",
  5735. "version": "v1.1.12",
  5736. "source": {
  5737. "type": "git",
  5738. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  5739. "reference": "1d5cd762abaa6b2a4169d3e77610193a7157129e"
  5740. },
  5741. "dist": {
  5742. "type": "zip",
  5743. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/1d5cd762abaa6b2a4169d3e77610193a7157129e",
  5744. "reference": "1d5cd762abaa6b2a4169d3e77610193a7157129e",
  5745. "shasum": "",
  5746. "mirrors": [
  5747. {
  5748. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5749. "preferred": true
  5750. }
  5751. ]
  5752. },
  5753. "require": {
  5754. "php": ">=7.1.3"
  5755. },
  5756. "suggest": {
  5757. "psr/event-dispatcher": "",
  5758. "symfony/event-dispatcher-implementation": ""
  5759. },
  5760. "type": "library",
  5761. "extra": {
  5762. "branch-alias": {
  5763. "dev-main": "1.1-dev"
  5764. },
  5765. "thanks": {
  5766. "name": "symfony/contracts",
  5767. "url": "https://github.com/symfony/contracts"
  5768. }
  5769. },
  5770. "autoload": {
  5771. "psr-4": {
  5772. "Symfony\\Contracts\\EventDispatcher\\": ""
  5773. }
  5774. },
  5775. "notification-url": "https://packagist.org/downloads/",
  5776. "license": [
  5777. "MIT"
  5778. ],
  5779. "authors": [
  5780. {
  5781. "name": "Nicolas Grekas",
  5782. "email": "p@tchwork.com"
  5783. },
  5784. {
  5785. "name": "Symfony Community",
  5786. "homepage": "https://symfony.com/contributors"
  5787. }
  5788. ],
  5789. "description": "Generic abstractions related to dispatching event",
  5790. "homepage": "https://symfony.com",
  5791. "keywords": [
  5792. "abstractions",
  5793. "contracts",
  5794. "decoupling",
  5795. "interfaces",
  5796. "interoperability",
  5797. "standards"
  5798. ],
  5799. "support": {
  5800. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v1.1.12"
  5801. },
  5802. "funding": [
  5803. {
  5804. "url": "https://symfony.com/sponsor",
  5805. "type": "custom"
  5806. },
  5807. {
  5808. "url": "https://github.com/fabpot",
  5809. "type": "github"
  5810. },
  5811. {
  5812. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5813. "type": "tidelift"
  5814. }
  5815. ],
  5816. "time": "2022-01-02T09:41:36+00:00"
  5817. },
  5818. {
  5819. "name": "symfony/filesystem",
  5820. "version": "v5.4.9",
  5821. "source": {
  5822. "type": "git",
  5823. "url": "https://github.com/symfony/filesystem.git",
  5824. "reference": "36a017fa4cce1eff1b8e8129ff53513abcef05ba"
  5825. },
  5826. "dist": {
  5827. "type": "zip",
  5828. "url": "https://api.github.com/repos/symfony/filesystem/zipball/36a017fa4cce1eff1b8e8129ff53513abcef05ba",
  5829. "reference": "36a017fa4cce1eff1b8e8129ff53513abcef05ba",
  5830. "shasum": "",
  5831. "mirrors": [
  5832. {
  5833. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5834. "preferred": true
  5835. }
  5836. ]
  5837. },
  5838. "require": {
  5839. "php": ">=7.2.5",
  5840. "symfony/polyfill-ctype": "~1.8",
  5841. "symfony/polyfill-mbstring": "~1.8",
  5842. "symfony/polyfill-php80": "^1.16"
  5843. },
  5844. "type": "library",
  5845. "autoload": {
  5846. "psr-4": {
  5847. "Symfony\\Component\\Filesystem\\": ""
  5848. },
  5849. "exclude-from-classmap": [
  5850. "/Tests/"
  5851. ]
  5852. },
  5853. "notification-url": "https://packagist.org/downloads/",
  5854. "license": [
  5855. "MIT"
  5856. ],
  5857. "authors": [
  5858. {
  5859. "name": "Fabien Potencier",
  5860. "email": "fabien@symfony.com"
  5861. },
  5862. {
  5863. "name": "Symfony Community",
  5864. "homepage": "https://symfony.com/contributors"
  5865. }
  5866. ],
  5867. "description": "Provides basic utilities for the filesystem",
  5868. "homepage": "https://symfony.com",
  5869. "support": {
  5870. "source": "https://github.com/symfony/filesystem/tree/v5.4.9"
  5871. },
  5872. "funding": [
  5873. {
  5874. "url": "https://symfony.com/sponsor",
  5875. "type": "custom"
  5876. },
  5877. {
  5878. "url": "https://github.com/fabpot",
  5879. "type": "github"
  5880. },
  5881. {
  5882. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5883. "type": "tidelift"
  5884. }
  5885. ],
  5886. "time": "2022-05-20T13:55:35+00:00"
  5887. },
  5888. {
  5889. "name": "symfony/finder",
  5890. "version": "v4.4.41",
  5891. "source": {
  5892. "type": "git",
  5893. "url": "https://github.com/symfony/finder.git",
  5894. "reference": "40790bdf293b462798882ef6da72bb49a4a6633a"
  5895. },
  5896. "dist": {
  5897. "type": "zip",
  5898. "url": "https://api.github.com/repos/symfony/finder/zipball/40790bdf293b462798882ef6da72bb49a4a6633a",
  5899. "reference": "40790bdf293b462798882ef6da72bb49a4a6633a",
  5900. "shasum": "",
  5901. "mirrors": [
  5902. {
  5903. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5904. "preferred": true
  5905. }
  5906. ]
  5907. },
  5908. "require": {
  5909. "php": ">=7.1.3",
  5910. "symfony/polyfill-php80": "^1.16"
  5911. },
  5912. "type": "library",
  5913. "autoload": {
  5914. "psr-4": {
  5915. "Symfony\\Component\\Finder\\": ""
  5916. },
  5917. "exclude-from-classmap": [
  5918. "/Tests/"
  5919. ]
  5920. },
  5921. "notification-url": "https://packagist.org/downloads/",
  5922. "license": [
  5923. "MIT"
  5924. ],
  5925. "authors": [
  5926. {
  5927. "name": "Fabien Potencier",
  5928. "email": "fabien@symfony.com"
  5929. },
  5930. {
  5931. "name": "Symfony Community",
  5932. "homepage": "https://symfony.com/contributors"
  5933. }
  5934. ],
  5935. "description": "Finds files and directories via an intuitive fluent interface",
  5936. "homepage": "https://symfony.com",
  5937. "support": {
  5938. "source": "https://github.com/symfony/finder/tree/v4.4.41"
  5939. },
  5940. "funding": [
  5941. {
  5942. "url": "https://symfony.com/sponsor",
  5943. "type": "custom"
  5944. },
  5945. {
  5946. "url": "https://github.com/fabpot",
  5947. "type": "github"
  5948. },
  5949. {
  5950. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5951. "type": "tidelift"
  5952. }
  5953. ],
  5954. "time": "2022-04-14T15:36:10+00:00"
  5955. },
  5956. {
  5957. "name": "symfony/http-client-contracts",
  5958. "version": "v2.5.1",
  5959. "source": {
  5960. "type": "git",
  5961. "url": "https://github.com/symfony/http-client-contracts.git",
  5962. "reference": "1a4f708e4e87f335d1b1be6148060739152f0bd5"
  5963. },
  5964. "dist": {
  5965. "type": "zip",
  5966. "url": "https://api.github.com/repos/symfony/http-client-contracts/zipball/1a4f708e4e87f335d1b1be6148060739152f0bd5",
  5967. "reference": "1a4f708e4e87f335d1b1be6148060739152f0bd5",
  5968. "shasum": "",
  5969. "mirrors": [
  5970. {
  5971. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5972. "preferred": true
  5973. }
  5974. ]
  5975. },
  5976. "require": {
  5977. "php": ">=7.2.5"
  5978. },
  5979. "suggest": {
  5980. "symfony/http-client-implementation": ""
  5981. },
  5982. "type": "library",
  5983. "extra": {
  5984. "branch-alias": {
  5985. "dev-main": "2.5-dev"
  5986. },
  5987. "thanks": {
  5988. "name": "symfony/contracts",
  5989. "url": "https://github.com/symfony/contracts"
  5990. }
  5991. },
  5992. "autoload": {
  5993. "psr-4": {
  5994. "Symfony\\Contracts\\HttpClient\\": ""
  5995. }
  5996. },
  5997. "notification-url": "https://packagist.org/downloads/",
  5998. "license": [
  5999. "MIT"
  6000. ],
  6001. "authors": [
  6002. {
  6003. "name": "Nicolas Grekas",
  6004. "email": "p@tchwork.com"
  6005. },
  6006. {
  6007. "name": "Symfony Community",
  6008. "homepage": "https://symfony.com/contributors"
  6009. }
  6010. ],
  6011. "description": "Generic abstractions related to HTTP clients",
  6012. "homepage": "https://symfony.com",
  6013. "keywords": [
  6014. "abstractions",
  6015. "contracts",
  6016. "decoupling",
  6017. "interfaces",
  6018. "interoperability",
  6019. "standards"
  6020. ],
  6021. "support": {
  6022. "source": "https://github.com/symfony/http-client-contracts/tree/v2.5.1"
  6023. },
  6024. "funding": [
  6025. {
  6026. "url": "https://symfony.com/sponsor",
  6027. "type": "custom"
  6028. },
  6029. {
  6030. "url": "https://github.com/fabpot",
  6031. "type": "github"
  6032. },
  6033. {
  6034. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6035. "type": "tidelift"
  6036. }
  6037. ],
  6038. "time": "2022-03-13T20:07:29+00:00"
  6039. },
  6040. {
  6041. "name": "symfony/http-foundation",
  6042. "version": "v4.4.42",
  6043. "source": {
  6044. "type": "git",
  6045. "url": "https://github.com/symfony/http-foundation.git",
  6046. "reference": "8e87b3ec23ebbcf7440d91dec8f7ca70dd591eb3"
  6047. },
  6048. "dist": {
  6049. "type": "zip",
  6050. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/8e87b3ec23ebbcf7440d91dec8f7ca70dd591eb3",
  6051. "reference": "8e87b3ec23ebbcf7440d91dec8f7ca70dd591eb3",
  6052. "shasum": "",
  6053. "mirrors": [
  6054. {
  6055. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6056. "preferred": true
  6057. }
  6058. ]
  6059. },
  6060. "require": {
  6061. "php": ">=7.1.3",
  6062. "symfony/mime": "^4.3|^5.0",
  6063. "symfony/polyfill-mbstring": "~1.1",
  6064. "symfony/polyfill-php80": "^1.16"
  6065. },
  6066. "require-dev": {
  6067. "predis/predis": "~1.0",
  6068. "symfony/expression-language": "^3.4|^4.0|^5.0"
  6069. },
  6070. "type": "library",
  6071. "autoload": {
  6072. "psr-4": {
  6073. "Symfony\\Component\\HttpFoundation\\": ""
  6074. },
  6075. "exclude-from-classmap": [
  6076. "/Tests/"
  6077. ]
  6078. },
  6079. "notification-url": "https://packagist.org/downloads/",
  6080. "license": [
  6081. "MIT"
  6082. ],
  6083. "authors": [
  6084. {
  6085. "name": "Fabien Potencier",
  6086. "email": "fabien@symfony.com"
  6087. },
  6088. {
  6089. "name": "Symfony Community",
  6090. "homepage": "https://symfony.com/contributors"
  6091. }
  6092. ],
  6093. "description": "Defines an object-oriented layer for the HTTP specification",
  6094. "homepage": "https://symfony.com",
  6095. "support": {
  6096. "source": "https://github.com/symfony/http-foundation/tree/v4.4.42"
  6097. },
  6098. "funding": [
  6099. {
  6100. "url": "https://symfony.com/sponsor",
  6101. "type": "custom"
  6102. },
  6103. {
  6104. "url": "https://github.com/fabpot",
  6105. "type": "github"
  6106. },
  6107. {
  6108. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6109. "type": "tidelift"
  6110. }
  6111. ],
  6112. "time": "2022-05-17T11:15:18+00:00"
  6113. },
  6114. {
  6115. "name": "symfony/http-kernel",
  6116. "version": "v4.4.42",
  6117. "source": {
  6118. "type": "git",
  6119. "url": "https://github.com/symfony/http-kernel.git",
  6120. "reference": "04181de9459df639512dadf83d544ce12edd6776"
  6121. },
  6122. "dist": {
  6123. "type": "zip",
  6124. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/04181de9459df639512dadf83d544ce12edd6776",
  6125. "reference": "04181de9459df639512dadf83d544ce12edd6776",
  6126. "shasum": "",
  6127. "mirrors": [
  6128. {
  6129. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6130. "preferred": true
  6131. }
  6132. ]
  6133. },
  6134. "require": {
  6135. "php": ">=7.1.3",
  6136. "psr/log": "^1|^2",
  6137. "symfony/error-handler": "^4.4",
  6138. "symfony/event-dispatcher": "^4.4",
  6139. "symfony/http-client-contracts": "^1.1|^2",
  6140. "symfony/http-foundation": "^4.4.30|^5.3.7",
  6141. "symfony/polyfill-ctype": "^1.8",
  6142. "symfony/polyfill-php73": "^1.9",
  6143. "symfony/polyfill-php80": "^1.16"
  6144. },
  6145. "conflict": {
  6146. "symfony/browser-kit": "<4.3",
  6147. "symfony/config": "<3.4",
  6148. "symfony/console": ">=5",
  6149. "symfony/dependency-injection": "<4.3",
  6150. "symfony/translation": "<4.2",
  6151. "twig/twig": "<1.43|<2.13,>=2"
  6152. },
  6153. "provide": {
  6154. "psr/log-implementation": "1.0|2.0"
  6155. },
  6156. "require-dev": {
  6157. "psr/cache": "^1.0|^2.0|^3.0",
  6158. "symfony/browser-kit": "^4.3|^5.0",
  6159. "symfony/config": "^3.4|^4.0|^5.0",
  6160. "symfony/console": "^3.4|^4.0",
  6161. "symfony/css-selector": "^3.4|^4.0|^5.0",
  6162. "symfony/dependency-injection": "^4.3|^5.0",
  6163. "symfony/dom-crawler": "^3.4|^4.0|^5.0",
  6164. "symfony/expression-language": "^3.4|^4.0|^5.0",
  6165. "symfony/finder": "^3.4|^4.0|^5.0",
  6166. "symfony/process": "^3.4|^4.0|^5.0",
  6167. "symfony/routing": "^3.4|^4.0|^5.0",
  6168. "symfony/stopwatch": "^3.4|^4.0|^5.0",
  6169. "symfony/templating": "^3.4|^4.0|^5.0",
  6170. "symfony/translation": "^4.2|^5.0",
  6171. "symfony/translation-contracts": "^1.1|^2",
  6172. "twig/twig": "^1.43|^2.13|^3.0.4"
  6173. },
  6174. "suggest": {
  6175. "symfony/browser-kit": "",
  6176. "symfony/config": "",
  6177. "symfony/console": "",
  6178. "symfony/dependency-injection": ""
  6179. },
  6180. "type": "library",
  6181. "autoload": {
  6182. "psr-4": {
  6183. "Symfony\\Component\\HttpKernel\\": ""
  6184. },
  6185. "exclude-from-classmap": [
  6186. "/Tests/"
  6187. ]
  6188. },
  6189. "notification-url": "https://packagist.org/downloads/",
  6190. "license": [
  6191. "MIT"
  6192. ],
  6193. "authors": [
  6194. {
  6195. "name": "Fabien Potencier",
  6196. "email": "fabien@symfony.com"
  6197. },
  6198. {
  6199. "name": "Symfony Community",
  6200. "homepage": "https://symfony.com/contributors"
  6201. }
  6202. ],
  6203. "description": "Provides a structured process for converting a Request into a Response",
  6204. "homepage": "https://symfony.com",
  6205. "support": {
  6206. "source": "https://github.com/symfony/http-kernel/tree/v4.4.42"
  6207. },
  6208. "funding": [
  6209. {
  6210. "url": "https://symfony.com/sponsor",
  6211. "type": "custom"
  6212. },
  6213. {
  6214. "url": "https://github.com/fabpot",
  6215. "type": "github"
  6216. },
  6217. {
  6218. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6219. "type": "tidelift"
  6220. }
  6221. ],
  6222. "time": "2022-05-27T07:04:21+00:00"
  6223. },
  6224. {
  6225. "name": "symfony/mime",
  6226. "version": "v5.4.9",
  6227. "source": {
  6228. "type": "git",
  6229. "url": "https://github.com/symfony/mime.git",
  6230. "reference": "2b3802a24e48d0cfccf885173d2aac91e73df92e"
  6231. },
  6232. "dist": {
  6233. "type": "zip",
  6234. "url": "https://api.github.com/repos/symfony/mime/zipball/2b3802a24e48d0cfccf885173d2aac91e73df92e",
  6235. "reference": "2b3802a24e48d0cfccf885173d2aac91e73df92e",
  6236. "shasum": "",
  6237. "mirrors": [
  6238. {
  6239. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6240. "preferred": true
  6241. }
  6242. ]
  6243. },
  6244. "require": {
  6245. "php": ">=7.2.5",
  6246. "symfony/deprecation-contracts": "^2.1|^3",
  6247. "symfony/polyfill-intl-idn": "^1.10",
  6248. "symfony/polyfill-mbstring": "^1.0",
  6249. "symfony/polyfill-php80": "^1.16"
  6250. },
  6251. "conflict": {
  6252. "egulias/email-validator": "~3.0.0",
  6253. "phpdocumentor/reflection-docblock": "<3.2.2",
  6254. "phpdocumentor/type-resolver": "<1.4.0",
  6255. "symfony/mailer": "<4.4"
  6256. },
  6257. "require-dev": {
  6258. "egulias/email-validator": "^2.1.10|^3.1",
  6259. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  6260. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  6261. "symfony/property-access": "^4.4|^5.1|^6.0",
  6262. "symfony/property-info": "^4.4|^5.1|^6.0",
  6263. "symfony/serializer": "^5.2|^6.0"
  6264. },
  6265. "type": "library",
  6266. "autoload": {
  6267. "psr-4": {
  6268. "Symfony\\Component\\Mime\\": ""
  6269. },
  6270. "exclude-from-classmap": [
  6271. "/Tests/"
  6272. ]
  6273. },
  6274. "notification-url": "https://packagist.org/downloads/",
  6275. "license": [
  6276. "MIT"
  6277. ],
  6278. "authors": [
  6279. {
  6280. "name": "Fabien Potencier",
  6281. "email": "fabien@symfony.com"
  6282. },
  6283. {
  6284. "name": "Symfony Community",
  6285. "homepage": "https://symfony.com/contributors"
  6286. }
  6287. ],
  6288. "description": "Allows manipulating MIME messages",
  6289. "homepage": "https://symfony.com",
  6290. "keywords": [
  6291. "mime",
  6292. "mime-type"
  6293. ],
  6294. "support": {
  6295. "source": "https://github.com/symfony/mime/tree/v5.4.9"
  6296. },
  6297. "funding": [
  6298. {
  6299. "url": "https://symfony.com/sponsor",
  6300. "type": "custom"
  6301. },
  6302. {
  6303. "url": "https://github.com/fabpot",
  6304. "type": "github"
  6305. },
  6306. {
  6307. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6308. "type": "tidelift"
  6309. }
  6310. ],
  6311. "time": "2022-05-21T10:24:18+00:00"
  6312. },
  6313. {
  6314. "name": "symfony/polyfill-ctype",
  6315. "version": "v1.26.0",
  6316. "source": {
  6317. "type": "git",
  6318. "url": "https://github.com/symfony/polyfill-ctype.git",
  6319. "reference": "6fd1b9a79f6e3cf65f9e679b23af304cd9e010d4"
  6320. },
  6321. "dist": {
  6322. "type": "zip",
  6323. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/6fd1b9a79f6e3cf65f9e679b23af304cd9e010d4",
  6324. "reference": "6fd1b9a79f6e3cf65f9e679b23af304cd9e010d4",
  6325. "shasum": "",
  6326. "mirrors": [
  6327. {
  6328. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6329. "preferred": true
  6330. }
  6331. ]
  6332. },
  6333. "require": {
  6334. "php": ">=7.1"
  6335. },
  6336. "provide": {
  6337. "ext-ctype": "*"
  6338. },
  6339. "suggest": {
  6340. "ext-ctype": "For best performance"
  6341. },
  6342. "type": "library",
  6343. "extra": {
  6344. "branch-alias": {
  6345. "dev-main": "1.26-dev"
  6346. },
  6347. "thanks": {
  6348. "name": "symfony/polyfill",
  6349. "url": "https://github.com/symfony/polyfill"
  6350. }
  6351. },
  6352. "autoload": {
  6353. "files": [
  6354. "bootstrap.php"
  6355. ],
  6356. "psr-4": {
  6357. "Symfony\\Polyfill\\Ctype\\": ""
  6358. }
  6359. },
  6360. "notification-url": "https://packagist.org/downloads/",
  6361. "license": [
  6362. "MIT"
  6363. ],
  6364. "authors": [
  6365. {
  6366. "name": "Gert de Pagter",
  6367. "email": "BackEndTea@gmail.com"
  6368. },
  6369. {
  6370. "name": "Symfony Community",
  6371. "homepage": "https://symfony.com/contributors"
  6372. }
  6373. ],
  6374. "description": "Symfony polyfill for ctype functions",
  6375. "homepage": "https://symfony.com",
  6376. "keywords": [
  6377. "compatibility",
  6378. "ctype",
  6379. "polyfill",
  6380. "portable"
  6381. ],
  6382. "support": {
  6383. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.26.0"
  6384. },
  6385. "funding": [
  6386. {
  6387. "url": "https://symfony.com/sponsor",
  6388. "type": "custom"
  6389. },
  6390. {
  6391. "url": "https://github.com/fabpot",
  6392. "type": "github"
  6393. },
  6394. {
  6395. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6396. "type": "tidelift"
  6397. }
  6398. ],
  6399. "time": "2022-05-24T11:49:31+00:00"
  6400. },
  6401. {
  6402. "name": "symfony/polyfill-iconv",
  6403. "version": "v1.26.0",
  6404. "source": {
  6405. "type": "git",
  6406. "url": "https://github.com/symfony/polyfill-iconv.git",
  6407. "reference": "143f1881e655bebca1312722af8068de235ae5dc"
  6408. },
  6409. "dist": {
  6410. "type": "zip",
  6411. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/143f1881e655bebca1312722af8068de235ae5dc",
  6412. "reference": "143f1881e655bebca1312722af8068de235ae5dc",
  6413. "shasum": "",
  6414. "mirrors": [
  6415. {
  6416. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6417. "preferred": true
  6418. }
  6419. ]
  6420. },
  6421. "require": {
  6422. "php": ">=7.1"
  6423. },
  6424. "provide": {
  6425. "ext-iconv": "*"
  6426. },
  6427. "suggest": {
  6428. "ext-iconv": "For best performance"
  6429. },
  6430. "type": "library",
  6431. "extra": {
  6432. "branch-alias": {
  6433. "dev-main": "1.26-dev"
  6434. },
  6435. "thanks": {
  6436. "name": "symfony/polyfill",
  6437. "url": "https://github.com/symfony/polyfill"
  6438. }
  6439. },
  6440. "autoload": {
  6441. "files": [
  6442. "bootstrap.php"
  6443. ],
  6444. "psr-4": {
  6445. "Symfony\\Polyfill\\Iconv\\": ""
  6446. }
  6447. },
  6448. "notification-url": "https://packagist.org/downloads/",
  6449. "license": [
  6450. "MIT"
  6451. ],
  6452. "authors": [
  6453. {
  6454. "name": "Nicolas Grekas",
  6455. "email": "p@tchwork.com"
  6456. },
  6457. {
  6458. "name": "Symfony Community",
  6459. "homepage": "https://symfony.com/contributors"
  6460. }
  6461. ],
  6462. "description": "Symfony polyfill for the Iconv extension",
  6463. "homepage": "https://symfony.com",
  6464. "keywords": [
  6465. "compatibility",
  6466. "iconv",
  6467. "polyfill",
  6468. "portable",
  6469. "shim"
  6470. ],
  6471. "support": {
  6472. "source": "https://github.com/symfony/polyfill-iconv/tree/v1.26.0"
  6473. },
  6474. "funding": [
  6475. {
  6476. "url": "https://symfony.com/sponsor",
  6477. "type": "custom"
  6478. },
  6479. {
  6480. "url": "https://github.com/fabpot",
  6481. "type": "github"
  6482. },
  6483. {
  6484. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6485. "type": "tidelift"
  6486. }
  6487. ],
  6488. "time": "2022-05-24T11:49:31+00:00"
  6489. },
  6490. {
  6491. "name": "symfony/polyfill-intl-idn",
  6492. "version": "v1.25.0",
  6493. "source": {
  6494. "type": "git",
  6495. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  6496. "reference": "749045c69efb97c70d25d7463abba812e91f3a44"
  6497. },
  6498. "dist": {
  6499. "type": "zip",
  6500. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/749045c69efb97c70d25d7463abba812e91f3a44",
  6501. "reference": "749045c69efb97c70d25d7463abba812e91f3a44",
  6502. "shasum": "",
  6503. "mirrors": [
  6504. {
  6505. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6506. "preferred": true
  6507. }
  6508. ]
  6509. },
  6510. "require": {
  6511. "php": ">=7.1",
  6512. "symfony/polyfill-intl-normalizer": "^1.10",
  6513. "symfony/polyfill-php72": "^1.10"
  6514. },
  6515. "suggest": {
  6516. "ext-intl": "For best performance"
  6517. },
  6518. "type": "library",
  6519. "extra": {
  6520. "branch-alias": {
  6521. "dev-main": "1.23-dev"
  6522. },
  6523. "thanks": {
  6524. "name": "symfony/polyfill",
  6525. "url": "https://github.com/symfony/polyfill"
  6526. }
  6527. },
  6528. "autoload": {
  6529. "files": [
  6530. "bootstrap.php"
  6531. ],
  6532. "psr-4": {
  6533. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  6534. }
  6535. },
  6536. "notification-url": "https://packagist.org/downloads/",
  6537. "license": [
  6538. "MIT"
  6539. ],
  6540. "authors": [
  6541. {
  6542. "name": "Laurent Bassin",
  6543. "email": "laurent@bassin.info"
  6544. },
  6545. {
  6546. "name": "Trevor Rowbotham",
  6547. "email": "trevor.rowbotham@pm.me"
  6548. },
  6549. {
  6550. "name": "Symfony Community",
  6551. "homepage": "https://symfony.com/contributors"
  6552. }
  6553. ],
  6554. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  6555. "homepage": "https://symfony.com",
  6556. "keywords": [
  6557. "compatibility",
  6558. "idn",
  6559. "intl",
  6560. "polyfill",
  6561. "portable",
  6562. "shim"
  6563. ],
  6564. "support": {
  6565. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.25.0"
  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-09-14T14:02:44+00:00"
  6582. },
  6583. {
  6584. "name": "symfony/polyfill-intl-normalizer",
  6585. "version": "v1.26.0",
  6586. "source": {
  6587. "type": "git",
  6588. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  6589. "reference": "219aa369ceff116e673852dce47c3a41794c14bd"
  6590. },
  6591. "dist": {
  6592. "type": "zip",
  6593. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/219aa369ceff116e673852dce47c3a41794c14bd",
  6594. "reference": "219aa369ceff116e673852dce47c3a41794c14bd",
  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.1"
  6605. },
  6606. "suggest": {
  6607. "ext-intl": "For best performance"
  6608. },
  6609. "type": "library",
  6610. "extra": {
  6611. "branch-alias": {
  6612. "dev-main": "1.26-dev"
  6613. },
  6614. "thanks": {
  6615. "name": "symfony/polyfill",
  6616. "url": "https://github.com/symfony/polyfill"
  6617. }
  6618. },
  6619. "autoload": {
  6620. "files": [
  6621. "bootstrap.php"
  6622. ],
  6623. "psr-4": {
  6624. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  6625. },
  6626. "classmap": [
  6627. "Resources/stubs"
  6628. ]
  6629. },
  6630. "notification-url": "https://packagist.org/downloads/",
  6631. "license": [
  6632. "MIT"
  6633. ],
  6634. "authors": [
  6635. {
  6636. "name": "Nicolas Grekas",
  6637. "email": "p@tchwork.com"
  6638. },
  6639. {
  6640. "name": "Symfony Community",
  6641. "homepage": "https://symfony.com/contributors"
  6642. }
  6643. ],
  6644. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  6645. "homepage": "https://symfony.com",
  6646. "keywords": [
  6647. "compatibility",
  6648. "intl",
  6649. "normalizer",
  6650. "polyfill",
  6651. "portable",
  6652. "shim"
  6653. ],
  6654. "support": {
  6655. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.26.0"
  6656. },
  6657. "funding": [
  6658. {
  6659. "url": "https://symfony.com/sponsor",
  6660. "type": "custom"
  6661. },
  6662. {
  6663. "url": "https://github.com/fabpot",
  6664. "type": "github"
  6665. },
  6666. {
  6667. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6668. "type": "tidelift"
  6669. }
  6670. ],
  6671. "time": "2022-05-24T11:49:31+00:00"
  6672. },
  6673. {
  6674. "name": "symfony/polyfill-mbstring",
  6675. "version": "v1.26.0",
  6676. "source": {
  6677. "type": "git",
  6678. "url": "https://github.com/symfony/polyfill-mbstring.git",
  6679. "reference": "9344f9cb97f3b19424af1a21a3b0e75b0a7d8d7e"
  6680. },
  6681. "dist": {
  6682. "type": "zip",
  6683. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/9344f9cb97f3b19424af1a21a3b0e75b0a7d8d7e",
  6684. "reference": "9344f9cb97f3b19424af1a21a3b0e75b0a7d8d7e",
  6685. "shasum": "",
  6686. "mirrors": [
  6687. {
  6688. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6689. "preferred": true
  6690. }
  6691. ]
  6692. },
  6693. "require": {
  6694. "php": ">=7.1"
  6695. },
  6696. "provide": {
  6697. "ext-mbstring": "*"
  6698. },
  6699. "suggest": {
  6700. "ext-mbstring": "For best performance"
  6701. },
  6702. "type": "library",
  6703. "extra": {
  6704. "branch-alias": {
  6705. "dev-main": "1.26-dev"
  6706. },
  6707. "thanks": {
  6708. "name": "symfony/polyfill",
  6709. "url": "https://github.com/symfony/polyfill"
  6710. }
  6711. },
  6712. "autoload": {
  6713. "files": [
  6714. "bootstrap.php"
  6715. ],
  6716. "psr-4": {
  6717. "Symfony\\Polyfill\\Mbstring\\": ""
  6718. }
  6719. },
  6720. "notification-url": "https://packagist.org/downloads/",
  6721. "license": [
  6722. "MIT"
  6723. ],
  6724. "authors": [
  6725. {
  6726. "name": "Nicolas Grekas",
  6727. "email": "p@tchwork.com"
  6728. },
  6729. {
  6730. "name": "Symfony Community",
  6731. "homepage": "https://symfony.com/contributors"
  6732. }
  6733. ],
  6734. "description": "Symfony polyfill for the Mbstring extension",
  6735. "homepage": "https://symfony.com",
  6736. "keywords": [
  6737. "compatibility",
  6738. "mbstring",
  6739. "polyfill",
  6740. "portable",
  6741. "shim"
  6742. ],
  6743. "support": {
  6744. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.26.0"
  6745. },
  6746. "funding": [
  6747. {
  6748. "url": "https://symfony.com/sponsor",
  6749. "type": "custom"
  6750. },
  6751. {
  6752. "url": "https://github.com/fabpot",
  6753. "type": "github"
  6754. },
  6755. {
  6756. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6757. "type": "tidelift"
  6758. }
  6759. ],
  6760. "time": "2022-05-24T11:49:31+00:00"
  6761. },
  6762. {
  6763. "name": "symfony/polyfill-php56",
  6764. "version": "v1.20.0",
  6765. "source": {
  6766. "type": "git",
  6767. "url": "https://github.com/symfony/polyfill-php56.git",
  6768. "reference": "54b8cd7e6c1643d78d011f3be89f3ef1f9f4c675"
  6769. },
  6770. "dist": {
  6771. "type": "zip",
  6772. "url": "https://api.github.com/repos/symfony/polyfill-php56/zipball/54b8cd7e6c1643d78d011f3be89f3ef1f9f4c675",
  6773. "reference": "54b8cd7e6c1643d78d011f3be89f3ef1f9f4c675",
  6774. "shasum": "",
  6775. "mirrors": [
  6776. {
  6777. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6778. "preferred": true
  6779. }
  6780. ]
  6781. },
  6782. "require": {
  6783. "php": ">=7.1"
  6784. },
  6785. "type": "metapackage",
  6786. "extra": {
  6787. "branch-alias": {
  6788. "dev-main": "1.20-dev"
  6789. },
  6790. "thanks": {
  6791. "name": "symfony/polyfill",
  6792. "url": "https://github.com/symfony/polyfill"
  6793. }
  6794. },
  6795. "notification-url": "https://packagist.org/downloads/",
  6796. "license": [
  6797. "MIT"
  6798. ],
  6799. "authors": [
  6800. {
  6801. "name": "Nicolas Grekas",
  6802. "email": "p@tchwork.com"
  6803. },
  6804. {
  6805. "name": "Symfony Community",
  6806. "homepage": "https://symfony.com/contributors"
  6807. }
  6808. ],
  6809. "description": "Symfony polyfill backporting some PHP 5.6+ features to lower PHP versions",
  6810. "homepage": "https://symfony.com",
  6811. "keywords": [
  6812. "compatibility",
  6813. "polyfill",
  6814. "portable",
  6815. "shim"
  6816. ],
  6817. "support": {
  6818. "source": "https://github.com/symfony/polyfill-php56/tree/v1.20.0"
  6819. },
  6820. "funding": [
  6821. {
  6822. "url": "https://symfony.com/sponsor",
  6823. "type": "custom"
  6824. },
  6825. {
  6826. "url": "https://github.com/fabpot",
  6827. "type": "github"
  6828. },
  6829. {
  6830. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6831. "type": "tidelift"
  6832. }
  6833. ],
  6834. "time": "2020-10-23T14:02:19+00:00"
  6835. },
  6836. {
  6837. "name": "symfony/polyfill-php72",
  6838. "version": "v1.26.0",
  6839. "source": {
  6840. "type": "git",
  6841. "url": "https://github.com/symfony/polyfill-php72.git",
  6842. "reference": "bf44a9fd41feaac72b074de600314a93e2ae78e2"
  6843. },
  6844. "dist": {
  6845. "type": "zip",
  6846. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/bf44a9fd41feaac72b074de600314a93e2ae78e2",
  6847. "reference": "bf44a9fd41feaac72b074de600314a93e2ae78e2",
  6848. "shasum": "",
  6849. "mirrors": [
  6850. {
  6851. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6852. "preferred": true
  6853. }
  6854. ]
  6855. },
  6856. "require": {
  6857. "php": ">=7.1"
  6858. },
  6859. "type": "library",
  6860. "extra": {
  6861. "branch-alias": {
  6862. "dev-main": "1.26-dev"
  6863. },
  6864. "thanks": {
  6865. "name": "symfony/polyfill",
  6866. "url": "https://github.com/symfony/polyfill"
  6867. }
  6868. },
  6869. "autoload": {
  6870. "files": [
  6871. "bootstrap.php"
  6872. ],
  6873. "psr-4": {
  6874. "Symfony\\Polyfill\\Php72\\": ""
  6875. }
  6876. },
  6877. "notification-url": "https://packagist.org/downloads/",
  6878. "license": [
  6879. "MIT"
  6880. ],
  6881. "authors": [
  6882. {
  6883. "name": "Nicolas Grekas",
  6884. "email": "p@tchwork.com"
  6885. },
  6886. {
  6887. "name": "Symfony Community",
  6888. "homepage": "https://symfony.com/contributors"
  6889. }
  6890. ],
  6891. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  6892. "homepage": "https://symfony.com",
  6893. "keywords": [
  6894. "compatibility",
  6895. "polyfill",
  6896. "portable",
  6897. "shim"
  6898. ],
  6899. "support": {
  6900. "source": "https://github.com/symfony/polyfill-php72/tree/v1.26.0"
  6901. },
  6902. "funding": [
  6903. {
  6904. "url": "https://symfony.com/sponsor",
  6905. "type": "custom"
  6906. },
  6907. {
  6908. "url": "https://github.com/fabpot",
  6909. "type": "github"
  6910. },
  6911. {
  6912. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6913. "type": "tidelift"
  6914. }
  6915. ],
  6916. "time": "2022-05-24T11:49:31+00:00"
  6917. },
  6918. {
  6919. "name": "symfony/polyfill-php73",
  6920. "version": "v1.26.0",
  6921. "source": {
  6922. "type": "git",
  6923. "url": "https://github.com/symfony/polyfill-php73.git",
  6924. "reference": "e440d35fa0286f77fb45b79a03fedbeda9307e85"
  6925. },
  6926. "dist": {
  6927. "type": "zip",
  6928. "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/e440d35fa0286f77fb45b79a03fedbeda9307e85",
  6929. "reference": "e440d35fa0286f77fb45b79a03fedbeda9307e85",
  6930. "shasum": "",
  6931. "mirrors": [
  6932. {
  6933. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6934. "preferred": true
  6935. }
  6936. ]
  6937. },
  6938. "require": {
  6939. "php": ">=7.1"
  6940. },
  6941. "type": "library",
  6942. "extra": {
  6943. "branch-alias": {
  6944. "dev-main": "1.26-dev"
  6945. },
  6946. "thanks": {
  6947. "name": "symfony/polyfill",
  6948. "url": "https://github.com/symfony/polyfill"
  6949. }
  6950. },
  6951. "autoload": {
  6952. "files": [
  6953. "bootstrap.php"
  6954. ],
  6955. "psr-4": {
  6956. "Symfony\\Polyfill\\Php73\\": ""
  6957. },
  6958. "classmap": [
  6959. "Resources/stubs"
  6960. ]
  6961. },
  6962. "notification-url": "https://packagist.org/downloads/",
  6963. "license": [
  6964. "MIT"
  6965. ],
  6966. "authors": [
  6967. {
  6968. "name": "Nicolas Grekas",
  6969. "email": "p@tchwork.com"
  6970. },
  6971. {
  6972. "name": "Symfony Community",
  6973. "homepage": "https://symfony.com/contributors"
  6974. }
  6975. ],
  6976. "description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions",
  6977. "homepage": "https://symfony.com",
  6978. "keywords": [
  6979. "compatibility",
  6980. "polyfill",
  6981. "portable",
  6982. "shim"
  6983. ],
  6984. "support": {
  6985. "source": "https://github.com/symfony/polyfill-php73/tree/v1.26.0"
  6986. },
  6987. "funding": [
  6988. {
  6989. "url": "https://symfony.com/sponsor",
  6990. "type": "custom"
  6991. },
  6992. {
  6993. "url": "https://github.com/fabpot",
  6994. "type": "github"
  6995. },
  6996. {
  6997. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6998. "type": "tidelift"
  6999. }
  7000. ],
  7001. "time": "2022-05-24T11:49:31+00:00"
  7002. },
  7003. {
  7004. "name": "symfony/polyfill-php80",
  7005. "version": "v1.26.0",
  7006. "source": {
  7007. "type": "git",
  7008. "url": "https://github.com/symfony/polyfill-php80.git",
  7009. "reference": "cfa0ae98841b9e461207c13ab093d76b0fa7bace"
  7010. },
  7011. "dist": {
  7012. "type": "zip",
  7013. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/cfa0ae98841b9e461207c13ab093d76b0fa7bace",
  7014. "reference": "cfa0ae98841b9e461207c13ab093d76b0fa7bace",
  7015. "shasum": "",
  7016. "mirrors": [
  7017. {
  7018. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7019. "preferred": true
  7020. }
  7021. ]
  7022. },
  7023. "require": {
  7024. "php": ">=7.1"
  7025. },
  7026. "type": "library",
  7027. "extra": {
  7028. "branch-alias": {
  7029. "dev-main": "1.26-dev"
  7030. },
  7031. "thanks": {
  7032. "name": "symfony/polyfill",
  7033. "url": "https://github.com/symfony/polyfill"
  7034. }
  7035. },
  7036. "autoload": {
  7037. "files": [
  7038. "bootstrap.php"
  7039. ],
  7040. "psr-4": {
  7041. "Symfony\\Polyfill\\Php80\\": ""
  7042. },
  7043. "classmap": [
  7044. "Resources/stubs"
  7045. ]
  7046. },
  7047. "notification-url": "https://packagist.org/downloads/",
  7048. "license": [
  7049. "MIT"
  7050. ],
  7051. "authors": [
  7052. {
  7053. "name": "Ion Bazan",
  7054. "email": "ion.bazan@gmail.com"
  7055. },
  7056. {
  7057. "name": "Nicolas Grekas",
  7058. "email": "p@tchwork.com"
  7059. },
  7060. {
  7061. "name": "Symfony Community",
  7062. "homepage": "https://symfony.com/contributors"
  7063. }
  7064. ],
  7065. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  7066. "homepage": "https://symfony.com",
  7067. "keywords": [
  7068. "compatibility",
  7069. "polyfill",
  7070. "portable",
  7071. "shim"
  7072. ],
  7073. "support": {
  7074. "source": "https://github.com/symfony/polyfill-php80/tree/v1.26.0"
  7075. },
  7076. "funding": [
  7077. {
  7078. "url": "https://symfony.com/sponsor",
  7079. "type": "custom"
  7080. },
  7081. {
  7082. "url": "https://github.com/fabpot",
  7083. "type": "github"
  7084. },
  7085. {
  7086. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7087. "type": "tidelift"
  7088. }
  7089. ],
  7090. "time": "2022-05-10T07:21:04+00:00"
  7091. },
  7092. {
  7093. "name": "symfony/process",
  7094. "version": "v4.4.41",
  7095. "source": {
  7096. "type": "git",
  7097. "url": "https://github.com/symfony/process.git",
  7098. "reference": "9eedd60225506d56e42210a70c21bb80ca8456ce"
  7099. },
  7100. "dist": {
  7101. "type": "zip",
  7102. "url": "https://api.github.com/repos/symfony/process/zipball/9eedd60225506d56e42210a70c21bb80ca8456ce",
  7103. "reference": "9eedd60225506d56e42210a70c21bb80ca8456ce",
  7104. "shasum": "",
  7105. "mirrors": [
  7106. {
  7107. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7108. "preferred": true
  7109. }
  7110. ]
  7111. },
  7112. "require": {
  7113. "php": ">=7.1.3",
  7114. "symfony/polyfill-php80": "^1.16"
  7115. },
  7116. "type": "library",
  7117. "autoload": {
  7118. "psr-4": {
  7119. "Symfony\\Component\\Process\\": ""
  7120. },
  7121. "exclude-from-classmap": [
  7122. "/Tests/"
  7123. ]
  7124. },
  7125. "notification-url": "https://packagist.org/downloads/",
  7126. "license": [
  7127. "MIT"
  7128. ],
  7129. "authors": [
  7130. {
  7131. "name": "Fabien Potencier",
  7132. "email": "fabien@symfony.com"
  7133. },
  7134. {
  7135. "name": "Symfony Community",
  7136. "homepage": "https://symfony.com/contributors"
  7137. }
  7138. ],
  7139. "description": "Executes commands in sub-processes",
  7140. "homepage": "https://symfony.com",
  7141. "support": {
  7142. "source": "https://github.com/symfony/process/tree/v4.4.41"
  7143. },
  7144. "funding": [
  7145. {
  7146. "url": "https://symfony.com/sponsor",
  7147. "type": "custom"
  7148. },
  7149. {
  7150. "url": "https://github.com/fabpot",
  7151. "type": "github"
  7152. },
  7153. {
  7154. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7155. "type": "tidelift"
  7156. }
  7157. ],
  7158. "time": "2022-04-04T10:19:07+00:00"
  7159. },
  7160. {
  7161. "name": "symfony/psr-http-message-bridge",
  7162. "version": "v2.1.2",
  7163. "source": {
  7164. "type": "git",
  7165. "url": "https://github.com/symfony/psr-http-message-bridge.git",
  7166. "reference": "22b37c8a3f6b5d94e9cdbd88e1270d96e2f97b34"
  7167. },
  7168. "dist": {
  7169. "type": "zip",
  7170. "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/22b37c8a3f6b5d94e9cdbd88e1270d96e2f97b34",
  7171. "reference": "22b37c8a3f6b5d94e9cdbd88e1270d96e2f97b34",
  7172. "shasum": "",
  7173. "mirrors": [
  7174. {
  7175. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7176. "preferred": true
  7177. }
  7178. ]
  7179. },
  7180. "require": {
  7181. "php": ">=7.1",
  7182. "psr/http-message": "^1.0",
  7183. "symfony/http-foundation": "^4.4 || ^5.0 || ^6.0"
  7184. },
  7185. "require-dev": {
  7186. "nyholm/psr7": "^1.1",
  7187. "psr/log": "^1.1 || ^2 || ^3",
  7188. "symfony/browser-kit": "^4.4 || ^5.0 || ^6.0",
  7189. "symfony/config": "^4.4 || ^5.0 || ^6.0",
  7190. "symfony/event-dispatcher": "^4.4 || ^5.0 || ^6.0",
  7191. "symfony/framework-bundle": "^4.4 || ^5.0 || ^6.0",
  7192. "symfony/http-kernel": "^4.4 || ^5.0 || ^6.0",
  7193. "symfony/phpunit-bridge": "^5.4@dev || ^6.0"
  7194. },
  7195. "suggest": {
  7196. "nyholm/psr7": "For a super lightweight PSR-7/17 implementation"
  7197. },
  7198. "type": "symfony-bridge",
  7199. "extra": {
  7200. "branch-alias": {
  7201. "dev-main": "2.1-dev"
  7202. }
  7203. },
  7204. "autoload": {
  7205. "psr-4": {
  7206. "Symfony\\Bridge\\PsrHttpMessage\\": ""
  7207. },
  7208. "exclude-from-classmap": [
  7209. "/Tests/"
  7210. ]
  7211. },
  7212. "notification-url": "https://packagist.org/downloads/",
  7213. "license": [
  7214. "MIT"
  7215. ],
  7216. "authors": [
  7217. {
  7218. "name": "Fabien Potencier",
  7219. "email": "fabien@symfony.com"
  7220. },
  7221. {
  7222. "name": "Symfony Community",
  7223. "homepage": "http://symfony.com/contributors"
  7224. }
  7225. ],
  7226. "description": "PSR HTTP message bridge",
  7227. "homepage": "http://symfony.com",
  7228. "keywords": [
  7229. "http",
  7230. "http-message",
  7231. "psr-17",
  7232. "psr-7"
  7233. ],
  7234. "support": {
  7235. "issues": "https://github.com/symfony/psr-http-message-bridge/issues",
  7236. "source": "https://github.com/symfony/psr-http-message-bridge/tree/v2.1.2"
  7237. },
  7238. "funding": [
  7239. {
  7240. "url": "https://symfony.com/sponsor",
  7241. "type": "custom"
  7242. },
  7243. {
  7244. "url": "https://github.com/fabpot",
  7245. "type": "github"
  7246. },
  7247. {
  7248. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7249. "type": "tidelift"
  7250. }
  7251. ],
  7252. "time": "2021-11-05T13:13:39+00:00"
  7253. },
  7254. {
  7255. "name": "symfony/routing",
  7256. "version": "v4.4.41",
  7257. "source": {
  7258. "type": "git",
  7259. "url": "https://github.com/symfony/routing.git",
  7260. "reference": "c25e38d403c00d5ddcfc514f016f1b534abdf052"
  7261. },
  7262. "dist": {
  7263. "type": "zip",
  7264. "url": "https://api.github.com/repos/symfony/routing/zipball/c25e38d403c00d5ddcfc514f016f1b534abdf052",
  7265. "reference": "c25e38d403c00d5ddcfc514f016f1b534abdf052",
  7266. "shasum": "",
  7267. "mirrors": [
  7268. {
  7269. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7270. "preferred": true
  7271. }
  7272. ]
  7273. },
  7274. "require": {
  7275. "php": ">=7.1.3",
  7276. "symfony/polyfill-php80": "^1.16"
  7277. },
  7278. "conflict": {
  7279. "symfony/config": "<4.2",
  7280. "symfony/dependency-injection": "<3.4",
  7281. "symfony/yaml": "<3.4"
  7282. },
  7283. "require-dev": {
  7284. "doctrine/annotations": "^1.10.4",
  7285. "psr/log": "^1|^2|^3",
  7286. "symfony/config": "^4.2|^5.0",
  7287. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  7288. "symfony/expression-language": "^3.4|^4.0|^5.0",
  7289. "symfony/http-foundation": "^3.4|^4.0|^5.0",
  7290. "symfony/yaml": "^3.4|^4.0|^5.0"
  7291. },
  7292. "suggest": {
  7293. "doctrine/annotations": "For using the annotation loader",
  7294. "symfony/config": "For using the all-in-one router or any loader",
  7295. "symfony/expression-language": "For using expression matching",
  7296. "symfony/http-foundation": "For using a Symfony Request object",
  7297. "symfony/yaml": "For using the YAML loader"
  7298. },
  7299. "type": "library",
  7300. "autoload": {
  7301. "psr-4": {
  7302. "Symfony\\Component\\Routing\\": ""
  7303. },
  7304. "exclude-from-classmap": [
  7305. "/Tests/"
  7306. ]
  7307. },
  7308. "notification-url": "https://packagist.org/downloads/",
  7309. "license": [
  7310. "MIT"
  7311. ],
  7312. "authors": [
  7313. {
  7314. "name": "Fabien Potencier",
  7315. "email": "fabien@symfony.com"
  7316. },
  7317. {
  7318. "name": "Symfony Community",
  7319. "homepage": "https://symfony.com/contributors"
  7320. }
  7321. ],
  7322. "description": "Maps an HTTP request to a set of configuration variables",
  7323. "homepage": "https://symfony.com",
  7324. "keywords": [
  7325. "router",
  7326. "routing",
  7327. "uri",
  7328. "url"
  7329. ],
  7330. "support": {
  7331. "source": "https://github.com/symfony/routing/tree/v4.4.41"
  7332. },
  7333. "funding": [
  7334. {
  7335. "url": "https://symfony.com/sponsor",
  7336. "type": "custom"
  7337. },
  7338. {
  7339. "url": "https://github.com/fabpot",
  7340. "type": "github"
  7341. },
  7342. {
  7343. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7344. "type": "tidelift"
  7345. }
  7346. ],
  7347. "time": "2022-04-12T15:19:55+00:00"
  7348. },
  7349. {
  7350. "name": "symfony/service-contracts",
  7351. "version": "v2.5.1",
  7352. "source": {
  7353. "type": "git",
  7354. "url": "https://github.com/symfony/service-contracts.git",
  7355. "reference": "24d9dc654b83e91aa59f9d167b131bc3b5bea24c"
  7356. },
  7357. "dist": {
  7358. "type": "zip",
  7359. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/24d9dc654b83e91aa59f9d167b131bc3b5bea24c",
  7360. "reference": "24d9dc654b83e91aa59f9d167b131bc3b5bea24c",
  7361. "shasum": "",
  7362. "mirrors": [
  7363. {
  7364. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7365. "preferred": true
  7366. }
  7367. ]
  7368. },
  7369. "require": {
  7370. "php": ">=7.2.5",
  7371. "psr/container": "^1.1",
  7372. "symfony/deprecation-contracts": "^2.1|^3"
  7373. },
  7374. "conflict": {
  7375. "ext-psr": "<1.1|>=2"
  7376. },
  7377. "suggest": {
  7378. "symfony/service-implementation": ""
  7379. },
  7380. "type": "library",
  7381. "extra": {
  7382. "branch-alias": {
  7383. "dev-main": "2.5-dev"
  7384. },
  7385. "thanks": {
  7386. "name": "symfony/contracts",
  7387. "url": "https://github.com/symfony/contracts"
  7388. }
  7389. },
  7390. "autoload": {
  7391. "psr-4": {
  7392. "Symfony\\Contracts\\Service\\": ""
  7393. }
  7394. },
  7395. "notification-url": "https://packagist.org/downloads/",
  7396. "license": [
  7397. "MIT"
  7398. ],
  7399. "authors": [
  7400. {
  7401. "name": "Nicolas Grekas",
  7402. "email": "p@tchwork.com"
  7403. },
  7404. {
  7405. "name": "Symfony Community",
  7406. "homepage": "https://symfony.com/contributors"
  7407. }
  7408. ],
  7409. "description": "Generic abstractions related to writing services",
  7410. "homepage": "https://symfony.com",
  7411. "keywords": [
  7412. "abstractions",
  7413. "contracts",
  7414. "decoupling",
  7415. "interfaces",
  7416. "interoperability",
  7417. "standards"
  7418. ],
  7419. "support": {
  7420. "source": "https://github.com/symfony/service-contracts/tree/v2.5.1"
  7421. },
  7422. "funding": [
  7423. {
  7424. "url": "https://symfony.com/sponsor",
  7425. "type": "custom"
  7426. },
  7427. {
  7428. "url": "https://github.com/fabpot",
  7429. "type": "github"
  7430. },
  7431. {
  7432. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7433. "type": "tidelift"
  7434. }
  7435. ],
  7436. "time": "2022-03-13T20:07:29+00:00"
  7437. },
  7438. {
  7439. "name": "symfony/translation",
  7440. "version": "v4.4.41",
  7441. "source": {
  7442. "type": "git",
  7443. "url": "https://github.com/symfony/translation.git",
  7444. "reference": "dcb67eae126e74507e0b4f0b9ac6ef35b37c3331"
  7445. },
  7446. "dist": {
  7447. "type": "zip",
  7448. "url": "https://api.github.com/repos/symfony/translation/zipball/dcb67eae126e74507e0b4f0b9ac6ef35b37c3331",
  7449. "reference": "dcb67eae126e74507e0b4f0b9ac6ef35b37c3331",
  7450. "shasum": "",
  7451. "mirrors": [
  7452. {
  7453. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7454. "preferred": true
  7455. }
  7456. ]
  7457. },
  7458. "require": {
  7459. "php": ">=7.1.3",
  7460. "symfony/polyfill-mbstring": "~1.0",
  7461. "symfony/polyfill-php80": "^1.16",
  7462. "symfony/translation-contracts": "^1.1.6|^2"
  7463. },
  7464. "conflict": {
  7465. "symfony/config": "<3.4",
  7466. "symfony/dependency-injection": "<3.4",
  7467. "symfony/http-kernel": "<4.4",
  7468. "symfony/yaml": "<3.4"
  7469. },
  7470. "provide": {
  7471. "symfony/translation-implementation": "1.0|2.0"
  7472. },
  7473. "require-dev": {
  7474. "psr/log": "^1|^2|^3",
  7475. "symfony/config": "^3.4|^4.0|^5.0",
  7476. "symfony/console": "^3.4|^4.0|^5.0",
  7477. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  7478. "symfony/finder": "~2.8|~3.0|~4.0|^5.0",
  7479. "symfony/http-kernel": "^4.4",
  7480. "symfony/intl": "^3.4|^4.0|^5.0",
  7481. "symfony/service-contracts": "^1.1.2|^2",
  7482. "symfony/yaml": "^3.4|^4.0|^5.0"
  7483. },
  7484. "suggest": {
  7485. "psr/log-implementation": "To use logging capability in translator",
  7486. "symfony/config": "",
  7487. "symfony/yaml": ""
  7488. },
  7489. "type": "library",
  7490. "autoload": {
  7491. "psr-4": {
  7492. "Symfony\\Component\\Translation\\": ""
  7493. },
  7494. "exclude-from-classmap": [
  7495. "/Tests/"
  7496. ]
  7497. },
  7498. "notification-url": "https://packagist.org/downloads/",
  7499. "license": [
  7500. "MIT"
  7501. ],
  7502. "authors": [
  7503. {
  7504. "name": "Fabien Potencier",
  7505. "email": "fabien@symfony.com"
  7506. },
  7507. {
  7508. "name": "Symfony Community",
  7509. "homepage": "https://symfony.com/contributors"
  7510. }
  7511. ],
  7512. "description": "Provides tools to internationalize your application",
  7513. "homepage": "https://symfony.com",
  7514. "support": {
  7515. "source": "https://github.com/symfony/translation/tree/v4.4.41"
  7516. },
  7517. "funding": [
  7518. {
  7519. "url": "https://symfony.com/sponsor",
  7520. "type": "custom"
  7521. },
  7522. {
  7523. "url": "https://github.com/fabpot",
  7524. "type": "github"
  7525. },
  7526. {
  7527. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7528. "type": "tidelift"
  7529. }
  7530. ],
  7531. "time": "2022-04-21T07:22:34+00:00"
  7532. },
  7533. {
  7534. "name": "symfony/translation-contracts",
  7535. "version": "v2.5.1",
  7536. "source": {
  7537. "type": "git",
  7538. "url": "https://github.com/symfony/translation-contracts.git",
  7539. "reference": "1211df0afa701e45a04253110e959d4af4ef0f07"
  7540. },
  7541. "dist": {
  7542. "type": "zip",
  7543. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/1211df0afa701e45a04253110e959d4af4ef0f07",
  7544. "reference": "1211df0afa701e45a04253110e959d4af4ef0f07",
  7545. "shasum": "",
  7546. "mirrors": [
  7547. {
  7548. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7549. "preferred": true
  7550. }
  7551. ]
  7552. },
  7553. "require": {
  7554. "php": ">=7.2.5"
  7555. },
  7556. "suggest": {
  7557. "symfony/translation-implementation": ""
  7558. },
  7559. "type": "library",
  7560. "extra": {
  7561. "branch-alias": {
  7562. "dev-main": "2.5-dev"
  7563. },
  7564. "thanks": {
  7565. "name": "symfony/contracts",
  7566. "url": "https://github.com/symfony/contracts"
  7567. }
  7568. },
  7569. "autoload": {
  7570. "psr-4": {
  7571. "Symfony\\Contracts\\Translation\\": ""
  7572. }
  7573. },
  7574. "notification-url": "https://packagist.org/downloads/",
  7575. "license": [
  7576. "MIT"
  7577. ],
  7578. "authors": [
  7579. {
  7580. "name": "Nicolas Grekas",
  7581. "email": "p@tchwork.com"
  7582. },
  7583. {
  7584. "name": "Symfony Community",
  7585. "homepage": "https://symfony.com/contributors"
  7586. }
  7587. ],
  7588. "description": "Generic abstractions related to translation",
  7589. "homepage": "https://symfony.com",
  7590. "keywords": [
  7591. "abstractions",
  7592. "contracts",
  7593. "decoupling",
  7594. "interfaces",
  7595. "interoperability",
  7596. "standards"
  7597. ],
  7598. "support": {
  7599. "source": "https://github.com/symfony/translation-contracts/tree/v2.5.1"
  7600. },
  7601. "funding": [
  7602. {
  7603. "url": "https://symfony.com/sponsor",
  7604. "type": "custom"
  7605. },
  7606. {
  7607. "url": "https://github.com/fabpot",
  7608. "type": "github"
  7609. },
  7610. {
  7611. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7612. "type": "tidelift"
  7613. }
  7614. ],
  7615. "time": "2022-01-02T09:53:40+00:00"
  7616. },
  7617. {
  7618. "name": "symfony/var-dumper",
  7619. "version": "v4.4.42",
  7620. "source": {
  7621. "type": "git",
  7622. "url": "https://github.com/symfony/var-dumper.git",
  7623. "reference": "742aab50ad097bcb62d91fccb613f66b8047d2ca"
  7624. },
  7625. "dist": {
  7626. "type": "zip",
  7627. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/742aab50ad097bcb62d91fccb613f66b8047d2ca",
  7628. "reference": "742aab50ad097bcb62d91fccb613f66b8047d2ca",
  7629. "shasum": "",
  7630. "mirrors": [
  7631. {
  7632. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7633. "preferred": true
  7634. }
  7635. ]
  7636. },
  7637. "require": {
  7638. "php": ">=7.1.3",
  7639. "symfony/polyfill-mbstring": "~1.0",
  7640. "symfony/polyfill-php72": "~1.5",
  7641. "symfony/polyfill-php80": "^1.16"
  7642. },
  7643. "conflict": {
  7644. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0",
  7645. "symfony/console": "<3.4"
  7646. },
  7647. "require-dev": {
  7648. "ext-iconv": "*",
  7649. "symfony/console": "^3.4|^4.0|^5.0",
  7650. "symfony/process": "^4.4|^5.0",
  7651. "twig/twig": "^1.43|^2.13|^3.0.4"
  7652. },
  7653. "suggest": {
  7654. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  7655. "ext-intl": "To show region name in time zone dump",
  7656. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  7657. },
  7658. "bin": [
  7659. "Resources/bin/var-dump-server"
  7660. ],
  7661. "type": "library",
  7662. "autoload": {
  7663. "files": [
  7664. "Resources/functions/dump.php"
  7665. ],
  7666. "psr-4": {
  7667. "Symfony\\Component\\VarDumper\\": ""
  7668. },
  7669. "exclude-from-classmap": [
  7670. "/Tests/"
  7671. ]
  7672. },
  7673. "notification-url": "https://packagist.org/downloads/",
  7674. "license": [
  7675. "MIT"
  7676. ],
  7677. "authors": [
  7678. {
  7679. "name": "Nicolas Grekas",
  7680. "email": "p@tchwork.com"
  7681. },
  7682. {
  7683. "name": "Symfony Community",
  7684. "homepage": "https://symfony.com/contributors"
  7685. }
  7686. ],
  7687. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  7688. "homepage": "https://symfony.com",
  7689. "keywords": [
  7690. "debug",
  7691. "dump"
  7692. ],
  7693. "support": {
  7694. "source": "https://github.com/symfony/var-dumper/tree/v4.4.42"
  7695. },
  7696. "funding": [
  7697. {
  7698. "url": "https://symfony.com/sponsor",
  7699. "type": "custom"
  7700. },
  7701. {
  7702. "url": "https://github.com/fabpot",
  7703. "type": "github"
  7704. },
  7705. {
  7706. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7707. "type": "tidelift"
  7708. }
  7709. ],
  7710. "time": "2022-05-21T10:00:54+00:00"
  7711. },
  7712. {
  7713. "name": "symfony/var-exporter",
  7714. "version": "v5.4.9",
  7715. "source": {
  7716. "type": "git",
  7717. "url": "https://github.com/symfony/var-exporter.git",
  7718. "reference": "63249ebfca4e75a357679fa7ba2089cfb898aa67"
  7719. },
  7720. "dist": {
  7721. "type": "zip",
  7722. "url": "https://api.github.com/repos/symfony/var-exporter/zipball/63249ebfca4e75a357679fa7ba2089cfb898aa67",
  7723. "reference": "63249ebfca4e75a357679fa7ba2089cfb898aa67",
  7724. "shasum": "",
  7725. "mirrors": [
  7726. {
  7727. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7728. "preferred": true
  7729. }
  7730. ]
  7731. },
  7732. "require": {
  7733. "php": ">=7.2.5",
  7734. "symfony/polyfill-php80": "^1.16"
  7735. },
  7736. "require-dev": {
  7737. "symfony/var-dumper": "^4.4.9|^5.0.9|^6.0"
  7738. },
  7739. "type": "library",
  7740. "autoload": {
  7741. "psr-4": {
  7742. "Symfony\\Component\\VarExporter\\": ""
  7743. },
  7744. "exclude-from-classmap": [
  7745. "/Tests/"
  7746. ]
  7747. },
  7748. "notification-url": "https://packagist.org/downloads/",
  7749. "license": [
  7750. "MIT"
  7751. ],
  7752. "authors": [
  7753. {
  7754. "name": "Nicolas Grekas",
  7755. "email": "p@tchwork.com"
  7756. },
  7757. {
  7758. "name": "Symfony Community",
  7759. "homepage": "https://symfony.com/contributors"
  7760. }
  7761. ],
  7762. "description": "Allows exporting any serializable PHP data structure to plain PHP code",
  7763. "homepage": "https://symfony.com",
  7764. "keywords": [
  7765. "clone",
  7766. "construct",
  7767. "export",
  7768. "hydrate",
  7769. "instantiate",
  7770. "serialize"
  7771. ],
  7772. "support": {
  7773. "source": "https://github.com/symfony/var-exporter/tree/v5.4.9"
  7774. },
  7775. "funding": [
  7776. {
  7777. "url": "https://symfony.com/sponsor",
  7778. "type": "custom"
  7779. },
  7780. {
  7781. "url": "https://github.com/fabpot",
  7782. "type": "github"
  7783. },
  7784. {
  7785. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7786. "type": "tidelift"
  7787. }
  7788. ],
  7789. "time": "2022-05-21T10:24:18+00:00"
  7790. },
  7791. {
  7792. "name": "tencentcloud/tencentcloud-sdk-php",
  7793. "version": "3.0.649",
  7794. "source": {
  7795. "type": "git",
  7796. "url": "https://github.com/TencentCloud/tencentcloud-sdk-php.git",
  7797. "reference": "9f8d62ba34062f5b235e65a9db1278240147b89d"
  7798. },
  7799. "dist": {
  7800. "type": "zip",
  7801. "url": "https://api.github.com/repos/TencentCloud/tencentcloud-sdk-php/zipball/9f8d62ba34062f5b235e65a9db1278240147b89d",
  7802. "reference": "9f8d62ba34062f5b235e65a9db1278240147b89d",
  7803. "shasum": "",
  7804. "mirrors": [
  7805. {
  7806. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7807. "preferred": true
  7808. }
  7809. ]
  7810. },
  7811. "require": {
  7812. "guzzlehttp/guzzle": "^6.3 || ^7.0",
  7813. "php": ">=5.6.0"
  7814. },
  7815. "type": "library",
  7816. "autoload": {
  7817. "psr-4": {
  7818. "TencentCloud\\": "./src/TencentCloud"
  7819. },
  7820. "classmap": [
  7821. "src/QcloudApi/QcloudApi.php"
  7822. ]
  7823. },
  7824. "notification-url": "https://packagist.org/downloads/",
  7825. "license": [
  7826. "Apache-2.0"
  7827. ],
  7828. "authors": [
  7829. {
  7830. "name": "coolli",
  7831. "email": "tencentcloudapi@tencent.com",
  7832. "homepage": "https://cloud.tencent.com/document/sdk/PHP",
  7833. "role": "Developer"
  7834. }
  7835. ],
  7836. "description": "TencentCloudApi php sdk",
  7837. "homepage": "https://github.com/TencentCloud/tencentcloud-sdk-php",
  7838. "support": {
  7839. "issues": "https://github.com/TencentCloud/tencentcloud-sdk-php/issues",
  7840. "source": "https://github.com/TencentCloud/tencentcloud-sdk-php/tree/3.0.649"
  7841. },
  7842. "time": "2022-06-14T22:31:31+00:00"
  7843. },
  7844. {
  7845. "name": "tijsverkoyen/css-to-inline-styles",
  7846. "version": "2.2.4",
  7847. "source": {
  7848. "type": "git",
  7849. "url": "https://github.com/tijsverkoyen/CssToInlineStyles.git",
  7850. "reference": "da444caae6aca7a19c0c140f68c6182e337d5b1c"
  7851. },
  7852. "dist": {
  7853. "type": "zip",
  7854. "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/da444caae6aca7a19c0c140f68c6182e337d5b1c",
  7855. "reference": "da444caae6aca7a19c0c140f68c6182e337d5b1c",
  7856. "shasum": "",
  7857. "mirrors": [
  7858. {
  7859. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7860. "preferred": true
  7861. }
  7862. ]
  7863. },
  7864. "require": {
  7865. "ext-dom": "*",
  7866. "ext-libxml": "*",
  7867. "php": "^5.5 || ^7.0 || ^8.0",
  7868. "symfony/css-selector": "^2.7 || ^3.0 || ^4.0 || ^5.0 || ^6.0"
  7869. },
  7870. "require-dev": {
  7871. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0 || ^7.5 || ^8.5.21 || ^9.5.10"
  7872. },
  7873. "type": "library",
  7874. "extra": {
  7875. "branch-alias": {
  7876. "dev-master": "2.2.x-dev"
  7877. }
  7878. },
  7879. "autoload": {
  7880. "psr-4": {
  7881. "TijsVerkoyen\\CssToInlineStyles\\": "src"
  7882. }
  7883. },
  7884. "notification-url": "https://packagist.org/downloads/",
  7885. "license": [
  7886. "BSD-3-Clause"
  7887. ],
  7888. "authors": [
  7889. {
  7890. "name": "Tijs Verkoyen",
  7891. "email": "css_to_inline_styles@verkoyen.eu",
  7892. "role": "Developer"
  7893. }
  7894. ],
  7895. "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.",
  7896. "homepage": "https://github.com/tijsverkoyen/CssToInlineStyles",
  7897. "support": {
  7898. "issues": "https://github.com/tijsverkoyen/CssToInlineStyles/issues",
  7899. "source": "https://github.com/tijsverkoyen/CssToInlineStyles/tree/2.2.4"
  7900. },
  7901. "time": "2021-12-08T09:12:39+00:00"
  7902. },
  7903. {
  7904. "name": "tymon/jwt-auth",
  7905. "version": "1.0.2",
  7906. "source": {
  7907. "type": "git",
  7908. "url": "https://github.com/tymondesigns/jwt-auth.git",
  7909. "reference": "e588cb719539366c0e2f6017f975379cb73e9680"
  7910. },
  7911. "dist": {
  7912. "type": "zip",
  7913. "url": "https://api.github.com/repos/tymondesigns/jwt-auth/zipball/e588cb719539366c0e2f6017f975379cb73e9680",
  7914. "reference": "e588cb719539366c0e2f6017f975379cb73e9680",
  7915. "shasum": "",
  7916. "mirrors": [
  7917. {
  7918. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7919. "preferred": true
  7920. }
  7921. ]
  7922. },
  7923. "require": {
  7924. "illuminate/auth": "^5.2|^6|^7|^8",
  7925. "illuminate/contracts": "^5.2|^6|^7|^8",
  7926. "illuminate/http": "^5.2|^6|^7|^8",
  7927. "illuminate/support": "^5.2|^6|^7|^8",
  7928. "lcobucci/jwt": "<3.4",
  7929. "namshi/jose": "^7.0",
  7930. "nesbot/carbon": "^1.0|^2.0",
  7931. "php": "^5.5.9|^7.0"
  7932. },
  7933. "require-dev": {
  7934. "illuminate/console": "^5.2|^6|^7|^8",
  7935. "illuminate/database": "^5.2|^6|^7|^8",
  7936. "illuminate/routing": "^5.2|^6|^7|^8",
  7937. "mockery/mockery": ">=0.9.9",
  7938. "phpunit/phpunit": "~4.8|~6.0"
  7939. },
  7940. "type": "library",
  7941. "extra": {
  7942. "branch-alias": {
  7943. "dev-develop": "1.0-dev"
  7944. },
  7945. "laravel": {
  7946. "aliases": {
  7947. "JWTAuth": "Tymon\\JWTAuth\\Facades\\JWTAuth",
  7948. "JWTFactory": "Tymon\\JWTAuth\\Facades\\JWTFactory"
  7949. },
  7950. "providers": [
  7951. "Tymon\\JWTAuth\\Providers\\LaravelServiceProvider"
  7952. ]
  7953. }
  7954. },
  7955. "autoload": {
  7956. "psr-4": {
  7957. "Tymon\\JWTAuth\\": "src/"
  7958. }
  7959. },
  7960. "notification-url": "https://packagist.org/downloads/",
  7961. "license": [
  7962. "MIT"
  7963. ],
  7964. "authors": [
  7965. {
  7966. "name": "Sean Tymon",
  7967. "email": "tymon148@gmail.com",
  7968. "homepage": "https://tymon.xyz",
  7969. "role": "Developer"
  7970. }
  7971. ],
  7972. "description": "JSON Web Token Authentication for Laravel and Lumen",
  7973. "homepage": "https://github.com/tymondesigns/jwt-auth",
  7974. "keywords": [
  7975. "Authentication",
  7976. "JSON Web Token",
  7977. "auth",
  7978. "jwt",
  7979. "laravel"
  7980. ],
  7981. "support": {
  7982. "issues": "https://github.com/tymondesigns/jwt-auth/issues",
  7983. "source": "https://github.com/tymondesigns/jwt-auth"
  7984. },
  7985. "funding": [
  7986. {
  7987. "url": "https://www.patreon.com/seantymon",
  7988. "type": "patreon"
  7989. }
  7990. ],
  7991. "time": "2020-11-27T12:32:42+00:00"
  7992. },
  7993. {
  7994. "name": "vlucas/phpdotenv",
  7995. "version": "v3.6.10",
  7996. "source": {
  7997. "type": "git",
  7998. "url": "https://github.com/vlucas/phpdotenv.git",
  7999. "reference": "5b547cdb25825f10251370f57ba5d9d924e6f68e"
  8000. },
  8001. "dist": {
  8002. "type": "zip",
  8003. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/5b547cdb25825f10251370f57ba5d9d924e6f68e",
  8004. "reference": "5b547cdb25825f10251370f57ba5d9d924e6f68e",
  8005. "shasum": "",
  8006. "mirrors": [
  8007. {
  8008. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8009. "preferred": true
  8010. }
  8011. ]
  8012. },
  8013. "require": {
  8014. "php": "^5.4 || ^7.0 || ^8.0",
  8015. "phpoption/phpoption": "^1.5.2",
  8016. "symfony/polyfill-ctype": "^1.17"
  8017. },
  8018. "require-dev": {
  8019. "ext-filter": "*",
  8020. "ext-pcre": "*",
  8021. "phpunit/phpunit": "^4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.21"
  8022. },
  8023. "suggest": {
  8024. "ext-filter": "Required to use the boolean validator.",
  8025. "ext-pcre": "Required to use most of the library."
  8026. },
  8027. "type": "library",
  8028. "extra": {
  8029. "branch-alias": {
  8030. "dev-master": "3.6-dev"
  8031. }
  8032. },
  8033. "autoload": {
  8034. "psr-4": {
  8035. "Dotenv\\": "src/"
  8036. }
  8037. },
  8038. "notification-url": "https://packagist.org/downloads/",
  8039. "license": [
  8040. "BSD-3-Clause"
  8041. ],
  8042. "authors": [
  8043. {
  8044. "name": "Graham Campbell",
  8045. "email": "hello@gjcampbell.co.uk",
  8046. "homepage": "https://github.com/GrahamCampbell"
  8047. },
  8048. {
  8049. "name": "Vance Lucas",
  8050. "email": "vance@vancelucas.com",
  8051. "homepage": "https://github.com/vlucas"
  8052. }
  8053. ],
  8054. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  8055. "keywords": [
  8056. "dotenv",
  8057. "env",
  8058. "environment"
  8059. ],
  8060. "support": {
  8061. "issues": "https://github.com/vlucas/phpdotenv/issues",
  8062. "source": "https://github.com/vlucas/phpdotenv/tree/v3.6.10"
  8063. },
  8064. "funding": [
  8065. {
  8066. "url": "https://github.com/GrahamCampbell",
  8067. "type": "github"
  8068. },
  8069. {
  8070. "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
  8071. "type": "tidelift"
  8072. }
  8073. ],
  8074. "time": "2021-12-12T23:02:06+00:00"
  8075. },
  8076. {
  8077. "name": "webmozart/assert",
  8078. "version": "1.10.0",
  8079. "source": {
  8080. "type": "git",
  8081. "url": "https://github.com/webmozarts/assert.git",
  8082. "reference": "6964c76c7804814a842473e0c8fd15bab0f18e25"
  8083. },
  8084. "dist": {
  8085. "type": "zip",
  8086. "url": "https://api.github.com/repos/webmozarts/assert/zipball/6964c76c7804814a842473e0c8fd15bab0f18e25",
  8087. "reference": "6964c76c7804814a842473e0c8fd15bab0f18e25",
  8088. "shasum": "",
  8089. "mirrors": [
  8090. {
  8091. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8092. "preferred": true
  8093. }
  8094. ]
  8095. },
  8096. "require": {
  8097. "php": "^7.2 || ^8.0",
  8098. "symfony/polyfill-ctype": "^1.8"
  8099. },
  8100. "conflict": {
  8101. "phpstan/phpstan": "<0.12.20",
  8102. "vimeo/psalm": "<4.6.1 || 4.6.2"
  8103. },
  8104. "require-dev": {
  8105. "phpunit/phpunit": "^8.5.13"
  8106. },
  8107. "type": "library",
  8108. "extra": {
  8109. "branch-alias": {
  8110. "dev-master": "1.10-dev"
  8111. }
  8112. },
  8113. "autoload": {
  8114. "psr-4": {
  8115. "Webmozart\\Assert\\": "src/"
  8116. }
  8117. },
  8118. "notification-url": "https://packagist.org/downloads/",
  8119. "license": [
  8120. "MIT"
  8121. ],
  8122. "authors": [
  8123. {
  8124. "name": "Bernhard Schussek",
  8125. "email": "bschussek@gmail.com"
  8126. }
  8127. ],
  8128. "description": "Assertions to validate method input/output with nice error messages.",
  8129. "keywords": [
  8130. "assert",
  8131. "check",
  8132. "validate"
  8133. ],
  8134. "support": {
  8135. "issues": "https://github.com/webmozarts/assert/issues",
  8136. "source": "https://github.com/webmozarts/assert/tree/1.10.0"
  8137. },
  8138. "time": "2021-03-09T10:59:23+00:00"
  8139. }
  8140. ],
  8141. "packages-dev": [
  8142. {
  8143. "name": "doctrine/instantiator",
  8144. "version": "1.4.1",
  8145. "source": {
  8146. "type": "git",
  8147. "url": "https://github.com/doctrine/instantiator.git",
  8148. "reference": "10dcfce151b967d20fde1b34ae6640712c3891bc"
  8149. },
  8150. "dist": {
  8151. "type": "zip",
  8152. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/10dcfce151b967d20fde1b34ae6640712c3891bc",
  8153. "reference": "10dcfce151b967d20fde1b34ae6640712c3891bc",
  8154. "shasum": "",
  8155. "mirrors": [
  8156. {
  8157. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8158. "preferred": true
  8159. }
  8160. ]
  8161. },
  8162. "require": {
  8163. "php": "^7.1 || ^8.0"
  8164. },
  8165. "require-dev": {
  8166. "doctrine/coding-standard": "^9",
  8167. "ext-pdo": "*",
  8168. "ext-phar": "*",
  8169. "phpbench/phpbench": "^0.16 || ^1",
  8170. "phpstan/phpstan": "^1.4",
  8171. "phpstan/phpstan-phpunit": "^1",
  8172. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  8173. "vimeo/psalm": "^4.22"
  8174. },
  8175. "type": "library",
  8176. "autoload": {
  8177. "psr-4": {
  8178. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  8179. }
  8180. },
  8181. "notification-url": "https://packagist.org/downloads/",
  8182. "license": [
  8183. "MIT"
  8184. ],
  8185. "authors": [
  8186. {
  8187. "name": "Marco Pivetta",
  8188. "email": "ocramius@gmail.com",
  8189. "homepage": "https://ocramius.github.io/"
  8190. }
  8191. ],
  8192. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  8193. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  8194. "keywords": [
  8195. "constructor",
  8196. "instantiate"
  8197. ],
  8198. "support": {
  8199. "issues": "https://github.com/doctrine/instantiator/issues",
  8200. "source": "https://github.com/doctrine/instantiator/tree/1.4.1"
  8201. },
  8202. "funding": [
  8203. {
  8204. "url": "https://www.doctrine-project.org/sponsorship.html",
  8205. "type": "custom"
  8206. },
  8207. {
  8208. "url": "https://www.patreon.com/phpdoctrine",
  8209. "type": "patreon"
  8210. },
  8211. {
  8212. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
  8213. "type": "tidelift"
  8214. }
  8215. ],
  8216. "time": "2022-03-03T08:28:38+00:00"
  8217. },
  8218. {
  8219. "name": "facade/flare-client-php",
  8220. "version": "1.9.1",
  8221. "source": {
  8222. "type": "git",
  8223. "url": "https://github.com/facade/flare-client-php.git",
  8224. "reference": "b2adf1512755637d0cef4f7d1b54301325ac78ed"
  8225. },
  8226. "dist": {
  8227. "type": "zip",
  8228. "url": "https://api.github.com/repos/facade/flare-client-php/zipball/b2adf1512755637d0cef4f7d1b54301325ac78ed",
  8229. "reference": "b2adf1512755637d0cef4f7d1b54301325ac78ed",
  8230. "shasum": "",
  8231. "mirrors": [
  8232. {
  8233. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8234. "preferred": true
  8235. }
  8236. ]
  8237. },
  8238. "require": {
  8239. "facade/ignition-contracts": "~1.0",
  8240. "illuminate/pipeline": "^5.5|^6.0|^7.0|^8.0",
  8241. "php": "^7.1|^8.0",
  8242. "symfony/http-foundation": "^3.3|^4.1|^5.0",
  8243. "symfony/mime": "^3.4|^4.0|^5.1",
  8244. "symfony/var-dumper": "^3.4|^4.0|^5.0"
  8245. },
  8246. "require-dev": {
  8247. "friendsofphp/php-cs-fixer": "^2.14",
  8248. "phpunit/phpunit": "^7.5.16",
  8249. "spatie/phpunit-snapshot-assertions": "^2.0"
  8250. },
  8251. "type": "library",
  8252. "extra": {
  8253. "branch-alias": {
  8254. "dev-master": "1.0-dev"
  8255. }
  8256. },
  8257. "autoload": {
  8258. "files": [
  8259. "src/helpers.php"
  8260. ],
  8261. "psr-4": {
  8262. "Facade\\FlareClient\\": "src"
  8263. }
  8264. },
  8265. "notification-url": "https://packagist.org/downloads/",
  8266. "license": [
  8267. "MIT"
  8268. ],
  8269. "description": "Send PHP errors to Flare",
  8270. "homepage": "https://github.com/facade/flare-client-php",
  8271. "keywords": [
  8272. "exception",
  8273. "facade",
  8274. "flare",
  8275. "reporting"
  8276. ],
  8277. "support": {
  8278. "issues": "https://github.com/facade/flare-client-php/issues",
  8279. "source": "https://github.com/facade/flare-client-php/tree/1.9.1"
  8280. },
  8281. "funding": [
  8282. {
  8283. "url": "https://github.com/spatie",
  8284. "type": "github"
  8285. }
  8286. ],
  8287. "time": "2021-09-13T12:16:46+00:00"
  8288. },
  8289. {
  8290. "name": "facade/ignition",
  8291. "version": "1.18.1",
  8292. "source": {
  8293. "type": "git",
  8294. "url": "https://github.com/facade/ignition.git",
  8295. "reference": "d173a101b3dbbd7a3a7b849ab388a7a7ef6d90bf"
  8296. },
  8297. "dist": {
  8298. "type": "zip",
  8299. "url": "https://api.github.com/repos/facade/ignition/zipball/d173a101b3dbbd7a3a7b849ab388a7a7ef6d90bf",
  8300. "reference": "d173a101b3dbbd7a3a7b849ab388a7a7ef6d90bf",
  8301. "shasum": "",
  8302. "mirrors": [
  8303. {
  8304. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8305. "preferred": true
  8306. }
  8307. ]
  8308. },
  8309. "require": {
  8310. "ext-json": "*",
  8311. "ext-mbstring": "*",
  8312. "facade/flare-client-php": "^1.3",
  8313. "facade/ignition-contracts": "^1.0",
  8314. "filp/whoops": "^2.4",
  8315. "illuminate/support": "~5.5.0 || ~5.6.0 || ~5.7.0 || ~5.8.0 || ^6.0",
  8316. "monolog/monolog": "^1.12 || ^2.0",
  8317. "php": "^7.1|^8.0",
  8318. "scrivo/highlight.php": "^9.15",
  8319. "symfony/console": "^3.4 || ^4.0",
  8320. "symfony/var-dumper": "^3.4 || ^4.0"
  8321. },
  8322. "require-dev": {
  8323. "mockery/mockery": "~1.3.3|^1.4.2",
  8324. "orchestra/testbench": "^3.5 || ^3.6 || ^3.7 || ^3.8 || ^4.0"
  8325. },
  8326. "suggest": {
  8327. "laravel/telescope": "^2.0"
  8328. },
  8329. "type": "library",
  8330. "extra": {
  8331. "branch-alias": {
  8332. "dev-master": "1.x-dev"
  8333. },
  8334. "laravel": {
  8335. "providers": [
  8336. "Facade\\Ignition\\IgnitionServiceProvider"
  8337. ],
  8338. "aliases": {
  8339. "Flare": "Facade\\Ignition\\Facades\\Flare"
  8340. }
  8341. }
  8342. },
  8343. "autoload": {
  8344. "files": [
  8345. "src/helpers.php"
  8346. ],
  8347. "psr-4": {
  8348. "Facade\\Ignition\\": "src"
  8349. }
  8350. },
  8351. "notification-url": "https://packagist.org/downloads/",
  8352. "license": [
  8353. "MIT"
  8354. ],
  8355. "description": "A beautiful error page for Laravel applications.",
  8356. "homepage": "https://github.com/facade/ignition",
  8357. "keywords": [
  8358. "error",
  8359. "flare",
  8360. "laravel",
  8361. "page"
  8362. ],
  8363. "support": {
  8364. "docs": "https://flareapp.io/docs/ignition-for-laravel/introduction",
  8365. "forum": "https://twitter.com/flareappio",
  8366. "issues": "https://github.com/facade/ignition/issues",
  8367. "source": "https://github.com/facade/ignition"
  8368. },
  8369. "time": "2022-02-23T20:20:52+00:00"
  8370. },
  8371. {
  8372. "name": "facade/ignition-contracts",
  8373. "version": "1.0.2",
  8374. "source": {
  8375. "type": "git",
  8376. "url": "https://github.com/facade/ignition-contracts.git",
  8377. "reference": "3c921a1cdba35b68a7f0ccffc6dffc1995b18267"
  8378. },
  8379. "dist": {
  8380. "type": "zip",
  8381. "url": "https://api.github.com/repos/facade/ignition-contracts/zipball/3c921a1cdba35b68a7f0ccffc6dffc1995b18267",
  8382. "reference": "3c921a1cdba35b68a7f0ccffc6dffc1995b18267",
  8383. "shasum": "",
  8384. "mirrors": [
  8385. {
  8386. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8387. "preferred": true
  8388. }
  8389. ]
  8390. },
  8391. "require": {
  8392. "php": "^7.3|^8.0"
  8393. },
  8394. "require-dev": {
  8395. "friendsofphp/php-cs-fixer": "^v2.15.8",
  8396. "phpunit/phpunit": "^9.3.11",
  8397. "vimeo/psalm": "^3.17.1"
  8398. },
  8399. "type": "library",
  8400. "autoload": {
  8401. "psr-4": {
  8402. "Facade\\IgnitionContracts\\": "src"
  8403. }
  8404. },
  8405. "notification-url": "https://packagist.org/downloads/",
  8406. "license": [
  8407. "MIT"
  8408. ],
  8409. "authors": [
  8410. {
  8411. "name": "Freek Van der Herten",
  8412. "email": "freek@spatie.be",
  8413. "homepage": "https://flareapp.io",
  8414. "role": "Developer"
  8415. }
  8416. ],
  8417. "description": "Solution contracts for Ignition",
  8418. "homepage": "https://github.com/facade/ignition-contracts",
  8419. "keywords": [
  8420. "contracts",
  8421. "flare",
  8422. "ignition"
  8423. ],
  8424. "support": {
  8425. "issues": "https://github.com/facade/ignition-contracts/issues",
  8426. "source": "https://github.com/facade/ignition-contracts/tree/1.0.2"
  8427. },
  8428. "time": "2020-10-16T08:27:54+00:00"
  8429. },
  8430. {
  8431. "name": "filp/whoops",
  8432. "version": "2.14.5",
  8433. "source": {
  8434. "type": "git",
  8435. "url": "https://github.com/filp/whoops.git",
  8436. "reference": "a63e5e8f26ebbebf8ed3c5c691637325512eb0dc"
  8437. },
  8438. "dist": {
  8439. "type": "zip",
  8440. "url": "https://api.github.com/repos/filp/whoops/zipball/a63e5e8f26ebbebf8ed3c5c691637325512eb0dc",
  8441. "reference": "a63e5e8f26ebbebf8ed3c5c691637325512eb0dc",
  8442. "shasum": "",
  8443. "mirrors": [
  8444. {
  8445. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8446. "preferred": true
  8447. }
  8448. ]
  8449. },
  8450. "require": {
  8451. "php": "^5.5.9 || ^7.0 || ^8.0",
  8452. "psr/log": "^1.0.1 || ^2.0 || ^3.0"
  8453. },
  8454. "require-dev": {
  8455. "mockery/mockery": "^0.9 || ^1.0",
  8456. "phpunit/phpunit": "^4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.3",
  8457. "symfony/var-dumper": "^2.6 || ^3.0 || ^4.0 || ^5.0"
  8458. },
  8459. "suggest": {
  8460. "symfony/var-dumper": "Pretty print complex values better with var-dumper available",
  8461. "whoops/soap": "Formats errors as SOAP responses"
  8462. },
  8463. "type": "library",
  8464. "extra": {
  8465. "branch-alias": {
  8466. "dev-master": "2.7-dev"
  8467. }
  8468. },
  8469. "autoload": {
  8470. "psr-4": {
  8471. "Whoops\\": "src/Whoops/"
  8472. }
  8473. },
  8474. "notification-url": "https://packagist.org/downloads/",
  8475. "license": [
  8476. "MIT"
  8477. ],
  8478. "authors": [
  8479. {
  8480. "name": "Filipe Dobreira",
  8481. "homepage": "https://github.com/filp",
  8482. "role": "Developer"
  8483. }
  8484. ],
  8485. "description": "php error handling for cool kids",
  8486. "homepage": "https://filp.github.io/whoops/",
  8487. "keywords": [
  8488. "error",
  8489. "exception",
  8490. "handling",
  8491. "library",
  8492. "throwable",
  8493. "whoops"
  8494. ],
  8495. "support": {
  8496. "issues": "https://github.com/filp/whoops/issues",
  8497. "source": "https://github.com/filp/whoops/tree/2.14.5"
  8498. },
  8499. "funding": [
  8500. {
  8501. "url": "https://github.com/denis-sokolov",
  8502. "type": "github"
  8503. }
  8504. ],
  8505. "time": "2022-01-07T12:00:00+00:00"
  8506. },
  8507. {
  8508. "name": "fzaninotto/faker",
  8509. "version": "v1.9.2",
  8510. "source": {
  8511. "type": "git",
  8512. "url": "https://github.com/fzaninotto/Faker.git",
  8513. "reference": "848d8125239d7dbf8ab25cb7f054f1a630e68c2e"
  8514. },
  8515. "dist": {
  8516. "type": "zip",
  8517. "url": "https://api.github.com/repos/fzaninotto/Faker/zipball/848d8125239d7dbf8ab25cb7f054f1a630e68c2e",
  8518. "reference": "848d8125239d7dbf8ab25cb7f054f1a630e68c2e",
  8519. "shasum": "",
  8520. "mirrors": [
  8521. {
  8522. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8523. "preferred": true
  8524. }
  8525. ]
  8526. },
  8527. "require": {
  8528. "php": "^5.3.3 || ^7.0"
  8529. },
  8530. "require-dev": {
  8531. "ext-intl": "*",
  8532. "phpunit/phpunit": "^4.8.35 || ^5.7",
  8533. "squizlabs/php_codesniffer": "^2.9.2"
  8534. },
  8535. "type": "library",
  8536. "extra": {
  8537. "branch-alias": {
  8538. "dev-master": "1.9-dev"
  8539. }
  8540. },
  8541. "autoload": {
  8542. "psr-4": {
  8543. "Faker\\": "src/Faker/"
  8544. }
  8545. },
  8546. "notification-url": "https://packagist.org/downloads/",
  8547. "license": [
  8548. "MIT"
  8549. ],
  8550. "authors": [
  8551. {
  8552. "name": "François Zaninotto"
  8553. }
  8554. ],
  8555. "description": "Faker is a PHP library that generates fake data for you.",
  8556. "keywords": [
  8557. "data",
  8558. "faker",
  8559. "fixtures"
  8560. ],
  8561. "support": {
  8562. "issues": "https://github.com/fzaninotto/Faker/issues",
  8563. "source": "https://github.com/fzaninotto/Faker/tree/v1.9.2"
  8564. },
  8565. "abandoned": true,
  8566. "time": "2020-12-11T09:56:16+00:00"
  8567. },
  8568. {
  8569. "name": "hamcrest/hamcrest-php",
  8570. "version": "v2.0.1",
  8571. "source": {
  8572. "type": "git",
  8573. "url": "https://github.com/hamcrest/hamcrest-php.git",
  8574. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3"
  8575. },
  8576. "dist": {
  8577. "type": "zip",
  8578. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  8579. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  8580. "shasum": "",
  8581. "mirrors": [
  8582. {
  8583. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8584. "preferred": true
  8585. }
  8586. ]
  8587. },
  8588. "require": {
  8589. "php": "^5.3|^7.0|^8.0"
  8590. },
  8591. "replace": {
  8592. "cordoval/hamcrest-php": "*",
  8593. "davedevelopment/hamcrest-php": "*",
  8594. "kodova/hamcrest-php": "*"
  8595. },
  8596. "require-dev": {
  8597. "phpunit/php-file-iterator": "^1.4 || ^2.0",
  8598. "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0"
  8599. },
  8600. "type": "library",
  8601. "extra": {
  8602. "branch-alias": {
  8603. "dev-master": "2.1-dev"
  8604. }
  8605. },
  8606. "autoload": {
  8607. "classmap": [
  8608. "hamcrest"
  8609. ]
  8610. },
  8611. "notification-url": "https://packagist.org/downloads/",
  8612. "license": [
  8613. "BSD-3-Clause"
  8614. ],
  8615. "description": "This is the PHP port of Hamcrest Matchers",
  8616. "keywords": [
  8617. "test"
  8618. ],
  8619. "support": {
  8620. "issues": "https://github.com/hamcrest/hamcrest-php/issues",
  8621. "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.0.1"
  8622. },
  8623. "time": "2020-07-09T08:09:16+00:00"
  8624. },
  8625. {
  8626. "name": "mockery/mockery",
  8627. "version": "1.5.0",
  8628. "source": {
  8629. "type": "git",
  8630. "url": "https://github.com/mockery/mockery.git",
  8631. "reference": "c10a5f6e06fc2470ab1822fa13fa2a7380f8fbac"
  8632. },
  8633. "dist": {
  8634. "type": "zip",
  8635. "url": "https://api.github.com/repos/mockery/mockery/zipball/c10a5f6e06fc2470ab1822fa13fa2a7380f8fbac",
  8636. "reference": "c10a5f6e06fc2470ab1822fa13fa2a7380f8fbac",
  8637. "shasum": "",
  8638. "mirrors": [
  8639. {
  8640. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8641. "preferred": true
  8642. }
  8643. ]
  8644. },
  8645. "require": {
  8646. "hamcrest/hamcrest-php": "^2.0.1",
  8647. "lib-pcre": ">=7.0",
  8648. "php": "^7.3 || ^8.0"
  8649. },
  8650. "conflict": {
  8651. "phpunit/phpunit": "<8.0"
  8652. },
  8653. "require-dev": {
  8654. "phpunit/phpunit": "^8.5 || ^9.3"
  8655. },
  8656. "type": "library",
  8657. "extra": {
  8658. "branch-alias": {
  8659. "dev-master": "1.4.x-dev"
  8660. }
  8661. },
  8662. "autoload": {
  8663. "psr-0": {
  8664. "Mockery": "library/"
  8665. }
  8666. },
  8667. "notification-url": "https://packagist.org/downloads/",
  8668. "license": [
  8669. "BSD-3-Clause"
  8670. ],
  8671. "authors": [
  8672. {
  8673. "name": "Pádraic Brady",
  8674. "email": "padraic.brady@gmail.com",
  8675. "homepage": "http://blog.astrumfutura.com"
  8676. },
  8677. {
  8678. "name": "Dave Marshall",
  8679. "email": "dave.marshall@atstsolutions.co.uk",
  8680. "homepage": "http://davedevelopment.co.uk"
  8681. }
  8682. ],
  8683. "description": "Mockery is a simple yet flexible PHP mock object framework",
  8684. "homepage": "https://github.com/mockery/mockery",
  8685. "keywords": [
  8686. "BDD",
  8687. "TDD",
  8688. "library",
  8689. "mock",
  8690. "mock objects",
  8691. "mockery",
  8692. "stub",
  8693. "test",
  8694. "test double",
  8695. "testing"
  8696. ],
  8697. "support": {
  8698. "issues": "https://github.com/mockery/mockery/issues",
  8699. "source": "https://github.com/mockery/mockery/tree/1.5.0"
  8700. },
  8701. "time": "2022-01-20T13:18:17+00:00"
  8702. },
  8703. {
  8704. "name": "myclabs/deep-copy",
  8705. "version": "1.11.0",
  8706. "source": {
  8707. "type": "git",
  8708. "url": "https://github.com/myclabs/DeepCopy.git",
  8709. "reference": "14daed4296fae74d9e3201d2c4925d1acb7aa614"
  8710. },
  8711. "dist": {
  8712. "type": "zip",
  8713. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/14daed4296fae74d9e3201d2c4925d1acb7aa614",
  8714. "reference": "14daed4296fae74d9e3201d2c4925d1acb7aa614",
  8715. "shasum": "",
  8716. "mirrors": [
  8717. {
  8718. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8719. "preferred": true
  8720. }
  8721. ]
  8722. },
  8723. "require": {
  8724. "php": "^7.1 || ^8.0"
  8725. },
  8726. "conflict": {
  8727. "doctrine/collections": "<1.6.8",
  8728. "doctrine/common": "<2.13.3 || >=3,<3.2.2"
  8729. },
  8730. "require-dev": {
  8731. "doctrine/collections": "^1.6.8",
  8732. "doctrine/common": "^2.13.3 || ^3.2.2",
  8733. "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
  8734. },
  8735. "type": "library",
  8736. "autoload": {
  8737. "files": [
  8738. "src/DeepCopy/deep_copy.php"
  8739. ],
  8740. "psr-4": {
  8741. "DeepCopy\\": "src/DeepCopy/"
  8742. }
  8743. },
  8744. "notification-url": "https://packagist.org/downloads/",
  8745. "license": [
  8746. "MIT"
  8747. ],
  8748. "description": "Create deep copies (clones) of your objects",
  8749. "keywords": [
  8750. "clone",
  8751. "copy",
  8752. "duplicate",
  8753. "object",
  8754. "object graph"
  8755. ],
  8756. "support": {
  8757. "issues": "https://github.com/myclabs/DeepCopy/issues",
  8758. "source": "https://github.com/myclabs/DeepCopy/tree/1.11.0"
  8759. },
  8760. "funding": [
  8761. {
  8762. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  8763. "type": "tidelift"
  8764. }
  8765. ],
  8766. "time": "2022-03-03T13:19:32+00:00"
  8767. },
  8768. {
  8769. "name": "nunomaduro/collision",
  8770. "version": "v3.2.0",
  8771. "source": {
  8772. "type": "git",
  8773. "url": "https://github.com/nunomaduro/collision.git",
  8774. "reference": "f7c45764dfe4ba5f2618d265a6f1f9c72732e01d"
  8775. },
  8776. "dist": {
  8777. "type": "zip",
  8778. "url": "https://api.github.com/repos/nunomaduro/collision/zipball/f7c45764dfe4ba5f2618d265a6f1f9c72732e01d",
  8779. "reference": "f7c45764dfe4ba5f2618d265a6f1f9c72732e01d",
  8780. "shasum": "",
  8781. "mirrors": [
  8782. {
  8783. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8784. "preferred": true
  8785. }
  8786. ]
  8787. },
  8788. "require": {
  8789. "filp/whoops": "^2.1.4",
  8790. "php": "^7.2.5 || ^8.0",
  8791. "php-parallel-lint/php-console-highlighter": "0.5.*",
  8792. "symfony/console": "~2.8|~3.3|~4.0"
  8793. },
  8794. "require-dev": {
  8795. "laravel/framework": "^6.0",
  8796. "phpunit/phpunit": "^8.0 || ^9.0"
  8797. },
  8798. "type": "library",
  8799. "extra": {
  8800. "laravel": {
  8801. "providers": [
  8802. "NunoMaduro\\Collision\\Adapters\\Laravel\\CollisionServiceProvider"
  8803. ]
  8804. }
  8805. },
  8806. "autoload": {
  8807. "psr-4": {
  8808. "NunoMaduro\\Collision\\": "src/"
  8809. }
  8810. },
  8811. "notification-url": "https://packagist.org/downloads/",
  8812. "license": [
  8813. "MIT"
  8814. ],
  8815. "authors": [
  8816. {
  8817. "name": "Nuno Maduro",
  8818. "email": "enunomaduro@gmail.com"
  8819. }
  8820. ],
  8821. "description": "Cli error handling for console/command-line PHP applications.",
  8822. "keywords": [
  8823. "artisan",
  8824. "cli",
  8825. "command-line",
  8826. "console",
  8827. "error",
  8828. "handling",
  8829. "laravel",
  8830. "laravel-zero",
  8831. "php",
  8832. "symfony"
  8833. ],
  8834. "support": {
  8835. "issues": "https://github.com/nunomaduro/collision/issues",
  8836. "source": "https://github.com/nunomaduro/collision"
  8837. },
  8838. "funding": [
  8839. {
  8840. "url": "https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=66BYDWAT92N6L",
  8841. "type": "custom"
  8842. },
  8843. {
  8844. "url": "https://github.com/nunomaduro",
  8845. "type": "github"
  8846. },
  8847. {
  8848. "url": "https://www.patreon.com/nunomaduro",
  8849. "type": "patreon"
  8850. }
  8851. ],
  8852. "time": "2021-02-11T09:01:42+00:00"
  8853. },
  8854. {
  8855. "name": "phar-io/manifest",
  8856. "version": "2.0.3",
  8857. "source": {
  8858. "type": "git",
  8859. "url": "https://github.com/phar-io/manifest.git",
  8860. "reference": "97803eca37d319dfa7826cc2437fc020857acb53"
  8861. },
  8862. "dist": {
  8863. "type": "zip",
  8864. "url": "https://api.github.com/repos/phar-io/manifest/zipball/97803eca37d319dfa7826cc2437fc020857acb53",
  8865. "reference": "97803eca37d319dfa7826cc2437fc020857acb53",
  8866. "shasum": "",
  8867. "mirrors": [
  8868. {
  8869. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8870. "preferred": true
  8871. }
  8872. ]
  8873. },
  8874. "require": {
  8875. "ext-dom": "*",
  8876. "ext-phar": "*",
  8877. "ext-xmlwriter": "*",
  8878. "phar-io/version": "^3.0.1",
  8879. "php": "^7.2 || ^8.0"
  8880. },
  8881. "type": "library",
  8882. "extra": {
  8883. "branch-alias": {
  8884. "dev-master": "2.0.x-dev"
  8885. }
  8886. },
  8887. "autoload": {
  8888. "classmap": [
  8889. "src/"
  8890. ]
  8891. },
  8892. "notification-url": "https://packagist.org/downloads/",
  8893. "license": [
  8894. "BSD-3-Clause"
  8895. ],
  8896. "authors": [
  8897. {
  8898. "name": "Arne Blankerts",
  8899. "email": "arne@blankerts.de",
  8900. "role": "Developer"
  8901. },
  8902. {
  8903. "name": "Sebastian Heuer",
  8904. "email": "sebastian@phpeople.de",
  8905. "role": "Developer"
  8906. },
  8907. {
  8908. "name": "Sebastian Bergmann",
  8909. "email": "sebastian@phpunit.de",
  8910. "role": "Developer"
  8911. }
  8912. ],
  8913. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  8914. "support": {
  8915. "issues": "https://github.com/phar-io/manifest/issues",
  8916. "source": "https://github.com/phar-io/manifest/tree/2.0.3"
  8917. },
  8918. "time": "2021-07-20T11:28:43+00:00"
  8919. },
  8920. {
  8921. "name": "phar-io/version",
  8922. "version": "3.2.1",
  8923. "source": {
  8924. "type": "git",
  8925. "url": "https://github.com/phar-io/version.git",
  8926. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
  8927. },
  8928. "dist": {
  8929. "type": "zip",
  8930. "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  8931. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  8932. "shasum": "",
  8933. "mirrors": [
  8934. {
  8935. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8936. "preferred": true
  8937. }
  8938. ]
  8939. },
  8940. "require": {
  8941. "php": "^7.2 || ^8.0"
  8942. },
  8943. "type": "library",
  8944. "autoload": {
  8945. "classmap": [
  8946. "src/"
  8947. ]
  8948. },
  8949. "notification-url": "https://packagist.org/downloads/",
  8950. "license": [
  8951. "BSD-3-Clause"
  8952. ],
  8953. "authors": [
  8954. {
  8955. "name": "Arne Blankerts",
  8956. "email": "arne@blankerts.de",
  8957. "role": "Developer"
  8958. },
  8959. {
  8960. "name": "Sebastian Heuer",
  8961. "email": "sebastian@phpeople.de",
  8962. "role": "Developer"
  8963. },
  8964. {
  8965. "name": "Sebastian Bergmann",
  8966. "email": "sebastian@phpunit.de",
  8967. "role": "Developer"
  8968. }
  8969. ],
  8970. "description": "Library for handling version information and constraints",
  8971. "support": {
  8972. "issues": "https://github.com/phar-io/version/issues",
  8973. "source": "https://github.com/phar-io/version/tree/3.2.1"
  8974. },
  8975. "time": "2022-02-21T01:04:05+00:00"
  8976. },
  8977. {
  8978. "name": "php-parallel-lint/php-console-color",
  8979. "version": "v0.3",
  8980. "source": {
  8981. "type": "git",
  8982. "url": "https://github.com/php-parallel-lint/PHP-Console-Color.git",
  8983. "reference": "b6af326b2088f1ad3b264696c9fd590ec395b49e"
  8984. },
  8985. "dist": {
  8986. "type": "zip",
  8987. "url": "https://api.github.com/repos/php-parallel-lint/PHP-Console-Color/zipball/b6af326b2088f1ad3b264696c9fd590ec395b49e",
  8988. "reference": "b6af326b2088f1ad3b264696c9fd590ec395b49e",
  8989. "shasum": "",
  8990. "mirrors": [
  8991. {
  8992. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8993. "preferred": true
  8994. }
  8995. ]
  8996. },
  8997. "require": {
  8998. "php": ">=5.4.0"
  8999. },
  9000. "replace": {
  9001. "jakub-onderka/php-console-color": "*"
  9002. },
  9003. "require-dev": {
  9004. "php-parallel-lint/php-code-style": "1.0",
  9005. "php-parallel-lint/php-parallel-lint": "1.0",
  9006. "php-parallel-lint/php-var-dump-check": "0.*",
  9007. "phpunit/phpunit": "~4.3",
  9008. "squizlabs/php_codesniffer": "1.*"
  9009. },
  9010. "type": "library",
  9011. "autoload": {
  9012. "psr-4": {
  9013. "JakubOnderka\\PhpConsoleColor\\": "src/"
  9014. }
  9015. },
  9016. "notification-url": "https://packagist.org/downloads/",
  9017. "license": [
  9018. "BSD-2-Clause"
  9019. ],
  9020. "authors": [
  9021. {
  9022. "name": "Jakub Onderka",
  9023. "email": "jakub.onderka@gmail.com"
  9024. }
  9025. ],
  9026. "support": {
  9027. "issues": "https://github.com/php-parallel-lint/PHP-Console-Color/issues",
  9028. "source": "https://github.com/php-parallel-lint/PHP-Console-Color/tree/master"
  9029. },
  9030. "time": "2020-05-14T05:47:14+00:00"
  9031. },
  9032. {
  9033. "name": "php-parallel-lint/php-console-highlighter",
  9034. "version": "v0.5",
  9035. "source": {
  9036. "type": "git",
  9037. "url": "https://github.com/php-parallel-lint/PHP-Console-Highlighter.git",
  9038. "reference": "21bf002f077b177f056d8cb455c5ed573adfdbb8"
  9039. },
  9040. "dist": {
  9041. "type": "zip",
  9042. "url": "https://api.github.com/repos/php-parallel-lint/PHP-Console-Highlighter/zipball/21bf002f077b177f056d8cb455c5ed573adfdbb8",
  9043. "reference": "21bf002f077b177f056d8cb455c5ed573adfdbb8",
  9044. "shasum": "",
  9045. "mirrors": [
  9046. {
  9047. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9048. "preferred": true
  9049. }
  9050. ]
  9051. },
  9052. "require": {
  9053. "ext-tokenizer": "*",
  9054. "php": ">=5.4.0",
  9055. "php-parallel-lint/php-console-color": "~0.2"
  9056. },
  9057. "replace": {
  9058. "jakub-onderka/php-console-highlighter": "*"
  9059. },
  9060. "require-dev": {
  9061. "php-parallel-lint/php-code-style": "~1.0",
  9062. "php-parallel-lint/php-parallel-lint": "~1.0",
  9063. "php-parallel-lint/php-var-dump-check": "~0.1",
  9064. "phpunit/phpunit": "~4.0",
  9065. "squizlabs/php_codesniffer": "~1.5"
  9066. },
  9067. "type": "library",
  9068. "autoload": {
  9069. "psr-4": {
  9070. "JakubOnderka\\PhpConsoleHighlighter\\": "src/"
  9071. }
  9072. },
  9073. "notification-url": "https://packagist.org/downloads/",
  9074. "license": [
  9075. "MIT"
  9076. ],
  9077. "authors": [
  9078. {
  9079. "name": "Jakub Onderka",
  9080. "email": "acci@acci.cz",
  9081. "homepage": "http://www.acci.cz/"
  9082. }
  9083. ],
  9084. "description": "Highlight PHP code in terminal",
  9085. "support": {
  9086. "issues": "https://github.com/php-parallel-lint/PHP-Console-Highlighter/issues",
  9087. "source": "https://github.com/php-parallel-lint/PHP-Console-Highlighter/tree/master"
  9088. },
  9089. "time": "2020-05-13T07:37:49+00:00"
  9090. },
  9091. {
  9092. "name": "phpspec/prophecy",
  9093. "version": "v1.10.3",
  9094. "source": {
  9095. "type": "git",
  9096. "url": "https://github.com/phpspec/prophecy.git",
  9097. "reference": "451c3cd1418cf640de218914901e51b064abb093"
  9098. },
  9099. "dist": {
  9100. "type": "zip",
  9101. "url": "https://api.github.com/repos/phpspec/prophecy/zipball/451c3cd1418cf640de218914901e51b064abb093",
  9102. "reference": "451c3cd1418cf640de218914901e51b064abb093",
  9103. "shasum": "",
  9104. "mirrors": [
  9105. {
  9106. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9107. "preferred": true
  9108. }
  9109. ]
  9110. },
  9111. "require": {
  9112. "doctrine/instantiator": "^1.0.2",
  9113. "php": "^5.3|^7.0",
  9114. "phpdocumentor/reflection-docblock": "^2.0|^3.0.2|^4.0|^5.0",
  9115. "sebastian/comparator": "^1.2.3|^2.0|^3.0|^4.0",
  9116. "sebastian/recursion-context": "^1.0|^2.0|^3.0|^4.0"
  9117. },
  9118. "require-dev": {
  9119. "phpspec/phpspec": "^2.5 || ^3.2",
  9120. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.5 || ^7.1"
  9121. },
  9122. "type": "library",
  9123. "extra": {
  9124. "branch-alias": {
  9125. "dev-master": "1.10.x-dev"
  9126. }
  9127. },
  9128. "autoload": {
  9129. "psr-4": {
  9130. "Prophecy\\": "src/Prophecy"
  9131. }
  9132. },
  9133. "notification-url": "https://packagist.org/downloads/",
  9134. "license": [
  9135. "MIT"
  9136. ],
  9137. "authors": [
  9138. {
  9139. "name": "Konstantin Kudryashov",
  9140. "email": "ever.zet@gmail.com",
  9141. "homepage": "http://everzet.com"
  9142. },
  9143. {
  9144. "name": "Marcello Duarte",
  9145. "email": "marcello.duarte@gmail.com"
  9146. }
  9147. ],
  9148. "description": "Highly opinionated mocking framework for PHP 5.3+",
  9149. "homepage": "https://github.com/phpspec/prophecy",
  9150. "keywords": [
  9151. "Double",
  9152. "Dummy",
  9153. "fake",
  9154. "mock",
  9155. "spy",
  9156. "stub"
  9157. ],
  9158. "support": {
  9159. "issues": "https://github.com/phpspec/prophecy/issues",
  9160. "source": "https://github.com/phpspec/prophecy/tree/v1.10.3"
  9161. },
  9162. "time": "2020-03-05T15:02:03+00:00"
  9163. },
  9164. {
  9165. "name": "phpunit/php-code-coverage",
  9166. "version": "7.0.15",
  9167. "source": {
  9168. "type": "git",
  9169. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  9170. "reference": "819f92bba8b001d4363065928088de22f25a3a48"
  9171. },
  9172. "dist": {
  9173. "type": "zip",
  9174. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/819f92bba8b001d4363065928088de22f25a3a48",
  9175. "reference": "819f92bba8b001d4363065928088de22f25a3a48",
  9176. "shasum": "",
  9177. "mirrors": [
  9178. {
  9179. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9180. "preferred": true
  9181. }
  9182. ]
  9183. },
  9184. "require": {
  9185. "ext-dom": "*",
  9186. "ext-xmlwriter": "*",
  9187. "php": ">=7.2",
  9188. "phpunit/php-file-iterator": "^2.0.2",
  9189. "phpunit/php-text-template": "^1.2.1",
  9190. "phpunit/php-token-stream": "^3.1.3 || ^4.0",
  9191. "sebastian/code-unit-reverse-lookup": "^1.0.1",
  9192. "sebastian/environment": "^4.2.2",
  9193. "sebastian/version": "^2.0.1",
  9194. "theseer/tokenizer": "^1.1.3"
  9195. },
  9196. "require-dev": {
  9197. "phpunit/phpunit": "^8.2.2"
  9198. },
  9199. "suggest": {
  9200. "ext-xdebug": "^2.7.2"
  9201. },
  9202. "type": "library",
  9203. "extra": {
  9204. "branch-alias": {
  9205. "dev-master": "7.0-dev"
  9206. }
  9207. },
  9208. "autoload": {
  9209. "classmap": [
  9210. "src/"
  9211. ]
  9212. },
  9213. "notification-url": "https://packagist.org/downloads/",
  9214. "license": [
  9215. "BSD-3-Clause"
  9216. ],
  9217. "authors": [
  9218. {
  9219. "name": "Sebastian Bergmann",
  9220. "email": "sebastian@phpunit.de",
  9221. "role": "lead"
  9222. }
  9223. ],
  9224. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  9225. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  9226. "keywords": [
  9227. "coverage",
  9228. "testing",
  9229. "xunit"
  9230. ],
  9231. "support": {
  9232. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  9233. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/7.0.15"
  9234. },
  9235. "funding": [
  9236. {
  9237. "url": "https://github.com/sebastianbergmann",
  9238. "type": "github"
  9239. }
  9240. ],
  9241. "time": "2021-07-26T12:20:09+00:00"
  9242. },
  9243. {
  9244. "name": "phpunit/php-file-iterator",
  9245. "version": "2.0.5",
  9246. "source": {
  9247. "type": "git",
  9248. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  9249. "reference": "42c5ba5220e6904cbfe8b1a1bda7c0cfdc8c12f5"
  9250. },
  9251. "dist": {
  9252. "type": "zip",
  9253. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/42c5ba5220e6904cbfe8b1a1bda7c0cfdc8c12f5",
  9254. "reference": "42c5ba5220e6904cbfe8b1a1bda7c0cfdc8c12f5",
  9255. "shasum": "",
  9256. "mirrors": [
  9257. {
  9258. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9259. "preferred": true
  9260. }
  9261. ]
  9262. },
  9263. "require": {
  9264. "php": ">=7.1"
  9265. },
  9266. "require-dev": {
  9267. "phpunit/phpunit": "^8.5"
  9268. },
  9269. "type": "library",
  9270. "extra": {
  9271. "branch-alias": {
  9272. "dev-master": "2.0.x-dev"
  9273. }
  9274. },
  9275. "autoload": {
  9276. "classmap": [
  9277. "src/"
  9278. ]
  9279. },
  9280. "notification-url": "https://packagist.org/downloads/",
  9281. "license": [
  9282. "BSD-3-Clause"
  9283. ],
  9284. "authors": [
  9285. {
  9286. "name": "Sebastian Bergmann",
  9287. "email": "sebastian@phpunit.de",
  9288. "role": "lead"
  9289. }
  9290. ],
  9291. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  9292. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  9293. "keywords": [
  9294. "filesystem",
  9295. "iterator"
  9296. ],
  9297. "support": {
  9298. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  9299. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/2.0.5"
  9300. },
  9301. "funding": [
  9302. {
  9303. "url": "https://github.com/sebastianbergmann",
  9304. "type": "github"
  9305. }
  9306. ],
  9307. "time": "2021-12-02T12:42:26+00:00"
  9308. },
  9309. {
  9310. "name": "phpunit/php-text-template",
  9311. "version": "1.2.1",
  9312. "source": {
  9313. "type": "git",
  9314. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  9315. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686"
  9316. },
  9317. "dist": {
  9318. "type": "zip",
  9319. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  9320. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  9321. "shasum": "",
  9322. "mirrors": [
  9323. {
  9324. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9325. "preferred": true
  9326. }
  9327. ]
  9328. },
  9329. "require": {
  9330. "php": ">=5.3.3"
  9331. },
  9332. "type": "library",
  9333. "autoload": {
  9334. "classmap": [
  9335. "src/"
  9336. ]
  9337. },
  9338. "notification-url": "https://packagist.org/downloads/",
  9339. "license": [
  9340. "BSD-3-Clause"
  9341. ],
  9342. "authors": [
  9343. {
  9344. "name": "Sebastian Bergmann",
  9345. "email": "sebastian@phpunit.de",
  9346. "role": "lead"
  9347. }
  9348. ],
  9349. "description": "Simple template engine.",
  9350. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  9351. "keywords": [
  9352. "template"
  9353. ],
  9354. "support": {
  9355. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  9356. "source": "https://github.com/sebastianbergmann/php-text-template/tree/1.2.1"
  9357. },
  9358. "time": "2015-06-21T13:50:34+00:00"
  9359. },
  9360. {
  9361. "name": "phpunit/php-timer",
  9362. "version": "2.1.3",
  9363. "source": {
  9364. "type": "git",
  9365. "url": "https://github.com/sebastianbergmann/php-timer.git",
  9366. "reference": "2454ae1765516d20c4ffe103d85a58a9a3bd5662"
  9367. },
  9368. "dist": {
  9369. "type": "zip",
  9370. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/2454ae1765516d20c4ffe103d85a58a9a3bd5662",
  9371. "reference": "2454ae1765516d20c4ffe103d85a58a9a3bd5662",
  9372. "shasum": "",
  9373. "mirrors": [
  9374. {
  9375. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9376. "preferred": true
  9377. }
  9378. ]
  9379. },
  9380. "require": {
  9381. "php": ">=7.1"
  9382. },
  9383. "require-dev": {
  9384. "phpunit/phpunit": "^8.5"
  9385. },
  9386. "type": "library",
  9387. "extra": {
  9388. "branch-alias": {
  9389. "dev-master": "2.1-dev"
  9390. }
  9391. },
  9392. "autoload": {
  9393. "classmap": [
  9394. "src/"
  9395. ]
  9396. },
  9397. "notification-url": "https://packagist.org/downloads/",
  9398. "license": [
  9399. "BSD-3-Clause"
  9400. ],
  9401. "authors": [
  9402. {
  9403. "name": "Sebastian Bergmann",
  9404. "email": "sebastian@phpunit.de",
  9405. "role": "lead"
  9406. }
  9407. ],
  9408. "description": "Utility class for timing",
  9409. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  9410. "keywords": [
  9411. "timer"
  9412. ],
  9413. "support": {
  9414. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  9415. "source": "https://github.com/sebastianbergmann/php-timer/tree/2.1.3"
  9416. },
  9417. "funding": [
  9418. {
  9419. "url": "https://github.com/sebastianbergmann",
  9420. "type": "github"
  9421. }
  9422. ],
  9423. "time": "2020-11-30T08:20:02+00:00"
  9424. },
  9425. {
  9426. "name": "phpunit/php-token-stream",
  9427. "version": "4.0.4",
  9428. "source": {
  9429. "type": "git",
  9430. "url": "https://github.com/sebastianbergmann/php-token-stream.git",
  9431. "reference": "a853a0e183b9db7eed023d7933a858fa1c8d25a3"
  9432. },
  9433. "dist": {
  9434. "type": "zip",
  9435. "url": "https://api.github.com/repos/sebastianbergmann/php-token-stream/zipball/a853a0e183b9db7eed023d7933a858fa1c8d25a3",
  9436. "reference": "a853a0e183b9db7eed023d7933a858fa1c8d25a3",
  9437. "shasum": "",
  9438. "mirrors": [
  9439. {
  9440. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9441. "preferred": true
  9442. }
  9443. ]
  9444. },
  9445. "require": {
  9446. "ext-tokenizer": "*",
  9447. "php": "^7.3 || ^8.0"
  9448. },
  9449. "require-dev": {
  9450. "phpunit/phpunit": "^9.0"
  9451. },
  9452. "type": "library",
  9453. "extra": {
  9454. "branch-alias": {
  9455. "dev-master": "4.0-dev"
  9456. }
  9457. },
  9458. "autoload": {
  9459. "classmap": [
  9460. "src/"
  9461. ]
  9462. },
  9463. "notification-url": "https://packagist.org/downloads/",
  9464. "license": [
  9465. "BSD-3-Clause"
  9466. ],
  9467. "authors": [
  9468. {
  9469. "name": "Sebastian Bergmann",
  9470. "email": "sebastian@phpunit.de"
  9471. }
  9472. ],
  9473. "description": "Wrapper around PHP's tokenizer extension.",
  9474. "homepage": "https://github.com/sebastianbergmann/php-token-stream/",
  9475. "keywords": [
  9476. "tokenizer"
  9477. ],
  9478. "support": {
  9479. "issues": "https://github.com/sebastianbergmann/php-token-stream/issues",
  9480. "source": "https://github.com/sebastianbergmann/php-token-stream/tree/master"
  9481. },
  9482. "funding": [
  9483. {
  9484. "url": "https://github.com/sebastianbergmann",
  9485. "type": "github"
  9486. }
  9487. ],
  9488. "abandoned": true,
  9489. "time": "2020-08-04T08:28:15+00:00"
  9490. },
  9491. {
  9492. "name": "phpunit/phpunit",
  9493. "version": "8.5.26",
  9494. "source": {
  9495. "type": "git",
  9496. "url": "https://github.com/sebastianbergmann/phpunit.git",
  9497. "reference": "ef117c59fc4c54a979021b26d08a3373e386606d"
  9498. },
  9499. "dist": {
  9500. "type": "zip",
  9501. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/ef117c59fc4c54a979021b26d08a3373e386606d",
  9502. "reference": "ef117c59fc4c54a979021b26d08a3373e386606d",
  9503. "shasum": "",
  9504. "mirrors": [
  9505. {
  9506. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9507. "preferred": true
  9508. }
  9509. ]
  9510. },
  9511. "require": {
  9512. "doctrine/instantiator": "^1.3.1",
  9513. "ext-dom": "*",
  9514. "ext-json": "*",
  9515. "ext-libxml": "*",
  9516. "ext-mbstring": "*",
  9517. "ext-xml": "*",
  9518. "ext-xmlwriter": "*",
  9519. "myclabs/deep-copy": "^1.10.0",
  9520. "phar-io/manifest": "^2.0.3",
  9521. "phar-io/version": "^3.0.2",
  9522. "php": ">=7.2",
  9523. "phpspec/prophecy": "^1.10.3",
  9524. "phpunit/php-code-coverage": "^7.0.12",
  9525. "phpunit/php-file-iterator": "^2.0.4",
  9526. "phpunit/php-text-template": "^1.2.1",
  9527. "phpunit/php-timer": "^2.1.2",
  9528. "sebastian/comparator": "^3.0.2",
  9529. "sebastian/diff": "^3.0.2",
  9530. "sebastian/environment": "^4.2.3",
  9531. "sebastian/exporter": "^3.1.2",
  9532. "sebastian/global-state": "^3.0.0",
  9533. "sebastian/object-enumerator": "^3.0.3",
  9534. "sebastian/resource-operations": "^2.0.1",
  9535. "sebastian/type": "^1.1.3",
  9536. "sebastian/version": "^2.0.1"
  9537. },
  9538. "require-dev": {
  9539. "ext-pdo": "*"
  9540. },
  9541. "suggest": {
  9542. "ext-soap": "*",
  9543. "ext-xdebug": "*",
  9544. "phpunit/php-invoker": "^2.0.0"
  9545. },
  9546. "bin": [
  9547. "phpunit"
  9548. ],
  9549. "type": "library",
  9550. "extra": {
  9551. "branch-alias": {
  9552. "dev-master": "8.5-dev"
  9553. }
  9554. },
  9555. "autoload": {
  9556. "classmap": [
  9557. "src/"
  9558. ]
  9559. },
  9560. "notification-url": "https://packagist.org/downloads/",
  9561. "license": [
  9562. "BSD-3-Clause"
  9563. ],
  9564. "authors": [
  9565. {
  9566. "name": "Sebastian Bergmann",
  9567. "email": "sebastian@phpunit.de",
  9568. "role": "lead"
  9569. }
  9570. ],
  9571. "description": "The PHP Unit Testing framework.",
  9572. "homepage": "https://phpunit.de/",
  9573. "keywords": [
  9574. "phpunit",
  9575. "testing",
  9576. "xunit"
  9577. ],
  9578. "support": {
  9579. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  9580. "source": "https://github.com/sebastianbergmann/phpunit/tree/8.5.26"
  9581. },
  9582. "funding": [
  9583. {
  9584. "url": "https://phpunit.de/sponsors.html",
  9585. "type": "custom"
  9586. },
  9587. {
  9588. "url": "https://github.com/sebastianbergmann",
  9589. "type": "github"
  9590. }
  9591. ],
  9592. "time": "2022-04-01T12:34:39+00:00"
  9593. },
  9594. {
  9595. "name": "scrivo/highlight.php",
  9596. "version": "v9.18.1.9",
  9597. "source": {
  9598. "type": "git",
  9599. "url": "https://github.com/scrivo/highlight.php.git",
  9600. "reference": "d45585504777e6194a91dffc7270ca39833787f8"
  9601. },
  9602. "dist": {
  9603. "type": "zip",
  9604. "url": "https://api.github.com/repos/scrivo/highlight.php/zipball/d45585504777e6194a91dffc7270ca39833787f8",
  9605. "reference": "d45585504777e6194a91dffc7270ca39833787f8",
  9606. "shasum": "",
  9607. "mirrors": [
  9608. {
  9609. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9610. "preferred": true
  9611. }
  9612. ]
  9613. },
  9614. "require": {
  9615. "ext-json": "*",
  9616. "php": ">=5.4"
  9617. },
  9618. "require-dev": {
  9619. "phpunit/phpunit": "^4.8|^5.7",
  9620. "sabberworm/php-css-parser": "^8.3",
  9621. "symfony/finder": "^2.8|^3.4",
  9622. "symfony/var-dumper": "^2.8|^3.4"
  9623. },
  9624. "suggest": {
  9625. "ext-mbstring": "Allows highlighting code with unicode characters and supports language with unicode keywords"
  9626. },
  9627. "type": "library",
  9628. "autoload": {
  9629. "files": [
  9630. "HighlightUtilities/functions.php"
  9631. ],
  9632. "psr-0": {
  9633. "Highlight\\": "",
  9634. "HighlightUtilities\\": ""
  9635. }
  9636. },
  9637. "notification-url": "https://packagist.org/downloads/",
  9638. "license": [
  9639. "BSD-3-Clause"
  9640. ],
  9641. "authors": [
  9642. {
  9643. "name": "Geert Bergman",
  9644. "homepage": "http://www.scrivo.org/",
  9645. "role": "Project Author"
  9646. },
  9647. {
  9648. "name": "Vladimir Jimenez",
  9649. "homepage": "https://allejo.io",
  9650. "role": "Maintainer"
  9651. },
  9652. {
  9653. "name": "Martin Folkers",
  9654. "homepage": "https://twobrain.io",
  9655. "role": "Contributor"
  9656. }
  9657. ],
  9658. "description": "Server side syntax highlighter that supports 185 languages. It's a PHP port of highlight.js",
  9659. "keywords": [
  9660. "code",
  9661. "highlight",
  9662. "highlight.js",
  9663. "highlight.php",
  9664. "syntax"
  9665. ],
  9666. "support": {
  9667. "issues": "https://github.com/scrivo/highlight.php/issues",
  9668. "source": "https://github.com/scrivo/highlight.php"
  9669. },
  9670. "funding": [
  9671. {
  9672. "url": "https://github.com/allejo",
  9673. "type": "github"
  9674. }
  9675. ],
  9676. "time": "2021-12-03T06:45:28+00:00"
  9677. },
  9678. {
  9679. "name": "sebastian/code-unit-reverse-lookup",
  9680. "version": "1.0.2",
  9681. "source": {
  9682. "type": "git",
  9683. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  9684. "reference": "1de8cd5c010cb153fcd68b8d0f64606f523f7619"
  9685. },
  9686. "dist": {
  9687. "type": "zip",
  9688. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/1de8cd5c010cb153fcd68b8d0f64606f523f7619",
  9689. "reference": "1de8cd5c010cb153fcd68b8d0f64606f523f7619",
  9690. "shasum": "",
  9691. "mirrors": [
  9692. {
  9693. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9694. "preferred": true
  9695. }
  9696. ]
  9697. },
  9698. "require": {
  9699. "php": ">=5.6"
  9700. },
  9701. "require-dev": {
  9702. "phpunit/phpunit": "^8.5"
  9703. },
  9704. "type": "library",
  9705. "extra": {
  9706. "branch-alias": {
  9707. "dev-master": "1.0.x-dev"
  9708. }
  9709. },
  9710. "autoload": {
  9711. "classmap": [
  9712. "src/"
  9713. ]
  9714. },
  9715. "notification-url": "https://packagist.org/downloads/",
  9716. "license": [
  9717. "BSD-3-Clause"
  9718. ],
  9719. "authors": [
  9720. {
  9721. "name": "Sebastian Bergmann",
  9722. "email": "sebastian@phpunit.de"
  9723. }
  9724. ],
  9725. "description": "Looks up which function or method a line of code belongs to",
  9726. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  9727. "support": {
  9728. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  9729. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/1.0.2"
  9730. },
  9731. "funding": [
  9732. {
  9733. "url": "https://github.com/sebastianbergmann",
  9734. "type": "github"
  9735. }
  9736. ],
  9737. "time": "2020-11-30T08:15:22+00:00"
  9738. },
  9739. {
  9740. "name": "sebastian/comparator",
  9741. "version": "3.0.3",
  9742. "source": {
  9743. "type": "git",
  9744. "url": "https://github.com/sebastianbergmann/comparator.git",
  9745. "reference": "1071dfcef776a57013124ff35e1fc41ccd294758"
  9746. },
  9747. "dist": {
  9748. "type": "zip",
  9749. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/1071dfcef776a57013124ff35e1fc41ccd294758",
  9750. "reference": "1071dfcef776a57013124ff35e1fc41ccd294758",
  9751. "shasum": "",
  9752. "mirrors": [
  9753. {
  9754. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9755. "preferred": true
  9756. }
  9757. ]
  9758. },
  9759. "require": {
  9760. "php": ">=7.1",
  9761. "sebastian/diff": "^3.0",
  9762. "sebastian/exporter": "^3.1"
  9763. },
  9764. "require-dev": {
  9765. "phpunit/phpunit": "^8.5"
  9766. },
  9767. "type": "library",
  9768. "extra": {
  9769. "branch-alias": {
  9770. "dev-master": "3.0-dev"
  9771. }
  9772. },
  9773. "autoload": {
  9774. "classmap": [
  9775. "src/"
  9776. ]
  9777. },
  9778. "notification-url": "https://packagist.org/downloads/",
  9779. "license": [
  9780. "BSD-3-Clause"
  9781. ],
  9782. "authors": [
  9783. {
  9784. "name": "Sebastian Bergmann",
  9785. "email": "sebastian@phpunit.de"
  9786. },
  9787. {
  9788. "name": "Jeff Welch",
  9789. "email": "whatthejeff@gmail.com"
  9790. },
  9791. {
  9792. "name": "Volker Dusch",
  9793. "email": "github@wallbash.com"
  9794. },
  9795. {
  9796. "name": "Bernhard Schussek",
  9797. "email": "bschussek@2bepublished.at"
  9798. }
  9799. ],
  9800. "description": "Provides the functionality to compare PHP values for equality",
  9801. "homepage": "https://github.com/sebastianbergmann/comparator",
  9802. "keywords": [
  9803. "comparator",
  9804. "compare",
  9805. "equality"
  9806. ],
  9807. "support": {
  9808. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  9809. "source": "https://github.com/sebastianbergmann/comparator/tree/3.0.3"
  9810. },
  9811. "funding": [
  9812. {
  9813. "url": "https://github.com/sebastianbergmann",
  9814. "type": "github"
  9815. }
  9816. ],
  9817. "time": "2020-11-30T08:04:30+00:00"
  9818. },
  9819. {
  9820. "name": "sebastian/diff",
  9821. "version": "3.0.3",
  9822. "source": {
  9823. "type": "git",
  9824. "url": "https://github.com/sebastianbergmann/diff.git",
  9825. "reference": "14f72dd46eaf2f2293cbe79c93cc0bc43161a211"
  9826. },
  9827. "dist": {
  9828. "type": "zip",
  9829. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/14f72dd46eaf2f2293cbe79c93cc0bc43161a211",
  9830. "reference": "14f72dd46eaf2f2293cbe79c93cc0bc43161a211",
  9831. "shasum": "",
  9832. "mirrors": [
  9833. {
  9834. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9835. "preferred": true
  9836. }
  9837. ]
  9838. },
  9839. "require": {
  9840. "php": ">=7.1"
  9841. },
  9842. "require-dev": {
  9843. "phpunit/phpunit": "^7.5 || ^8.0",
  9844. "symfony/process": "^2 || ^3.3 || ^4"
  9845. },
  9846. "type": "library",
  9847. "extra": {
  9848. "branch-alias": {
  9849. "dev-master": "3.0-dev"
  9850. }
  9851. },
  9852. "autoload": {
  9853. "classmap": [
  9854. "src/"
  9855. ]
  9856. },
  9857. "notification-url": "https://packagist.org/downloads/",
  9858. "license": [
  9859. "BSD-3-Clause"
  9860. ],
  9861. "authors": [
  9862. {
  9863. "name": "Sebastian Bergmann",
  9864. "email": "sebastian@phpunit.de"
  9865. },
  9866. {
  9867. "name": "Kore Nordmann",
  9868. "email": "mail@kore-nordmann.de"
  9869. }
  9870. ],
  9871. "description": "Diff implementation",
  9872. "homepage": "https://github.com/sebastianbergmann/diff",
  9873. "keywords": [
  9874. "diff",
  9875. "udiff",
  9876. "unidiff",
  9877. "unified diff"
  9878. ],
  9879. "support": {
  9880. "issues": "https://github.com/sebastianbergmann/diff/issues",
  9881. "source": "https://github.com/sebastianbergmann/diff/tree/3.0.3"
  9882. },
  9883. "funding": [
  9884. {
  9885. "url": "https://github.com/sebastianbergmann",
  9886. "type": "github"
  9887. }
  9888. ],
  9889. "time": "2020-11-30T07:59:04+00:00"
  9890. },
  9891. {
  9892. "name": "sebastian/environment",
  9893. "version": "4.2.4",
  9894. "source": {
  9895. "type": "git",
  9896. "url": "https://github.com/sebastianbergmann/environment.git",
  9897. "reference": "d47bbbad83711771f167c72d4e3f25f7fcc1f8b0"
  9898. },
  9899. "dist": {
  9900. "type": "zip",
  9901. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/d47bbbad83711771f167c72d4e3f25f7fcc1f8b0",
  9902. "reference": "d47bbbad83711771f167c72d4e3f25f7fcc1f8b0",
  9903. "shasum": "",
  9904. "mirrors": [
  9905. {
  9906. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9907. "preferred": true
  9908. }
  9909. ]
  9910. },
  9911. "require": {
  9912. "php": ">=7.1"
  9913. },
  9914. "require-dev": {
  9915. "phpunit/phpunit": "^7.5"
  9916. },
  9917. "suggest": {
  9918. "ext-posix": "*"
  9919. },
  9920. "type": "library",
  9921. "extra": {
  9922. "branch-alias": {
  9923. "dev-master": "4.2-dev"
  9924. }
  9925. },
  9926. "autoload": {
  9927. "classmap": [
  9928. "src/"
  9929. ]
  9930. },
  9931. "notification-url": "https://packagist.org/downloads/",
  9932. "license": [
  9933. "BSD-3-Clause"
  9934. ],
  9935. "authors": [
  9936. {
  9937. "name": "Sebastian Bergmann",
  9938. "email": "sebastian@phpunit.de"
  9939. }
  9940. ],
  9941. "description": "Provides functionality to handle HHVM/PHP environments",
  9942. "homepage": "http://www.github.com/sebastianbergmann/environment",
  9943. "keywords": [
  9944. "Xdebug",
  9945. "environment",
  9946. "hhvm"
  9947. ],
  9948. "support": {
  9949. "issues": "https://github.com/sebastianbergmann/environment/issues",
  9950. "source": "https://github.com/sebastianbergmann/environment/tree/4.2.4"
  9951. },
  9952. "funding": [
  9953. {
  9954. "url": "https://github.com/sebastianbergmann",
  9955. "type": "github"
  9956. }
  9957. ],
  9958. "time": "2020-11-30T07:53:42+00:00"
  9959. },
  9960. {
  9961. "name": "sebastian/exporter",
  9962. "version": "3.1.4",
  9963. "source": {
  9964. "type": "git",
  9965. "url": "https://github.com/sebastianbergmann/exporter.git",
  9966. "reference": "0c32ea2e40dbf59de29f3b49bf375176ce7dd8db"
  9967. },
  9968. "dist": {
  9969. "type": "zip",
  9970. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/0c32ea2e40dbf59de29f3b49bf375176ce7dd8db",
  9971. "reference": "0c32ea2e40dbf59de29f3b49bf375176ce7dd8db",
  9972. "shasum": "",
  9973. "mirrors": [
  9974. {
  9975. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9976. "preferred": true
  9977. }
  9978. ]
  9979. },
  9980. "require": {
  9981. "php": ">=7.0",
  9982. "sebastian/recursion-context": "^3.0"
  9983. },
  9984. "require-dev": {
  9985. "ext-mbstring": "*",
  9986. "phpunit/phpunit": "^8.5"
  9987. },
  9988. "type": "library",
  9989. "extra": {
  9990. "branch-alias": {
  9991. "dev-master": "3.1.x-dev"
  9992. }
  9993. },
  9994. "autoload": {
  9995. "classmap": [
  9996. "src/"
  9997. ]
  9998. },
  9999. "notification-url": "https://packagist.org/downloads/",
  10000. "license": [
  10001. "BSD-3-Clause"
  10002. ],
  10003. "authors": [
  10004. {
  10005. "name": "Sebastian Bergmann",
  10006. "email": "sebastian@phpunit.de"
  10007. },
  10008. {
  10009. "name": "Jeff Welch",
  10010. "email": "whatthejeff@gmail.com"
  10011. },
  10012. {
  10013. "name": "Volker Dusch",
  10014. "email": "github@wallbash.com"
  10015. },
  10016. {
  10017. "name": "Adam Harvey",
  10018. "email": "aharvey@php.net"
  10019. },
  10020. {
  10021. "name": "Bernhard Schussek",
  10022. "email": "bschussek@gmail.com"
  10023. }
  10024. ],
  10025. "description": "Provides the functionality to export PHP variables for visualization",
  10026. "homepage": "http://www.github.com/sebastianbergmann/exporter",
  10027. "keywords": [
  10028. "export",
  10029. "exporter"
  10030. ],
  10031. "support": {
  10032. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  10033. "source": "https://github.com/sebastianbergmann/exporter/tree/3.1.4"
  10034. },
  10035. "funding": [
  10036. {
  10037. "url": "https://github.com/sebastianbergmann",
  10038. "type": "github"
  10039. }
  10040. ],
  10041. "time": "2021-11-11T13:51:24+00:00"
  10042. },
  10043. {
  10044. "name": "sebastian/global-state",
  10045. "version": "3.0.2",
  10046. "source": {
  10047. "type": "git",
  10048. "url": "https://github.com/sebastianbergmann/global-state.git",
  10049. "reference": "de036ec91d55d2a9e0db2ba975b512cdb1c23921"
  10050. },
  10051. "dist": {
  10052. "type": "zip",
  10053. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/de036ec91d55d2a9e0db2ba975b512cdb1c23921",
  10054. "reference": "de036ec91d55d2a9e0db2ba975b512cdb1c23921",
  10055. "shasum": "",
  10056. "mirrors": [
  10057. {
  10058. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10059. "preferred": true
  10060. }
  10061. ]
  10062. },
  10063. "require": {
  10064. "php": ">=7.2",
  10065. "sebastian/object-reflector": "^1.1.1",
  10066. "sebastian/recursion-context": "^3.0"
  10067. },
  10068. "require-dev": {
  10069. "ext-dom": "*",
  10070. "phpunit/phpunit": "^8.0"
  10071. },
  10072. "suggest": {
  10073. "ext-uopz": "*"
  10074. },
  10075. "type": "library",
  10076. "extra": {
  10077. "branch-alias": {
  10078. "dev-master": "3.0-dev"
  10079. }
  10080. },
  10081. "autoload": {
  10082. "classmap": [
  10083. "src/"
  10084. ]
  10085. },
  10086. "notification-url": "https://packagist.org/downloads/",
  10087. "license": [
  10088. "BSD-3-Clause"
  10089. ],
  10090. "authors": [
  10091. {
  10092. "name": "Sebastian Bergmann",
  10093. "email": "sebastian@phpunit.de"
  10094. }
  10095. ],
  10096. "description": "Snapshotting of global state",
  10097. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  10098. "keywords": [
  10099. "global state"
  10100. ],
  10101. "support": {
  10102. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  10103. "source": "https://github.com/sebastianbergmann/global-state/tree/3.0.2"
  10104. },
  10105. "funding": [
  10106. {
  10107. "url": "https://github.com/sebastianbergmann",
  10108. "type": "github"
  10109. }
  10110. ],
  10111. "time": "2022-02-10T06:55:38+00:00"
  10112. },
  10113. {
  10114. "name": "sebastian/object-enumerator",
  10115. "version": "3.0.4",
  10116. "source": {
  10117. "type": "git",
  10118. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  10119. "reference": "e67f6d32ebd0c749cf9d1dbd9f226c727043cdf2"
  10120. },
  10121. "dist": {
  10122. "type": "zip",
  10123. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/e67f6d32ebd0c749cf9d1dbd9f226c727043cdf2",
  10124. "reference": "e67f6d32ebd0c749cf9d1dbd9f226c727043cdf2",
  10125. "shasum": "",
  10126. "mirrors": [
  10127. {
  10128. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10129. "preferred": true
  10130. }
  10131. ]
  10132. },
  10133. "require": {
  10134. "php": ">=7.0",
  10135. "sebastian/object-reflector": "^1.1.1",
  10136. "sebastian/recursion-context": "^3.0"
  10137. },
  10138. "require-dev": {
  10139. "phpunit/phpunit": "^6.0"
  10140. },
  10141. "type": "library",
  10142. "extra": {
  10143. "branch-alias": {
  10144. "dev-master": "3.0.x-dev"
  10145. }
  10146. },
  10147. "autoload": {
  10148. "classmap": [
  10149. "src/"
  10150. ]
  10151. },
  10152. "notification-url": "https://packagist.org/downloads/",
  10153. "license": [
  10154. "BSD-3-Clause"
  10155. ],
  10156. "authors": [
  10157. {
  10158. "name": "Sebastian Bergmann",
  10159. "email": "sebastian@phpunit.de"
  10160. }
  10161. ],
  10162. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  10163. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  10164. "support": {
  10165. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  10166. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/3.0.4"
  10167. },
  10168. "funding": [
  10169. {
  10170. "url": "https://github.com/sebastianbergmann",
  10171. "type": "github"
  10172. }
  10173. ],
  10174. "time": "2020-11-30T07:40:27+00:00"
  10175. },
  10176. {
  10177. "name": "sebastian/object-reflector",
  10178. "version": "1.1.2",
  10179. "source": {
  10180. "type": "git",
  10181. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  10182. "reference": "9b8772b9cbd456ab45d4a598d2dd1a1bced6363d"
  10183. },
  10184. "dist": {
  10185. "type": "zip",
  10186. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/9b8772b9cbd456ab45d4a598d2dd1a1bced6363d",
  10187. "reference": "9b8772b9cbd456ab45d4a598d2dd1a1bced6363d",
  10188. "shasum": "",
  10189. "mirrors": [
  10190. {
  10191. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10192. "preferred": true
  10193. }
  10194. ]
  10195. },
  10196. "require": {
  10197. "php": ">=7.0"
  10198. },
  10199. "require-dev": {
  10200. "phpunit/phpunit": "^6.0"
  10201. },
  10202. "type": "library",
  10203. "extra": {
  10204. "branch-alias": {
  10205. "dev-master": "1.1-dev"
  10206. }
  10207. },
  10208. "autoload": {
  10209. "classmap": [
  10210. "src/"
  10211. ]
  10212. },
  10213. "notification-url": "https://packagist.org/downloads/",
  10214. "license": [
  10215. "BSD-3-Clause"
  10216. ],
  10217. "authors": [
  10218. {
  10219. "name": "Sebastian Bergmann",
  10220. "email": "sebastian@phpunit.de"
  10221. }
  10222. ],
  10223. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  10224. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  10225. "support": {
  10226. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  10227. "source": "https://github.com/sebastianbergmann/object-reflector/tree/1.1.2"
  10228. },
  10229. "funding": [
  10230. {
  10231. "url": "https://github.com/sebastianbergmann",
  10232. "type": "github"
  10233. }
  10234. ],
  10235. "time": "2020-11-30T07:37:18+00:00"
  10236. },
  10237. {
  10238. "name": "sebastian/recursion-context",
  10239. "version": "3.0.1",
  10240. "source": {
  10241. "type": "git",
  10242. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  10243. "reference": "367dcba38d6e1977be014dc4b22f47a484dac7fb"
  10244. },
  10245. "dist": {
  10246. "type": "zip",
  10247. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/367dcba38d6e1977be014dc4b22f47a484dac7fb",
  10248. "reference": "367dcba38d6e1977be014dc4b22f47a484dac7fb",
  10249. "shasum": "",
  10250. "mirrors": [
  10251. {
  10252. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10253. "preferred": true
  10254. }
  10255. ]
  10256. },
  10257. "require": {
  10258. "php": ">=7.0"
  10259. },
  10260. "require-dev": {
  10261. "phpunit/phpunit": "^6.0"
  10262. },
  10263. "type": "library",
  10264. "extra": {
  10265. "branch-alias": {
  10266. "dev-master": "3.0.x-dev"
  10267. }
  10268. },
  10269. "autoload": {
  10270. "classmap": [
  10271. "src/"
  10272. ]
  10273. },
  10274. "notification-url": "https://packagist.org/downloads/",
  10275. "license": [
  10276. "BSD-3-Clause"
  10277. ],
  10278. "authors": [
  10279. {
  10280. "name": "Sebastian Bergmann",
  10281. "email": "sebastian@phpunit.de"
  10282. },
  10283. {
  10284. "name": "Jeff Welch",
  10285. "email": "whatthejeff@gmail.com"
  10286. },
  10287. {
  10288. "name": "Adam Harvey",
  10289. "email": "aharvey@php.net"
  10290. }
  10291. ],
  10292. "description": "Provides functionality to recursively process PHP variables",
  10293. "homepage": "http://www.github.com/sebastianbergmann/recursion-context",
  10294. "support": {
  10295. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  10296. "source": "https://github.com/sebastianbergmann/recursion-context/tree/3.0.1"
  10297. },
  10298. "funding": [
  10299. {
  10300. "url": "https://github.com/sebastianbergmann",
  10301. "type": "github"
  10302. }
  10303. ],
  10304. "time": "2020-11-30T07:34:24+00:00"
  10305. },
  10306. {
  10307. "name": "sebastian/resource-operations",
  10308. "version": "2.0.2",
  10309. "source": {
  10310. "type": "git",
  10311. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  10312. "reference": "31d35ca87926450c44eae7e2611d45a7a65ea8b3"
  10313. },
  10314. "dist": {
  10315. "type": "zip",
  10316. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/31d35ca87926450c44eae7e2611d45a7a65ea8b3",
  10317. "reference": "31d35ca87926450c44eae7e2611d45a7a65ea8b3",
  10318. "shasum": "",
  10319. "mirrors": [
  10320. {
  10321. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10322. "preferred": true
  10323. }
  10324. ]
  10325. },
  10326. "require": {
  10327. "php": ">=7.1"
  10328. },
  10329. "type": "library",
  10330. "extra": {
  10331. "branch-alias": {
  10332. "dev-master": "2.0-dev"
  10333. }
  10334. },
  10335. "autoload": {
  10336. "classmap": [
  10337. "src/"
  10338. ]
  10339. },
  10340. "notification-url": "https://packagist.org/downloads/",
  10341. "license": [
  10342. "BSD-3-Clause"
  10343. ],
  10344. "authors": [
  10345. {
  10346. "name": "Sebastian Bergmann",
  10347. "email": "sebastian@phpunit.de"
  10348. }
  10349. ],
  10350. "description": "Provides a list of PHP built-in functions that operate on resources",
  10351. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  10352. "support": {
  10353. "issues": "https://github.com/sebastianbergmann/resource-operations/issues",
  10354. "source": "https://github.com/sebastianbergmann/resource-operations/tree/2.0.2"
  10355. },
  10356. "funding": [
  10357. {
  10358. "url": "https://github.com/sebastianbergmann",
  10359. "type": "github"
  10360. }
  10361. ],
  10362. "time": "2020-11-30T07:30:19+00:00"
  10363. },
  10364. {
  10365. "name": "sebastian/type",
  10366. "version": "1.1.4",
  10367. "source": {
  10368. "type": "git",
  10369. "url": "https://github.com/sebastianbergmann/type.git",
  10370. "reference": "0150cfbc4495ed2df3872fb31b26781e4e077eb4"
  10371. },
  10372. "dist": {
  10373. "type": "zip",
  10374. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/0150cfbc4495ed2df3872fb31b26781e4e077eb4",
  10375. "reference": "0150cfbc4495ed2df3872fb31b26781e4e077eb4",
  10376. "shasum": "",
  10377. "mirrors": [
  10378. {
  10379. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10380. "preferred": true
  10381. }
  10382. ]
  10383. },
  10384. "require": {
  10385. "php": ">=7.2"
  10386. },
  10387. "require-dev": {
  10388. "phpunit/phpunit": "^8.2"
  10389. },
  10390. "type": "library",
  10391. "extra": {
  10392. "branch-alias": {
  10393. "dev-master": "1.1-dev"
  10394. }
  10395. },
  10396. "autoload": {
  10397. "classmap": [
  10398. "src/"
  10399. ]
  10400. },
  10401. "notification-url": "https://packagist.org/downloads/",
  10402. "license": [
  10403. "BSD-3-Clause"
  10404. ],
  10405. "authors": [
  10406. {
  10407. "name": "Sebastian Bergmann",
  10408. "email": "sebastian@phpunit.de",
  10409. "role": "lead"
  10410. }
  10411. ],
  10412. "description": "Collection of value objects that represent the types of the PHP type system",
  10413. "homepage": "https://github.com/sebastianbergmann/type",
  10414. "support": {
  10415. "issues": "https://github.com/sebastianbergmann/type/issues",
  10416. "source": "https://github.com/sebastianbergmann/type/tree/1.1.4"
  10417. },
  10418. "funding": [
  10419. {
  10420. "url": "https://github.com/sebastianbergmann",
  10421. "type": "github"
  10422. }
  10423. ],
  10424. "time": "2020-11-30T07:25:11+00:00"
  10425. },
  10426. {
  10427. "name": "sebastian/version",
  10428. "version": "2.0.1",
  10429. "source": {
  10430. "type": "git",
  10431. "url": "https://github.com/sebastianbergmann/version.git",
  10432. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019"
  10433. },
  10434. "dist": {
  10435. "type": "zip",
  10436. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/99732be0ddb3361e16ad77b68ba41efc8e979019",
  10437. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019",
  10438. "shasum": "",
  10439. "mirrors": [
  10440. {
  10441. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10442. "preferred": true
  10443. }
  10444. ]
  10445. },
  10446. "require": {
  10447. "php": ">=5.6"
  10448. },
  10449. "type": "library",
  10450. "extra": {
  10451. "branch-alias": {
  10452. "dev-master": "2.0.x-dev"
  10453. }
  10454. },
  10455. "autoload": {
  10456. "classmap": [
  10457. "src/"
  10458. ]
  10459. },
  10460. "notification-url": "https://packagist.org/downloads/",
  10461. "license": [
  10462. "BSD-3-Clause"
  10463. ],
  10464. "authors": [
  10465. {
  10466. "name": "Sebastian Bergmann",
  10467. "email": "sebastian@phpunit.de",
  10468. "role": "lead"
  10469. }
  10470. ],
  10471. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  10472. "homepage": "https://github.com/sebastianbergmann/version",
  10473. "support": {
  10474. "issues": "https://github.com/sebastianbergmann/version/issues",
  10475. "source": "https://github.com/sebastianbergmann/version/tree/master"
  10476. },
  10477. "time": "2016-10-03T07:35:21+00:00"
  10478. },
  10479. {
  10480. "name": "theseer/tokenizer",
  10481. "version": "1.2.1",
  10482. "source": {
  10483. "type": "git",
  10484. "url": "https://github.com/theseer/tokenizer.git",
  10485. "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e"
  10486. },
  10487. "dist": {
  10488. "type": "zip",
  10489. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/34a41e998c2183e22995f158c581e7b5e755ab9e",
  10490. "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e",
  10491. "shasum": "",
  10492. "mirrors": [
  10493. {
  10494. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10495. "preferred": true
  10496. }
  10497. ]
  10498. },
  10499. "require": {
  10500. "ext-dom": "*",
  10501. "ext-tokenizer": "*",
  10502. "ext-xmlwriter": "*",
  10503. "php": "^7.2 || ^8.0"
  10504. },
  10505. "type": "library",
  10506. "autoload": {
  10507. "classmap": [
  10508. "src/"
  10509. ]
  10510. },
  10511. "notification-url": "https://packagist.org/downloads/",
  10512. "license": [
  10513. "BSD-3-Clause"
  10514. ],
  10515. "authors": [
  10516. {
  10517. "name": "Arne Blankerts",
  10518. "email": "arne@blankerts.de",
  10519. "role": "Developer"
  10520. }
  10521. ],
  10522. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  10523. "support": {
  10524. "issues": "https://github.com/theseer/tokenizer/issues",
  10525. "source": "https://github.com/theseer/tokenizer/tree/1.2.1"
  10526. },
  10527. "funding": [
  10528. {
  10529. "url": "https://github.com/theseer",
  10530. "type": "github"
  10531. }
  10532. ],
  10533. "time": "2021-07-28T10:34:58+00:00"
  10534. }
  10535. ],
  10536. "aliases": [],
  10537. "minimum-stability": "dev",
  10538. "stability-flags": [],
  10539. "prefer-stable": true,
  10540. "prefer-lowest": false,
  10541. "platform": {
  10542. "php": "^7.2"
  10543. },
  10544. "platform-dev": [],
  10545. "plugin-api-version": "2.3.0"
  10546. }