composer.lock 242 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662
  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": "2102e15cdb84f6ebdc1ab56ee86aab9a",
  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": "doctrine/inflector",
  73. "version": "2.0.4",
  74. "source": {
  75. "type": "git",
  76. "url": "https://github.com/doctrine/inflector.git",
  77. "reference": "8b7ff3e4b7de6b2c84da85637b59fd2880ecaa89"
  78. },
  79. "dist": {
  80. "type": "zip",
  81. "url": "https://api.github.com/repos/doctrine/inflector/zipball/8b7ff3e4b7de6b2c84da85637b59fd2880ecaa89",
  82. "reference": "8b7ff3e4b7de6b2c84da85637b59fd2880ecaa89",
  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. "php": "^7.2 || ^8.0"
  93. },
  94. "require-dev": {
  95. "doctrine/coding-standard": "^8.2",
  96. "phpstan/phpstan": "^0.12",
  97. "phpstan/phpstan-phpunit": "^0.12",
  98. "phpstan/phpstan-strict-rules": "^0.12",
  99. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0",
  100. "vimeo/psalm": "^4.10"
  101. },
  102. "type": "library",
  103. "autoload": {
  104. "psr-4": {
  105. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  106. }
  107. },
  108. "notification-url": "https://packagist.org/downloads/",
  109. "license": [
  110. "MIT"
  111. ],
  112. "authors": [
  113. {
  114. "name": "Guilherme Blanco",
  115. "email": "guilhermeblanco@gmail.com"
  116. },
  117. {
  118. "name": "Roman Borschel",
  119. "email": "roman@code-factory.org"
  120. },
  121. {
  122. "name": "Benjamin Eberlei",
  123. "email": "kontakt@beberlei.de"
  124. },
  125. {
  126. "name": "Jonathan Wage",
  127. "email": "jonwage@gmail.com"
  128. },
  129. {
  130. "name": "Johannes Schmitt",
  131. "email": "schmittjoh@gmail.com"
  132. }
  133. ],
  134. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  135. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  136. "keywords": [
  137. "inflection",
  138. "inflector",
  139. "lowercase",
  140. "manipulation",
  141. "php",
  142. "plural",
  143. "singular",
  144. "strings",
  145. "uppercase",
  146. "words"
  147. ],
  148. "support": {
  149. "issues": "https://github.com/doctrine/inflector/issues",
  150. "source": "https://github.com/doctrine/inflector/tree/2.0.4"
  151. },
  152. "funding": [
  153. {
  154. "url": "https://www.doctrine-project.org/sponsorship.html",
  155. "type": "custom"
  156. },
  157. {
  158. "url": "https://www.patreon.com/phpdoctrine",
  159. "type": "patreon"
  160. },
  161. {
  162. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  163. "type": "tidelift"
  164. }
  165. ],
  166. "time": "2021-10-22T20:16:43+00:00"
  167. },
  168. {
  169. "name": "doctrine/lexer",
  170. "version": "1.2.3",
  171. "source": {
  172. "type": "git",
  173. "url": "https://github.com/doctrine/lexer.git",
  174. "reference": "c268e882d4dbdd85e36e4ad69e02dc284f89d229"
  175. },
  176. "dist": {
  177. "type": "zip",
  178. "url": "https://api.github.com/repos/doctrine/lexer/zipball/c268e882d4dbdd85e36e4ad69e02dc284f89d229",
  179. "reference": "c268e882d4dbdd85e36e4ad69e02dc284f89d229",
  180. "shasum": "",
  181. "mirrors": [
  182. {
  183. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  184. "preferred": true
  185. }
  186. ]
  187. },
  188. "require": {
  189. "php": "^7.1 || ^8.0"
  190. },
  191. "require-dev": {
  192. "doctrine/coding-standard": "^9.0",
  193. "phpstan/phpstan": "^1.3",
  194. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  195. "vimeo/psalm": "^4.11"
  196. },
  197. "type": "library",
  198. "autoload": {
  199. "psr-4": {
  200. "Doctrine\\Common\\Lexer\\": "lib/Doctrine/Common/Lexer"
  201. }
  202. },
  203. "notification-url": "https://packagist.org/downloads/",
  204. "license": [
  205. "MIT"
  206. ],
  207. "authors": [
  208. {
  209. "name": "Guilherme Blanco",
  210. "email": "guilhermeblanco@gmail.com"
  211. },
  212. {
  213. "name": "Roman Borschel",
  214. "email": "roman@code-factory.org"
  215. },
  216. {
  217. "name": "Johannes Schmitt",
  218. "email": "schmittjoh@gmail.com"
  219. }
  220. ],
  221. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  222. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  223. "keywords": [
  224. "annotations",
  225. "docblock",
  226. "lexer",
  227. "parser",
  228. "php"
  229. ],
  230. "support": {
  231. "issues": "https://github.com/doctrine/lexer/issues",
  232. "source": "https://github.com/doctrine/lexer/tree/1.2.3"
  233. },
  234. "funding": [
  235. {
  236. "url": "https://www.doctrine-project.org/sponsorship.html",
  237. "type": "custom"
  238. },
  239. {
  240. "url": "https://www.patreon.com/phpdoctrine",
  241. "type": "patreon"
  242. },
  243. {
  244. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  245. "type": "tidelift"
  246. }
  247. ],
  248. "time": "2022-02-28T11:07:21+00:00"
  249. },
  250. {
  251. "name": "dragonmantank/cron-expression",
  252. "version": "v2.3.1",
  253. "source": {
  254. "type": "git",
  255. "url": "https://github.com/dragonmantank/cron-expression.git",
  256. "reference": "65b2d8ee1f10915efb3b55597da3404f096acba2"
  257. },
  258. "dist": {
  259. "type": "zip",
  260. "url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/65b2d8ee1f10915efb3b55597da3404f096acba2",
  261. "reference": "65b2d8ee1f10915efb3b55597da3404f096acba2",
  262. "shasum": "",
  263. "mirrors": [
  264. {
  265. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  266. "preferred": true
  267. }
  268. ]
  269. },
  270. "require": {
  271. "php": "^7.0|^8.0"
  272. },
  273. "require-dev": {
  274. "phpunit/phpunit": "^6.4|^7.0|^8.0|^9.0"
  275. },
  276. "type": "library",
  277. "extra": {
  278. "branch-alias": {
  279. "dev-master": "2.3-dev"
  280. }
  281. },
  282. "autoload": {
  283. "psr-4": {
  284. "Cron\\": "src/Cron/"
  285. }
  286. },
  287. "notification-url": "https://packagist.org/downloads/",
  288. "license": [
  289. "MIT"
  290. ],
  291. "authors": [
  292. {
  293. "name": "Michael Dowling",
  294. "email": "mtdowling@gmail.com",
  295. "homepage": "https://github.com/mtdowling"
  296. },
  297. {
  298. "name": "Chris Tankersley",
  299. "email": "chris@ctankersley.com",
  300. "homepage": "https://github.com/dragonmantank"
  301. }
  302. ],
  303. "description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due",
  304. "keywords": [
  305. "cron",
  306. "schedule"
  307. ],
  308. "support": {
  309. "issues": "https://github.com/dragonmantank/cron-expression/issues",
  310. "source": "https://github.com/dragonmantank/cron-expression/tree/v2.3.1"
  311. },
  312. "funding": [
  313. {
  314. "url": "https://github.com/dragonmantank",
  315. "type": "github"
  316. }
  317. ],
  318. "time": "2020-10-13T00:52:37+00:00"
  319. },
  320. {
  321. "name": "egulias/email-validator",
  322. "version": "2.1.25",
  323. "source": {
  324. "type": "git",
  325. "url": "https://github.com/egulias/EmailValidator.git",
  326. "reference": "0dbf5d78455d4d6a41d186da50adc1122ec066f4"
  327. },
  328. "dist": {
  329. "type": "zip",
  330. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/0dbf5d78455d4d6a41d186da50adc1122ec066f4",
  331. "reference": "0dbf5d78455d4d6a41d186da50adc1122ec066f4",
  332. "shasum": "",
  333. "mirrors": [
  334. {
  335. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  336. "preferred": true
  337. }
  338. ]
  339. },
  340. "require": {
  341. "doctrine/lexer": "^1.0.1",
  342. "php": ">=5.5",
  343. "symfony/polyfill-intl-idn": "^1.10"
  344. },
  345. "require-dev": {
  346. "dominicsayers/isemail": "^3.0.7",
  347. "phpunit/phpunit": "^4.8.36|^7.5.15",
  348. "satooshi/php-coveralls": "^1.0.1"
  349. },
  350. "suggest": {
  351. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  352. },
  353. "type": "library",
  354. "extra": {
  355. "branch-alias": {
  356. "dev-master": "2.1.x-dev"
  357. }
  358. },
  359. "autoload": {
  360. "psr-4": {
  361. "Egulias\\EmailValidator\\": "src"
  362. }
  363. },
  364. "notification-url": "https://packagist.org/downloads/",
  365. "license": [
  366. "MIT"
  367. ],
  368. "authors": [
  369. {
  370. "name": "Eduardo Gulias Davis"
  371. }
  372. ],
  373. "description": "A library for validating emails against several RFCs",
  374. "homepage": "https://github.com/egulias/EmailValidator",
  375. "keywords": [
  376. "email",
  377. "emailvalidation",
  378. "emailvalidator",
  379. "validation",
  380. "validator"
  381. ],
  382. "support": {
  383. "issues": "https://github.com/egulias/EmailValidator/issues",
  384. "source": "https://github.com/egulias/EmailValidator/tree/2.1.25"
  385. },
  386. "funding": [
  387. {
  388. "url": "https://github.com/egulias",
  389. "type": "github"
  390. }
  391. ],
  392. "time": "2020-12-29T14:50:06+00:00"
  393. },
  394. {
  395. "name": "fideloper/proxy",
  396. "version": "4.4.2",
  397. "source": {
  398. "type": "git",
  399. "url": "https://github.com/fideloper/TrustedProxy.git",
  400. "reference": "a751f2bc86dd8e6cfef12dc0cbdada82f5a18750"
  401. },
  402. "dist": {
  403. "type": "zip",
  404. "url": "https://api.github.com/repos/fideloper/TrustedProxy/zipball/a751f2bc86dd8e6cfef12dc0cbdada82f5a18750",
  405. "reference": "a751f2bc86dd8e6cfef12dc0cbdada82f5a18750",
  406. "shasum": "",
  407. "mirrors": [
  408. {
  409. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  410. "preferred": true
  411. }
  412. ]
  413. },
  414. "require": {
  415. "illuminate/contracts": "^5.0|^6.0|^7.0|^8.0|^9.0",
  416. "php": ">=5.4.0"
  417. },
  418. "require-dev": {
  419. "illuminate/http": "^5.0|^6.0|^7.0|^8.0|^9.0",
  420. "mockery/mockery": "^1.0",
  421. "phpunit/phpunit": "^8.5.8|^9.3.3"
  422. },
  423. "type": "library",
  424. "extra": {
  425. "laravel": {
  426. "providers": [
  427. "Fideloper\\Proxy\\TrustedProxyServiceProvider"
  428. ]
  429. }
  430. },
  431. "autoload": {
  432. "psr-4": {
  433. "Fideloper\\Proxy\\": "src/"
  434. }
  435. },
  436. "notification-url": "https://packagist.org/downloads/",
  437. "license": [
  438. "MIT"
  439. ],
  440. "authors": [
  441. {
  442. "name": "Chris Fidao",
  443. "email": "fideloper@gmail.com"
  444. }
  445. ],
  446. "description": "Set trusted proxies for Laravel",
  447. "keywords": [
  448. "load balancing",
  449. "proxy",
  450. "trusted proxy"
  451. ],
  452. "support": {
  453. "issues": "https://github.com/fideloper/TrustedProxy/issues",
  454. "source": "https://github.com/fideloper/TrustedProxy/tree/4.4.2"
  455. },
  456. "time": "2022-02-09T13:33:34+00:00"
  457. },
  458. {
  459. "name": "fruitcake/laravel-cors",
  460. "version": "v2.2.0",
  461. "source": {
  462. "type": "git",
  463. "url": "https://github.com/fruitcake/laravel-cors.git",
  464. "reference": "783a74f5e3431d7b9805be8afb60fd0a8f743534"
  465. },
  466. "dist": {
  467. "type": "zip",
  468. "url": "https://api.github.com/repos/fruitcake/laravel-cors/zipball/783a74f5e3431d7b9805be8afb60fd0a8f743534",
  469. "reference": "783a74f5e3431d7b9805be8afb60fd0a8f743534",
  470. "shasum": "",
  471. "mirrors": [
  472. {
  473. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  474. "preferred": true
  475. }
  476. ]
  477. },
  478. "require": {
  479. "asm89/stack-cors": "^2.0.1",
  480. "illuminate/contracts": "^6|^7|^8|^9",
  481. "illuminate/support": "^6|^7|^8|^9",
  482. "php": ">=7.2"
  483. },
  484. "require-dev": {
  485. "laravel/framework": "^6|^7.24|^8",
  486. "orchestra/testbench-dusk": "^4|^5|^6|^7",
  487. "phpunit/phpunit": "^6|^7|^8|^9",
  488. "squizlabs/php_codesniffer": "^3.5"
  489. },
  490. "type": "library",
  491. "extra": {
  492. "branch-alias": {
  493. "dev-master": "2.1-dev"
  494. },
  495. "laravel": {
  496. "providers": [
  497. "Fruitcake\\Cors\\CorsServiceProvider"
  498. ]
  499. }
  500. },
  501. "autoload": {
  502. "psr-4": {
  503. "Fruitcake\\Cors\\": "src/"
  504. }
  505. },
  506. "notification-url": "https://packagist.org/downloads/",
  507. "license": [
  508. "MIT"
  509. ],
  510. "authors": [
  511. {
  512. "name": "Fruitcake",
  513. "homepage": "https://fruitcake.nl"
  514. },
  515. {
  516. "name": "Barry vd. Heuvel",
  517. "email": "barryvdh@gmail.com"
  518. }
  519. ],
  520. "description": "Adds CORS (Cross-Origin Resource Sharing) headers support in your Laravel application",
  521. "keywords": [
  522. "api",
  523. "cors",
  524. "crossdomain",
  525. "laravel"
  526. ],
  527. "support": {
  528. "issues": "https://github.com/fruitcake/laravel-cors/issues",
  529. "source": "https://github.com/fruitcake/laravel-cors/tree/v2.2.0"
  530. },
  531. "funding": [
  532. {
  533. "url": "https://fruitcake.nl",
  534. "type": "custom"
  535. },
  536. {
  537. "url": "https://github.com/barryvdh",
  538. "type": "github"
  539. }
  540. ],
  541. "time": "2022-02-23T14:25:13+00:00"
  542. },
  543. {
  544. "name": "laravel/framework",
  545. "version": "v6.20.44",
  546. "source": {
  547. "type": "git",
  548. "url": "https://github.com/laravel/framework.git",
  549. "reference": "505ebcdeaa9ca56d6d7dbf38ed4f53998c973ed0"
  550. },
  551. "dist": {
  552. "type": "zip",
  553. "url": "https://api.github.com/repos/laravel/framework/zipball/505ebcdeaa9ca56d6d7dbf38ed4f53998c973ed0",
  554. "reference": "505ebcdeaa9ca56d6d7dbf38ed4f53998c973ed0",
  555. "shasum": "",
  556. "mirrors": [
  557. {
  558. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  559. "preferred": true
  560. }
  561. ]
  562. },
  563. "require": {
  564. "doctrine/inflector": "^1.4|^2.0",
  565. "dragonmantank/cron-expression": "^2.3.1",
  566. "egulias/email-validator": "^2.1.10",
  567. "ext-json": "*",
  568. "ext-mbstring": "*",
  569. "ext-openssl": "*",
  570. "league/commonmark": "^1.3",
  571. "league/flysystem": "^1.1",
  572. "monolog/monolog": "^1.12|^2.0",
  573. "nesbot/carbon": "^2.31",
  574. "opis/closure": "^3.6",
  575. "php": "^7.2.5|^8.0",
  576. "psr/container": "^1.0",
  577. "psr/simple-cache": "^1.0",
  578. "ramsey/uuid": "^3.7",
  579. "swiftmailer/swiftmailer": "^6.0",
  580. "symfony/console": "^4.3.4",
  581. "symfony/debug": "^4.3.4",
  582. "symfony/finder": "^4.3.4",
  583. "symfony/http-foundation": "^4.3.4",
  584. "symfony/http-kernel": "^4.3.4",
  585. "symfony/polyfill-php73": "^1.17",
  586. "symfony/process": "^4.3.4",
  587. "symfony/routing": "^4.3.4",
  588. "symfony/var-dumper": "^4.3.4",
  589. "tijsverkoyen/css-to-inline-styles": "^2.2.1",
  590. "vlucas/phpdotenv": "^3.3"
  591. },
  592. "conflict": {
  593. "tightenco/collect": "<5.5.33"
  594. },
  595. "replace": {
  596. "illuminate/auth": "self.version",
  597. "illuminate/broadcasting": "self.version",
  598. "illuminate/bus": "self.version",
  599. "illuminate/cache": "self.version",
  600. "illuminate/config": "self.version",
  601. "illuminate/console": "self.version",
  602. "illuminate/container": "self.version",
  603. "illuminate/contracts": "self.version",
  604. "illuminate/cookie": "self.version",
  605. "illuminate/database": "self.version",
  606. "illuminate/encryption": "self.version",
  607. "illuminate/events": "self.version",
  608. "illuminate/filesystem": "self.version",
  609. "illuminate/hashing": "self.version",
  610. "illuminate/http": "self.version",
  611. "illuminate/log": "self.version",
  612. "illuminate/mail": "self.version",
  613. "illuminate/notifications": "self.version",
  614. "illuminate/pagination": "self.version",
  615. "illuminate/pipeline": "self.version",
  616. "illuminate/queue": "self.version",
  617. "illuminate/redis": "self.version",
  618. "illuminate/routing": "self.version",
  619. "illuminate/session": "self.version",
  620. "illuminate/support": "self.version",
  621. "illuminate/translation": "self.version",
  622. "illuminate/validation": "self.version",
  623. "illuminate/view": "self.version"
  624. },
  625. "require-dev": {
  626. "aws/aws-sdk-php": "^3.155",
  627. "doctrine/dbal": "^2.6",
  628. "filp/whoops": "^2.8",
  629. "guzzlehttp/guzzle": "^6.3.1|^7.0.1",
  630. "league/flysystem-cached-adapter": "^1.0",
  631. "mockery/mockery": "~1.3.3|^1.4.2",
  632. "moontoast/math": "^1.1",
  633. "orchestra/testbench-core": "^4.8",
  634. "pda/pheanstalk": "^4.0",
  635. "phpunit/phpunit": "^7.5.15|^8.4|^9.3.3",
  636. "predis/predis": "^1.1.1",
  637. "symfony/cache": "^4.3.4"
  638. },
  639. "suggest": {
  640. "aws/aws-sdk-php": "Required to use the SQS queue driver, DynamoDb failed job storage and SES mail driver (^3.155).",
  641. "doctrine/dbal": "Required to rename columns and drop SQLite columns (^2.6).",
  642. "ext-ftp": "Required to use the Flysystem FTP driver.",
  643. "ext-gd": "Required to use Illuminate\\Http\\Testing\\FileFactory::image().",
  644. "ext-memcached": "Required to use the memcache cache driver.",
  645. "ext-pcntl": "Required to use all features of the queue worker.",
  646. "ext-posix": "Required to use all features of the queue worker.",
  647. "ext-redis": "Required to use the Redis cache and queue drivers (^4.0|^5.0).",
  648. "fakerphp/faker": "Required to use the eloquent factory builder (^1.9.1).",
  649. "filp/whoops": "Required for friendly error pages in development (^2.8).",
  650. "guzzlehttp/guzzle": "Required to use the Mailgun mail driver and the ping methods on schedules (^6.3.1|^7.0.1).",
  651. "laravel/tinker": "Required to use the tinker console command (^2.0).",
  652. "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (^1.0).",
  653. "league/flysystem-cached-adapter": "Required to use the Flysystem cache (^1.0).",
  654. "league/flysystem-sftp": "Required to use the Flysystem SFTP driver (^1.0).",
  655. "moontoast/math": "Required to use ordered UUIDs (^1.1).",
  656. "nyholm/psr7": "Required to use PSR-7 bridging features (^1.2).",
  657. "pda/pheanstalk": "Required to use the beanstalk queue driver (^4.0).",
  658. "predis/predis": "Required to use the predis connector (^1.1.2).",
  659. "psr/http-message": "Required to allow Storage::put to accept a StreamInterface (^1.0).",
  660. "pusher/pusher-php-server": "Required to use the Pusher broadcast driver (^4.0).",
  661. "symfony/cache": "Required to PSR-6 cache bridge (^4.3.4).",
  662. "symfony/psr-http-message-bridge": "Required to use PSR-7 bridging features (^1.2).",
  663. "wildbit/swiftmailer-postmark": "Required to use Postmark mail driver (^3.0)."
  664. },
  665. "type": "library",
  666. "extra": {
  667. "branch-alias": {
  668. "dev-master": "6.x-dev"
  669. }
  670. },
  671. "autoload": {
  672. "files": [
  673. "src/Illuminate/Foundation/helpers.php",
  674. "src/Illuminate/Support/helpers.php"
  675. ],
  676. "psr-4": {
  677. "Illuminate\\": "src/Illuminate/"
  678. }
  679. },
  680. "notification-url": "https://packagist.org/downloads/",
  681. "license": [
  682. "MIT"
  683. ],
  684. "authors": [
  685. {
  686. "name": "Taylor Otwell",
  687. "email": "taylor@laravel.com"
  688. }
  689. ],
  690. "description": "The Laravel Framework.",
  691. "homepage": "https://laravel.com",
  692. "keywords": [
  693. "framework",
  694. "laravel"
  695. ],
  696. "support": {
  697. "issues": "https://github.com/laravel/framework/issues",
  698. "source": "https://github.com/laravel/framework"
  699. },
  700. "time": "2022-01-12T16:12:12+00:00"
  701. },
  702. {
  703. "name": "laravel/tinker",
  704. "version": "v2.7.3",
  705. "source": {
  706. "type": "git",
  707. "url": "https://github.com/laravel/tinker.git",
  708. "reference": "5062061b4924af3392225dd482ca7b4d85d8b8ef"
  709. },
  710. "dist": {
  711. "type": "zip",
  712. "url": "https://api.github.com/repos/laravel/tinker/zipball/5062061b4924af3392225dd482ca7b4d85d8b8ef",
  713. "reference": "5062061b4924af3392225dd482ca7b4d85d8b8ef",
  714. "shasum": "",
  715. "mirrors": [
  716. {
  717. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  718. "preferred": true
  719. }
  720. ]
  721. },
  722. "require": {
  723. "illuminate/console": "^6.0|^7.0|^8.0|^9.0",
  724. "illuminate/contracts": "^6.0|^7.0|^8.0|^9.0",
  725. "illuminate/support": "^6.0|^7.0|^8.0|^9.0",
  726. "php": "^7.2.5|^8.0",
  727. "psy/psysh": "^0.10.4|^0.11.1",
  728. "symfony/var-dumper": "^4.3.4|^5.0|^6.0"
  729. },
  730. "require-dev": {
  731. "mockery/mockery": "~1.3.3|^1.4.2",
  732. "phpunit/phpunit": "^8.5.8|^9.3.3"
  733. },
  734. "suggest": {
  735. "illuminate/database": "The Illuminate Database package (^6.0|^7.0|^8.0|^9.0)."
  736. },
  737. "type": "library",
  738. "extra": {
  739. "branch-alias": {
  740. "dev-master": "2.x-dev"
  741. },
  742. "laravel": {
  743. "providers": [
  744. "Laravel\\Tinker\\TinkerServiceProvider"
  745. ]
  746. }
  747. },
  748. "autoload": {
  749. "psr-4": {
  750. "Laravel\\Tinker\\": "src/"
  751. }
  752. },
  753. "notification-url": "https://packagist.org/downloads/",
  754. "license": [
  755. "MIT"
  756. ],
  757. "authors": [
  758. {
  759. "name": "Taylor Otwell",
  760. "email": "taylor@laravel.com"
  761. }
  762. ],
  763. "description": "Powerful REPL for the Laravel framework.",
  764. "keywords": [
  765. "REPL",
  766. "Tinker",
  767. "laravel",
  768. "psysh"
  769. ],
  770. "support": {
  771. "issues": "https://github.com/laravel/tinker/issues",
  772. "source": "https://github.com/laravel/tinker/tree/v2.7.3"
  773. },
  774. "time": "2022-11-09T15:11:38+00:00"
  775. },
  776. {
  777. "name": "league/commonmark",
  778. "version": "1.6.7",
  779. "source": {
  780. "type": "git",
  781. "url": "https://github.com/thephpleague/commonmark.git",
  782. "reference": "2b8185c13bc9578367a5bf901881d1c1b5bbd09b"
  783. },
  784. "dist": {
  785. "type": "zip",
  786. "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/2b8185c13bc9578367a5bf901881d1c1b5bbd09b",
  787. "reference": "2b8185c13bc9578367a5bf901881d1c1b5bbd09b",
  788. "shasum": "",
  789. "mirrors": [
  790. {
  791. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  792. "preferred": true
  793. }
  794. ]
  795. },
  796. "require": {
  797. "ext-mbstring": "*",
  798. "php": "^7.1 || ^8.0"
  799. },
  800. "conflict": {
  801. "scrutinizer/ocular": "1.7.*"
  802. },
  803. "require-dev": {
  804. "cebe/markdown": "~1.0",
  805. "commonmark/commonmark.js": "0.29.2",
  806. "erusev/parsedown": "~1.0",
  807. "ext-json": "*",
  808. "github/gfm": "0.29.0",
  809. "michelf/php-markdown": "~1.4",
  810. "mikehaertl/php-shellcommand": "^1.4",
  811. "phpstan/phpstan": "^0.12.90",
  812. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.2",
  813. "scrutinizer/ocular": "^1.5",
  814. "symfony/finder": "^4.2"
  815. },
  816. "bin": [
  817. "bin/commonmark"
  818. ],
  819. "type": "library",
  820. "autoload": {
  821. "psr-4": {
  822. "League\\CommonMark\\": "src"
  823. }
  824. },
  825. "notification-url": "https://packagist.org/downloads/",
  826. "license": [
  827. "BSD-3-Clause"
  828. ],
  829. "authors": [
  830. {
  831. "name": "Colin O'Dell",
  832. "email": "colinodell@gmail.com",
  833. "homepage": "https://www.colinodell.com",
  834. "role": "Lead Developer"
  835. }
  836. ],
  837. "description": "Highly-extensible PHP Markdown parser which fully supports the CommonMark spec and Github-Flavored Markdown (GFM)",
  838. "homepage": "https://commonmark.thephpleague.com",
  839. "keywords": [
  840. "commonmark",
  841. "flavored",
  842. "gfm",
  843. "github",
  844. "github-flavored",
  845. "markdown",
  846. "md",
  847. "parser"
  848. ],
  849. "support": {
  850. "docs": "https://commonmark.thephpleague.com/",
  851. "issues": "https://github.com/thephpleague/commonmark/issues",
  852. "rss": "https://github.com/thephpleague/commonmark/releases.atom",
  853. "source": "https://github.com/thephpleague/commonmark"
  854. },
  855. "funding": [
  856. {
  857. "url": "https://www.colinodell.com/sponsor",
  858. "type": "custom"
  859. },
  860. {
  861. "url": "https://www.paypal.me/colinpodell/10.00",
  862. "type": "custom"
  863. },
  864. {
  865. "url": "https://github.com/colinodell",
  866. "type": "github"
  867. },
  868. {
  869. "url": "https://tidelift.com/funding/github/packagist/league/commonmark",
  870. "type": "tidelift"
  871. }
  872. ],
  873. "time": "2022-01-13T17:18:13+00:00"
  874. },
  875. {
  876. "name": "league/flysystem",
  877. "version": "1.1.10",
  878. "source": {
  879. "type": "git",
  880. "url": "https://github.com/thephpleague/flysystem.git",
  881. "reference": "3239285c825c152bcc315fe0e87d6b55f5972ed1"
  882. },
  883. "dist": {
  884. "type": "zip",
  885. "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/3239285c825c152bcc315fe0e87d6b55f5972ed1",
  886. "reference": "3239285c825c152bcc315fe0e87d6b55f5972ed1",
  887. "shasum": "",
  888. "mirrors": [
  889. {
  890. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  891. "preferred": true
  892. }
  893. ]
  894. },
  895. "require": {
  896. "ext-fileinfo": "*",
  897. "league/mime-type-detection": "^1.3",
  898. "php": "^7.2.5 || ^8.0"
  899. },
  900. "conflict": {
  901. "league/flysystem-sftp": "<1.0.6"
  902. },
  903. "require-dev": {
  904. "phpspec/prophecy": "^1.11.1",
  905. "phpunit/phpunit": "^8.5.8"
  906. },
  907. "suggest": {
  908. "ext-ftp": "Allows you to use FTP server storage",
  909. "ext-openssl": "Allows you to use FTPS server storage",
  910. "league/flysystem-aws-s3-v2": "Allows you to use S3 storage with AWS SDK v2",
  911. "league/flysystem-aws-s3-v3": "Allows you to use S3 storage with AWS SDK v3",
  912. "league/flysystem-azure": "Allows you to use Windows Azure Blob storage",
  913. "league/flysystem-cached-adapter": "Flysystem adapter decorator for metadata caching",
  914. "league/flysystem-eventable-filesystem": "Allows you to use EventableFilesystem",
  915. "league/flysystem-rackspace": "Allows you to use Rackspace Cloud Files",
  916. "league/flysystem-sftp": "Allows you to use SFTP server storage via phpseclib",
  917. "league/flysystem-webdav": "Allows you to use WebDAV storage",
  918. "league/flysystem-ziparchive": "Allows you to use ZipArchive adapter",
  919. "spatie/flysystem-dropbox": "Allows you to use Dropbox storage",
  920. "srmklive/flysystem-dropbox-v2": "Allows you to use Dropbox storage for PHP 5 applications"
  921. },
  922. "type": "library",
  923. "extra": {
  924. "branch-alias": {
  925. "dev-master": "1.1-dev"
  926. }
  927. },
  928. "autoload": {
  929. "psr-4": {
  930. "League\\Flysystem\\": "src/"
  931. }
  932. },
  933. "notification-url": "https://packagist.org/downloads/",
  934. "license": [
  935. "MIT"
  936. ],
  937. "authors": [
  938. {
  939. "name": "Frank de Jonge",
  940. "email": "info@frenky.net"
  941. }
  942. ],
  943. "description": "Filesystem abstraction: Many filesystems, one API.",
  944. "keywords": [
  945. "Cloud Files",
  946. "WebDAV",
  947. "abstraction",
  948. "aws",
  949. "cloud",
  950. "copy.com",
  951. "dropbox",
  952. "file systems",
  953. "files",
  954. "filesystem",
  955. "filesystems",
  956. "ftp",
  957. "rackspace",
  958. "remote",
  959. "s3",
  960. "sftp",
  961. "storage"
  962. ],
  963. "support": {
  964. "issues": "https://github.com/thephpleague/flysystem/issues",
  965. "source": "https://github.com/thephpleague/flysystem/tree/1.1.10"
  966. },
  967. "funding": [
  968. {
  969. "url": "https://offset.earth/frankdejonge",
  970. "type": "other"
  971. }
  972. ],
  973. "time": "2022-10-04T09:16:37+00:00"
  974. },
  975. {
  976. "name": "league/mime-type-detection",
  977. "version": "1.11.0",
  978. "source": {
  979. "type": "git",
  980. "url": "https://github.com/thephpleague/mime-type-detection.git",
  981. "reference": "ff6248ea87a9f116e78edd6002e39e5128a0d4dd"
  982. },
  983. "dist": {
  984. "type": "zip",
  985. "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/ff6248ea87a9f116e78edd6002e39e5128a0d4dd",
  986. "reference": "ff6248ea87a9f116e78edd6002e39e5128a0d4dd",
  987. "shasum": "",
  988. "mirrors": [
  989. {
  990. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  991. "preferred": true
  992. }
  993. ]
  994. },
  995. "require": {
  996. "ext-fileinfo": "*",
  997. "php": "^7.2 || ^8.0"
  998. },
  999. "require-dev": {
  1000. "friendsofphp/php-cs-fixer": "^3.2",
  1001. "phpstan/phpstan": "^0.12.68",
  1002. "phpunit/phpunit": "^8.5.8 || ^9.3"
  1003. },
  1004. "type": "library",
  1005. "autoload": {
  1006. "psr-4": {
  1007. "League\\MimeTypeDetection\\": "src"
  1008. }
  1009. },
  1010. "notification-url": "https://packagist.org/downloads/",
  1011. "license": [
  1012. "MIT"
  1013. ],
  1014. "authors": [
  1015. {
  1016. "name": "Frank de Jonge",
  1017. "email": "info@frankdejonge.nl"
  1018. }
  1019. ],
  1020. "description": "Mime-type detection for Flysystem",
  1021. "support": {
  1022. "issues": "https://github.com/thephpleague/mime-type-detection/issues",
  1023. "source": "https://github.com/thephpleague/mime-type-detection/tree/1.11.0"
  1024. },
  1025. "funding": [
  1026. {
  1027. "url": "https://github.com/frankdejonge",
  1028. "type": "github"
  1029. },
  1030. {
  1031. "url": "https://tidelift.com/funding/github/packagist/league/flysystem",
  1032. "type": "tidelift"
  1033. }
  1034. ],
  1035. "time": "2022-04-17T13:12:02+00:00"
  1036. },
  1037. {
  1038. "name": "monolog/monolog",
  1039. "version": "2.8.0",
  1040. "source": {
  1041. "type": "git",
  1042. "url": "https://github.com/Seldaek/monolog.git",
  1043. "reference": "720488632c590286b88b80e62aa3d3d551ad4a50"
  1044. },
  1045. "dist": {
  1046. "type": "zip",
  1047. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/720488632c590286b88b80e62aa3d3d551ad4a50",
  1048. "reference": "720488632c590286b88b80e62aa3d3d551ad4a50",
  1049. "shasum": "",
  1050. "mirrors": [
  1051. {
  1052. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1053. "preferred": true
  1054. }
  1055. ]
  1056. },
  1057. "require": {
  1058. "php": ">=7.2",
  1059. "psr/log": "^1.0.1 || ^2.0 || ^3.0"
  1060. },
  1061. "provide": {
  1062. "psr/log-implementation": "1.0.0 || 2.0.0 || 3.0.0"
  1063. },
  1064. "require-dev": {
  1065. "aws/aws-sdk-php": "^2.4.9 || ^3.0",
  1066. "doctrine/couchdb": "~1.0@dev",
  1067. "elasticsearch/elasticsearch": "^7 || ^8",
  1068. "ext-json": "*",
  1069. "graylog2/gelf-php": "^1.4.2",
  1070. "guzzlehttp/guzzle": "^7.4",
  1071. "guzzlehttp/psr7": "^2.2",
  1072. "mongodb/mongodb": "^1.8",
  1073. "php-amqplib/php-amqplib": "~2.4 || ^3",
  1074. "phpspec/prophecy": "^1.15",
  1075. "phpstan/phpstan": "^0.12.91",
  1076. "phpunit/phpunit": "^8.5.14",
  1077. "predis/predis": "^1.1 || ^2.0",
  1078. "rollbar/rollbar": "^1.3 || ^2 || ^3",
  1079. "ruflin/elastica": "^7",
  1080. "swiftmailer/swiftmailer": "^5.3|^6.0",
  1081. "symfony/mailer": "^5.4 || ^6",
  1082. "symfony/mime": "^5.4 || ^6"
  1083. },
  1084. "suggest": {
  1085. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  1086. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  1087. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  1088. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  1089. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  1090. "ext-mbstring": "Allow to work properly with unicode symbols",
  1091. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  1092. "ext-openssl": "Required to send log messages using SSL",
  1093. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  1094. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  1095. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  1096. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  1097. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  1098. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  1099. },
  1100. "type": "library",
  1101. "extra": {
  1102. "branch-alias": {
  1103. "dev-main": "2.x-dev"
  1104. }
  1105. },
  1106. "autoload": {
  1107. "psr-4": {
  1108. "Monolog\\": "src/Monolog"
  1109. }
  1110. },
  1111. "notification-url": "https://packagist.org/downloads/",
  1112. "license": [
  1113. "MIT"
  1114. ],
  1115. "authors": [
  1116. {
  1117. "name": "Jordi Boggiano",
  1118. "email": "j.boggiano@seld.be",
  1119. "homepage": "https://seld.be"
  1120. }
  1121. ],
  1122. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  1123. "homepage": "https://github.com/Seldaek/monolog",
  1124. "keywords": [
  1125. "log",
  1126. "logging",
  1127. "psr-3"
  1128. ],
  1129. "support": {
  1130. "issues": "https://github.com/Seldaek/monolog/issues",
  1131. "source": "https://github.com/Seldaek/monolog/tree/2.8.0"
  1132. },
  1133. "funding": [
  1134. {
  1135. "url": "https://github.com/Seldaek",
  1136. "type": "github"
  1137. },
  1138. {
  1139. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  1140. "type": "tidelift"
  1141. }
  1142. ],
  1143. "time": "2022-07-24T11:55:47+00:00"
  1144. },
  1145. {
  1146. "name": "nesbot/carbon",
  1147. "version": "2.66.0",
  1148. "source": {
  1149. "type": "git",
  1150. "url": "https://github.com/briannesbitt/Carbon.git",
  1151. "reference": "496712849902241f04902033b0441b269effe001"
  1152. },
  1153. "dist": {
  1154. "type": "zip",
  1155. "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/496712849902241f04902033b0441b269effe001",
  1156. "reference": "496712849902241f04902033b0441b269effe001",
  1157. "shasum": "",
  1158. "mirrors": [
  1159. {
  1160. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1161. "preferred": true
  1162. }
  1163. ]
  1164. },
  1165. "require": {
  1166. "ext-json": "*",
  1167. "php": "^7.1.8 || ^8.0",
  1168. "symfony/polyfill-mbstring": "^1.0",
  1169. "symfony/polyfill-php80": "^1.16",
  1170. "symfony/translation": "^3.4 || ^4.0 || ^5.0 || ^6.0"
  1171. },
  1172. "require-dev": {
  1173. "doctrine/dbal": "^2.0 || ^3.1.4",
  1174. "doctrine/orm": "^2.7",
  1175. "friendsofphp/php-cs-fixer": "^3.0",
  1176. "kylekatarnls/multi-tester": "^2.0",
  1177. "ondrejmirtes/better-reflection": "*",
  1178. "phpmd/phpmd": "^2.9",
  1179. "phpstan/extension-installer": "^1.0",
  1180. "phpstan/phpstan": "^0.12.99 || ^1.7.14",
  1181. "phpunit/php-file-iterator": "^2.0.5 || ^3.0.6",
  1182. "phpunit/phpunit": "^7.5.20 || ^8.5.26 || ^9.5.20",
  1183. "squizlabs/php_codesniffer": "^3.4"
  1184. },
  1185. "bin": [
  1186. "bin/carbon"
  1187. ],
  1188. "type": "library",
  1189. "extra": {
  1190. "branch-alias": {
  1191. "dev-3.x": "3.x-dev",
  1192. "dev-master": "2.x-dev"
  1193. },
  1194. "laravel": {
  1195. "providers": [
  1196. "Carbon\\Laravel\\ServiceProvider"
  1197. ]
  1198. },
  1199. "phpstan": {
  1200. "includes": [
  1201. "extension.neon"
  1202. ]
  1203. }
  1204. },
  1205. "autoload": {
  1206. "psr-4": {
  1207. "Carbon\\": "src/Carbon/"
  1208. }
  1209. },
  1210. "notification-url": "https://packagist.org/downloads/",
  1211. "license": [
  1212. "MIT"
  1213. ],
  1214. "authors": [
  1215. {
  1216. "name": "Brian Nesbitt",
  1217. "email": "brian@nesbot.com",
  1218. "homepage": "https://markido.com"
  1219. },
  1220. {
  1221. "name": "kylekatarnls",
  1222. "homepage": "https://github.com/kylekatarnls"
  1223. }
  1224. ],
  1225. "description": "An API extension for DateTime that supports 281 different languages.",
  1226. "homepage": "https://carbon.nesbot.com",
  1227. "keywords": [
  1228. "date",
  1229. "datetime",
  1230. "time"
  1231. ],
  1232. "support": {
  1233. "docs": "https://carbon.nesbot.com/docs",
  1234. "issues": "https://github.com/briannesbitt/Carbon/issues",
  1235. "source": "https://github.com/briannesbitt/Carbon"
  1236. },
  1237. "funding": [
  1238. {
  1239. "url": "https://github.com/sponsors/kylekatarnls",
  1240. "type": "github"
  1241. },
  1242. {
  1243. "url": "https://opencollective.com/Carbon#sponsor",
  1244. "type": "opencollective"
  1245. },
  1246. {
  1247. "url": "https://tidelift.com/subscription/pkg/packagist-nesbot-carbon?utm_source=packagist-nesbot-carbon&utm_medium=referral&utm_campaign=readme",
  1248. "type": "tidelift"
  1249. }
  1250. ],
  1251. "time": "2023-01-29T18:53:47+00:00"
  1252. },
  1253. {
  1254. "name": "nikic/php-parser",
  1255. "version": "v4.15.2",
  1256. "source": {
  1257. "type": "git",
  1258. "url": "https://github.com/nikic/PHP-Parser.git",
  1259. "reference": "f59bbe44bf7d96f24f3e2b4ddc21cd52c1d2adbc"
  1260. },
  1261. "dist": {
  1262. "type": "zip",
  1263. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/f59bbe44bf7d96f24f3e2b4ddc21cd52c1d2adbc",
  1264. "reference": "f59bbe44bf7d96f24f3e2b4ddc21cd52c1d2adbc",
  1265. "shasum": "",
  1266. "mirrors": [
  1267. {
  1268. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1269. "preferred": true
  1270. }
  1271. ]
  1272. },
  1273. "require": {
  1274. "ext-tokenizer": "*",
  1275. "php": ">=7.0"
  1276. },
  1277. "require-dev": {
  1278. "ircmaxell/php-yacc": "^0.0.7",
  1279. "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0"
  1280. },
  1281. "bin": [
  1282. "bin/php-parse"
  1283. ],
  1284. "type": "library",
  1285. "extra": {
  1286. "branch-alias": {
  1287. "dev-master": "4.9-dev"
  1288. }
  1289. },
  1290. "autoload": {
  1291. "psr-4": {
  1292. "PhpParser\\": "lib/PhpParser"
  1293. }
  1294. },
  1295. "notification-url": "https://packagist.org/downloads/",
  1296. "license": [
  1297. "BSD-3-Clause"
  1298. ],
  1299. "authors": [
  1300. {
  1301. "name": "Nikita Popov"
  1302. }
  1303. ],
  1304. "description": "A PHP parser written in PHP",
  1305. "keywords": [
  1306. "parser",
  1307. "php"
  1308. ],
  1309. "support": {
  1310. "issues": "https://github.com/nikic/PHP-Parser/issues",
  1311. "source": "https://github.com/nikic/PHP-Parser/tree/v4.15.2"
  1312. },
  1313. "time": "2022-11-12T15:38:23+00:00"
  1314. },
  1315. {
  1316. "name": "opis/closure",
  1317. "version": "3.6.3",
  1318. "source": {
  1319. "type": "git",
  1320. "url": "https://github.com/opis/closure.git",
  1321. "reference": "3d81e4309d2a927abbe66df935f4bb60082805ad"
  1322. },
  1323. "dist": {
  1324. "type": "zip",
  1325. "url": "https://api.github.com/repos/opis/closure/zipball/3d81e4309d2a927abbe66df935f4bb60082805ad",
  1326. "reference": "3d81e4309d2a927abbe66df935f4bb60082805ad",
  1327. "shasum": "",
  1328. "mirrors": [
  1329. {
  1330. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1331. "preferred": true
  1332. }
  1333. ]
  1334. },
  1335. "require": {
  1336. "php": "^5.4 || ^7.0 || ^8.0"
  1337. },
  1338. "require-dev": {
  1339. "jeremeamia/superclosure": "^2.0",
  1340. "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.0"
  1341. },
  1342. "type": "library",
  1343. "extra": {
  1344. "branch-alias": {
  1345. "dev-master": "3.6.x-dev"
  1346. }
  1347. },
  1348. "autoload": {
  1349. "files": [
  1350. "functions.php"
  1351. ],
  1352. "psr-4": {
  1353. "Opis\\Closure\\": "src/"
  1354. }
  1355. },
  1356. "notification-url": "https://packagist.org/downloads/",
  1357. "license": [
  1358. "MIT"
  1359. ],
  1360. "authors": [
  1361. {
  1362. "name": "Marius Sarca",
  1363. "email": "marius.sarca@gmail.com"
  1364. },
  1365. {
  1366. "name": "Sorin Sarca",
  1367. "email": "sarca_sorin@hotmail.com"
  1368. }
  1369. ],
  1370. "description": "A library that can be used to serialize closures (anonymous functions) and arbitrary objects.",
  1371. "homepage": "https://opis.io/closure",
  1372. "keywords": [
  1373. "anonymous functions",
  1374. "closure",
  1375. "function",
  1376. "serializable",
  1377. "serialization",
  1378. "serialize"
  1379. ],
  1380. "support": {
  1381. "issues": "https://github.com/opis/closure/issues",
  1382. "source": "https://github.com/opis/closure/tree/3.6.3"
  1383. },
  1384. "time": "2022-01-27T09:35:39+00:00"
  1385. },
  1386. {
  1387. "name": "paragonie/random_compat",
  1388. "version": "v9.99.100",
  1389. "source": {
  1390. "type": "git",
  1391. "url": "https://github.com/paragonie/random_compat.git",
  1392. "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a"
  1393. },
  1394. "dist": {
  1395. "type": "zip",
  1396. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/996434e5492cb4c3edcb9168db6fbb1359ef965a",
  1397. "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a",
  1398. "shasum": "",
  1399. "mirrors": [
  1400. {
  1401. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1402. "preferred": true
  1403. }
  1404. ]
  1405. },
  1406. "require": {
  1407. "php": ">= 7"
  1408. },
  1409. "require-dev": {
  1410. "phpunit/phpunit": "4.*|5.*",
  1411. "vimeo/psalm": "^1"
  1412. },
  1413. "suggest": {
  1414. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  1415. },
  1416. "type": "library",
  1417. "notification-url": "https://packagist.org/downloads/",
  1418. "license": [
  1419. "MIT"
  1420. ],
  1421. "authors": [
  1422. {
  1423. "name": "Paragon Initiative Enterprises",
  1424. "email": "security@paragonie.com",
  1425. "homepage": "https://paragonie.com"
  1426. }
  1427. ],
  1428. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  1429. "keywords": [
  1430. "csprng",
  1431. "polyfill",
  1432. "pseudorandom",
  1433. "random"
  1434. ],
  1435. "support": {
  1436. "email": "info@paragonie.com",
  1437. "issues": "https://github.com/paragonie/random_compat/issues",
  1438. "source": "https://github.com/paragonie/random_compat"
  1439. },
  1440. "time": "2020-10-15T08:29:30+00:00"
  1441. },
  1442. {
  1443. "name": "phpoption/phpoption",
  1444. "version": "1.8.1",
  1445. "source": {
  1446. "type": "git",
  1447. "url": "https://github.com/schmittjoh/php-option.git",
  1448. "reference": "eab7a0df01fe2344d172bff4cd6dbd3f8b84ad15"
  1449. },
  1450. "dist": {
  1451. "type": "zip",
  1452. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/eab7a0df01fe2344d172bff4cd6dbd3f8b84ad15",
  1453. "reference": "eab7a0df01fe2344d172bff4cd6dbd3f8b84ad15",
  1454. "shasum": "",
  1455. "mirrors": [
  1456. {
  1457. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1458. "preferred": true
  1459. }
  1460. ]
  1461. },
  1462. "require": {
  1463. "php": "^7.0 || ^8.0"
  1464. },
  1465. "require-dev": {
  1466. "bamarni/composer-bin-plugin": "^1.4.1",
  1467. "phpunit/phpunit": "^6.5.14 || ^7.5.20 || ^8.5.19 || ^9.5.8"
  1468. },
  1469. "type": "library",
  1470. "extra": {
  1471. "branch-alias": {
  1472. "dev-master": "1.8-dev"
  1473. }
  1474. },
  1475. "autoload": {
  1476. "psr-4": {
  1477. "PhpOption\\": "src/PhpOption/"
  1478. }
  1479. },
  1480. "notification-url": "https://packagist.org/downloads/",
  1481. "license": [
  1482. "Apache-2.0"
  1483. ],
  1484. "authors": [
  1485. {
  1486. "name": "Johannes M. Schmitt",
  1487. "email": "schmittjoh@gmail.com",
  1488. "homepage": "https://github.com/schmittjoh"
  1489. },
  1490. {
  1491. "name": "Graham Campbell",
  1492. "email": "hello@gjcampbell.co.uk",
  1493. "homepage": "https://github.com/GrahamCampbell"
  1494. }
  1495. ],
  1496. "description": "Option Type for PHP",
  1497. "keywords": [
  1498. "language",
  1499. "option",
  1500. "php",
  1501. "type"
  1502. ],
  1503. "support": {
  1504. "issues": "https://github.com/schmittjoh/php-option/issues",
  1505. "source": "https://github.com/schmittjoh/php-option/tree/1.8.1"
  1506. },
  1507. "funding": [
  1508. {
  1509. "url": "https://github.com/GrahamCampbell",
  1510. "type": "github"
  1511. },
  1512. {
  1513. "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption",
  1514. "type": "tidelift"
  1515. }
  1516. ],
  1517. "time": "2021-12-04T23:24:31+00:00"
  1518. },
  1519. {
  1520. "name": "psr/container",
  1521. "version": "1.1.1",
  1522. "source": {
  1523. "type": "git",
  1524. "url": "https://github.com/php-fig/container.git",
  1525. "reference": "8622567409010282b7aeebe4bb841fe98b58dcaf"
  1526. },
  1527. "dist": {
  1528. "type": "zip",
  1529. "url": "https://api.github.com/repos/php-fig/container/zipball/8622567409010282b7aeebe4bb841fe98b58dcaf",
  1530. "reference": "8622567409010282b7aeebe4bb841fe98b58dcaf",
  1531. "shasum": "",
  1532. "mirrors": [
  1533. {
  1534. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1535. "preferred": true
  1536. }
  1537. ]
  1538. },
  1539. "require": {
  1540. "php": ">=7.2.0"
  1541. },
  1542. "type": "library",
  1543. "autoload": {
  1544. "psr-4": {
  1545. "Psr\\Container\\": "src/"
  1546. }
  1547. },
  1548. "notification-url": "https://packagist.org/downloads/",
  1549. "license": [
  1550. "MIT"
  1551. ],
  1552. "authors": [
  1553. {
  1554. "name": "PHP-FIG",
  1555. "homepage": "https://www.php-fig.org/"
  1556. }
  1557. ],
  1558. "description": "Common Container Interface (PHP FIG PSR-11)",
  1559. "homepage": "https://github.com/php-fig/container",
  1560. "keywords": [
  1561. "PSR-11",
  1562. "container",
  1563. "container-interface",
  1564. "container-interop",
  1565. "psr"
  1566. ],
  1567. "support": {
  1568. "issues": "https://github.com/php-fig/container/issues",
  1569. "source": "https://github.com/php-fig/container/tree/1.1.1"
  1570. },
  1571. "time": "2021-03-05T17:36:06+00:00"
  1572. },
  1573. {
  1574. "name": "psr/log",
  1575. "version": "1.1.4",
  1576. "source": {
  1577. "type": "git",
  1578. "url": "https://github.com/php-fig/log.git",
  1579. "reference": "d49695b909c3b7628b6289db5479a1c204601f11"
  1580. },
  1581. "dist": {
  1582. "type": "zip",
  1583. "url": "https://api.github.com/repos/php-fig/log/zipball/d49695b909c3b7628b6289db5479a1c204601f11",
  1584. "reference": "d49695b909c3b7628b6289db5479a1c204601f11",
  1585. "shasum": "",
  1586. "mirrors": [
  1587. {
  1588. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1589. "preferred": true
  1590. }
  1591. ]
  1592. },
  1593. "require": {
  1594. "php": ">=5.3.0"
  1595. },
  1596. "type": "library",
  1597. "extra": {
  1598. "branch-alias": {
  1599. "dev-master": "1.1.x-dev"
  1600. }
  1601. },
  1602. "autoload": {
  1603. "psr-4": {
  1604. "Psr\\Log\\": "Psr/Log/"
  1605. }
  1606. },
  1607. "notification-url": "https://packagist.org/downloads/",
  1608. "license": [
  1609. "MIT"
  1610. ],
  1611. "authors": [
  1612. {
  1613. "name": "PHP-FIG",
  1614. "homepage": "https://www.php-fig.org/"
  1615. }
  1616. ],
  1617. "description": "Common interface for logging libraries",
  1618. "homepage": "https://github.com/php-fig/log",
  1619. "keywords": [
  1620. "log",
  1621. "psr",
  1622. "psr-3"
  1623. ],
  1624. "support": {
  1625. "source": "https://github.com/php-fig/log/tree/1.1.4"
  1626. },
  1627. "time": "2021-05-03T11:20:27+00:00"
  1628. },
  1629. {
  1630. "name": "psr/simple-cache",
  1631. "version": "1.0.1",
  1632. "source": {
  1633. "type": "git",
  1634. "url": "https://github.com/php-fig/simple-cache.git",
  1635. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b"
  1636. },
  1637. "dist": {
  1638. "type": "zip",
  1639. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  1640. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  1641. "shasum": "",
  1642. "mirrors": [
  1643. {
  1644. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1645. "preferred": true
  1646. }
  1647. ]
  1648. },
  1649. "require": {
  1650. "php": ">=5.3.0"
  1651. },
  1652. "type": "library",
  1653. "extra": {
  1654. "branch-alias": {
  1655. "dev-master": "1.0.x-dev"
  1656. }
  1657. },
  1658. "autoload": {
  1659. "psr-4": {
  1660. "Psr\\SimpleCache\\": "src/"
  1661. }
  1662. },
  1663. "notification-url": "https://packagist.org/downloads/",
  1664. "license": [
  1665. "MIT"
  1666. ],
  1667. "authors": [
  1668. {
  1669. "name": "PHP-FIG",
  1670. "homepage": "http://www.php-fig.org/"
  1671. }
  1672. ],
  1673. "description": "Common interfaces for simple caching",
  1674. "keywords": [
  1675. "cache",
  1676. "caching",
  1677. "psr",
  1678. "psr-16",
  1679. "simple-cache"
  1680. ],
  1681. "support": {
  1682. "source": "https://github.com/php-fig/simple-cache/tree/master"
  1683. },
  1684. "time": "2017-10-23T01:57:42+00:00"
  1685. },
  1686. {
  1687. "name": "psy/psysh",
  1688. "version": "v0.11.11",
  1689. "source": {
  1690. "type": "git",
  1691. "url": "https://github.com/bobthecow/psysh.git",
  1692. "reference": "ba67f2d26278ec9266a5cfe0acba33a8ca1277ae"
  1693. },
  1694. "dist": {
  1695. "type": "zip",
  1696. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/ba67f2d26278ec9266a5cfe0acba33a8ca1277ae",
  1697. "reference": "ba67f2d26278ec9266a5cfe0acba33a8ca1277ae",
  1698. "shasum": "",
  1699. "mirrors": [
  1700. {
  1701. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1702. "preferred": true
  1703. }
  1704. ]
  1705. },
  1706. "require": {
  1707. "ext-json": "*",
  1708. "ext-tokenizer": "*",
  1709. "nikic/php-parser": "^4.0 || ^3.1",
  1710. "php": "^8.0 || ^7.0.8",
  1711. "symfony/console": "^6.0 || ^5.0 || ^4.0 || ^3.4",
  1712. "symfony/var-dumper": "^6.0 || ^5.0 || ^4.0 || ^3.4"
  1713. },
  1714. "conflict": {
  1715. "symfony/console": "4.4.37 || 5.3.14 || 5.3.15 || 5.4.3 || 5.4.4 || 6.0.3 || 6.0.4"
  1716. },
  1717. "require-dev": {
  1718. "bamarni/composer-bin-plugin": "^1.2"
  1719. },
  1720. "suggest": {
  1721. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  1722. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  1723. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.",
  1724. "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history."
  1725. },
  1726. "bin": [
  1727. "bin/psysh"
  1728. ],
  1729. "type": "library",
  1730. "extra": {
  1731. "branch-alias": {
  1732. "dev-main": "0.11.x-dev"
  1733. }
  1734. },
  1735. "autoload": {
  1736. "files": [
  1737. "src/functions.php"
  1738. ],
  1739. "psr-4": {
  1740. "Psy\\": "src/"
  1741. }
  1742. },
  1743. "notification-url": "https://packagist.org/downloads/",
  1744. "license": [
  1745. "MIT"
  1746. ],
  1747. "authors": [
  1748. {
  1749. "name": "Justin Hileman",
  1750. "email": "justin@justinhileman.info",
  1751. "homepage": "http://justinhileman.com"
  1752. }
  1753. ],
  1754. "description": "An interactive shell for modern PHP.",
  1755. "homepage": "http://psysh.org",
  1756. "keywords": [
  1757. "REPL",
  1758. "console",
  1759. "interactive",
  1760. "shell"
  1761. ],
  1762. "support": {
  1763. "issues": "https://github.com/bobthecow/psysh/issues",
  1764. "source": "https://github.com/bobthecow/psysh/tree/v0.11.11"
  1765. },
  1766. "time": "2023-01-23T16:14:59+00:00"
  1767. },
  1768. {
  1769. "name": "ramsey/uuid",
  1770. "version": "3.9.7",
  1771. "source": {
  1772. "type": "git",
  1773. "url": "https://github.com/ramsey/uuid.git",
  1774. "reference": "dc75aa439eb4c1b77f5379fd958b3dc0e6014178"
  1775. },
  1776. "dist": {
  1777. "type": "zip",
  1778. "url": "https://api.github.com/repos/ramsey/uuid/zipball/dc75aa439eb4c1b77f5379fd958b3dc0e6014178",
  1779. "reference": "dc75aa439eb4c1b77f5379fd958b3dc0e6014178",
  1780. "shasum": "",
  1781. "mirrors": [
  1782. {
  1783. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1784. "preferred": true
  1785. }
  1786. ]
  1787. },
  1788. "require": {
  1789. "ext-json": "*",
  1790. "paragonie/random_compat": "^1 | ^2 | ^9.99.99",
  1791. "php": "^5.4 | ^7.0 | ^8.0",
  1792. "symfony/polyfill-ctype": "^1.8"
  1793. },
  1794. "replace": {
  1795. "rhumsaa/uuid": "self.version"
  1796. },
  1797. "require-dev": {
  1798. "codeception/aspect-mock": "^1 | ^2",
  1799. "doctrine/annotations": "^1.2",
  1800. "goaop/framework": "1.0.0-alpha.2 | ^1 | >=2.1.0 <=2.3.2",
  1801. "mockery/mockery": "^0.9.11 | ^1",
  1802. "moontoast/math": "^1.1",
  1803. "nikic/php-parser": "<=4.5.0",
  1804. "paragonie/random-lib": "^2",
  1805. "php-mock/php-mock-phpunit": "^0.3 | ^1.1 | ^2.6",
  1806. "php-parallel-lint/php-parallel-lint": "^1.3",
  1807. "phpunit/phpunit": ">=4.8.36 <9.0.0 | >=9.3.0",
  1808. "squizlabs/php_codesniffer": "^3.5",
  1809. "yoast/phpunit-polyfills": "^1.0"
  1810. },
  1811. "suggest": {
  1812. "ext-ctype": "Provides support for PHP Ctype functions",
  1813. "ext-libsodium": "Provides the PECL libsodium extension for use with the SodiumRandomGenerator",
  1814. "ext-openssl": "Provides the OpenSSL extension for use with the OpenSslGenerator",
  1815. "ext-uuid": "Provides the PECL UUID extension for use with the PeclUuidTimeGenerator and PeclUuidRandomGenerator",
  1816. "moontoast/math": "Provides support for converting UUID to 128-bit integer (in string form).",
  1817. "paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
  1818. "ramsey/uuid-console": "A console application for generating UUIDs with ramsey/uuid",
  1819. "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type."
  1820. },
  1821. "type": "library",
  1822. "autoload": {
  1823. "files": [
  1824. "src/functions.php"
  1825. ],
  1826. "psr-4": {
  1827. "Ramsey\\Uuid\\": "src/"
  1828. }
  1829. },
  1830. "notification-url": "https://packagist.org/downloads/",
  1831. "license": [
  1832. "MIT"
  1833. ],
  1834. "authors": [
  1835. {
  1836. "name": "Ben Ramsey",
  1837. "email": "ben@benramsey.com",
  1838. "homepage": "https://benramsey.com"
  1839. },
  1840. {
  1841. "name": "Marijn Huizendveld",
  1842. "email": "marijn.huizendveld@gmail.com"
  1843. },
  1844. {
  1845. "name": "Thibaud Fabre",
  1846. "email": "thibaud@aztech.io"
  1847. }
  1848. ],
  1849. "description": "Formerly rhumsaa/uuid. A PHP 5.4+ library for generating RFC 4122 version 1, 3, 4, and 5 universally unique identifiers (UUID).",
  1850. "homepage": "https://github.com/ramsey/uuid",
  1851. "keywords": [
  1852. "guid",
  1853. "identifier",
  1854. "uuid"
  1855. ],
  1856. "support": {
  1857. "issues": "https://github.com/ramsey/uuid/issues",
  1858. "rss": "https://github.com/ramsey/uuid/releases.atom",
  1859. "source": "https://github.com/ramsey/uuid",
  1860. "wiki": "https://github.com/ramsey/uuid/wiki"
  1861. },
  1862. "funding": [
  1863. {
  1864. "url": "https://github.com/ramsey",
  1865. "type": "github"
  1866. },
  1867. {
  1868. "url": "https://tidelift.com/funding/github/packagist/ramsey/uuid",
  1869. "type": "tidelift"
  1870. }
  1871. ],
  1872. "time": "2022-12-19T21:55:10+00:00"
  1873. },
  1874. {
  1875. "name": "swiftmailer/swiftmailer",
  1876. "version": "v6.3.0",
  1877. "source": {
  1878. "type": "git",
  1879. "url": "https://github.com/swiftmailer/swiftmailer.git",
  1880. "reference": "8a5d5072dca8f48460fce2f4131fcc495eec654c"
  1881. },
  1882. "dist": {
  1883. "type": "zip",
  1884. "url": "https://api.github.com/repos/swiftmailer/swiftmailer/zipball/8a5d5072dca8f48460fce2f4131fcc495eec654c",
  1885. "reference": "8a5d5072dca8f48460fce2f4131fcc495eec654c",
  1886. "shasum": "",
  1887. "mirrors": [
  1888. {
  1889. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1890. "preferred": true
  1891. }
  1892. ]
  1893. },
  1894. "require": {
  1895. "egulias/email-validator": "^2.0|^3.1",
  1896. "php": ">=7.0.0",
  1897. "symfony/polyfill-iconv": "^1.0",
  1898. "symfony/polyfill-intl-idn": "^1.10",
  1899. "symfony/polyfill-mbstring": "^1.0"
  1900. },
  1901. "require-dev": {
  1902. "mockery/mockery": "^1.0",
  1903. "symfony/phpunit-bridge": "^4.4|^5.4"
  1904. },
  1905. "suggest": {
  1906. "ext-intl": "Needed to support internationalized email addresses"
  1907. },
  1908. "type": "library",
  1909. "extra": {
  1910. "branch-alias": {
  1911. "dev-master": "6.2-dev"
  1912. }
  1913. },
  1914. "autoload": {
  1915. "files": [
  1916. "lib/swift_required.php"
  1917. ]
  1918. },
  1919. "notification-url": "https://packagist.org/downloads/",
  1920. "license": [
  1921. "MIT"
  1922. ],
  1923. "authors": [
  1924. {
  1925. "name": "Chris Corbyn"
  1926. },
  1927. {
  1928. "name": "Fabien Potencier",
  1929. "email": "fabien@symfony.com"
  1930. }
  1931. ],
  1932. "description": "Swiftmailer, free feature-rich PHP mailer",
  1933. "homepage": "https://swiftmailer.symfony.com",
  1934. "keywords": [
  1935. "email",
  1936. "mail",
  1937. "mailer"
  1938. ],
  1939. "support": {
  1940. "issues": "https://github.com/swiftmailer/swiftmailer/issues",
  1941. "source": "https://github.com/swiftmailer/swiftmailer/tree/v6.3.0"
  1942. },
  1943. "funding": [
  1944. {
  1945. "url": "https://github.com/fabpot",
  1946. "type": "github"
  1947. },
  1948. {
  1949. "url": "https://tidelift.com/funding/github/packagist/swiftmailer/swiftmailer",
  1950. "type": "tidelift"
  1951. }
  1952. ],
  1953. "abandoned": "symfony/mailer",
  1954. "time": "2021-10-18T15:26:12+00:00"
  1955. },
  1956. {
  1957. "name": "symfony/console",
  1958. "version": "v4.4.49",
  1959. "source": {
  1960. "type": "git",
  1961. "url": "https://github.com/symfony/console.git",
  1962. "reference": "33fa45ffc81fdcc1ca368d4946da859c8cdb58d9"
  1963. },
  1964. "dist": {
  1965. "type": "zip",
  1966. "url": "https://api.github.com/repos/symfony/console/zipball/33fa45ffc81fdcc1ca368d4946da859c8cdb58d9",
  1967. "reference": "33fa45ffc81fdcc1ca368d4946da859c8cdb58d9",
  1968. "shasum": "",
  1969. "mirrors": [
  1970. {
  1971. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1972. "preferred": true
  1973. }
  1974. ]
  1975. },
  1976. "require": {
  1977. "php": ">=7.1.3",
  1978. "symfony/polyfill-mbstring": "~1.0",
  1979. "symfony/polyfill-php73": "^1.8",
  1980. "symfony/polyfill-php80": "^1.16",
  1981. "symfony/service-contracts": "^1.1|^2"
  1982. },
  1983. "conflict": {
  1984. "psr/log": ">=3",
  1985. "symfony/dependency-injection": "<3.4",
  1986. "symfony/event-dispatcher": "<4.3|>=5",
  1987. "symfony/lock": "<4.4",
  1988. "symfony/process": "<3.3"
  1989. },
  1990. "provide": {
  1991. "psr/log-implementation": "1.0|2.0"
  1992. },
  1993. "require-dev": {
  1994. "psr/log": "^1|^2",
  1995. "symfony/config": "^3.4|^4.0|^5.0",
  1996. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  1997. "symfony/event-dispatcher": "^4.3",
  1998. "symfony/lock": "^4.4|^5.0",
  1999. "symfony/process": "^3.4|^4.0|^5.0",
  2000. "symfony/var-dumper": "^4.3|^5.0"
  2001. },
  2002. "suggest": {
  2003. "psr/log": "For using the console logger",
  2004. "symfony/event-dispatcher": "",
  2005. "symfony/lock": "",
  2006. "symfony/process": ""
  2007. },
  2008. "type": "library",
  2009. "autoload": {
  2010. "psr-4": {
  2011. "Symfony\\Component\\Console\\": ""
  2012. },
  2013. "exclude-from-classmap": [
  2014. "/Tests/"
  2015. ]
  2016. },
  2017. "notification-url": "https://packagist.org/downloads/",
  2018. "license": [
  2019. "MIT"
  2020. ],
  2021. "authors": [
  2022. {
  2023. "name": "Fabien Potencier",
  2024. "email": "fabien@symfony.com"
  2025. },
  2026. {
  2027. "name": "Symfony Community",
  2028. "homepage": "https://symfony.com/contributors"
  2029. }
  2030. ],
  2031. "description": "Eases the creation of beautiful and testable command line interfaces",
  2032. "homepage": "https://symfony.com",
  2033. "support": {
  2034. "source": "https://github.com/symfony/console/tree/v4.4.49"
  2035. },
  2036. "funding": [
  2037. {
  2038. "url": "https://symfony.com/sponsor",
  2039. "type": "custom"
  2040. },
  2041. {
  2042. "url": "https://github.com/fabpot",
  2043. "type": "github"
  2044. },
  2045. {
  2046. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2047. "type": "tidelift"
  2048. }
  2049. ],
  2050. "time": "2022-11-05T17:10:16+00:00"
  2051. },
  2052. {
  2053. "name": "symfony/css-selector",
  2054. "version": "v5.4.19",
  2055. "source": {
  2056. "type": "git",
  2057. "url": "https://github.com/symfony/css-selector.git",
  2058. "reference": "f4a7d150f5b9e8f974f6f127d8167e420d11fc62"
  2059. },
  2060. "dist": {
  2061. "type": "zip",
  2062. "url": "https://api.github.com/repos/symfony/css-selector/zipball/f4a7d150f5b9e8f974f6f127d8167e420d11fc62",
  2063. "reference": "f4a7d150f5b9e8f974f6f127d8167e420d11fc62",
  2064. "shasum": "",
  2065. "mirrors": [
  2066. {
  2067. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2068. "preferred": true
  2069. }
  2070. ]
  2071. },
  2072. "require": {
  2073. "php": ">=7.2.5",
  2074. "symfony/polyfill-php80": "^1.16"
  2075. },
  2076. "type": "library",
  2077. "autoload": {
  2078. "psr-4": {
  2079. "Symfony\\Component\\CssSelector\\": ""
  2080. },
  2081. "exclude-from-classmap": [
  2082. "/Tests/"
  2083. ]
  2084. },
  2085. "notification-url": "https://packagist.org/downloads/",
  2086. "license": [
  2087. "MIT"
  2088. ],
  2089. "authors": [
  2090. {
  2091. "name": "Fabien Potencier",
  2092. "email": "fabien@symfony.com"
  2093. },
  2094. {
  2095. "name": "Jean-François Simon",
  2096. "email": "jeanfrancois.simon@sensiolabs.com"
  2097. },
  2098. {
  2099. "name": "Symfony Community",
  2100. "homepage": "https://symfony.com/contributors"
  2101. }
  2102. ],
  2103. "description": "Converts CSS selectors to XPath expressions",
  2104. "homepage": "https://symfony.com",
  2105. "support": {
  2106. "source": "https://github.com/symfony/css-selector/tree/v5.4.19"
  2107. },
  2108. "funding": [
  2109. {
  2110. "url": "https://symfony.com/sponsor",
  2111. "type": "custom"
  2112. },
  2113. {
  2114. "url": "https://github.com/fabpot",
  2115. "type": "github"
  2116. },
  2117. {
  2118. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2119. "type": "tidelift"
  2120. }
  2121. ],
  2122. "time": "2023-01-01T08:32:19+00:00"
  2123. },
  2124. {
  2125. "name": "symfony/debug",
  2126. "version": "v4.4.41",
  2127. "source": {
  2128. "type": "git",
  2129. "url": "https://github.com/symfony/debug.git",
  2130. "reference": "6637e62480b60817b9a6984154a533e8e64c6bd5"
  2131. },
  2132. "dist": {
  2133. "type": "zip",
  2134. "url": "https://api.github.com/repos/symfony/debug/zipball/6637e62480b60817b9a6984154a533e8e64c6bd5",
  2135. "reference": "6637e62480b60817b9a6984154a533e8e64c6bd5",
  2136. "shasum": "",
  2137. "mirrors": [
  2138. {
  2139. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2140. "preferred": true
  2141. }
  2142. ]
  2143. },
  2144. "require": {
  2145. "php": ">=7.1.3",
  2146. "psr/log": "^1|^2|^3"
  2147. },
  2148. "conflict": {
  2149. "symfony/http-kernel": "<3.4"
  2150. },
  2151. "require-dev": {
  2152. "symfony/http-kernel": "^3.4|^4.0|^5.0"
  2153. },
  2154. "type": "library",
  2155. "autoload": {
  2156. "psr-4": {
  2157. "Symfony\\Component\\Debug\\": ""
  2158. },
  2159. "exclude-from-classmap": [
  2160. "/Tests/"
  2161. ]
  2162. },
  2163. "notification-url": "https://packagist.org/downloads/",
  2164. "license": [
  2165. "MIT"
  2166. ],
  2167. "authors": [
  2168. {
  2169. "name": "Fabien Potencier",
  2170. "email": "fabien@symfony.com"
  2171. },
  2172. {
  2173. "name": "Symfony Community",
  2174. "homepage": "https://symfony.com/contributors"
  2175. }
  2176. ],
  2177. "description": "Provides tools to ease debugging PHP code",
  2178. "homepage": "https://symfony.com",
  2179. "support": {
  2180. "source": "https://github.com/symfony/debug/tree/v4.4.41"
  2181. },
  2182. "funding": [
  2183. {
  2184. "url": "https://symfony.com/sponsor",
  2185. "type": "custom"
  2186. },
  2187. {
  2188. "url": "https://github.com/fabpot",
  2189. "type": "github"
  2190. },
  2191. {
  2192. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2193. "type": "tidelift"
  2194. }
  2195. ],
  2196. "abandoned": "symfony/error-handler",
  2197. "time": "2022-04-12T15:19:55+00:00"
  2198. },
  2199. {
  2200. "name": "symfony/deprecation-contracts",
  2201. "version": "v2.5.2",
  2202. "source": {
  2203. "type": "git",
  2204. "url": "https://github.com/symfony/deprecation-contracts.git",
  2205. "reference": "e8b495ea28c1d97b5e0c121748d6f9b53d075c66"
  2206. },
  2207. "dist": {
  2208. "type": "zip",
  2209. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/e8b495ea28c1d97b5e0c121748d6f9b53d075c66",
  2210. "reference": "e8b495ea28c1d97b5e0c121748d6f9b53d075c66",
  2211. "shasum": "",
  2212. "mirrors": [
  2213. {
  2214. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2215. "preferred": true
  2216. }
  2217. ]
  2218. },
  2219. "require": {
  2220. "php": ">=7.1"
  2221. },
  2222. "type": "library",
  2223. "extra": {
  2224. "branch-alias": {
  2225. "dev-main": "2.5-dev"
  2226. },
  2227. "thanks": {
  2228. "name": "symfony/contracts",
  2229. "url": "https://github.com/symfony/contracts"
  2230. }
  2231. },
  2232. "autoload": {
  2233. "files": [
  2234. "function.php"
  2235. ]
  2236. },
  2237. "notification-url": "https://packagist.org/downloads/",
  2238. "license": [
  2239. "MIT"
  2240. ],
  2241. "authors": [
  2242. {
  2243. "name": "Nicolas Grekas",
  2244. "email": "p@tchwork.com"
  2245. },
  2246. {
  2247. "name": "Symfony Community",
  2248. "homepage": "https://symfony.com/contributors"
  2249. }
  2250. ],
  2251. "description": "A generic function and convention to trigger deprecation notices",
  2252. "homepage": "https://symfony.com",
  2253. "support": {
  2254. "source": "https://github.com/symfony/deprecation-contracts/tree/v2.5.2"
  2255. },
  2256. "funding": [
  2257. {
  2258. "url": "https://symfony.com/sponsor",
  2259. "type": "custom"
  2260. },
  2261. {
  2262. "url": "https://github.com/fabpot",
  2263. "type": "github"
  2264. },
  2265. {
  2266. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2267. "type": "tidelift"
  2268. }
  2269. ],
  2270. "time": "2022-01-02T09:53:40+00:00"
  2271. },
  2272. {
  2273. "name": "symfony/error-handler",
  2274. "version": "v4.4.44",
  2275. "source": {
  2276. "type": "git",
  2277. "url": "https://github.com/symfony/error-handler.git",
  2278. "reference": "be731658121ef2d8be88f3a1ec938148a9237291"
  2279. },
  2280. "dist": {
  2281. "type": "zip",
  2282. "url": "https://api.github.com/repos/symfony/error-handler/zipball/be731658121ef2d8be88f3a1ec938148a9237291",
  2283. "reference": "be731658121ef2d8be88f3a1ec938148a9237291",
  2284. "shasum": "",
  2285. "mirrors": [
  2286. {
  2287. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2288. "preferred": true
  2289. }
  2290. ]
  2291. },
  2292. "require": {
  2293. "php": ">=7.1.3",
  2294. "psr/log": "^1|^2|^3",
  2295. "symfony/debug": "^4.4.5",
  2296. "symfony/var-dumper": "^4.4|^5.0"
  2297. },
  2298. "require-dev": {
  2299. "symfony/http-kernel": "^4.4|^5.0",
  2300. "symfony/serializer": "^4.4|^5.0"
  2301. },
  2302. "type": "library",
  2303. "autoload": {
  2304. "psr-4": {
  2305. "Symfony\\Component\\ErrorHandler\\": ""
  2306. },
  2307. "exclude-from-classmap": [
  2308. "/Tests/"
  2309. ]
  2310. },
  2311. "notification-url": "https://packagist.org/downloads/",
  2312. "license": [
  2313. "MIT"
  2314. ],
  2315. "authors": [
  2316. {
  2317. "name": "Fabien Potencier",
  2318. "email": "fabien@symfony.com"
  2319. },
  2320. {
  2321. "name": "Symfony Community",
  2322. "homepage": "https://symfony.com/contributors"
  2323. }
  2324. ],
  2325. "description": "Provides tools to manage errors and ease debugging PHP code",
  2326. "homepage": "https://symfony.com",
  2327. "support": {
  2328. "source": "https://github.com/symfony/error-handler/tree/v4.4.44"
  2329. },
  2330. "funding": [
  2331. {
  2332. "url": "https://symfony.com/sponsor",
  2333. "type": "custom"
  2334. },
  2335. {
  2336. "url": "https://github.com/fabpot",
  2337. "type": "github"
  2338. },
  2339. {
  2340. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2341. "type": "tidelift"
  2342. }
  2343. ],
  2344. "time": "2022-07-28T16:29:46+00:00"
  2345. },
  2346. {
  2347. "name": "symfony/event-dispatcher",
  2348. "version": "v4.4.44",
  2349. "source": {
  2350. "type": "git",
  2351. "url": "https://github.com/symfony/event-dispatcher.git",
  2352. "reference": "1e866e9e5c1b22168e0ce5f0b467f19bba61266a"
  2353. },
  2354. "dist": {
  2355. "type": "zip",
  2356. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/1e866e9e5c1b22168e0ce5f0b467f19bba61266a",
  2357. "reference": "1e866e9e5c1b22168e0ce5f0b467f19bba61266a",
  2358. "shasum": "",
  2359. "mirrors": [
  2360. {
  2361. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2362. "preferred": true
  2363. }
  2364. ]
  2365. },
  2366. "require": {
  2367. "php": ">=7.1.3",
  2368. "symfony/event-dispatcher-contracts": "^1.1",
  2369. "symfony/polyfill-php80": "^1.16"
  2370. },
  2371. "conflict": {
  2372. "symfony/dependency-injection": "<3.4"
  2373. },
  2374. "provide": {
  2375. "psr/event-dispatcher-implementation": "1.0",
  2376. "symfony/event-dispatcher-implementation": "1.1"
  2377. },
  2378. "require-dev": {
  2379. "psr/log": "^1|^2|^3",
  2380. "symfony/config": "^3.4|^4.0|^5.0",
  2381. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  2382. "symfony/error-handler": "~3.4|~4.4",
  2383. "symfony/expression-language": "^3.4|^4.0|^5.0",
  2384. "symfony/http-foundation": "^3.4|^4.0|^5.0",
  2385. "symfony/service-contracts": "^1.1|^2",
  2386. "symfony/stopwatch": "^3.4|^4.0|^5.0"
  2387. },
  2388. "suggest": {
  2389. "symfony/dependency-injection": "",
  2390. "symfony/http-kernel": ""
  2391. },
  2392. "type": "library",
  2393. "autoload": {
  2394. "psr-4": {
  2395. "Symfony\\Component\\EventDispatcher\\": ""
  2396. },
  2397. "exclude-from-classmap": [
  2398. "/Tests/"
  2399. ]
  2400. },
  2401. "notification-url": "https://packagist.org/downloads/",
  2402. "license": [
  2403. "MIT"
  2404. ],
  2405. "authors": [
  2406. {
  2407. "name": "Fabien Potencier",
  2408. "email": "fabien@symfony.com"
  2409. },
  2410. {
  2411. "name": "Symfony Community",
  2412. "homepage": "https://symfony.com/contributors"
  2413. }
  2414. ],
  2415. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  2416. "homepage": "https://symfony.com",
  2417. "support": {
  2418. "source": "https://github.com/symfony/event-dispatcher/tree/v4.4.44"
  2419. },
  2420. "funding": [
  2421. {
  2422. "url": "https://symfony.com/sponsor",
  2423. "type": "custom"
  2424. },
  2425. {
  2426. "url": "https://github.com/fabpot",
  2427. "type": "github"
  2428. },
  2429. {
  2430. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2431. "type": "tidelift"
  2432. }
  2433. ],
  2434. "time": "2022-07-20T09:59:04+00:00"
  2435. },
  2436. {
  2437. "name": "symfony/event-dispatcher-contracts",
  2438. "version": "v1.1.13",
  2439. "source": {
  2440. "type": "git",
  2441. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  2442. "reference": "1d5cd762abaa6b2a4169d3e77610193a7157129e"
  2443. },
  2444. "dist": {
  2445. "type": "zip",
  2446. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/1d5cd762abaa6b2a4169d3e77610193a7157129e",
  2447. "reference": "1d5cd762abaa6b2a4169d3e77610193a7157129e",
  2448. "shasum": "",
  2449. "mirrors": [
  2450. {
  2451. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2452. "preferred": true
  2453. }
  2454. ]
  2455. },
  2456. "require": {
  2457. "php": ">=7.1.3"
  2458. },
  2459. "suggest": {
  2460. "psr/event-dispatcher": "",
  2461. "symfony/event-dispatcher-implementation": ""
  2462. },
  2463. "type": "library",
  2464. "extra": {
  2465. "branch-alias": {
  2466. "dev-main": "1.1-dev"
  2467. },
  2468. "thanks": {
  2469. "name": "symfony/contracts",
  2470. "url": "https://github.com/symfony/contracts"
  2471. }
  2472. },
  2473. "autoload": {
  2474. "psr-4": {
  2475. "Symfony\\Contracts\\EventDispatcher\\": ""
  2476. }
  2477. },
  2478. "notification-url": "https://packagist.org/downloads/",
  2479. "license": [
  2480. "MIT"
  2481. ],
  2482. "authors": [
  2483. {
  2484. "name": "Nicolas Grekas",
  2485. "email": "p@tchwork.com"
  2486. },
  2487. {
  2488. "name": "Symfony Community",
  2489. "homepage": "https://symfony.com/contributors"
  2490. }
  2491. ],
  2492. "description": "Generic abstractions related to dispatching event",
  2493. "homepage": "https://symfony.com",
  2494. "keywords": [
  2495. "abstractions",
  2496. "contracts",
  2497. "decoupling",
  2498. "interfaces",
  2499. "interoperability",
  2500. "standards"
  2501. ],
  2502. "support": {
  2503. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v1.1.13"
  2504. },
  2505. "funding": [
  2506. {
  2507. "url": "https://symfony.com/sponsor",
  2508. "type": "custom"
  2509. },
  2510. {
  2511. "url": "https://github.com/fabpot",
  2512. "type": "github"
  2513. },
  2514. {
  2515. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2516. "type": "tidelift"
  2517. }
  2518. ],
  2519. "time": "2022-01-02T09:41:36+00:00"
  2520. },
  2521. {
  2522. "name": "symfony/finder",
  2523. "version": "v4.4.44",
  2524. "source": {
  2525. "type": "git",
  2526. "url": "https://github.com/symfony/finder.git",
  2527. "reference": "66bd787edb5e42ff59d3523f623895af05043e4f"
  2528. },
  2529. "dist": {
  2530. "type": "zip",
  2531. "url": "https://api.github.com/repos/symfony/finder/zipball/66bd787edb5e42ff59d3523f623895af05043e4f",
  2532. "reference": "66bd787edb5e42ff59d3523f623895af05043e4f",
  2533. "shasum": "",
  2534. "mirrors": [
  2535. {
  2536. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2537. "preferred": true
  2538. }
  2539. ]
  2540. },
  2541. "require": {
  2542. "php": ">=7.1.3",
  2543. "symfony/polyfill-php80": "^1.16"
  2544. },
  2545. "type": "library",
  2546. "autoload": {
  2547. "psr-4": {
  2548. "Symfony\\Component\\Finder\\": ""
  2549. },
  2550. "exclude-from-classmap": [
  2551. "/Tests/"
  2552. ]
  2553. },
  2554. "notification-url": "https://packagist.org/downloads/",
  2555. "license": [
  2556. "MIT"
  2557. ],
  2558. "authors": [
  2559. {
  2560. "name": "Fabien Potencier",
  2561. "email": "fabien@symfony.com"
  2562. },
  2563. {
  2564. "name": "Symfony Community",
  2565. "homepage": "https://symfony.com/contributors"
  2566. }
  2567. ],
  2568. "description": "Finds files and directories via an intuitive fluent interface",
  2569. "homepage": "https://symfony.com",
  2570. "support": {
  2571. "source": "https://github.com/symfony/finder/tree/v4.4.44"
  2572. },
  2573. "funding": [
  2574. {
  2575. "url": "https://symfony.com/sponsor",
  2576. "type": "custom"
  2577. },
  2578. {
  2579. "url": "https://github.com/fabpot",
  2580. "type": "github"
  2581. },
  2582. {
  2583. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2584. "type": "tidelift"
  2585. }
  2586. ],
  2587. "time": "2022-07-29T07:35:46+00:00"
  2588. },
  2589. {
  2590. "name": "symfony/http-client-contracts",
  2591. "version": "v2.5.2",
  2592. "source": {
  2593. "type": "git",
  2594. "url": "https://github.com/symfony/http-client-contracts.git",
  2595. "reference": "ba6a9f0e8f3edd190520ee3b9a958596b6ca2e70"
  2596. },
  2597. "dist": {
  2598. "type": "zip",
  2599. "url": "https://api.github.com/repos/symfony/http-client-contracts/zipball/ba6a9f0e8f3edd190520ee3b9a958596b6ca2e70",
  2600. "reference": "ba6a9f0e8f3edd190520ee3b9a958596b6ca2e70",
  2601. "shasum": "",
  2602. "mirrors": [
  2603. {
  2604. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2605. "preferred": true
  2606. }
  2607. ]
  2608. },
  2609. "require": {
  2610. "php": ">=7.2.5"
  2611. },
  2612. "suggest": {
  2613. "symfony/http-client-implementation": ""
  2614. },
  2615. "type": "library",
  2616. "extra": {
  2617. "branch-alias": {
  2618. "dev-main": "2.5-dev"
  2619. },
  2620. "thanks": {
  2621. "name": "symfony/contracts",
  2622. "url": "https://github.com/symfony/contracts"
  2623. }
  2624. },
  2625. "autoload": {
  2626. "psr-4": {
  2627. "Symfony\\Contracts\\HttpClient\\": ""
  2628. }
  2629. },
  2630. "notification-url": "https://packagist.org/downloads/",
  2631. "license": [
  2632. "MIT"
  2633. ],
  2634. "authors": [
  2635. {
  2636. "name": "Nicolas Grekas",
  2637. "email": "p@tchwork.com"
  2638. },
  2639. {
  2640. "name": "Symfony Community",
  2641. "homepage": "https://symfony.com/contributors"
  2642. }
  2643. ],
  2644. "description": "Generic abstractions related to HTTP clients",
  2645. "homepage": "https://symfony.com",
  2646. "keywords": [
  2647. "abstractions",
  2648. "contracts",
  2649. "decoupling",
  2650. "interfaces",
  2651. "interoperability",
  2652. "standards"
  2653. ],
  2654. "support": {
  2655. "source": "https://github.com/symfony/http-client-contracts/tree/v2.5.2"
  2656. },
  2657. "funding": [
  2658. {
  2659. "url": "https://symfony.com/sponsor",
  2660. "type": "custom"
  2661. },
  2662. {
  2663. "url": "https://github.com/fabpot",
  2664. "type": "github"
  2665. },
  2666. {
  2667. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2668. "type": "tidelift"
  2669. }
  2670. ],
  2671. "time": "2022-04-12T15:48:08+00:00"
  2672. },
  2673. {
  2674. "name": "symfony/http-foundation",
  2675. "version": "v4.4.49",
  2676. "source": {
  2677. "type": "git",
  2678. "url": "https://github.com/symfony/http-foundation.git",
  2679. "reference": "191413c7b832c015bb38eae963f2e57498c3c173"
  2680. },
  2681. "dist": {
  2682. "type": "zip",
  2683. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/191413c7b832c015bb38eae963f2e57498c3c173",
  2684. "reference": "191413c7b832c015bb38eae963f2e57498c3c173",
  2685. "shasum": "",
  2686. "mirrors": [
  2687. {
  2688. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2689. "preferred": true
  2690. }
  2691. ]
  2692. },
  2693. "require": {
  2694. "php": ">=7.1.3",
  2695. "symfony/mime": "^4.3|^5.0",
  2696. "symfony/polyfill-mbstring": "~1.1",
  2697. "symfony/polyfill-php80": "^1.16"
  2698. },
  2699. "require-dev": {
  2700. "predis/predis": "~1.0",
  2701. "symfony/expression-language": "^3.4|^4.0|^5.0"
  2702. },
  2703. "type": "library",
  2704. "autoload": {
  2705. "psr-4": {
  2706. "Symfony\\Component\\HttpFoundation\\": ""
  2707. },
  2708. "exclude-from-classmap": [
  2709. "/Tests/"
  2710. ]
  2711. },
  2712. "notification-url": "https://packagist.org/downloads/",
  2713. "license": [
  2714. "MIT"
  2715. ],
  2716. "authors": [
  2717. {
  2718. "name": "Fabien Potencier",
  2719. "email": "fabien@symfony.com"
  2720. },
  2721. {
  2722. "name": "Symfony Community",
  2723. "homepage": "https://symfony.com/contributors"
  2724. }
  2725. ],
  2726. "description": "Defines an object-oriented layer for the HTTP specification",
  2727. "homepage": "https://symfony.com",
  2728. "support": {
  2729. "source": "https://github.com/symfony/http-foundation/tree/v4.4.49"
  2730. },
  2731. "funding": [
  2732. {
  2733. "url": "https://symfony.com/sponsor",
  2734. "type": "custom"
  2735. },
  2736. {
  2737. "url": "https://github.com/fabpot",
  2738. "type": "github"
  2739. },
  2740. {
  2741. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2742. "type": "tidelift"
  2743. }
  2744. ],
  2745. "time": "2022-11-04T16:17:57+00:00"
  2746. },
  2747. {
  2748. "name": "symfony/http-kernel",
  2749. "version": "v4.4.50",
  2750. "source": {
  2751. "type": "git",
  2752. "url": "https://github.com/symfony/http-kernel.git",
  2753. "reference": "aa6df6c045f034aa13ac752fc234bb300b9488ef"
  2754. },
  2755. "dist": {
  2756. "type": "zip",
  2757. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/aa6df6c045f034aa13ac752fc234bb300b9488ef",
  2758. "reference": "aa6df6c045f034aa13ac752fc234bb300b9488ef",
  2759. "shasum": "",
  2760. "mirrors": [
  2761. {
  2762. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2763. "preferred": true
  2764. }
  2765. ]
  2766. },
  2767. "require": {
  2768. "php": ">=7.1.3",
  2769. "psr/log": "^1|^2",
  2770. "symfony/error-handler": "^4.4",
  2771. "symfony/event-dispatcher": "^4.4",
  2772. "symfony/http-client-contracts": "^1.1|^2",
  2773. "symfony/http-foundation": "^4.4.30|^5.3.7",
  2774. "symfony/polyfill-ctype": "^1.8",
  2775. "symfony/polyfill-php73": "^1.9",
  2776. "symfony/polyfill-php80": "^1.16"
  2777. },
  2778. "conflict": {
  2779. "symfony/browser-kit": "<4.3",
  2780. "symfony/config": "<3.4",
  2781. "symfony/console": ">=5",
  2782. "symfony/dependency-injection": "<4.3",
  2783. "symfony/translation": "<4.2",
  2784. "twig/twig": "<1.43|<2.13,>=2"
  2785. },
  2786. "provide": {
  2787. "psr/log-implementation": "1.0|2.0"
  2788. },
  2789. "require-dev": {
  2790. "psr/cache": "^1.0|^2.0|^3.0",
  2791. "symfony/browser-kit": "^4.3|^5.0",
  2792. "symfony/config": "^3.4|^4.0|^5.0",
  2793. "symfony/console": "^3.4|^4.0",
  2794. "symfony/css-selector": "^3.4|^4.0|^5.0",
  2795. "symfony/dependency-injection": "^4.3|^5.0",
  2796. "symfony/dom-crawler": "^3.4|^4.0|^5.0",
  2797. "symfony/expression-language": "^3.4|^4.0|^5.0",
  2798. "symfony/finder": "^3.4|^4.0|^5.0",
  2799. "symfony/process": "^3.4|^4.0|^5.0",
  2800. "symfony/routing": "^3.4|^4.0|^5.0",
  2801. "symfony/stopwatch": "^3.4|^4.0|^5.0",
  2802. "symfony/templating": "^3.4|^4.0|^5.0",
  2803. "symfony/translation": "^4.2|^5.0",
  2804. "symfony/translation-contracts": "^1.1|^2",
  2805. "twig/twig": "^1.43|^2.13|^3.0.4"
  2806. },
  2807. "suggest": {
  2808. "symfony/browser-kit": "",
  2809. "symfony/config": "",
  2810. "symfony/console": "",
  2811. "symfony/dependency-injection": ""
  2812. },
  2813. "type": "library",
  2814. "autoload": {
  2815. "psr-4": {
  2816. "Symfony\\Component\\HttpKernel\\": ""
  2817. },
  2818. "exclude-from-classmap": [
  2819. "/Tests/"
  2820. ]
  2821. },
  2822. "notification-url": "https://packagist.org/downloads/",
  2823. "license": [
  2824. "MIT"
  2825. ],
  2826. "authors": [
  2827. {
  2828. "name": "Fabien Potencier",
  2829. "email": "fabien@symfony.com"
  2830. },
  2831. {
  2832. "name": "Symfony Community",
  2833. "homepage": "https://symfony.com/contributors"
  2834. }
  2835. ],
  2836. "description": "Provides a structured process for converting a Request into a Response",
  2837. "homepage": "https://symfony.com",
  2838. "support": {
  2839. "source": "https://github.com/symfony/http-kernel/tree/v4.4.50"
  2840. },
  2841. "funding": [
  2842. {
  2843. "url": "https://symfony.com/sponsor",
  2844. "type": "custom"
  2845. },
  2846. {
  2847. "url": "https://github.com/fabpot",
  2848. "type": "github"
  2849. },
  2850. {
  2851. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2852. "type": "tidelift"
  2853. }
  2854. ],
  2855. "time": "2023-02-01T08:01:31+00:00"
  2856. },
  2857. {
  2858. "name": "symfony/mime",
  2859. "version": "v5.4.19",
  2860. "source": {
  2861. "type": "git",
  2862. "url": "https://github.com/symfony/mime.git",
  2863. "reference": "a858429a9c704edc53fe057228cf9ca282ba48eb"
  2864. },
  2865. "dist": {
  2866. "type": "zip",
  2867. "url": "https://api.github.com/repos/symfony/mime/zipball/a858429a9c704edc53fe057228cf9ca282ba48eb",
  2868. "reference": "a858429a9c704edc53fe057228cf9ca282ba48eb",
  2869. "shasum": "",
  2870. "mirrors": [
  2871. {
  2872. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2873. "preferred": true
  2874. }
  2875. ]
  2876. },
  2877. "require": {
  2878. "php": ">=7.2.5",
  2879. "symfony/deprecation-contracts": "^2.1|^3",
  2880. "symfony/polyfill-intl-idn": "^1.10",
  2881. "symfony/polyfill-mbstring": "^1.0",
  2882. "symfony/polyfill-php80": "^1.16"
  2883. },
  2884. "conflict": {
  2885. "egulias/email-validator": "~3.0.0",
  2886. "phpdocumentor/reflection-docblock": "<3.2.2",
  2887. "phpdocumentor/type-resolver": "<1.4.0",
  2888. "symfony/mailer": "<4.4",
  2889. "symfony/serializer": "<5.4.14|>=6.0,<6.0.14|>=6.1,<6.1.6"
  2890. },
  2891. "require-dev": {
  2892. "egulias/email-validator": "^2.1.10|^3.1|^4",
  2893. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  2894. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  2895. "symfony/property-access": "^4.4|^5.1|^6.0",
  2896. "symfony/property-info": "^4.4|^5.1|^6.0",
  2897. "symfony/serializer": "^5.4.14|~6.0.14|^6.1.6"
  2898. },
  2899. "type": "library",
  2900. "autoload": {
  2901. "psr-4": {
  2902. "Symfony\\Component\\Mime\\": ""
  2903. },
  2904. "exclude-from-classmap": [
  2905. "/Tests/"
  2906. ]
  2907. },
  2908. "notification-url": "https://packagist.org/downloads/",
  2909. "license": [
  2910. "MIT"
  2911. ],
  2912. "authors": [
  2913. {
  2914. "name": "Fabien Potencier",
  2915. "email": "fabien@symfony.com"
  2916. },
  2917. {
  2918. "name": "Symfony Community",
  2919. "homepage": "https://symfony.com/contributors"
  2920. }
  2921. ],
  2922. "description": "Allows manipulating MIME messages",
  2923. "homepage": "https://symfony.com",
  2924. "keywords": [
  2925. "mime",
  2926. "mime-type"
  2927. ],
  2928. "support": {
  2929. "source": "https://github.com/symfony/mime/tree/v5.4.19"
  2930. },
  2931. "funding": [
  2932. {
  2933. "url": "https://symfony.com/sponsor",
  2934. "type": "custom"
  2935. },
  2936. {
  2937. "url": "https://github.com/fabpot",
  2938. "type": "github"
  2939. },
  2940. {
  2941. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2942. "type": "tidelift"
  2943. }
  2944. ],
  2945. "time": "2023-01-09T05:43:46+00:00"
  2946. },
  2947. {
  2948. "name": "symfony/polyfill-ctype",
  2949. "version": "v1.27.0",
  2950. "source": {
  2951. "type": "git",
  2952. "url": "https://github.com/symfony/polyfill-ctype.git",
  2953. "reference": "5bbc823adecdae860bb64756d639ecfec17b050a"
  2954. },
  2955. "dist": {
  2956. "type": "zip",
  2957. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/5bbc823adecdae860bb64756d639ecfec17b050a",
  2958. "reference": "5bbc823adecdae860bb64756d639ecfec17b050a",
  2959. "shasum": "",
  2960. "mirrors": [
  2961. {
  2962. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2963. "preferred": true
  2964. }
  2965. ]
  2966. },
  2967. "require": {
  2968. "php": ">=7.1"
  2969. },
  2970. "provide": {
  2971. "ext-ctype": "*"
  2972. },
  2973. "suggest": {
  2974. "ext-ctype": "For best performance"
  2975. },
  2976. "type": "library",
  2977. "extra": {
  2978. "branch-alias": {
  2979. "dev-main": "1.27-dev"
  2980. },
  2981. "thanks": {
  2982. "name": "symfony/polyfill",
  2983. "url": "https://github.com/symfony/polyfill"
  2984. }
  2985. },
  2986. "autoload": {
  2987. "files": [
  2988. "bootstrap.php"
  2989. ],
  2990. "psr-4": {
  2991. "Symfony\\Polyfill\\Ctype\\": ""
  2992. }
  2993. },
  2994. "notification-url": "https://packagist.org/downloads/",
  2995. "license": [
  2996. "MIT"
  2997. ],
  2998. "authors": [
  2999. {
  3000. "name": "Gert de Pagter",
  3001. "email": "BackEndTea@gmail.com"
  3002. },
  3003. {
  3004. "name": "Symfony Community",
  3005. "homepage": "https://symfony.com/contributors"
  3006. }
  3007. ],
  3008. "description": "Symfony polyfill for ctype functions",
  3009. "homepage": "https://symfony.com",
  3010. "keywords": [
  3011. "compatibility",
  3012. "ctype",
  3013. "polyfill",
  3014. "portable"
  3015. ],
  3016. "support": {
  3017. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.27.0"
  3018. },
  3019. "funding": [
  3020. {
  3021. "url": "https://symfony.com/sponsor",
  3022. "type": "custom"
  3023. },
  3024. {
  3025. "url": "https://github.com/fabpot",
  3026. "type": "github"
  3027. },
  3028. {
  3029. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3030. "type": "tidelift"
  3031. }
  3032. ],
  3033. "time": "2022-11-03T14:55:06+00:00"
  3034. },
  3035. {
  3036. "name": "symfony/polyfill-iconv",
  3037. "version": "v1.27.0",
  3038. "source": {
  3039. "type": "git",
  3040. "url": "https://github.com/symfony/polyfill-iconv.git",
  3041. "reference": "927013f3aac555983a5059aada98e1907d842695"
  3042. },
  3043. "dist": {
  3044. "type": "zip",
  3045. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/927013f3aac555983a5059aada98e1907d842695",
  3046. "reference": "927013f3aac555983a5059aada98e1907d842695",
  3047. "shasum": "",
  3048. "mirrors": [
  3049. {
  3050. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3051. "preferred": true
  3052. }
  3053. ]
  3054. },
  3055. "require": {
  3056. "php": ">=7.1"
  3057. },
  3058. "provide": {
  3059. "ext-iconv": "*"
  3060. },
  3061. "suggest": {
  3062. "ext-iconv": "For best performance"
  3063. },
  3064. "type": "library",
  3065. "extra": {
  3066. "branch-alias": {
  3067. "dev-main": "1.27-dev"
  3068. },
  3069. "thanks": {
  3070. "name": "symfony/polyfill",
  3071. "url": "https://github.com/symfony/polyfill"
  3072. }
  3073. },
  3074. "autoload": {
  3075. "files": [
  3076. "bootstrap.php"
  3077. ],
  3078. "psr-4": {
  3079. "Symfony\\Polyfill\\Iconv\\": ""
  3080. }
  3081. },
  3082. "notification-url": "https://packagist.org/downloads/",
  3083. "license": [
  3084. "MIT"
  3085. ],
  3086. "authors": [
  3087. {
  3088. "name": "Nicolas Grekas",
  3089. "email": "p@tchwork.com"
  3090. },
  3091. {
  3092. "name": "Symfony Community",
  3093. "homepage": "https://symfony.com/contributors"
  3094. }
  3095. ],
  3096. "description": "Symfony polyfill for the Iconv extension",
  3097. "homepage": "https://symfony.com",
  3098. "keywords": [
  3099. "compatibility",
  3100. "iconv",
  3101. "polyfill",
  3102. "portable",
  3103. "shim"
  3104. ],
  3105. "support": {
  3106. "source": "https://github.com/symfony/polyfill-iconv/tree/v1.27.0"
  3107. },
  3108. "funding": [
  3109. {
  3110. "url": "https://symfony.com/sponsor",
  3111. "type": "custom"
  3112. },
  3113. {
  3114. "url": "https://github.com/fabpot",
  3115. "type": "github"
  3116. },
  3117. {
  3118. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3119. "type": "tidelift"
  3120. }
  3121. ],
  3122. "time": "2022-11-03T14:55:06+00:00"
  3123. },
  3124. {
  3125. "name": "symfony/polyfill-intl-idn",
  3126. "version": "v1.27.0",
  3127. "source": {
  3128. "type": "git",
  3129. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  3130. "reference": "639084e360537a19f9ee352433b84ce831f3d2da"
  3131. },
  3132. "dist": {
  3133. "type": "zip",
  3134. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/639084e360537a19f9ee352433b84ce831f3d2da",
  3135. "reference": "639084e360537a19f9ee352433b84ce831f3d2da",
  3136. "shasum": "",
  3137. "mirrors": [
  3138. {
  3139. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3140. "preferred": true
  3141. }
  3142. ]
  3143. },
  3144. "require": {
  3145. "php": ">=7.1",
  3146. "symfony/polyfill-intl-normalizer": "^1.10",
  3147. "symfony/polyfill-php72": "^1.10"
  3148. },
  3149. "suggest": {
  3150. "ext-intl": "For best performance"
  3151. },
  3152. "type": "library",
  3153. "extra": {
  3154. "branch-alias": {
  3155. "dev-main": "1.27-dev"
  3156. },
  3157. "thanks": {
  3158. "name": "symfony/polyfill",
  3159. "url": "https://github.com/symfony/polyfill"
  3160. }
  3161. },
  3162. "autoload": {
  3163. "files": [
  3164. "bootstrap.php"
  3165. ],
  3166. "psr-4": {
  3167. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  3168. }
  3169. },
  3170. "notification-url": "https://packagist.org/downloads/",
  3171. "license": [
  3172. "MIT"
  3173. ],
  3174. "authors": [
  3175. {
  3176. "name": "Laurent Bassin",
  3177. "email": "laurent@bassin.info"
  3178. },
  3179. {
  3180. "name": "Trevor Rowbotham",
  3181. "email": "trevor.rowbotham@pm.me"
  3182. },
  3183. {
  3184. "name": "Symfony Community",
  3185. "homepage": "https://symfony.com/contributors"
  3186. }
  3187. ],
  3188. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  3189. "homepage": "https://symfony.com",
  3190. "keywords": [
  3191. "compatibility",
  3192. "idn",
  3193. "intl",
  3194. "polyfill",
  3195. "portable",
  3196. "shim"
  3197. ],
  3198. "support": {
  3199. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.27.0"
  3200. },
  3201. "funding": [
  3202. {
  3203. "url": "https://symfony.com/sponsor",
  3204. "type": "custom"
  3205. },
  3206. {
  3207. "url": "https://github.com/fabpot",
  3208. "type": "github"
  3209. },
  3210. {
  3211. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3212. "type": "tidelift"
  3213. }
  3214. ],
  3215. "time": "2022-11-03T14:55:06+00:00"
  3216. },
  3217. {
  3218. "name": "symfony/polyfill-intl-normalizer",
  3219. "version": "v1.27.0",
  3220. "source": {
  3221. "type": "git",
  3222. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  3223. "reference": "19bd1e4fcd5b91116f14d8533c57831ed00571b6"
  3224. },
  3225. "dist": {
  3226. "type": "zip",
  3227. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/19bd1e4fcd5b91116f14d8533c57831ed00571b6",
  3228. "reference": "19bd1e4fcd5b91116f14d8533c57831ed00571b6",
  3229. "shasum": "",
  3230. "mirrors": [
  3231. {
  3232. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3233. "preferred": true
  3234. }
  3235. ]
  3236. },
  3237. "require": {
  3238. "php": ">=7.1"
  3239. },
  3240. "suggest": {
  3241. "ext-intl": "For best performance"
  3242. },
  3243. "type": "library",
  3244. "extra": {
  3245. "branch-alias": {
  3246. "dev-main": "1.27-dev"
  3247. },
  3248. "thanks": {
  3249. "name": "symfony/polyfill",
  3250. "url": "https://github.com/symfony/polyfill"
  3251. }
  3252. },
  3253. "autoload": {
  3254. "files": [
  3255. "bootstrap.php"
  3256. ],
  3257. "psr-4": {
  3258. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  3259. },
  3260. "classmap": [
  3261. "Resources/stubs"
  3262. ]
  3263. },
  3264. "notification-url": "https://packagist.org/downloads/",
  3265. "license": [
  3266. "MIT"
  3267. ],
  3268. "authors": [
  3269. {
  3270. "name": "Nicolas Grekas",
  3271. "email": "p@tchwork.com"
  3272. },
  3273. {
  3274. "name": "Symfony Community",
  3275. "homepage": "https://symfony.com/contributors"
  3276. }
  3277. ],
  3278. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  3279. "homepage": "https://symfony.com",
  3280. "keywords": [
  3281. "compatibility",
  3282. "intl",
  3283. "normalizer",
  3284. "polyfill",
  3285. "portable",
  3286. "shim"
  3287. ],
  3288. "support": {
  3289. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.27.0"
  3290. },
  3291. "funding": [
  3292. {
  3293. "url": "https://symfony.com/sponsor",
  3294. "type": "custom"
  3295. },
  3296. {
  3297. "url": "https://github.com/fabpot",
  3298. "type": "github"
  3299. },
  3300. {
  3301. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3302. "type": "tidelift"
  3303. }
  3304. ],
  3305. "time": "2022-11-03T14:55:06+00:00"
  3306. },
  3307. {
  3308. "name": "symfony/polyfill-mbstring",
  3309. "version": "v1.27.0",
  3310. "source": {
  3311. "type": "git",
  3312. "url": "https://github.com/symfony/polyfill-mbstring.git",
  3313. "reference": "8ad114f6b39e2c98a8b0e3bd907732c207c2b534"
  3314. },
  3315. "dist": {
  3316. "type": "zip",
  3317. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/8ad114f6b39e2c98a8b0e3bd907732c207c2b534",
  3318. "reference": "8ad114f6b39e2c98a8b0e3bd907732c207c2b534",
  3319. "shasum": "",
  3320. "mirrors": [
  3321. {
  3322. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3323. "preferred": true
  3324. }
  3325. ]
  3326. },
  3327. "require": {
  3328. "php": ">=7.1"
  3329. },
  3330. "provide": {
  3331. "ext-mbstring": "*"
  3332. },
  3333. "suggest": {
  3334. "ext-mbstring": "For best performance"
  3335. },
  3336. "type": "library",
  3337. "extra": {
  3338. "branch-alias": {
  3339. "dev-main": "1.27-dev"
  3340. },
  3341. "thanks": {
  3342. "name": "symfony/polyfill",
  3343. "url": "https://github.com/symfony/polyfill"
  3344. }
  3345. },
  3346. "autoload": {
  3347. "files": [
  3348. "bootstrap.php"
  3349. ],
  3350. "psr-4": {
  3351. "Symfony\\Polyfill\\Mbstring\\": ""
  3352. }
  3353. },
  3354. "notification-url": "https://packagist.org/downloads/",
  3355. "license": [
  3356. "MIT"
  3357. ],
  3358. "authors": [
  3359. {
  3360. "name": "Nicolas Grekas",
  3361. "email": "p@tchwork.com"
  3362. },
  3363. {
  3364. "name": "Symfony Community",
  3365. "homepage": "https://symfony.com/contributors"
  3366. }
  3367. ],
  3368. "description": "Symfony polyfill for the Mbstring extension",
  3369. "homepage": "https://symfony.com",
  3370. "keywords": [
  3371. "compatibility",
  3372. "mbstring",
  3373. "polyfill",
  3374. "portable",
  3375. "shim"
  3376. ],
  3377. "support": {
  3378. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.27.0"
  3379. },
  3380. "funding": [
  3381. {
  3382. "url": "https://symfony.com/sponsor",
  3383. "type": "custom"
  3384. },
  3385. {
  3386. "url": "https://github.com/fabpot",
  3387. "type": "github"
  3388. },
  3389. {
  3390. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3391. "type": "tidelift"
  3392. }
  3393. ],
  3394. "time": "2022-11-03T14:55:06+00:00"
  3395. },
  3396. {
  3397. "name": "symfony/polyfill-php72",
  3398. "version": "v1.27.0",
  3399. "source": {
  3400. "type": "git",
  3401. "url": "https://github.com/symfony/polyfill-php72.git",
  3402. "reference": "869329b1e9894268a8a61dabb69153029b7a8c97"
  3403. },
  3404. "dist": {
  3405. "type": "zip",
  3406. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/869329b1e9894268a8a61dabb69153029b7a8c97",
  3407. "reference": "869329b1e9894268a8a61dabb69153029b7a8c97",
  3408. "shasum": "",
  3409. "mirrors": [
  3410. {
  3411. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3412. "preferred": true
  3413. }
  3414. ]
  3415. },
  3416. "require": {
  3417. "php": ">=7.1"
  3418. },
  3419. "type": "library",
  3420. "extra": {
  3421. "branch-alias": {
  3422. "dev-main": "1.27-dev"
  3423. },
  3424. "thanks": {
  3425. "name": "symfony/polyfill",
  3426. "url": "https://github.com/symfony/polyfill"
  3427. }
  3428. },
  3429. "autoload": {
  3430. "files": [
  3431. "bootstrap.php"
  3432. ],
  3433. "psr-4": {
  3434. "Symfony\\Polyfill\\Php72\\": ""
  3435. }
  3436. },
  3437. "notification-url": "https://packagist.org/downloads/",
  3438. "license": [
  3439. "MIT"
  3440. ],
  3441. "authors": [
  3442. {
  3443. "name": "Nicolas Grekas",
  3444. "email": "p@tchwork.com"
  3445. },
  3446. {
  3447. "name": "Symfony Community",
  3448. "homepage": "https://symfony.com/contributors"
  3449. }
  3450. ],
  3451. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  3452. "homepage": "https://symfony.com",
  3453. "keywords": [
  3454. "compatibility",
  3455. "polyfill",
  3456. "portable",
  3457. "shim"
  3458. ],
  3459. "support": {
  3460. "source": "https://github.com/symfony/polyfill-php72/tree/v1.27.0"
  3461. },
  3462. "funding": [
  3463. {
  3464. "url": "https://symfony.com/sponsor",
  3465. "type": "custom"
  3466. },
  3467. {
  3468. "url": "https://github.com/fabpot",
  3469. "type": "github"
  3470. },
  3471. {
  3472. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3473. "type": "tidelift"
  3474. }
  3475. ],
  3476. "time": "2022-11-03T14:55:06+00:00"
  3477. },
  3478. {
  3479. "name": "symfony/polyfill-php73",
  3480. "version": "v1.27.0",
  3481. "source": {
  3482. "type": "git",
  3483. "url": "https://github.com/symfony/polyfill-php73.git",
  3484. "reference": "9e8ecb5f92152187c4799efd3c96b78ccab18ff9"
  3485. },
  3486. "dist": {
  3487. "type": "zip",
  3488. "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/9e8ecb5f92152187c4799efd3c96b78ccab18ff9",
  3489. "reference": "9e8ecb5f92152187c4799efd3c96b78ccab18ff9",
  3490. "shasum": "",
  3491. "mirrors": [
  3492. {
  3493. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3494. "preferred": true
  3495. }
  3496. ]
  3497. },
  3498. "require": {
  3499. "php": ">=7.1"
  3500. },
  3501. "type": "library",
  3502. "extra": {
  3503. "branch-alias": {
  3504. "dev-main": "1.27-dev"
  3505. },
  3506. "thanks": {
  3507. "name": "symfony/polyfill",
  3508. "url": "https://github.com/symfony/polyfill"
  3509. }
  3510. },
  3511. "autoload": {
  3512. "files": [
  3513. "bootstrap.php"
  3514. ],
  3515. "psr-4": {
  3516. "Symfony\\Polyfill\\Php73\\": ""
  3517. },
  3518. "classmap": [
  3519. "Resources/stubs"
  3520. ]
  3521. },
  3522. "notification-url": "https://packagist.org/downloads/",
  3523. "license": [
  3524. "MIT"
  3525. ],
  3526. "authors": [
  3527. {
  3528. "name": "Nicolas Grekas",
  3529. "email": "p@tchwork.com"
  3530. },
  3531. {
  3532. "name": "Symfony Community",
  3533. "homepage": "https://symfony.com/contributors"
  3534. }
  3535. ],
  3536. "description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions",
  3537. "homepage": "https://symfony.com",
  3538. "keywords": [
  3539. "compatibility",
  3540. "polyfill",
  3541. "portable",
  3542. "shim"
  3543. ],
  3544. "support": {
  3545. "source": "https://github.com/symfony/polyfill-php73/tree/v1.27.0"
  3546. },
  3547. "funding": [
  3548. {
  3549. "url": "https://symfony.com/sponsor",
  3550. "type": "custom"
  3551. },
  3552. {
  3553. "url": "https://github.com/fabpot",
  3554. "type": "github"
  3555. },
  3556. {
  3557. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3558. "type": "tidelift"
  3559. }
  3560. ],
  3561. "time": "2022-11-03T14:55:06+00:00"
  3562. },
  3563. {
  3564. "name": "symfony/polyfill-php80",
  3565. "version": "v1.27.0",
  3566. "source": {
  3567. "type": "git",
  3568. "url": "https://github.com/symfony/polyfill-php80.git",
  3569. "reference": "7a6ff3f1959bb01aefccb463a0f2cd3d3d2fd936"
  3570. },
  3571. "dist": {
  3572. "type": "zip",
  3573. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/7a6ff3f1959bb01aefccb463a0f2cd3d3d2fd936",
  3574. "reference": "7a6ff3f1959bb01aefccb463a0f2cd3d3d2fd936",
  3575. "shasum": "",
  3576. "mirrors": [
  3577. {
  3578. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3579. "preferred": true
  3580. }
  3581. ]
  3582. },
  3583. "require": {
  3584. "php": ">=7.1"
  3585. },
  3586. "type": "library",
  3587. "extra": {
  3588. "branch-alias": {
  3589. "dev-main": "1.27-dev"
  3590. },
  3591. "thanks": {
  3592. "name": "symfony/polyfill",
  3593. "url": "https://github.com/symfony/polyfill"
  3594. }
  3595. },
  3596. "autoload": {
  3597. "files": [
  3598. "bootstrap.php"
  3599. ],
  3600. "psr-4": {
  3601. "Symfony\\Polyfill\\Php80\\": ""
  3602. },
  3603. "classmap": [
  3604. "Resources/stubs"
  3605. ]
  3606. },
  3607. "notification-url": "https://packagist.org/downloads/",
  3608. "license": [
  3609. "MIT"
  3610. ],
  3611. "authors": [
  3612. {
  3613. "name": "Ion Bazan",
  3614. "email": "ion.bazan@gmail.com"
  3615. },
  3616. {
  3617. "name": "Nicolas Grekas",
  3618. "email": "p@tchwork.com"
  3619. },
  3620. {
  3621. "name": "Symfony Community",
  3622. "homepage": "https://symfony.com/contributors"
  3623. }
  3624. ],
  3625. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  3626. "homepage": "https://symfony.com",
  3627. "keywords": [
  3628. "compatibility",
  3629. "polyfill",
  3630. "portable",
  3631. "shim"
  3632. ],
  3633. "support": {
  3634. "source": "https://github.com/symfony/polyfill-php80/tree/v1.27.0"
  3635. },
  3636. "funding": [
  3637. {
  3638. "url": "https://symfony.com/sponsor",
  3639. "type": "custom"
  3640. },
  3641. {
  3642. "url": "https://github.com/fabpot",
  3643. "type": "github"
  3644. },
  3645. {
  3646. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3647. "type": "tidelift"
  3648. }
  3649. ],
  3650. "time": "2022-11-03T14:55:06+00:00"
  3651. },
  3652. {
  3653. "name": "symfony/process",
  3654. "version": "v4.4.44",
  3655. "source": {
  3656. "type": "git",
  3657. "url": "https://github.com/symfony/process.git",
  3658. "reference": "5cee9cdc4f7805e2699d9fd66991a0e6df8252a2"
  3659. },
  3660. "dist": {
  3661. "type": "zip",
  3662. "url": "https://api.github.com/repos/symfony/process/zipball/5cee9cdc4f7805e2699d9fd66991a0e6df8252a2",
  3663. "reference": "5cee9cdc4f7805e2699d9fd66991a0e6df8252a2",
  3664. "shasum": "",
  3665. "mirrors": [
  3666. {
  3667. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3668. "preferred": true
  3669. }
  3670. ]
  3671. },
  3672. "require": {
  3673. "php": ">=7.1.3",
  3674. "symfony/polyfill-php80": "^1.16"
  3675. },
  3676. "type": "library",
  3677. "autoload": {
  3678. "psr-4": {
  3679. "Symfony\\Component\\Process\\": ""
  3680. },
  3681. "exclude-from-classmap": [
  3682. "/Tests/"
  3683. ]
  3684. },
  3685. "notification-url": "https://packagist.org/downloads/",
  3686. "license": [
  3687. "MIT"
  3688. ],
  3689. "authors": [
  3690. {
  3691. "name": "Fabien Potencier",
  3692. "email": "fabien@symfony.com"
  3693. },
  3694. {
  3695. "name": "Symfony Community",
  3696. "homepage": "https://symfony.com/contributors"
  3697. }
  3698. ],
  3699. "description": "Executes commands in sub-processes",
  3700. "homepage": "https://symfony.com",
  3701. "support": {
  3702. "source": "https://github.com/symfony/process/tree/v4.4.44"
  3703. },
  3704. "funding": [
  3705. {
  3706. "url": "https://symfony.com/sponsor",
  3707. "type": "custom"
  3708. },
  3709. {
  3710. "url": "https://github.com/fabpot",
  3711. "type": "github"
  3712. },
  3713. {
  3714. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3715. "type": "tidelift"
  3716. }
  3717. ],
  3718. "time": "2022-06-27T13:16:42+00:00"
  3719. },
  3720. {
  3721. "name": "symfony/routing",
  3722. "version": "v4.4.44",
  3723. "source": {
  3724. "type": "git",
  3725. "url": "https://github.com/symfony/routing.git",
  3726. "reference": "f7751fd8b60a07f3f349947a309b5bdfce22d6ae"
  3727. },
  3728. "dist": {
  3729. "type": "zip",
  3730. "url": "https://api.github.com/repos/symfony/routing/zipball/f7751fd8b60a07f3f349947a309b5bdfce22d6ae",
  3731. "reference": "f7751fd8b60a07f3f349947a309b5bdfce22d6ae",
  3732. "shasum": "",
  3733. "mirrors": [
  3734. {
  3735. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3736. "preferred": true
  3737. }
  3738. ]
  3739. },
  3740. "require": {
  3741. "php": ">=7.1.3",
  3742. "symfony/polyfill-php80": "^1.16"
  3743. },
  3744. "conflict": {
  3745. "symfony/config": "<4.2",
  3746. "symfony/dependency-injection": "<3.4",
  3747. "symfony/yaml": "<3.4"
  3748. },
  3749. "require-dev": {
  3750. "doctrine/annotations": "^1.10.4",
  3751. "psr/log": "^1|^2|^3",
  3752. "symfony/config": "^4.2|^5.0",
  3753. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  3754. "symfony/expression-language": "^3.4|^4.0|^5.0",
  3755. "symfony/http-foundation": "^3.4|^4.0|^5.0",
  3756. "symfony/yaml": "^3.4|^4.0|^5.0"
  3757. },
  3758. "suggest": {
  3759. "doctrine/annotations": "For using the annotation loader",
  3760. "symfony/config": "For using the all-in-one router or any loader",
  3761. "symfony/expression-language": "For using expression matching",
  3762. "symfony/http-foundation": "For using a Symfony Request object",
  3763. "symfony/yaml": "For using the YAML loader"
  3764. },
  3765. "type": "library",
  3766. "autoload": {
  3767. "psr-4": {
  3768. "Symfony\\Component\\Routing\\": ""
  3769. },
  3770. "exclude-from-classmap": [
  3771. "/Tests/"
  3772. ]
  3773. },
  3774. "notification-url": "https://packagist.org/downloads/",
  3775. "license": [
  3776. "MIT"
  3777. ],
  3778. "authors": [
  3779. {
  3780. "name": "Fabien Potencier",
  3781. "email": "fabien@symfony.com"
  3782. },
  3783. {
  3784. "name": "Symfony Community",
  3785. "homepage": "https://symfony.com/contributors"
  3786. }
  3787. ],
  3788. "description": "Maps an HTTP request to a set of configuration variables",
  3789. "homepage": "https://symfony.com",
  3790. "keywords": [
  3791. "router",
  3792. "routing",
  3793. "uri",
  3794. "url"
  3795. ],
  3796. "support": {
  3797. "source": "https://github.com/symfony/routing/tree/v4.4.44"
  3798. },
  3799. "funding": [
  3800. {
  3801. "url": "https://symfony.com/sponsor",
  3802. "type": "custom"
  3803. },
  3804. {
  3805. "url": "https://github.com/fabpot",
  3806. "type": "github"
  3807. },
  3808. {
  3809. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3810. "type": "tidelift"
  3811. }
  3812. ],
  3813. "time": "2022-07-20T09:59:04+00:00"
  3814. },
  3815. {
  3816. "name": "symfony/service-contracts",
  3817. "version": "v2.5.2",
  3818. "source": {
  3819. "type": "git",
  3820. "url": "https://github.com/symfony/service-contracts.git",
  3821. "reference": "4b426aac47d6427cc1a1d0f7e2ac724627f5966c"
  3822. },
  3823. "dist": {
  3824. "type": "zip",
  3825. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/4b426aac47d6427cc1a1d0f7e2ac724627f5966c",
  3826. "reference": "4b426aac47d6427cc1a1d0f7e2ac724627f5966c",
  3827. "shasum": "",
  3828. "mirrors": [
  3829. {
  3830. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3831. "preferred": true
  3832. }
  3833. ]
  3834. },
  3835. "require": {
  3836. "php": ">=7.2.5",
  3837. "psr/container": "^1.1",
  3838. "symfony/deprecation-contracts": "^2.1|^3"
  3839. },
  3840. "conflict": {
  3841. "ext-psr": "<1.1|>=2"
  3842. },
  3843. "suggest": {
  3844. "symfony/service-implementation": ""
  3845. },
  3846. "type": "library",
  3847. "extra": {
  3848. "branch-alias": {
  3849. "dev-main": "2.5-dev"
  3850. },
  3851. "thanks": {
  3852. "name": "symfony/contracts",
  3853. "url": "https://github.com/symfony/contracts"
  3854. }
  3855. },
  3856. "autoload": {
  3857. "psr-4": {
  3858. "Symfony\\Contracts\\Service\\": ""
  3859. }
  3860. },
  3861. "notification-url": "https://packagist.org/downloads/",
  3862. "license": [
  3863. "MIT"
  3864. ],
  3865. "authors": [
  3866. {
  3867. "name": "Nicolas Grekas",
  3868. "email": "p@tchwork.com"
  3869. },
  3870. {
  3871. "name": "Symfony Community",
  3872. "homepage": "https://symfony.com/contributors"
  3873. }
  3874. ],
  3875. "description": "Generic abstractions related to writing services",
  3876. "homepage": "https://symfony.com",
  3877. "keywords": [
  3878. "abstractions",
  3879. "contracts",
  3880. "decoupling",
  3881. "interfaces",
  3882. "interoperability",
  3883. "standards"
  3884. ],
  3885. "support": {
  3886. "source": "https://github.com/symfony/service-contracts/tree/v2.5.2"
  3887. },
  3888. "funding": [
  3889. {
  3890. "url": "https://symfony.com/sponsor",
  3891. "type": "custom"
  3892. },
  3893. {
  3894. "url": "https://github.com/fabpot",
  3895. "type": "github"
  3896. },
  3897. {
  3898. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3899. "type": "tidelift"
  3900. }
  3901. ],
  3902. "time": "2022-05-30T19:17:29+00:00"
  3903. },
  3904. {
  3905. "name": "symfony/translation",
  3906. "version": "v4.4.47",
  3907. "source": {
  3908. "type": "git",
  3909. "url": "https://github.com/symfony/translation.git",
  3910. "reference": "45036b1d53accc48fe9bab71ccd86d57eba0dd94"
  3911. },
  3912. "dist": {
  3913. "type": "zip",
  3914. "url": "https://api.github.com/repos/symfony/translation/zipball/45036b1d53accc48fe9bab71ccd86d57eba0dd94",
  3915. "reference": "45036b1d53accc48fe9bab71ccd86d57eba0dd94",
  3916. "shasum": "",
  3917. "mirrors": [
  3918. {
  3919. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3920. "preferred": true
  3921. }
  3922. ]
  3923. },
  3924. "require": {
  3925. "php": ">=7.1.3",
  3926. "symfony/polyfill-mbstring": "~1.0",
  3927. "symfony/polyfill-php80": "^1.16",
  3928. "symfony/translation-contracts": "^1.1.6|^2"
  3929. },
  3930. "conflict": {
  3931. "symfony/config": "<3.4",
  3932. "symfony/dependency-injection": "<3.4",
  3933. "symfony/http-kernel": "<4.4",
  3934. "symfony/yaml": "<3.4"
  3935. },
  3936. "provide": {
  3937. "symfony/translation-implementation": "1.0|2.0"
  3938. },
  3939. "require-dev": {
  3940. "psr/log": "^1|^2|^3",
  3941. "symfony/config": "^3.4|^4.0|^5.0",
  3942. "symfony/console": "^3.4|^4.0|^5.0",
  3943. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  3944. "symfony/finder": "~2.8|~3.0|~4.0|^5.0",
  3945. "symfony/http-kernel": "^4.4",
  3946. "symfony/intl": "^3.4|^4.0|^5.0",
  3947. "symfony/service-contracts": "^1.1.2|^2",
  3948. "symfony/yaml": "^3.4|^4.0|^5.0"
  3949. },
  3950. "suggest": {
  3951. "psr/log-implementation": "To use logging capability in translator",
  3952. "symfony/config": "",
  3953. "symfony/yaml": ""
  3954. },
  3955. "type": "library",
  3956. "autoload": {
  3957. "psr-4": {
  3958. "Symfony\\Component\\Translation\\": ""
  3959. },
  3960. "exclude-from-classmap": [
  3961. "/Tests/"
  3962. ]
  3963. },
  3964. "notification-url": "https://packagist.org/downloads/",
  3965. "license": [
  3966. "MIT"
  3967. ],
  3968. "authors": [
  3969. {
  3970. "name": "Fabien Potencier",
  3971. "email": "fabien@symfony.com"
  3972. },
  3973. {
  3974. "name": "Symfony Community",
  3975. "homepage": "https://symfony.com/contributors"
  3976. }
  3977. ],
  3978. "description": "Provides tools to internationalize your application",
  3979. "homepage": "https://symfony.com",
  3980. "support": {
  3981. "source": "https://github.com/symfony/translation/tree/v4.4.47"
  3982. },
  3983. "funding": [
  3984. {
  3985. "url": "https://symfony.com/sponsor",
  3986. "type": "custom"
  3987. },
  3988. {
  3989. "url": "https://github.com/fabpot",
  3990. "type": "github"
  3991. },
  3992. {
  3993. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3994. "type": "tidelift"
  3995. }
  3996. ],
  3997. "time": "2022-10-03T15:15:11+00:00"
  3998. },
  3999. {
  4000. "name": "symfony/translation-contracts",
  4001. "version": "v2.5.2",
  4002. "source": {
  4003. "type": "git",
  4004. "url": "https://github.com/symfony/translation-contracts.git",
  4005. "reference": "136b19dd05cdf0709db6537d058bcab6dd6e2dbe"
  4006. },
  4007. "dist": {
  4008. "type": "zip",
  4009. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/136b19dd05cdf0709db6537d058bcab6dd6e2dbe",
  4010. "reference": "136b19dd05cdf0709db6537d058bcab6dd6e2dbe",
  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.2.5"
  4021. },
  4022. "suggest": {
  4023. "symfony/translation-implementation": ""
  4024. },
  4025. "type": "library",
  4026. "extra": {
  4027. "branch-alias": {
  4028. "dev-main": "2.5-dev"
  4029. },
  4030. "thanks": {
  4031. "name": "symfony/contracts",
  4032. "url": "https://github.com/symfony/contracts"
  4033. }
  4034. },
  4035. "autoload": {
  4036. "psr-4": {
  4037. "Symfony\\Contracts\\Translation\\": ""
  4038. }
  4039. },
  4040. "notification-url": "https://packagist.org/downloads/",
  4041. "license": [
  4042. "MIT"
  4043. ],
  4044. "authors": [
  4045. {
  4046. "name": "Nicolas Grekas",
  4047. "email": "p@tchwork.com"
  4048. },
  4049. {
  4050. "name": "Symfony Community",
  4051. "homepage": "https://symfony.com/contributors"
  4052. }
  4053. ],
  4054. "description": "Generic abstractions related to translation",
  4055. "homepage": "https://symfony.com",
  4056. "keywords": [
  4057. "abstractions",
  4058. "contracts",
  4059. "decoupling",
  4060. "interfaces",
  4061. "interoperability",
  4062. "standards"
  4063. ],
  4064. "support": {
  4065. "source": "https://github.com/symfony/translation-contracts/tree/v2.5.2"
  4066. },
  4067. "funding": [
  4068. {
  4069. "url": "https://symfony.com/sponsor",
  4070. "type": "custom"
  4071. },
  4072. {
  4073. "url": "https://github.com/fabpot",
  4074. "type": "github"
  4075. },
  4076. {
  4077. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4078. "type": "tidelift"
  4079. }
  4080. ],
  4081. "time": "2022-06-27T16:58:25+00:00"
  4082. },
  4083. {
  4084. "name": "symfony/var-dumper",
  4085. "version": "v4.4.47",
  4086. "source": {
  4087. "type": "git",
  4088. "url": "https://github.com/symfony/var-dumper.git",
  4089. "reference": "1069c7a3fca74578022fab6f81643248d02f8e63"
  4090. },
  4091. "dist": {
  4092. "type": "zip",
  4093. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/1069c7a3fca74578022fab6f81643248d02f8e63",
  4094. "reference": "1069c7a3fca74578022fab6f81643248d02f8e63",
  4095. "shasum": "",
  4096. "mirrors": [
  4097. {
  4098. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4099. "preferred": true
  4100. }
  4101. ]
  4102. },
  4103. "require": {
  4104. "php": ">=7.1.3",
  4105. "symfony/polyfill-mbstring": "~1.0",
  4106. "symfony/polyfill-php72": "~1.5",
  4107. "symfony/polyfill-php80": "^1.16"
  4108. },
  4109. "conflict": {
  4110. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0",
  4111. "symfony/console": "<3.4"
  4112. },
  4113. "require-dev": {
  4114. "ext-iconv": "*",
  4115. "symfony/console": "^3.4|^4.0|^5.0",
  4116. "symfony/process": "^4.4|^5.0",
  4117. "twig/twig": "^1.43|^2.13|^3.0.4"
  4118. },
  4119. "suggest": {
  4120. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  4121. "ext-intl": "To show region name in time zone dump",
  4122. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  4123. },
  4124. "bin": [
  4125. "Resources/bin/var-dump-server"
  4126. ],
  4127. "type": "library",
  4128. "autoload": {
  4129. "files": [
  4130. "Resources/functions/dump.php"
  4131. ],
  4132. "psr-4": {
  4133. "Symfony\\Component\\VarDumper\\": ""
  4134. },
  4135. "exclude-from-classmap": [
  4136. "/Tests/"
  4137. ]
  4138. },
  4139. "notification-url": "https://packagist.org/downloads/",
  4140. "license": [
  4141. "MIT"
  4142. ],
  4143. "authors": [
  4144. {
  4145. "name": "Nicolas Grekas",
  4146. "email": "p@tchwork.com"
  4147. },
  4148. {
  4149. "name": "Symfony Community",
  4150. "homepage": "https://symfony.com/contributors"
  4151. }
  4152. ],
  4153. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  4154. "homepage": "https://symfony.com",
  4155. "keywords": [
  4156. "debug",
  4157. "dump"
  4158. ],
  4159. "support": {
  4160. "source": "https://github.com/symfony/var-dumper/tree/v4.4.47"
  4161. },
  4162. "funding": [
  4163. {
  4164. "url": "https://symfony.com/sponsor",
  4165. "type": "custom"
  4166. },
  4167. {
  4168. "url": "https://github.com/fabpot",
  4169. "type": "github"
  4170. },
  4171. {
  4172. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4173. "type": "tidelift"
  4174. }
  4175. ],
  4176. "time": "2022-10-03T15:15:11+00:00"
  4177. },
  4178. {
  4179. "name": "tijsverkoyen/css-to-inline-styles",
  4180. "version": "2.2.6",
  4181. "source": {
  4182. "type": "git",
  4183. "url": "https://github.com/tijsverkoyen/CssToInlineStyles.git",
  4184. "reference": "c42125b83a4fa63b187fdf29f9c93cb7733da30c"
  4185. },
  4186. "dist": {
  4187. "type": "zip",
  4188. "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/c42125b83a4fa63b187fdf29f9c93cb7733da30c",
  4189. "reference": "c42125b83a4fa63b187fdf29f9c93cb7733da30c",
  4190. "shasum": "",
  4191. "mirrors": [
  4192. {
  4193. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4194. "preferred": true
  4195. }
  4196. ]
  4197. },
  4198. "require": {
  4199. "ext-dom": "*",
  4200. "ext-libxml": "*",
  4201. "php": "^5.5 || ^7.0 || ^8.0",
  4202. "symfony/css-selector": "^2.7 || ^3.0 || ^4.0 || ^5.0 || ^6.0"
  4203. },
  4204. "require-dev": {
  4205. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0 || ^7.5 || ^8.5.21 || ^9.5.10"
  4206. },
  4207. "type": "library",
  4208. "extra": {
  4209. "branch-alias": {
  4210. "dev-master": "2.2.x-dev"
  4211. }
  4212. },
  4213. "autoload": {
  4214. "psr-4": {
  4215. "TijsVerkoyen\\CssToInlineStyles\\": "src"
  4216. }
  4217. },
  4218. "notification-url": "https://packagist.org/downloads/",
  4219. "license": [
  4220. "BSD-3-Clause"
  4221. ],
  4222. "authors": [
  4223. {
  4224. "name": "Tijs Verkoyen",
  4225. "email": "css_to_inline_styles@verkoyen.eu",
  4226. "role": "Developer"
  4227. }
  4228. ],
  4229. "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.",
  4230. "homepage": "https://github.com/tijsverkoyen/CssToInlineStyles",
  4231. "support": {
  4232. "issues": "https://github.com/tijsverkoyen/CssToInlineStyles/issues",
  4233. "source": "https://github.com/tijsverkoyen/CssToInlineStyles/tree/2.2.6"
  4234. },
  4235. "time": "2023-01-03T09:29:04+00:00"
  4236. },
  4237. {
  4238. "name": "vlucas/phpdotenv",
  4239. "version": "v3.6.10",
  4240. "source": {
  4241. "type": "git",
  4242. "url": "https://github.com/vlucas/phpdotenv.git",
  4243. "reference": "5b547cdb25825f10251370f57ba5d9d924e6f68e"
  4244. },
  4245. "dist": {
  4246. "type": "zip",
  4247. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/5b547cdb25825f10251370f57ba5d9d924e6f68e",
  4248. "reference": "5b547cdb25825f10251370f57ba5d9d924e6f68e",
  4249. "shasum": "",
  4250. "mirrors": [
  4251. {
  4252. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4253. "preferred": true
  4254. }
  4255. ]
  4256. },
  4257. "require": {
  4258. "php": "^5.4 || ^7.0 || ^8.0",
  4259. "phpoption/phpoption": "^1.5.2",
  4260. "symfony/polyfill-ctype": "^1.17"
  4261. },
  4262. "require-dev": {
  4263. "ext-filter": "*",
  4264. "ext-pcre": "*",
  4265. "phpunit/phpunit": "^4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.21"
  4266. },
  4267. "suggest": {
  4268. "ext-filter": "Required to use the boolean validator.",
  4269. "ext-pcre": "Required to use most of the library."
  4270. },
  4271. "type": "library",
  4272. "extra": {
  4273. "branch-alias": {
  4274. "dev-master": "3.6-dev"
  4275. }
  4276. },
  4277. "autoload": {
  4278. "psr-4": {
  4279. "Dotenv\\": "src/"
  4280. }
  4281. },
  4282. "notification-url": "https://packagist.org/downloads/",
  4283. "license": [
  4284. "BSD-3-Clause"
  4285. ],
  4286. "authors": [
  4287. {
  4288. "name": "Graham Campbell",
  4289. "email": "hello@gjcampbell.co.uk",
  4290. "homepage": "https://github.com/GrahamCampbell"
  4291. },
  4292. {
  4293. "name": "Vance Lucas",
  4294. "email": "vance@vancelucas.com",
  4295. "homepage": "https://github.com/vlucas"
  4296. }
  4297. ],
  4298. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  4299. "keywords": [
  4300. "dotenv",
  4301. "env",
  4302. "environment"
  4303. ],
  4304. "support": {
  4305. "issues": "https://github.com/vlucas/phpdotenv/issues",
  4306. "source": "https://github.com/vlucas/phpdotenv/tree/v3.6.10"
  4307. },
  4308. "funding": [
  4309. {
  4310. "url": "https://github.com/GrahamCampbell",
  4311. "type": "github"
  4312. },
  4313. {
  4314. "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
  4315. "type": "tidelift"
  4316. }
  4317. ],
  4318. "time": "2021-12-12T23:02:06+00:00"
  4319. }
  4320. ],
  4321. "packages-dev": [
  4322. {
  4323. "name": "doctrine/instantiator",
  4324. "version": "1.5.0",
  4325. "source": {
  4326. "type": "git",
  4327. "url": "https://github.com/doctrine/instantiator.git",
  4328. "reference": "0a0fa9780f5d4e507415a065172d26a98d02047b"
  4329. },
  4330. "dist": {
  4331. "type": "zip",
  4332. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/0a0fa9780f5d4e507415a065172d26a98d02047b",
  4333. "reference": "0a0fa9780f5d4e507415a065172d26a98d02047b",
  4334. "shasum": "",
  4335. "mirrors": [
  4336. {
  4337. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4338. "preferred": true
  4339. }
  4340. ]
  4341. },
  4342. "require": {
  4343. "php": "^7.1 || ^8.0"
  4344. },
  4345. "require-dev": {
  4346. "doctrine/coding-standard": "^9 || ^11",
  4347. "ext-pdo": "*",
  4348. "ext-phar": "*",
  4349. "phpbench/phpbench": "^0.16 || ^1",
  4350. "phpstan/phpstan": "^1.4",
  4351. "phpstan/phpstan-phpunit": "^1",
  4352. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  4353. "vimeo/psalm": "^4.30 || ^5.4"
  4354. },
  4355. "type": "library",
  4356. "autoload": {
  4357. "psr-4": {
  4358. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  4359. }
  4360. },
  4361. "notification-url": "https://packagist.org/downloads/",
  4362. "license": [
  4363. "MIT"
  4364. ],
  4365. "authors": [
  4366. {
  4367. "name": "Marco Pivetta",
  4368. "email": "ocramius@gmail.com",
  4369. "homepage": "https://ocramius.github.io/"
  4370. }
  4371. ],
  4372. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  4373. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  4374. "keywords": [
  4375. "constructor",
  4376. "instantiate"
  4377. ],
  4378. "support": {
  4379. "issues": "https://github.com/doctrine/instantiator/issues",
  4380. "source": "https://github.com/doctrine/instantiator/tree/1.5.0"
  4381. },
  4382. "funding": [
  4383. {
  4384. "url": "https://www.doctrine-project.org/sponsorship.html",
  4385. "type": "custom"
  4386. },
  4387. {
  4388. "url": "https://www.patreon.com/phpdoctrine",
  4389. "type": "patreon"
  4390. },
  4391. {
  4392. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
  4393. "type": "tidelift"
  4394. }
  4395. ],
  4396. "time": "2022-12-30T00:15:36+00:00"
  4397. },
  4398. {
  4399. "name": "facade/flare-client-php",
  4400. "version": "1.10.0",
  4401. "source": {
  4402. "type": "git",
  4403. "url": "https://github.com/facade/flare-client-php.git",
  4404. "reference": "213fa2c69e120bca4c51ba3e82ed1834ef3f41b8"
  4405. },
  4406. "dist": {
  4407. "type": "zip",
  4408. "url": "https://api.github.com/repos/facade/flare-client-php/zipball/213fa2c69e120bca4c51ba3e82ed1834ef3f41b8",
  4409. "reference": "213fa2c69e120bca4c51ba3e82ed1834ef3f41b8",
  4410. "shasum": "",
  4411. "mirrors": [
  4412. {
  4413. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4414. "preferred": true
  4415. }
  4416. ]
  4417. },
  4418. "require": {
  4419. "facade/ignition-contracts": "~1.0",
  4420. "illuminate/pipeline": "^5.5|^6.0|^7.0|^8.0",
  4421. "php": "^7.1|^8.0",
  4422. "symfony/http-foundation": "^3.3|^4.1|^5.0",
  4423. "symfony/mime": "^3.4|^4.0|^5.1",
  4424. "symfony/var-dumper": "^3.4|^4.0|^5.0"
  4425. },
  4426. "require-dev": {
  4427. "friendsofphp/php-cs-fixer": "^2.14",
  4428. "phpunit/phpunit": "^7.5",
  4429. "spatie/phpunit-snapshot-assertions": "^2.0"
  4430. },
  4431. "type": "library",
  4432. "extra": {
  4433. "branch-alias": {
  4434. "dev-master": "1.0-dev"
  4435. }
  4436. },
  4437. "autoload": {
  4438. "files": [
  4439. "src/helpers.php"
  4440. ],
  4441. "psr-4": {
  4442. "Facade\\FlareClient\\": "src"
  4443. }
  4444. },
  4445. "notification-url": "https://packagist.org/downloads/",
  4446. "license": [
  4447. "MIT"
  4448. ],
  4449. "description": "Send PHP errors to Flare",
  4450. "homepage": "https://github.com/facade/flare-client-php",
  4451. "keywords": [
  4452. "exception",
  4453. "facade",
  4454. "flare",
  4455. "reporting"
  4456. ],
  4457. "support": {
  4458. "issues": "https://github.com/facade/flare-client-php/issues",
  4459. "source": "https://github.com/facade/flare-client-php/tree/1.10.0"
  4460. },
  4461. "funding": [
  4462. {
  4463. "url": "https://github.com/spatie",
  4464. "type": "github"
  4465. }
  4466. ],
  4467. "time": "2022-08-09T11:23:57+00:00"
  4468. },
  4469. {
  4470. "name": "facade/ignition",
  4471. "version": "1.18.1",
  4472. "source": {
  4473. "type": "git",
  4474. "url": "https://github.com/facade/ignition.git",
  4475. "reference": "d173a101b3dbbd7a3a7b849ab388a7a7ef6d90bf"
  4476. },
  4477. "dist": {
  4478. "type": "zip",
  4479. "url": "https://api.github.com/repos/facade/ignition/zipball/d173a101b3dbbd7a3a7b849ab388a7a7ef6d90bf",
  4480. "reference": "d173a101b3dbbd7a3a7b849ab388a7a7ef6d90bf",
  4481. "shasum": "",
  4482. "mirrors": [
  4483. {
  4484. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4485. "preferred": true
  4486. }
  4487. ]
  4488. },
  4489. "require": {
  4490. "ext-json": "*",
  4491. "ext-mbstring": "*",
  4492. "facade/flare-client-php": "^1.3",
  4493. "facade/ignition-contracts": "^1.0",
  4494. "filp/whoops": "^2.4",
  4495. "illuminate/support": "~5.5.0 || ~5.6.0 || ~5.7.0 || ~5.8.0 || ^6.0",
  4496. "monolog/monolog": "^1.12 || ^2.0",
  4497. "php": "^7.1|^8.0",
  4498. "scrivo/highlight.php": "^9.15",
  4499. "symfony/console": "^3.4 || ^4.0",
  4500. "symfony/var-dumper": "^3.4 || ^4.0"
  4501. },
  4502. "require-dev": {
  4503. "mockery/mockery": "~1.3.3|^1.4.2",
  4504. "orchestra/testbench": "^3.5 || ^3.6 || ^3.7 || ^3.8 || ^4.0"
  4505. },
  4506. "suggest": {
  4507. "laravel/telescope": "^2.0"
  4508. },
  4509. "type": "library",
  4510. "extra": {
  4511. "branch-alias": {
  4512. "dev-master": "1.x-dev"
  4513. },
  4514. "laravel": {
  4515. "providers": [
  4516. "Facade\\Ignition\\IgnitionServiceProvider"
  4517. ],
  4518. "aliases": {
  4519. "Flare": "Facade\\Ignition\\Facades\\Flare"
  4520. }
  4521. }
  4522. },
  4523. "autoload": {
  4524. "files": [
  4525. "src/helpers.php"
  4526. ],
  4527. "psr-4": {
  4528. "Facade\\Ignition\\": "src"
  4529. }
  4530. },
  4531. "notification-url": "https://packagist.org/downloads/",
  4532. "license": [
  4533. "MIT"
  4534. ],
  4535. "description": "A beautiful error page for Laravel applications.",
  4536. "homepage": "https://github.com/facade/ignition",
  4537. "keywords": [
  4538. "error",
  4539. "flare",
  4540. "laravel",
  4541. "page"
  4542. ],
  4543. "support": {
  4544. "docs": "https://flareapp.io/docs/ignition-for-laravel/introduction",
  4545. "forum": "https://twitter.com/flareappio",
  4546. "issues": "https://github.com/facade/ignition/issues",
  4547. "source": "https://github.com/facade/ignition"
  4548. },
  4549. "time": "2022-02-23T20:20:52+00:00"
  4550. },
  4551. {
  4552. "name": "facade/ignition-contracts",
  4553. "version": "1.0.1",
  4554. "source": {
  4555. "type": "git",
  4556. "url": "https://github.com/facade/ignition-contracts.git",
  4557. "reference": "aeab1ce8b68b188a43e81758e750151ad7da796b"
  4558. },
  4559. "dist": {
  4560. "type": "zip",
  4561. "url": "https://api.github.com/repos/facade/ignition-contracts/zipball/aeab1ce8b68b188a43e81758e750151ad7da796b",
  4562. "reference": "aeab1ce8b68b188a43e81758e750151ad7da796b",
  4563. "shasum": "",
  4564. "mirrors": [
  4565. {
  4566. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4567. "preferred": true
  4568. }
  4569. ]
  4570. },
  4571. "require": {
  4572. "php": "^7.1"
  4573. },
  4574. "require-dev": {
  4575. "friendsofphp/php-cs-fixer": "^2.14",
  4576. "phpunit/phpunit": "^7.5|^8.0",
  4577. "vimeo/psalm": "^3.12"
  4578. },
  4579. "type": "library",
  4580. "autoload": {
  4581. "psr-4": {
  4582. "Facade\\IgnitionContracts\\": "src"
  4583. }
  4584. },
  4585. "notification-url": "https://packagist.org/downloads/",
  4586. "license": [
  4587. "MIT"
  4588. ],
  4589. "authors": [
  4590. {
  4591. "name": "Freek Van der Herten",
  4592. "email": "freek@spatie.be",
  4593. "homepage": "https://flareapp.io",
  4594. "role": "Developer"
  4595. }
  4596. ],
  4597. "description": "Solution contracts for Ignition",
  4598. "homepage": "https://github.com/facade/ignition-contracts",
  4599. "keywords": [
  4600. "contracts",
  4601. "flare",
  4602. "ignition"
  4603. ],
  4604. "support": {
  4605. "issues": "https://github.com/facade/ignition-contracts/issues",
  4606. "source": "https://github.com/facade/ignition-contracts/tree/1.0.1"
  4607. },
  4608. "time": "2020-07-14T10:10:28+00:00"
  4609. },
  4610. {
  4611. "name": "fakerphp/faker",
  4612. "version": "v1.20.0",
  4613. "source": {
  4614. "type": "git",
  4615. "url": "https://github.com/FakerPHP/Faker.git",
  4616. "reference": "37f751c67a5372d4e26353bd9384bc03744ec77b"
  4617. },
  4618. "dist": {
  4619. "type": "zip",
  4620. "url": "https://api.github.com/repos/FakerPHP/Faker/zipball/37f751c67a5372d4e26353bd9384bc03744ec77b",
  4621. "reference": "37f751c67a5372d4e26353bd9384bc03744ec77b",
  4622. "shasum": "",
  4623. "mirrors": [
  4624. {
  4625. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4626. "preferred": true
  4627. }
  4628. ]
  4629. },
  4630. "require": {
  4631. "php": "^7.1 || ^8.0",
  4632. "psr/container": "^1.0 || ^2.0",
  4633. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  4634. },
  4635. "conflict": {
  4636. "fzaninotto/faker": "*"
  4637. },
  4638. "require-dev": {
  4639. "bamarni/composer-bin-plugin": "^1.4.1",
  4640. "doctrine/persistence": "^1.3 || ^2.0",
  4641. "ext-intl": "*",
  4642. "symfony/phpunit-bridge": "^4.4 || ^5.2"
  4643. },
  4644. "suggest": {
  4645. "doctrine/orm": "Required to use Faker\\ORM\\Doctrine",
  4646. "ext-curl": "Required by Faker\\Provider\\Image to download images.",
  4647. "ext-dom": "Required by Faker\\Provider\\HtmlLorem for generating random HTML.",
  4648. "ext-iconv": "Required by Faker\\Provider\\ru_RU\\Text::realText() for generating real Russian text.",
  4649. "ext-mbstring": "Required for multibyte Unicode string functionality."
  4650. },
  4651. "type": "library",
  4652. "extra": {
  4653. "branch-alias": {
  4654. "dev-main": "v1.20-dev"
  4655. }
  4656. },
  4657. "autoload": {
  4658. "psr-4": {
  4659. "Faker\\": "src/Faker/"
  4660. }
  4661. },
  4662. "notification-url": "https://packagist.org/downloads/",
  4663. "license": [
  4664. "MIT"
  4665. ],
  4666. "authors": [
  4667. {
  4668. "name": "François Zaninotto"
  4669. }
  4670. ],
  4671. "description": "Faker is a PHP library that generates fake data for you.",
  4672. "keywords": [
  4673. "data",
  4674. "faker",
  4675. "fixtures"
  4676. ],
  4677. "support": {
  4678. "issues": "https://github.com/FakerPHP/Faker/issues",
  4679. "source": "https://github.com/FakerPHP/Faker/tree/v1.20.0"
  4680. },
  4681. "time": "2022-07-20T13:12:54+00:00"
  4682. },
  4683. {
  4684. "name": "filp/whoops",
  4685. "version": "2.14.5",
  4686. "source": {
  4687. "type": "git",
  4688. "url": "https://github.com/filp/whoops.git",
  4689. "reference": "a63e5e8f26ebbebf8ed3c5c691637325512eb0dc"
  4690. },
  4691. "dist": {
  4692. "type": "zip",
  4693. "url": "https://api.github.com/repos/filp/whoops/zipball/a63e5e8f26ebbebf8ed3c5c691637325512eb0dc",
  4694. "reference": "a63e5e8f26ebbebf8ed3c5c691637325512eb0dc",
  4695. "shasum": "",
  4696. "mirrors": [
  4697. {
  4698. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4699. "preferred": true
  4700. }
  4701. ]
  4702. },
  4703. "require": {
  4704. "php": "^5.5.9 || ^7.0 || ^8.0",
  4705. "psr/log": "^1.0.1 || ^2.0 || ^3.0"
  4706. },
  4707. "require-dev": {
  4708. "mockery/mockery": "^0.9 || ^1.0",
  4709. "phpunit/phpunit": "^4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.3",
  4710. "symfony/var-dumper": "^2.6 || ^3.0 || ^4.0 || ^5.0"
  4711. },
  4712. "suggest": {
  4713. "symfony/var-dumper": "Pretty print complex values better with var-dumper available",
  4714. "whoops/soap": "Formats errors as SOAP responses"
  4715. },
  4716. "type": "library",
  4717. "extra": {
  4718. "branch-alias": {
  4719. "dev-master": "2.7-dev"
  4720. }
  4721. },
  4722. "autoload": {
  4723. "psr-4": {
  4724. "Whoops\\": "src/Whoops/"
  4725. }
  4726. },
  4727. "notification-url": "https://packagist.org/downloads/",
  4728. "license": [
  4729. "MIT"
  4730. ],
  4731. "authors": [
  4732. {
  4733. "name": "Filipe Dobreira",
  4734. "homepage": "https://github.com/filp",
  4735. "role": "Developer"
  4736. }
  4737. ],
  4738. "description": "php error handling for cool kids",
  4739. "homepage": "https://filp.github.io/whoops/",
  4740. "keywords": [
  4741. "error",
  4742. "exception",
  4743. "handling",
  4744. "library",
  4745. "throwable",
  4746. "whoops"
  4747. ],
  4748. "support": {
  4749. "issues": "https://github.com/filp/whoops/issues",
  4750. "source": "https://github.com/filp/whoops/tree/2.14.5"
  4751. },
  4752. "funding": [
  4753. {
  4754. "url": "https://github.com/denis-sokolov",
  4755. "type": "github"
  4756. }
  4757. ],
  4758. "time": "2022-01-07T12:00:00+00:00"
  4759. },
  4760. {
  4761. "name": "hamcrest/hamcrest-php",
  4762. "version": "v2.0.1",
  4763. "source": {
  4764. "type": "git",
  4765. "url": "https://github.com/hamcrest/hamcrest-php.git",
  4766. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3"
  4767. },
  4768. "dist": {
  4769. "type": "zip",
  4770. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  4771. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  4772. "shasum": "",
  4773. "mirrors": [
  4774. {
  4775. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4776. "preferred": true
  4777. }
  4778. ]
  4779. },
  4780. "require": {
  4781. "php": "^5.3|^7.0|^8.0"
  4782. },
  4783. "replace": {
  4784. "cordoval/hamcrest-php": "*",
  4785. "davedevelopment/hamcrest-php": "*",
  4786. "kodova/hamcrest-php": "*"
  4787. },
  4788. "require-dev": {
  4789. "phpunit/php-file-iterator": "^1.4 || ^2.0",
  4790. "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0"
  4791. },
  4792. "type": "library",
  4793. "extra": {
  4794. "branch-alias": {
  4795. "dev-master": "2.1-dev"
  4796. }
  4797. },
  4798. "autoload": {
  4799. "classmap": [
  4800. "hamcrest"
  4801. ]
  4802. },
  4803. "notification-url": "https://packagist.org/downloads/",
  4804. "license": [
  4805. "BSD-3-Clause"
  4806. ],
  4807. "description": "This is the PHP port of Hamcrest Matchers",
  4808. "keywords": [
  4809. "test"
  4810. ],
  4811. "support": {
  4812. "issues": "https://github.com/hamcrest/hamcrest-php/issues",
  4813. "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.0.1"
  4814. },
  4815. "time": "2020-07-09T08:09:16+00:00"
  4816. },
  4817. {
  4818. "name": "mockery/mockery",
  4819. "version": "1.3.6",
  4820. "source": {
  4821. "type": "git",
  4822. "url": "https://github.com/mockery/mockery.git",
  4823. "reference": "dc206df4fa314a50bbb81cf72239a305c5bbd5c0"
  4824. },
  4825. "dist": {
  4826. "type": "zip",
  4827. "url": "https://api.github.com/repos/mockery/mockery/zipball/dc206df4fa314a50bbb81cf72239a305c5bbd5c0",
  4828. "reference": "dc206df4fa314a50bbb81cf72239a305c5bbd5c0",
  4829. "shasum": "",
  4830. "mirrors": [
  4831. {
  4832. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4833. "preferred": true
  4834. }
  4835. ]
  4836. },
  4837. "require": {
  4838. "hamcrest/hamcrest-php": "^2.0.1",
  4839. "lib-pcre": ">=7.0",
  4840. "php": ">=5.6.0"
  4841. },
  4842. "require-dev": {
  4843. "phpunit/phpunit": "^5.7.10|^6.5|^7.5|^8.5|^9.3"
  4844. },
  4845. "type": "library",
  4846. "extra": {
  4847. "branch-alias": {
  4848. "dev-master": "1.3.x-dev"
  4849. }
  4850. },
  4851. "autoload": {
  4852. "psr-0": {
  4853. "Mockery": "library/"
  4854. }
  4855. },
  4856. "notification-url": "https://packagist.org/downloads/",
  4857. "license": [
  4858. "BSD-3-Clause"
  4859. ],
  4860. "authors": [
  4861. {
  4862. "name": "Pádraic Brady",
  4863. "email": "padraic.brady@gmail.com",
  4864. "homepage": "http://blog.astrumfutura.com"
  4865. },
  4866. {
  4867. "name": "Dave Marshall",
  4868. "email": "dave.marshall@atstsolutions.co.uk",
  4869. "homepage": "http://davedevelopment.co.uk"
  4870. }
  4871. ],
  4872. "description": "Mockery is a simple yet flexible PHP mock object framework",
  4873. "homepage": "https://github.com/mockery/mockery",
  4874. "keywords": [
  4875. "BDD",
  4876. "TDD",
  4877. "library",
  4878. "mock",
  4879. "mock objects",
  4880. "mockery",
  4881. "stub",
  4882. "test",
  4883. "test double",
  4884. "testing"
  4885. ],
  4886. "support": {
  4887. "issues": "https://github.com/mockery/mockery/issues",
  4888. "source": "https://github.com/mockery/mockery/tree/1.3.6"
  4889. },
  4890. "time": "2022-09-07T15:05:49+00:00"
  4891. },
  4892. {
  4893. "name": "myclabs/deep-copy",
  4894. "version": "1.11.0",
  4895. "source": {
  4896. "type": "git",
  4897. "url": "https://github.com/myclabs/DeepCopy.git",
  4898. "reference": "14daed4296fae74d9e3201d2c4925d1acb7aa614"
  4899. },
  4900. "dist": {
  4901. "type": "zip",
  4902. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/14daed4296fae74d9e3201d2c4925d1acb7aa614",
  4903. "reference": "14daed4296fae74d9e3201d2c4925d1acb7aa614",
  4904. "shasum": "",
  4905. "mirrors": [
  4906. {
  4907. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4908. "preferred": true
  4909. }
  4910. ]
  4911. },
  4912. "require": {
  4913. "php": "^7.1 || ^8.0"
  4914. },
  4915. "conflict": {
  4916. "doctrine/collections": "<1.6.8",
  4917. "doctrine/common": "<2.13.3 || >=3,<3.2.2"
  4918. },
  4919. "require-dev": {
  4920. "doctrine/collections": "^1.6.8",
  4921. "doctrine/common": "^2.13.3 || ^3.2.2",
  4922. "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
  4923. },
  4924. "type": "library",
  4925. "autoload": {
  4926. "files": [
  4927. "src/DeepCopy/deep_copy.php"
  4928. ],
  4929. "psr-4": {
  4930. "DeepCopy\\": "src/DeepCopy/"
  4931. }
  4932. },
  4933. "notification-url": "https://packagist.org/downloads/",
  4934. "license": [
  4935. "MIT"
  4936. ],
  4937. "description": "Create deep copies (clones) of your objects",
  4938. "keywords": [
  4939. "clone",
  4940. "copy",
  4941. "duplicate",
  4942. "object",
  4943. "object graph"
  4944. ],
  4945. "support": {
  4946. "issues": "https://github.com/myclabs/DeepCopy/issues",
  4947. "source": "https://github.com/myclabs/DeepCopy/tree/1.11.0"
  4948. },
  4949. "funding": [
  4950. {
  4951. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  4952. "type": "tidelift"
  4953. }
  4954. ],
  4955. "time": "2022-03-03T13:19:32+00:00"
  4956. },
  4957. {
  4958. "name": "nunomaduro/collision",
  4959. "version": "v3.2.0",
  4960. "source": {
  4961. "type": "git",
  4962. "url": "https://github.com/nunomaduro/collision.git",
  4963. "reference": "f7c45764dfe4ba5f2618d265a6f1f9c72732e01d"
  4964. },
  4965. "dist": {
  4966. "type": "zip",
  4967. "url": "https://api.github.com/repos/nunomaduro/collision/zipball/f7c45764dfe4ba5f2618d265a6f1f9c72732e01d",
  4968. "reference": "f7c45764dfe4ba5f2618d265a6f1f9c72732e01d",
  4969. "shasum": "",
  4970. "mirrors": [
  4971. {
  4972. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4973. "preferred": true
  4974. }
  4975. ]
  4976. },
  4977. "require": {
  4978. "filp/whoops": "^2.1.4",
  4979. "php": "^7.2.5 || ^8.0",
  4980. "php-parallel-lint/php-console-highlighter": "0.5.*",
  4981. "symfony/console": "~2.8|~3.3|~4.0"
  4982. },
  4983. "require-dev": {
  4984. "laravel/framework": "^6.0",
  4985. "phpunit/phpunit": "^8.0 || ^9.0"
  4986. },
  4987. "type": "library",
  4988. "extra": {
  4989. "laravel": {
  4990. "providers": [
  4991. "NunoMaduro\\Collision\\Adapters\\Laravel\\CollisionServiceProvider"
  4992. ]
  4993. }
  4994. },
  4995. "autoload": {
  4996. "psr-4": {
  4997. "NunoMaduro\\Collision\\": "src/"
  4998. }
  4999. },
  5000. "notification-url": "https://packagist.org/downloads/",
  5001. "license": [
  5002. "MIT"
  5003. ],
  5004. "authors": [
  5005. {
  5006. "name": "Nuno Maduro",
  5007. "email": "enunomaduro@gmail.com"
  5008. }
  5009. ],
  5010. "description": "Cli error handling for console/command-line PHP applications.",
  5011. "keywords": [
  5012. "artisan",
  5013. "cli",
  5014. "command-line",
  5015. "console",
  5016. "error",
  5017. "handling",
  5018. "laravel",
  5019. "laravel-zero",
  5020. "php",
  5021. "symfony"
  5022. ],
  5023. "support": {
  5024. "issues": "https://github.com/nunomaduro/collision/issues",
  5025. "source": "https://github.com/nunomaduro/collision"
  5026. },
  5027. "funding": [
  5028. {
  5029. "url": "https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=66BYDWAT92N6L",
  5030. "type": "custom"
  5031. },
  5032. {
  5033. "url": "https://github.com/nunomaduro",
  5034. "type": "github"
  5035. },
  5036. {
  5037. "url": "https://www.patreon.com/nunomaduro",
  5038. "type": "patreon"
  5039. }
  5040. ],
  5041. "time": "2021-02-11T09:01:42+00:00"
  5042. },
  5043. {
  5044. "name": "phar-io/manifest",
  5045. "version": "2.0.3",
  5046. "source": {
  5047. "type": "git",
  5048. "url": "https://github.com/phar-io/manifest.git",
  5049. "reference": "97803eca37d319dfa7826cc2437fc020857acb53"
  5050. },
  5051. "dist": {
  5052. "type": "zip",
  5053. "url": "https://api.github.com/repos/phar-io/manifest/zipball/97803eca37d319dfa7826cc2437fc020857acb53",
  5054. "reference": "97803eca37d319dfa7826cc2437fc020857acb53",
  5055. "shasum": "",
  5056. "mirrors": [
  5057. {
  5058. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5059. "preferred": true
  5060. }
  5061. ]
  5062. },
  5063. "require": {
  5064. "ext-dom": "*",
  5065. "ext-phar": "*",
  5066. "ext-xmlwriter": "*",
  5067. "phar-io/version": "^3.0.1",
  5068. "php": "^7.2 || ^8.0"
  5069. },
  5070. "type": "library",
  5071. "extra": {
  5072. "branch-alias": {
  5073. "dev-master": "2.0.x-dev"
  5074. }
  5075. },
  5076. "autoload": {
  5077. "classmap": [
  5078. "src/"
  5079. ]
  5080. },
  5081. "notification-url": "https://packagist.org/downloads/",
  5082. "license": [
  5083. "BSD-3-Clause"
  5084. ],
  5085. "authors": [
  5086. {
  5087. "name": "Arne Blankerts",
  5088. "email": "arne@blankerts.de",
  5089. "role": "Developer"
  5090. },
  5091. {
  5092. "name": "Sebastian Heuer",
  5093. "email": "sebastian@phpeople.de",
  5094. "role": "Developer"
  5095. },
  5096. {
  5097. "name": "Sebastian Bergmann",
  5098. "email": "sebastian@phpunit.de",
  5099. "role": "Developer"
  5100. }
  5101. ],
  5102. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  5103. "support": {
  5104. "issues": "https://github.com/phar-io/manifest/issues",
  5105. "source": "https://github.com/phar-io/manifest/tree/2.0.3"
  5106. },
  5107. "time": "2021-07-20T11:28:43+00:00"
  5108. },
  5109. {
  5110. "name": "phar-io/version",
  5111. "version": "3.2.1",
  5112. "source": {
  5113. "type": "git",
  5114. "url": "https://github.com/phar-io/version.git",
  5115. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
  5116. },
  5117. "dist": {
  5118. "type": "zip",
  5119. "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  5120. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  5121. "shasum": "",
  5122. "mirrors": [
  5123. {
  5124. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5125. "preferred": true
  5126. }
  5127. ]
  5128. },
  5129. "require": {
  5130. "php": "^7.2 || ^8.0"
  5131. },
  5132. "type": "library",
  5133. "autoload": {
  5134. "classmap": [
  5135. "src/"
  5136. ]
  5137. },
  5138. "notification-url": "https://packagist.org/downloads/",
  5139. "license": [
  5140. "BSD-3-Clause"
  5141. ],
  5142. "authors": [
  5143. {
  5144. "name": "Arne Blankerts",
  5145. "email": "arne@blankerts.de",
  5146. "role": "Developer"
  5147. },
  5148. {
  5149. "name": "Sebastian Heuer",
  5150. "email": "sebastian@phpeople.de",
  5151. "role": "Developer"
  5152. },
  5153. {
  5154. "name": "Sebastian Bergmann",
  5155. "email": "sebastian@phpunit.de",
  5156. "role": "Developer"
  5157. }
  5158. ],
  5159. "description": "Library for handling version information and constraints",
  5160. "support": {
  5161. "issues": "https://github.com/phar-io/version/issues",
  5162. "source": "https://github.com/phar-io/version/tree/3.2.1"
  5163. },
  5164. "time": "2022-02-21T01:04:05+00:00"
  5165. },
  5166. {
  5167. "name": "php-parallel-lint/php-console-color",
  5168. "version": "v0.3",
  5169. "source": {
  5170. "type": "git",
  5171. "url": "https://github.com/php-parallel-lint/PHP-Console-Color.git",
  5172. "reference": "b6af326b2088f1ad3b264696c9fd590ec395b49e"
  5173. },
  5174. "dist": {
  5175. "type": "zip",
  5176. "url": "https://api.github.com/repos/php-parallel-lint/PHP-Console-Color/zipball/b6af326b2088f1ad3b264696c9fd590ec395b49e",
  5177. "reference": "b6af326b2088f1ad3b264696c9fd590ec395b49e",
  5178. "shasum": "",
  5179. "mirrors": [
  5180. {
  5181. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5182. "preferred": true
  5183. }
  5184. ]
  5185. },
  5186. "require": {
  5187. "php": ">=5.4.0"
  5188. },
  5189. "replace": {
  5190. "jakub-onderka/php-console-color": "*"
  5191. },
  5192. "require-dev": {
  5193. "php-parallel-lint/php-code-style": "1.0",
  5194. "php-parallel-lint/php-parallel-lint": "1.0",
  5195. "php-parallel-lint/php-var-dump-check": "0.*",
  5196. "phpunit/phpunit": "~4.3",
  5197. "squizlabs/php_codesniffer": "1.*"
  5198. },
  5199. "type": "library",
  5200. "autoload": {
  5201. "psr-4": {
  5202. "JakubOnderka\\PhpConsoleColor\\": "src/"
  5203. }
  5204. },
  5205. "notification-url": "https://packagist.org/downloads/",
  5206. "license": [
  5207. "BSD-2-Clause"
  5208. ],
  5209. "authors": [
  5210. {
  5211. "name": "Jakub Onderka",
  5212. "email": "jakub.onderka@gmail.com"
  5213. }
  5214. ],
  5215. "support": {
  5216. "issues": "https://github.com/php-parallel-lint/PHP-Console-Color/issues",
  5217. "source": "https://github.com/php-parallel-lint/PHP-Console-Color/tree/master"
  5218. },
  5219. "time": "2020-05-14T05:47:14+00:00"
  5220. },
  5221. {
  5222. "name": "php-parallel-lint/php-console-highlighter",
  5223. "version": "v0.5",
  5224. "source": {
  5225. "type": "git",
  5226. "url": "https://github.com/php-parallel-lint/PHP-Console-Highlighter.git",
  5227. "reference": "21bf002f077b177f056d8cb455c5ed573adfdbb8"
  5228. },
  5229. "dist": {
  5230. "type": "zip",
  5231. "url": "https://api.github.com/repos/php-parallel-lint/PHP-Console-Highlighter/zipball/21bf002f077b177f056d8cb455c5ed573adfdbb8",
  5232. "reference": "21bf002f077b177f056d8cb455c5ed573adfdbb8",
  5233. "shasum": "",
  5234. "mirrors": [
  5235. {
  5236. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5237. "preferred": true
  5238. }
  5239. ]
  5240. },
  5241. "require": {
  5242. "ext-tokenizer": "*",
  5243. "php": ">=5.4.0",
  5244. "php-parallel-lint/php-console-color": "~0.2"
  5245. },
  5246. "replace": {
  5247. "jakub-onderka/php-console-highlighter": "*"
  5248. },
  5249. "require-dev": {
  5250. "php-parallel-lint/php-code-style": "~1.0",
  5251. "php-parallel-lint/php-parallel-lint": "~1.0",
  5252. "php-parallel-lint/php-var-dump-check": "~0.1",
  5253. "phpunit/phpunit": "~4.0",
  5254. "squizlabs/php_codesniffer": "~1.5"
  5255. },
  5256. "type": "library",
  5257. "autoload": {
  5258. "psr-4": {
  5259. "JakubOnderka\\PhpConsoleHighlighter\\": "src/"
  5260. }
  5261. },
  5262. "notification-url": "https://packagist.org/downloads/",
  5263. "license": [
  5264. "MIT"
  5265. ],
  5266. "authors": [
  5267. {
  5268. "name": "Jakub Onderka",
  5269. "email": "acci@acci.cz",
  5270. "homepage": "http://www.acci.cz/"
  5271. }
  5272. ],
  5273. "description": "Highlight PHP code in terminal",
  5274. "support": {
  5275. "issues": "https://github.com/php-parallel-lint/PHP-Console-Highlighter/issues",
  5276. "source": "https://github.com/php-parallel-lint/PHP-Console-Highlighter/tree/master"
  5277. },
  5278. "time": "2020-05-13T07:37:49+00:00"
  5279. },
  5280. {
  5281. "name": "phpunit/php-code-coverage",
  5282. "version": "7.0.15",
  5283. "source": {
  5284. "type": "git",
  5285. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  5286. "reference": "819f92bba8b001d4363065928088de22f25a3a48"
  5287. },
  5288. "dist": {
  5289. "type": "zip",
  5290. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/819f92bba8b001d4363065928088de22f25a3a48",
  5291. "reference": "819f92bba8b001d4363065928088de22f25a3a48",
  5292. "shasum": "",
  5293. "mirrors": [
  5294. {
  5295. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5296. "preferred": true
  5297. }
  5298. ]
  5299. },
  5300. "require": {
  5301. "ext-dom": "*",
  5302. "ext-xmlwriter": "*",
  5303. "php": ">=7.2",
  5304. "phpunit/php-file-iterator": "^2.0.2",
  5305. "phpunit/php-text-template": "^1.2.1",
  5306. "phpunit/php-token-stream": "^3.1.3 || ^4.0",
  5307. "sebastian/code-unit-reverse-lookup": "^1.0.1",
  5308. "sebastian/environment": "^4.2.2",
  5309. "sebastian/version": "^2.0.1",
  5310. "theseer/tokenizer": "^1.1.3"
  5311. },
  5312. "require-dev": {
  5313. "phpunit/phpunit": "^8.2.2"
  5314. },
  5315. "suggest": {
  5316. "ext-xdebug": "^2.7.2"
  5317. },
  5318. "type": "library",
  5319. "extra": {
  5320. "branch-alias": {
  5321. "dev-master": "7.0-dev"
  5322. }
  5323. },
  5324. "autoload": {
  5325. "classmap": [
  5326. "src/"
  5327. ]
  5328. },
  5329. "notification-url": "https://packagist.org/downloads/",
  5330. "license": [
  5331. "BSD-3-Clause"
  5332. ],
  5333. "authors": [
  5334. {
  5335. "name": "Sebastian Bergmann",
  5336. "email": "sebastian@phpunit.de",
  5337. "role": "lead"
  5338. }
  5339. ],
  5340. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  5341. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  5342. "keywords": [
  5343. "coverage",
  5344. "testing",
  5345. "xunit"
  5346. ],
  5347. "support": {
  5348. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  5349. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/7.0.15"
  5350. },
  5351. "funding": [
  5352. {
  5353. "url": "https://github.com/sebastianbergmann",
  5354. "type": "github"
  5355. }
  5356. ],
  5357. "time": "2021-07-26T12:20:09+00:00"
  5358. },
  5359. {
  5360. "name": "phpunit/php-file-iterator",
  5361. "version": "2.0.5",
  5362. "source": {
  5363. "type": "git",
  5364. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  5365. "reference": "42c5ba5220e6904cbfe8b1a1bda7c0cfdc8c12f5"
  5366. },
  5367. "dist": {
  5368. "type": "zip",
  5369. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/42c5ba5220e6904cbfe8b1a1bda7c0cfdc8c12f5",
  5370. "reference": "42c5ba5220e6904cbfe8b1a1bda7c0cfdc8c12f5",
  5371. "shasum": "",
  5372. "mirrors": [
  5373. {
  5374. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5375. "preferred": true
  5376. }
  5377. ]
  5378. },
  5379. "require": {
  5380. "php": ">=7.1"
  5381. },
  5382. "require-dev": {
  5383. "phpunit/phpunit": "^8.5"
  5384. },
  5385. "type": "library",
  5386. "extra": {
  5387. "branch-alias": {
  5388. "dev-master": "2.0.x-dev"
  5389. }
  5390. },
  5391. "autoload": {
  5392. "classmap": [
  5393. "src/"
  5394. ]
  5395. },
  5396. "notification-url": "https://packagist.org/downloads/",
  5397. "license": [
  5398. "BSD-3-Clause"
  5399. ],
  5400. "authors": [
  5401. {
  5402. "name": "Sebastian Bergmann",
  5403. "email": "sebastian@phpunit.de",
  5404. "role": "lead"
  5405. }
  5406. ],
  5407. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  5408. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  5409. "keywords": [
  5410. "filesystem",
  5411. "iterator"
  5412. ],
  5413. "support": {
  5414. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  5415. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/2.0.5"
  5416. },
  5417. "funding": [
  5418. {
  5419. "url": "https://github.com/sebastianbergmann",
  5420. "type": "github"
  5421. }
  5422. ],
  5423. "time": "2021-12-02T12:42:26+00:00"
  5424. },
  5425. {
  5426. "name": "phpunit/php-text-template",
  5427. "version": "1.2.1",
  5428. "source": {
  5429. "type": "git",
  5430. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  5431. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686"
  5432. },
  5433. "dist": {
  5434. "type": "zip",
  5435. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  5436. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  5437. "shasum": "",
  5438. "mirrors": [
  5439. {
  5440. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5441. "preferred": true
  5442. }
  5443. ]
  5444. },
  5445. "require": {
  5446. "php": ">=5.3.3"
  5447. },
  5448. "type": "library",
  5449. "autoload": {
  5450. "classmap": [
  5451. "src/"
  5452. ]
  5453. },
  5454. "notification-url": "https://packagist.org/downloads/",
  5455. "license": [
  5456. "BSD-3-Clause"
  5457. ],
  5458. "authors": [
  5459. {
  5460. "name": "Sebastian Bergmann",
  5461. "email": "sebastian@phpunit.de",
  5462. "role": "lead"
  5463. }
  5464. ],
  5465. "description": "Simple template engine.",
  5466. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  5467. "keywords": [
  5468. "template"
  5469. ],
  5470. "support": {
  5471. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  5472. "source": "https://github.com/sebastianbergmann/php-text-template/tree/1.2.1"
  5473. },
  5474. "time": "2015-06-21T13:50:34+00:00"
  5475. },
  5476. {
  5477. "name": "phpunit/php-timer",
  5478. "version": "2.1.3",
  5479. "source": {
  5480. "type": "git",
  5481. "url": "https://github.com/sebastianbergmann/php-timer.git",
  5482. "reference": "2454ae1765516d20c4ffe103d85a58a9a3bd5662"
  5483. },
  5484. "dist": {
  5485. "type": "zip",
  5486. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/2454ae1765516d20c4ffe103d85a58a9a3bd5662",
  5487. "reference": "2454ae1765516d20c4ffe103d85a58a9a3bd5662",
  5488. "shasum": "",
  5489. "mirrors": [
  5490. {
  5491. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5492. "preferred": true
  5493. }
  5494. ]
  5495. },
  5496. "require": {
  5497. "php": ">=7.1"
  5498. },
  5499. "require-dev": {
  5500. "phpunit/phpunit": "^8.5"
  5501. },
  5502. "type": "library",
  5503. "extra": {
  5504. "branch-alias": {
  5505. "dev-master": "2.1-dev"
  5506. }
  5507. },
  5508. "autoload": {
  5509. "classmap": [
  5510. "src/"
  5511. ]
  5512. },
  5513. "notification-url": "https://packagist.org/downloads/",
  5514. "license": [
  5515. "BSD-3-Clause"
  5516. ],
  5517. "authors": [
  5518. {
  5519. "name": "Sebastian Bergmann",
  5520. "email": "sebastian@phpunit.de",
  5521. "role": "lead"
  5522. }
  5523. ],
  5524. "description": "Utility class for timing",
  5525. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  5526. "keywords": [
  5527. "timer"
  5528. ],
  5529. "support": {
  5530. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  5531. "source": "https://github.com/sebastianbergmann/php-timer/tree/2.1.3"
  5532. },
  5533. "funding": [
  5534. {
  5535. "url": "https://github.com/sebastianbergmann",
  5536. "type": "github"
  5537. }
  5538. ],
  5539. "time": "2020-11-30T08:20:02+00:00"
  5540. },
  5541. {
  5542. "name": "phpunit/php-token-stream",
  5543. "version": "3.1.3",
  5544. "source": {
  5545. "type": "git",
  5546. "url": "https://github.com/sebastianbergmann/php-token-stream.git",
  5547. "reference": "9c1da83261628cb24b6a6df371b6e312b3954768"
  5548. },
  5549. "dist": {
  5550. "type": "zip",
  5551. "url": "https://api.github.com/repos/sebastianbergmann/php-token-stream/zipball/9c1da83261628cb24b6a6df371b6e312b3954768",
  5552. "reference": "9c1da83261628cb24b6a6df371b6e312b3954768",
  5553. "shasum": "",
  5554. "mirrors": [
  5555. {
  5556. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5557. "preferred": true
  5558. }
  5559. ]
  5560. },
  5561. "require": {
  5562. "ext-tokenizer": "*",
  5563. "php": ">=7.1"
  5564. },
  5565. "require-dev": {
  5566. "phpunit/phpunit": "^7.0"
  5567. },
  5568. "type": "library",
  5569. "extra": {
  5570. "branch-alias": {
  5571. "dev-master": "3.1-dev"
  5572. }
  5573. },
  5574. "autoload": {
  5575. "classmap": [
  5576. "src/"
  5577. ]
  5578. },
  5579. "notification-url": "https://packagist.org/downloads/",
  5580. "license": [
  5581. "BSD-3-Clause"
  5582. ],
  5583. "authors": [
  5584. {
  5585. "name": "Sebastian Bergmann",
  5586. "email": "sebastian@phpunit.de"
  5587. }
  5588. ],
  5589. "description": "Wrapper around PHP's tokenizer extension.",
  5590. "homepage": "https://github.com/sebastianbergmann/php-token-stream/",
  5591. "keywords": [
  5592. "tokenizer"
  5593. ],
  5594. "support": {
  5595. "issues": "https://github.com/sebastianbergmann/php-token-stream/issues",
  5596. "source": "https://github.com/sebastianbergmann/php-token-stream/tree/3.1.3"
  5597. },
  5598. "funding": [
  5599. {
  5600. "url": "https://github.com/sebastianbergmann",
  5601. "type": "github"
  5602. }
  5603. ],
  5604. "abandoned": true,
  5605. "time": "2021-07-26T12:15:06+00:00"
  5606. },
  5607. {
  5608. "name": "phpunit/phpunit",
  5609. "version": "8.5.32",
  5610. "source": {
  5611. "type": "git",
  5612. "url": "https://github.com/sebastianbergmann/phpunit.git",
  5613. "reference": "375686930d05c9fd7d20f6e5fc38121e8d7a9d55"
  5614. },
  5615. "dist": {
  5616. "type": "zip",
  5617. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/375686930d05c9fd7d20f6e5fc38121e8d7a9d55",
  5618. "reference": "375686930d05c9fd7d20f6e5fc38121e8d7a9d55",
  5619. "shasum": "",
  5620. "mirrors": [
  5621. {
  5622. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5623. "preferred": true
  5624. }
  5625. ]
  5626. },
  5627. "require": {
  5628. "doctrine/instantiator": "^1.3.1",
  5629. "ext-dom": "*",
  5630. "ext-json": "*",
  5631. "ext-libxml": "*",
  5632. "ext-mbstring": "*",
  5633. "ext-xml": "*",
  5634. "ext-xmlwriter": "*",
  5635. "myclabs/deep-copy": "^1.10.0",
  5636. "phar-io/manifest": "^2.0.3",
  5637. "phar-io/version": "^3.0.2",
  5638. "php": ">=7.2",
  5639. "phpunit/php-code-coverage": "^7.0.12",
  5640. "phpunit/php-file-iterator": "^2.0.4",
  5641. "phpunit/php-text-template": "^1.2.1",
  5642. "phpunit/php-timer": "^2.1.2",
  5643. "sebastian/comparator": "^3.0.5",
  5644. "sebastian/diff": "^3.0.2",
  5645. "sebastian/environment": "^4.2.3",
  5646. "sebastian/exporter": "^3.1.5",
  5647. "sebastian/global-state": "^3.0.0",
  5648. "sebastian/object-enumerator": "^3.0.3",
  5649. "sebastian/resource-operations": "^2.0.1",
  5650. "sebastian/type": "^1.1.3",
  5651. "sebastian/version": "^2.0.1"
  5652. },
  5653. "suggest": {
  5654. "ext-soap": "*",
  5655. "ext-xdebug": "*",
  5656. "phpunit/php-invoker": "^2.0.0"
  5657. },
  5658. "bin": [
  5659. "phpunit"
  5660. ],
  5661. "type": "library",
  5662. "extra": {
  5663. "branch-alias": {
  5664. "dev-master": "8.5-dev"
  5665. }
  5666. },
  5667. "autoload": {
  5668. "classmap": [
  5669. "src/"
  5670. ]
  5671. },
  5672. "notification-url": "https://packagist.org/downloads/",
  5673. "license": [
  5674. "BSD-3-Clause"
  5675. ],
  5676. "authors": [
  5677. {
  5678. "name": "Sebastian Bergmann",
  5679. "email": "sebastian@phpunit.de",
  5680. "role": "lead"
  5681. }
  5682. ],
  5683. "description": "The PHP Unit Testing framework.",
  5684. "homepage": "https://phpunit.de/",
  5685. "keywords": [
  5686. "phpunit",
  5687. "testing",
  5688. "xunit"
  5689. ],
  5690. "support": {
  5691. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  5692. "source": "https://github.com/sebastianbergmann/phpunit/tree/8.5.32"
  5693. },
  5694. "funding": [
  5695. {
  5696. "url": "https://phpunit.de/sponsors.html",
  5697. "type": "custom"
  5698. },
  5699. {
  5700. "url": "https://github.com/sebastianbergmann",
  5701. "type": "github"
  5702. },
  5703. {
  5704. "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit",
  5705. "type": "tidelift"
  5706. }
  5707. ],
  5708. "time": "2023-01-26T08:30:25+00:00"
  5709. },
  5710. {
  5711. "name": "scrivo/highlight.php",
  5712. "version": "v9.18.1.10",
  5713. "source": {
  5714. "type": "git",
  5715. "url": "https://github.com/scrivo/highlight.php.git",
  5716. "reference": "850f4b44697a2552e892ffe71490ba2733c2fc6e"
  5717. },
  5718. "dist": {
  5719. "type": "zip",
  5720. "url": "https://api.github.com/repos/scrivo/highlight.php/zipball/850f4b44697a2552e892ffe71490ba2733c2fc6e",
  5721. "reference": "850f4b44697a2552e892ffe71490ba2733c2fc6e",
  5722. "shasum": "",
  5723. "mirrors": [
  5724. {
  5725. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5726. "preferred": true
  5727. }
  5728. ]
  5729. },
  5730. "require": {
  5731. "ext-json": "*",
  5732. "php": ">=5.4"
  5733. },
  5734. "require-dev": {
  5735. "phpunit/phpunit": "^4.8|^5.7",
  5736. "sabberworm/php-css-parser": "^8.3",
  5737. "symfony/finder": "^2.8|^3.4|^5.4",
  5738. "symfony/var-dumper": "^2.8|^3.4|^5.4"
  5739. },
  5740. "suggest": {
  5741. "ext-mbstring": "Allows highlighting code with unicode characters and supports language with unicode keywords"
  5742. },
  5743. "type": "library",
  5744. "autoload": {
  5745. "files": [
  5746. "HighlightUtilities/functions.php"
  5747. ],
  5748. "psr-0": {
  5749. "Highlight\\": "",
  5750. "HighlightUtilities\\": ""
  5751. }
  5752. },
  5753. "notification-url": "https://packagist.org/downloads/",
  5754. "license": [
  5755. "BSD-3-Clause"
  5756. ],
  5757. "authors": [
  5758. {
  5759. "name": "Geert Bergman",
  5760. "homepage": "http://www.scrivo.org/",
  5761. "role": "Project Author"
  5762. },
  5763. {
  5764. "name": "Vladimir Jimenez",
  5765. "homepage": "https://allejo.io",
  5766. "role": "Maintainer"
  5767. },
  5768. {
  5769. "name": "Martin Folkers",
  5770. "homepage": "https://twobrain.io",
  5771. "role": "Contributor"
  5772. }
  5773. ],
  5774. "description": "Server side syntax highlighter that supports 185 languages. It's a PHP port of highlight.js",
  5775. "keywords": [
  5776. "code",
  5777. "highlight",
  5778. "highlight.js",
  5779. "highlight.php",
  5780. "syntax"
  5781. ],
  5782. "support": {
  5783. "issues": "https://github.com/scrivo/highlight.php/issues",
  5784. "source": "https://github.com/scrivo/highlight.php"
  5785. },
  5786. "funding": [
  5787. {
  5788. "url": "https://github.com/allejo",
  5789. "type": "github"
  5790. }
  5791. ],
  5792. "time": "2022-12-17T21:53:22+00:00"
  5793. },
  5794. {
  5795. "name": "sebastian/code-unit-reverse-lookup",
  5796. "version": "1.0.2",
  5797. "source": {
  5798. "type": "git",
  5799. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  5800. "reference": "1de8cd5c010cb153fcd68b8d0f64606f523f7619"
  5801. },
  5802. "dist": {
  5803. "type": "zip",
  5804. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/1de8cd5c010cb153fcd68b8d0f64606f523f7619",
  5805. "reference": "1de8cd5c010cb153fcd68b8d0f64606f523f7619",
  5806. "shasum": "",
  5807. "mirrors": [
  5808. {
  5809. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5810. "preferred": true
  5811. }
  5812. ]
  5813. },
  5814. "require": {
  5815. "php": ">=5.6"
  5816. },
  5817. "require-dev": {
  5818. "phpunit/phpunit": "^8.5"
  5819. },
  5820. "type": "library",
  5821. "extra": {
  5822. "branch-alias": {
  5823. "dev-master": "1.0.x-dev"
  5824. }
  5825. },
  5826. "autoload": {
  5827. "classmap": [
  5828. "src/"
  5829. ]
  5830. },
  5831. "notification-url": "https://packagist.org/downloads/",
  5832. "license": [
  5833. "BSD-3-Clause"
  5834. ],
  5835. "authors": [
  5836. {
  5837. "name": "Sebastian Bergmann",
  5838. "email": "sebastian@phpunit.de"
  5839. }
  5840. ],
  5841. "description": "Looks up which function or method a line of code belongs to",
  5842. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  5843. "support": {
  5844. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  5845. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/1.0.2"
  5846. },
  5847. "funding": [
  5848. {
  5849. "url": "https://github.com/sebastianbergmann",
  5850. "type": "github"
  5851. }
  5852. ],
  5853. "time": "2020-11-30T08:15:22+00:00"
  5854. },
  5855. {
  5856. "name": "sebastian/comparator",
  5857. "version": "3.0.5",
  5858. "source": {
  5859. "type": "git",
  5860. "url": "https://github.com/sebastianbergmann/comparator.git",
  5861. "reference": "1dc7ceb4a24aede938c7af2a9ed1de09609ca770"
  5862. },
  5863. "dist": {
  5864. "type": "zip",
  5865. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/1dc7ceb4a24aede938c7af2a9ed1de09609ca770",
  5866. "reference": "1dc7ceb4a24aede938c7af2a9ed1de09609ca770",
  5867. "shasum": "",
  5868. "mirrors": [
  5869. {
  5870. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5871. "preferred": true
  5872. }
  5873. ]
  5874. },
  5875. "require": {
  5876. "php": ">=7.1",
  5877. "sebastian/diff": "^3.0",
  5878. "sebastian/exporter": "^3.1"
  5879. },
  5880. "require-dev": {
  5881. "phpunit/phpunit": "^8.5"
  5882. },
  5883. "type": "library",
  5884. "extra": {
  5885. "branch-alias": {
  5886. "dev-master": "3.0-dev"
  5887. }
  5888. },
  5889. "autoload": {
  5890. "classmap": [
  5891. "src/"
  5892. ]
  5893. },
  5894. "notification-url": "https://packagist.org/downloads/",
  5895. "license": [
  5896. "BSD-3-Clause"
  5897. ],
  5898. "authors": [
  5899. {
  5900. "name": "Sebastian Bergmann",
  5901. "email": "sebastian@phpunit.de"
  5902. },
  5903. {
  5904. "name": "Jeff Welch",
  5905. "email": "whatthejeff@gmail.com"
  5906. },
  5907. {
  5908. "name": "Volker Dusch",
  5909. "email": "github@wallbash.com"
  5910. },
  5911. {
  5912. "name": "Bernhard Schussek",
  5913. "email": "bschussek@2bepublished.at"
  5914. }
  5915. ],
  5916. "description": "Provides the functionality to compare PHP values for equality",
  5917. "homepage": "https://github.com/sebastianbergmann/comparator",
  5918. "keywords": [
  5919. "comparator",
  5920. "compare",
  5921. "equality"
  5922. ],
  5923. "support": {
  5924. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  5925. "source": "https://github.com/sebastianbergmann/comparator/tree/3.0.5"
  5926. },
  5927. "funding": [
  5928. {
  5929. "url": "https://github.com/sebastianbergmann",
  5930. "type": "github"
  5931. }
  5932. ],
  5933. "time": "2022-09-14T12:31:48+00:00"
  5934. },
  5935. {
  5936. "name": "sebastian/diff",
  5937. "version": "3.0.3",
  5938. "source": {
  5939. "type": "git",
  5940. "url": "https://github.com/sebastianbergmann/diff.git",
  5941. "reference": "14f72dd46eaf2f2293cbe79c93cc0bc43161a211"
  5942. },
  5943. "dist": {
  5944. "type": "zip",
  5945. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/14f72dd46eaf2f2293cbe79c93cc0bc43161a211",
  5946. "reference": "14f72dd46eaf2f2293cbe79c93cc0bc43161a211",
  5947. "shasum": "",
  5948. "mirrors": [
  5949. {
  5950. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5951. "preferred": true
  5952. }
  5953. ]
  5954. },
  5955. "require": {
  5956. "php": ">=7.1"
  5957. },
  5958. "require-dev": {
  5959. "phpunit/phpunit": "^7.5 || ^8.0",
  5960. "symfony/process": "^2 || ^3.3 || ^4"
  5961. },
  5962. "type": "library",
  5963. "extra": {
  5964. "branch-alias": {
  5965. "dev-master": "3.0-dev"
  5966. }
  5967. },
  5968. "autoload": {
  5969. "classmap": [
  5970. "src/"
  5971. ]
  5972. },
  5973. "notification-url": "https://packagist.org/downloads/",
  5974. "license": [
  5975. "BSD-3-Clause"
  5976. ],
  5977. "authors": [
  5978. {
  5979. "name": "Sebastian Bergmann",
  5980. "email": "sebastian@phpunit.de"
  5981. },
  5982. {
  5983. "name": "Kore Nordmann",
  5984. "email": "mail@kore-nordmann.de"
  5985. }
  5986. ],
  5987. "description": "Diff implementation",
  5988. "homepage": "https://github.com/sebastianbergmann/diff",
  5989. "keywords": [
  5990. "diff",
  5991. "udiff",
  5992. "unidiff",
  5993. "unified diff"
  5994. ],
  5995. "support": {
  5996. "issues": "https://github.com/sebastianbergmann/diff/issues",
  5997. "source": "https://github.com/sebastianbergmann/diff/tree/3.0.3"
  5998. },
  5999. "funding": [
  6000. {
  6001. "url": "https://github.com/sebastianbergmann",
  6002. "type": "github"
  6003. }
  6004. ],
  6005. "time": "2020-11-30T07:59:04+00:00"
  6006. },
  6007. {
  6008. "name": "sebastian/environment",
  6009. "version": "4.2.4",
  6010. "source": {
  6011. "type": "git",
  6012. "url": "https://github.com/sebastianbergmann/environment.git",
  6013. "reference": "d47bbbad83711771f167c72d4e3f25f7fcc1f8b0"
  6014. },
  6015. "dist": {
  6016. "type": "zip",
  6017. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/d47bbbad83711771f167c72d4e3f25f7fcc1f8b0",
  6018. "reference": "d47bbbad83711771f167c72d4e3f25f7fcc1f8b0",
  6019. "shasum": "",
  6020. "mirrors": [
  6021. {
  6022. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6023. "preferred": true
  6024. }
  6025. ]
  6026. },
  6027. "require": {
  6028. "php": ">=7.1"
  6029. },
  6030. "require-dev": {
  6031. "phpunit/phpunit": "^7.5"
  6032. },
  6033. "suggest": {
  6034. "ext-posix": "*"
  6035. },
  6036. "type": "library",
  6037. "extra": {
  6038. "branch-alias": {
  6039. "dev-master": "4.2-dev"
  6040. }
  6041. },
  6042. "autoload": {
  6043. "classmap": [
  6044. "src/"
  6045. ]
  6046. },
  6047. "notification-url": "https://packagist.org/downloads/",
  6048. "license": [
  6049. "BSD-3-Clause"
  6050. ],
  6051. "authors": [
  6052. {
  6053. "name": "Sebastian Bergmann",
  6054. "email": "sebastian@phpunit.de"
  6055. }
  6056. ],
  6057. "description": "Provides functionality to handle HHVM/PHP environments",
  6058. "homepage": "http://www.github.com/sebastianbergmann/environment",
  6059. "keywords": [
  6060. "Xdebug",
  6061. "environment",
  6062. "hhvm"
  6063. ],
  6064. "support": {
  6065. "issues": "https://github.com/sebastianbergmann/environment/issues",
  6066. "source": "https://github.com/sebastianbergmann/environment/tree/4.2.4"
  6067. },
  6068. "funding": [
  6069. {
  6070. "url": "https://github.com/sebastianbergmann",
  6071. "type": "github"
  6072. }
  6073. ],
  6074. "time": "2020-11-30T07:53:42+00:00"
  6075. },
  6076. {
  6077. "name": "sebastian/exporter",
  6078. "version": "3.1.5",
  6079. "source": {
  6080. "type": "git",
  6081. "url": "https://github.com/sebastianbergmann/exporter.git",
  6082. "reference": "73a9676f2833b9a7c36968f9d882589cd75511e6"
  6083. },
  6084. "dist": {
  6085. "type": "zip",
  6086. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/73a9676f2833b9a7c36968f9d882589cd75511e6",
  6087. "reference": "73a9676f2833b9a7c36968f9d882589cd75511e6",
  6088. "shasum": "",
  6089. "mirrors": [
  6090. {
  6091. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6092. "preferred": true
  6093. }
  6094. ]
  6095. },
  6096. "require": {
  6097. "php": ">=7.0",
  6098. "sebastian/recursion-context": "^3.0"
  6099. },
  6100. "require-dev": {
  6101. "ext-mbstring": "*",
  6102. "phpunit/phpunit": "^8.5"
  6103. },
  6104. "type": "library",
  6105. "extra": {
  6106. "branch-alias": {
  6107. "dev-master": "3.1.x-dev"
  6108. }
  6109. },
  6110. "autoload": {
  6111. "classmap": [
  6112. "src/"
  6113. ]
  6114. },
  6115. "notification-url": "https://packagist.org/downloads/",
  6116. "license": [
  6117. "BSD-3-Clause"
  6118. ],
  6119. "authors": [
  6120. {
  6121. "name": "Sebastian Bergmann",
  6122. "email": "sebastian@phpunit.de"
  6123. },
  6124. {
  6125. "name": "Jeff Welch",
  6126. "email": "whatthejeff@gmail.com"
  6127. },
  6128. {
  6129. "name": "Volker Dusch",
  6130. "email": "github@wallbash.com"
  6131. },
  6132. {
  6133. "name": "Adam Harvey",
  6134. "email": "aharvey@php.net"
  6135. },
  6136. {
  6137. "name": "Bernhard Schussek",
  6138. "email": "bschussek@gmail.com"
  6139. }
  6140. ],
  6141. "description": "Provides the functionality to export PHP variables for visualization",
  6142. "homepage": "http://www.github.com/sebastianbergmann/exporter",
  6143. "keywords": [
  6144. "export",
  6145. "exporter"
  6146. ],
  6147. "support": {
  6148. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  6149. "source": "https://github.com/sebastianbergmann/exporter/tree/3.1.5"
  6150. },
  6151. "funding": [
  6152. {
  6153. "url": "https://github.com/sebastianbergmann",
  6154. "type": "github"
  6155. }
  6156. ],
  6157. "time": "2022-09-14T06:00:17+00:00"
  6158. },
  6159. {
  6160. "name": "sebastian/global-state",
  6161. "version": "3.0.2",
  6162. "source": {
  6163. "type": "git",
  6164. "url": "https://github.com/sebastianbergmann/global-state.git",
  6165. "reference": "de036ec91d55d2a9e0db2ba975b512cdb1c23921"
  6166. },
  6167. "dist": {
  6168. "type": "zip",
  6169. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/de036ec91d55d2a9e0db2ba975b512cdb1c23921",
  6170. "reference": "de036ec91d55d2a9e0db2ba975b512cdb1c23921",
  6171. "shasum": "",
  6172. "mirrors": [
  6173. {
  6174. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6175. "preferred": true
  6176. }
  6177. ]
  6178. },
  6179. "require": {
  6180. "php": ">=7.2",
  6181. "sebastian/object-reflector": "^1.1.1",
  6182. "sebastian/recursion-context": "^3.0"
  6183. },
  6184. "require-dev": {
  6185. "ext-dom": "*",
  6186. "phpunit/phpunit": "^8.0"
  6187. },
  6188. "suggest": {
  6189. "ext-uopz": "*"
  6190. },
  6191. "type": "library",
  6192. "extra": {
  6193. "branch-alias": {
  6194. "dev-master": "3.0-dev"
  6195. }
  6196. },
  6197. "autoload": {
  6198. "classmap": [
  6199. "src/"
  6200. ]
  6201. },
  6202. "notification-url": "https://packagist.org/downloads/",
  6203. "license": [
  6204. "BSD-3-Clause"
  6205. ],
  6206. "authors": [
  6207. {
  6208. "name": "Sebastian Bergmann",
  6209. "email": "sebastian@phpunit.de"
  6210. }
  6211. ],
  6212. "description": "Snapshotting of global state",
  6213. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  6214. "keywords": [
  6215. "global state"
  6216. ],
  6217. "support": {
  6218. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  6219. "source": "https://github.com/sebastianbergmann/global-state/tree/3.0.2"
  6220. },
  6221. "funding": [
  6222. {
  6223. "url": "https://github.com/sebastianbergmann",
  6224. "type": "github"
  6225. }
  6226. ],
  6227. "time": "2022-02-10T06:55:38+00:00"
  6228. },
  6229. {
  6230. "name": "sebastian/object-enumerator",
  6231. "version": "3.0.4",
  6232. "source": {
  6233. "type": "git",
  6234. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  6235. "reference": "e67f6d32ebd0c749cf9d1dbd9f226c727043cdf2"
  6236. },
  6237. "dist": {
  6238. "type": "zip",
  6239. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/e67f6d32ebd0c749cf9d1dbd9f226c727043cdf2",
  6240. "reference": "e67f6d32ebd0c749cf9d1dbd9f226c727043cdf2",
  6241. "shasum": "",
  6242. "mirrors": [
  6243. {
  6244. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6245. "preferred": true
  6246. }
  6247. ]
  6248. },
  6249. "require": {
  6250. "php": ">=7.0",
  6251. "sebastian/object-reflector": "^1.1.1",
  6252. "sebastian/recursion-context": "^3.0"
  6253. },
  6254. "require-dev": {
  6255. "phpunit/phpunit": "^6.0"
  6256. },
  6257. "type": "library",
  6258. "extra": {
  6259. "branch-alias": {
  6260. "dev-master": "3.0.x-dev"
  6261. }
  6262. },
  6263. "autoload": {
  6264. "classmap": [
  6265. "src/"
  6266. ]
  6267. },
  6268. "notification-url": "https://packagist.org/downloads/",
  6269. "license": [
  6270. "BSD-3-Clause"
  6271. ],
  6272. "authors": [
  6273. {
  6274. "name": "Sebastian Bergmann",
  6275. "email": "sebastian@phpunit.de"
  6276. }
  6277. ],
  6278. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  6279. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  6280. "support": {
  6281. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  6282. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/3.0.4"
  6283. },
  6284. "funding": [
  6285. {
  6286. "url": "https://github.com/sebastianbergmann",
  6287. "type": "github"
  6288. }
  6289. ],
  6290. "time": "2020-11-30T07:40:27+00:00"
  6291. },
  6292. {
  6293. "name": "sebastian/object-reflector",
  6294. "version": "1.1.2",
  6295. "source": {
  6296. "type": "git",
  6297. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  6298. "reference": "9b8772b9cbd456ab45d4a598d2dd1a1bced6363d"
  6299. },
  6300. "dist": {
  6301. "type": "zip",
  6302. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/9b8772b9cbd456ab45d4a598d2dd1a1bced6363d",
  6303. "reference": "9b8772b9cbd456ab45d4a598d2dd1a1bced6363d",
  6304. "shasum": "",
  6305. "mirrors": [
  6306. {
  6307. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6308. "preferred": true
  6309. }
  6310. ]
  6311. },
  6312. "require": {
  6313. "php": ">=7.0"
  6314. },
  6315. "require-dev": {
  6316. "phpunit/phpunit": "^6.0"
  6317. },
  6318. "type": "library",
  6319. "extra": {
  6320. "branch-alias": {
  6321. "dev-master": "1.1-dev"
  6322. }
  6323. },
  6324. "autoload": {
  6325. "classmap": [
  6326. "src/"
  6327. ]
  6328. },
  6329. "notification-url": "https://packagist.org/downloads/",
  6330. "license": [
  6331. "BSD-3-Clause"
  6332. ],
  6333. "authors": [
  6334. {
  6335. "name": "Sebastian Bergmann",
  6336. "email": "sebastian@phpunit.de"
  6337. }
  6338. ],
  6339. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  6340. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  6341. "support": {
  6342. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  6343. "source": "https://github.com/sebastianbergmann/object-reflector/tree/1.1.2"
  6344. },
  6345. "funding": [
  6346. {
  6347. "url": "https://github.com/sebastianbergmann",
  6348. "type": "github"
  6349. }
  6350. ],
  6351. "time": "2020-11-30T07:37:18+00:00"
  6352. },
  6353. {
  6354. "name": "sebastian/recursion-context",
  6355. "version": "3.0.1",
  6356. "source": {
  6357. "type": "git",
  6358. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  6359. "reference": "367dcba38d6e1977be014dc4b22f47a484dac7fb"
  6360. },
  6361. "dist": {
  6362. "type": "zip",
  6363. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/367dcba38d6e1977be014dc4b22f47a484dac7fb",
  6364. "reference": "367dcba38d6e1977be014dc4b22f47a484dac7fb",
  6365. "shasum": "",
  6366. "mirrors": [
  6367. {
  6368. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6369. "preferred": true
  6370. }
  6371. ]
  6372. },
  6373. "require": {
  6374. "php": ">=7.0"
  6375. },
  6376. "require-dev": {
  6377. "phpunit/phpunit": "^6.0"
  6378. },
  6379. "type": "library",
  6380. "extra": {
  6381. "branch-alias": {
  6382. "dev-master": "3.0.x-dev"
  6383. }
  6384. },
  6385. "autoload": {
  6386. "classmap": [
  6387. "src/"
  6388. ]
  6389. },
  6390. "notification-url": "https://packagist.org/downloads/",
  6391. "license": [
  6392. "BSD-3-Clause"
  6393. ],
  6394. "authors": [
  6395. {
  6396. "name": "Sebastian Bergmann",
  6397. "email": "sebastian@phpunit.de"
  6398. },
  6399. {
  6400. "name": "Jeff Welch",
  6401. "email": "whatthejeff@gmail.com"
  6402. },
  6403. {
  6404. "name": "Adam Harvey",
  6405. "email": "aharvey@php.net"
  6406. }
  6407. ],
  6408. "description": "Provides functionality to recursively process PHP variables",
  6409. "homepage": "http://www.github.com/sebastianbergmann/recursion-context",
  6410. "support": {
  6411. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  6412. "source": "https://github.com/sebastianbergmann/recursion-context/tree/3.0.1"
  6413. },
  6414. "funding": [
  6415. {
  6416. "url": "https://github.com/sebastianbergmann",
  6417. "type": "github"
  6418. }
  6419. ],
  6420. "time": "2020-11-30T07:34:24+00:00"
  6421. },
  6422. {
  6423. "name": "sebastian/resource-operations",
  6424. "version": "2.0.2",
  6425. "source": {
  6426. "type": "git",
  6427. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  6428. "reference": "31d35ca87926450c44eae7e2611d45a7a65ea8b3"
  6429. },
  6430. "dist": {
  6431. "type": "zip",
  6432. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/31d35ca87926450c44eae7e2611d45a7a65ea8b3",
  6433. "reference": "31d35ca87926450c44eae7e2611d45a7a65ea8b3",
  6434. "shasum": "",
  6435. "mirrors": [
  6436. {
  6437. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6438. "preferred": true
  6439. }
  6440. ]
  6441. },
  6442. "require": {
  6443. "php": ">=7.1"
  6444. },
  6445. "type": "library",
  6446. "extra": {
  6447. "branch-alias": {
  6448. "dev-master": "2.0-dev"
  6449. }
  6450. },
  6451. "autoload": {
  6452. "classmap": [
  6453. "src/"
  6454. ]
  6455. },
  6456. "notification-url": "https://packagist.org/downloads/",
  6457. "license": [
  6458. "BSD-3-Clause"
  6459. ],
  6460. "authors": [
  6461. {
  6462. "name": "Sebastian Bergmann",
  6463. "email": "sebastian@phpunit.de"
  6464. }
  6465. ],
  6466. "description": "Provides a list of PHP built-in functions that operate on resources",
  6467. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  6468. "support": {
  6469. "issues": "https://github.com/sebastianbergmann/resource-operations/issues",
  6470. "source": "https://github.com/sebastianbergmann/resource-operations/tree/2.0.2"
  6471. },
  6472. "funding": [
  6473. {
  6474. "url": "https://github.com/sebastianbergmann",
  6475. "type": "github"
  6476. }
  6477. ],
  6478. "time": "2020-11-30T07:30:19+00:00"
  6479. },
  6480. {
  6481. "name": "sebastian/type",
  6482. "version": "1.1.4",
  6483. "source": {
  6484. "type": "git",
  6485. "url": "https://github.com/sebastianbergmann/type.git",
  6486. "reference": "0150cfbc4495ed2df3872fb31b26781e4e077eb4"
  6487. },
  6488. "dist": {
  6489. "type": "zip",
  6490. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/0150cfbc4495ed2df3872fb31b26781e4e077eb4",
  6491. "reference": "0150cfbc4495ed2df3872fb31b26781e4e077eb4",
  6492. "shasum": "",
  6493. "mirrors": [
  6494. {
  6495. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6496. "preferred": true
  6497. }
  6498. ]
  6499. },
  6500. "require": {
  6501. "php": ">=7.2"
  6502. },
  6503. "require-dev": {
  6504. "phpunit/phpunit": "^8.2"
  6505. },
  6506. "type": "library",
  6507. "extra": {
  6508. "branch-alias": {
  6509. "dev-master": "1.1-dev"
  6510. }
  6511. },
  6512. "autoload": {
  6513. "classmap": [
  6514. "src/"
  6515. ]
  6516. },
  6517. "notification-url": "https://packagist.org/downloads/",
  6518. "license": [
  6519. "BSD-3-Clause"
  6520. ],
  6521. "authors": [
  6522. {
  6523. "name": "Sebastian Bergmann",
  6524. "email": "sebastian@phpunit.de",
  6525. "role": "lead"
  6526. }
  6527. ],
  6528. "description": "Collection of value objects that represent the types of the PHP type system",
  6529. "homepage": "https://github.com/sebastianbergmann/type",
  6530. "support": {
  6531. "issues": "https://github.com/sebastianbergmann/type/issues",
  6532. "source": "https://github.com/sebastianbergmann/type/tree/1.1.4"
  6533. },
  6534. "funding": [
  6535. {
  6536. "url": "https://github.com/sebastianbergmann",
  6537. "type": "github"
  6538. }
  6539. ],
  6540. "time": "2020-11-30T07:25:11+00:00"
  6541. },
  6542. {
  6543. "name": "sebastian/version",
  6544. "version": "2.0.1",
  6545. "source": {
  6546. "type": "git",
  6547. "url": "https://github.com/sebastianbergmann/version.git",
  6548. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019"
  6549. },
  6550. "dist": {
  6551. "type": "zip",
  6552. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/99732be0ddb3361e16ad77b68ba41efc8e979019",
  6553. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019",
  6554. "shasum": "",
  6555. "mirrors": [
  6556. {
  6557. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6558. "preferred": true
  6559. }
  6560. ]
  6561. },
  6562. "require": {
  6563. "php": ">=5.6"
  6564. },
  6565. "type": "library",
  6566. "extra": {
  6567. "branch-alias": {
  6568. "dev-master": "2.0.x-dev"
  6569. }
  6570. },
  6571. "autoload": {
  6572. "classmap": [
  6573. "src/"
  6574. ]
  6575. },
  6576. "notification-url": "https://packagist.org/downloads/",
  6577. "license": [
  6578. "BSD-3-Clause"
  6579. ],
  6580. "authors": [
  6581. {
  6582. "name": "Sebastian Bergmann",
  6583. "email": "sebastian@phpunit.de",
  6584. "role": "lead"
  6585. }
  6586. ],
  6587. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  6588. "homepage": "https://github.com/sebastianbergmann/version",
  6589. "support": {
  6590. "issues": "https://github.com/sebastianbergmann/version/issues",
  6591. "source": "https://github.com/sebastianbergmann/version/tree/master"
  6592. },
  6593. "time": "2016-10-03T07:35:21+00:00"
  6594. },
  6595. {
  6596. "name": "theseer/tokenizer",
  6597. "version": "1.2.1",
  6598. "source": {
  6599. "type": "git",
  6600. "url": "https://github.com/theseer/tokenizer.git",
  6601. "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e"
  6602. },
  6603. "dist": {
  6604. "type": "zip",
  6605. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/34a41e998c2183e22995f158c581e7b5e755ab9e",
  6606. "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e",
  6607. "shasum": "",
  6608. "mirrors": [
  6609. {
  6610. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6611. "preferred": true
  6612. }
  6613. ]
  6614. },
  6615. "require": {
  6616. "ext-dom": "*",
  6617. "ext-tokenizer": "*",
  6618. "ext-xmlwriter": "*",
  6619. "php": "^7.2 || ^8.0"
  6620. },
  6621. "type": "library",
  6622. "autoload": {
  6623. "classmap": [
  6624. "src/"
  6625. ]
  6626. },
  6627. "notification-url": "https://packagist.org/downloads/",
  6628. "license": [
  6629. "BSD-3-Clause"
  6630. ],
  6631. "authors": [
  6632. {
  6633. "name": "Arne Blankerts",
  6634. "email": "arne@blankerts.de",
  6635. "role": "Developer"
  6636. }
  6637. ],
  6638. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  6639. "support": {
  6640. "issues": "https://github.com/theseer/tokenizer/issues",
  6641. "source": "https://github.com/theseer/tokenizer/tree/1.2.1"
  6642. },
  6643. "funding": [
  6644. {
  6645. "url": "https://github.com/theseer",
  6646. "type": "github"
  6647. }
  6648. ],
  6649. "time": "2021-07-28T10:34:58+00:00"
  6650. }
  6651. ],
  6652. "aliases": [],
  6653. "minimum-stability": "dev",
  6654. "stability-flags": [],
  6655. "prefer-stable": true,
  6656. "prefer-lowest": false,
  6657. "platform": {
  6658. "php": "^7.2.5|^8.0"
  6659. },
  6660. "platform-dev": [],
  6661. "plugin-api-version": "2.3.0"
  6662. }