composer.lock 274 KB

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