composer.lock 274 KB

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