composer.lock 213 KB

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