composer.lock 255 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380
  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": "a90e0f00321e0683b88e91b216ee861b",
  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": "overtrue/laravel-query-logger",
  1867. "version": "3.1.0",
  1868. "dist": {
  1869. "type": "zip",
  1870. "url": "https://mirrors.cloud.tencent.com/repository/composer/overtrue/laravel-query-logger/3.1.0/overtrue-laravel-query-logger-3.1.0.zip",
  1871. "reference": "f9cf0b687be3fd0e976b1a86becc7cb10820c655",
  1872. "shasum": ""
  1873. },
  1874. "require": {
  1875. "laravel/framework": "^9.0|^10.0"
  1876. },
  1877. "require-dev": {
  1878. "brainmaestro/composer-git-hooks": "dev-master",
  1879. "laravel/pint": "^1.5"
  1880. },
  1881. "type": "library",
  1882. "extra": {
  1883. "laravel": {
  1884. "providers": [
  1885. "Overtrue\\LaravelQueryLogger\\ServiceProvider"
  1886. ]
  1887. },
  1888. "hooks": {
  1889. "pre-commit": [
  1890. "composer check-style"
  1891. ],
  1892. "pre-push": [
  1893. "composer check-style"
  1894. ]
  1895. }
  1896. },
  1897. "autoload": {
  1898. "psr-4": {
  1899. "Overtrue\\LaravelQueryLogger\\": "src"
  1900. }
  1901. },
  1902. "license": [
  1903. "MIT"
  1904. ],
  1905. "authors": [
  1906. {
  1907. "name": "overtrue",
  1908. "email": "anzhengchao@gmail.com"
  1909. }
  1910. ],
  1911. "description": "A dev tool to log all queries for laravel application.",
  1912. "time": "2023-02-15T08:34:54+00:00"
  1913. },
  1914. {
  1915. "name": "phpoption/phpoption",
  1916. "version": "1.9.2",
  1917. "dist": {
  1918. "type": "zip",
  1919. "url": "https://mirrors.tencent.com/repository/composer/phpoption/phpoption/1.9.2/phpoption-phpoption-1.9.2.zip",
  1920. "reference": "80735db690fe4fc5c76dfa7f9b770634285fa820",
  1921. "shasum": ""
  1922. },
  1923. "require": {
  1924. "php": "^7.2.5 || ^8.0"
  1925. },
  1926. "require-dev": {
  1927. "bamarni/composer-bin-plugin": "^1.8.2",
  1928. "phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2"
  1929. },
  1930. "type": "library",
  1931. "extra": {
  1932. "bamarni-bin": {
  1933. "bin-links": true,
  1934. "forward-command": true
  1935. },
  1936. "branch-alias": {
  1937. "dev-master": "1.9-dev"
  1938. }
  1939. },
  1940. "autoload": {
  1941. "psr-4": {
  1942. "PhpOption\\": "src/PhpOption/"
  1943. }
  1944. },
  1945. "license": [
  1946. "Apache-2.0"
  1947. ],
  1948. "authors": [
  1949. {
  1950. "name": "Johannes M. Schmitt",
  1951. "email": "schmittjoh@gmail.com",
  1952. "homepage": "https://github.com/schmittjoh"
  1953. },
  1954. {
  1955. "name": "Graham Campbell",
  1956. "email": "hello@gjcampbell.co.uk",
  1957. "homepage": "https://github.com/GrahamCampbell"
  1958. }
  1959. ],
  1960. "description": "Option Type for PHP",
  1961. "keywords": [
  1962. "language",
  1963. "option",
  1964. "php",
  1965. "type"
  1966. ],
  1967. "time": "2023-11-12T21:59:55+00:00"
  1968. },
  1969. {
  1970. "name": "psr/clock",
  1971. "version": "1.0.0",
  1972. "dist": {
  1973. "type": "zip",
  1974. "url": "https://mirrors.tencent.com/repository/composer/psr/clock/1.0.0/psr-clock-1.0.0.zip",
  1975. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  1976. "shasum": ""
  1977. },
  1978. "require": {
  1979. "php": "^7.0 || ^8.0"
  1980. },
  1981. "type": "library",
  1982. "autoload": {
  1983. "psr-4": {
  1984. "Psr\\Clock\\": "src/"
  1985. }
  1986. },
  1987. "license": [
  1988. "MIT"
  1989. ],
  1990. "authors": [
  1991. {
  1992. "name": "PHP-FIG",
  1993. "homepage": "https://www.php-fig.org/"
  1994. }
  1995. ],
  1996. "description": "Common interface for reading the clock.",
  1997. "homepage": "https://github.com/php-fig/clock",
  1998. "keywords": [
  1999. "clock",
  2000. "now",
  2001. "psr",
  2002. "psr-20",
  2003. "time"
  2004. ],
  2005. "time": "2022-11-25T14:36:26+00:00"
  2006. },
  2007. {
  2008. "name": "psr/container",
  2009. "version": "2.0.2",
  2010. "dist": {
  2011. "type": "zip",
  2012. "url": "https://mirrors.cloud.tencent.com/repository/composer/psr/container/2.0.2/psr-container-2.0.2.zip",
  2013. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  2014. "shasum": ""
  2015. },
  2016. "require": {
  2017. "php": ">=7.4.0"
  2018. },
  2019. "type": "library",
  2020. "extra": {
  2021. "branch-alias": {
  2022. "dev-master": "2.0.x-dev"
  2023. }
  2024. },
  2025. "autoload": {
  2026. "psr-4": {
  2027. "Psr\\Container\\": "src/"
  2028. }
  2029. },
  2030. "license": [
  2031. "MIT"
  2032. ],
  2033. "authors": [
  2034. {
  2035. "name": "PHP-FIG",
  2036. "homepage": "https://www.php-fig.org/"
  2037. }
  2038. ],
  2039. "description": "Common Container Interface (PHP FIG PSR-11)",
  2040. "homepage": "https://github.com/php-fig/container",
  2041. "keywords": [
  2042. "PSR-11",
  2043. "container",
  2044. "container-interface",
  2045. "container-interop",
  2046. "psr"
  2047. ],
  2048. "time": "2021-11-05T16:47:00+00:00"
  2049. },
  2050. {
  2051. "name": "psr/event-dispatcher",
  2052. "version": "1.0.0",
  2053. "dist": {
  2054. "type": "zip",
  2055. "url": "https://mirrors.cloud.tencent.com/repository/composer/psr/event-dispatcher/1.0.0/psr-event-dispatcher-1.0.0.zip",
  2056. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  2057. "shasum": ""
  2058. },
  2059. "require": {
  2060. "php": ">=7.2.0"
  2061. },
  2062. "type": "library",
  2063. "extra": {
  2064. "branch-alias": {
  2065. "dev-master": "1.0.x-dev"
  2066. }
  2067. },
  2068. "autoload": {
  2069. "psr-4": {
  2070. "Psr\\EventDispatcher\\": "src/"
  2071. }
  2072. },
  2073. "license": [
  2074. "MIT"
  2075. ],
  2076. "authors": [
  2077. {
  2078. "name": "PHP-FIG",
  2079. "homepage": "http://www.php-fig.org/"
  2080. }
  2081. ],
  2082. "description": "Standard interfaces for event handling.",
  2083. "keywords": [
  2084. "events",
  2085. "psr",
  2086. "psr-14"
  2087. ],
  2088. "time": "2019-01-08T18:20:26+00:00"
  2089. },
  2090. {
  2091. "name": "psr/http-client",
  2092. "version": "1.0.3",
  2093. "dist": {
  2094. "type": "zip",
  2095. "url": "https://mirrors.cloud.tencent.com/repository/composer/psr/http-client/1.0.3/psr-http-client-1.0.3.zip",
  2096. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90",
  2097. "shasum": ""
  2098. },
  2099. "require": {
  2100. "php": "^7.0 || ^8.0",
  2101. "psr/http-message": "^1.0 || ^2.0"
  2102. },
  2103. "type": "library",
  2104. "extra": {
  2105. "branch-alias": {
  2106. "dev-master": "1.0.x-dev"
  2107. }
  2108. },
  2109. "autoload": {
  2110. "psr-4": {
  2111. "Psr\\Http\\Client\\": "src/"
  2112. }
  2113. },
  2114. "license": [
  2115. "MIT"
  2116. ],
  2117. "authors": [
  2118. {
  2119. "name": "PHP-FIG",
  2120. "homepage": "https://www.php-fig.org/"
  2121. }
  2122. ],
  2123. "description": "Common interface for HTTP clients",
  2124. "homepage": "https://github.com/php-fig/http-client",
  2125. "keywords": [
  2126. "http",
  2127. "http-client",
  2128. "psr",
  2129. "psr-18"
  2130. ],
  2131. "time": "2023-09-23T14:17:50+00:00"
  2132. },
  2133. {
  2134. "name": "psr/http-factory",
  2135. "version": "1.0.2",
  2136. "dist": {
  2137. "type": "zip",
  2138. "url": "https://mirrors.cloud.tencent.com/repository/composer/psr/http-factory/1.0.2/psr-http-factory-1.0.2.zip",
  2139. "reference": "e616d01114759c4c489f93b099585439f795fe35",
  2140. "shasum": ""
  2141. },
  2142. "require": {
  2143. "php": ">=7.0.0",
  2144. "psr/http-message": "^1.0 || ^2.0"
  2145. },
  2146. "type": "library",
  2147. "extra": {
  2148. "branch-alias": {
  2149. "dev-master": "1.0.x-dev"
  2150. }
  2151. },
  2152. "autoload": {
  2153. "psr-4": {
  2154. "Psr\\Http\\Message\\": "src/"
  2155. }
  2156. },
  2157. "license": [
  2158. "MIT"
  2159. ],
  2160. "authors": [
  2161. {
  2162. "name": "PHP-FIG",
  2163. "homepage": "https://www.php-fig.org/"
  2164. }
  2165. ],
  2166. "description": "Common interfaces for PSR-7 HTTP message factories",
  2167. "keywords": [
  2168. "factory",
  2169. "http",
  2170. "message",
  2171. "psr",
  2172. "psr-17",
  2173. "psr-7",
  2174. "request",
  2175. "response"
  2176. ],
  2177. "time": "2023-04-10T20:10:41+00:00"
  2178. },
  2179. {
  2180. "name": "psr/http-message",
  2181. "version": "2.0",
  2182. "dist": {
  2183. "type": "zip",
  2184. "url": "https://mirrors.cloud.tencent.com/repository/composer/psr/http-message/2.0/psr-http-message-2.0.zip",
  2185. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  2186. "shasum": ""
  2187. },
  2188. "require": {
  2189. "php": "^7.2 || ^8.0"
  2190. },
  2191. "type": "library",
  2192. "extra": {
  2193. "branch-alias": {
  2194. "dev-master": "2.0.x-dev"
  2195. }
  2196. },
  2197. "autoload": {
  2198. "psr-4": {
  2199. "Psr\\Http\\Message\\": "src/"
  2200. }
  2201. },
  2202. "license": [
  2203. "MIT"
  2204. ],
  2205. "authors": [
  2206. {
  2207. "name": "PHP-FIG",
  2208. "homepage": "https://www.php-fig.org/"
  2209. }
  2210. ],
  2211. "description": "Common interface for HTTP messages",
  2212. "homepage": "https://github.com/php-fig/http-message",
  2213. "keywords": [
  2214. "http",
  2215. "http-message",
  2216. "psr",
  2217. "psr-7",
  2218. "request",
  2219. "response"
  2220. ],
  2221. "time": "2023-04-04T09:54:51+00:00"
  2222. },
  2223. {
  2224. "name": "psr/log",
  2225. "version": "3.0.0",
  2226. "dist": {
  2227. "type": "zip",
  2228. "url": "https://mirrors.cloud.tencent.com/repository/composer/psr/log/3.0.0/psr-log-3.0.0.zip",
  2229. "reference": "fe5ea303b0887d5caefd3d431c3e61ad47037001",
  2230. "shasum": ""
  2231. },
  2232. "require": {
  2233. "php": ">=8.0.0"
  2234. },
  2235. "type": "library",
  2236. "extra": {
  2237. "branch-alias": {
  2238. "dev-master": "3.x-dev"
  2239. }
  2240. },
  2241. "autoload": {
  2242. "psr-4": {
  2243. "Psr\\Log\\": "src"
  2244. }
  2245. },
  2246. "license": [
  2247. "MIT"
  2248. ],
  2249. "authors": [
  2250. {
  2251. "name": "PHP-FIG",
  2252. "homepage": "https://www.php-fig.org/"
  2253. }
  2254. ],
  2255. "description": "Common interface for logging libraries",
  2256. "homepage": "https://github.com/php-fig/log",
  2257. "keywords": [
  2258. "log",
  2259. "psr",
  2260. "psr-3"
  2261. ],
  2262. "time": "2021-07-14T16:46:02+00:00"
  2263. },
  2264. {
  2265. "name": "psr/simple-cache",
  2266. "version": "3.0.0",
  2267. "dist": {
  2268. "type": "zip",
  2269. "url": "https://mirrors.cloud.tencent.com/repository/composer/psr/simple-cache/3.0.0/psr-simple-cache-3.0.0.zip",
  2270. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865",
  2271. "shasum": ""
  2272. },
  2273. "require": {
  2274. "php": ">=8.0.0"
  2275. },
  2276. "type": "library",
  2277. "extra": {
  2278. "branch-alias": {
  2279. "dev-master": "3.0.x-dev"
  2280. }
  2281. },
  2282. "autoload": {
  2283. "psr-4": {
  2284. "Psr\\SimpleCache\\": "src/"
  2285. }
  2286. },
  2287. "license": [
  2288. "MIT"
  2289. ],
  2290. "authors": [
  2291. {
  2292. "name": "PHP-FIG",
  2293. "homepage": "https://www.php-fig.org/"
  2294. }
  2295. ],
  2296. "description": "Common interfaces for simple caching",
  2297. "keywords": [
  2298. "cache",
  2299. "caching",
  2300. "psr",
  2301. "psr-16",
  2302. "simple-cache"
  2303. ],
  2304. "time": "2021-10-29T13:26:27+00:00"
  2305. },
  2306. {
  2307. "name": "psy/psysh",
  2308. "version": "v0.11.22",
  2309. "dist": {
  2310. "type": "zip",
  2311. "url": "https://mirrors.tencent.com/repository/composer/psy/psysh/v0.11.22/psy-psysh-v0.11.22.zip",
  2312. "reference": "128fa1b608be651999ed9789c95e6e2a31b5802b",
  2313. "shasum": ""
  2314. },
  2315. "require": {
  2316. "ext-json": "*",
  2317. "ext-tokenizer": "*",
  2318. "nikic/php-parser": "^4.0 || ^3.1",
  2319. "php": "^8.0 || ^7.0.8",
  2320. "symfony/console": "^6.0 || ^5.0 || ^4.0 || ^3.4",
  2321. "symfony/var-dumper": "^6.0 || ^5.0 || ^4.0 || ^3.4"
  2322. },
  2323. "conflict": {
  2324. "symfony/console": "4.4.37 || 5.3.14 || 5.3.15 || 5.4.3 || 5.4.4 || 6.0.3 || 6.0.4"
  2325. },
  2326. "require-dev": {
  2327. "bamarni/composer-bin-plugin": "^1.2"
  2328. },
  2329. "suggest": {
  2330. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  2331. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  2332. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.",
  2333. "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history."
  2334. },
  2335. "bin": [
  2336. "bin/psysh"
  2337. ],
  2338. "type": "library",
  2339. "extra": {
  2340. "branch-alias": {
  2341. "dev-0.11": "0.11.x-dev"
  2342. },
  2343. "bamarni-bin": {
  2344. "bin-links": false,
  2345. "forward-command": false
  2346. }
  2347. },
  2348. "autoload": {
  2349. "files": [
  2350. "src/functions.php"
  2351. ],
  2352. "psr-4": {
  2353. "Psy\\": "src/"
  2354. }
  2355. },
  2356. "license": [
  2357. "MIT"
  2358. ],
  2359. "authors": [
  2360. {
  2361. "name": "Justin Hileman",
  2362. "email": "justin@justinhileman.info",
  2363. "homepage": "http://justinhileman.com"
  2364. }
  2365. ],
  2366. "description": "An interactive shell for modern PHP.",
  2367. "homepage": "http://psysh.org",
  2368. "keywords": [
  2369. "REPL",
  2370. "console",
  2371. "interactive",
  2372. "shell"
  2373. ],
  2374. "time": "2023-10-14T21:56:36+00:00"
  2375. },
  2376. {
  2377. "name": "ralouphie/getallheaders",
  2378. "version": "3.0.3",
  2379. "dist": {
  2380. "type": "zip",
  2381. "url": "https://mirrors.cloud.tencent.com/repository/composer/ralouphie/getallheaders/3.0.3/ralouphie-getallheaders-3.0.3.zip",
  2382. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  2383. "shasum": ""
  2384. },
  2385. "require": {
  2386. "php": ">=5.6"
  2387. },
  2388. "require-dev": {
  2389. "php-coveralls/php-coveralls": "^2.1",
  2390. "phpunit/phpunit": "^5 || ^6.5"
  2391. },
  2392. "type": "library",
  2393. "autoload": {
  2394. "files": [
  2395. "src/getallheaders.php"
  2396. ]
  2397. },
  2398. "license": [
  2399. "MIT"
  2400. ],
  2401. "authors": [
  2402. {
  2403. "name": "Ralph Khattar",
  2404. "email": "ralph.khattar@gmail.com"
  2405. }
  2406. ],
  2407. "description": "A polyfill for getallheaders.",
  2408. "time": "2019-03-08T08:55:37+00:00"
  2409. },
  2410. {
  2411. "name": "ramsey/collection",
  2412. "version": "2.0.0",
  2413. "dist": {
  2414. "type": "zip",
  2415. "url": "https://mirrors.tencent.com/repository/composer/ramsey/collection/2.0.0/ramsey-collection-2.0.0.zip",
  2416. "reference": "a4b48764bfbb8f3a6a4d1aeb1a35bb5e9ecac4a5",
  2417. "shasum": ""
  2418. },
  2419. "require": {
  2420. "php": "^8.1"
  2421. },
  2422. "require-dev": {
  2423. "captainhook/plugin-composer": "^5.3",
  2424. "ergebnis/composer-normalize": "^2.28.3",
  2425. "fakerphp/faker": "^1.21",
  2426. "hamcrest/hamcrest-php": "^2.0",
  2427. "jangregor/phpstan-prophecy": "^1.0",
  2428. "mockery/mockery": "^1.5",
  2429. "php-parallel-lint/php-console-highlighter": "^1.0",
  2430. "php-parallel-lint/php-parallel-lint": "^1.3",
  2431. "phpcsstandards/phpcsutils": "^1.0.0-rc1",
  2432. "phpspec/prophecy-phpunit": "^2.0",
  2433. "phpstan/extension-installer": "^1.2",
  2434. "phpstan/phpstan": "^1.9",
  2435. "phpstan/phpstan-mockery": "^1.1",
  2436. "phpstan/phpstan-phpunit": "^1.3",
  2437. "phpunit/phpunit": "^9.5",
  2438. "psalm/plugin-mockery": "^1.1",
  2439. "psalm/plugin-phpunit": "^0.18.4",
  2440. "ramsey/coding-standard": "^2.0.3",
  2441. "ramsey/conventional-commits": "^1.3",
  2442. "vimeo/psalm": "^5.4"
  2443. },
  2444. "type": "library",
  2445. "extra": {
  2446. "captainhook": {
  2447. "force-install": true
  2448. },
  2449. "ramsey/conventional-commits": {
  2450. "configFile": "conventional-commits.json"
  2451. }
  2452. },
  2453. "autoload": {
  2454. "psr-4": {
  2455. "Ramsey\\Collection\\": "src/"
  2456. }
  2457. },
  2458. "license": [
  2459. "MIT"
  2460. ],
  2461. "authors": [
  2462. {
  2463. "name": "Ben Ramsey",
  2464. "email": "ben@benramsey.com",
  2465. "homepage": "https://benramsey.com"
  2466. }
  2467. ],
  2468. "description": "A PHP library for representing and manipulating collections.",
  2469. "keywords": [
  2470. "array",
  2471. "collection",
  2472. "hash",
  2473. "map",
  2474. "queue",
  2475. "set"
  2476. ],
  2477. "time": "2022-12-31T21:50:55+00:00"
  2478. },
  2479. {
  2480. "name": "ramsey/uuid",
  2481. "version": "4.7.5",
  2482. "dist": {
  2483. "type": "zip",
  2484. "url": "https://mirrors.cloud.tencent.com/repository/composer/ramsey/uuid/4.7.5/ramsey-uuid-4.7.5.zip",
  2485. "reference": "5f0df49ae5ad6efb7afa69e6bfab4e5b1e080d8e",
  2486. "shasum": ""
  2487. },
  2488. "require": {
  2489. "brick/math": "^0.8.8 || ^0.9 || ^0.10 || ^0.11",
  2490. "ext-json": "*",
  2491. "php": "^8.0",
  2492. "ramsey/collection": "^1.2 || ^2.0"
  2493. },
  2494. "replace": {
  2495. "rhumsaa/uuid": "self.version"
  2496. },
  2497. "require-dev": {
  2498. "captainhook/captainhook": "^5.10",
  2499. "captainhook/plugin-composer": "^5.3",
  2500. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  2501. "doctrine/annotations": "^1.8",
  2502. "ergebnis/composer-normalize": "^2.15",
  2503. "mockery/mockery": "^1.3",
  2504. "paragonie/random-lib": "^2",
  2505. "php-mock/php-mock": "^2.2",
  2506. "php-mock/php-mock-mockery": "^1.3",
  2507. "php-parallel-lint/php-parallel-lint": "^1.1",
  2508. "phpbench/phpbench": "^1.0",
  2509. "phpstan/extension-installer": "^1.1",
  2510. "phpstan/phpstan": "^1.8",
  2511. "phpstan/phpstan-mockery": "^1.1",
  2512. "phpstan/phpstan-phpunit": "^1.1",
  2513. "phpunit/phpunit": "^8.5 || ^9",
  2514. "ramsey/composer-repl": "^1.4",
  2515. "slevomat/coding-standard": "^8.4",
  2516. "squizlabs/php_codesniffer": "^3.5",
  2517. "vimeo/psalm": "^4.9"
  2518. },
  2519. "suggest": {
  2520. "ext-bcmath": "Enables faster math with arbitrary-precision integers using BCMath.",
  2521. "ext-gmp": "Enables faster math with arbitrary-precision integers using GMP.",
  2522. "ext-uuid": "Enables the use of PeclUuidTimeGenerator and PeclUuidRandomGenerator.",
  2523. "paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
  2524. "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type."
  2525. },
  2526. "type": "library",
  2527. "extra": {
  2528. "captainhook": {
  2529. "force-install": true
  2530. }
  2531. },
  2532. "autoload": {
  2533. "files": [
  2534. "src/functions.php"
  2535. ],
  2536. "psr-4": {
  2537. "Ramsey\\Uuid\\": "src/"
  2538. }
  2539. },
  2540. "license": [
  2541. "MIT"
  2542. ],
  2543. "description": "A PHP library for generating and working with universally unique identifiers (UUIDs).",
  2544. "keywords": [
  2545. "guid",
  2546. "identifier",
  2547. "uuid"
  2548. ],
  2549. "time": "2023-11-08T05:53:05+00:00"
  2550. },
  2551. {
  2552. "name": "spatie/laravel-permission",
  2553. "version": "6.3.0",
  2554. "source": {
  2555. "type": "git",
  2556. "url": "https://github.com/spatie/laravel-permission.git",
  2557. "reference": "4d119986c862ac0168b77338c85d8236bb559a88"
  2558. },
  2559. "dist": {
  2560. "type": "zip",
  2561. "url": "https://api.github.com/repos/spatie/laravel-permission/zipball/4d119986c862ac0168b77338c85d8236bb559a88",
  2562. "reference": "4d119986c862ac0168b77338c85d8236bb559a88",
  2563. "shasum": "",
  2564. "mirrors": [
  2565. {
  2566. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2567. "preferred": true
  2568. }
  2569. ]
  2570. },
  2571. "require": {
  2572. "illuminate/auth": "^8.12|^9.0|^10.0|^11.0",
  2573. "illuminate/container": "^8.12|^9.0|^10.0|^11.0",
  2574. "illuminate/contracts": "^8.12|^9.0|^10.0|^11.0",
  2575. "illuminate/database": "^8.12|^9.0|^10.0|^11.0",
  2576. "php": "^8.0"
  2577. },
  2578. "require-dev": {
  2579. "laravel/passport": "^11.0",
  2580. "orchestra/testbench": "^6.23|^7.0|^8.0|^9.0",
  2581. "phpunit/phpunit": "^9.4|^10.1"
  2582. },
  2583. "type": "library",
  2584. "extra": {
  2585. "branch-alias": {
  2586. "dev-main": "6.x-dev",
  2587. "dev-master": "6.x-dev"
  2588. },
  2589. "laravel": {
  2590. "providers": [
  2591. "Spatie\\Permission\\PermissionServiceProvider"
  2592. ]
  2593. }
  2594. },
  2595. "autoload": {
  2596. "files": [
  2597. "src/helpers.php"
  2598. ],
  2599. "psr-4": {
  2600. "Spatie\\Permission\\": "src"
  2601. }
  2602. },
  2603. "notification-url": "https://packagist.org/downloads/",
  2604. "license": [
  2605. "MIT"
  2606. ],
  2607. "authors": [
  2608. {
  2609. "name": "Freek Van der Herten",
  2610. "email": "freek@spatie.be",
  2611. "homepage": "https://spatie.be",
  2612. "role": "Developer"
  2613. }
  2614. ],
  2615. "description": "Permission handling for Laravel 8.0 and up",
  2616. "homepage": "https://github.com/spatie/laravel-permission",
  2617. "keywords": [
  2618. "acl",
  2619. "laravel",
  2620. "permission",
  2621. "permissions",
  2622. "rbac",
  2623. "roles",
  2624. "security",
  2625. "spatie"
  2626. ],
  2627. "support": {
  2628. "issues": "https://github.com/spatie/laravel-permission/issues",
  2629. "source": "https://github.com/spatie/laravel-permission/tree/6.3.0"
  2630. },
  2631. "funding": [
  2632. {
  2633. "url": "https://github.com/spatie",
  2634. "type": "github"
  2635. }
  2636. ],
  2637. "time": "2023-12-24T06:58:02+00:00"
  2638. },
  2639. {
  2640. "name": "symfony/console",
  2641. "version": "v6.4.2",
  2642. "dist": {
  2643. "type": "zip",
  2644. "url": "https://mirrors.cloud.tencent.com/repository/composer/symfony/console/v6.4.2/symfony-console-v6.4.2.zip",
  2645. "reference": "0254811a143e6bc6c8deea08b589a7e68a37f625",
  2646. "shasum": ""
  2647. },
  2648. "require": {
  2649. "php": ">=8.1",
  2650. "symfony/deprecation-contracts": "^2.5|^3",
  2651. "symfony/polyfill-mbstring": "~1.0",
  2652. "symfony/service-contracts": "^2.5|^3",
  2653. "symfony/string": "^5.4|^6.0|^7.0"
  2654. },
  2655. "conflict": {
  2656. "symfony/dependency-injection": "<5.4",
  2657. "symfony/dotenv": "<5.4",
  2658. "symfony/event-dispatcher": "<5.4",
  2659. "symfony/lock": "<5.4",
  2660. "symfony/process": "<5.4"
  2661. },
  2662. "provide": {
  2663. "psr/log-implementation": "1.0|2.0|3.0"
  2664. },
  2665. "require-dev": {
  2666. "psr/log": "^1|^2|^3",
  2667. "symfony/config": "^5.4|^6.0|^7.0",
  2668. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  2669. "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
  2670. "symfony/http-foundation": "^6.4|^7.0",
  2671. "symfony/http-kernel": "^6.4|^7.0",
  2672. "symfony/lock": "^5.4|^6.0|^7.0",
  2673. "symfony/messenger": "^5.4|^6.0|^7.0",
  2674. "symfony/process": "^5.4|^6.0|^7.0",
  2675. "symfony/stopwatch": "^5.4|^6.0|^7.0",
  2676. "symfony/var-dumper": "^5.4|^6.0|^7.0"
  2677. },
  2678. "type": "library",
  2679. "autoload": {
  2680. "psr-4": {
  2681. "Symfony\\Component\\Console\\": ""
  2682. },
  2683. "exclude-from-classmap": [
  2684. "/Tests/"
  2685. ]
  2686. },
  2687. "license": [
  2688. "MIT"
  2689. ],
  2690. "authors": [
  2691. {
  2692. "name": "Fabien Potencier",
  2693. "email": "fabien@symfony.com"
  2694. },
  2695. {
  2696. "name": "Symfony Community",
  2697. "homepage": "https://symfony.com/contributors"
  2698. }
  2699. ],
  2700. "description": "Eases the creation of beautiful and testable command line interfaces",
  2701. "homepage": "https://symfony.com",
  2702. "keywords": [
  2703. "cli",
  2704. "command-line",
  2705. "console",
  2706. "terminal"
  2707. ],
  2708. "time": "2023-12-10T16:15:48+00:00"
  2709. },
  2710. {
  2711. "name": "symfony/css-selector",
  2712. "version": "v7.0.0",
  2713. "dist": {
  2714. "type": "zip",
  2715. "url": "https://mirrors.cloud.tencent.com/repository/composer/symfony/css-selector/v7.0.0/symfony-css-selector-v7.0.0.zip",
  2716. "reference": "bb51d46e53ef8d50d523f0c5faedba056a27943e",
  2717. "shasum": ""
  2718. },
  2719. "require": {
  2720. "php": ">=8.2"
  2721. },
  2722. "type": "library",
  2723. "autoload": {
  2724. "psr-4": {
  2725. "Symfony\\Component\\CssSelector\\": ""
  2726. },
  2727. "exclude-from-classmap": [
  2728. "/Tests/"
  2729. ]
  2730. },
  2731. "license": [
  2732. "MIT"
  2733. ],
  2734. "authors": [
  2735. {
  2736. "name": "Fabien Potencier",
  2737. "email": "fabien@symfony.com"
  2738. },
  2739. {
  2740. "name": "Jean-François Simon",
  2741. "email": "jeanfrancois.simon@sensiolabs.com"
  2742. },
  2743. {
  2744. "name": "Symfony Community",
  2745. "homepage": "https://symfony.com/contributors"
  2746. }
  2747. ],
  2748. "description": "Converts CSS selectors to XPath expressions",
  2749. "homepage": "https://symfony.com",
  2750. "time": "2023-10-31T17:59:56+00:00"
  2751. },
  2752. {
  2753. "name": "symfony/deprecation-contracts",
  2754. "version": "v3.4.0",
  2755. "dist": {
  2756. "type": "zip",
  2757. "url": "https://mirrors.cloud.tencent.com/repository/composer/symfony/deprecation-contracts/v3.4.0/symfony-deprecation-contracts-v3.4.0.zip",
  2758. "reference": "7c3aff79d10325257a001fcf92d991f24fc967cf",
  2759. "shasum": ""
  2760. },
  2761. "require": {
  2762. "php": ">=8.1"
  2763. },
  2764. "type": "library",
  2765. "extra": {
  2766. "branch-alias": {
  2767. "dev-main": "3.4-dev"
  2768. },
  2769. "thanks": {
  2770. "name": "symfony/contracts",
  2771. "url": "https://github.com/symfony/contracts"
  2772. }
  2773. },
  2774. "autoload": {
  2775. "files": [
  2776. "function.php"
  2777. ]
  2778. },
  2779. "license": [
  2780. "MIT"
  2781. ],
  2782. "authors": [
  2783. {
  2784. "name": "Nicolas Grekas",
  2785. "email": "p@tchwork.com"
  2786. },
  2787. {
  2788. "name": "Symfony Community",
  2789. "homepage": "https://symfony.com/contributors"
  2790. }
  2791. ],
  2792. "description": "A generic function and convention to trigger deprecation notices",
  2793. "homepage": "https://symfony.com",
  2794. "time": "2023-05-23T14:45:45+00:00"
  2795. },
  2796. {
  2797. "name": "symfony/error-handler",
  2798. "version": "v6.4.0",
  2799. "dist": {
  2800. "type": "zip",
  2801. "url": "https://mirrors.tencent.com/repository/composer/symfony/error-handler/v6.4.0/symfony-error-handler-v6.4.0.zip",
  2802. "reference": "c873490a1c97b3a0a4838afc36ff36c112d02788",
  2803. "shasum": ""
  2804. },
  2805. "require": {
  2806. "php": ">=8.1",
  2807. "psr/log": "^1|^2|^3",
  2808. "symfony/var-dumper": "^5.4|^6.0|^7.0"
  2809. },
  2810. "conflict": {
  2811. "symfony/deprecation-contracts": "<2.5",
  2812. "symfony/http-kernel": "<6.4"
  2813. },
  2814. "require-dev": {
  2815. "symfony/deprecation-contracts": "^2.5|^3",
  2816. "symfony/http-kernel": "^6.4|^7.0",
  2817. "symfony/serializer": "^5.4|^6.0|^7.0"
  2818. },
  2819. "bin": [
  2820. "Resources/bin/patch-type-declarations"
  2821. ],
  2822. "type": "library",
  2823. "autoload": {
  2824. "psr-4": {
  2825. "Symfony\\Component\\ErrorHandler\\": ""
  2826. },
  2827. "exclude-from-classmap": [
  2828. "/Tests/"
  2829. ]
  2830. },
  2831. "license": [
  2832. "MIT"
  2833. ],
  2834. "authors": [
  2835. {
  2836. "name": "Fabien Potencier",
  2837. "email": "fabien@symfony.com"
  2838. },
  2839. {
  2840. "name": "Symfony Community",
  2841. "homepage": "https://symfony.com/contributors"
  2842. }
  2843. ],
  2844. "description": "Provides tools to manage errors and ease debugging PHP code",
  2845. "homepage": "https://symfony.com",
  2846. "time": "2023-10-18T09:43:34+00:00"
  2847. },
  2848. {
  2849. "name": "symfony/event-dispatcher",
  2850. "version": "v7.0.2",
  2851. "dist": {
  2852. "type": "zip",
  2853. "url": "https://mirrors.cloud.tencent.com/repository/composer/symfony/event-dispatcher/v7.0.2/symfony-event-dispatcher-v7.0.2.zip",
  2854. "reference": "098b62ae81fdd6cbf941f355059f617db28f4f9a",
  2855. "shasum": ""
  2856. },
  2857. "require": {
  2858. "php": ">=8.2",
  2859. "symfony/event-dispatcher-contracts": "^2.5|^3"
  2860. },
  2861. "conflict": {
  2862. "symfony/dependency-injection": "<6.4",
  2863. "symfony/service-contracts": "<2.5"
  2864. },
  2865. "provide": {
  2866. "psr/event-dispatcher-implementation": "1.0",
  2867. "symfony/event-dispatcher-implementation": "2.0|3.0"
  2868. },
  2869. "require-dev": {
  2870. "psr/log": "^1|^2|^3",
  2871. "symfony/config": "^6.4|^7.0",
  2872. "symfony/dependency-injection": "^6.4|^7.0",
  2873. "symfony/error-handler": "^6.4|^7.0",
  2874. "symfony/expression-language": "^6.4|^7.0",
  2875. "symfony/http-foundation": "^6.4|^7.0",
  2876. "symfony/service-contracts": "^2.5|^3",
  2877. "symfony/stopwatch": "^6.4|^7.0"
  2878. },
  2879. "type": "library",
  2880. "autoload": {
  2881. "psr-4": {
  2882. "Symfony\\Component\\EventDispatcher\\": ""
  2883. },
  2884. "exclude-from-classmap": [
  2885. "/Tests/"
  2886. ]
  2887. },
  2888. "license": [
  2889. "MIT"
  2890. ],
  2891. "authors": [
  2892. {
  2893. "name": "Fabien Potencier",
  2894. "email": "fabien@symfony.com"
  2895. },
  2896. {
  2897. "name": "Symfony Community",
  2898. "homepage": "https://symfony.com/contributors"
  2899. }
  2900. ],
  2901. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  2902. "homepage": "https://symfony.com",
  2903. "time": "2023-12-27T22:24:19+00:00"
  2904. },
  2905. {
  2906. "name": "symfony/event-dispatcher-contracts",
  2907. "version": "v3.4.0",
  2908. "dist": {
  2909. "type": "zip",
  2910. "url": "https://mirrors.cloud.tencent.com/repository/composer/symfony/event-dispatcher-contracts/v3.4.0/symfony-event-dispatcher-contracts-v3.4.0.zip",
  2911. "reference": "a76aed96a42d2b521153fb382d418e30d18b59df",
  2912. "shasum": ""
  2913. },
  2914. "require": {
  2915. "php": ">=8.1",
  2916. "psr/event-dispatcher": "^1"
  2917. },
  2918. "type": "library",
  2919. "extra": {
  2920. "branch-alias": {
  2921. "dev-main": "3.4-dev"
  2922. },
  2923. "thanks": {
  2924. "name": "symfony/contracts",
  2925. "url": "https://github.com/symfony/contracts"
  2926. }
  2927. },
  2928. "autoload": {
  2929. "psr-4": {
  2930. "Symfony\\Contracts\\EventDispatcher\\": ""
  2931. }
  2932. },
  2933. "license": [
  2934. "MIT"
  2935. ],
  2936. "authors": [
  2937. {
  2938. "name": "Nicolas Grekas",
  2939. "email": "p@tchwork.com"
  2940. },
  2941. {
  2942. "name": "Symfony Community",
  2943. "homepage": "https://symfony.com/contributors"
  2944. }
  2945. ],
  2946. "description": "Generic abstractions related to dispatching event",
  2947. "homepage": "https://symfony.com",
  2948. "keywords": [
  2949. "abstractions",
  2950. "contracts",
  2951. "decoupling",
  2952. "interfaces",
  2953. "interoperability",
  2954. "standards"
  2955. ],
  2956. "time": "2023-05-23T14:45:45+00:00"
  2957. },
  2958. {
  2959. "name": "symfony/finder",
  2960. "version": "v6.4.0",
  2961. "dist": {
  2962. "type": "zip",
  2963. "url": "https://mirrors.cloud.tencent.com/repository/composer/symfony/finder/v6.4.0/symfony-finder-v6.4.0.zip",
  2964. "reference": "11d736e97f116ac375a81f96e662911a34cd50ce",
  2965. "shasum": ""
  2966. },
  2967. "require": {
  2968. "php": ">=8.1"
  2969. },
  2970. "require-dev": {
  2971. "symfony/filesystem": "^6.0|^7.0"
  2972. },
  2973. "type": "library",
  2974. "autoload": {
  2975. "psr-4": {
  2976. "Symfony\\Component\\Finder\\": ""
  2977. },
  2978. "exclude-from-classmap": [
  2979. "/Tests/"
  2980. ]
  2981. },
  2982. "license": [
  2983. "MIT"
  2984. ],
  2985. "authors": [
  2986. {
  2987. "name": "Fabien Potencier",
  2988. "email": "fabien@symfony.com"
  2989. },
  2990. {
  2991. "name": "Symfony Community",
  2992. "homepage": "https://symfony.com/contributors"
  2993. }
  2994. ],
  2995. "description": "Finds files and directories via an intuitive fluent interface",
  2996. "homepage": "https://symfony.com",
  2997. "time": "2023-10-31T17:30:12+00:00"
  2998. },
  2999. {
  3000. "name": "symfony/http-foundation",
  3001. "version": "v6.4.2",
  3002. "dist": {
  3003. "type": "zip",
  3004. "url": "https://mirrors.cloud.tencent.com/repository/composer/symfony/http-foundation/v6.4.2/symfony-http-foundation-v6.4.2.zip",
  3005. "reference": "172d807f9ef3fc3fbed8377cc57c20d389269271",
  3006. "shasum": ""
  3007. },
  3008. "require": {
  3009. "php": ">=8.1",
  3010. "symfony/deprecation-contracts": "^2.5|^3",
  3011. "symfony/polyfill-mbstring": "~1.1",
  3012. "symfony/polyfill-php83": "^1.27"
  3013. },
  3014. "conflict": {
  3015. "symfony/cache": "<6.3"
  3016. },
  3017. "require-dev": {
  3018. "doctrine/dbal": "^2.13.1|^3|^4",
  3019. "predis/predis": "^1.1|^2.0",
  3020. "symfony/cache": "^6.3|^7.0",
  3021. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  3022. "symfony/expression-language": "^5.4|^6.0|^7.0",
  3023. "symfony/http-kernel": "^5.4.12|^6.0.12|^6.1.4|^7.0",
  3024. "symfony/mime": "^5.4|^6.0|^7.0",
  3025. "symfony/rate-limiter": "^5.4|^6.0|^7.0"
  3026. },
  3027. "type": "library",
  3028. "autoload": {
  3029. "psr-4": {
  3030. "Symfony\\Component\\HttpFoundation\\": ""
  3031. },
  3032. "exclude-from-classmap": [
  3033. "/Tests/"
  3034. ]
  3035. },
  3036. "license": [
  3037. "MIT"
  3038. ],
  3039. "authors": [
  3040. {
  3041. "name": "Fabien Potencier",
  3042. "email": "fabien@symfony.com"
  3043. },
  3044. {
  3045. "name": "Symfony Community",
  3046. "homepage": "https://symfony.com/contributors"
  3047. }
  3048. ],
  3049. "description": "Defines an object-oriented layer for the HTTP specification",
  3050. "homepage": "https://symfony.com",
  3051. "time": "2023-12-27T22:16:42+00:00"
  3052. },
  3053. {
  3054. "name": "symfony/http-kernel",
  3055. "version": "v6.4.2",
  3056. "dist": {
  3057. "type": "zip",
  3058. "url": "https://mirrors.cloud.tencent.com/repository/composer/symfony/http-kernel/v6.4.2/symfony-http-kernel-v6.4.2.zip",
  3059. "reference": "13e8387320b5942d0dc408440c888e2d526efef4",
  3060. "shasum": ""
  3061. },
  3062. "require": {
  3063. "php": ">=8.1",
  3064. "psr/log": "^1|^2|^3",
  3065. "symfony/deprecation-contracts": "^2.5|^3",
  3066. "symfony/error-handler": "^6.4|^7.0",
  3067. "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
  3068. "symfony/http-foundation": "^6.4|^7.0",
  3069. "symfony/polyfill-ctype": "^1.8"
  3070. },
  3071. "conflict": {
  3072. "symfony/browser-kit": "<5.4",
  3073. "symfony/cache": "<5.4",
  3074. "symfony/config": "<6.1",
  3075. "symfony/console": "<5.4",
  3076. "symfony/dependency-injection": "<6.4",
  3077. "symfony/doctrine-bridge": "<5.4",
  3078. "symfony/form": "<5.4",
  3079. "symfony/http-client": "<5.4",
  3080. "symfony/http-client-contracts": "<2.5",
  3081. "symfony/mailer": "<5.4",
  3082. "symfony/messenger": "<5.4",
  3083. "symfony/translation": "<5.4",
  3084. "symfony/translation-contracts": "<2.5",
  3085. "symfony/twig-bridge": "<5.4",
  3086. "symfony/validator": "<6.4",
  3087. "symfony/var-dumper": "<6.3",
  3088. "twig/twig": "<2.13"
  3089. },
  3090. "provide": {
  3091. "psr/log-implementation": "1.0|2.0|3.0"
  3092. },
  3093. "require-dev": {
  3094. "psr/cache": "^1.0|^2.0|^3.0",
  3095. "symfony/browser-kit": "^5.4|^6.0|^7.0",
  3096. "symfony/clock": "^6.2|^7.0",
  3097. "symfony/config": "^6.1|^7.0",
  3098. "symfony/console": "^5.4|^6.0|^7.0",
  3099. "symfony/css-selector": "^5.4|^6.0|^7.0",
  3100. "symfony/dependency-injection": "^6.4|^7.0",
  3101. "symfony/dom-crawler": "^5.4|^6.0|^7.0",
  3102. "symfony/expression-language": "^5.4|^6.0|^7.0",
  3103. "symfony/finder": "^5.4|^6.0|^7.0",
  3104. "symfony/http-client-contracts": "^2.5|^3",
  3105. "symfony/process": "^5.4|^6.0|^7.0",
  3106. "symfony/property-access": "^5.4.5|^6.0.5|^7.0",
  3107. "symfony/routing": "^5.4|^6.0|^7.0",
  3108. "symfony/serializer": "^6.3|^7.0",
  3109. "symfony/stopwatch": "^5.4|^6.0|^7.0",
  3110. "symfony/translation": "^5.4|^6.0|^7.0",
  3111. "symfony/translation-contracts": "^2.5|^3",
  3112. "symfony/uid": "^5.4|^6.0|^7.0",
  3113. "symfony/validator": "^6.4|^7.0",
  3114. "symfony/var-exporter": "^6.2|^7.0",
  3115. "twig/twig": "^2.13|^3.0.4"
  3116. },
  3117. "type": "library",
  3118. "autoload": {
  3119. "psr-4": {
  3120. "Symfony\\Component\\HttpKernel\\": ""
  3121. },
  3122. "exclude-from-classmap": [
  3123. "/Tests/"
  3124. ]
  3125. },
  3126. "license": [
  3127. "MIT"
  3128. ],
  3129. "authors": [
  3130. {
  3131. "name": "Fabien Potencier",
  3132. "email": "fabien@symfony.com"
  3133. },
  3134. {
  3135. "name": "Symfony Community",
  3136. "homepage": "https://symfony.com/contributors"
  3137. }
  3138. ],
  3139. "description": "Provides a structured process for converting a Request into a Response",
  3140. "homepage": "https://symfony.com",
  3141. "time": "2023-12-30T15:31:44+00:00"
  3142. },
  3143. {
  3144. "name": "symfony/mailer",
  3145. "version": "v6.4.2",
  3146. "dist": {
  3147. "type": "zip",
  3148. "url": "https://mirrors.cloud.tencent.com/repository/composer/symfony/mailer/v6.4.2/symfony-mailer-v6.4.2.zip",
  3149. "reference": "6da89e5c9202f129717a770a03183fb140720168",
  3150. "shasum": ""
  3151. },
  3152. "require": {
  3153. "egulias/email-validator": "^2.1.10|^3|^4",
  3154. "php": ">=8.1",
  3155. "psr/event-dispatcher": "^1",
  3156. "psr/log": "^1|^2|^3",
  3157. "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
  3158. "symfony/mime": "^6.2|^7.0",
  3159. "symfony/service-contracts": "^2.5|^3"
  3160. },
  3161. "conflict": {
  3162. "symfony/http-client-contracts": "<2.5",
  3163. "symfony/http-kernel": "<5.4",
  3164. "symfony/messenger": "<6.2",
  3165. "symfony/mime": "<6.2",
  3166. "symfony/twig-bridge": "<6.2.1"
  3167. },
  3168. "require-dev": {
  3169. "symfony/console": "^5.4|^6.0|^7.0",
  3170. "symfony/http-client": "^5.4|^6.0|^7.0",
  3171. "symfony/messenger": "^6.2|^7.0",
  3172. "symfony/twig-bridge": "^6.2|^7.0"
  3173. },
  3174. "type": "library",
  3175. "autoload": {
  3176. "psr-4": {
  3177. "Symfony\\Component\\Mailer\\": ""
  3178. },
  3179. "exclude-from-classmap": [
  3180. "/Tests/"
  3181. ]
  3182. },
  3183. "license": [
  3184. "MIT"
  3185. ],
  3186. "authors": [
  3187. {
  3188. "name": "Fabien Potencier",
  3189. "email": "fabien@symfony.com"
  3190. },
  3191. {
  3192. "name": "Symfony Community",
  3193. "homepage": "https://symfony.com/contributors"
  3194. }
  3195. ],
  3196. "description": "Helps sending emails",
  3197. "homepage": "https://symfony.com",
  3198. "time": "2023-12-19T09:12:31+00:00"
  3199. },
  3200. {
  3201. "name": "symfony/mime",
  3202. "version": "v6.4.0",
  3203. "dist": {
  3204. "type": "zip",
  3205. "url": "https://mirrors.cloud.tencent.com/repository/composer/symfony/mime/v6.4.0/symfony-mime-v6.4.0.zip",
  3206. "reference": "ca4f58b2ef4baa8f6cecbeca2573f88cd577d205",
  3207. "shasum": ""
  3208. },
  3209. "require": {
  3210. "php": ">=8.1",
  3211. "symfony/deprecation-contracts": "^2.5|^3",
  3212. "symfony/polyfill-intl-idn": "^1.10",
  3213. "symfony/polyfill-mbstring": "^1.0"
  3214. },
  3215. "conflict": {
  3216. "egulias/email-validator": "~3.0.0",
  3217. "phpdocumentor/reflection-docblock": "<3.2.2",
  3218. "phpdocumentor/type-resolver": "<1.4.0",
  3219. "symfony/mailer": "<5.4",
  3220. "symfony/serializer": "<6.3.2"
  3221. },
  3222. "require-dev": {
  3223. "egulias/email-validator": "^2.1.10|^3.1|^4",
  3224. "league/html-to-markdown": "^5.0",
  3225. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  3226. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  3227. "symfony/property-access": "^5.4|^6.0|^7.0",
  3228. "symfony/property-info": "^5.4|^6.0|^7.0",
  3229. "symfony/serializer": "^6.3.2|^7.0"
  3230. },
  3231. "type": "library",
  3232. "autoload": {
  3233. "psr-4": {
  3234. "Symfony\\Component\\Mime\\": ""
  3235. },
  3236. "exclude-from-classmap": [
  3237. "/Tests/"
  3238. ]
  3239. },
  3240. "license": [
  3241. "MIT"
  3242. ],
  3243. "authors": [
  3244. {
  3245. "name": "Fabien Potencier",
  3246. "email": "fabien@symfony.com"
  3247. },
  3248. {
  3249. "name": "Symfony Community",
  3250. "homepage": "https://symfony.com/contributors"
  3251. }
  3252. ],
  3253. "description": "Allows manipulating MIME messages",
  3254. "homepage": "https://symfony.com",
  3255. "keywords": [
  3256. "mime",
  3257. "mime-type"
  3258. ],
  3259. "time": "2023-10-17T11:49:05+00:00"
  3260. },
  3261. {
  3262. "name": "symfony/polyfill-ctype",
  3263. "version": "v1.28.0",
  3264. "dist": {
  3265. "type": "zip",
  3266. "url": "https://mirrors.cloud.tencent.com/repository/composer/symfony/polyfill-ctype/v1.28.0/symfony-polyfill-ctype-v1.28.0.zip",
  3267. "reference": "ea208ce43cbb04af6867b4fdddb1bdbf84cc28cb",
  3268. "shasum": ""
  3269. },
  3270. "require": {
  3271. "php": ">=7.1"
  3272. },
  3273. "provide": {
  3274. "ext-ctype": "*"
  3275. },
  3276. "suggest": {
  3277. "ext-ctype": "For best performance"
  3278. },
  3279. "type": "library",
  3280. "extra": {
  3281. "branch-alias": {
  3282. "dev-main": "1.28-dev"
  3283. },
  3284. "thanks": {
  3285. "name": "symfony/polyfill",
  3286. "url": "https://github.com/symfony/polyfill"
  3287. }
  3288. },
  3289. "autoload": {
  3290. "files": [
  3291. "bootstrap.php"
  3292. ],
  3293. "psr-4": {
  3294. "Symfony\\Polyfill\\Ctype\\": ""
  3295. }
  3296. },
  3297. "license": [
  3298. "MIT"
  3299. ],
  3300. "authors": [
  3301. {
  3302. "name": "Gert de Pagter",
  3303. "email": "BackEndTea@gmail.com"
  3304. },
  3305. {
  3306. "name": "Symfony Community",
  3307. "homepage": "https://symfony.com/contributors"
  3308. }
  3309. ],
  3310. "description": "Symfony polyfill for ctype functions",
  3311. "homepage": "https://symfony.com",
  3312. "keywords": [
  3313. "compatibility",
  3314. "ctype",
  3315. "polyfill",
  3316. "portable"
  3317. ],
  3318. "time": "2023-01-26T09:26:14+00:00"
  3319. },
  3320. {
  3321. "name": "symfony/polyfill-intl-grapheme",
  3322. "version": "v1.28.0",
  3323. "dist": {
  3324. "type": "zip",
  3325. "url": "https://mirrors.cloud.tencent.com/repository/composer/symfony/polyfill-intl-grapheme/v1.28.0/symfony-polyfill-intl-grapheme-v1.28.0.zip",
  3326. "reference": "875e90aeea2777b6f135677f618529449334a612",
  3327. "shasum": ""
  3328. },
  3329. "require": {
  3330. "php": ">=7.1"
  3331. },
  3332. "suggest": {
  3333. "ext-intl": "For best performance"
  3334. },
  3335. "type": "library",
  3336. "extra": {
  3337. "branch-alias": {
  3338. "dev-main": "1.28-dev"
  3339. },
  3340. "thanks": {
  3341. "name": "symfony/polyfill",
  3342. "url": "https://github.com/symfony/polyfill"
  3343. }
  3344. },
  3345. "autoload": {
  3346. "files": [
  3347. "bootstrap.php"
  3348. ],
  3349. "psr-4": {
  3350. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  3351. }
  3352. },
  3353. "license": [
  3354. "MIT"
  3355. ],
  3356. "authors": [
  3357. {
  3358. "name": "Nicolas Grekas",
  3359. "email": "p@tchwork.com"
  3360. },
  3361. {
  3362. "name": "Symfony Community",
  3363. "homepage": "https://symfony.com/contributors"
  3364. }
  3365. ],
  3366. "description": "Symfony polyfill for intl's grapheme_* functions",
  3367. "homepage": "https://symfony.com",
  3368. "keywords": [
  3369. "compatibility",
  3370. "grapheme",
  3371. "intl",
  3372. "polyfill",
  3373. "portable",
  3374. "shim"
  3375. ],
  3376. "time": "2023-01-26T09:26:14+00:00"
  3377. },
  3378. {
  3379. "name": "symfony/polyfill-intl-idn",
  3380. "version": "v1.28.0",
  3381. "dist": {
  3382. "type": "zip",
  3383. "url": "https://mirrors.cloud.tencent.com/repository/composer/symfony/polyfill-intl-idn/v1.28.0/symfony-polyfill-intl-idn-v1.28.0.zip",
  3384. "reference": "ecaafce9f77234a6a449d29e49267ba10499116d",
  3385. "shasum": ""
  3386. },
  3387. "require": {
  3388. "php": ">=7.1",
  3389. "symfony/polyfill-intl-normalizer": "^1.10",
  3390. "symfony/polyfill-php72": "^1.10"
  3391. },
  3392. "suggest": {
  3393. "ext-intl": "For best performance"
  3394. },
  3395. "type": "library",
  3396. "extra": {
  3397. "branch-alias": {
  3398. "dev-main": "1.28-dev"
  3399. },
  3400. "thanks": {
  3401. "name": "symfony/polyfill",
  3402. "url": "https://github.com/symfony/polyfill"
  3403. }
  3404. },
  3405. "autoload": {
  3406. "files": [
  3407. "bootstrap.php"
  3408. ],
  3409. "psr-4": {
  3410. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  3411. }
  3412. },
  3413. "license": [
  3414. "MIT"
  3415. ],
  3416. "authors": [
  3417. {
  3418. "name": "Laurent Bassin",
  3419. "email": "laurent@bassin.info"
  3420. },
  3421. {
  3422. "name": "Trevor Rowbotham",
  3423. "email": "trevor.rowbotham@pm.me"
  3424. },
  3425. {
  3426. "name": "Symfony Community",
  3427. "homepage": "https://symfony.com/contributors"
  3428. }
  3429. ],
  3430. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  3431. "homepage": "https://symfony.com",
  3432. "keywords": [
  3433. "compatibility",
  3434. "idn",
  3435. "intl",
  3436. "polyfill",
  3437. "portable",
  3438. "shim"
  3439. ],
  3440. "time": "2023-01-26T09:30:37+00:00"
  3441. },
  3442. {
  3443. "name": "symfony/polyfill-intl-normalizer",
  3444. "version": "v1.28.0",
  3445. "dist": {
  3446. "type": "zip",
  3447. "url": "https://mirrors.cloud.tencent.com/repository/composer/symfony/polyfill-intl-normalizer/v1.28.0/symfony-polyfill-intl-normalizer-v1.28.0.zip",
  3448. "reference": "8c4ad05dd0120b6a53c1ca374dca2ad0a1c4ed92",
  3449. "shasum": ""
  3450. },
  3451. "require": {
  3452. "php": ">=7.1"
  3453. },
  3454. "suggest": {
  3455. "ext-intl": "For best performance"
  3456. },
  3457. "type": "library",
  3458. "extra": {
  3459. "branch-alias": {
  3460. "dev-main": "1.28-dev"
  3461. },
  3462. "thanks": {
  3463. "name": "symfony/polyfill",
  3464. "url": "https://github.com/symfony/polyfill"
  3465. }
  3466. },
  3467. "autoload": {
  3468. "files": [
  3469. "bootstrap.php"
  3470. ],
  3471. "psr-4": {
  3472. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  3473. },
  3474. "classmap": [
  3475. "Resources/stubs"
  3476. ]
  3477. },
  3478. "license": [
  3479. "MIT"
  3480. ],
  3481. "authors": [
  3482. {
  3483. "name": "Nicolas Grekas",
  3484. "email": "p@tchwork.com"
  3485. },
  3486. {
  3487. "name": "Symfony Community",
  3488. "homepage": "https://symfony.com/contributors"
  3489. }
  3490. ],
  3491. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  3492. "homepage": "https://symfony.com",
  3493. "keywords": [
  3494. "compatibility",
  3495. "intl",
  3496. "normalizer",
  3497. "polyfill",
  3498. "portable",
  3499. "shim"
  3500. ],
  3501. "time": "2023-01-26T09:26:14+00:00"
  3502. },
  3503. {
  3504. "name": "symfony/polyfill-mbstring",
  3505. "version": "v1.28.0",
  3506. "dist": {
  3507. "type": "zip",
  3508. "url": "https://mirrors.cloud.tencent.com/repository/composer/symfony/polyfill-mbstring/v1.28.0/symfony-polyfill-mbstring-v1.28.0.zip",
  3509. "reference": "42292d99c55abe617799667f454222c54c60e229",
  3510. "shasum": ""
  3511. },
  3512. "require": {
  3513. "php": ">=7.1"
  3514. },
  3515. "provide": {
  3516. "ext-mbstring": "*"
  3517. },
  3518. "suggest": {
  3519. "ext-mbstring": "For best performance"
  3520. },
  3521. "type": "library",
  3522. "extra": {
  3523. "branch-alias": {
  3524. "dev-main": "1.28-dev"
  3525. },
  3526. "thanks": {
  3527. "name": "symfony/polyfill",
  3528. "url": "https://github.com/symfony/polyfill"
  3529. }
  3530. },
  3531. "autoload": {
  3532. "files": [
  3533. "bootstrap.php"
  3534. ],
  3535. "psr-4": {
  3536. "Symfony\\Polyfill\\Mbstring\\": ""
  3537. }
  3538. },
  3539. "license": [
  3540. "MIT"
  3541. ],
  3542. "authors": [
  3543. {
  3544. "name": "Nicolas Grekas",
  3545. "email": "p@tchwork.com"
  3546. },
  3547. {
  3548. "name": "Symfony Community",
  3549. "homepage": "https://symfony.com/contributors"
  3550. }
  3551. ],
  3552. "description": "Symfony polyfill for the Mbstring extension",
  3553. "homepage": "https://symfony.com",
  3554. "keywords": [
  3555. "compatibility",
  3556. "mbstring",
  3557. "polyfill",
  3558. "portable",
  3559. "shim"
  3560. ],
  3561. "time": "2023-07-28T09:04:16+00:00"
  3562. },
  3563. {
  3564. "name": "symfony/polyfill-php72",
  3565. "version": "v1.28.0",
  3566. "dist": {
  3567. "type": "zip",
  3568. "url": "https://mirrors.cloud.tencent.com/repository/composer/symfony/polyfill-php72/v1.28.0/symfony-polyfill-php72-v1.28.0.zip",
  3569. "reference": "70f4aebd92afca2f865444d30a4d2151c13c3179",
  3570. "shasum": ""
  3571. },
  3572. "require": {
  3573. "php": ">=7.1"
  3574. },
  3575. "type": "library",
  3576. "extra": {
  3577. "branch-alias": {
  3578. "dev-main": "1.28-dev"
  3579. },
  3580. "thanks": {
  3581. "name": "symfony/polyfill",
  3582. "url": "https://github.com/symfony/polyfill"
  3583. }
  3584. },
  3585. "autoload": {
  3586. "files": [
  3587. "bootstrap.php"
  3588. ],
  3589. "psr-4": {
  3590. "Symfony\\Polyfill\\Php72\\": ""
  3591. }
  3592. },
  3593. "license": [
  3594. "MIT"
  3595. ],
  3596. "authors": [
  3597. {
  3598. "name": "Nicolas Grekas",
  3599. "email": "p@tchwork.com"
  3600. },
  3601. {
  3602. "name": "Symfony Community",
  3603. "homepage": "https://symfony.com/contributors"
  3604. }
  3605. ],
  3606. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  3607. "homepage": "https://symfony.com",
  3608. "keywords": [
  3609. "compatibility",
  3610. "polyfill",
  3611. "portable",
  3612. "shim"
  3613. ],
  3614. "time": "2023-01-26T09:26:14+00:00"
  3615. },
  3616. {
  3617. "name": "symfony/polyfill-php80",
  3618. "version": "v1.28.0",
  3619. "dist": {
  3620. "type": "zip",
  3621. "url": "https://mirrors.cloud.tencent.com/repository/composer/symfony/polyfill-php80/v1.28.0/symfony-polyfill-php80-v1.28.0.zip",
  3622. "reference": "6caa57379c4aec19c0a12a38b59b26487dcfe4b5",
  3623. "shasum": ""
  3624. },
  3625. "require": {
  3626. "php": ">=7.1"
  3627. },
  3628. "type": "library",
  3629. "extra": {
  3630. "branch-alias": {
  3631. "dev-main": "1.28-dev"
  3632. },
  3633. "thanks": {
  3634. "name": "symfony/polyfill",
  3635. "url": "https://github.com/symfony/polyfill"
  3636. }
  3637. },
  3638. "autoload": {
  3639. "files": [
  3640. "bootstrap.php"
  3641. ],
  3642. "psr-4": {
  3643. "Symfony\\Polyfill\\Php80\\": ""
  3644. },
  3645. "classmap": [
  3646. "Resources/stubs"
  3647. ]
  3648. },
  3649. "license": [
  3650. "MIT"
  3651. ],
  3652. "authors": [
  3653. {
  3654. "name": "Ion Bazan",
  3655. "email": "ion.bazan@gmail.com"
  3656. },
  3657. {
  3658. "name": "Nicolas Grekas",
  3659. "email": "p@tchwork.com"
  3660. },
  3661. {
  3662. "name": "Symfony Community",
  3663. "homepage": "https://symfony.com/contributors"
  3664. }
  3665. ],
  3666. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  3667. "homepage": "https://symfony.com",
  3668. "keywords": [
  3669. "compatibility",
  3670. "polyfill",
  3671. "portable",
  3672. "shim"
  3673. ],
  3674. "time": "2023-01-26T09:26:14+00:00"
  3675. },
  3676. {
  3677. "name": "symfony/polyfill-php83",
  3678. "version": "v1.28.0",
  3679. "dist": {
  3680. "type": "zip",
  3681. "url": "https://mirrors.cloud.tencent.com/repository/composer/symfony/polyfill-php83/v1.28.0/symfony-polyfill-php83-v1.28.0.zip",
  3682. "reference": "b0f46ebbeeeda3e9d2faebdfbf4b4eae9b59fa11",
  3683. "shasum": ""
  3684. },
  3685. "require": {
  3686. "php": ">=7.1",
  3687. "symfony/polyfill-php80": "^1.14"
  3688. },
  3689. "type": "library",
  3690. "extra": {
  3691. "branch-alias": {
  3692. "dev-main": "1.28-dev"
  3693. },
  3694. "thanks": {
  3695. "name": "symfony/polyfill",
  3696. "url": "https://github.com/symfony/polyfill"
  3697. }
  3698. },
  3699. "autoload": {
  3700. "files": [
  3701. "bootstrap.php"
  3702. ],
  3703. "psr-4": {
  3704. "Symfony\\Polyfill\\Php83\\": ""
  3705. },
  3706. "classmap": [
  3707. "Resources/stubs"
  3708. ]
  3709. },
  3710. "license": [
  3711. "MIT"
  3712. ],
  3713. "authors": [
  3714. {
  3715. "name": "Nicolas Grekas",
  3716. "email": "p@tchwork.com"
  3717. },
  3718. {
  3719. "name": "Symfony Community",
  3720. "homepage": "https://symfony.com/contributors"
  3721. }
  3722. ],
  3723. "description": "Symfony polyfill backporting some PHP 8.3+ features to lower PHP versions",
  3724. "homepage": "https://symfony.com",
  3725. "keywords": [
  3726. "compatibility",
  3727. "polyfill",
  3728. "portable",
  3729. "shim"
  3730. ],
  3731. "time": "2023-08-16T06:22:46+00:00"
  3732. },
  3733. {
  3734. "name": "symfony/polyfill-uuid",
  3735. "version": "v1.28.0",
  3736. "dist": {
  3737. "type": "zip",
  3738. "url": "https://mirrors.cloud.tencent.com/repository/composer/symfony/polyfill-uuid/v1.28.0/symfony-polyfill-uuid-v1.28.0.zip",
  3739. "reference": "9c44518a5aff8da565c8a55dbe85d2769e6f630e",
  3740. "shasum": ""
  3741. },
  3742. "require": {
  3743. "php": ">=7.1"
  3744. },
  3745. "provide": {
  3746. "ext-uuid": "*"
  3747. },
  3748. "suggest": {
  3749. "ext-uuid": "For best performance"
  3750. },
  3751. "type": "library",
  3752. "extra": {
  3753. "branch-alias": {
  3754. "dev-main": "1.28-dev"
  3755. },
  3756. "thanks": {
  3757. "name": "symfony/polyfill",
  3758. "url": "https://github.com/symfony/polyfill"
  3759. }
  3760. },
  3761. "autoload": {
  3762. "files": [
  3763. "bootstrap.php"
  3764. ],
  3765. "psr-4": {
  3766. "Symfony\\Polyfill\\Uuid\\": ""
  3767. }
  3768. },
  3769. "license": [
  3770. "MIT"
  3771. ],
  3772. "authors": [
  3773. {
  3774. "name": "Grégoire Pineau",
  3775. "email": "lyrixx@lyrixx.info"
  3776. },
  3777. {
  3778. "name": "Symfony Community",
  3779. "homepage": "https://symfony.com/contributors"
  3780. }
  3781. ],
  3782. "description": "Symfony polyfill for uuid functions",
  3783. "homepage": "https://symfony.com",
  3784. "keywords": [
  3785. "compatibility",
  3786. "polyfill",
  3787. "portable",
  3788. "uuid"
  3789. ],
  3790. "time": "2023-01-26T09:26:14+00:00"
  3791. },
  3792. {
  3793. "name": "symfony/process",
  3794. "version": "v6.4.2",
  3795. "dist": {
  3796. "type": "zip",
  3797. "url": "https://mirrors.tencent.com/repository/composer/symfony/process/v6.4.2/symfony-process-v6.4.2.zip",
  3798. "reference": "c4b1ef0bc80533d87a2e969806172f1c2a980241",
  3799. "shasum": ""
  3800. },
  3801. "require": {
  3802. "php": ">=8.1"
  3803. },
  3804. "type": "library",
  3805. "autoload": {
  3806. "psr-4": {
  3807. "Symfony\\Component\\Process\\": ""
  3808. },
  3809. "exclude-from-classmap": [
  3810. "/Tests/"
  3811. ]
  3812. },
  3813. "license": [
  3814. "MIT"
  3815. ],
  3816. "authors": [
  3817. {
  3818. "name": "Fabien Potencier",
  3819. "email": "fabien@symfony.com"
  3820. },
  3821. {
  3822. "name": "Symfony Community",
  3823. "homepage": "https://symfony.com/contributors"
  3824. }
  3825. ],
  3826. "description": "Executes commands in sub-processes",
  3827. "homepage": "https://symfony.com",
  3828. "time": "2023-12-22T16:42:54+00:00"
  3829. },
  3830. {
  3831. "name": "symfony/routing",
  3832. "version": "v6.4.2",
  3833. "dist": {
  3834. "type": "zip",
  3835. "url": "https://mirrors.tencent.com/repository/composer/symfony/routing/v6.4.2/symfony-routing-v6.4.2.zip",
  3836. "reference": "98eab13a07fddc85766f1756129c69f207ffbc21",
  3837. "shasum": ""
  3838. },
  3839. "require": {
  3840. "php": ">=8.1",
  3841. "symfony/deprecation-contracts": "^2.5|^3"
  3842. },
  3843. "conflict": {
  3844. "doctrine/annotations": "<1.12",
  3845. "symfony/config": "<6.2",
  3846. "symfony/dependency-injection": "<5.4",
  3847. "symfony/yaml": "<5.4"
  3848. },
  3849. "require-dev": {
  3850. "doctrine/annotations": "^1.12|^2",
  3851. "psr/log": "^1|^2|^3",
  3852. "symfony/config": "^6.2|^7.0",
  3853. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  3854. "symfony/expression-language": "^5.4|^6.0|^7.0",
  3855. "symfony/http-foundation": "^5.4|^6.0|^7.0",
  3856. "symfony/yaml": "^5.4|^6.0|^7.0"
  3857. },
  3858. "type": "library",
  3859. "autoload": {
  3860. "psr-4": {
  3861. "Symfony\\Component\\Routing\\": ""
  3862. },
  3863. "exclude-from-classmap": [
  3864. "/Tests/"
  3865. ]
  3866. },
  3867. "license": [
  3868. "MIT"
  3869. ],
  3870. "authors": [
  3871. {
  3872. "name": "Fabien Potencier",
  3873. "email": "fabien@symfony.com"
  3874. },
  3875. {
  3876. "name": "Symfony Community",
  3877. "homepage": "https://symfony.com/contributors"
  3878. }
  3879. ],
  3880. "description": "Maps an HTTP request to a set of configuration variables",
  3881. "homepage": "https://symfony.com",
  3882. "keywords": [
  3883. "router",
  3884. "routing",
  3885. "uri",
  3886. "url"
  3887. ],
  3888. "time": "2023-12-29T15:34:34+00:00"
  3889. },
  3890. {
  3891. "name": "symfony/service-contracts",
  3892. "version": "v3.4.1",
  3893. "dist": {
  3894. "type": "zip",
  3895. "url": "https://mirrors.cloud.tencent.com/repository/composer/symfony/service-contracts/v3.4.1/symfony-service-contracts-v3.4.1.zip",
  3896. "reference": "fe07cbc8d837f60caf7018068e350cc5163681a0",
  3897. "shasum": ""
  3898. },
  3899. "require": {
  3900. "php": ">=8.1",
  3901. "psr/container": "^1.1|^2.0"
  3902. },
  3903. "conflict": {
  3904. "ext-psr": "<1.1|>=2"
  3905. },
  3906. "type": "library",
  3907. "extra": {
  3908. "branch-alias": {
  3909. "dev-main": "3.4-dev"
  3910. },
  3911. "thanks": {
  3912. "name": "symfony/contracts",
  3913. "url": "https://github.com/symfony/contracts"
  3914. }
  3915. },
  3916. "autoload": {
  3917. "psr-4": {
  3918. "Symfony\\Contracts\\Service\\": ""
  3919. },
  3920. "exclude-from-classmap": [
  3921. "/Test/"
  3922. ]
  3923. },
  3924. "license": [
  3925. "MIT"
  3926. ],
  3927. "authors": [
  3928. {
  3929. "name": "Nicolas Grekas",
  3930. "email": "p@tchwork.com"
  3931. },
  3932. {
  3933. "name": "Symfony Community",
  3934. "homepage": "https://symfony.com/contributors"
  3935. }
  3936. ],
  3937. "description": "Generic abstractions related to writing services",
  3938. "homepage": "https://symfony.com",
  3939. "keywords": [
  3940. "abstractions",
  3941. "contracts",
  3942. "decoupling",
  3943. "interfaces",
  3944. "interoperability",
  3945. "standards"
  3946. ],
  3947. "time": "2023-12-26T14:02:43+00:00"
  3948. },
  3949. {
  3950. "name": "symfony/string",
  3951. "version": "v7.0.2",
  3952. "dist": {
  3953. "type": "zip",
  3954. "url": "https://mirrors.cloud.tencent.com/repository/composer/symfony/string/v7.0.2/symfony-string-v7.0.2.zip",
  3955. "reference": "cc78f14f91f5e53b42044d0620961c48028ff9f5",
  3956. "shasum": ""
  3957. },
  3958. "require": {
  3959. "php": ">=8.2",
  3960. "symfony/polyfill-ctype": "~1.8",
  3961. "symfony/polyfill-intl-grapheme": "~1.0",
  3962. "symfony/polyfill-intl-normalizer": "~1.0",
  3963. "symfony/polyfill-mbstring": "~1.0"
  3964. },
  3965. "conflict": {
  3966. "symfony/translation-contracts": "<2.5"
  3967. },
  3968. "require-dev": {
  3969. "symfony/error-handler": "^6.4|^7.0",
  3970. "symfony/http-client": "^6.4|^7.0",
  3971. "symfony/intl": "^6.4|^7.0",
  3972. "symfony/translation-contracts": "^2.5|^3.0",
  3973. "symfony/var-exporter": "^6.4|^7.0"
  3974. },
  3975. "type": "library",
  3976. "autoload": {
  3977. "files": [
  3978. "Resources/functions.php"
  3979. ],
  3980. "psr-4": {
  3981. "Symfony\\Component\\String\\": ""
  3982. },
  3983. "exclude-from-classmap": [
  3984. "/Tests/"
  3985. ]
  3986. },
  3987. "license": [
  3988. "MIT"
  3989. ],
  3990. "authors": [
  3991. {
  3992. "name": "Nicolas Grekas",
  3993. "email": "p@tchwork.com"
  3994. },
  3995. {
  3996. "name": "Symfony Community",
  3997. "homepage": "https://symfony.com/contributors"
  3998. }
  3999. ],
  4000. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  4001. "homepage": "https://symfony.com",
  4002. "keywords": [
  4003. "grapheme",
  4004. "i18n",
  4005. "string",
  4006. "unicode",
  4007. "utf-8",
  4008. "utf8"
  4009. ],
  4010. "time": "2023-12-10T16:54:46+00:00"
  4011. },
  4012. {
  4013. "name": "symfony/translation",
  4014. "version": "v6.4.2",
  4015. "dist": {
  4016. "type": "zip",
  4017. "url": "https://mirrors.cloud.tencent.com/repository/composer/symfony/translation/v6.4.2/symfony-translation-v6.4.2.zip",
  4018. "reference": "a2ab2ec1a462e53016de8e8d5e8912bfd62ea681",
  4019. "shasum": ""
  4020. },
  4021. "require": {
  4022. "php": ">=8.1",
  4023. "symfony/deprecation-contracts": "^2.5|^3",
  4024. "symfony/polyfill-mbstring": "~1.0",
  4025. "symfony/translation-contracts": "^2.5|^3.0"
  4026. },
  4027. "conflict": {
  4028. "symfony/config": "<5.4",
  4029. "symfony/console": "<5.4",
  4030. "symfony/dependency-injection": "<5.4",
  4031. "symfony/http-client-contracts": "<2.5",
  4032. "symfony/http-kernel": "<5.4",
  4033. "symfony/service-contracts": "<2.5",
  4034. "symfony/twig-bundle": "<5.4",
  4035. "symfony/yaml": "<5.4"
  4036. },
  4037. "provide": {
  4038. "symfony/translation-implementation": "2.3|3.0"
  4039. },
  4040. "require-dev": {
  4041. "nikic/php-parser": "^4.13",
  4042. "psr/log": "^1|^2|^3",
  4043. "symfony/config": "^5.4|^6.0|^7.0",
  4044. "symfony/console": "^5.4|^6.0|^7.0",
  4045. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  4046. "symfony/finder": "^5.4|^6.0|^7.0",
  4047. "symfony/http-client-contracts": "^2.5|^3.0",
  4048. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  4049. "symfony/intl": "^5.4|^6.0|^7.0",
  4050. "symfony/polyfill-intl-icu": "^1.21",
  4051. "symfony/routing": "^5.4|^6.0|^7.0",
  4052. "symfony/service-contracts": "^2.5|^3",
  4053. "symfony/yaml": "^5.4|^6.0|^7.0"
  4054. },
  4055. "type": "library",
  4056. "autoload": {
  4057. "files": [
  4058. "Resources/functions.php"
  4059. ],
  4060. "psr-4": {
  4061. "Symfony\\Component\\Translation\\": ""
  4062. },
  4063. "exclude-from-classmap": [
  4064. "/Tests/"
  4065. ]
  4066. },
  4067. "license": [
  4068. "MIT"
  4069. ],
  4070. "authors": [
  4071. {
  4072. "name": "Fabien Potencier",
  4073. "email": "fabien@symfony.com"
  4074. },
  4075. {
  4076. "name": "Symfony Community",
  4077. "homepage": "https://symfony.com/contributors"
  4078. }
  4079. ],
  4080. "description": "Provides tools to internationalize your application",
  4081. "homepage": "https://symfony.com",
  4082. "time": "2023-12-18T09:25:29+00:00"
  4083. },
  4084. {
  4085. "name": "symfony/translation-contracts",
  4086. "version": "v3.4.1",
  4087. "dist": {
  4088. "type": "zip",
  4089. "url": "https://mirrors.tencent.com/repository/composer/symfony/translation-contracts/v3.4.1/symfony-translation-contracts-v3.4.1.zip",
  4090. "reference": "06450585bf65e978026bda220cdebca3f867fde7",
  4091. "shasum": ""
  4092. },
  4093. "require": {
  4094. "php": ">=8.1"
  4095. },
  4096. "type": "library",
  4097. "extra": {
  4098. "branch-alias": {
  4099. "dev-main": "3.4-dev"
  4100. },
  4101. "thanks": {
  4102. "name": "symfony/contracts",
  4103. "url": "https://github.com/symfony/contracts"
  4104. }
  4105. },
  4106. "autoload": {
  4107. "psr-4": {
  4108. "Symfony\\Contracts\\Translation\\": ""
  4109. },
  4110. "exclude-from-classmap": [
  4111. "/Test/"
  4112. ]
  4113. },
  4114. "license": [
  4115. "MIT"
  4116. ],
  4117. "authors": [
  4118. {
  4119. "name": "Nicolas Grekas",
  4120. "email": "p@tchwork.com"
  4121. },
  4122. {
  4123. "name": "Symfony Community",
  4124. "homepage": "https://symfony.com/contributors"
  4125. }
  4126. ],
  4127. "description": "Generic abstractions related to translation",
  4128. "homepage": "https://symfony.com",
  4129. "keywords": [
  4130. "abstractions",
  4131. "contracts",
  4132. "decoupling",
  4133. "interfaces",
  4134. "interoperability",
  4135. "standards"
  4136. ],
  4137. "time": "2023-12-26T14:02:43+00:00"
  4138. },
  4139. {
  4140. "name": "symfony/uid",
  4141. "version": "v6.4.0",
  4142. "dist": {
  4143. "type": "zip",
  4144. "url": "https://mirrors.cloud.tencent.com/repository/composer/symfony/uid/v6.4.0/symfony-uid-v6.4.0.zip",
  4145. "reference": "8092dd1b1a41372110d06374f99ee62f7f0b9a92",
  4146. "shasum": ""
  4147. },
  4148. "require": {
  4149. "php": ">=8.1",
  4150. "symfony/polyfill-uuid": "^1.15"
  4151. },
  4152. "require-dev": {
  4153. "symfony/console": "^5.4|^6.0|^7.0"
  4154. },
  4155. "type": "library",
  4156. "autoload": {
  4157. "psr-4": {
  4158. "Symfony\\Component\\Uid\\": ""
  4159. },
  4160. "exclude-from-classmap": [
  4161. "/Tests/"
  4162. ]
  4163. },
  4164. "license": [
  4165. "MIT"
  4166. ],
  4167. "authors": [
  4168. {
  4169. "name": "Grégoire Pineau",
  4170. "email": "lyrixx@lyrixx.info"
  4171. },
  4172. {
  4173. "name": "Nicolas Grekas",
  4174. "email": "p@tchwork.com"
  4175. },
  4176. {
  4177. "name": "Symfony Community",
  4178. "homepage": "https://symfony.com/contributors"
  4179. }
  4180. ],
  4181. "description": "Provides an object-oriented API to generate and represent UIDs",
  4182. "homepage": "https://symfony.com",
  4183. "keywords": [
  4184. "UID",
  4185. "ulid",
  4186. "uuid"
  4187. ],
  4188. "time": "2023-10-31T08:18:17+00:00"
  4189. },
  4190. {
  4191. "name": "symfony/var-dumper",
  4192. "version": "v6.4.2",
  4193. "dist": {
  4194. "type": "zip",
  4195. "url": "https://mirrors.cloud.tencent.com/repository/composer/symfony/var-dumper/v6.4.2/symfony-var-dumper-v6.4.2.zip",
  4196. "reference": "68d6573ec98715ddcae5a0a85bee3c1c27a4c33f",
  4197. "shasum": ""
  4198. },
  4199. "require": {
  4200. "php": ">=8.1",
  4201. "symfony/deprecation-contracts": "^2.5|^3",
  4202. "symfony/polyfill-mbstring": "~1.0"
  4203. },
  4204. "conflict": {
  4205. "symfony/console": "<5.4"
  4206. },
  4207. "require-dev": {
  4208. "ext-iconv": "*",
  4209. "symfony/console": "^5.4|^6.0|^7.0",
  4210. "symfony/error-handler": "^6.3|^7.0",
  4211. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  4212. "symfony/process": "^5.4|^6.0|^7.0",
  4213. "symfony/uid": "^5.4|^6.0|^7.0",
  4214. "twig/twig": "^2.13|^3.0.4"
  4215. },
  4216. "bin": [
  4217. "Resources/bin/var-dump-server"
  4218. ],
  4219. "type": "library",
  4220. "autoload": {
  4221. "files": [
  4222. "Resources/functions/dump.php"
  4223. ],
  4224. "psr-4": {
  4225. "Symfony\\Component\\VarDumper\\": ""
  4226. },
  4227. "exclude-from-classmap": [
  4228. "/Tests/"
  4229. ]
  4230. },
  4231. "license": [
  4232. "MIT"
  4233. ],
  4234. "authors": [
  4235. {
  4236. "name": "Nicolas Grekas",
  4237. "email": "p@tchwork.com"
  4238. },
  4239. {
  4240. "name": "Symfony Community",
  4241. "homepage": "https://symfony.com/contributors"
  4242. }
  4243. ],
  4244. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  4245. "homepage": "https://symfony.com",
  4246. "keywords": [
  4247. "debug",
  4248. "dump"
  4249. ],
  4250. "time": "2023-12-28T19:16:56+00:00"
  4251. },
  4252. {
  4253. "name": "tijsverkoyen/css-to-inline-styles",
  4254. "version": "v2.2.7",
  4255. "dist": {
  4256. "type": "zip",
  4257. "url": "https://mirrors.tencent.com/repository/composer/tijsverkoyen/css-to-inline-styles/v2.2.7/tijsverkoyen-css-to-inline-styles-v2.2.7.zip",
  4258. "reference": "83ee6f38df0a63106a9e4536e3060458b74ccedb",
  4259. "shasum": ""
  4260. },
  4261. "require": {
  4262. "ext-dom": "*",
  4263. "ext-libxml": "*",
  4264. "php": "^5.5 || ^7.0 || ^8.0",
  4265. "symfony/css-selector": "^2.7 || ^3.0 || ^4.0 || ^5.0 || ^6.0 || ^7.0"
  4266. },
  4267. "require-dev": {
  4268. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0 || ^7.5 || ^8.5.21 || ^9.5.10"
  4269. },
  4270. "type": "library",
  4271. "extra": {
  4272. "branch-alias": {
  4273. "dev-master": "2.2.x-dev"
  4274. }
  4275. },
  4276. "autoload": {
  4277. "psr-4": {
  4278. "TijsVerkoyen\\CssToInlineStyles\\": "src"
  4279. }
  4280. },
  4281. "license": [
  4282. "BSD-3-Clause"
  4283. ],
  4284. "authors": [
  4285. {
  4286. "name": "Tijs Verkoyen",
  4287. "email": "css_to_inline_styles@verkoyen.eu",
  4288. "role": "Developer"
  4289. }
  4290. ],
  4291. "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.",
  4292. "homepage": "https://github.com/tijsverkoyen/CssToInlineStyles",
  4293. "time": "2023-12-08T13:03:43+00:00"
  4294. },
  4295. {
  4296. "name": "tucker-eric/eloquentfilter",
  4297. "version": "3.2.0",
  4298. "dist": {
  4299. "type": "zip",
  4300. "url": "https://mirrors.cloud.tencent.com/repository/composer/tucker-eric/eloquentfilter/3.2.0/tucker-eric-eloquentfilter-3.2.0.zip",
  4301. "reference": "faaad783b7f23af7ba7e23baaa56d71af51504a9",
  4302. "shasum": ""
  4303. },
  4304. "require": {
  4305. "illuminate/config": "~6.0|~7.0|~8.0|~9.0|~10.0",
  4306. "illuminate/console": "~6.0|~7.0|~8.0|~9.0|~10.0",
  4307. "illuminate/database": "~6.0|~7.0|~8.0|~9.0|~10.0",
  4308. "illuminate/filesystem": "~6.0|~7.0|~8.0|~9.0|~10.0",
  4309. "illuminate/pagination": "~6.0|~7.0|~8.0|~9.0|~10.0",
  4310. "illuminate/support": "~6.0|~7.0|~8.0|~9.0|~10.0",
  4311. "php": ">=7.2"
  4312. },
  4313. "require-dev": {
  4314. "mockery/mockery": "^1.3",
  4315. "phpunit/phpunit": "^8"
  4316. },
  4317. "type": "library",
  4318. "extra": {
  4319. "laravel": {
  4320. "providers": [
  4321. "EloquentFilter\\ServiceProvider"
  4322. ]
  4323. }
  4324. },
  4325. "autoload": {
  4326. "psr-4": {
  4327. "EloquentFilter\\": "src/"
  4328. }
  4329. },
  4330. "license": [
  4331. "MIT"
  4332. ],
  4333. "authors": [
  4334. {
  4335. "name": "Eric Tucker",
  4336. "email": "tucker.ericm@gmail.com"
  4337. }
  4338. ],
  4339. "description": "An Eloquent way to filter Eloquent Models",
  4340. "keywords": [
  4341. "eloquent",
  4342. "filter",
  4343. "laravel",
  4344. "model",
  4345. "query",
  4346. "search"
  4347. ],
  4348. "time": "2023-02-07T18:34:53+00:00"
  4349. },
  4350. {
  4351. "name": "vlucas/phpdotenv",
  4352. "version": "v5.6.0",
  4353. "dist": {
  4354. "type": "zip",
  4355. "url": "https://mirrors.tencent.com/repository/composer/vlucas/phpdotenv/v5.6.0/vlucas-phpdotenv-v5.6.0.zip",
  4356. "reference": "2cf9fb6054c2bb1d59d1f3817706ecdb9d2934c4",
  4357. "shasum": ""
  4358. },
  4359. "require": {
  4360. "ext-pcre": "*",
  4361. "graham-campbell/result-type": "^1.1.2",
  4362. "php": "^7.2.5 || ^8.0",
  4363. "phpoption/phpoption": "^1.9.2",
  4364. "symfony/polyfill-ctype": "^1.24",
  4365. "symfony/polyfill-mbstring": "^1.24",
  4366. "symfony/polyfill-php80": "^1.24"
  4367. },
  4368. "require-dev": {
  4369. "bamarni/composer-bin-plugin": "^1.8.2",
  4370. "ext-filter": "*",
  4371. "phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2"
  4372. },
  4373. "suggest": {
  4374. "ext-filter": "Required to use the boolean validator."
  4375. },
  4376. "type": "library",
  4377. "extra": {
  4378. "bamarni-bin": {
  4379. "bin-links": true,
  4380. "forward-command": true
  4381. },
  4382. "branch-alias": {
  4383. "dev-master": "5.6-dev"
  4384. }
  4385. },
  4386. "autoload": {
  4387. "psr-4": {
  4388. "Dotenv\\": "src/"
  4389. }
  4390. },
  4391. "license": [
  4392. "BSD-3-Clause"
  4393. ],
  4394. "authors": [
  4395. {
  4396. "name": "Graham Campbell",
  4397. "email": "hello@gjcampbell.co.uk",
  4398. "homepage": "https://github.com/GrahamCampbell"
  4399. },
  4400. {
  4401. "name": "Vance Lucas",
  4402. "email": "vance@vancelucas.com",
  4403. "homepage": "https://github.com/vlucas"
  4404. }
  4405. ],
  4406. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  4407. "keywords": [
  4408. "dotenv",
  4409. "env",
  4410. "environment"
  4411. ],
  4412. "time": "2023-11-12T22:43:29+00:00"
  4413. },
  4414. {
  4415. "name": "voku/portable-ascii",
  4416. "version": "2.0.1",
  4417. "dist": {
  4418. "type": "zip",
  4419. "url": "https://mirrors.tencent.com/repository/composer/voku/portable-ascii/2.0.1/voku-portable-ascii-2.0.1.zip",
  4420. "reference": "b56450eed252f6801410d810c8e1727224ae0743",
  4421. "shasum": ""
  4422. },
  4423. "require": {
  4424. "php": ">=7.0.0"
  4425. },
  4426. "require-dev": {
  4427. "phpunit/phpunit": "~6.0 || ~7.0 || ~9.0"
  4428. },
  4429. "suggest": {
  4430. "ext-intl": "Use Intl for transliterator_transliterate() support"
  4431. },
  4432. "type": "library",
  4433. "autoload": {
  4434. "psr-4": {
  4435. "voku\\": "src/voku/"
  4436. }
  4437. },
  4438. "license": [
  4439. "MIT"
  4440. ],
  4441. "authors": [
  4442. {
  4443. "name": "Lars Moelleken",
  4444. "homepage": "http://www.moelleken.org/"
  4445. }
  4446. ],
  4447. "description": "Portable ASCII library - performance optimized (ascii) string functions for php.",
  4448. "homepage": "https://github.com/voku/portable-ascii",
  4449. "keywords": [
  4450. "ascii",
  4451. "clean",
  4452. "php"
  4453. ],
  4454. "time": "2022-03-08T17:03:00+00:00"
  4455. },
  4456. {
  4457. "name": "webmozart/assert",
  4458. "version": "1.11.0",
  4459. "dist": {
  4460. "type": "zip",
  4461. "url": "https://mirrors.cloud.tencent.com/repository/composer/webmozart/assert/1.11.0/webmozart-assert-1.11.0.zip",
  4462. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991",
  4463. "shasum": ""
  4464. },
  4465. "require": {
  4466. "ext-ctype": "*",
  4467. "php": "^7.2 || ^8.0"
  4468. },
  4469. "conflict": {
  4470. "phpstan/phpstan": "<0.12.20",
  4471. "vimeo/psalm": "<4.6.1 || 4.6.2"
  4472. },
  4473. "require-dev": {
  4474. "phpunit/phpunit": "^8.5.13"
  4475. },
  4476. "type": "library",
  4477. "extra": {
  4478. "branch-alias": {
  4479. "dev-master": "1.10-dev"
  4480. }
  4481. },
  4482. "autoload": {
  4483. "psr-4": {
  4484. "Webmozart\\Assert\\": "src/"
  4485. }
  4486. },
  4487. "license": [
  4488. "MIT"
  4489. ],
  4490. "authors": [
  4491. {
  4492. "name": "Bernhard Schussek",
  4493. "email": "bschussek@gmail.com"
  4494. }
  4495. ],
  4496. "description": "Assertions to validate method input/output with nice error messages.",
  4497. "keywords": [
  4498. "assert",
  4499. "check",
  4500. "validate"
  4501. ],
  4502. "time": "2022-06-03T18:03:27+00:00"
  4503. }
  4504. ],
  4505. "packages-dev": [
  4506. {
  4507. "name": "archtechx/enums",
  4508. "version": "v0.3.2",
  4509. "dist": {
  4510. "type": "zip",
  4511. "url": "https://mirrors.cloud.tencent.com/repository/composer/archtechx/enums/v0.3.2/archtechx-enums-v0.3.2.zip",
  4512. "reference": "475f45e682b0771253707f9403b704759a08da5f",
  4513. "shasum": ""
  4514. },
  4515. "require": {
  4516. "php": "^8.1"
  4517. },
  4518. "require-dev": {
  4519. "nunomaduro/larastan": "^1.0|^2.4",
  4520. "orchestra/testbench": "^6.9|^7.0|^8.0",
  4521. "pestphp/pest": "^1.2|^2.0",
  4522. "pestphp/pest-plugin-laravel": "^1.0|^2.0"
  4523. },
  4524. "type": "library",
  4525. "autoload": {
  4526. "psr-4": {
  4527. "ArchTech\\Enums\\": "src/"
  4528. }
  4529. },
  4530. "license": [
  4531. "MIT"
  4532. ],
  4533. "authors": [
  4534. {
  4535. "name": "Samuel Štancl",
  4536. "email": "samuel@archte.ch"
  4537. }
  4538. ],
  4539. "description": "Helpers for making PHP enums more lovable.",
  4540. "time": "2023-02-15T13:05:41+00:00"
  4541. },
  4542. {
  4543. "name": "composer/semver",
  4544. "version": "3.4.0",
  4545. "dist": {
  4546. "type": "zip",
  4547. "url": "https://mirrors.cloud.tencent.com/repository/composer/composer/semver/3.4.0/composer-semver-3.4.0.zip",
  4548. "reference": "35e8d0af4486141bc745f23a29cc2091eb624a32",
  4549. "shasum": ""
  4550. },
  4551. "require": {
  4552. "php": "^5.3.2 || ^7.0 || ^8.0"
  4553. },
  4554. "require-dev": {
  4555. "phpstan/phpstan": "^1.4",
  4556. "symfony/phpunit-bridge": "^4.2 || ^5"
  4557. },
  4558. "type": "library",
  4559. "extra": {
  4560. "branch-alias": {
  4561. "dev-main": "3.x-dev"
  4562. }
  4563. },
  4564. "autoload": {
  4565. "psr-4": {
  4566. "Composer\\Semver\\": "src"
  4567. }
  4568. },
  4569. "license": [
  4570. "MIT"
  4571. ],
  4572. "authors": [
  4573. {
  4574. "name": "Nils Adermann",
  4575. "email": "naderman@naderman.de",
  4576. "homepage": "http://www.naderman.de"
  4577. },
  4578. {
  4579. "name": "Jordi Boggiano",
  4580. "email": "j.boggiano@seld.be",
  4581. "homepage": "http://seld.be"
  4582. },
  4583. {
  4584. "name": "Rob Bast",
  4585. "email": "rob.bast@gmail.com",
  4586. "homepage": "http://robbast.nl"
  4587. }
  4588. ],
  4589. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  4590. "keywords": [
  4591. "semantic",
  4592. "semver",
  4593. "validation",
  4594. "versioning"
  4595. ],
  4596. "time": "2023-08-31T09:50:34+00:00"
  4597. },
  4598. {
  4599. "name": "dragon-code/contracts",
  4600. "version": "2.22.0",
  4601. "dist": {
  4602. "type": "zip",
  4603. "url": "https://mirrors.cloud.tencent.com/repository/composer/dragon-code/contracts/2.22.0/dragon-code-contracts-2.22.0.zip",
  4604. "reference": "5c4a9653dd5985151adcb56790bd56645edddae3",
  4605. "shasum": ""
  4606. },
  4607. "require": {
  4608. "php": "^7.2.5 || ^8.0",
  4609. "psr/http-message": "^1.0.1 || ^2.0",
  4610. "symfony/http-kernel": "^4.0 || ^5.0 || ^6.0 || ^7.0",
  4611. "symfony/polyfill-php80": "^1.23"
  4612. },
  4613. "conflict": {
  4614. "andrey-helldar/contracts": "*"
  4615. },
  4616. "require-dev": {
  4617. "illuminate/database": "^10.0",
  4618. "phpdocumentor/reflection-docblock": "^5.0"
  4619. },
  4620. "type": "library",
  4621. "autoload": {
  4622. "psr-4": {
  4623. "DragonCode\\Contracts\\": "src"
  4624. }
  4625. },
  4626. "license": [
  4627. "MIT"
  4628. ],
  4629. "authors": [
  4630. {
  4631. "name": "Andrey Helldar",
  4632. "email": "helldar@dragon-code.pro",
  4633. "homepage": "https://github.com/andrey-helldar"
  4634. }
  4635. ],
  4636. "description": "A set of contracts for any project",
  4637. "keywords": [
  4638. "contracts",
  4639. "interfaces"
  4640. ],
  4641. "time": "2023-12-09T12:44:43+00:00"
  4642. },
  4643. {
  4644. "name": "dragon-code/pretty-array",
  4645. "version": "v4.1.0",
  4646. "dist": {
  4647. "type": "zip",
  4648. "url": "https://mirrors.cloud.tencent.com/repository/composer/dragon-code/pretty-array/v4.1.0/dragon-code-pretty-array-v4.1.0.zip",
  4649. "reference": "6c84e2454491b414efbd37985c322712cdf9012f",
  4650. "shasum": ""
  4651. },
  4652. "require": {
  4653. "dragon-code/contracts": "^2.20",
  4654. "dragon-code/support": "^6.11.2",
  4655. "ext-dom": "*",
  4656. "ext-mbstring": "*",
  4657. "php": "^8.0"
  4658. },
  4659. "require-dev": {
  4660. "phpunit/phpunit": "^9.6 || ^10.2"
  4661. },
  4662. "suggest": {
  4663. "symfony/thanks": "Give thanks (in the form of a GitHub) to your fellow PHP package maintainers"
  4664. },
  4665. "type": "library",
  4666. "autoload": {
  4667. "psr-4": {
  4668. "DragonCode\\PrettyArray\\": "src"
  4669. }
  4670. },
  4671. "license": [
  4672. "MIT"
  4673. ],
  4674. "authors": [
  4675. {
  4676. "name": "Andrey Helldar",
  4677. "email": "helldar@dragon-code.pro",
  4678. "homepage": "https://github.com/andrey-helldar"
  4679. }
  4680. ],
  4681. "description": "Simple conversion of an array to a pretty view",
  4682. "keywords": [
  4683. "andrey helldar",
  4684. "array",
  4685. "dragon",
  4686. "dragon code",
  4687. "pretty",
  4688. "pretty array"
  4689. ],
  4690. "time": "2023-06-02T11:37:44+00:00"
  4691. },
  4692. {
  4693. "name": "dragon-code/support",
  4694. "version": "6.12.0",
  4695. "dist": {
  4696. "type": "zip",
  4697. "url": "https://mirrors.cloud.tencent.com/repository/composer/dragon-code/support/6.12.0/dragon-code-support-6.12.0.zip",
  4698. "reference": "caee4d59725b1331c9970f57b4f047eab40d8fa0",
  4699. "shasum": ""
  4700. },
  4701. "require": {
  4702. "dragon-code/contracts": "^2.22.0",
  4703. "ext-bcmath": "*",
  4704. "ext-ctype": "*",
  4705. "ext-dom": "*",
  4706. "ext-json": "*",
  4707. "ext-mbstring": "*",
  4708. "php": "^8.0",
  4709. "psr/http-message": "^1.0.1 || ^2.0",
  4710. "symfony/polyfill-php81": "^1.25",
  4711. "voku/portable-ascii": "^1.4.8 || ^2.0.1"
  4712. },
  4713. "conflict": {
  4714. "andrey-helldar/support": "*"
  4715. },
  4716. "require-dev": {
  4717. "illuminate/contracts": "^9.0 || ^10.0",
  4718. "phpunit/phpunit": "^9.6",
  4719. "symfony/var-dumper": "^6.0 || ^7.0"
  4720. },
  4721. "suggest": {
  4722. "dragon-code/laravel-support": "Various helper files for the Laravel and Lumen frameworks",
  4723. "symfony/thanks": "Give thanks (in the form of a GitHub) to your fellow PHP package maintainers"
  4724. },
  4725. "type": "library",
  4726. "extra": {
  4727. "dragon-code": {
  4728. "docs-generator": {
  4729. "preview": {
  4730. "brand": "php",
  4731. "vendor": "The Dragon Code"
  4732. }
  4733. }
  4734. }
  4735. },
  4736. "autoload": {
  4737. "psr-4": {
  4738. "DragonCode\\Support\\": "src"
  4739. }
  4740. },
  4741. "license": [
  4742. "MIT"
  4743. ],
  4744. "authors": [
  4745. {
  4746. "name": "Andrey Helldar",
  4747. "email": "helldar@dragon-code.pro",
  4748. "homepage": "https://github.com/andrey-helldar"
  4749. }
  4750. ],
  4751. "description": "Support package is a collection of helpers and tools for any project.",
  4752. "keywords": [
  4753. "dragon",
  4754. "dragon-code",
  4755. "framework",
  4756. "helper",
  4757. "helpers",
  4758. "laravel",
  4759. "php",
  4760. "support",
  4761. "symfony",
  4762. "yii",
  4763. "yii2"
  4764. ],
  4765. "time": "2023-12-09T12:52:29+00:00"
  4766. },
  4767. {
  4768. "name": "fakerphp/faker",
  4769. "version": "v1.23.1",
  4770. "dist": {
  4771. "type": "zip",
  4772. "url": "https://mirrors.tencent.com/repository/composer/fakerphp/faker/v1.23.1/fakerphp-faker-v1.23.1.zip",
  4773. "reference": "bfb4fe148adbf78eff521199619b93a52ae3554b",
  4774. "shasum": ""
  4775. },
  4776. "require": {
  4777. "php": "^7.4 || ^8.0",
  4778. "psr/container": "^1.0 || ^2.0",
  4779. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  4780. },
  4781. "conflict": {
  4782. "fzaninotto/faker": "*"
  4783. },
  4784. "require-dev": {
  4785. "bamarni/composer-bin-plugin": "^1.4.1",
  4786. "doctrine/persistence": "^1.3 || ^2.0",
  4787. "ext-intl": "*",
  4788. "phpunit/phpunit": "^9.5.26",
  4789. "symfony/phpunit-bridge": "^5.4.16"
  4790. },
  4791. "suggest": {
  4792. "doctrine/orm": "Required to use Faker\\ORM\\Doctrine",
  4793. "ext-curl": "Required by Faker\\Provider\\Image to download images.",
  4794. "ext-dom": "Required by Faker\\Provider\\HtmlLorem for generating random HTML.",
  4795. "ext-iconv": "Required by Faker\\Provider\\ru_RU\\Text::realText() for generating real Russian text.",
  4796. "ext-mbstring": "Required for multibyte Unicode string functionality."
  4797. },
  4798. "type": "library",
  4799. "autoload": {
  4800. "psr-4": {
  4801. "Faker\\": "src/Faker/"
  4802. }
  4803. },
  4804. "license": [
  4805. "MIT"
  4806. ],
  4807. "authors": [
  4808. {
  4809. "name": "François Zaninotto"
  4810. }
  4811. ],
  4812. "description": "Faker is a PHP library that generates fake data for you.",
  4813. "keywords": [
  4814. "data",
  4815. "faker",
  4816. "fixtures"
  4817. ],
  4818. "time": "2024-01-02T13:46:09+00:00"
  4819. },
  4820. {
  4821. "name": "filp/whoops",
  4822. "version": "2.15.4",
  4823. "dist": {
  4824. "type": "zip",
  4825. "url": "https://mirrors.tencent.com/repository/composer/filp/whoops/2.15.4/filp-whoops-2.15.4.zip",
  4826. "reference": "a139776fa3f5985a50b509f2a02ff0f709d2a546",
  4827. "shasum": ""
  4828. },
  4829. "require": {
  4830. "php": "^5.5.9 || ^7.0 || ^8.0",
  4831. "psr/log": "^1.0.1 || ^2.0 || ^3.0"
  4832. },
  4833. "require-dev": {
  4834. "mockery/mockery": "^0.9 || ^1.0",
  4835. "phpunit/phpunit": "^4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.3",
  4836. "symfony/var-dumper": "^2.6 || ^3.0 || ^4.0 || ^5.0"
  4837. },
  4838. "suggest": {
  4839. "symfony/var-dumper": "Pretty print complex values better with var-dumper available",
  4840. "whoops/soap": "Formats errors as SOAP responses"
  4841. },
  4842. "type": "library",
  4843. "extra": {
  4844. "branch-alias": {
  4845. "dev-master": "2.7-dev"
  4846. }
  4847. },
  4848. "autoload": {
  4849. "psr-4": {
  4850. "Whoops\\": "src/Whoops/"
  4851. }
  4852. },
  4853. "license": [
  4854. "MIT"
  4855. ],
  4856. "authors": [
  4857. {
  4858. "name": "Filipe Dobreira",
  4859. "homepage": "https://github.com/filp",
  4860. "role": "Developer"
  4861. }
  4862. ],
  4863. "description": "php error handling for cool kids",
  4864. "homepage": "https://filp.github.io/whoops/",
  4865. "keywords": [
  4866. "error",
  4867. "exception",
  4868. "handling",
  4869. "library",
  4870. "throwable",
  4871. "whoops"
  4872. ],
  4873. "time": "2023-11-03T12:00:00+00:00"
  4874. },
  4875. {
  4876. "name": "hamcrest/hamcrest-php",
  4877. "version": "v2.0.1",
  4878. "dist": {
  4879. "type": "zip",
  4880. "url": "https://mirrors.tencent.com/repository/composer/hamcrest/hamcrest-php/v2.0.1/hamcrest-hamcrest-php-v2.0.1.zip",
  4881. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  4882. "shasum": ""
  4883. },
  4884. "require": {
  4885. "php": "^5.3|^7.0|^8.0"
  4886. },
  4887. "replace": {
  4888. "cordoval/hamcrest-php": "*",
  4889. "davedevelopment/hamcrest-php": "*",
  4890. "kodova/hamcrest-php": "*"
  4891. },
  4892. "require-dev": {
  4893. "phpunit/php-file-iterator": "^1.4 || ^2.0",
  4894. "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0"
  4895. },
  4896. "type": "library",
  4897. "extra": {
  4898. "branch-alias": {
  4899. "dev-master": "2.1-dev"
  4900. }
  4901. },
  4902. "autoload": {
  4903. "classmap": [
  4904. "hamcrest"
  4905. ]
  4906. },
  4907. "license": [
  4908. "BSD-3-Clause"
  4909. ],
  4910. "description": "This is the PHP port of Hamcrest Matchers",
  4911. "keywords": [
  4912. "test"
  4913. ],
  4914. "time": "2020-07-09T08:09:16+00:00"
  4915. },
  4916. {
  4917. "name": "laravel-lang/actions",
  4918. "version": "1.4.1",
  4919. "dist": {
  4920. "type": "zip",
  4921. "url": "https://mirrors.cloud.tencent.com/repository/composer/laravel-lang/actions/1.4.1/laravel-lang-actions-1.4.1.zip",
  4922. "reference": "8bf23383a69c13404f9753de4884028e5c4077ce",
  4923. "shasum": ""
  4924. },
  4925. "require": {
  4926. "ext-json": "*",
  4927. "laravel-lang/publisher": "^14.0 || ^15.0 || ^16.0",
  4928. "php": "^8.1"
  4929. },
  4930. "require-dev": {
  4931. "laravel-lang/status-generator": "^2.3.1",
  4932. "phpunit/phpunit": "^10.0",
  4933. "symfony/var-dumper": "^6.3 || ^7.0"
  4934. },
  4935. "type": "library",
  4936. "extra": {
  4937. "laravel": {
  4938. "providers": [
  4939. "LaravelLang\\Actions\\ServiceProvider"
  4940. ]
  4941. }
  4942. },
  4943. "autoload": {
  4944. "psr-4": {
  4945. "LaravelLang\\Actions\\": "src/"
  4946. }
  4947. },
  4948. "license": [
  4949. "MIT"
  4950. ],
  4951. "authors": [
  4952. {
  4953. "name": "Andrey Helldar",
  4954. "email": "helldar@dragon-code.pro",
  4955. "homepage": "https://dragon-code.pro"
  4956. },
  4957. {
  4958. "name": "Laravel Lang Team",
  4959. "homepage": "https://laravel-lang.com"
  4960. }
  4961. ],
  4962. "description": "Translation of buttons and other action elements",
  4963. "keywords": [
  4964. "actions",
  4965. "buttons",
  4966. "lang",
  4967. "languages",
  4968. "laravel",
  4969. "translations"
  4970. ],
  4971. "time": "2024-01-02T09:51:24+00:00"
  4972. },
  4973. {
  4974. "name": "laravel-lang/attributes",
  4975. "version": "2.9.2",
  4976. "dist": {
  4977. "type": "zip",
  4978. "url": "https://mirrors.cloud.tencent.com/repository/composer/laravel-lang/attributes/2.9.2/laravel-lang-attributes-2.9.2.zip",
  4979. "reference": "871cc7aec0aba1e676235605c322903bedc85167",
  4980. "shasum": ""
  4981. },
  4982. "require": {
  4983. "ext-json": "*",
  4984. "laravel-lang/publisher": "^14.0 || ^15.0 || ^16.0",
  4985. "php": "^8.1"
  4986. },
  4987. "require-dev": {
  4988. "laravel-lang/status-generator": "^1.19 || ^2.0",
  4989. "phpunit/phpunit": "^10.0",
  4990. "symfony/var-dumper": "^6.0 || ^7.0"
  4991. },
  4992. "type": "library",
  4993. "extra": {
  4994. "laravel": {
  4995. "providers": [
  4996. "LaravelLang\\Attributes\\ServiceProvider"
  4997. ]
  4998. }
  4999. },
  5000. "autoload": {
  5001. "psr-4": {
  5002. "LaravelLang\\Attributes\\": "src/"
  5003. }
  5004. },
  5005. "license": [
  5006. "MIT"
  5007. ],
  5008. "authors": [
  5009. {
  5010. "name": "Andrey Helldar",
  5011. "email": "helldar@dragon-code.pro"
  5012. },
  5013. {
  5014. "name": "Laravel-Lang Team",
  5015. "homepage": "https://github.com/Laravel-Lang"
  5016. }
  5017. ],
  5018. "description": "List of 126 languages for form field names",
  5019. "keywords": [
  5020. "attributes",
  5021. "fields",
  5022. "form",
  5023. "lang",
  5024. "languages",
  5025. "laravel",
  5026. "messages",
  5027. "translations",
  5028. "validation"
  5029. ],
  5030. "time": "2024-01-13T14:39:47+00:00"
  5031. },
  5032. {
  5033. "name": "laravel-lang/common",
  5034. "version": "6.1.0",
  5035. "dist": {
  5036. "type": "zip",
  5037. "url": "https://mirrors.cloud.tencent.com/repository/composer/laravel-lang/common/6.1.0/laravel-lang-common-6.1.0.zip",
  5038. "reference": "969cf0c8870b4763554ed2b69aab9b1f391f85a4",
  5039. "shasum": ""
  5040. },
  5041. "require": {
  5042. "laravel-lang/actions": "^1.1",
  5043. "laravel-lang/attributes": "^2.7",
  5044. "laravel-lang/http-statuses": "^3.7",
  5045. "laravel-lang/json-fallback": "^2.0",
  5046. "laravel-lang/lang": "^13.12 || ^14.0",
  5047. "laravel-lang/locales": "^2.3",
  5048. "laravel-lang/publisher": "^16.0",
  5049. "php": "^8.1"
  5050. },
  5051. "require-dev": {
  5052. "dragon-code/support": "^6.12",
  5053. "orchestra/testbench": "^8.17",
  5054. "phpunit/phpunit": "^10.5.3",
  5055. "symfony/var-dumper": "^6.4 || ^7.0"
  5056. },
  5057. "type": "library",
  5058. "license": [
  5059. "MIT"
  5060. ],
  5061. "authors": [
  5062. {
  5063. "name": "Laravel-Lang Team",
  5064. "homepage": "https://github.com/Laravel-Lang"
  5065. },
  5066. {
  5067. "name": "Andrey Helldar",
  5068. "email": "helldar@dragon-code.pro",
  5069. "homepage": "https://dragon-code.pro"
  5070. }
  5071. ],
  5072. "description": "Easily connect the necessary language packs to the application",
  5073. "keywords": [
  5074. "Laravel-lang",
  5075. "actions",
  5076. "attribute",
  5077. "attributes",
  5078. "breeze",
  5079. "buttons",
  5080. "cashier",
  5081. "fortify",
  5082. "framework",
  5083. "http",
  5084. "http-status",
  5085. "http-status-code",
  5086. "i18n",
  5087. "jetstream",
  5088. "lang",
  5089. "language",
  5090. "languages",
  5091. "laravel",
  5092. "locale",
  5093. "locales",
  5094. "localization",
  5095. "localizations",
  5096. "nova",
  5097. "publisher",
  5098. "spark",
  5099. "translation",
  5100. "translations",
  5101. "ui"
  5102. ],
  5103. "time": "2023-12-21T13:39:07+00:00"
  5104. },
  5105. {
  5106. "name": "laravel-lang/http-statuses",
  5107. "version": "3.8.0",
  5108. "dist": {
  5109. "type": "zip",
  5110. "url": "https://mirrors.cloud.tencent.com/repository/composer/laravel-lang/http-statuses/3.8.0/laravel-lang-http-statuses-3.8.0.zip",
  5111. "reference": "beb0ee5943bf7a0b811d55851729876d883288a8",
  5112. "shasum": ""
  5113. },
  5114. "require": {
  5115. "ext-json": "*",
  5116. "laravel-lang/publisher": "^14.1 || ^15.0 || ^16.0",
  5117. "php": "^8.1"
  5118. },
  5119. "require-dev": {
  5120. "laravel-lang/status-generator": "^1.19 || ^2.0",
  5121. "phpunit/phpunit": "^10.0",
  5122. "symfony/var-dumper": "^6.0 || ^7.0"
  5123. },
  5124. "type": "library",
  5125. "extra": {
  5126. "laravel": {
  5127. "providers": [
  5128. "LaravelLang\\HttpStatuses\\ServiceProvider"
  5129. ]
  5130. }
  5131. },
  5132. "autoload": {
  5133. "psr-4": {
  5134. "LaravelLang\\HttpStatuses\\": "src"
  5135. }
  5136. },
  5137. "license": [
  5138. "MIT"
  5139. ],
  5140. "authors": [
  5141. {
  5142. "name": "Andrey Helldar",
  5143. "email": "helldar@dragon-code.pro"
  5144. },
  5145. {
  5146. "name": "Laravel-Lang Team",
  5147. "homepage": "https://github.com/Laravel-Lang"
  5148. }
  5149. ],
  5150. "description": "List of 126 languages for HTTP statuses",
  5151. "keywords": [
  5152. "http",
  5153. "lang",
  5154. "languages",
  5155. "laravel",
  5156. "messages",
  5157. "status",
  5158. "translations"
  5159. ],
  5160. "time": "2023-12-30T09:28:20+00:00"
  5161. },
  5162. {
  5163. "name": "laravel-lang/json-fallback",
  5164. "version": "2.0.0",
  5165. "dist": {
  5166. "type": "zip",
  5167. "url": "https://mirrors.cloud.tencent.com/repository/composer/laravel-lang/json-fallback/2.0.0/laravel-lang-json-fallback-2.0.0.zip",
  5168. "reference": "9e8d4495b2bc3a7831439cab49da82dfc837e851",
  5169. "shasum": ""
  5170. },
  5171. "require": {
  5172. "illuminate/support": "^10.0",
  5173. "illuminate/translation": "^10.0",
  5174. "php": "^8.1"
  5175. },
  5176. "require-dev": {
  5177. "orchestra/testbench": "^8.0",
  5178. "phpunit/phpunit": "^10.0"
  5179. },
  5180. "type": "library",
  5181. "autoload": {
  5182. "psr-4": {
  5183. "LaravelLang\\JsonFallback\\": "src"
  5184. }
  5185. },
  5186. "license": [
  5187. "MIT"
  5188. ],
  5189. "authors": [
  5190. {
  5191. "name": "Andrey Helldar",
  5192. "email": "helldar@dragon-code.pro",
  5193. "homepage": "https://github.com/andrey-helldar"
  5194. },
  5195. {
  5196. "name": "Felipe Dsdev",
  5197. "homepage": "https://github.com/felipe-dsdev"
  5198. }
  5199. ],
  5200. "description": "Adds support for fallback JSON string translation",
  5201. "time": "2023-12-16T18:52:42+00:00"
  5202. },
  5203. {
  5204. "name": "laravel-lang/lang",
  5205. "version": "14.2.2",
  5206. "dist": {
  5207. "type": "zip",
  5208. "url": "https://mirrors.cloud.tencent.com/repository/composer/laravel-lang/lang/14.2.2/laravel-lang-lang-14.2.2.zip",
  5209. "reference": "86a7eca3e9d68bef9ce474e0a892afdc1e718c64",
  5210. "shasum": ""
  5211. },
  5212. "require": {
  5213. "ext-json": "*",
  5214. "laravel-lang/publisher": "^14.0 || ^15.0 || ^16.0",
  5215. "php": "^8.1"
  5216. },
  5217. "require-dev": {
  5218. "laravel-lang/status-generator": "^1.19 || ^2.0",
  5219. "phpunit/phpunit": "^10.0",
  5220. "symfony/var-dumper": "^6.0 || ^7.0"
  5221. },
  5222. "type": "library",
  5223. "extra": {
  5224. "laravel": {
  5225. "providers": [
  5226. "LaravelLang\\Lang\\ServiceProvider"
  5227. ]
  5228. }
  5229. },
  5230. "autoload": {
  5231. "psr-4": {
  5232. "LaravelLang\\Lang\\": "src/"
  5233. }
  5234. },
  5235. "license": [
  5236. "MIT"
  5237. ],
  5238. "authors": [
  5239. {
  5240. "name": "Laravel-Lang Team",
  5241. "homepage": "https://github.com/Laravel-Lang"
  5242. }
  5243. ],
  5244. "description": "List of 126 languages for Laravel Framework, Laravel Jetstream, Laravel Fortify, Laravel Breeze, Laravel Cashier, Laravel Nova, Laravel Spark and Laravel UI",
  5245. "keywords": [
  5246. "lang",
  5247. "languages",
  5248. "laravel",
  5249. "lpm"
  5250. ],
  5251. "time": "2024-01-13T02:09:36+00:00"
  5252. },
  5253. {
  5254. "name": "laravel-lang/locale-list",
  5255. "version": "1.2.0",
  5256. "dist": {
  5257. "type": "zip",
  5258. "url": "https://mirrors.cloud.tencent.com/repository/composer/laravel-lang/locale-list/1.2.0/laravel-lang-locale-list-1.2.0.zip",
  5259. "reference": "87fb1a871058c47e63e0399395ea010ded6e8bb2",
  5260. "shasum": ""
  5261. },
  5262. "require": {
  5263. "archtechx/enums": "^0.3.2",
  5264. "php": "^8.1"
  5265. },
  5266. "type": "library",
  5267. "autoload": {
  5268. "psr-4": {
  5269. "LaravelLang\\LocaleList\\": "src/"
  5270. }
  5271. },
  5272. "license": [
  5273. "MIT"
  5274. ],
  5275. "authors": [
  5276. {
  5277. "name": "Andrey Helldar",
  5278. "email": "helldar@dragon-code.pro",
  5279. "homepage": "https://dragon-code.pro"
  5280. },
  5281. {
  5282. "name": "Laravel-Lang Team",
  5283. "homepage": "https://laravel-lang.com"
  5284. }
  5285. ],
  5286. "description": "List of localizations available in Laravel Lang projects",
  5287. "keywords": [
  5288. "Laravel-lang",
  5289. "lang",
  5290. "languages",
  5291. "laravel",
  5292. "locale",
  5293. "locales",
  5294. "localization",
  5295. "translation",
  5296. "translations"
  5297. ],
  5298. "time": "2023-12-29T22:55:57+00:00"
  5299. },
  5300. {
  5301. "name": "laravel-lang/locales",
  5302. "version": "2.4.0",
  5303. "dist": {
  5304. "type": "zip",
  5305. "url": "https://mirrors.cloud.tencent.com/repository/composer/laravel-lang/locales/2.4.0/laravel-lang-locales-2.4.0.zip",
  5306. "reference": "811c4752b33133450e5eafce2d7a92dc505f79a9",
  5307. "shasum": ""
  5308. },
  5309. "require": {
  5310. "archtechx/enums": "^0.3.2",
  5311. "dragon-code/support": "^6.11.3",
  5312. "ext-json": "*",
  5313. "illuminate/collections": "^10.0",
  5314. "laravel-lang/locale-list": "^1.2",
  5315. "laravel-lang/native-country-names": "^1.3",
  5316. "laravel-lang/native-currency-names": "^1.3",
  5317. "laravel-lang/native-locale-names": "^2.2",
  5318. "php": "^8.1"
  5319. },
  5320. "require-dev": {
  5321. "orchestra/testbench": "^8.0",
  5322. "pestphp/pest": "^2.24.1",
  5323. "symfony/var-dumper": "^6.0 || ^7.0"
  5324. },
  5325. "type": "library",
  5326. "extra": {
  5327. "laravel": {
  5328. "providers": [
  5329. "LaravelLang\\Locales\\ServiceProvider"
  5330. ]
  5331. }
  5332. },
  5333. "autoload": {
  5334. "psr-4": {
  5335. "LaravelLang\\Locales\\": "src/"
  5336. }
  5337. },
  5338. "license": [
  5339. "MIT"
  5340. ],
  5341. "authors": [
  5342. {
  5343. "name": "Andrey Helldar",
  5344. "email": "helldar@dragon-code.pro"
  5345. },
  5346. {
  5347. "name": "Laravel-Lang Team",
  5348. "homepage": "https://laravel-lang.com"
  5349. }
  5350. ],
  5351. "description": "Basic functionality for working with localizations",
  5352. "keywords": [
  5353. "laravel",
  5354. "locale",
  5355. "locales",
  5356. "localization",
  5357. "translation",
  5358. "translations"
  5359. ],
  5360. "time": "2023-12-29T23:16:40+00:00"
  5361. },
  5362. {
  5363. "name": "laravel-lang/native-country-names",
  5364. "version": "1.3.0",
  5365. "dist": {
  5366. "type": "zip",
  5367. "url": "https://mirrors.cloud.tencent.com/repository/composer/laravel-lang/native-country-names/1.3.0/laravel-lang-native-country-names-1.3.0.zip",
  5368. "reference": "cea0d0fbb8aeb9c8b426c05796034295c3d1cabb",
  5369. "shasum": ""
  5370. },
  5371. "require": {
  5372. "dragon-code/support": "^6.11",
  5373. "ext-json": "*",
  5374. "illuminate/collections": "^10.0",
  5375. "php": "^8.1"
  5376. },
  5377. "require-dev": {
  5378. "illuminate/support": "^10.0",
  5379. "laravel-lang/locale-list": "^1.2",
  5380. "pestphp/pest": "^2.24.3",
  5381. "punic/punic": "^3.8",
  5382. "symfony/console": "^6.3 || ^7.0",
  5383. "symfony/process": "^6.3 || ^7.0",
  5384. "symfony/var-dumper": "^6.3 || ^7.0",
  5385. "vlucas/phpdotenv": "^5.6"
  5386. },
  5387. "type": "library",
  5388. "autoload": {
  5389. "psr-4": {
  5390. "LaravelLang\\NativeCountryNames\\": "src/"
  5391. }
  5392. },
  5393. "license": [
  5394. "MIT"
  5395. ],
  5396. "authors": [
  5397. {
  5398. "name": "Andrey Helldar",
  5399. "email": "helldar@dragon-code.pro"
  5400. },
  5401. {
  5402. "name": "Laravel-Lang Team",
  5403. "homepage": "https://laravel-lang.com"
  5404. }
  5405. ],
  5406. "description": "The project contains native translations of country names",
  5407. "keywords": [
  5408. "Laravel-lang",
  5409. "countries",
  5410. "country",
  5411. "lang",
  5412. "languages",
  5413. "laravel",
  5414. "locale",
  5415. "locales",
  5416. "localization",
  5417. "territories",
  5418. "territory",
  5419. "translation",
  5420. "translations"
  5421. ],
  5422. "time": "2023-12-29T23:38:20+00:00"
  5423. },
  5424. {
  5425. "name": "laravel-lang/native-currency-names",
  5426. "version": "1.3.0",
  5427. "dist": {
  5428. "type": "zip",
  5429. "url": "https://mirrors.cloud.tencent.com/repository/composer/laravel-lang/native-currency-names/1.3.0/laravel-lang-native-currency-names-1.3.0.zip",
  5430. "reference": "21662cd9f31edf1817439344d5c4519b627679b5",
  5431. "shasum": ""
  5432. },
  5433. "require": {
  5434. "dragon-code/support": "^6.11",
  5435. "ext-json": "*",
  5436. "illuminate/collections": "^10.0",
  5437. "php": "^8.1"
  5438. },
  5439. "require-dev": {
  5440. "illuminate/support": "^10.0",
  5441. "laravel-lang/locale-list": "^1.2",
  5442. "pestphp/pest": "^2.24.3",
  5443. "punic/punic": "^3.8",
  5444. "symfony/console": "^6.3 || ^7.0",
  5445. "symfony/process": "^6.3 || ^7.0",
  5446. "symfony/var-dumper": "^6.3 || ^7.0",
  5447. "vlucas/phpdotenv": "^5.6"
  5448. },
  5449. "type": "library",
  5450. "autoload": {
  5451. "psr-4": {
  5452. "LaravelLang\\NativeCurrencyNames\\": "src/"
  5453. }
  5454. },
  5455. "license": [
  5456. "MIT"
  5457. ],
  5458. "authors": [
  5459. {
  5460. "name": "Andrey Helldar",
  5461. "email": "helldar@dragon-code.pro"
  5462. },
  5463. {
  5464. "name": "Laravel-Lang Team",
  5465. "homepage": "https://laravel-lang.com"
  5466. }
  5467. ],
  5468. "description": "The project contains native translations of currency names",
  5469. "keywords": [
  5470. "Laravel-lang",
  5471. "currency",
  5472. "lang",
  5473. "languages",
  5474. "laravel",
  5475. "locale",
  5476. "locales",
  5477. "localization",
  5478. "translation",
  5479. "translations"
  5480. ],
  5481. "time": "2023-12-29T23:30:58+00:00"
  5482. },
  5483. {
  5484. "name": "laravel-lang/native-locale-names",
  5485. "version": "2.2.0",
  5486. "dist": {
  5487. "type": "zip",
  5488. "url": "https://mirrors.cloud.tencent.com/repository/composer/laravel-lang/native-locale-names/2.2.0/laravel-lang-native-locale-names-2.2.0.zip",
  5489. "reference": "801136e89f76c8b09296288b99fd75740e02ec6a",
  5490. "shasum": ""
  5491. },
  5492. "require": {
  5493. "dragon-code/support": "^6.11",
  5494. "ext-json": "*",
  5495. "php": "^8.1"
  5496. },
  5497. "require-dev": {
  5498. "illuminate/support": "^10.31",
  5499. "laravel-lang/locale-list": "^1.2",
  5500. "pestphp/pest": "^2.24.3",
  5501. "punic/punic": "^3.8",
  5502. "symfony/console": "^6.3 || ^7.0",
  5503. "symfony/process": "^6.3 || ^7.0",
  5504. "symfony/var-dumper": "^6.3 || ^7.0"
  5505. },
  5506. "type": "library",
  5507. "autoload": {
  5508. "psr-4": {
  5509. "LaravelLang\\NativeLocaleNames\\": "src/"
  5510. }
  5511. },
  5512. "license": [
  5513. "MIT"
  5514. ],
  5515. "authors": [
  5516. {
  5517. "name": "Andrey Helldar",
  5518. "email": "helldar@dragon-code.pro"
  5519. },
  5520. {
  5521. "name": "Laravel-Lang Team",
  5522. "homepage": "https://laravel-lang.com"
  5523. }
  5524. ],
  5525. "description": "The project contains native translations of locale names",
  5526. "keywords": [
  5527. "Laravel-lang",
  5528. "lang",
  5529. "languages",
  5530. "laravel",
  5531. "locale",
  5532. "locales",
  5533. "localization",
  5534. "translation",
  5535. "translations"
  5536. ],
  5537. "time": "2023-12-29T23:18:45+00:00"
  5538. },
  5539. {
  5540. "name": "laravel-lang/publisher",
  5541. "version": "16.2.0",
  5542. "dist": {
  5543. "type": "zip",
  5544. "url": "https://mirrors.cloud.tencent.com/repository/composer/laravel-lang/publisher/16.2.0/laravel-lang-publisher-16.2.0.zip",
  5545. "reference": "463bff0a69837274fbdbf1a1d6d508cbf74ffe7d",
  5546. "shasum": ""
  5547. },
  5548. "require": {
  5549. "composer/semver": "^3.4",
  5550. "dragon-code/pretty-array": "^4.1",
  5551. "dragon-code/support": "^6.11.3",
  5552. "ext-json": "*",
  5553. "illuminate/collections": "^10.0",
  5554. "illuminate/console": "^10.0",
  5555. "illuminate/support": "^10.0",
  5556. "laravel-lang/locales": "^2.3",
  5557. "league/commonmark": "^2.4.1",
  5558. "league/config": "^1.2",
  5559. "php": "^8.1"
  5560. },
  5561. "conflict": {
  5562. "laravel-lang/attributes": "<2.0",
  5563. "laravel-lang/http-statuses": "<3.0",
  5564. "laravel-lang/lang": "<11.0"
  5565. },
  5566. "require-dev": {
  5567. "laravel-lang/json-fallback": "^2.0",
  5568. "orchestra/testbench": "^8.14",
  5569. "phpunit/phpunit": "^10.4.2",
  5570. "symfony/var-dumper": "^6.3.6 || ^7.0"
  5571. },
  5572. "type": "library",
  5573. "extra": {
  5574. "laravel": {
  5575. "providers": [
  5576. "LaravelLang\\Publisher\\ServiceProvider"
  5577. ]
  5578. }
  5579. },
  5580. "autoload": {
  5581. "psr-4": {
  5582. "LaravelLang\\Publisher\\": "src/"
  5583. }
  5584. },
  5585. "license": [
  5586. "MIT"
  5587. ],
  5588. "authors": [
  5589. {
  5590. "name": "Andrey Helldar",
  5591. "email": "helldar@dragon-code.pro"
  5592. },
  5593. {
  5594. "name": "Laravel-Lang Team",
  5595. "homepage": "https://laravel-lang.com"
  5596. }
  5597. ],
  5598. "description": "Publisher lang files for the Laravel and Lumen Frameworks, Jetstream, Fortify, Cashier, Spark and Nova from Laravel-Lang/lang",
  5599. "keywords": [
  5600. "Laravel-lang",
  5601. "breeze",
  5602. "cashier",
  5603. "fortify",
  5604. "framework",
  5605. "i18n",
  5606. "jetstream",
  5607. "lang",
  5608. "languages",
  5609. "laravel",
  5610. "locale",
  5611. "locales",
  5612. "localization",
  5613. "localizations",
  5614. "lpm",
  5615. "lumen",
  5616. "nova",
  5617. "publisher",
  5618. "spark",
  5619. "trans",
  5620. "translation",
  5621. "translations",
  5622. "validations"
  5623. ],
  5624. "time": "2023-12-16T18:59:23+00:00"
  5625. },
  5626. {
  5627. "name": "laravel/pint",
  5628. "version": "v1.13.7",
  5629. "dist": {
  5630. "type": "zip",
  5631. "url": "https://mirrors.cloud.tencent.com/repository/composer/laravel/pint/v1.13.7/laravel-pint-v1.13.7.zip",
  5632. "reference": "4157768980dbd977f1c4b4cc94997416d8b30ece",
  5633. "shasum": ""
  5634. },
  5635. "require": {
  5636. "ext-json": "*",
  5637. "ext-mbstring": "*",
  5638. "ext-tokenizer": "*",
  5639. "ext-xml": "*",
  5640. "php": "^8.1.0"
  5641. },
  5642. "require-dev": {
  5643. "friendsofphp/php-cs-fixer": "^3.38.0",
  5644. "illuminate/view": "^10.30.1",
  5645. "laravel-zero/framework": "^10.3.0",
  5646. "mockery/mockery": "^1.6.6",
  5647. "nunomaduro/larastan": "^2.6.4",
  5648. "nunomaduro/termwind": "^1.15.1",
  5649. "pestphp/pest": "^2.24.2"
  5650. },
  5651. "bin": [
  5652. "builds/pint"
  5653. ],
  5654. "type": "project",
  5655. "autoload": {
  5656. "psr-4": {
  5657. "App\\": "app/",
  5658. "Database\\Seeders\\": "database/seeders/",
  5659. "Database\\Factories\\": "database/factories/"
  5660. }
  5661. },
  5662. "license": [
  5663. "MIT"
  5664. ],
  5665. "authors": [
  5666. {
  5667. "name": "Nuno Maduro",
  5668. "email": "enunomaduro@gmail.com"
  5669. }
  5670. ],
  5671. "description": "An opinionated code formatter for PHP.",
  5672. "homepage": "https://laravel.com",
  5673. "keywords": [
  5674. "format",
  5675. "formatter",
  5676. "lint",
  5677. "linter",
  5678. "php"
  5679. ],
  5680. "time": "2023-12-05T19:43:12+00:00"
  5681. },
  5682. {
  5683. "name": "laravel/sail",
  5684. "version": "v1.26.3",
  5685. "dist": {
  5686. "type": "zip",
  5687. "url": "https://mirrors.cloud.tencent.com/repository/composer/laravel/sail/v1.26.3/laravel-sail-v1.26.3.zip",
  5688. "reference": "fa1ad5fbb03686dfc752bfd1861d86091cc1c32d",
  5689. "shasum": ""
  5690. },
  5691. "require": {
  5692. "illuminate/console": "^9.0|^10.0|^11.0",
  5693. "illuminate/contracts": "^9.0|^10.0|^11.0",
  5694. "illuminate/support": "^9.0|^10.0|^11.0",
  5695. "php": "^8.0",
  5696. "symfony/yaml": "^6.0|^7.0"
  5697. },
  5698. "require-dev": {
  5699. "orchestra/testbench": "^7.0|^8.0|^9.0",
  5700. "phpstan/phpstan": "^1.10"
  5701. },
  5702. "bin": [
  5703. "bin/sail"
  5704. ],
  5705. "type": "library",
  5706. "extra": {
  5707. "branch-alias": {
  5708. "dev-master": "1.x-dev"
  5709. },
  5710. "laravel": {
  5711. "providers": [
  5712. "Laravel\\Sail\\SailServiceProvider"
  5713. ]
  5714. }
  5715. },
  5716. "autoload": {
  5717. "psr-4": {
  5718. "Laravel\\Sail\\": "src/"
  5719. }
  5720. },
  5721. "license": [
  5722. "MIT"
  5723. ],
  5724. "authors": [
  5725. {
  5726. "name": "Taylor Otwell",
  5727. "email": "taylor@laravel.com"
  5728. }
  5729. ],
  5730. "description": "Docker files for running a basic Laravel application.",
  5731. "keywords": [
  5732. "docker",
  5733. "laravel"
  5734. ],
  5735. "time": "2023-12-02T18:26:39+00:00"
  5736. },
  5737. {
  5738. "name": "mockery/mockery",
  5739. "version": "1.6.7",
  5740. "dist": {
  5741. "type": "zip",
  5742. "url": "https://mirrors.tencent.com/repository/composer/mockery/mockery/1.6.7/mockery-mockery-1.6.7.zip",
  5743. "reference": "0cc058854b3195ba21dc6b1f7b1f60f4ef3a9c06",
  5744. "shasum": ""
  5745. },
  5746. "require": {
  5747. "hamcrest/hamcrest-php": "^2.0.1",
  5748. "lib-pcre": ">=7.0",
  5749. "php": ">=7.3"
  5750. },
  5751. "conflict": {
  5752. "phpunit/phpunit": "<8.0"
  5753. },
  5754. "require-dev": {
  5755. "phpunit/phpunit": "^8.5 || ^9.6.10",
  5756. "symplify/easy-coding-standard": "^12.0.8"
  5757. },
  5758. "type": "library",
  5759. "autoload": {
  5760. "files": [
  5761. "library/helpers.php",
  5762. "library/Mockery.php"
  5763. ],
  5764. "psr-4": {
  5765. "Mockery\\": "library/Mockery"
  5766. }
  5767. },
  5768. "license": [
  5769. "BSD-3-Clause"
  5770. ],
  5771. "authors": [
  5772. {
  5773. "name": "Pádraic Brady",
  5774. "email": "padraic.brady@gmail.com",
  5775. "homepage": "https://github.com/padraic",
  5776. "role": "Author"
  5777. },
  5778. {
  5779. "name": "Dave Marshall",
  5780. "email": "dave.marshall@atstsolutions.co.uk",
  5781. "homepage": "https://davedevelopment.co.uk",
  5782. "role": "Developer"
  5783. },
  5784. {
  5785. "name": "Nathanael Esayeas",
  5786. "email": "nathanael.esayeas@protonmail.com",
  5787. "homepage": "https://github.com/ghostwriter",
  5788. "role": "Lead Developer"
  5789. }
  5790. ],
  5791. "description": "Mockery is a simple yet flexible PHP mock object framework",
  5792. "homepage": "https://github.com/mockery/mockery",
  5793. "keywords": [
  5794. "BDD",
  5795. "TDD",
  5796. "library",
  5797. "mock",
  5798. "mock objects",
  5799. "mockery",
  5800. "stub",
  5801. "test",
  5802. "test double",
  5803. "testing"
  5804. ],
  5805. "time": "2023-12-10T02:24:34+00:00"
  5806. },
  5807. {
  5808. "name": "myclabs/deep-copy",
  5809. "version": "1.11.1",
  5810. "dist": {
  5811. "type": "zip",
  5812. "url": "https://mirrors.tencent.com/repository/composer/myclabs/deep-copy/1.11.1/myclabs-deep-copy-1.11.1.zip",
  5813. "reference": "7284c22080590fb39f2ffa3e9057f10a4ddd0e0c",
  5814. "shasum": ""
  5815. },
  5816. "require": {
  5817. "php": "^7.1 || ^8.0"
  5818. },
  5819. "conflict": {
  5820. "doctrine/collections": "<1.6.8",
  5821. "doctrine/common": "<2.13.3 || >=3,<3.2.2"
  5822. },
  5823. "require-dev": {
  5824. "doctrine/collections": "^1.6.8",
  5825. "doctrine/common": "^2.13.3 || ^3.2.2",
  5826. "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
  5827. },
  5828. "type": "library",
  5829. "autoload": {
  5830. "files": [
  5831. "src/DeepCopy/deep_copy.php"
  5832. ],
  5833. "psr-4": {
  5834. "DeepCopy\\": "src/DeepCopy/"
  5835. }
  5836. },
  5837. "license": [
  5838. "MIT"
  5839. ],
  5840. "description": "Create deep copies (clones) of your objects",
  5841. "keywords": [
  5842. "clone",
  5843. "copy",
  5844. "duplicate",
  5845. "object",
  5846. "object graph"
  5847. ],
  5848. "time": "2023-03-08T13:26:56+00:00"
  5849. },
  5850. {
  5851. "name": "nunomaduro/collision",
  5852. "version": "v7.10.0",
  5853. "dist": {
  5854. "type": "zip",
  5855. "url": "https://mirrors.tencent.com/repository/composer/nunomaduro/collision/v7.10.0/nunomaduro-collision-v7.10.0.zip",
  5856. "reference": "49ec67fa7b002712da8526678abd651c09f375b2",
  5857. "shasum": ""
  5858. },
  5859. "require": {
  5860. "filp/whoops": "^2.15.3",
  5861. "nunomaduro/termwind": "^1.15.1",
  5862. "php": "^8.1.0",
  5863. "symfony/console": "^6.3.4"
  5864. },
  5865. "conflict": {
  5866. "laravel/framework": ">=11.0.0"
  5867. },
  5868. "require-dev": {
  5869. "brianium/paratest": "^7.3.0",
  5870. "laravel/framework": "^10.28.0",
  5871. "laravel/pint": "^1.13.3",
  5872. "laravel/sail": "^1.25.0",
  5873. "laravel/sanctum": "^3.3.1",
  5874. "laravel/tinker": "^2.8.2",
  5875. "nunomaduro/larastan": "^2.6.4",
  5876. "orchestra/testbench-core": "^8.13.0",
  5877. "pestphp/pest": "^2.23.2",
  5878. "phpunit/phpunit": "^10.4.1",
  5879. "sebastian/environment": "^6.0.1",
  5880. "spatie/laravel-ignition": "^2.3.1"
  5881. },
  5882. "type": "library",
  5883. "extra": {
  5884. "laravel": {
  5885. "providers": [
  5886. "NunoMaduro\\Collision\\Adapters\\Laravel\\CollisionServiceProvider"
  5887. ]
  5888. }
  5889. },
  5890. "autoload": {
  5891. "files": [
  5892. "./src/Adapters/Phpunit/Autoload.php"
  5893. ],
  5894. "psr-4": {
  5895. "NunoMaduro\\Collision\\": "src/"
  5896. }
  5897. },
  5898. "license": [
  5899. "MIT"
  5900. ],
  5901. "authors": [
  5902. {
  5903. "name": "Nuno Maduro",
  5904. "email": "enunomaduro@gmail.com"
  5905. }
  5906. ],
  5907. "description": "Cli error handling for console/command-line PHP applications.",
  5908. "keywords": [
  5909. "artisan",
  5910. "cli",
  5911. "command-line",
  5912. "console",
  5913. "error",
  5914. "handling",
  5915. "laravel",
  5916. "laravel-zero",
  5917. "php",
  5918. "symfony"
  5919. ],
  5920. "time": "2023-10-11T15:45:01+00:00"
  5921. },
  5922. {
  5923. "name": "phar-io/manifest",
  5924. "version": "2.0.3",
  5925. "dist": {
  5926. "type": "zip",
  5927. "url": "https://mirrors.tencent.com/repository/composer/phar-io/manifest/2.0.3/phar-io-manifest-2.0.3.zip",
  5928. "reference": "97803eca37d319dfa7826cc2437fc020857acb53",
  5929. "shasum": ""
  5930. },
  5931. "require": {
  5932. "ext-dom": "*",
  5933. "ext-phar": "*",
  5934. "ext-xmlwriter": "*",
  5935. "phar-io/version": "^3.0.1",
  5936. "php": "^7.2 || ^8.0"
  5937. },
  5938. "type": "library",
  5939. "extra": {
  5940. "branch-alias": {
  5941. "dev-master": "2.0.x-dev"
  5942. }
  5943. },
  5944. "autoload": {
  5945. "classmap": [
  5946. "src/"
  5947. ]
  5948. },
  5949. "license": [
  5950. "BSD-3-Clause"
  5951. ],
  5952. "authors": [
  5953. {
  5954. "name": "Arne Blankerts",
  5955. "email": "arne@blankerts.de",
  5956. "role": "Developer"
  5957. },
  5958. {
  5959. "name": "Sebastian Heuer",
  5960. "email": "sebastian@phpeople.de",
  5961. "role": "Developer"
  5962. },
  5963. {
  5964. "name": "Sebastian Bergmann",
  5965. "email": "sebastian@phpunit.de",
  5966. "role": "Developer"
  5967. }
  5968. ],
  5969. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  5970. "time": "2021-07-20T11:28:43+00:00"
  5971. },
  5972. {
  5973. "name": "phar-io/version",
  5974. "version": "3.2.1",
  5975. "dist": {
  5976. "type": "zip",
  5977. "url": "https://mirrors.tencent.com/repository/composer/phar-io/version/3.2.1/phar-io-version-3.2.1.zip",
  5978. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  5979. "shasum": ""
  5980. },
  5981. "require": {
  5982. "php": "^7.2 || ^8.0"
  5983. },
  5984. "type": "library",
  5985. "autoload": {
  5986. "classmap": [
  5987. "src/"
  5988. ]
  5989. },
  5990. "license": [
  5991. "BSD-3-Clause"
  5992. ],
  5993. "authors": [
  5994. {
  5995. "name": "Arne Blankerts",
  5996. "email": "arne@blankerts.de",
  5997. "role": "Developer"
  5998. },
  5999. {
  6000. "name": "Sebastian Heuer",
  6001. "email": "sebastian@phpeople.de",
  6002. "role": "Developer"
  6003. },
  6004. {
  6005. "name": "Sebastian Bergmann",
  6006. "email": "sebastian@phpunit.de",
  6007. "role": "Developer"
  6008. }
  6009. ],
  6010. "description": "Library for handling version information and constraints",
  6011. "time": "2022-02-21T01:04:05+00:00"
  6012. },
  6013. {
  6014. "name": "phpunit/php-code-coverage",
  6015. "version": "10.1.11",
  6016. "dist": {
  6017. "type": "zip",
  6018. "url": "https://mirrors.cloud.tencent.com/repository/composer/phpunit/php-code-coverage/10.1.11/phpunit-php-code-coverage-10.1.11.zip",
  6019. "reference": "78c3b7625965c2513ee96569a4dbb62601784145",
  6020. "shasum": ""
  6021. },
  6022. "require": {
  6023. "ext-dom": "*",
  6024. "ext-libxml": "*",
  6025. "ext-xmlwriter": "*",
  6026. "nikic/php-parser": "^4.18 || ^5.0",
  6027. "php": ">=8.1",
  6028. "phpunit/php-file-iterator": "^4.0",
  6029. "phpunit/php-text-template": "^3.0",
  6030. "sebastian/code-unit-reverse-lookup": "^3.0",
  6031. "sebastian/complexity": "^3.0",
  6032. "sebastian/environment": "^6.0",
  6033. "sebastian/lines-of-code": "^2.0",
  6034. "sebastian/version": "^4.0",
  6035. "theseer/tokenizer": "^1.2.0"
  6036. },
  6037. "require-dev": {
  6038. "phpunit/phpunit": "^10.1"
  6039. },
  6040. "suggest": {
  6041. "ext-pcov": "PHP extension that provides line coverage",
  6042. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  6043. },
  6044. "type": "library",
  6045. "extra": {
  6046. "branch-alias": {
  6047. "dev-main": "10.1-dev"
  6048. }
  6049. },
  6050. "autoload": {
  6051. "classmap": [
  6052. "src/"
  6053. ]
  6054. },
  6055. "license": [
  6056. "BSD-3-Clause"
  6057. ],
  6058. "authors": [
  6059. {
  6060. "name": "Sebastian Bergmann",
  6061. "email": "sebastian@phpunit.de",
  6062. "role": "lead"
  6063. }
  6064. ],
  6065. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  6066. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  6067. "keywords": [
  6068. "coverage",
  6069. "testing",
  6070. "xunit"
  6071. ],
  6072. "time": "2023-12-21T15:38:30+00:00"
  6073. },
  6074. {
  6075. "name": "phpunit/php-file-iterator",
  6076. "version": "4.1.0",
  6077. "dist": {
  6078. "type": "zip",
  6079. "url": "https://mirrors.tencent.com/repository/composer/phpunit/php-file-iterator/4.1.0/phpunit-php-file-iterator-4.1.0.zip",
  6080. "reference": "a95037b6d9e608ba092da1b23931e537cadc3c3c",
  6081. "shasum": ""
  6082. },
  6083. "require": {
  6084. "php": ">=8.1"
  6085. },
  6086. "require-dev": {
  6087. "phpunit/phpunit": "^10.0"
  6088. },
  6089. "type": "library",
  6090. "extra": {
  6091. "branch-alias": {
  6092. "dev-main": "4.0-dev"
  6093. }
  6094. },
  6095. "autoload": {
  6096. "classmap": [
  6097. "src/"
  6098. ]
  6099. },
  6100. "license": [
  6101. "BSD-3-Clause"
  6102. ],
  6103. "authors": [
  6104. {
  6105. "name": "Sebastian Bergmann",
  6106. "email": "sebastian@phpunit.de",
  6107. "role": "lead"
  6108. }
  6109. ],
  6110. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  6111. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  6112. "keywords": [
  6113. "filesystem",
  6114. "iterator"
  6115. ],
  6116. "time": "2023-08-31T06:24:48+00:00"
  6117. },
  6118. {
  6119. "name": "phpunit/php-invoker",
  6120. "version": "4.0.0",
  6121. "dist": {
  6122. "type": "zip",
  6123. "url": "https://mirrors.tencent.com/repository/composer/phpunit/php-invoker/4.0.0/phpunit-php-invoker-4.0.0.zip",
  6124. "reference": "f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7",
  6125. "shasum": ""
  6126. },
  6127. "require": {
  6128. "php": ">=8.1"
  6129. },
  6130. "require-dev": {
  6131. "ext-pcntl": "*",
  6132. "phpunit/phpunit": "^10.0"
  6133. },
  6134. "suggest": {
  6135. "ext-pcntl": "*"
  6136. },
  6137. "type": "library",
  6138. "extra": {
  6139. "branch-alias": {
  6140. "dev-main": "4.0-dev"
  6141. }
  6142. },
  6143. "autoload": {
  6144. "classmap": [
  6145. "src/"
  6146. ]
  6147. },
  6148. "license": [
  6149. "BSD-3-Clause"
  6150. ],
  6151. "authors": [
  6152. {
  6153. "name": "Sebastian Bergmann",
  6154. "email": "sebastian@phpunit.de",
  6155. "role": "lead"
  6156. }
  6157. ],
  6158. "description": "Invoke callables with a timeout",
  6159. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  6160. "keywords": [
  6161. "process"
  6162. ],
  6163. "time": "2023-02-03T06:56:09+00:00"
  6164. },
  6165. {
  6166. "name": "phpunit/php-text-template",
  6167. "version": "3.0.1",
  6168. "dist": {
  6169. "type": "zip",
  6170. "url": "https://mirrors.cloud.tencent.com/repository/composer/phpunit/php-text-template/3.0.1/phpunit-php-text-template-3.0.1.zip",
  6171. "reference": "0c7b06ff49e3d5072f057eb1fa59258bf287a748",
  6172. "shasum": ""
  6173. },
  6174. "require": {
  6175. "php": ">=8.1"
  6176. },
  6177. "require-dev": {
  6178. "phpunit/phpunit": "^10.0"
  6179. },
  6180. "type": "library",
  6181. "extra": {
  6182. "branch-alias": {
  6183. "dev-main": "3.0-dev"
  6184. }
  6185. },
  6186. "autoload": {
  6187. "classmap": [
  6188. "src/"
  6189. ]
  6190. },
  6191. "license": [
  6192. "BSD-3-Clause"
  6193. ],
  6194. "authors": [
  6195. {
  6196. "name": "Sebastian Bergmann",
  6197. "email": "sebastian@phpunit.de",
  6198. "role": "lead"
  6199. }
  6200. ],
  6201. "description": "Simple template engine.",
  6202. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  6203. "keywords": [
  6204. "template"
  6205. ],
  6206. "time": "2023-08-31T14:07:24+00:00"
  6207. },
  6208. {
  6209. "name": "phpunit/php-timer",
  6210. "version": "6.0.0",
  6211. "dist": {
  6212. "type": "zip",
  6213. "url": "https://mirrors.cloud.tencent.com/repository/composer/phpunit/php-timer/6.0.0/phpunit-php-timer-6.0.0.zip",
  6214. "reference": "e2a2d67966e740530f4a3343fe2e030ffdc1161d",
  6215. "shasum": ""
  6216. },
  6217. "require": {
  6218. "php": ">=8.1"
  6219. },
  6220. "require-dev": {
  6221. "phpunit/phpunit": "^10.0"
  6222. },
  6223. "type": "library",
  6224. "extra": {
  6225. "branch-alias": {
  6226. "dev-main": "6.0-dev"
  6227. }
  6228. },
  6229. "autoload": {
  6230. "classmap": [
  6231. "src/"
  6232. ]
  6233. },
  6234. "license": [
  6235. "BSD-3-Clause"
  6236. ],
  6237. "authors": [
  6238. {
  6239. "name": "Sebastian Bergmann",
  6240. "email": "sebastian@phpunit.de",
  6241. "role": "lead"
  6242. }
  6243. ],
  6244. "description": "Utility class for timing",
  6245. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  6246. "keywords": [
  6247. "timer"
  6248. ],
  6249. "time": "2023-02-03T06:57:52+00:00"
  6250. },
  6251. {
  6252. "name": "phpunit/phpunit",
  6253. "version": "10.5.5",
  6254. "dist": {
  6255. "type": "zip",
  6256. "url": "https://mirrors.tencent.com/repository/composer/phpunit/phpunit/10.5.5/phpunit-phpunit-10.5.5.zip",
  6257. "reference": "ed21115d505b4b4f7dc7b5651464e19a2c7f7856",
  6258. "shasum": ""
  6259. },
  6260. "require": {
  6261. "ext-dom": "*",
  6262. "ext-json": "*",
  6263. "ext-libxml": "*",
  6264. "ext-mbstring": "*",
  6265. "ext-xml": "*",
  6266. "ext-xmlwriter": "*",
  6267. "myclabs/deep-copy": "^1.10.1",
  6268. "phar-io/manifest": "^2.0.3",
  6269. "phar-io/version": "^3.0.2",
  6270. "php": ">=8.1",
  6271. "phpunit/php-code-coverage": "^10.1.5",
  6272. "phpunit/php-file-iterator": "^4.0",
  6273. "phpunit/php-invoker": "^4.0",
  6274. "phpunit/php-text-template": "^3.0",
  6275. "phpunit/php-timer": "^6.0",
  6276. "sebastian/cli-parser": "^2.0",
  6277. "sebastian/code-unit": "^2.0",
  6278. "sebastian/comparator": "^5.0",
  6279. "sebastian/diff": "^5.0",
  6280. "sebastian/environment": "^6.0",
  6281. "sebastian/exporter": "^5.1",
  6282. "sebastian/global-state": "^6.0.1",
  6283. "sebastian/object-enumerator": "^5.0",
  6284. "sebastian/recursion-context": "^5.0",
  6285. "sebastian/type": "^4.0",
  6286. "sebastian/version": "^4.0"
  6287. },
  6288. "suggest": {
  6289. "ext-soap": "To be able to generate mocks based on WSDL files"
  6290. },
  6291. "bin": [
  6292. "phpunit"
  6293. ],
  6294. "type": "library",
  6295. "extra": {
  6296. "branch-alias": {
  6297. "dev-main": "10.5-dev"
  6298. }
  6299. },
  6300. "autoload": {
  6301. "files": [
  6302. "src/Framework/Assert/Functions.php"
  6303. ],
  6304. "classmap": [
  6305. "src/"
  6306. ]
  6307. },
  6308. "license": [
  6309. "BSD-3-Clause"
  6310. ],
  6311. "authors": [
  6312. {
  6313. "name": "Sebastian Bergmann",
  6314. "email": "sebastian@phpunit.de",
  6315. "role": "lead"
  6316. }
  6317. ],
  6318. "description": "The PHP Unit Testing framework.",
  6319. "homepage": "https://phpunit.de/",
  6320. "keywords": [
  6321. "phpunit",
  6322. "testing",
  6323. "xunit"
  6324. ],
  6325. "time": "2023-12-27T15:13:52+00:00"
  6326. },
  6327. {
  6328. "name": "sebastian/cli-parser",
  6329. "version": "2.0.0",
  6330. "dist": {
  6331. "type": "zip",
  6332. "url": "https://mirrors.tencent.com/repository/composer/sebastian/cli-parser/2.0.0/sebastian-cli-parser-2.0.0.zip",
  6333. "reference": "efdc130dbbbb8ef0b545a994fd811725c5282cae",
  6334. "shasum": ""
  6335. },
  6336. "require": {
  6337. "php": ">=8.1"
  6338. },
  6339. "require-dev": {
  6340. "phpunit/phpunit": "^10.0"
  6341. },
  6342. "type": "library",
  6343. "extra": {
  6344. "branch-alias": {
  6345. "dev-main": "2.0-dev"
  6346. }
  6347. },
  6348. "autoload": {
  6349. "classmap": [
  6350. "src/"
  6351. ]
  6352. },
  6353. "license": [
  6354. "BSD-3-Clause"
  6355. ],
  6356. "authors": [
  6357. {
  6358. "name": "Sebastian Bergmann",
  6359. "email": "sebastian@phpunit.de",
  6360. "role": "lead"
  6361. }
  6362. ],
  6363. "description": "Library for parsing CLI options",
  6364. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  6365. "time": "2023-02-03T06:58:15+00:00"
  6366. },
  6367. {
  6368. "name": "sebastian/code-unit",
  6369. "version": "2.0.0",
  6370. "dist": {
  6371. "type": "zip",
  6372. "url": "https://mirrors.tencent.com/repository/composer/sebastian/code-unit/2.0.0/sebastian-code-unit-2.0.0.zip",
  6373. "reference": "a81fee9eef0b7a76af11d121767abc44c104e503",
  6374. "shasum": ""
  6375. },
  6376. "require": {
  6377. "php": ">=8.1"
  6378. },
  6379. "require-dev": {
  6380. "phpunit/phpunit": "^10.0"
  6381. },
  6382. "type": "library",
  6383. "extra": {
  6384. "branch-alias": {
  6385. "dev-main": "2.0-dev"
  6386. }
  6387. },
  6388. "autoload": {
  6389. "classmap": [
  6390. "src/"
  6391. ]
  6392. },
  6393. "license": [
  6394. "BSD-3-Clause"
  6395. ],
  6396. "authors": [
  6397. {
  6398. "name": "Sebastian Bergmann",
  6399. "email": "sebastian@phpunit.de",
  6400. "role": "lead"
  6401. }
  6402. ],
  6403. "description": "Collection of value objects that represent the PHP code units",
  6404. "homepage": "https://github.com/sebastianbergmann/code-unit",
  6405. "time": "2023-02-03T06:58:43+00:00"
  6406. },
  6407. {
  6408. "name": "sebastian/code-unit-reverse-lookup",
  6409. "version": "3.0.0",
  6410. "dist": {
  6411. "type": "zip",
  6412. "url": "https://mirrors.tencent.com/repository/composer/sebastian/code-unit-reverse-lookup/3.0.0/sebastian-code-unit-reverse-lookup-3.0.0.zip",
  6413. "reference": "5e3a687f7d8ae33fb362c5c0743794bbb2420a1d",
  6414. "shasum": ""
  6415. },
  6416. "require": {
  6417. "php": ">=8.1"
  6418. },
  6419. "require-dev": {
  6420. "phpunit/phpunit": "^10.0"
  6421. },
  6422. "type": "library",
  6423. "extra": {
  6424. "branch-alias": {
  6425. "dev-main": "3.0-dev"
  6426. }
  6427. },
  6428. "autoload": {
  6429. "classmap": [
  6430. "src/"
  6431. ]
  6432. },
  6433. "license": [
  6434. "BSD-3-Clause"
  6435. ],
  6436. "authors": [
  6437. {
  6438. "name": "Sebastian Bergmann",
  6439. "email": "sebastian@phpunit.de"
  6440. }
  6441. ],
  6442. "description": "Looks up which function or method a line of code belongs to",
  6443. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  6444. "time": "2023-02-03T06:59:15+00:00"
  6445. },
  6446. {
  6447. "name": "sebastian/comparator",
  6448. "version": "5.0.1",
  6449. "dist": {
  6450. "type": "zip",
  6451. "url": "https://mirrors.tencent.com/repository/composer/sebastian/comparator/5.0.1/sebastian-comparator-5.0.1.zip",
  6452. "reference": "2db5010a484d53ebf536087a70b4a5423c102372",
  6453. "shasum": ""
  6454. },
  6455. "require": {
  6456. "ext-dom": "*",
  6457. "ext-mbstring": "*",
  6458. "php": ">=8.1",
  6459. "sebastian/diff": "^5.0",
  6460. "sebastian/exporter": "^5.0"
  6461. },
  6462. "require-dev": {
  6463. "phpunit/phpunit": "^10.3"
  6464. },
  6465. "type": "library",
  6466. "extra": {
  6467. "branch-alias": {
  6468. "dev-main": "5.0-dev"
  6469. }
  6470. },
  6471. "autoload": {
  6472. "classmap": [
  6473. "src/"
  6474. ]
  6475. },
  6476. "license": [
  6477. "BSD-3-Clause"
  6478. ],
  6479. "authors": [
  6480. {
  6481. "name": "Sebastian Bergmann",
  6482. "email": "sebastian@phpunit.de"
  6483. },
  6484. {
  6485. "name": "Jeff Welch",
  6486. "email": "whatthejeff@gmail.com"
  6487. },
  6488. {
  6489. "name": "Volker Dusch",
  6490. "email": "github@wallbash.com"
  6491. },
  6492. {
  6493. "name": "Bernhard Schussek",
  6494. "email": "bschussek@2bepublished.at"
  6495. }
  6496. ],
  6497. "description": "Provides the functionality to compare PHP values for equality",
  6498. "homepage": "https://github.com/sebastianbergmann/comparator",
  6499. "keywords": [
  6500. "comparator",
  6501. "compare",
  6502. "equality"
  6503. ],
  6504. "time": "2023-08-14T13:18:12+00:00"
  6505. },
  6506. {
  6507. "name": "sebastian/complexity",
  6508. "version": "3.2.0",
  6509. "dist": {
  6510. "type": "zip",
  6511. "url": "https://mirrors.tencent.com/repository/composer/sebastian/complexity/3.2.0/sebastian-complexity-3.2.0.zip",
  6512. "reference": "68ff824baeae169ec9f2137158ee529584553799",
  6513. "shasum": ""
  6514. },
  6515. "require": {
  6516. "nikic/php-parser": "^4.18 || ^5.0",
  6517. "php": ">=8.1"
  6518. },
  6519. "require-dev": {
  6520. "phpunit/phpunit": "^10.0"
  6521. },
  6522. "type": "library",
  6523. "extra": {
  6524. "branch-alias": {
  6525. "dev-main": "3.2-dev"
  6526. }
  6527. },
  6528. "autoload": {
  6529. "classmap": [
  6530. "src/"
  6531. ]
  6532. },
  6533. "license": [
  6534. "BSD-3-Clause"
  6535. ],
  6536. "authors": [
  6537. {
  6538. "name": "Sebastian Bergmann",
  6539. "email": "sebastian@phpunit.de",
  6540. "role": "lead"
  6541. }
  6542. ],
  6543. "description": "Library for calculating the complexity of PHP code units",
  6544. "homepage": "https://github.com/sebastianbergmann/complexity",
  6545. "time": "2023-12-21T08:37:17+00:00"
  6546. },
  6547. {
  6548. "name": "sebastian/diff",
  6549. "version": "5.1.0",
  6550. "dist": {
  6551. "type": "zip",
  6552. "url": "https://mirrors.cloud.tencent.com/repository/composer/sebastian/diff/5.1.0/sebastian-diff-5.1.0.zip",
  6553. "reference": "fbf413a49e54f6b9b17e12d900ac7f6101591b7f",
  6554. "shasum": ""
  6555. },
  6556. "require": {
  6557. "php": ">=8.1"
  6558. },
  6559. "require-dev": {
  6560. "phpunit/phpunit": "^10.0",
  6561. "symfony/process": "^4.2 || ^5"
  6562. },
  6563. "type": "library",
  6564. "extra": {
  6565. "branch-alias": {
  6566. "dev-main": "5.1-dev"
  6567. }
  6568. },
  6569. "autoload": {
  6570. "classmap": [
  6571. "src/"
  6572. ]
  6573. },
  6574. "license": [
  6575. "BSD-3-Clause"
  6576. ],
  6577. "authors": [
  6578. {
  6579. "name": "Sebastian Bergmann",
  6580. "email": "sebastian@phpunit.de"
  6581. },
  6582. {
  6583. "name": "Kore Nordmann",
  6584. "email": "mail@kore-nordmann.de"
  6585. }
  6586. ],
  6587. "description": "Diff implementation",
  6588. "homepage": "https://github.com/sebastianbergmann/diff",
  6589. "keywords": [
  6590. "diff",
  6591. "udiff",
  6592. "unidiff",
  6593. "unified diff"
  6594. ],
  6595. "time": "2023-12-22T10:55:06+00:00"
  6596. },
  6597. {
  6598. "name": "sebastian/environment",
  6599. "version": "6.0.1",
  6600. "dist": {
  6601. "type": "zip",
  6602. "url": "https://mirrors.cloud.tencent.com/repository/composer/sebastian/environment/6.0.1/sebastian-environment-6.0.1.zip",
  6603. "reference": "43c751b41d74f96cbbd4e07b7aec9675651e2951",
  6604. "shasum": ""
  6605. },
  6606. "require": {
  6607. "php": ">=8.1"
  6608. },
  6609. "require-dev": {
  6610. "phpunit/phpunit": "^10.0"
  6611. },
  6612. "suggest": {
  6613. "ext-posix": "*"
  6614. },
  6615. "type": "library",
  6616. "extra": {
  6617. "branch-alias": {
  6618. "dev-main": "6.0-dev"
  6619. }
  6620. },
  6621. "autoload": {
  6622. "classmap": [
  6623. "src/"
  6624. ]
  6625. },
  6626. "license": [
  6627. "BSD-3-Clause"
  6628. ],
  6629. "authors": [
  6630. {
  6631. "name": "Sebastian Bergmann",
  6632. "email": "sebastian@phpunit.de"
  6633. }
  6634. ],
  6635. "description": "Provides functionality to handle HHVM/PHP environments",
  6636. "homepage": "https://github.com/sebastianbergmann/environment",
  6637. "keywords": [
  6638. "Xdebug",
  6639. "environment",
  6640. "hhvm"
  6641. ],
  6642. "time": "2023-04-11T05:39:26+00:00"
  6643. },
  6644. {
  6645. "name": "sebastian/exporter",
  6646. "version": "5.1.1",
  6647. "dist": {
  6648. "type": "zip",
  6649. "url": "https://mirrors.tencent.com/repository/composer/sebastian/exporter/5.1.1/sebastian-exporter-5.1.1.zip",
  6650. "reference": "64f51654862e0f5e318db7e9dcc2292c63cdbddc",
  6651. "shasum": ""
  6652. },
  6653. "require": {
  6654. "ext-mbstring": "*",
  6655. "php": ">=8.1",
  6656. "sebastian/recursion-context": "^5.0"
  6657. },
  6658. "require-dev": {
  6659. "phpunit/phpunit": "^10.0"
  6660. },
  6661. "type": "library",
  6662. "extra": {
  6663. "branch-alias": {
  6664. "dev-main": "5.1-dev"
  6665. }
  6666. },
  6667. "autoload": {
  6668. "classmap": [
  6669. "src/"
  6670. ]
  6671. },
  6672. "license": [
  6673. "BSD-3-Clause"
  6674. ],
  6675. "authors": [
  6676. {
  6677. "name": "Sebastian Bergmann",
  6678. "email": "sebastian@phpunit.de"
  6679. },
  6680. {
  6681. "name": "Jeff Welch",
  6682. "email": "whatthejeff@gmail.com"
  6683. },
  6684. {
  6685. "name": "Volker Dusch",
  6686. "email": "github@wallbash.com"
  6687. },
  6688. {
  6689. "name": "Adam Harvey",
  6690. "email": "aharvey@php.net"
  6691. },
  6692. {
  6693. "name": "Bernhard Schussek",
  6694. "email": "bschussek@gmail.com"
  6695. }
  6696. ],
  6697. "description": "Provides the functionality to export PHP variables for visualization",
  6698. "homepage": "https://www.github.com/sebastianbergmann/exporter",
  6699. "keywords": [
  6700. "export",
  6701. "exporter"
  6702. ],
  6703. "time": "2023-09-24T13:22:09+00:00"
  6704. },
  6705. {
  6706. "name": "sebastian/global-state",
  6707. "version": "6.0.1",
  6708. "dist": {
  6709. "type": "zip",
  6710. "url": "https://mirrors.tencent.com/repository/composer/sebastian/global-state/6.0.1/sebastian-global-state-6.0.1.zip",
  6711. "reference": "7ea9ead78f6d380d2a667864c132c2f7b83055e4",
  6712. "shasum": ""
  6713. },
  6714. "require": {
  6715. "php": ">=8.1",
  6716. "sebastian/object-reflector": "^3.0",
  6717. "sebastian/recursion-context": "^5.0"
  6718. },
  6719. "require-dev": {
  6720. "ext-dom": "*",
  6721. "phpunit/phpunit": "^10.0"
  6722. },
  6723. "type": "library",
  6724. "extra": {
  6725. "branch-alias": {
  6726. "dev-main": "6.0-dev"
  6727. }
  6728. },
  6729. "autoload": {
  6730. "classmap": [
  6731. "src/"
  6732. ]
  6733. },
  6734. "license": [
  6735. "BSD-3-Clause"
  6736. ],
  6737. "authors": [
  6738. {
  6739. "name": "Sebastian Bergmann",
  6740. "email": "sebastian@phpunit.de"
  6741. }
  6742. ],
  6743. "description": "Snapshotting of global state",
  6744. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  6745. "keywords": [
  6746. "global state"
  6747. ],
  6748. "time": "2023-07-19T07:19:23+00:00"
  6749. },
  6750. {
  6751. "name": "sebastian/lines-of-code",
  6752. "version": "2.0.2",
  6753. "dist": {
  6754. "type": "zip",
  6755. "url": "https://mirrors.tencent.com/repository/composer/sebastian/lines-of-code/2.0.2/sebastian-lines-of-code-2.0.2.zip",
  6756. "reference": "856e7f6a75a84e339195d48c556f23be2ebf75d0",
  6757. "shasum": ""
  6758. },
  6759. "require": {
  6760. "nikic/php-parser": "^4.18 || ^5.0",
  6761. "php": ">=8.1"
  6762. },
  6763. "require-dev": {
  6764. "phpunit/phpunit": "^10.0"
  6765. },
  6766. "type": "library",
  6767. "extra": {
  6768. "branch-alias": {
  6769. "dev-main": "2.0-dev"
  6770. }
  6771. },
  6772. "autoload": {
  6773. "classmap": [
  6774. "src/"
  6775. ]
  6776. },
  6777. "license": [
  6778. "BSD-3-Clause"
  6779. ],
  6780. "authors": [
  6781. {
  6782. "name": "Sebastian Bergmann",
  6783. "email": "sebastian@phpunit.de",
  6784. "role": "lead"
  6785. }
  6786. ],
  6787. "description": "Library for counting the lines of code in PHP source code",
  6788. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  6789. "time": "2023-12-21T08:38:20+00:00"
  6790. },
  6791. {
  6792. "name": "sebastian/object-enumerator",
  6793. "version": "5.0.0",
  6794. "dist": {
  6795. "type": "zip",
  6796. "url": "https://mirrors.tencent.com/repository/composer/sebastian/object-enumerator/5.0.0/sebastian-object-enumerator-5.0.0.zip",
  6797. "reference": "202d0e344a580d7f7d04b3fafce6933e59dae906",
  6798. "shasum": ""
  6799. },
  6800. "require": {
  6801. "php": ">=8.1",
  6802. "sebastian/object-reflector": "^3.0",
  6803. "sebastian/recursion-context": "^5.0"
  6804. },
  6805. "require-dev": {
  6806. "phpunit/phpunit": "^10.0"
  6807. },
  6808. "type": "library",
  6809. "extra": {
  6810. "branch-alias": {
  6811. "dev-main": "5.0-dev"
  6812. }
  6813. },
  6814. "autoload": {
  6815. "classmap": [
  6816. "src/"
  6817. ]
  6818. },
  6819. "license": [
  6820. "BSD-3-Clause"
  6821. ],
  6822. "authors": [
  6823. {
  6824. "name": "Sebastian Bergmann",
  6825. "email": "sebastian@phpunit.de"
  6826. }
  6827. ],
  6828. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  6829. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  6830. "time": "2023-02-03T07:08:32+00:00"
  6831. },
  6832. {
  6833. "name": "sebastian/object-reflector",
  6834. "version": "3.0.0",
  6835. "dist": {
  6836. "type": "zip",
  6837. "url": "https://mirrors.tencent.com/repository/composer/sebastian/object-reflector/3.0.0/sebastian-object-reflector-3.0.0.zip",
  6838. "reference": "24ed13d98130f0e7122df55d06c5c4942a577957",
  6839. "shasum": ""
  6840. },
  6841. "require": {
  6842. "php": ">=8.1"
  6843. },
  6844. "require-dev": {
  6845. "phpunit/phpunit": "^10.0"
  6846. },
  6847. "type": "library",
  6848. "extra": {
  6849. "branch-alias": {
  6850. "dev-main": "3.0-dev"
  6851. }
  6852. },
  6853. "autoload": {
  6854. "classmap": [
  6855. "src/"
  6856. ]
  6857. },
  6858. "license": [
  6859. "BSD-3-Clause"
  6860. ],
  6861. "authors": [
  6862. {
  6863. "name": "Sebastian Bergmann",
  6864. "email": "sebastian@phpunit.de"
  6865. }
  6866. ],
  6867. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  6868. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  6869. "time": "2023-02-03T07:06:18+00:00"
  6870. },
  6871. {
  6872. "name": "sebastian/recursion-context",
  6873. "version": "5.0.0",
  6874. "dist": {
  6875. "type": "zip",
  6876. "url": "https://mirrors.cloud.tencent.com/repository/composer/sebastian/recursion-context/5.0.0/sebastian-recursion-context-5.0.0.zip",
  6877. "reference": "05909fb5bc7df4c52992396d0116aed689f93712",
  6878. "shasum": ""
  6879. },
  6880. "require": {
  6881. "php": ">=8.1"
  6882. },
  6883. "require-dev": {
  6884. "phpunit/phpunit": "^10.0"
  6885. },
  6886. "type": "library",
  6887. "extra": {
  6888. "branch-alias": {
  6889. "dev-main": "5.0-dev"
  6890. }
  6891. },
  6892. "autoload": {
  6893. "classmap": [
  6894. "src/"
  6895. ]
  6896. },
  6897. "license": [
  6898. "BSD-3-Clause"
  6899. ],
  6900. "authors": [
  6901. {
  6902. "name": "Sebastian Bergmann",
  6903. "email": "sebastian@phpunit.de"
  6904. },
  6905. {
  6906. "name": "Jeff Welch",
  6907. "email": "whatthejeff@gmail.com"
  6908. },
  6909. {
  6910. "name": "Adam Harvey",
  6911. "email": "aharvey@php.net"
  6912. }
  6913. ],
  6914. "description": "Provides functionality to recursively process PHP variables",
  6915. "homepage": "https://github.com/sebastianbergmann/recursion-context",
  6916. "time": "2023-02-03T07:05:40+00:00"
  6917. },
  6918. {
  6919. "name": "sebastian/type",
  6920. "version": "4.0.0",
  6921. "dist": {
  6922. "type": "zip",
  6923. "url": "https://mirrors.tencent.com/repository/composer/sebastian/type/4.0.0/sebastian-type-4.0.0.zip",
  6924. "reference": "462699a16464c3944eefc02ebdd77882bd3925bf",
  6925. "shasum": ""
  6926. },
  6927. "require": {
  6928. "php": ">=8.1"
  6929. },
  6930. "require-dev": {
  6931. "phpunit/phpunit": "^10.0"
  6932. },
  6933. "type": "library",
  6934. "extra": {
  6935. "branch-alias": {
  6936. "dev-main": "4.0-dev"
  6937. }
  6938. },
  6939. "autoload": {
  6940. "classmap": [
  6941. "src/"
  6942. ]
  6943. },
  6944. "license": [
  6945. "BSD-3-Clause"
  6946. ],
  6947. "authors": [
  6948. {
  6949. "name": "Sebastian Bergmann",
  6950. "email": "sebastian@phpunit.de",
  6951. "role": "lead"
  6952. }
  6953. ],
  6954. "description": "Collection of value objects that represent the types of the PHP type system",
  6955. "homepage": "https://github.com/sebastianbergmann/type",
  6956. "time": "2023-02-03T07:10:45+00:00"
  6957. },
  6958. {
  6959. "name": "sebastian/version",
  6960. "version": "4.0.1",
  6961. "dist": {
  6962. "type": "zip",
  6963. "url": "https://mirrors.tencent.com/repository/composer/sebastian/version/4.0.1/sebastian-version-4.0.1.zip",
  6964. "reference": "c51fa83a5d8f43f1402e3f32a005e6262244ef17",
  6965. "shasum": ""
  6966. },
  6967. "require": {
  6968. "php": ">=8.1"
  6969. },
  6970. "type": "library",
  6971. "extra": {
  6972. "branch-alias": {
  6973. "dev-main": "4.0-dev"
  6974. }
  6975. },
  6976. "autoload": {
  6977. "classmap": [
  6978. "src/"
  6979. ]
  6980. },
  6981. "license": [
  6982. "BSD-3-Clause"
  6983. ],
  6984. "authors": [
  6985. {
  6986. "name": "Sebastian Bergmann",
  6987. "email": "sebastian@phpunit.de",
  6988. "role": "lead"
  6989. }
  6990. ],
  6991. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  6992. "homepage": "https://github.com/sebastianbergmann/version",
  6993. "time": "2023-02-07T11:34:05+00:00"
  6994. },
  6995. {
  6996. "name": "spatie/backtrace",
  6997. "version": "1.5.3",
  6998. "dist": {
  6999. "type": "zip",
  7000. "url": "https://mirrors.cloud.tencent.com/repository/composer/spatie/backtrace/1.5.3/spatie-backtrace-1.5.3.zip",
  7001. "reference": "483f76a82964a0431aa836b6ed0edde0c248e3ab",
  7002. "shasum": ""
  7003. },
  7004. "require": {
  7005. "php": "^7.3|^8.0"
  7006. },
  7007. "require-dev": {
  7008. "ext-json": "*",
  7009. "phpunit/phpunit": "^9.3",
  7010. "spatie/phpunit-snapshot-assertions": "^4.2",
  7011. "symfony/var-dumper": "^5.1"
  7012. },
  7013. "type": "library",
  7014. "autoload": {
  7015. "psr-4": {
  7016. "Spatie\\Backtrace\\": "src"
  7017. }
  7018. },
  7019. "license": [
  7020. "MIT"
  7021. ],
  7022. "authors": [
  7023. {
  7024. "name": "Freek Van de Herten",
  7025. "email": "freek@spatie.be",
  7026. "homepage": "https://spatie.be",
  7027. "role": "Developer"
  7028. }
  7029. ],
  7030. "description": "A better backtrace",
  7031. "homepage": "https://github.com/spatie/backtrace",
  7032. "keywords": [
  7033. "Backtrace",
  7034. "spatie"
  7035. ],
  7036. "time": "2023-06-28T12:59:17+00:00"
  7037. },
  7038. {
  7039. "name": "spatie/flare-client-php",
  7040. "version": "1.4.3",
  7041. "dist": {
  7042. "type": "zip",
  7043. "url": "https://mirrors.cloud.tencent.com/repository/composer/spatie/flare-client-php/1.4.3/spatie-flare-client-php-1.4.3.zip",
  7044. "reference": "5db2fdd743c3ede33f2a5367d89ec1a7c9c1d1ec",
  7045. "shasum": ""
  7046. },
  7047. "require": {
  7048. "illuminate/pipeline": "^8.0|^9.0|^10.0|^11.0",
  7049. "nesbot/carbon": "^2.62.1",
  7050. "php": "^8.0",
  7051. "spatie/backtrace": "^1.5.2",
  7052. "symfony/http-foundation": "^5.2|^6.0|^7.0",
  7053. "symfony/mime": "^5.2|^6.0|^7.0",
  7054. "symfony/process": "^5.2|^6.0|^7.0",
  7055. "symfony/var-dumper": "^5.2|^6.0|^7.0"
  7056. },
  7057. "require-dev": {
  7058. "dms/phpunit-arraysubset-asserts": "^0.5.0",
  7059. "pestphp/pest": "^1.20|^2.0",
  7060. "phpstan/extension-installer": "^1.1",
  7061. "phpstan/phpstan-deprecation-rules": "^1.0",
  7062. "phpstan/phpstan-phpunit": "^1.0",
  7063. "spatie/phpunit-snapshot-assertions": "^4.0|^5.0"
  7064. },
  7065. "type": "library",
  7066. "extra": {
  7067. "branch-alias": {
  7068. "dev-main": "1.3.x-dev"
  7069. }
  7070. },
  7071. "autoload": {
  7072. "files": [
  7073. "src/helpers.php"
  7074. ],
  7075. "psr-4": {
  7076. "Spatie\\FlareClient\\": "src"
  7077. }
  7078. },
  7079. "license": [
  7080. "MIT"
  7081. ],
  7082. "description": "Send PHP errors to Flare",
  7083. "homepage": "https://github.com/spatie/flare-client-php",
  7084. "keywords": [
  7085. "exception",
  7086. "flare",
  7087. "reporting",
  7088. "spatie"
  7089. ],
  7090. "time": "2023-10-17T15:54:07+00:00"
  7091. },
  7092. {
  7093. "name": "spatie/ignition",
  7094. "version": "1.12.0",
  7095. "dist": {
  7096. "type": "zip",
  7097. "url": "https://mirrors.cloud.tencent.com/repository/composer/spatie/ignition/1.12.0/spatie-ignition-1.12.0.zip",
  7098. "reference": "5b6f801c605a593106b623e45ca41496a6e7d56d",
  7099. "shasum": ""
  7100. },
  7101. "require": {
  7102. "ext-json": "*",
  7103. "ext-mbstring": "*",
  7104. "php": "^8.0",
  7105. "spatie/backtrace": "^1.5.3",
  7106. "spatie/flare-client-php": "^1.4.0",
  7107. "symfony/console": "^5.4|^6.0|^7.0",
  7108. "symfony/var-dumper": "^5.4|^6.0|^7.0"
  7109. },
  7110. "require-dev": {
  7111. "illuminate/cache": "^9.52|^10.0|^11.0",
  7112. "mockery/mockery": "^1.4",
  7113. "pestphp/pest": "^1.20|^2.0",
  7114. "phpstan/extension-installer": "^1.1",
  7115. "phpstan/phpstan-deprecation-rules": "^1.0",
  7116. "phpstan/phpstan-phpunit": "^1.0",
  7117. "psr/simple-cache-implementation": "*",
  7118. "symfony/cache": "^5.4|^6.0|^7.0",
  7119. "symfony/process": "^5.4|^6.0|^7.0",
  7120. "vlucas/phpdotenv": "^5.5"
  7121. },
  7122. "suggest": {
  7123. "openai-php/client": "Require get solutions from OpenAI",
  7124. "simple-cache-implementation": "To cache solutions from OpenAI"
  7125. },
  7126. "type": "library",
  7127. "extra": {
  7128. "branch-alias": {
  7129. "dev-main": "1.5.x-dev"
  7130. }
  7131. },
  7132. "autoload": {
  7133. "psr-4": {
  7134. "Spatie\\Ignition\\": "src"
  7135. }
  7136. },
  7137. "license": [
  7138. "MIT"
  7139. ],
  7140. "authors": [
  7141. {
  7142. "name": "Spatie",
  7143. "email": "info@spatie.be",
  7144. "role": "Developer"
  7145. }
  7146. ],
  7147. "description": "A beautiful error page for PHP applications.",
  7148. "homepage": "https://flareapp.io/ignition",
  7149. "keywords": [
  7150. "error",
  7151. "flare",
  7152. "laravel",
  7153. "page"
  7154. ],
  7155. "time": "2024-01-03T15:49:39+00:00"
  7156. },
  7157. {
  7158. "name": "spatie/laravel-ignition",
  7159. "version": "2.4.0",
  7160. "dist": {
  7161. "type": "zip",
  7162. "url": "https://mirrors.cloud.tencent.com/repository/composer/spatie/laravel-ignition/2.4.0/spatie-laravel-ignition-2.4.0.zip",
  7163. "reference": "b9395ba48d3f30d42092cf6ceff75ed7256cd604",
  7164. "shasum": ""
  7165. },
  7166. "require": {
  7167. "ext-curl": "*",
  7168. "ext-json": "*",
  7169. "ext-mbstring": "*",
  7170. "illuminate/support": "^10.0|^11.0",
  7171. "php": "^8.1",
  7172. "spatie/flare-client-php": "^1.3.5",
  7173. "spatie/ignition": "^1.9",
  7174. "symfony/console": "^6.2.3|^7.0",
  7175. "symfony/var-dumper": "^6.2.3|^7.0"
  7176. },
  7177. "require-dev": {
  7178. "livewire/livewire": "^2.11|^3.3.5",
  7179. "mockery/mockery": "^1.5.1",
  7180. "openai-php/client": "^0.8.1",
  7181. "orchestra/testbench": "^8.0|^9.0",
  7182. "pestphp/pest": "^2.30",
  7183. "phpstan/extension-installer": "^1.2",
  7184. "phpstan/phpstan-deprecation-rules": "^1.1.1",
  7185. "phpstan/phpstan-phpunit": "^1.3.3",
  7186. "vlucas/phpdotenv": "^5.5"
  7187. },
  7188. "suggest": {
  7189. "openai-php/client": "Require get solutions from OpenAI",
  7190. "psr/simple-cache-implementation": "Needed to cache solutions from OpenAI"
  7191. },
  7192. "type": "library",
  7193. "extra": {
  7194. "laravel": {
  7195. "providers": [
  7196. "Spatie\\LaravelIgnition\\IgnitionServiceProvider"
  7197. ],
  7198. "aliases": {
  7199. "Flare": "Spatie\\LaravelIgnition\\Facades\\Flare"
  7200. }
  7201. }
  7202. },
  7203. "autoload": {
  7204. "files": [
  7205. "src/helpers.php"
  7206. ],
  7207. "psr-4": {
  7208. "Spatie\\LaravelIgnition\\": "src"
  7209. }
  7210. },
  7211. "license": [
  7212. "MIT"
  7213. ],
  7214. "authors": [
  7215. {
  7216. "name": "Spatie",
  7217. "email": "info@spatie.be",
  7218. "role": "Developer"
  7219. }
  7220. ],
  7221. "description": "A beautiful error page for Laravel applications.",
  7222. "homepage": "https://flareapp.io/ignition",
  7223. "keywords": [
  7224. "error",
  7225. "flare",
  7226. "laravel",
  7227. "page"
  7228. ],
  7229. "time": "2024-01-04T14:51:24+00:00"
  7230. },
  7231. {
  7232. "name": "symfony/polyfill-php81",
  7233. "version": "v1.28.0",
  7234. "dist": {
  7235. "type": "zip",
  7236. "url": "https://mirrors.cloud.tencent.com/repository/composer/symfony/polyfill-php81/v1.28.0/symfony-polyfill-php81-v1.28.0.zip",
  7237. "reference": "7581cd600fa9fd681b797d00b02f068e2f13263b",
  7238. "shasum": ""
  7239. },
  7240. "require": {
  7241. "php": ">=7.1"
  7242. },
  7243. "type": "library",
  7244. "extra": {
  7245. "branch-alias": {
  7246. "dev-main": "1.28-dev"
  7247. },
  7248. "thanks": {
  7249. "name": "symfony/polyfill",
  7250. "url": "https://github.com/symfony/polyfill"
  7251. }
  7252. },
  7253. "autoload": {
  7254. "files": [
  7255. "bootstrap.php"
  7256. ],
  7257. "psr-4": {
  7258. "Symfony\\Polyfill\\Php81\\": ""
  7259. },
  7260. "classmap": [
  7261. "Resources/stubs"
  7262. ]
  7263. },
  7264. "license": [
  7265. "MIT"
  7266. ],
  7267. "authors": [
  7268. {
  7269. "name": "Nicolas Grekas",
  7270. "email": "p@tchwork.com"
  7271. },
  7272. {
  7273. "name": "Symfony Community",
  7274. "homepage": "https://symfony.com/contributors"
  7275. }
  7276. ],
  7277. "description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions",
  7278. "homepage": "https://symfony.com",
  7279. "keywords": [
  7280. "compatibility",
  7281. "polyfill",
  7282. "portable",
  7283. "shim"
  7284. ],
  7285. "time": "2023-01-26T09:26:14+00:00"
  7286. },
  7287. {
  7288. "name": "symfony/yaml",
  7289. "version": "v7.0.0",
  7290. "dist": {
  7291. "type": "zip",
  7292. "url": "https://mirrors.tencent.com/repository/composer/symfony/yaml/v7.0.0/symfony-yaml-v7.0.0.zip",
  7293. "reference": "0055b230c408428b9b5cde7c55659555be5c0278",
  7294. "shasum": ""
  7295. },
  7296. "require": {
  7297. "php": ">=8.2",
  7298. "symfony/polyfill-ctype": "^1.8"
  7299. },
  7300. "conflict": {
  7301. "symfony/console": "<6.4"
  7302. },
  7303. "require-dev": {
  7304. "symfony/console": "^6.4|^7.0"
  7305. },
  7306. "bin": [
  7307. "Resources/bin/yaml-lint"
  7308. ],
  7309. "type": "library",
  7310. "autoload": {
  7311. "psr-4": {
  7312. "Symfony\\Component\\Yaml\\": ""
  7313. },
  7314. "exclude-from-classmap": [
  7315. "/Tests/"
  7316. ]
  7317. },
  7318. "license": [
  7319. "MIT"
  7320. ],
  7321. "authors": [
  7322. {
  7323. "name": "Fabien Potencier",
  7324. "email": "fabien@symfony.com"
  7325. },
  7326. {
  7327. "name": "Symfony Community",
  7328. "homepage": "https://symfony.com/contributors"
  7329. }
  7330. ],
  7331. "description": "Loads and dumps YAML files",
  7332. "homepage": "https://symfony.com",
  7333. "time": "2023-11-07T10:26:03+00:00"
  7334. },
  7335. {
  7336. "name": "theseer/tokenizer",
  7337. "version": "1.2.2",
  7338. "dist": {
  7339. "type": "zip",
  7340. "url": "https://mirrors.tencent.com/repository/composer/theseer/tokenizer/1.2.2/theseer-tokenizer-1.2.2.zip",
  7341. "reference": "b2ad5003ca10d4ee50a12da31de12a5774ba6b96",
  7342. "shasum": ""
  7343. },
  7344. "require": {
  7345. "ext-dom": "*",
  7346. "ext-tokenizer": "*",
  7347. "ext-xmlwriter": "*",
  7348. "php": "^7.2 || ^8.0"
  7349. },
  7350. "type": "library",
  7351. "autoload": {
  7352. "classmap": [
  7353. "src/"
  7354. ]
  7355. },
  7356. "license": [
  7357. "BSD-3-Clause"
  7358. ],
  7359. "authors": [
  7360. {
  7361. "name": "Arne Blankerts",
  7362. "email": "arne@blankerts.de",
  7363. "role": "Developer"
  7364. }
  7365. ],
  7366. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  7367. "time": "2023-11-20T00:12:19+00:00"
  7368. }
  7369. ],
  7370. "aliases": [],
  7371. "minimum-stability": "stable",
  7372. "stability-flags": [],
  7373. "prefer-stable": true,
  7374. "prefer-lowest": false,
  7375. "platform": {
  7376. "php": "^8.1"
  7377. },
  7378. "platform-dev": [],
  7379. "plugin-api-version": "2.6.0"
  7380. }